@charset "UTF-8";

@font-face {
  font-family: Aeroport;
  font-display: swap;
  src: url("../fonts/Aeroport-Bold.woff2") format("woff2"), url("../fonts/Aeroport-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Aeroport;
  font-display: swap;
  src: url("../fonts/Aeroport-Medium.woff2") format("woff2"), url("../fonts/Aeroport-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Aeroport;
  font-display: swap;
  src: url("../fonts/Aeroport-regular.woff2") format("woff2"), url("../fonts/Aeroport-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

.way-opacity {
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way.way--active.way-opacity {
    opacity: 1;
}

.way-element-left {
    transform: translateX(-150px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way-element-right {
    transform: translateX(150px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way.way--active.way-element-left {
    opacity: 1;
    transform: translateX(0);
}

.way.way--active.way-element-right {
    opacity: 1;
    transform: translateX(0);
}

.way-element-drop {
    transform: translateY(-100px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way.way--active.way-element-drop {
    transform: translateY(0);
    opacity: 1;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 18px;
  font-family: Aeroport;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ECEFF3;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1332px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 150px 0;
}

.title {
  color: #0A3B4C;
  font-family: Aeroport;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 111%;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.mob {
  display: none;
}

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #000000;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 9;
}

.header__tech {
  background: #2B99B6;
  padding: 5px 0;
}

.header__tech p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.header__tech p a {
  text-decoration: underline;
}

.header__top {
  border-bottom: 1px solid #DBDBDB;
}

.header__top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__lang a {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 14px;
  color: #64748B;
  font-weight: 700;
  transition: 0.2s ease-in-out;
}

.header__lang a:hover {
  color: #186D83;
}

.header__lang a.active {
  border: 1px solid #186D83;
  background: rgba(47, 204, 113, 0);
  color: #186D83;
}

.header__elems {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__elems a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__elems a svg {
  width: 18px;
  height: 18px;
}

.header__elems a:hover {
  text-decoration: underline;
}

.header__bot {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.header__logo {
  width: 100px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 30px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  margin-right: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__nav-link {
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.header__nav-link:not(.news-sell-link):hover {
  text-decoration: underline;
}

.header__nav-link:not(.news-sell-link).active {
  color: #186D83;
}

.news-sell-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ec2d2d;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(236, 45, 45, 0.5);
}

.news-sell-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.news-sell-link::before, 
.news-sell-link::after{
  position: absolute;
  content: '';
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}

.news-sell-link:before{
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, transparent 20%, #ec2d2d 20%, transparent 30%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ec2d2d 15%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.news-sell-link::after{
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ec2d2d 15%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%), radial-gradient(circle, #ec2d2d 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.news-sell-link:active{
  transform: scale(0.9);
  background-color: #ec2d2d;
  box-shadow: 0 2px 25px rgba(43, 153, 182, 0.2);
}

.news-sell-link.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.news-sell-link.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}


@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.header__feedback {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #D1D1D1;
  background: #FFF;
  color: #0A3B4C;
  transition: 0.2s ease-in-out;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  animation: pulse 1.5s infinite;
}

.header__feedback:hover {
  background: #0A3B4C;
  color: #ffffff;
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.4);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(90, 153, 212, 0);
      box-shadow: 0 0 0 10px rgba(90, 153, 212, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

.header-space {
  padding-top: 133px;
}

.footer {
  margin-top: auto;
  background: #FFF;
  border-top: 1px solid rgba(100, 116, 139, 0.5);
}

.footer__container {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  margin-bottom: 40px;
  width: 140px;
  height: 58px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__col-link {
  color: #64748B;
  opacity: 0.8;
  line-height: 166%;
  transition: 0.2s ease-in-out;
}

.footer__col-link:hover {
  opacity: 1;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav ul li {
  list-style-type: none;
}

.footer__nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #64748B;
  line-height: 166%;
}

.footer__nav ul li a:hover {
  text-decoration: underline;
}

.footer__nav ul li a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
}

.footer__nav-title {
  font-weight: 700;
  color: #232323;
  font-size: 20px;
}

.footer__subs {
  width: 350px;
  display: flex;
  align-items: center;
}

.footer__subs input {
  padding: 10px 20px;
  color: #64748B;
  font-size: 16px;
  border-radius: 6px 0px 0px 6px;
  background: #ECEFF3;
  border: none;
  outline: none;
  height: 40px;
}

.footer__subs button {
  padding: 10px 28px;
  color: #FFF;
  font-size: 16px;
  border-radius: 0 6px 6px 0;
  background: #186D83;
  cursor: pointer;
  border: none;
  outline: none;
  height: 40px;
  transition: 0.2s ease-in-out;
}

.footer__subs button:hover {
  background: #ECEFF3;
  color: #186D83;
}

.footer__bot {
  border-top: 1px solid rgba(100, 116, 139, 0.5);
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #64748B;
  font-size: 16px;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #186;
  opacity: 1;
}

.footer__bot-container a,
.footer__bot-container span {
  opacity: 0.5;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  color: #186D83;
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  color: #64748B;
  white-space: nowrap;
  font-size: 16px;
}

.breadcrumbs__list-link:hover {
  text-decoration: underline;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
}

.hero__container {
  padding-top: 30px;
  padding-bottom: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px;
}

.hero__left {
  position: relative;
  height: 500px;
  border-radius: 35px;
  overflow: hidden;
}

.about .hero__left {
  height: 700px;
  overflow: unset;
}

/* .hero__left::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
} */

.hero__left-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__left-images .swiper-slide {
  height: 100%;
}

.hero__left-images .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
}

.hero__left-text {
  /* padding: 80px; */
  height: 100%;
}

.hero__left-text .swiper-slide {
  padding: 80px;
}

.hero__left-text .swiper-slide h3 {
  color: #FFF;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.35);
  font-family: Aeroport;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  max-width: 600px;
}

.hero__left-text .swiper-slide h3 span {
  color: #C1A875;
}

.hero__left-text .swiper-slide p {
  margin-top: 10px;
  color: #FFF;
}

.hero__left-arrows {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__left-arrows a {
  display: flex;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 1;
  transition: 0.2s ease-in-out;
}

.hero__left-arrows a:hover {
  transform: scale(1.1);
}

.hero__left-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 30px !important;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__left-pagination .swiper-pagination-bullet {
  opacity: 0.5;
  background: #FFF;
}

.hero__left-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.hero__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero__right {
  position: relative;
  display: flex;
  flex-direction: column;
  /* background: url("../img/hero-phone.jpg") center/cover no-repeat; */
  padding: 30px;
  border-radius: 35px;
  /* overflow: hidden; */
  height: 48%;
}

.hero__right img {
  position: absolute;
  width: 100%;
  height: calc(100% + 20px);
  /* object-fit: cover; */
  top: -20px;
  left: 0;
}

.hero__right-title {
  position: relative;
  color: #FFF;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.35);
  font-size: 24px;
  line-height: 116%;
  width: 250px;
}

.hero__right-link {
  position: relative;
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: #D1F3FC;
  color: #186D83;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.hero__right-link:hover {
  background: #fff;
}

.projects__container {
  display: flex;
  flex-direction: column;
  padding-bottom: 180px;
}

.projects__title {
  margin-bottom: 50px;
}

.projects__more {
  display: inline-flex;
  margin-top: 50px;
  border-radius: 20px;
  background: #186D83;
  padding: 18px 82px;
  font-weight: 500;
  color: #ffffff;
  -ms-grid-row-align: center;
      align-self: center;
  transition: 0.2s ease-in-out;
}

.projects__more span {
  pointer-events: none;
}

.projects__more span:nth-child(2) {
  display: none;
}

.projects__more.active span:nth-child(2) {
  display: block;
}

.projects__more.active span:nth-child(1) {
  display: none;
}

.projects__more:hover {
  background: #ffffff;
  color: #186D83;
}

.filter {
  display: flex;
  gap: 87px;
  align-items: flex-end;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
}

.filter__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.filter__col span {
  color: #64748B;
  font-size: 18px;
  font-weight: 700;
}

.filter__select {
  width: 350px;
}

.filter__select select {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  padding-left: 20px;
  color: #64748B;
}

.filter__rooms {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter__rooms label {
  position: relative;
  cursor: pointer;
}

.filter__rooms label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.filter__rooms label input:checked + span {
  background: #186D83;
  color: #ffffff;
}

.filter__rooms label span {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: 0.2s ease-in-out;
}

.filter__submit {
  margin-left: auto;
  padding: 12px 40px;
  font-size: 16px;
  border-radius: 12px;
  background: #186D83;
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  height: 45px;
  transition: 0.2s ease-in-out;
}

.filter__submit:hover {
  background: #ffffff;
  color: #186D83;
}

.filter__projects {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.filter__projects-block {
  border-radius: 25px;
  background: #FFF;
  padding: 5px;
  display: flex;
  align-items: center;
}

.filter__projects-block label {
  position: relative;
  cursor: pointer;
}

.filter__projects-block label span {
  display: flex;
  color: #64748B;
  padding: 9px 20px;
  border-radius: 20px;
  transition: 0.2s ease-in-out;
  text-align: center;
}

.filter__projects-block label input:checked + span {
  background: #186D83;
  color: #ffffff;
}

.projects__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.projects__item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-bottom: 30px;
  background: #ffffff;
  border-radius: 25px;
  background: #FFF;
}

.projects__item.hidden {
  display: none;
}

.projects__item:hover img {
  transform: scale(1.1);
}

.projects__item-img {
  position: relative;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.projects__item-img::before {
  display: block;
  content: "";
}

.projects__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.projects__item-img img {
  transition: 0.2s ease-in-out;
}

.projects__item-img::before {
  padding-top: 79%;
}
.projects__item-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.projects__item-tag {
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 125%;
  text-transform: uppercase;
  opacity: 0.9;
  border-radius: 20px;
}

.projects__item-tag.comfort {
  background: #ffffff;
  color: #0A3B4C;
}

.projects__item-tag.business {
  background: #186D83;
  color: #FFF;
}

.projects__item-tag.object {
  /* right: unset;
  left: 12px; */
}

.projects__item-title {
  margin-bottom: 20px;
  color: #232323;
  font-size: 28px;
  font-weight: 700;
  line-height: 117%;
  text-transform: uppercase;
  padding: 0 20px;
}

.projects__item-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.projects__item-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  color: #232323;
}

.projects__item-list li span:nth-child(2) {
  display: flex;
}

.projects__item-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  /* margin-top: auto; */
  margin-left: 20px;
  margin-right: 20px;
}
.projects__item-condition {
  padding: 4px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 114%;
  border-radius: 12px;
  opacity: 0.9;
  background: rgba(24, 109, 131, 1);
  align-self: flex-start;
}

.company__container {
  position: relative;
  background: linear-gradient(270deg, #186D83 0%, #0A3B4C 100%);
  border-radius: 35px;
}

.company__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 100px;
  width: 50%;
  margin-left: auto;
  padding-left: 0;
}

.company__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
}

.company__title {
  margin-bottom: 50px;
  color: #ffffff;
}

.company__text {
  line-height: 175%;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 30px;
}

.company__link {
  padding: 15px 96px;
  border-radius: 12px;
  border: 1px solid #FFF;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.company__link:hover {
  background: #ffffff;
  color: #186D83;
}

.benefits__container {
  padding: 100px 0;
  display: flex;
}

.benefits__left {
  width: 50%;
  background: #FFF;
  padding: 60px 80px;
  border-radius: 35px 0 0 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.benefits__pagination {
  position: relative;
  margin-bottom: 70px;
  bottom: unset !important;
  left: unset !important;
  width: unset !important;
  display: flex;
}

.benefits__pagination::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #EAE9E9;
  left: 50%;
  width: 742px;
  height: 1px;
}

.benefits__pagination .swiper-pagination-bullet {
  background: #0A3B4C;
  opacity: 0.5;
  transition: 0.2s ease-in-out;
  z-index: 2;
}

.benefits__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.benefits__titles {
  margin-bottom: 80px;
  width: 100%;
}

.benefits__titles .swiper-slide h3 {
  color: #232323;
  font-size: 36px;
  font-weight: 700;
  line-height: 111%;
}

.benefits__link {
  margin-top: auto;
  padding: 4px 30px;
  border-radius: 17.5px;
  border: 1px solid #186D83;
  color: #232323;
  transition: 0.2s ease-in-out;
}

.benefits__link:hover {
  background: #186D83;
  color: #ffffff;
}

.benefits__right {
  position: relative;
  width: 50%;
  border-radius: 0 35px 35px 0;
  overflow: hidden;
}

.benefits__images {
  width: 100%;
  height: 100%;
}

.benefits__images .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits__arrows {
  position: absolute;
  top: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.benefits__arrows a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.benefits__arrows a:hover {
  transform: scale(1.1);
}

.condition__container {
  display: flex;
  flex-direction: column;
}

.condition__title {
  margin-bottom: 50px;
}

.condition__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.condition__item {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
}

.condition__item.hidden {
  display: none;
}

.condition__item-img {
  position: relative;
  background: #fff;
}

.condition__item-img::before {
  display: block;
  content: "";
}

.condition__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.condition__item-img::before {
  padding-top: 90%;
}

.condition__item-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 18px;
  border-radius: 12px;
  background: #FFF;
  color: #979797;
  font-size: 16px;
  font-weight: 700;
}

.condition__item-block {
  padding: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.condition__item-title {
  color: #232323;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.condition__item-text {
  margin-bottom: 30px;
  color: #64748B;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.condition__item-link {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 8px;
  border-radius: 17.5px;
  border: 1px solid #186D83;
  transition: 0.2s ease-in-out;
}

.condition__item-link:hover {
  background: #186D83;
  color: #ffffff;
}

.condition__more {
  -ms-grid-row-align: center;
      align-self: center;
  padding: 18px 80px;
  border-radius: 12px;
  background: #186D83;
  color: #FFF;
  font-weight: 500;
  margin-top: 50px;
  transition: 0.2s ease-in-out;
}

.condition__more span {
  pointer-events: none;
}

.condition__more span:nth-child(2) {
  display: none;
}

.condition__more.active span:nth-child(2) {
  display: block;
}

.condition__more.active span:nth-child(1) {
  display: none;
}

.condition__more:hover {
  background: #ffffff;
  color: #186D83;
}

.feedback__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 48px 30px;
  padding: 100px 0;
}

.feedback__left {
  position: relative;
  background: url("../img/feedback-big.jpg") center/cover no-repeat;
  border-radius: 36px;
  overflow: hidden;
  padding: 60px;
  color: #ffffff;
}

.feedback__left-img {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 0;
  border-radius: 75px 0 75px 0;
  overflow: hidden;
}

.feedback__left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback__left-tag {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 23px;
  z-index: 1;
}

.feedback__left-title {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 60px;
  z-index: 1;
}

.feedback__left-text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
  margin-bottom: 115px;
}

.feedback__left-form {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.feedback__left-form input {
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #FFF;
  background: transparent;
  outline: none;
  color: #ffffff;
  padding-bottom: 10px;
}

.feedback__left-form input::-moz-placeholder {
  color: #ffffff;
}

.feedback__left-form input:-ms-input-placeholder {
  color: #ffffff;
}

.feedback__left-form input::placeholder {
  color: #ffffff;
}

.feedback__left-form button {
  padding: 18px;
  color: #FFF;
  font-weight: 500;
  line-height: 111%;
  border-radius: 27.5px;
  border: 1px solid #FFF;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.feedback__left-form button:hover {
  background: #ffffff;
  color: #186D83;
}

.feedback__right {
  background: url("../img/feedback-small.jpg") center/cover no-repeat;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
}

.feedback__right-title {
  color: #FFF;
  font-size: 35px;
  font-weight: 700;
  line-height: 105%;
  margin-bottom: 10px;
}

.feedback__right-text {
  color: #FFF;
  font-size: 20px;
  line-height: 115%;
}

.feedback__right-link {
  margin-top: auto;
  color: #186D83;
  font-size: 16px;
  font-weight: 500;
  line-height: 112%;
  border-radius: 12px;
  background: #D1F3FC;
  padding: 14px;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.feedback__right-link:hover {
  background: #ffffff;
}

.feedback__text {
  color: #64748B;
  line-height: 122%;
  letter-spacing: 0.5px;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.mission__container {
  display: -ms-grid;
  display: grid;
  grid-gap: 100px;
  padding: 100px 0;
}

.mission__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 84px;
  align-items: center;
}

.mission__image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.mission__image::before {
  display: block;
  content: "";
}

.mission__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mission__image::before {
  padding-top: 66%;
}

.mission__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission__title {
  color: #0A3B4C;
  margin-bottom: 30px;
}

.mission__text {
  color: #64748B;
  line-height: 155%;
  letter-spacing: 0.5px;
}

.mission__numbers {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.mission__numbers-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.mission__numbers-col div {
  color: #0A3B4C;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1px;
}

.mission__numbers-col span {
  color: #64748B;
  font-weight: 700;
  letter-spacing: -0.18px;
}

.cv__container {
  padding-bottom: 100px;
}

.cv form {
  position: relative;
}

.cv__form {
  position: relative;
  background: url("../img/cv-big.jpg") center/cover no-repeat;
  padding: 60px;
  border-radius: 36px;
  overflow: hidden;
}

.cv__subtitle {
  position: relative;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 14px;
  line-height: 142%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.cv__title {
  position: relative;
  margin-bottom: 40px;
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: 80%;
  text-transform: uppercase;
  z-index: 1;
}

.cv__text {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 670px;
  z-index: 1;
}

.cv__inputs {
  /* position: relative; */
  z-index: 1;
  padding-bottom: 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 20px;
  max-width: 800px;
  width: 100%;
}

.cv__inputs input {
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
}

.cv__inputs input::-moz-placeholder {
  color: #ffffff;
}

.cv__inputs input:-ms-input-placeholder {
  color: #ffffff;
}

.cv__inputs input::placeholder {
  color: #ffffff;
}

.cv__inputs label {
  display: flex;
  width: 100%;
  cursor: pointer;
}

.cv__inputs label span {
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
}

.cv__submit {
  position: absolute;
  right: 60px;
  bottom: 60px;
  padding: 18px 80px;
  color: #FFF;
  font-weight: 500;
  line-height: 111%;
  border-radius: 27.5px;
  border: 1px solid #FFF;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.cv__submit:hover {
  background: #ffffff;
  color: #186D83;
}

.cv__small {
  position: absolute;
  top: 60px;
  right: 60px;
  border-radius: 80px 0 80px 0;
}

.complexes__container {
  display: flex;
  flex-direction: column;
}

.complexes__price {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 1;
  padding: 18px 40px;
  border-radius: 47px;
  background: #186D83;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.complexes__price span {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.hero__benefits {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 50px;
}

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

.hero__benefits-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #186D83;
  flex-shrink: 0;
}

.hero__benefits-image img {
  /* width: 100%;
  height: 100%; */
  object-fit: contain;
}

.hero__benefits-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.hero__benefits-col span {
  font-size: 16px;
  color: #64748B;
  font-weight: 500;
}

.hero__benefits-col div {
  font-size: 18px;
  color: #333;
}

.desc__container {
  padding-top: 80px;
}

.desc__block {
  padding: 60px;
  background: #ffffff;
  border-radius: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 45px;
}

.desc__block-left {
  display: flex;
  flex-direction: column;
}

.desc__title {
  margin-bottom: 30px;
}

.desc__text {
  color: #64748B;
  font-size: 18px;
  line-height: 155%;
  letter-spacing: 0.5px;
}

.desc__image {
  border-radius: 25px;
  overflow: hidden;
}

.desc__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.compl-benefits__container {
  padding-top: 80px;
}

.compl-benefits__title {
  margin-bottom: 50px;
}

.compl-benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.compl-benefits__item {
  display: flex;
  flex-direction: column;
}

.compl-benefits__item-img {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
}

.compl-benefits__item-img::before {
  display: block;
  content: "";
}

.compl-benefits__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.compl-benefits__item-img::before {
  padding-top: 100%;
}

.compl-benefits__item-title {
  margin-bottom: 10px;
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: -0.2px;
}

.compl-benefits__item-text {
  color: #64748B;
  font-size: 18px;
  line-height: 122%;
}

.territory__container {
  padding-top: 80px;
}

.territory__title {
  margin-bottom: 50px;
}

.territory__image {
  position: relative;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.territory__image::before {
  display: block;
  content: "";
}

.territory__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.territory__image::before {
  padding-top: 450px;
}

.territory__btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 18px 80px;
  border-radius: 12px;
  background: #FFF;
  display: block;
  color: #186D83;
  text-align: center;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}

.territory__btn:hover {
  background: #186D83;
  color: #ffffff;
}

.gallery__container {
  padding-top: 80px;
}

.gallery__title {
  margin-bottom: 50px;
}

.gallery__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
  grid-auto-rows: 400px;
}

.gallery__item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  cursor: pointer;
}

.gallery__item:nth-child(1),
.gallery__item:nth-child(2) {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__item::before {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.gallery__item-title {
  position: absolute;
  left: 50px;
  bottom: 50px;
  right: 50px;
  color: #FFF;
  font-size: 35px;
  font-weight: 700;
  line-height: 105%;
  z-index: 2;
}

.plans__container {
  padding-top: 80px;
}

.plans__title {
  margin-bottom: 50px;
}

.plans__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  background: #FFF;
  padding: 50px;
}

.plans__header {
  margin-bottom: 50px;
  border-radius: 25px;
  background: rgba(100, 116, 139, 0.1);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plans__header-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  line-height: 111%;
  letter-spacing: -0.18px;
  transition: 0.2s ease-in-out;
  color: #64748B;
}

.plans__header-item.active {
  background: #186D83;
  color: #FFF;
}

.plans__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  width: 100%;
}

.plans__item {
  position: relative;
  cursor: pointer;
  display: none;
}

.plans__item::before {
  display: block;
  content: "";
}

.plans__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plans__item::before {
  padding-top: 100%;
}

.plans__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.plans__item.active {
  display: block;
}

.plans__more {
  display: inline-flex;
  margin-top: 50px;
  border-radius: 12px;
  border: 1px solid #186D83;
  background: #FFF;
  padding: 18px 82px;
  font-weight: 500;
  color: #186D83;
  -ms-grid-row-align: center;
      align-self: center;
  transition: 0.2s ease-in-out;
  font-size: 18px;
}

.plans__more span {
  pointer-events: none;
}

.plans__more span:nth-child(2) {
  display: none;
}

.plans__more.active span:nth-child(2) {
  display: block;
}

.plans__more.active span:nth-child(1) {
  display: none;
}

.plans__more:hover {
  background: #186D83;
  color: #fff;
}

.etaps__container {
  padding-top: 80px;
}

.etaps__title {
  margin-bottom: 50px;
}

.etaps__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  width: 100%;
}

.etaps__item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.etaps__item::before {
  display: block;
  content: "";
}

.etaps__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.etaps__item::before {
  padding-top: 55%;
}

.etaps__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.etaps__item::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.etaps__item-title {
  position: absolute;
  left: 50px;
  bottom: 50px;
  right: 50px;
  color: #FFF;
  font-size: 35px;
  font-weight: 700;
  line-height: 105%;
  z-index: 2;
}

.etaps__map {
  margin-top: 60px;
  border-radius: 25px;
  overflow: hidden;
}

.news__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news__title {
  text-align: center;
  margin-bottom: 50px;
}

.news__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 30px;
  width: 100%;
}

.news__item {
  display: flex;
  flex-direction: column;
}

.news__item.hidden {
  display: none;
}

.news__item-img {
  position: relative;
  margin-bottom: 20px;
  border-radius: 25px;
  overflow: hidden;
}

.news__item-img::before {
  display: block;
  content: "";
}

.news__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__item-img::before {
  padding-top: 60%;
}

.news__item-title {
  margin-bottom: 10px;
  color: #232323;
  font-family: Aeroport;
  font-size: 28px;
  font-weight: 700;
  line-height: 117%;
}

.news__item-text {
  color: #64748B;
  font-size: 16px;
  font-weight: 400;
  line-height: 137%;
  letter-spacing: -0.16px;
  margin-bottom: 20px;
}

.news__item-link {
  margin-top: auto;
  padding: 8px;
  color: #232323;
  font-size: 18px;
  border-radius: 17.5px;
  border: 1px solid #186D83;
  text-align: center;
}

.news__more {
  display: inline-flex;
  margin-top: 50px;
  border-radius: 12px;
  background: #186D83;
  padding: 18px 82px;
  font-weight: 500;
  color: #ffffff;
  -ms-grid-row-align: center;
      align-self: center;
  transition: 0.2s ease-in-out;
}

.news__more span {
  pointer-events: none;
}

.news__more span:nth-child(2) {
  display: none;
}

.news__more.active span:nth-child(2) {
  display: block;
}

.news__more.active span:nth-child(1) {
  display: none;
}

.news__more:hover {
  background: #ffffff;
  color: #186D83;
}

.inner__title {
  margin-bottom: 30px;
}

.inner__date {
  margin-bottom: 30px;
  color: #64748B;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.16px;
  opacity: 0.8;
}

.inner__image {
  width: 100%;
  height: auto;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 50px;
}

.inner__image img {
  width: 100%;
}

.inner__text {
  color: #333;
  font-size: 18px;
  line-height: 166%;
}

.contact__image {
  margin-bottom: 100px;
  border-radius: 35px;
  overflow: hidden;
  width: 100%;
}

.contact__image img {
  width: 100%;
}

.contact__title {
  margin-bottom: 50px;
  text-align: center;
}

.contact__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 50px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
}

.contact__item-title {
  margin-bottom: 30px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 118%;
  /* 23.6px */
}

.contact__item-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact__item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__item-list li span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748B;
  font-size: 18px;
  font-weight: 700;
}

.contact__item-list li a {
  color: #64748B;
  font-size: 18px;
}

.contact__item-list li a:hover {
  text-decoration: underline;
}

.contact__map {
  border-radius: 25px;
  overflow: hidden;
}

.politic__container {
  padding-bottom: 150px;
}

.politic__title {
  margin-bottom: 30px;
}

.politic__text {
  color: #333;
  font-size: 16px;
  line-height: 156%;
}

.empty {
  display: flex;
  justify-content: center;
  padding: 100px 16px;
}

.alert-cv {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.alert-cv.active {
  display: flex;
}

.alert-cv__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 35px;
  background: #ffffff;
  border-radius: 26px;
  padding: 60px 70px;
  width: 100%;
  max-width: 625px;
  margin: 0 16px;
}

.pdf_btn {
  display: none;
  margin-top: 30px;
  border-radius: 12px;
  background: #186D83;
  padding: 18px 82px;
  font-weight: 500;
  color: #ffffff;
  -ms-grid-row-align: center;
  align-self: center;
  transition: 0.2s ease-in-out;
}

.pdf_btn:hover {
  background: #ffffff;
  color: #186D83;
}

.calc {
  background: url('../img/calc-bg.jpg') center/cover no-repeat;
}

.calc__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.calc .breadcrumbs__container {
  align-self: flex-start;
}

.calc .breadcrumbs__container .breadcrumbs__list-link {
  color: #FFF;
}

.calc .breadcrumbs__container .breadcrumbs__list-item:not(:last-child)::before {
  color: #fff;
}

.calc__title {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.calc__form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 20px;
  max-width: 620px;
  width: 100%;
}

.calc__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  grid-column: 2 span;
}

.calc__form-col span {
  color: #FFF;
  font-size: 18px;
  line-height: 138%;
  opacity: .8;
}

.calc__form-col input,
.calc__form-col select {
  padding: 16px 20px;
  color: #232323;
  font-size: 18px;
  border: none;
  outline: none;
  width: 100%;
  border-radius: 12px;
  height: 60px;
}

.calc__form-col select {
  cursor: pointer;
}

.calc__form-col:nth-child(2),
.calc__form-col:nth-child(3) {
  grid-column: 1 span;
}

.form__submit {
  padding: 20px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: uppercase;
  color: #0A3B4C;
  font-size: 18px;
  border-radius: 12px;
  background: #D1F3FC;
  grid-column: 2 span;
  margin-top: 20px;
  cursor: pointer;
}

.report_heading {
  padding: 16px 30px;
  color: #fff;
  background: #186D83;
  border-radius: 25px 25px 0 0;
}

.report_row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding: 20px 30px;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
  color: #232323;
  font-size: 18px;
  grid-column-gap: 5px;
}

.calc_report {
  margin-bottom: 50px;
}

.calculated_table table {
  border-collapse: collapse;
  width: 100%;
}

.calculated_table table thead tr th {
  padding: 16px 30px;
  background: #186D83;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.calculated_table table thead tr th:nth-child(1) {
  border-radius: 25px 0 0 0;
}

.calculated_table table thead tr th:last-child {
  border-radius: 0 25px 0 0;
}

.calculated_table table tbody tr td {
  padding: 16px 30px;
  background: #fff;
  color: #232323;
  font-size: 18px;
  border-bottom: 1px solid #D9D9D9;
}

.value__container {
  padding-top: 80px;
}

#tab {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc_result {
  width: 100%;
}

/* panorama */

.map {
  background: url('../img/map-bg.jpg') center/cover no-repeat;
  margin-top: 100px;
}

.map__container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map__title {
  color: #fff;
}

.map__link {
  display: flex;
  margin-top: 150px;
  border-radius: 20px;
  background: #186D83;
  padding: 18px 82px;
  font-weight: 500;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.map__link:hover {
  background: #ffffff;
  color: #186D83;
}

.modal-feedback {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.8);
  z-index: 99;
  display: none;
}

.modal-feedback.active {
  display: flex;
}

@media print {
  .header,
  .footer,
  .feedback,
  .calc,
  .mob,
  .pdf_btn,
  .header-space {
    display: none;
  }
  .calculated_table {
    width: 992px;
  }
}

.slider__container {
  padding-top: 100px;
}

.slider__project {
  position: relative;
  height: 660px;
  border-radius: 25px;
  overflow: hidden;
}

.slider__project .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__arrows {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 50px;
  bottom: 50px;
  z-index: 6;
}

.slider__block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 5;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
}

.slider__block-title {
  color: #C1A875;
  margin-bottom: 20px;
}

.slider__block-text {
  margin-bottom: 120px;
  color: #fff;
  line-height: 122%;
  max-width: 800px;
}

.slider__block-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.slider__block-list li {
  color: #FFF;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.35);
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
}

.slider__project  .slider__pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 6;
}

.slider__project .swiper-pagination-bullet {
  opacity: 0.5;
  background: #fff;
  transition: .2s ease-in-out;
}

.slider__project .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.slider__benefits {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 20px;
  border-radius: 25px;
  background: #186D83;
}

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

.slider__benefits-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}

.slider__benefits-img img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.slider__benefits-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.slider__benefits-col span {
  color: #fff;
  font-size: 16px;
}

.slider__benefits-col span:nth-child(1) {
  font-weight: 500;
}

.new-benefits__container {
  padding-top: 80px;
}

.new-benefits__items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px;
}

.new-benefits__item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 40px;
  border-radius: 25px;
  background: #FFF;
  transition: .2s ease-in-out;
}

.new-benefits__item:hover .new-benefits__item-title {
  color: #186D83;
}

.new-benefits__item-title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 700;
}

.new-benefits__item-text {
  color: #64748B;
  line-height: 122%;
  font-size: 18px;
}

.insta__container {
  padding-top: 80px;
}

.insta__items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px;
}

.twitch__container {
  padding-top: 100px;
}

.twitch__block {
  height: 500px;
  width: 100%;
}

.twitch__title {
  margin-bottom: 50px;
}

.team__container {
  padding-bottom: 50px;
}

.team__items {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 15px;
}

.team__item {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.team__item-name {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  opacity: 0;
  transition: .2s ease-in-out;
}

.team__item-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.team__item-img::before {
  display: block;
  content: '';
  padding-top: 100%;
}

.team__item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__item-img:hover .team__item-name {
  opacity: 1;
}

.team__title {
  margin-bottom: 40px;
}

.team__wp {
  text-align: center;
  border-radius: 15px;
  background: #0a3b4c;
  padding: 8px;
  color: #fff;
  transition: .2s ease-in-out;
}

.team__wp:hover {
  transform: scale(1.04);
}

.bloger__container {
  padding-bottom: 100px;
}

.bloger__items {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  grid-gap: 30px;
  grid-auto-rows: 285px;
}

.bloger__we {
  border-radius: 25px;
  background: linear-gradient(180deg, #2599B7 0%, #186D83 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 33px;
  font-weight: 700;
}

.bloger__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 25px;
  background: #FFF;
  border: 1px solid #fff;
  transition: .2s ease-in-out;
}

.bloger__item:hover {
  border-color: #186D83;
}

.bloger__item-img {
  position: relative;
  width: 150px;
  height: 150px;
}

.bloger__item-img img {
  border-radius: 50%;
}

.bloger__item-img::before {
  position: absolute;
  content: '';
  background: url('../img/bloger-icon.png') center/contain no-repeat;
  width: 28px;
  height: 28px;
  bottom: 0;
  right: 10px;
}

.bloger__item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A3B4C;
  font-size: 18px;
  text-decoration: underline;
  font-weight: 700;
}

.bloger__item-name img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.rooms__block {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 30px;
  margin-top: 50px;
}

.rooms__block-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
}

.rooms__block-title {
  font-weight: 700;
  margin-bottom: 25px;
}

.rooms__block-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.rooms__block-links a {
  color: #64748B;
  transition: .2s ease-in-out;
}
.modal-window {
    position: relative;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    max-width: 520px;
    width: 100%;
    animation: modalShow .25s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

@keyframes modalShow {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* Кнопка закрытия */
.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: #777;
}
.modal-close:hover {
    color: #000;
}

/* ===== Стили формы ===== */

.callback-form {
    padding: 30px 35px;
    font-family: Arial, sans-serif;
    color: #333;
}

.callback-form__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.callback-form__subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.callback-form__label {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.callback-form__label span {
    color: #e53935;
}

.callback-form__input {
    width: 100%;
    margin-top: 6px;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    outline: none;
    transition: border-color .2s;
}

.callback-form__input:focus {
    border-color: #2196f3;
}

.callback-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #444;
}

.callback-form__checkbox span span {
    color: #e53935;
}

.callback-form__checkbox input {
    width: 16px;
    height: 16px;
}

.callback-form__btn {
    width: 100%;
    padding: 13px 0;
    background: #0088cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.callback-form__btn:hover {
    background: #0077b3;
}

.fixed-btns {
  position: fixed;
  left: 60px;
  bottom: 50px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.fixed-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #186d83;
}

.fixed-btns a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  pointer-events: none;
}

.fixed-btns a.wp {
  background: #2ab300;
}

a.hidden-fixed {
  display: none;
}

a.hidden-fixed.active {
  display: flex;
}

.projects__rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.projects__rooms a {
  background: #fff;
  padding: 8px 15px;
  font-size: 14px;
  border: 1px solid #0077b3;
  color: #111;
  transition: .2s ease-in-out;
  border-radius: 8px;
}

.projects__rooms a:hover {
  background: #0077b3;
  color: #fff;
}

@media (max-width: 1650px) {
  .content {
    padding: 100px 0;
  }
}

@media (max-width: 1450px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1440px) {
  .header__nav-list {
    gap: 15px;
  }
  .header__nav-link {
    font-size: 12px;
  }
  .twitch__title {
    margin-bottom: 30px;
  }
  .hero__left {
    height: 450px;
  }

  .hero__left-text .swiper-slide{
    padding: 40px;
  }

  .hero__left-text .swiper-slide h3 {
    font-size: 30px;
  }

  .projects__more {
    font-size: 16px;
  }

  .projects__item-title {
    font-size: 23px;
  }

  .company__block {
    padding: 60px 50px;
    padding-left: 0;
  }

  .company__title {
    margin-bottom: 20px;
  }

  .benefits__left {
    padding: 30px;
  }

  .benefits__titles {
    margin-bottom: 30px;
  }

  .benefits__titles .swiper-slide h3 {
    font-size: 32px;
  }

  .benefits__arrows {
    top: 30px;
    right: 30px;
  }

  .condition__more {
    font-size: 16px;
  }

  .feedback__left-title {
    font-size: 40px;
  }

  .feedback__left-text {
    font-size: 18px;
  }

  .feedback__right-title {
    font-size: 31px;
  }

  .mission__title {
    margin-bottom: 20px;
  }

  .mission__numbers {
    gap: 30px;
  }

  .mission__numbers-col div {
    font-size: 40px;
  }

  .mission__numbers-col div {
    font-size: 35px;
  }

  .cv__title {
    font-size: 40px;
  }

  .cv__inputs {
    max-width: 700px;
  }

  .desc__block {
    padding: 30px;
  }

  .compl-benefits__title {
    margin-bottom: 30px;
  }

  .compl-benefits__item-title {
    font-size: 20px;
  }

  .compl-benefits__item-text {
    font-size: 16px;
  }

  .territory__title {
    margin-bottom: 30px;
  }

  .gallery__title {
    margin-bottom: 30px;
  }

  .gallery__items {
    grid-auto-rows: 350px;
  }

  .gallery__item-title {
    font-size: 25px;
  }

  .plans__title {
    margin-bottom: 30px;
  }

  .etaps__title {
    margin-bottom: 30px;
  }

  .etaps__item-title {
    font-size: 25px;
  }

  .news__title {
    margin-bottom: 30px;
  }

  .news__item-title {
    font-size: 24px;
  }

  .news__item-text {
    font-size: 14px;
  }

  .news__more {
    font-size: 16px;
  }

  .contact__image {
    margin-bottom: 32px;
  }

  .contact__title {
    margin-bottom: 20px;
  }

  .contact__items {
    grid-gap: 20px;
    margin-bottom: 30px;
  }

  .contact__item {
    padding: 30px;
  }

  .contact__item-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contact__item-list li span {
    font-size: 16px;
  }

  .contact__item-list li a {
    font-size: 16px;
  }
}

@media (max-width: 1420px) {
  .bloger__item-img {
    width: 120px;
    height: 120px;
  }
  .bloger__item-name {
    font-size: 16px;
  }
  .container {
    max-width: 1200px;
  }
  .projects__item-img {
    margin-bottom: 20px;
  }
  .projects__item-title {
    padding: 0 10px;
  }
  .projects__item-list {
    padding: 0 10px;
  }
  .projects__item-conditions {
    margin-left: 10px;
    margin-right: 10px;
  }
  .projects__item {
    padding-bottom: 20px;
  }
  .new-benefits__item-title {
    font-size: 20px;
  }
}

@media (max-width: 1240px) {
  .bloger__items {
    grid-template-columns: repeat(3,1fr);
  }
  .slider__block-text {
    margin-bottom: 90px;
  }
  .projects__item-conditions {
    margin-left: 15px;
    margin-right: 15px;
  }
  .projects__item-img {
    margin-bottom: 15px;
  }
  .projects__item-list,
  .projects__item-title {
    padding: 0 15px;
  }
  .projects__item-tags {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .container {
    max-width: 980px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 26px;
  }

  .header__bot {
    padding: 10px 0;
  }

  .header__logo {
    width: 80px;
    height: 30px;
    margin-right: 20px;
  }

  .header__nav-list {
    gap: 15px;
  }

  .header__nav-link {
    font-size: 12px;
  }

  .header__feedback {
    padding: 12px 15px;
    font-size: 14px;
  }

  .header-space {
    padding-top: 107px;
  }

  .footer__col {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer__logo {
    margin-bottom: 20px;
  }

  .hero__container {
    padding-bottom: 50px;
  }

  .projects__title {
    margin-bottom: 30px;
    text-align: center;
  }

  .filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .filter__submit {
    margin-left: 0;
  }

  .company__block {
    padding: 30px;
    padding-left: 0;
  }

  .benefits__titles .swiper-slide h3 {
    font-size: 25px;
  }

  .condition__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback__left {
    padding: 30px;
  }

  .feedback__left-title {
    font-size: 31px;
  }

  .feedback__left-form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__right {
    padding: 30px 20px;
  }

  .feedback__right-title {
    font-size: 25px;
  }

  .mission__block {
    grid-gap: 30px;
  }

  .cv__text {
    position: static;
    margin-bottom: 40px;
    max-width: 500px;
  }

  .cv__inputs {
    position: relative;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 500px;
    padding-bottom: 0;
  }

  .cv__submit {
    position: static;
  }

  .complexes__price {
    padding: 12px 20px;
  }

  .gallery__items {
    grid-auto-rows: 300px;
  }

  .news__item-title {
    font-size: 20px;
  }
  .calc__form-col input, .calc__form-col select {
    padding: 10px 12px;
    font-size: 16px;
    height: 42px;
  }
  .calc__form-col {
    row-gap: 5px;
  }
  .calc__form-col span {
    font-size: 12px;
  }
  .calc__form {
    grid-gap: 10px;
  }
  .calc__container {
    padding-bottom: 30px;
  }
  .value__container {
    padding-top: 30px;
  }
  .report_heading,
  .calculated_table table thead tr th,
  .report_row,
  .calculated_table table tbody tr td {
    padding: 10px 20px;
  }
  .calc__title {
    margin-bottom: 30px;
  }
  .form__submit {
    padding: 12px;
    font-size: 16px;
  }
  .report_row,
  .calculated_table table thead tr th,
  .calculated_table table tbody tr td  {
    font-size: 14px;
  }
  .slider__benefits {
    flex-direction: column;
    row-gap: 50px;
  }
  .slider__block-list li {
    font-size: 20px;
  }
  .slider__block {
    padding: 20px 30px;
  }
  .slider__project {
    height: 500px;
  }
  .new-benefits__items {
    grid-template-columns: repeat(2,1fr);
  }
  .insta__items {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  
  .team__items {
    grid-template-columns: repeat(2,1fr);
  }

  body {
    font-size: 14px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 15px;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    height: calc(100dvh - 168px);
    display: none;
  }

  .footer {
    margin-bottom: 70px;
  }

  .mob {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #FFF;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.25));
    padding: 10px 16px 12px 16px;
    z-index: 11;
    border-radius: 15px 15px 0 0;
  }

  .mob__menu {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    width: 100%;
  }

  .mob__menu-img {
    height: 35px;
    display: flex;
    align-items: center;
    pointer-events: none;
  }

  .mob__menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .mob__menu-item svg path {
    transition: .2s ease-in-out;
  }
  
  .mob__menu-item.active svg path {
    stroke: #000;
  }

  .mob__menu-item.active span {
    color: #000;
  }

  .mob__menu-item span {
    color: #64748B;
    text-align: center;
    font-size: 8px;
    pointer-events: none;
    transition: .2s ease-in-out;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__feedback {
    margin-left: auto;
  }

  .footer__container {
    gap: 30px;
    padding: 30px 0;
  }

  .footer__col {
    align-items: center;
    margin-bottom: 0;
  }

  .footer__nav {
    width: calc(50% - 15px);
    row-gap: 10px;
  }

  .footer__nav:nth-child(4) {
    width: 100%;
  }

  .footer__nav .header__lang {
    justify-content: center;
    margin-top: 15px;
  }

  .footer__nav-title {
    font-size: 16px;
  }

  .footer__subs {
    width: 100%;
  }

  .footer__subs input {
    width: 100%;
  }

  .footer__bot-container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
  }

  .breadcrumbs__container {
    padding: 25px 0;
  }

  .projects__container {
    padding-bottom: 40px;
  }

  .projects__more {
    margin-top: 20px;
  }

  .filter__projects {
    margin-bottom: 30px;
  }

  .filter__projects-block label span {
    font-size: 14px;
    padding: 7px 12px;
  }

  .projects__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .company__container {
    display: flex;
    flex-direction: column-reverse;
  }

  .company__block {
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 30px 20px 10px 20px;
  }

  .company__img {
    position: static;
    width: 100%;
  }

  .company__text {
    font-size: 14px;
  }

  .benefits__pagination::before {
    display: none;
  }

  .condition__title {
    text-align: center;
    margin-bottom: 20px;
  }

  .condition__more {
    margin-top: 20px;
  }

  .feedback__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .feedback__left-img {
    right: unset;
    top: 90px;
    left: 45px;
    height: 304px;
  }

  .feedback__left-title {
    margin-bottom: 130px;
  }

  .feedback__left-text {
    margin-bottom: 40px;
    max-width: 215px;
  }

  .feedback__right {
    height: 516px;
  }

  .feedback__text {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .mission__container {
    grid-gap: 30px;
    padding: 30px 0;
  }

  .mission__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .mission__numbers {
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin-top: 30px;
  }

  .cv__form {
    padding: 30px;
  }

  .cv__title {
    font-size: 31px;
    margin-bottom: 170px;
  }

  .cv__text {
    position: relative;
    font-size: 16px;
    left: unset;
    bottom: unset;
    max-width: 240px;
    line-height: 120%;
  }

  .cv__inputs {
    max-width: unset;
    grid-gap: 20px;
  }

  .cv__small {
    right: unset;
    left: 45px;
    top: 85px;
    height: 300px;
  }

  .complexes__price {
    top: 16px;
    left: 16px;
    bottom: unset;
  }

  .hero__benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
  }

  .desc {
    background: #ffffff;
    margin-top: 40px;
  }

  .desc__container {
    padding-top: 0;
  }

  .desc__block {
    display: flex;
    flex-direction: column-reverse;
    grid-gap: 20px;
    background: transparent;
    padding: 30px 0;
  }

  .desc__title {
    margin-bottom: 20px;
  }

  .desc__text {
    font-size: 16px;
  }

  .compl-benefits__container {
    padding-top: 30px;
  }

  .compl-benefits__title {
    text-align: center;
  }

  .compl-benefits__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .territory__container {
    padding-top: 50px;
  }

  .territory__title {
    text-align: center;
  }

  .gallery__container {
    padding-top: 30px;
  }

  .gallery__title {
    text-align: center;
  }

  .gallery__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery__item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .gallery__item-title {
    left: 30px;
    bottom: 30px;
  }

  .plans {
    background: #ffffff;
    margin-top: 30px;
  }

  .plans__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .plans__title {
    text-align: center;
  }

  .plans__block {
    background-color: transparent;
    padding: 0;
  }

  .etaps__container {
    padding-top: 30px;
  }

  .etaps__title {
    text-align: center;
  }

  .etaps__item-title {
    left: 30px;
    bottom: 30px;
  }

  .etaps__map {
    margin-top: 30px;
  }

  .news__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .news__more {
    margin-top: 30px;
  }

  .inner__title {
    margin-bottom: 20px;
  }

  .inner__image {
    margin-bottom: 30px;
  }

  .inner__text {
    font-size: 16px;
  }

  .contact__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .politic__container {
    padding-bottom: 30px;
  }

  .politic__title {
    margin-bottom: 20px;
  }
  .calculated_table {
    overflow: auto;
  }
  .calculated_table table {
    min-width: 992px;
  }
  .slider__project {
    border-radius: 0;
    margin: 0 -16px;
  }
  .slider__arrows,
  .slider__pagination {
    display: none;
  }
  .slider__container {
    padding-top: 0;
  }
  .slider__benefits {
    margin-top: 0;
    margin: 0 -16px;
    padding: 50px 16px;
    border-radius: 0 0 25px 25px;
  }
  .slider {
    margin-top: 50px;
    /* background: #186D83; */
  }
  .new-benefits__container {
    padding-top: 50px;
  }
  .new-benefits__item {
    padding: 20px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .rooms__block {
    grid-template-columns: 1fr;
  }
  .bloger__items {
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
  }
  .hero__col {
    row-gap: 20px;
  }
  .header-space {
    padding-top: 107px;
  }
  .header__tech p {
    font-size: 12px;
    max-width: 375px;
    margin: auto;
  }
  .hero__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hero__left {
    height: 400px;
  }

  .hero__left-text .swiper-slide{
    padding: 30px 20px;
  }

  .hero__left-text .swiper-slide p {
    font-size: 18px;
  }

  .hero__left-arrows {
    display: none;
  }

  .hero__right {
    height: 458px;
  }

  .filter__col {
    width: 100%;
  }

  .filter__select {
    width: 100%;
  }

  .filter__submit {
    width: 100%;
  }

  .plans__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .etaps__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .etaps__item::before {
    padding-top: 250px;
  }

  .contact__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .new-benefits__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .insta {
    /* display: none; */
  }
  .insta__items {
    display: flex;
    overflow: auto;
  }
}

@media (max-width: 576px) {
  .hero__right {
    height: 300px;
  }
  .projects__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .benefits__container {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .benefits__left {
    width: 100%;
    border-radius: 35px 35px 0 0;
    overflow: hidden;
  }

  .benefits__pagination {
    margin-bottom: 30px;
  }

  .benefits__pagination::before {
    display: block;
  }

  .benefits__link {
    -ms-grid-row-align: center;
        align-self: center;
  }

  .benefits__right {
    width: 100%;
    border-radius: 0 0 35px 35px;
  }

  .benefits__images .swiper-slide {
    position: relative;
  }

  .benefits__images .swiper-slide::before {
    display: block;
    content: "";
  }

  .benefits__images .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .benefits__images .swiper-slide::before {
    padding-top: 66%;
  }

  .benefits__arrows {
    display: none;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero__right {
    height: 230px;
  }
  .header__elems a {
    font-size: 0;
    gap: 0;
  }

  .header__nav {
    height: calc(100dvh - 97px);
  }

  .header__feedback {
    padding: 8px 10px;
    font-size: 12px;
  }

  .header-space {
    padding-top: 97px;
  }

  .condition__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .compl-benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .territory__image::before {
    padding-top: 400px;
  }

  .news__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .plans__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .bloger__items {
    grid-template-columns: 1fr;
  }
}