body {
  color: #1d1d1d;
}

nav {
  position: fixed;
  top: 0;
  left: 0;

  background-color: transparent !important;
}

.h1 {
  font-size: 40px !important;
}

.download-btn {
  transition: ease-out 0.3s;
  width: fit-content;
  height: fit-content;
  text-decoration: none !important;
  border-radius: 60px;
  padding: 7px;
  padding-inline: 16px;
  color: rgb(20, 20, 20);
  background-color: white;
}

#hero {
  position: relative;
  background-image: url("../img/graphics/hero-image.webp");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#hero .content {
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  z-index: 0;
}

#navbarSupportedContent {
  transition: ease-in-out 200ms;
}

.why-stubble-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 24px;
  border: 2px solid #fff;
  box-shadow: 0px 0px 10px 5px rgba(197, 197, 197, 0.25);
  padding: 15px;
  height: 100%;
}

.why-stubble-card img {
  position: absolute;
  top: -35px;
  border-radius: 15px;
  padding: 15px;
  background: linear-gradient(132deg, #009dc0 16.4%, #4de1ff 87.97%);
  width: 70px;
  height: 70px;
}

.why-stubble-card h3 {
  font-weight: 500;
  margin: 10px;
}
.why-stubble-card p {
  margin-top: 10px;
  font-size: 16px;
  width: 80%;
  color: #646464;
}
.why-stubble-card .spacer {
  height: 20px;
}

#what-is-stubble {
  background-image: url(../img/graphics/about-stubble.webp);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: fit-content;
}

#what-is-stubble .text {
  font-size: 20px;
  margin: 0px;
}

#gallery {
  overflow: hidden;
}

.owl-item {
  /* margin-left: -3px; */
  transition: ease-out 150ms;
  transform: scale(0.9) !important;
  z-index: 1;
}

.gallery-wrapper {
  position: relative;
}

.phone-overlay {
  position: absolute;
  z-index: 3;
  transform: scale(0.85) !important;
  height: 100%;
  top: -8px;
  left: -3px;
}

.owl-item.center {
  /* Your CSS styles for the third active element go here */
  /* margin-inline: 12px; */
  transform: scale(1) !important;
}

#meet-our-team .img-wrapper {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0px;
  background: linear-gradient(132deg, #009dc0 16.4%, #4de1ff 87.97%);
}

#meet-our-team img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

#meet-our-team h3 {
  background: linear-gradient(132deg, #009dc0 16.4%, #12c1e4 87.97%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footer {
  background-image: url(../img/graphics/footer-bg.webp);
  background-position: center top;
  background-size: cover;

  position: relative;
  overflow: hidden;
}

#footer .footer-shape {
  position: relative;
  top: 0;
  left: 0;
  width: 101%;
}

#footer .footer-item {
  color: white;
  text-decoration: none;
}

#footer h3 {
  color: white;
}

#footer .footer-item.hoverable:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .hero-shape {
    width: 100%;
  }

  .h1 {
    font-size: 48px !important;
  }

  .phone-overlay {
    transform: scale(0.97) !important;
    left: 40%;
    top: 0;
  }
}

/* ANIMATIONS */

.why-stubble-card,
.animated-btn,
.nav-item {
  transition: 200ms ease-in-out;
}

.why-stubble-card:hover {
  transform: translate(0px, -3px);
  box-shadow: 0px 3px 10px 6px rgba(197, 197, 197, 0.25);
}
.animated-btn:hover {
  transform: translate(0px, -3px);
  -webkit-box-shadow: 0px 5px 10px -6px rgba(207, 207, 207, 1);
  -moz-box-shadow: 0px 5px 10px -6px rgba(207, 207, 207, 1);
  box-shadow: 0px 5px 10px -6px rgba(207, 207, 207, 1);
}
.nav-item:hover {
  transform: translate(0px, -2px);
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
