@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
  background-color: #FCFCFD;
}

a {
  text-decoration: none;
}

.hero {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  padding: 8rem 0;
}
.hero .headingContainer a {
  margin-left: 2rem;
  padding-right: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.hero .arrow {
  order: -1;
  width: 40px;
  transform: rotate(180deg);
}
.hero .heading--main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #101828;
}
@media screen and (max-width: 1000px) {
  .hero .heading--main {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .hero .heading--main {
    font-size: 1.8rem;
  }
}

.section-4 {
  padding: 13rem 10rem;
  background-color: #062C41;
  color: white;
}

.section-4__content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.section-4__heading-1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 4.8rem;
}

.gallery__img {
  border-radius: 20px 20px 0 0;
  height: 24.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gallery__title {
  margin-top: 2rem;
  font-size: 2.038rem;
  text-align: center;
}

.gallery-card {
  width: 37rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 500px) {
  .gallery-card {
    width: 27rem;
  }
}

.section-4__gallery-wrapper {
  padding: 0 6rem;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.5rem;
}
.section-4__gallery-wrapper-urban {
  padding: 0 6rem;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 4.5rem;
  @media screen and (max-width: 905px){
    justify-content: center;
  }

  &::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 905px) {
  .section-4__gallery-wrapper {
    justify-content: center;
  }
}
.section-4__gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.section-4__CustomScrollBar {
  position: relative;
  height: 3px;
  width: 50%;
  background-color: #98A2B3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-4__CustomScrollBar-thumb {
  position: absolute;
  left: 0;
  height: 7px;
  background-color: white;
}

.gallery__img {
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
}

.gallery__image-container {
  border-radius: 20px 20px 0 0;
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
  display: flex;
  overflow-x: hidden;
}

.project-info {
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
  height: 44rem;
  inset: 0;
  background-color: white;
  padding: 5% 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 20;
  transition: all 0.3s;
}
@media screen and (max-width: 905px) {
  .project-info {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.project-info h1 {
  font-size: 2rem;
  color: black;
}
@media (max-width: 1024px) {
  .project-info h1 {
    font-size: 1.4rem;
  }
}
.project-info p {
  color: #475467;
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .project-info p {
    font-size: 1.2rem;
  }
}

.info-icon {
  position: absolute;
  left: 4%;
  top: 4%;
  z-index: 90;
}
.info-icon:hover {
  cursor: pointer;
}

.navigator-container {
  position: absolute;
  right: 4%;
  top: 4%;
  display: flex;
  gap: 1rem;
  z-index: 12;
}

.gallery__navigator__arrow--left,
.gallery__navigator__arrow--right {
  width: 3rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.7rem;
  aspect-ratio: 1/1;
}
.gallery__navigator__arrow--left:hover,
.gallery__navigator__arrow--right:hover {
  cursor: pointer;
}

.gallery__navigator__arrow--left {
  padding-left: 0.5rem;
}

.gallery__navigator__arrow--right {
  padding-right: 0.5rem;
}

.checkmark-icon {
  width: 2rem;
}
@media (max-width: 1024px) {
  .checkmark-icon {
    width: 1.5rem;
  }
}

.visible {
  opacity: 1;
  visibility: visible;
}

.info-icon-active path {
  fill: #0086C9;
}

.contactUs-strip {
  position: relative;
  padding: 2%;
  background: linear-gradient(45deg, #0086C9 -50%, #B9E6FE 30%, #0086C9 150%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  overflow-y: hidden;
}
@media (max-width: 600px) {
  .contactUs-strip {
    padding: 10% 5%;
  }
}
.contactUs-strip h1 {
  color: white;
  font-size: 3.2rem;
}
.contactUs-strip h1 span {
  color: #026AA2;
}
@media (max-width: 1024px) {
  .contactUs-strip h1 {
    font-size: 2.4rem;
  }
}
.contactUs-strip a {
  white-space: nowrap;
  text-decoration: none;
  padding: 1% 3%;
  color: #0086C9;
  font-size: 2.4rem;
  background-color: white;
  background-origin: padding-box;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .contactUs-strip a {
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  .contactUs-strip a {
    font-size: 1.3rem;
    gap: 0.5rem;
    padding: 5% 7%;
  }
}
.contactUs-strip a svg {
  width: 2rem;
}
@media (max-width: 500px) {
  .contactUs-strip a svg {
    width: 1rem;
  }
}
.contactUs-strip a:hover {
  color: white;
  background-color: #026AA2;
}
.contactUs-strip a:hover path {
  fill: white;
}

.blue-dots {
  width: 25rem;
  position: absolute;
  left: 0;
  top: -30px;
  z-index: -1;
}

.white-dots {
  width: 25rem;
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .white-dots,
  .blue-dots {
    width: 15rem;
  }
  .blue-dots {
    top: -20px;
  }
  .white-dots {
    bottom: -20px;
  }
}
@media (max-width: 500px) {
  .white-dots,
  .blue-dots {
    width: 10rem;
  }
  .blue-dots {
    top: -15px;
  }
  .white-dots {
    bottom: -15px;
  }
}/*# sourceMappingURL=Projects.css.map */