* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

button {
  background: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

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

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

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

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

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  font-family: "DINPro", sans-serif;
  color: #263640;
  background-color: #fff;
}

.container {
  max-width: 1228px;
  margin: 0 auto;
  padding: 0 4px;
}

/* CUSTOM */

.section__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 1.4px;
  color: #929A9F;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #263640;
  margin-bottom: 24px;
}

.section__text {
  margin-bottom: 20px;
}

.section__text p {
  font-weight: 700;
  color: #929A9F;
}

.btn--orange {
  display: inline-block;
  min-width: 280px;
  background-color: #FF9326;
  padding: 12px 123px 15px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  color: #fff;
  position: relative;
  text-align: left;
  -webkit-transition: 0.3s linear background-color;
  transition: 0.3s linear background-color;
}

.btn--orange::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-white.svg");
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.btn--orange:hover {
  background-color: #f78716;
}

.tab-btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  padding-right: 33px;
  line-height: 28px;
}

.tab-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-white.svg");
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.tab-btn.active::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.tab-text {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s linear max-height, 0.3s linear opacity;
  transition: 0.3s linear max-height, 0.3s linear opacity;
}

.tab-text.active {
  opacity: 1;
}

/* CUSTOM */

.header__inner {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header__logo-link {
  display: block;
}

.header__nav {
  overflow: hidden;
  flex-grow: 1;
  width: 100%;
}

.header__nav.active {
  display: block;
  width: 240px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 10;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(8, 35, 48, 0.24), 0px 2px 6px 0px rgba(8, 35, 48, 0.16);
          box-shadow: 0px 1px 2px 0px rgba(8, 35, 48, 0.24), 0px 2px 6px 0px rgba(8, 35, 48, 0.16);
}

.header__nav.active .header__nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav.active .header__nav-list {
  display: block;
  padding: 20px 4px 0;
}

.header__nav.active .header__nav-item {
  margin-right: 0;
}

.header__nav.active .header__nav-link {
  padding: 0 56px;
  border-radius: 8px;
  position: relative;
}

.header__nav.active .header__nav-link::before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/header/arrow-right-gray.svg");
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear background-image;
  transition: 0.3s linear background-image;
}

.header__nav.active .header__nav-link::after {
  display: none;
}

.header__nav.active .header__nav-link:hover {
  background-color: #F1F3F4;
}

.header__nav.active .header__nav-link:hover::before {
  background-image: url("../img/header/arrow-right-black.svg");
}

.header__nav-header {
  display: none;
  padding: 36px 16px 0 14px;
}

.header__nav-burger {
  width: 15px;
  height: 10px;
  position: relative;
  margin-right: 12px;
}

.header__nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #78909C;
  position: absolute;
}

.header__nav-burger span:first-child {
  top: 0;
}

.header__nav-burger span:nth-child(2) {
  top: 4px;
}

.header__nav-burger span:last-child {
  bottom: 0;
}

.header__nav-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.44px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  margin-right: 70px;
}

.header__nav-item:last-child {
  margin-right: 0;
}

.header__nav-link {
  display: block;
  color: #263640;
  font-weight: 700;
  /*-webkit-transition: 0.3s linear color, 0.3s linear background-color;*/
  /*transition: 0.3s linear color, 0.3s linear background-color;*/
  position: relative;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 40px; /* 250% */
  text-transform: uppercase;
}

.header__nav-link::after {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  right: 5%;
  /*-webkit-transition: 0.3s linear background-color, 0.3s linear right;*/
  /*transition: 0.3s linear background-color, 0.3s linear right;*/
}

.header__nav-link:hover {
  color: #FF9326;
}

.header__nav-link:hover::after {
  background-color: #FF9326;
  /*right: -12px;*/
}

.header__burger {
  flex-grow: 0;
  display: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #263640;
  position: absolute;
}

.header__burger span:first-child {
  top: 0;
}

.header__burger span:nth-child(2) {
  top: 9px;
}

.header__burger span:last-child {
  bottom: 0;
}

.header__burger.active span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

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

.header__burger.active span:last-child {
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
  bottom: 8px;
}

.header__info-phone,
.header__info-email {
  display: block;
  color: #263640;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 22px;
  position: relative;
}

.header__info-phone::before,
.header__info-email::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
}

.header__info-phone {
  margin-bottom: 12px;
}

.header__info-phone::before {
  width: 16px;
  height: 13px;
  background-image: url("../img/header/phone.svg");
}

.header__info-email::before {
  width: 18px;
  height: 13px;
  background-image: url("../img/header/email.svg");
}

/* INTRO */

.intro {
  padding-top: 29px;
  padding-bottom: 33px;
}

.intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.intro__left {
    padding-right: 46px;
    width: 44%;
}

.intro__right {
  width: 56%;
  height: 100%;
  position: absolute;
  right: 0;
}

.intro__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.intro__title {
  margin-bottom: 5px;
}

.intro__text {
  max-width: 427px;
  margin-bottom: 28px;
}

.intro__text p {
  font-weight: 700;
}

.intro__btn {
  margin-bottom: 43px;
}

.intro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 354px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 17px;
}

.intro__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.intro__item-icon {
  margin-bottom: 20px;
}

.intro__item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
  color: #929A9F;
}

.intro__item-title span {
  font-size: 16px;
}
.intro-slide__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 30px !important;
}

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

.intro .swiper-pagination-bullet,
.intro .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
}

.intro .swiper-pagination-bullet {
  background-color: #78909C;
  opacity: 1;
  margin: 0 19px 0 0 !important;
}

.intro .swiper-pagination-bullet:last-child {
  margin: 0 !important;
}

.intro .swiper-pagination-bullet-active {
  background-color: #263640;
}

.intro .swiper-button-next:after,
.intro .swiper-button-prev:after {
  content: "";
}

.intro .swiper-button-prev,
.intro .swiper-button-next {
  width: 8px;
  height: 12px;
  top: auto;
  bottom: 31px;
}

.intro .swiper-button-prev {
  left: 25.2%;
  background-image: url("../img/general/arrow-left-white.svg");
}

.intro .swiper-button-next {
  right: 25.2%;
  background-image: url("../img/general/arrow-right-white.svg");
}

/* INTRO */

/* OUR-SERVICE */

.our-service {
  padding: 45px 0 50px;
  background-color: #0FC1C2;
}

.our-service__head {
  width: 43%;
  margin-bottom: 51px;
}

.our-service__title {
  margin-bottom: 16px;
}
.our-service__text {
    margin-bottom: 34px;
}

.our-service__text p {
  line-height: 160%;
  color: #fff;
}

.our-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -4px;
}

.our-service__items-without-img {
  margin-bottom: -56px;
}

.our-service__items-without-img .our-service__item-title {
  margin-bottom: 20px;
}

.our-service__item {
  width: 33.33333%;
  padding: 0 4px;
  max-width: 312px;
  overflow: hidden;
  margin-bottom: 25px;
}

.our-service__item-img {
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
}

.our-service__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}

.our-service__tab-text p {
  line-height: 160%;
  color: #fff;
}

.our-service__line {
  width: 100%;
  height: 1px;
  background-color: #78909C;
  margin-bottom: 50px;
}

/* OUR-SERVICE */

/* OUR-AMENITIES */

.our-amenities {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(55%, transparent), color-stop(45%, #0FC1C2));
  background: linear-gradient(0deg, transparent 55%, #0FC1C2 45%);
  padding-bottom: 130px;
}

.our-amenities__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.our-amenities__left {
  width: 82.7%;
  padding: 83px 0 92px 83px;
  background-color: #263640;
  margin-bottom: 26px;
}

.our-amenities__left-content {
  width: 54.2%;
}

.our-amenities__right {
  width: 40%;
  position: absolute;
  top: 98px;
  right: 0;
}

.our-amenities__subtitle {
  margin-bottom: 24px;
}

.our-amenities__title {
  max-width: 494px;
  color: #fff;
}

.our-amenities__text {
  max-width: 422px;
  margin-bottom: 56px;
}

.our-amenities__text p {
  color: #fff;
  line-height: 1.625;
  margin-bottom: 23px;
}

.our-amenities__text p:last-child {
  margin-bottom: 0;
}

.our-amenities__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.our-amenities__btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  padding-right: 33px;
  line-height: 28px;
}

.our-amenities__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-white.svg");
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.our-amenities__img {
  max-width: 100%;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
}

/* OUR-AMENITIES */

/* OUR-PARTNERS */

.our-partners--padding {
  padding-top: 82px;
}

.our-partners__title {
  margin-bottom: 2px;
}

.our-partners__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 72px;
}

.our-partners__text {
  max-width: 591px;
  color: #929A9F;
  margin-right: 20px;
}

.our-partners__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*margin-bottom: -36px;*/
}

.our-partners__link {
  display: block;
  margin-bottom: 36px;
}

.our-partners__link-img {
  max-width: 100%;
}

/* OUR-PARTNERS */

/* OUR-CONTACTS */

.our-contacts {
  padding: 48px 0 48px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(72%, #0FC1C2), color-stop(30%, transparent));
  background: linear-gradient(0deg, #0FC1C2 100%, transparent 30%);
}

.our-contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-pack: justify;*/
  /*    -ms-flex-pack: justify;*/
  /*        justify-content: space-between;*/
}

.our-contacts__left {
  max-width: 300px;
  /*padding-top: 68px;*/
  padding-left: 83px;
  margin-right: 30px;
}

.our-contacts__right {
    margin-left: 200px;
}

.our-contacts__subtitle,
.our-contacts__text p {
  color: #fff;
}

.our-contacts__img {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
  max-width: 468px;
  max-height: 380px;
  width: 100%;
  object-fit: cover;
}

.our-contacts__btn.active {
  background-color: #78909C;
}

.our-contacts__btn.active::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

/* OUR-CONTACTS */

/* FOOTER */

.footer {
  background-color: #263640;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 27px 0 31px 0;
}

.footer__top-right {
  width: 33.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0 53px;
}

.footer__phones-title,
.footer__emails-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.footer__phones-link,
.footer__emails-link {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.footer__phones-link:last-child,
.footer__emails-link:last-child {
  margin-bottom: 0;
}

.footer__phones {
  margin-right: 25px;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* FOOTER */

/* MODAL */

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.modal--active {
  visibility: visible;
  opacity: 1;
}

.modal__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal__wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 15px;
  -webkit-filter: drop-shadow(-30px 60px 50px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(-30px 60px 50px rgba(0, 0, 0, 0.1));
}

.modal__content {
  position: relative;
  max-width: 1277px;
  width: 93%;
  background-color: #fff;
  border: 5px solid #fff;
}

.modal__close {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: -24px;
  top: -30px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.modal__close:hover {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.modal__close:after,
.modal__close:before {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
}

.modal__close:after {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.modal__close:before {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(135deg);
          transform: translate3d(-50%, -50%, 0) rotate(135deg);
}

.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__left {
  width: 68.3%;
  padding: 57px 165px 73px 87px;
}

.modal__right {
  width: 31.7%;
  background-color: #0FC1C2;
  position: relative;
}

.modal__img {
  position: absolute;
  top: 14px;
  right: -105px;
  -webkit-transform: rotate(-11.779deg);
      -ms-transform: rotate(-11.779deg);
          transform: rotate(-11.779deg);
}

.modal__head {
  margin-bottom: 32px;
}

.modal__title {
  margin-bottom: 5px;
}

.modal__text {
  max-width: 593px;
  margin-bottom: 0;
}

.modal__text p {
  font-weight: 500;
}

.modal__error-message,
.modal__recaptcha-error {
  font-size: 14px;
  line-height: 19px;
  color: #999;
  margin-top: 16px;
}

.modal__alert {
  max-width: 250px;
  position: fixed;
  z-index: 300;
  top: 70px;
  right: 16px;
  padding: 10px;
  background-color: #350268;
  display: none;
}

.modal-alert__text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 1.357;
}

.form__error {
  display: none;
  color: #FF0000;
  font-size: 14px;
  line-height: 1.428;
  letter-spacing: 0.25px;
  margin-top: 4px;
}

.form__row-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__row-btns {
  margin-top: 40px;
}

.form__inner-input,
.form__inner-textarea {
  height: 100%;
  border: 1px solid #E3E5E5;
  border-radius: 7px 7px 0 0;
}

.form__inner-input {
  height: 48px;
}

.form__inner-textarea {
  height: 130px;
}

.form__inner-input label,
.form__inner-textarea label {
  position: absolute;
  top: 12px;
  left: 0;
  padding-left: 44px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.44px;
}

.form__inner-input label::before,
.form__inner-textarea label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
}

.form__inner-input input,
.form__inner-textarea input {
  border-bottom: 1px solid #E3E5E5;
}

.form__inner-input.fio,
.form__inner-textarea.fio {
  padding: 10px 12px 13px 86px;
}

.form__inner-input.fio label::before,
.form__inner-textarea.fio label::before {
  width: 16px;
  height: 18px;
  background-image: url("../img/modals/fio.svg");
}

.form__inner-input.company,
.form__inner-textarea.company {
  padding: 10px 12px 13px 129px;
}

.form__inner-input.company label::before,
.form__inner-textarea.company label::before {
  width: 18px;
  height: 15px;
  background-image: url("../img/modals/company.svg");
}

.form__inner-input.phone,
.form__inner-textarea.phone {
  padding: 10px 12px 13px 122px;
}

.form__inner-input.phone label::before,
.form__inner-textarea.phone label::before {
  width: 18px;
  height: 13px;
  background-image: url("../img/modals/phone.svg");
}

.form__inner-input.email,
.form__inner-textarea.email {
  padding: 10px 12px 13px 95px;
}

.form__inner-input.email label::before,
.form__inner-textarea.email label::before {
  width: 18px;
  height: 17px;
  background-image: url("../img/modals/email.svg");
}

.form__inner-input.message,
.form__inner-textarea.message {
  padding: 45px 23px 23px 56px;
}

.form__inner-input.message label::before,
.form__inner-textarea.message label::before {
  width: 16px;
  height: 18px;
  background-image: url("../img/modals/message.svg");
}

.form__wrapper-input {
  margin-bottom: 20px;
  margin-right: 20px;
}

.form__wrapper-input.error .form__input {
  color: #FF0000;
}

.form__wrapper-input.error .form__error {
  display: block;
}

.form__wrapper-input:last-child {
  margin-right: 0;
}

.form__wrapper-input,
.form__wrapper-textarea {
  position: relative;
  width: 100%;
}

.form__input,
.form__textarea {
  width: 100%;
  background-color: #fff;
  color: #5E6366;
  font-size: 14px;
  line-height: 1.428;
  letter-spacing: 0.25px;
}

.form__textarea {
  resize: none;
}

.form__submit {
  margin-right: 51px;
}

.form__btn-call {
  color: #9E9C9C;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  padding-bottom: 1px;
  position: relative;
}

.form__btn-call::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #9E9C9C;
  position: absolute;
  bottom: 0;
}

/* MODAL */

/* CALL-MODAL */

.call-modal-form__wrapper-input {
  width: 50%;
}

.call-modal__img {
  top: -20px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/* CALL-MODAL */

/* BREADCRUMBS */

.breadcrumbs {
    margin-top: -10px;
    margin-bottom: 13px;
}

.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs__link,
.breadcrumbs__delimiter,
.breadcrumbs__current {
  color: #929A9F;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.428;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.breadcrumbs__link {
  text-decoration: none;
  position: relative;
}

.breadcrumbs__link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #929A9F;
}

.breadcrumbs__delimiter {
  margin: 0 5px;
}

/* BREADCRUMBS */

/* CATALOG */

.catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__left {
  max-width: 300px;
  margin-right: 116px;
}

.catalog__left-title {
  margin-bottom: 12px;
}

.catalog__left-title-second {
  display: none;
}

.catalog__left-text {
  max-width: 280px;
}

.catalog__right-title {
  margin-bottom: 42px;
}

.catalog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -52px;
}

.catalog__item {
  width: 50%;
  padding: 0 4px;
  max-width: 312px;
  overflow: hidden;
  margin-bottom: 52px;
}

.catalog__item-wrapper-img {
  text-align: center;
  margin-bottom: 32px;
}

.catalog__item-img {
  max-width: 100%;
}

.catalog__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.catalog__tab-btn {
  color: #FF9326;
  margin-bottom: 11px;
}

.catalog__tab-btn::after {
  background-image: url("../img/general/arrow-right-orange.svg");
}

.catalog__tab-text p {
  line-height: 160%;
}

/* CATALOG */

/* VACANCIES */

.vacancies__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vacancies__left {
  max-width: 300px;
  margin-right: 116px;
}

.vacancies__right {
  width: 65.57%;
}

.vacancies__left-title {
  margin-bottom: 12px;
}

.vacancies__right-title {
  margin-bottom: 12px;
}

.vacancies__accordeons {
  margin-bottom: 40px;
}

.vacancies__accordeon {
  margin-bottom: 6px;
}

.vacancies__accordeon-btn {
  font-weight: 500;
  line-height: 1.5;
  background-color: #F4F8F9;
  padding: 10px 0 10px 13px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s linear background-color;
  transition: 0.3s linear background-color;
}

.vacancies__accordeon-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-black.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.vacancies__accordeon-content {
  background-color: #F1F3F4;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s linear max-height, 0.3s linear opacity;
  transition: 0.3s linear max-height, 0.3s linear opacity;
}

.vacancies__accordeon-info,
.vacancies__accordeon-responsibilities,
.vacancies__accordeon-requirements,
.vacancies__accordeon-conditions {
  margin-bottom: 18px;
}

.vacancies__accordeon-info {
  padding: 10px 0 10px 34px;
  position: relative;
}

.vacancies__accordeon-info::before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: #78909C;
  position: absolute;
  top: 0;
  left: 0;
}

.vacancies__accordeon-info-item {
  margin-bottom: 14px;
}

.vacancies__accordeon-info-item:last-child {
  margin-bottom: 0;
}

.vacancies__accordeon-info-title {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.vacancies__accordeon-info-subtitle {
  color: #78909C;
  font-weight: 500;
  line-height: normal;
}

.vacancies__accordeon-responsibilities-title,
.vacancies__accordeon-requirements-title,
.vacancies__accordeon-conditions-title {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 11px;
}

.vacancies__accordeon-responsibilities-item,
.vacancies__accordeon-requirements-item,
.vacancies__accordeon-conditions-item {
    font-size: 14px;
  font-weight: 500;
  color: #78909C;
  padding-left: 34px;
  position: relative;
}

.vacancies__accordeon-responsibilities-item::before,
.vacancies__accordeon-requirements-item::before,
.vacancies__accordeon-conditions-item::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #263640;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 100%;
}

.vacancies__accordeon-order-btn {
  font-size: 16px;
  font-weight: 500;
  color: #FF9326;
  position: relative;
  padding-right: 33px;
  line-height: 1.75;
}

.vacancies__accordeon-order-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-orange.svg");
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.vacancies__accordeon.active .vacancies__accordeon-btn {
  background-color: #F1F3F4;
}

.vacancies__accordeon.active .vacancies__accordeon-btn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.vacancies__accordeon.active .vacancies__accordeon-content {
  opacity: 1;
  padding: 10px 34px 10px;
}

.vacancies__pagination {
  position: relative;
  z-index: 1;
}

.vacancies__pagination-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vacancies__pagination-prev,
.vacancies__pagination-btn,
.vacancies__pagination-delimiter,
.vacancies__pagination-next {
  min-width: 32px;
  height: 32px;
  padding: 5px 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.428;
  color: #263640;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  border: 1px solid #fff;
  -webkit-transition: 0.3s linear background-color, 0.3s linear border;
  transition: 0.3s linear background-color, 0.3s linear border;
}

.vacancies__pagination-prev:last-child,
.vacancies__pagination-btn:last-child,
.vacancies__pagination-delimiter:last-child,
.vacancies__pagination-next:last-child {
  margin-right: 0;
}

.vacancies__pagination-prev:hover,
.vacancies__pagination-btn:hover,
.vacancies__pagination-next:hover {
  background-color: #F4F8F9;
  border: 1px solid #F4F8F9;
}

.vacancies__pagination-prev,
.vacancies__pagination-next {
  position: relative;
}

.vacancies__pagination-prev::before,
.vacancies__pagination-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  right: 21px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.vacancies__pagination-prev::before {
  background-image: url("../img/general/arrow-left-gray.svg");
}

.vacancies__pagination-btn.current {
  background-color: #F4F8F9;
  border: 1px solid #F4F8F9;
  pointer-events: none;
}

.vacancies__pagination-next::before {
  background-image: url("../img/general/arrow-right-black.svg");
}

/* VACANCIES */

/* CONSTRUCTIONS */

.constructions--padding {
  padding-bottom: 16px;
}

.constructions__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.constructions__left {
  width: 100%;
}

.constructions__right {
  width: 100%;
    height: 340px;
    margin-top: 22px;
}

.constructions__left-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
}

.constructions__left-wrapper-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
}

.constructions__left-widget {
  width: 340px;
}

.constructions__left-widget:last-child {
  margin-bottom: 0;
}

.constructions__left-widget.active .constructions__custom-select {
  border-bottom-color: transparent;
}

.constructions__left-widget.active .constructions__custom-items {
  display: block;
  width: 340px;
  z-index: 999;
  position: absolute;
  background-color: #fff;
}

.constructions__left-widget.widget-date .constructions__custom-date {
  overflow: hidden;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.constructions__left-widget.widget-date:first-child {
  width: 58%;
}

.constructions__left-widget.widget-date:first-child .constructions__custom-date {
  border-radius: 5px 0 0 0;
  border-right-color: transparent;
}

.constructions__left-widget.widget-date:last-child {
  width: 42%;
}

.constructions__left-widget.widget-date:last-child .constructions__custom-date {
  border-radius: 0 5px 0 0;
  border-left-color: transparent;
}

.constructions__left-widget.widget-date .constructions__custom-date-col {
  position: relative;
}

/*.constructions__form-btn {*/
/*  margin-top: 20px;*/
/*}*/

.constructions__real-select,
.constructions__real-radio {
  display: none;
}

.constructions__custom-select,
.constructions__custom-radio,
.constructions__custom-date {
  padding: 8px 6px;
  border: 1px solid #E3E5E5;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

.constructions__custom-select-inner,
.constructions__custom-radio-inner,
.constructions__custom-date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.constructions__custom-select-col,
.constructions__custom-radio-col,
.constructions__custom-date-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.constructions__custom-select-wrapper-icon,
.constructions__custom-radio-wrapper-icon,
.constructions__custom-date-wrapper-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.constructions__custom-select-param,
.constructions__custom-date-param {
  color: #3E4345;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.44px;
  text-transform: uppercase;
}

.constructions__custom-select-count {
  color: #5E6366;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  padding: 4px 16px;
  background-color: #F1F3F4;
  border-radius: 14px;
  margin-right: 38px;
}

.constructions__custom-select-arrow {
  position: relative;
}

.constructions__custom-select-arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url("../img/general/arrow-down-black.svg");
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
}

.constructions__custom-items {
  display: none;
  padding: 0 4px 10px 4px;
  border: 1px solid #E3E5E5;
  border-top: none;
}

.constructions__custom-default {
  color: #919699;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  letter-spacing: 0.25px;
  padding: 10px 12px 10px 28px;
  cursor: pointer;
}

.constructions__custom-item {
  height: 32px;
  border-radius: 4px;
  padding: 4px 7px 4px 24px;
  cursor: pointer;
  -webkit-transition: 0.3s linear background-color;
  transition: 0.3s linear background-color;
}

.constructions__custom-item.active,
.constructions__custom-item:hover {
  background-color: #F1F3F4;
}

.constructions__custom-item.active .constructions__custom-item-title,
.constructions__custom-item:hover .constructions__custom-item-title {
  font-weight: 500;
}

.constructions__custom-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.constructions__custom-item-title,
.constructions__custom-item-count {
  font-size: 14px;
  line-height: 1.428;
  letter-spacing: 0.25px;
}

.constructions__custom-item-title {
  position: relative;
  padding-left: 32px;
}

.constructions__custom-item-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-gray.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 8px;
}

.constructions__custom-item-count {
  color: #919699;
}

.constructions__custom-radio,
.constructions__custom-date {
  cursor: auto;
}

.constructions__inner-real-radio {
  margin-right: 20px;
}

.constructions__inner-real-radio:last-child {
  margin-right: 6px;
}

.constructions__wrapper-real-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.constructions__real-radio:checked + .constructions__fake-radio span::before {
  opacity: 1;
}

.constructions__fake-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.constructions__fake-radio span {
  display: block;
  width: 18px;
  height: 18px;
  background-color: #929A9F;
  border-radius: 100%;
  position: relative;
  margin-right: 5px;
}

.constructions__fake-radio span::before {
  opacity: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  border-radius: 100%;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.constructions__fake-radio div {
  color: #5E6366;
  font-size: 14px;
  line-height: 1.428;
}

.constructions__fake-date-start,
.constructions__fake-date-end {
  border-bottom: 1px solid #E3E5E5;
  margin-left: 7px;
  text-align: center;
  color: #5E6366;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.25px;
  width: 77px;
}

.constructions__info {
  display: flex;
  justify-content: end ;
    justify-items: end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.constructions__info-item {
  height: 48px;
  padding: 7px 0;
  border: 1px solid #E3E5E5;
  border-radius: 5px 5px 0 0;
  width: 212px;
}

.constructions__info-item.material.constructions__info-item {
  padding: 8px 6px 8px 6px;
}

.constructions__info-item.material .constructions__info-item-value {
  max-width: 103px;
  line-height: normal;
}

.constructions__info-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.constructions__info-item-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.constructions__info-item-wrapper-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.constructions__info-item-param {
  color: #3E4345;
    font-size: 10px;
    font-weight: 800;
    line-height: 24px;
  letter-spacing: 0.44px;
    text-align: left;
}

.constructions__info-item-value {
  color: #78909C;
    font-size: 10px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.44px;
    text-align: right;
  padding-right: 4px;
}

.constructions__btn {
  padding: 18px 20px 21px 114px;
  text-align: right;
  min-width: 280px!important;
}

.constructions__btn::after {
  right: auto;
  left: 13px;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* CONSTRUCTIONS */

/* SEARCH-RESULT */

.search-result {
  background-color: #0FC1C2;
  padding: 100px 0 42px 0;
  margin-top: -50px;
}

.search-result__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    flex-direction: column;
    gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.search-result__left,
.search-result__right {
    width: 100%;
}

.search-result__left-title {
  margin-bottom: 20px;
}

.search-result__left-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
}

.search-result__left-text p {
  color: #fff;
}

.search-result__form-wrapper-input {
  position: relative;
    margin-bottom: 20px;
}

.search-result__form-wrapper-input::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  background-image: url("../img/general/search.svg");
  top: 15px;
  right: 11px;
}

.search-result__form-input {
  display: block;
  width: 100%;
  padding: 12px 43px 12px 20px;
  border: 1px solid #E3E5E5;
  border-radius: 0;
  color: #5E6366;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.25px;
}

.search-result__right-title {
  margin-bottom: 15px;
}

.search-result__right-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.search-result__right-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-result__right-tag {
  padding: 6px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  border-radius: 16px;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

.search-result__right-tag:last-child {
  margin-right: 0;
}

.search-result__right-tag-close {
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 15px;
  height: 15px;
  background-image: url("../img/general/close-white.svg");
  cursor: pointer;
  margin-left: 12px;
  position: absolute;
  -webkit-transition: 0.3s linear opacity;
  transition: 0.3s linear opacity;
}

.search-result__right-tag:hover .search-result__right-tag-close {
  opacity: 1;
  visibility: visible;
  position: static;
}

.search-result__right-show-by {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.428;
  letter-spacing: 0.25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-result__show-by {
  padding: 0 8px;
}

.search-result__show-by-item {
  color: #fff;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 13px;
}

.search-result__show-by-item:hover {
  text-decoration: underline;
}

.search-result__show-by-item.current {
  text-decoration: none;
}

.search-result__show-by-item.current:hover {
  text-decoration: none;
}

.search-result__items {
  width: 100%;
  border-collapse: inherit;
  border-spacing: 0 6px;
margin-bottom: 32px;
}

.search-result__items-head {
  padding: 16px 18px 16px 13px;
}

.search-result__item {
  line-height: 1.5;
  text-align: center;
  padding: 9px 5px;
}

.search-result__item-head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.714;
  padding: 0;
}

.search-result__item-row {
  background-color: #fff;
  margin-bottom: 6px;
}

.search-result__item-row:last-child {
  margin-bottom: 0;
}

.search-result__pagination-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-result__pagination-prev,
.search-result__pagination-btn,
.search-result__pagination-delimiter,
.search-result__pagination-next {
  min-width: 32px;
  height: 32px;
  padding: 5px 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.428;
  color: #263640;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
}

.search-result__pagination-prev:last-child,
.search-result__pagination-btn:last-child,
.search-result__pagination-delimiter:last-child,
.search-result__pagination-next:last-child {
  margin-right: 0;
}

.search-result__pagination-prev,
.search-result__pagination-btn,
.search-result__pagination-next {
  background-color: #F4F8F9;
}

.search-result__pagination-prev,
.search-result__pagination-next {
  position: relative;
}

.search-result__pagination-prev::before,
.search-result__pagination-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  right: 21px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.search-result__pagination-prev::before {
  background-image: url("../img/general/arrow-left-gray.svg");
}

.search-result__pagination-btn.current {
  pointer-events: none;
}

.search-result__pagination-delimiter {
  background-color: #F4F8F9;
}

.search-result__pagination-next::before {
  background-image: url("../img/general/arrow-right-black.svg");
}

/* SEARCH-RESULT */

/* CONSTRUCTIONS-DESCRIPTION */

.constructions-description {
  padding-top: 50px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, transparent), color-stop(12%, #0FC1C2));
  background: linear-gradient(0deg, transparent 12%, #0FC1C2 12%);
}

.constructions-description__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.constructions-description__left {
  width: 82.7%;
  padding: 98px 0 80px 98px;
  background-color: #263640;
  -webkit-filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.2)) drop-shadow(-25px 25px 0px #F5F8FA);
          filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.2)) drop-shadow(-25px 25px 0px #F5F8FA);
}

.constructions-description__left-content {
  width: 31.4%;
}

.constructions-description__right {
  width: 65.57%;
  position: absolute;
  top: -100px;
  right: 0;
}

.constructions-description__subtitle {
  margin-bottom: 24px;
}

.constructions-description__title {
  max-width: 494px;
  color: #fff;
}

.constructions-description__text {
  max-width: 422px;
  margin-bottom: 56px;
}

.constructions-description__text p {
  color: #fff;
  line-height: 1.625;
  margin-bottom: 23px;
}

.constructions-description__text p:last-child {
  margin-bottom: 0;
}

.constructions-description__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.constructions-description__btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  padding-right: 33px;
  line-height: 28px;
}

.constructions-description__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../img/general/arrow-right-white.svg");
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
}

.constructions-description__img {
  max-width: 100%;
}

.constructions-description__swiper {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
}

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

.constructions-description-slide__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 30px !important;
}

.construction__inner .swiper-pagination-bullet,
.construction__inner .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
}

.construction__inner .swiper-pagination-bullet {
  background-color: #78909C;
  opacity: 1;
  margin: 0 19px 0 0 !important;
}

.construction__inner .swiper-pagination-bullet:last-child {
  margin: 0 !important;
}

.construction__inner .swiper-pagination-bullet-active {
  background-color: #263640;
}

.construction__inner .swiper-button-next:after,
.construction__inner .swiper-button-prev:after {
  content: "";
}

.construction__inner .swiper-button-prev,
.construction__inner .swiper-button-next {
  width: 8px;
  height: 12px;
  top: auto;
  bottom: 29px;
}

.construction__inner .swiper-button-prev {
  left: 32.2%;
  background-image: url("../img/general/arrow-left-white.svg");
}

.construction__inner .swiper-button-next {
  right: 32.2%;
  background-image: url("../img/general/arrow-right-white.svg");
}

/* CONSTRUCTIONS-DESCRIPTION */

.bottom-map {
  width: 100%;
  height: 594px;
  display: none;
}

.bottom-map.active {
  display: block;
  opacity: 1;
}

@media (max-width: 1300px) {
  .modal__content {
    width: auto;
    max-width: 777px;
  }

  .modal__left {
    width: 100%;
    padding: 57px 87px 73px 87px;
  }

  .modal__right {
    display: none;
  }

  .container {
      padding: 0 20px;
  }
}

@media (max-width: 1150px) {
  .our-partners__link {
    width: 25%;
  }
}

@media (max-width: 1100px) {
  .header__left {
    width: 78%;
  }

  .header__right {
    width: 22%;
  }

  .catalog__left,
  .vacancies__left,
  .constructions__left,
  .search-result__left {
    margin-right: 50px;
  }
}

@media (max-width: 992px) {
  .intro__left {
    width: 50.4%;
  }

  .intro__right {
    height: 100%;
  }

  .our-service__head {
    width: 100%;
  }

  .our-amenities__left-content {
    width: 60%;
  }

  .our-partners__link {
    width: 33.33333%;
  }

  .catalog__inner {
    display: block;
  }

  .catalog__left {
    max-width: none;
    margin-right: 0;
    margin-bottom: 38px;
  }

  .catalog__left-title-first {
    display: none;
  }

  .catalog__left-title-second {
    display: block;
  }

  .catalog__left-text {
    max-width: none;
    width: 50%;
  }

  .catalog__right-title {
    display: none;
  }

  .catalog__item {
    width: 33.33333%;
  }

  .search-result__inner {
    display: block;
  }

  .search-result__left {
    margin-bottom: 40px;
  }

  .search-result__right {
    width: 100%;
  }

  .constructions-description__left-content {
    width: 40%;
  }

  .constructions-description__right {
    width: 58%;
    top: 98px;
  }
}

@media (max-width: 920px) {
  .header__nav-item {
    margin-right: 25px;
  }

  .our-contacts {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #0FC1C2), color-stop(30%, transparent));
    background: linear-gradient(0deg, #0FC1C2 100%, transparent 30%);
  }

  /*.our-contacts__left {*/
  /*  padding-top: 120px;*/
  /*}*/
}

@media (max-width: 850px) {
  .header__inner {
    display: block;
  }

  .header__left,
  .header__right {
    width: 100%;
  }

  .header__right {
    display: none;
  }

  .intro__items {
    width: 100%;
    margin: 0;
    padding: 0 17px;
  }

  .footer__top-right {
    width: auto;
  }

  .modal__close {
    right: -10px;
  }

  .constructions__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .constructions__left {
    margin-top: 0;
    margin-right: 25px;
  }

  .constructions__right {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .header__nav-item {
    margin-right: 25px;
  }

  .our-service__item {
    width: 50%;
  }

  .our-amenities__left {
    padding: 54px 40px;
  }

  .our-contacts {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(88%, #0FC1C2), color-stop(30%, transparent));
    background: linear-gradient(0deg, #0FC1C2 100%, transparent 30%);
  }

  .our-contacts__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
    .our-contacts__left {
        padding-left: 40px;
    }
    .our-contacts__right {
        margin-left: 20px;
    }
  .catalog__item {
    width: 50%;
  }

  .breadcrumbs {
    padding: 29px 0;
    margin-bottom: 9px;
  }

  .vacancies__inner {
    display: block;
  }

  .vacancies__left {
    max-width: none;
    margin-right: 0;
    margin-bottom: 43px;
  }

  .vacancies__left-title {
    margin-bottom: 14px;
  }

  .vacancies__right {
    width: 100%;
  }

  .vacancies__right-title {
    margin-bottom: 24px;
  }

  .search-result__items-head {
    -ms-grid-columns: 1.1fr 1.1fr 0.3fr 0.2fr 0.2fr;
    grid-template-columns: 1.1fr 1.1fr 0.3fr 0.2fr 0.2fr;
  }

  .constructions-description__left {
    padding: 54px 0 52px 40px;
  }

  .constructions-description__left-content {
    width: 50%;
  }

  .constructions-description__right {
    width: 48%;
  }
}

@media (max-width: 660px) {
  .header__inner {
    padding: 26px 0;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .intro {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .intro__inner {
    display: block;
  }

  .intro__left,
  .intro__right {
    width: 100%;
  }

  .intro__left {
    margin-bottom: 40px;
  }

  .intro__right {
    position: static;
  }

  .intro__swiper {
      background: #C4C4C4;
  }

  .intro__text {
    max-width: none;
    margin-bottom: 22px;
  }

  .intro__btn {
    margin-bottom: 50px;
  }

  .intro .swiper-button-prev {
    left: 8.2%;
  }

  .intro .swiper-button-next {
    right: 8.2%;
  }

  .construction__inner .swiper-button-prev {
    left: 8.2%;
  }

  .construction__inner .swiper-button-next {
    right: 8.2%;
  }

  .our-service {
    padding-top: 171px;
    margin-top: -102px;
  }

  .our-service__head {
    margin-bottom: 50px;
  }

  .our-amenities {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(62%, transparent), color-stop(38%, #0FC1C2));
    background: linear-gradient(0deg, transparent 62%, #0FC1C2 38%);
    padding-bottom: 42px;
  }

  .our-amenities__left {
    padding: 54px 40px;
    margin-bottom: 0;
  }

  .our-amenities__left-content {
    width: 100%;
  }

  .our-amenities__right {
    position: static;
  }

  .our-amenities__img {
    width: 100%;
  }

  .our-partners--padding {
    padding-top: 62px;
  }

  .our-partners__title {
    margin-bottom: 14px;
  }

  .our-partners__head-inner {
    display: block;
    margin-bottom: 50px;
  }

  .our-partners__link {
    width: 50%;
  }

  .our-contacts {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(73%, #0FC1C2), color-stop(30%, transparent));
    background: linear-gradient(0deg, #0FC1C2 73%, transparent 30%);
    padding: 0 0 60px;
  }

  .our-contacts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .our-contacts__left {
    width: 100%;
    max-width: none;
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
  }

  .our-contacts__right {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 54px;
  }

  .modal__left {
    padding: 57px 30px 70px;
  }

  .catalog__left-text {
    max-width: none;
    width: 100%;
  }

  .breadcrumbs {
    padding: 40px 0 29px;
  }

  .constructions {
    position: relative;
  }

  .constructions--padding {
    padding-bottom: 40px;
  }

  .constructions__inner {
    display: block;
  }

  .constructions__left {
    margin-bottom: 40px;
  }

  .constructions__right {
    width: 100%;
    height: 396px;
  }

  .search-result {
    padding: 165px 0 60px;
    margin-top: -103px;
  }

  .search-result__left {
    margin-right: 0;
  }

  .search-result__left-text {
    max-width: none;
  }

  .search-result__right-tag {
    margin-right: 10px;
  }

  .search-result__items {
    margin-bottom: 30px;
  }

  .constructions-description {
    padding-top: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, transparent), color-stop(10%, #0FC1C2));
    background: linear-gradient(0deg, transparent 10%, #0FC1C2 10%);
  }

  .constructions-description__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .constructions-description__left,
  .constructions-description__left-content,
  .constructions-description__right {
    width: 100%;
  }

  .constructions-description__left {
    -webkit-filter: none;
            filter: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 54px 40px 60px;
  }

  .constructions-description__right {
    position: static;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: -80px;
  }

  .constructions-description-slide__navigation {
    bottom: 10px !important;
  }

  .construction__inner .swiper-button-prev,
  .construction__inner .swiper-button-next {
    bottom: 9px;
  }

  .construction__inner .swiper-button-prev {
    left: 8.2%;
  }

  .construction__inner .swiper-button-next {
    right: 8.2%;
  }
    .our-contacts__right {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
  .search-result__right-widgets {
    display: block;
  }

  .search-result__right-tags {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .search-result__right-tag {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .footer__top {
    display: block;
    padding: 70px 0 54px;
  }

  .footer__bottom {
    padding: 40px 0 60px;
  }

  .footer__logo {
    text-align: center;
    margin-bottom: 32px;
  }

  .footer__copyright {
    text-align: center;
  }

  .form__submit,
  .form__btn-call {
    display: block;
  }

  .form__submit {
    margin-bottom: 32px;
  }

  .search-result__items {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .our-service__items-without-img {
    margin-bottom: 0;
  }

  .our-service__items-without-img .our-service__item {
    padding-bottom: 22px;
    margin-bottom: 12px;
    border-bottom: 1px solid #78909C;
  }

  .our-service__items-without-img .our-service__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .our-service__item {
    width: 100%;
    max-width: none;
    margin-bottom: 52px;
  }

  .our-service__item:last-child {
    margin-bottom: 0;
  }

  .our-service__item-img {
    width: 100%;
  }

  .our-service__line {
    margin: 22px 0 12px;
  }

  .modal__wrapper {
    padding: 30px 4px;
  }

  .modal__content {
    border: none;
  }

  .modal__left {
    padding: 57px 6px 70px;
  }

  .modal__close {
    right: -2px;
  }

  .form__submit {
    min-width: auto;
  }

  .catalog__item {
    width: 100%;
    max-width: none;
    margin-bottom: 32px;
  }
}

@media (max-width: 450px) {
  .our-partners__link {
    width: 42%;
    margin-right: 48px;
  }

  .our-partners__link:nth-child(even) {
    margin-right: 0;
  }

  .call-modal-form__wrapper-input {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .section__text {
    margin-bottom: 22px;
  }

  .header__left {
    margin-bottom: 20px;
  }

  .header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__info-phone,
  .header__info-email {
    padding-left: 19px;
  }

  .our-service {
    padding: 171px 0 54px;
  }

  .our-amenities__left {
    padding: 54px 10px 52px;
  }

  .catalog__left-title {
    margin-bottom: 2px;
  }

  .vacancies__accordeon-info {
    padding: 14px 0 14px 22px;
  }

  .vacancies__accordeon-order-btn {
    margin-top: 13px;
  }

  .constructions-description__left {
    padding: 54px 10px 60px;
  }
}

@media (max-width: 340px) {
  .btn--orange {
    width: 100%;
  }

  .form__btn-call {
    margin: 0 auto;
  }

  .search-result__right-title {
    width: 314px;
  }
}
