@tailwind base;
@tailwind components;
@tailwind utilities;


html {
  overflow-x: hidden;
}
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
}
#popupImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
body {
  position: relative;
  color: black;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.carousel-content {
  opacity: 0;
  animation: fadeInWithY forwards;
}
.offer-content {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 0.7s forwards;
}
.projectsFade {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 1.3s forwards;
}
.visualizationFade {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 1.6s forwards;
}
.realizationsFade {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 1.9s forwards;
}
.about {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.2s forwards;
}
.aboutContent {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.5s forwards;
}
.realizationContent {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 2.8s forwards;
}
.contactContent {
  opacity: 0;
  animation: fadeInWithY 0.5s ease-out 3.1s forwards;
}
.popup {
  opacity: 0;
  animation: fadeInWithY 0.3s ease-out forwards;
}

h1 {
  font-family: Montserrat;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.375rem;
}

h2 {
  font-family: Montserrat;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.45rem;
  letter-spacing: -0.09rem;
}

h3 {
  font-family: Montserrat;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.0125rem;
  letter-spacing: -0.0875rem;
}
.photos {
  position: relative;
  width: 1440px;
  height: 1475px;
  text-align: center;
  margin: auto;
}

@keyframes fadeInWithY {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@media (min-width: 993px) {
  #mobileMenu {
    display: none;
  }
}
.pt-0375rem {
  padding-top: 0.375rem;
}


@media (max-width: 750px) {
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  h3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}

.carousel-item {
  z-index: 2;
}
.image {
  position: absolute;
  z-index: 2;
}
.photos {
  max-height: 2000px;
}
.button6 {
  position: relative;
  bottom: 100px;
  border: 1px solid green;
  display: flex;
  gap: 10px;
  z-index: 100;
}
.gradient {
  margin-top: -850px;
  position: relative;
  left: 0;
  background: linear-gradient(0deg, #dcc1ab, rgba(214, 183, 158, 0));
  width: 100%;
  height: 800px;
}
@media (max-width: 992px) {
  .photos {
    max-height: 600px;
  }
  .gradient {
    margin-top: -300px;
    height: 250px;
  }
  .button6 {
    border: 1px solid green;
    display: flex;
    gap: 10px;
  }
}
@layer components {
  .btn {
    @apply px-5 py-3 rounded-full w-max;
  }
}