.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 28px 0;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__nav ul a {
  color: #64748B;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 111.111% */
  letter-spacing: -0.18px;
  position: relative;
}
.header__nav ul a:hover {
  color: #1E847C;
}
.header__nav ul a.active {
  color: #135B5A;
  pointer-events: none;
  cursor: default;
}
.header .burger {
  position: relative;
  width: 20px;
  height: 15px;
  cursor: pointer;
  display: none;
}
.header .burger span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #135B5A;
  transition: 0.3s;
}
.header .burger span:first-of-type {
  top: 0;
}
.header .burger span:nth-last-of-type(2) {
  top: 46%;
}
.header .burger span:last-of-type {
  bottom: 0;
}
.header .burger.active span:first-of-type {
  transform: rotate(-45deg);
  top: 5px;
}
.header .burger.active span:last-of-type {
  transform: rotate(45deg);
  bottom: 8px;
}
.header .burger.active span:nth-last-of-type(2) {
  display: none;
}
@media (max-width: 1280px) {
  .header__wrapper {
    gap: 25px;
  }
  .header__wrapper img {
    width: 150px;
  }
  .header__nav ul {
    gap: 20px;
  }
  .header__nav ul a {
    font-size: 16px;
  }
}
@media (min-width: 993px) {
  .header__nav ul a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 2px solid #1E847C;
    transition: 0.5s;
  }
  .header__nav ul a:hover::after {
    width: 100%;
  }
  .header__nav ul a.active::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
    z-index: 1000;
  }
  .header__nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background-color: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
  .header__nav.active {
    top: 0;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header__wrapper img {
    width: 100px;
  }
}

main {
  padding-top: 110px;
  position: relative;
}

.img-after {
  position: relative;
}

.img-after::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3607843137);
  z-index: 10;
}

@media (max-width: 992px) {
  main {
    padding-top: 85px;
  }
}
.hero {
  position: relative;
}
.hero__wrapper {
  position: relative;
  z-index: 20;
  text-align: center;
  padding-top: 15%;
  padding-bottom: 8%;
}
.hero__wrapper h1 {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.5);
  font-family: Gotham;
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: 38px;
  /* 108.571% */
  letter-spacing: -0.35px;
  margin-bottom: 20px;
}
.hero__wrapper p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.5);
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 111.111% */
  letter-spacing: -0.18px;
  margin-bottom: 20px;
}
.hero__wrapper a {
  max-width: 350px;
  margin: auto;
}
@media (max-width: 992px) {
  .hero__wrapper h1 {
    font-size: 28px;
  }
  .hero__wrapper p {
    font-size: 16px;
  }
}

.complex-block .filter__container {
  border-radius: 25px;
  background: #F1F5F9;
  padding: 50px;
}
.complex-block .filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
}
.complex-block .form-wrapper {
  background-color: #fff;
  padding: 30px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-top: 1px;
}
.complex-block p {
  color: #64748B;
  text-align: center;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 111.111% */
  letter-spacing: -0.18px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.complex-block .filter-wrapper label {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.complex-block .filter-wrapper label span {
  background-color: #fff;
  padding: 17px 30px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 100%;
}
.complex-block .control-input[type=checkbox]:checked + .control-mark {
  background-color: #135B5A;
  color: #fff;
}
.complex-block .filter-container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.complex-block .filter-container div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.complex-block .filter-container label {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  /* 112.5% */
  letter-spacing: -0.18px;
}
.complex-block .filter-container input {
  border-radius: 6px;
  background: #F1F5F9;
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 112.5% */
  letter-spacing: -0.18px;
  padding: 15px 30px;
  width: 350px;
}
.complex-block .form-container {
  margin-top: 30px;
}
.complex-block .room-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.complex-block .room-wrapp button {
  width: 285px;
}
.complex-block .room-title {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  /* 112.5% */
  letter-spacing: -0.18px;
}
.complex-block .room-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.complex-block .control-label-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.complex-block .control-mark-radio {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: #F1F5F9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complex-block .control-input-radio[type=radio]:checked + .control-mark-radio {
  background-color: #135B5A;
  color: #fff;
}
@media (max-width: 992px) {
  .complex-block .filter__container {
    padding: 20px;
  }
  .complex-block .filter-container {
    flex-direction: column;
  }
  .complex-block .filter-container div {
    width: 100%;
  }
  .complex-block .filter-container input {
    width: 100%;
  }
  .complex-block .filter-wrapper label span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .complex-block .filter-wrapper {
    flex-direction: column;
  }
  .complex-block .filter-wrapper label:nth-child(1) span {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  .complex-block .filter-wrapper label span {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .complex-block .room-filter {
    gap: 10px;
    flex-wrap: wrap;
  }
  .complex-block .room-wrapp {
    flex-direction: column;
    align-items: start;
  }
  .complex-block .room-wrapp button {
    width: 100%;
  }
  .complex-block .control-label-radio {
    width: 40px;
    height: 40px;
  }
}

.project__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project__wrapp {
  display: flex;
  gap: 30px;
}
.project__left {
  position: relative;
  width: 100%;
  max-width: 605px;
  border-radius: 25px;
  overflow: hidden;
}
.project__img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(179deg, rgba(0, 0, 0, 0) 52.77%, #000 130.13%);
  width: 100%;
  height: 50%;
  border-radius: 25px;
}
.project__img {
  width: 100%;
  padding-top: 71%;
  position: relative;
}
.project__img img {
  border-radius: 25px;
  transition: 0.5s;
}
.project__left:hover img {
  transform: scale(1.1);
}
.project__class {
  opacity: 0.8;
  color: #FFF;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.16px;
  padding: 11px 20px;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.project__desc {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 30px;
}
.project__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project__info h3 {
  color: #FFF;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
}
.project__info span {
  color: #FFF;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
}
.project__info:nth-of-type(2) {
  text-align: right;
  margin-top: auto;
}
.project__right {
  width: 100%;
  max-width: 605px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project__card {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
  height: 100%;
  max-height: 390px;
  position: relative;
}
.project__card-img {
  position: relative;
  padding-top: 70%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
}
.project__card:hover img {
  transform: scale(1.2);
}
.project__card-img img {
  transition: 0.5s;
}
.project__card-desc {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project__card-desc h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
  transition: 0.3s;
}
.project__card:hover h3 {
  color: #1E847C;
}
.project__card-desc span {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
}
.project__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.project__other {
  width: 100%;
  max-width: 285px;
  margin: 50px auto 0;
}
@media (max-width: 1080px) {
  .project__card-desc {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .project__wrapp {
    flex-direction: column;
  }
  .project__left {
    max-width: 100%;
  }
  .project__right {
    max-width: 100%;
  }
  .project__bottom {
    grid-template-columns: 1fr 1fr;
  }
  .project__card {
    max-height: 100%;
  }
  .project__card-desc {
    padding: 30px;
  }
  .project__card-desc h3 {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .project__right {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  .project__bottom {
    grid-template-columns: 1fr;
  }
}

.pay__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.pay__card {
  border-radius: 25px;
  background: #F1F5F9;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pay__container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.pay__card h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
}
.pay__card p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.16px;
  margin-top: auto;
}
@media (max-width: 1280px) {
  .pay__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .pay__wrapper {
    grid-template-columns: 1fr;
  }
}

.about-block {
  position: relative;
}
.about-block::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.about-block__wrapper {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 10% 20px;
}
.about-block__wrapper h2 {
  color: #fff;
}
.about-block__wrapper p {
  color: #FFF;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  letter-spacing: -0.16px;
  margin: 30px auto;
  width: 100%;
  max-width: 800px;
}
.about-block__wrapper a {
  width: 100%;
  max-width: 285px;
  margin: auto;
}

.advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.advantages__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media (max-width: 992px) {
  .advantages__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .advantages__wrapper {
    grid-template-columns: 1fr;
  }
}

.news-block__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.news-block__card {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background: #F1F5F9;
  position: relative;
}
.news-block__card-img {
  position: relative;
  padding-top: 43%;
}
.news-block__card-img img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.news-block__card a {
  position: absolute;
  bottom: -20px;
  right: 30px;
  z-index: 5;
  border-radius: 24px;
  background: #FFF;
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.18px;
  padding: 11px 36px;
}
.news-block__card a:hover {
  background-color: #1E847C;
  color: #fff;
}
.news-block__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}
.news-block__desc span, .news-block__desc p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
}
.news-block__desc h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
}
.news-block__card .other a {
  position: relative;
  bottom: 0;
  right: 0;
  color: #64748B;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.18px;
  border-radius: 24px;
  border: 2px solid #1E847C;
  width: 100%;
  max-width: 165px;
  margin: 30px auto 0;
}
.news-block__card .other a:hover {
  background: #1E847C;
  color: #fff;
}
@media (max-width: 992px) {
  .news-block__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .news-block__wrapper {
    grid-template-columns: 1fr;
  }
}

.inst {
  background: rgba(30, 132, 124, 0.1882352941);
}
.inst__wrapper {
  padding: 70px 20px;
}
.inst__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.inst__wrapp {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.inst__img {
  position: relative;
  padding-top: 143%;
}
.inst__container a {
  color: #64748B;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.18px;
  border-radius: 24px;
  border: 2px solid #1E847C;
  padding: 10px 27px;
}
.inst__container a:hover {
  background-color: #1E847C;
  color: #fff;
}
@media (max-width: 992px) {
  .inst__wrapp {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .inst__wrapp {
    grid-template-columns: 1fr;
  }
  .inst__container {
    flex-direction: column;
    align-items: baseline;
  }
}

.reviews {
  position: relative;
}
.reviews__slider {
  padding: 50px 10px;
  position: static;
}
.reviews__slide {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
}
.reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.reviews__slide p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.16px;
  margin-bottom: 44px;
}
.reviews__slide h3 {
  color: #64748B;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.18px;
  margin-bottom: 10px;
}
.reviews__slide span {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
}
.reviews .swiper-button-prev {
  left: 0;
  width: 45px;
  height: 45px;
  top: 54%;
}
.reviews .swiper-button-next {
  right: 0;
  width: 45px;
  height: 45px;
  top: 54%;
}
.reviews .swiper-button-prev::after,
.reviews .swiper-button-next::after {
  content: "";
}
.reviews .swiper-slide-next {
  border-radius: 25px;
  background: #F1F5F9;
  box-shadow: 0px 0px 50px 0px rgba(19, 91, 90, 0.25);
}

.map {
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map__wrapper {
  padding: 10% 20px;
}
.map__container {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  padding: 40px 40px;
  z-index: 50;
  position: relative;
  max-width: 400px;
}
.map__container h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
  margin-bottom: 30px;
}
.map__container li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.map__container li p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  letter-spacing: -0.16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map__container li p span, .map__container li p a {
  color: #1E847C;
  display: block;
}
.map__container li p a:hover {
  color: #135B5A;
  text-decoration: underline;
}

.form {
  position: relative;
}
.form .container {
  padding-top: 10%;
  padding-bottom: 10%;
}
.form__wrapper {
  border-radius: 25px;
  background: #FFF;
  padding: 50px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 480px;
  margin: auto;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 45px;
}
.form form input {
  border-radius: 30px;
  border: 1px solid #EBEBEB;
  background: #FFF;
  padding: 18px 30px;
  width: 100%;
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.18px;
}
.form form label {
    position: relative;
}
.form form span {
    border-radius: 30px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    padding: 18px 30px;
    width: 100%;
    color: #64748B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: -0.18px;
    display: block;
    cursor: pointer;
}
.form form label:hover span {
    border-color: #135B5A;
}
@media (max-width: 767px) {
  .form__wrapper {
    padding: 30px;
  }
}

.footer {
  padding: 40px 0 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__nav ul a, .footer__nav ul span {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.18px;
}
.footer__nav ul a:hover {
  color: #1E847C;
}
.footer__nav p {
  color: #1E847C;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.18px;
  margin-bottom: 15px;
}
.footer__bot {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer__container span, .footer__container a {
  color: #64748B;
  text-align: right;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
}
.footer__container a:hover {
  color: #1E847C;
}
@media (max-width: 992px) {
  .footer__top img {
    width: 100px;
  }
  .footer__nav ul a, .footer__nav ul span {
    font-size: 14px;
  }
  .footer__nav p {
    font-size: 16px;
  }
  .footer__container span, .footer__container a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__nav ul {
    align-items: center;
  }
  .footer__container {
    flex-direction: column;
  }
}

.about__desc {
  margin-bottom: 80px;
}
.about__desc p {
  color: #333;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  margin-top: 50px;
}
.about__img {
  position: relative;
  padding-top: 43%;
}
.about__wrapper:first-of-type {
  margin-top: 90px;
  margin-bottom: 60px;
}
.about__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about__left {
  width: 100%;
  max-width: 570px;
}
.about__left h2 {
  text-align: left;
  margin-bottom: 30px;
}
.about__left p {
  color: #333;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  margin-top: 0;
}
.about__right {
  width: 100%;
  max-width: 609px;
  position: relative;
  padding-top: 34%;
}
.about__right img {
  border-radius: 25px;
}
@media (max-width: 992px) {
  .about__wrapper {
    flex-direction: column;
  }
  .about__wrapper:first-of-type {
    margin-top: 50px;
  }
  .about__wrapper:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .about__left {
    max-width: 100%;
  }
  .about__right {
    max-width: 100%;
    padding-top: 43%;
  }
}

.breadcrumbs {
  padding-top: 50px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumbs ul li {
  color: #64748B;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.18px;
}

.breadcrumbs ul a {
  color: #64748B;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.18px;
}

.breadcrumbs ul a:hover {
  color: #135B5A;
}

.complex {
  margin-bottom: 100px;
}

.complex-inner__img {
  position: relative;
}
.complex-inner__img .breadcrumbs {
  position: relative;
  z-index: 15;
  padding-bottom: 35%;
}
.complex-inner__img .breadcrumbs ul li {
  color: #fff;
}
.complex-inner__img .breadcrumbs ul a {
  color: #fff;
}
.complex-inner__img .breadcrumbs ul a:hover {
  color: #1E847C;
}

.complex-inner__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.complex-inner .swiper-pagination-bullet {
  background-color: #fff;
}
.complex-inner__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.complex-inner__desc h2 {
  text-align: left;
  margin-bottom: 10px;
}
.complex-inner__desc p {
  color: #333;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}
.complex-inner__advantages h2 {
  text-align: left;
}
.complex-inner__advantages-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.complex-inner__advantages-img {
  position: relative;
  padding-top: 100%;
}
.complex-inner__advantages-img img {
  border-radius: 25px;
}
.complex-inner__desc p:first-of-type {
  margin-bottom: 30px;
}
.complex-inner__advantages-card h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.complex-inner__advantages-card p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  letter-spacing: -0.16px;
}
@media (max-width: 992px) {
  .complex-inner__advantages-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .complex-inner__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .complex-inner__advantages-wrapper {
    grid-template-columns: 1fr;
  }
}
.info__card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info__card h3 {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
  margin-bottom: 10px;
}

.info__card p {
  color: #333;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}

.layouts__wrapper {
  background-color: #fff;
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.16));
  padding: 50px;
  border-radius: 0 0 25px 25px;
}
.layouts__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  margin-top: 50px;
}
.layouts__tabs button {
  color: #135B5A;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.18px;
  border-radius: 25px 25px 0px 0px;
  background: #F1F5F9;
  padding: 15px 30px;
  width: 100%;
  text-align: start;
  transition: 0.3s;
}
.layouts__tabs button.active {
  color: #fff;
  background-color: #135B5A;
  cursor: default;
  pointer-events: none;
}
.layouts__tabs button:hover {
  background-color: #1E847C;
  color: #fff;
}
.layouts__content {
  display: none;
}
.layouts__content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
.layouts__img {
  position: relative;
  cursor: zoom-in;
}
.layouts__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layouts__img.fullscreen {
  cursor: zoom-out;
  padding: 0;
}
.layouts__img.fullscreen img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .layouts__tabs button {
    padding: 15px 10px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .layouts__content.active {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .layouts__tabs {
    flex-direction: column;
  }
  .layouts__tabs button:not(:first-of-type) {
    border-radius: 0;
  }
}

.layouts h2 {
  text-align: left;
}

.stages h2 {
  text-align: left;
}

.stages__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 30px;
}
.stages__card {
  height: 300px;
}
.stages__card iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
@media (max-width: 992px) {
  .stages__card {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .stages__wrapper {
    grid-template-columns: 1fr;
  }
}

.news {
  margin-bottom: 100px;
}
.news button {
  display: block;
  width: 100%;
  max-width: 185px;
  margin: 50px auto 0;
}
.news__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.news__card {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.news__img {
  position: relative;
  padding-top: 43%;
}
.news__img img {
  border-radius: 25px 25px 0 0;
}
.news__text {
  padding: 30px;
}
.news__text span {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.16px;
  display: block;
  margin-bottom: 10px;
}
.news__text h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.news__text p {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.16px;
  margin-bottom: 30px;
}
.news__text a {
  color: #64748B;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.18px;
  border-radius: 24px;
  border: 2px solid #1E847C;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 165px;
  margin: auto;
}
.news__text a:hover {
  background-color: #1E847C;
  color: #fff;
}
@media (max-width: 992px) {
  .news__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .news__text {
    padding: 15px;
  }
  .news__text h3 {
    font-size: 18px;
  }
  .news__text p {
    font-size: 14px;
  }
  .news__text a {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .news__wrapper {
    grid-template-columns: 1fr;
  }
}

.news-inner {
  margin-top: 50px;
  margin-bottom: 100px;
}
.news-inner__img {
  position: relative;
  padding-top: 40%;
  margin-top: 50px;
  margin-bottom: 50px;
}
.news-inner__img img {
  border-radius: 60px;
}
.news-inner p {
  color: #333;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.news-inner p:first-of-type {
  margin-top: 50px;
}
.news-inner p:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .news-inner p {
    font-size: 16px;
  }
  .news-inner p:first-of-type {
    margin-top: 20px;
  }
  .news-inner__img img {
    border-radius: 25px;
  }
}

.stock__card {
  height: 100%;
  max-height: 100%;
}
.stock__card-desc a {
  color: #64748B;
  text-align: center;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.18px;
  border-radius: 24px;
  border: 2px solid #1E847C;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 165px;
  margin: 30px auto 0;
}
.stock__card-desc a:hover {
  background-color: #1E847C;
  color: #fff;
}

.contacts__wrapp {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.contacts__wrapp ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts__wrapp ul a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.contacts__card {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 40px;
}
.contacts__card:nth-child(2) {
  border-radius: 25px;
  background: #F1F5F9;
  box-shadow: 0px 0px 50px 0px rgba(19, 91, 90, 0.25);
}
.contacts__card h3 {
  color: #111;
  font-family: Gotham;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%; /* 23.6px */
  margin-bottom: 30px;
}
.contacts__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__group span {
  color: #64748B;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts__group span a {
  color: #64748B;
  font-weight: 400;
}
.contacts__group span a:hover {
  color: #135B5A;
}
@media (max-width: 992px) {
  .contacts__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .contacts__card {
    padding: 30px;
  }
  .contacts__card h3 {
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
  }
}

.policy {
  margin-top: 50px;
  margin-bottom: 100px;
}
.policy p {
  color: #333;
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  margin-top: 30px;
}

.error img {
  width: 100%;
  height: 100%;
  max-width: 750px;
  max-height: 500px;
  display: block;
  margin: auto;
}


/*Modal*/
/* Фон модального окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Затемненный фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden; /* Скрываем элемент, когда он невиден */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Переход для плавного исчезновения */
}

/* Показ модального окна */
.modal-overlay.show {
    opacity: 1;
    visibility: visible; /* Показываем элемент */
}

/* Контейнер модального окна */
.custom-modal {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 350px;
    max-width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease; /* Переход для плавного увеличения */
}

/* Анимация для показа модального окна */
.modal-overlay.show .custom-modal {
    transform: scale(1);
}

.modal-header {
    background-color: #4CAF50;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-content {
    padding: 20px;
    font-size: 16px;
    color: #333;
}

.close-btn {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.close-btn:hover {
    color: #ffdddd;
}
