/* header styles start */

.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  background-color: #000;
  width: 100%;
  padding: 37px 0;
}

main {
  padding-top: 125px;
}

.header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-navbar ul li a,
.header-navbar ul li,
.header-navbar ul li button {
  font-size: 20px;
  color: #fbfbfb;
}

.header-navbar ul li a.active {
  color: var(--gray-6);
}

.logo-mobile {
  display: none;
}

.logo.mobile {
  display: none;
}

.mobile-menu {
  display: none;
}

.mobile-header {
  display: none;
}

.close-btn i {
  font-size: 37px;
}

.mobile-menu-btn {
  width: 37px;
  height: 37px;
}

.mobile-menu-btn i {
  font-size: 37px;
}

.mobile-footer {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.mobile-footer__title {
  color: var(--gray-3);
  font-size: 15px;
  letter-spacing: 0.3px;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 140%;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  background-color: #1e1e1e;
  padding: 8px 0;
  border-radius: 4px;
  z-index: 10;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.dropdown.open .dropdown-menu {
  top: 120%;
  opacity: 1;
  pointer-events: all;
}

.line {
  height: 27.5px;
  width: 1px;
  background-color: #b2b2b2;
}

/* header styles end */

/* about styles start */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.about-icon__left {
  position: absolute;
  left: -25%;
  width: 50%;
}

.about-icon__right {
  position: absolute;
  right: -25%;
  width: 50%;
}

.about-description {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.about-members__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-height: 395px;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 50%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 50%,
    black 80%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin: 190px 0;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.about-members__wrapper::-webkit-scrollbar {
  display: none;
}

.about-members__wrapper.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.about-members__wrapper {
  cursor: grab;
  cursor: -webkit-grab;
}

.about-members {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  transform: translateY(5%);
  /* animation: animTop 25s linear 0.5s infinite forwards;
	animation-delay: 0.5s !important; */
}

/* @keyframes animTop {
	0% {
		transform: translateY(25%);
	}

	100% {
		transform: translateY(-100%);
	}
} */

.member {
  display: flex;
  align-items: center;
  gap: 20px;
}

.member-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.member-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-position {
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: capitalize;
  max-width: 255px;
}

.member-name {
  font-size: 24px;
  text-transform: uppercase;
}

/* about styles end */

/* partners styles start */

.partners-wrapper {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.partner {
  height: 160px;
  overflow: hidden;
  width: calc(50% - 5px);
  background-color: var(--black-light-3);
  display: flex;
  align-items: center;
  padding: 30px;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.partner.open {
  height: 400px;
}

.partner-logo {
  min-height: 100px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  object-fit: cover;
}

.partner-desc {
  margin-top: 30px;
}

/* partners styles end */

/* projects in development style start */

.projects-dev__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.project-dev {
  position: relative;
  max-height: 500px;
  display: block;
  width: calc(50% - 5px);
}

.project-dev img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.project-dev.wide {
  width: 100%;
  max-height: 500px;
}

.project-dev img {
  width: 100%;
  object-fit: cover;
}

.project-title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-title span {
  text-transform: capitalize;
  line-height: 1 !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

/* projects in development style end */

/* news styles start  */

.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.news-item {
  position: relative;
  width: calc(33.333% - 6.6666px);
}

.news-item img {
  width: 100%;
  object-fit: cover;
}

.news-item__inf {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news-item__title {
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 209px;
}

.news-item__date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--white);
  text-transform: uppercase;
}

/* news styles end  */

/* join team styles start */

.join-team {
  background-image: url("/images/join-team.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 35px 0;
}

.join-team__wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

.join-team__form {
  padding: 66px 50px 80px;
  background-color: rgba(13, 13, 13, 0.8);
  max-width: 552px;
  width: 100%;
}

.join-team__form h2 {
  max-width: 325px;
}

.join-team__input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  margin: 30px 0 81px;
}

.join-team__input-wrapper input,
.join-team__input-wrapper textarea {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid #cacaca;
}
.join-team__input-wrapper textarea {
  height: 100px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.join-team__input-wrapper textarea::-webkit-scrollbar {
  display: none;
}

.join-team__input-wrapper input:placeholder {
  color: var(--gray-5);
}

.join-team__btn {
  width: 175px;
  padding: 10.5px;
  background-color: #e6e6e6;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: 500;
}

/* join team styles end */

/* project complex styles start */

.complex-logo,
.dev-project__layout__logo {
  margin: 0 auto 30px;
  width: fit-content;
}

.complex-wrapper,
.dev-project__layout__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 100px;
}

.complex-info,
.dev-project__layout__info {
  flex: 1;
  max-width: 600px;
}

.dev-project__layout__image {
  flex: 1;
  max-width: 665px;
}

.dev-project__layout__image img {
  width: 100%;
  object-fit: cover;
}

.complex-title {
  text-align: left;
  margin-bottom: 30px;
}

.complex-description,
.dev-project__layout__info {
  color: var(--gray-3);
  font-size: 20px;
  letter-spacing: 0.1px;
  line-height: 33.6px;
}

.dev-project__layout__info {
  line-height: 21.2px;
}

.complex-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.complex-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.complex-gallery-item.left {
  text-align: right;
  align-items: end;
}

.complex-gallery-item.right {
  text-align: left;
  align-items: start;
}

.public-bath__zones {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-bath__zone {
  width: calc(50% - 5px);
}

.public-bath__image img {
  width: 100%;
  object-fit: cover;
}

.public-bath__label {
  margin-top: 30px;
}

.social-liks__list {
  display: flex;
  align-items: start;
  gap: 100px;
}

.social-title {
  text-transform: uppercase;
  text-align: left !important;
  margin: 30px 0;
}

.social-liks__list ul {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.social-liks__list ul li img {
  width: 23px;
  height: 23px;
  object-fit: cover;
}

.social-liks__list ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* project complex styles end */

/* project gallery styles start */

.gallery-section {
  height: 560px;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery {
  display: flex;
  gap: 10px;
  transform: translateX(0);
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2025px);
  }
}

.gallery img {
  width: 100%;
  object-fit: cover;
}

.gallery-type-one,
.gallery-type-two,
.gallery-type-three {
  width: 100%;
  min-width: 665px;
  max-width: 665px;
  max-height: 560px;
}

.gallery-left,
.gallery-right {
  flex: 1;
}

.gallery-type-one {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.gallery-type-one .gallery-left {
  display: flex;
  align-items: center;
  gap: 10px;
  height: calc(50% - 5px);
  margin-bottom: 10px;
}

.gallery-type-one .gallery-right {
  height: calc(50% - 5px);
}

.gallery-type-two {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-type-two .gallery-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-type-three {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-type-three .gallery-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* project gallery styles end */

/* footer styles start */

.footer {
  margin: 100px 0;
}

.footer-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 50px;
  flex-wrap: wrap;
}

.footer-column {
  color: var(--gray-3);
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

.footer-email {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(35, 35, 35, 0.85);
  border-radius: 5px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1100px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    width: 100%;
    padding: 0 20px;
  }

  .mobile-header a {
    max-width: 200px;
  }

  .mobile-footer {
    display: flex;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-navbar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: fixed;
    top: 0;
    left: -460px;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    z-index: 10000;
    background-color: #1a1a1a;
    width: 100%;
    max-width: 450px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }

  .header-navbar.active {
    display: flex;
    left: 0;
    pointer-events: all;
  }

  .header-navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }

  .header-navbar .logo {
    display: none;
  }

  .header-navbar .dropdown {
    display: none;
  }

  .header-navbar .dropdown.all-active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.all-active .dropdown-menu {
    max-width: 120px;
    pointer-events: none;
    position: static;
    height: 0px !important;
    padding: 0px !important;
    overflow: hidden;
  }

  .dropdown.all-active.open .dropdown-menu {
    pointer-events: all;
    height: 80px !important;
    padding: 8px 0px !important;
  }

  .logo.mobile {
    display: block;
    max-width: 176px;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .project-title {
    font-size: 25px;
    left: 30px;
    bottom: 30px;
    line-height: 1.5;
  }

  .news-item__title {
    font-size: 15px;
    line-height: 1.2;
  }
}

@media (max-width: 1130px) {
  .partner.open {
    height: 500px;
  }
}

@media (max-width: 1000px) {
  .project-title {
    font-size: 20px;
    left: 20px;
    bottom: 20px;
  }

  .footer-column {
    gap: 10px;
  }
}

@media (max-width: 950px) {
  .complex-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .complex-info {
    max-width: 100%;
  }

  .complex-gallery {
    width: 100%;
  }

  .complex-gallery img {
    max-width: 300px;
    width: 100%;
    height: 300px;
    object-fit: fill;
    object-position: center;
  }
}

@media (max-width: 910px) {
  .partner.open {
    height: 600px;
  }
}

@media (max-width: 850px) {
  .news-item {
    width: calc(50% - 5px);
  }
}

@media (max-width: 800px) {
  .partner {
    width: 100%;
  }

  .partner.open {
    height: 400px;
  }

  .partner {
    overflow: hidden;
  }

  .partner-desc {
    overflow-y: scroll;
  }

  .dev-project__layout__wrapper {
    flex-direction: column-reverse;
  }

  .dev-project__layout__wrapper.n-reverse {
    flex-direction: column !important;
  }

  .dev-project__layout__image {
    max-width: 100%;
    width: 100%;
  }

  .dev-project__layout__image img {
    max-height: 350px;
  }

  .dev-project__layout__info {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 750px) {
  .project-title {
    font-size: 15px;
    left: 20px;
    bottom: 20px;
  }

  .project-dev {
    width: 100%;
    max-height: 350px;
  }

  .project-dev img {
    min-height: 246px;
    max-height: 246px;
  }

  .member-icon {
    width: 60px;
    height: 60px;
  }

  .member-position {
    font-size: 15px;
  }

  .member-name {
    font-size: 20px;
  }

  .about-icon__right {
    right: -300px;
    width: 400px;
    bottom: 27%;
  }

  .about-icon__left {
    left: -300px;
    width: 400px;
    bottom: 30%;
  }
}

@media (max-width: 650px) {
  .complex-gallery img {
    max-width: 172px;
    width: 100%;
    height: 156px;
    object-fit: fill;
    object-position: center;
  }
}

@media (max-width: 500px) {
  .member-icon {
    width: 42px;
    height: 42px;
  }

  .member-position {
    font-size: 11px;
  }

  .member-name {
    font-size: 15px;
  }
  .mobile-header img {
    width: 150px;
  }
}

@media (max-width: 450px) {
  .news-item {
    width: 100%;
  }

  .news-item img {
    max-height: 415px;
  }
}
