@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src:
          url("../fonts/Montserrat-Regular.woff2") format("woff2"),
          url("../fonts/Montserrat-Regular.woff") format("woff");
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  cursor: pointer;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1, .h1 {
  font-weight: 600;
  font-size: 72px;
  color: #000;
}
.h1_big-slider-title, .h1_big-slider-title {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 62px;          
  font-weight: 700;        
  line-height: 1.2;       
}
h1_news-page, .h1_news-page {
  font-size: 42px;
  line-height: 1.23;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.room-item__btn_new:hover{
  cursor: pointer;
}
.room-item__btn_new{
  display: block;
  line-height: 35px;
  font-size: 13px;
  width: 150px;
  color: #000;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  h1 {
    font-weight: 400;
    font-size: 40px;
  }
}
h2, .h2 {
  color: #0f9c49;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
h2_center, .h2_center {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  h2, .h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  h2_center, .h2_center {
    margin-bottom: 40px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}
.container_1100 {
  max-width: 1100px;
}

/* ---------------------------------------------------header */
.header {
  background-color: rgba(22, 102, 56, 0.8);
  height: 110px;
  width: 100%;
  position: fixed;
  z-index: 1000;
}
.header__wrapper {
  height: 100%;
  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;
}
.header__logo {
  width: 200px;
  height: 80px;
  margin-left: 40px;
  margin-right: 20px;
}
.header__logo img {
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header__menu-item {
  list-style: none;
  margin-right: 20px;
}
.header__menu-item a {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.header__menu-item a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.header__right-tell {
  color: rgb(255, 255, 255);
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  font-size: 18px;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__right-tell:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__right-soc {
  margin-left: 30px;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__right-soc:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__right-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  gap: 10px;
}
.header__right-lang a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.5;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.header__right-lang a:hover {
  opacity: 1;
}

@media (max-width: 1099px) {
  .header {
    position: relative;
    background-color: #000;
    height: 50px;
    width: 100%;
    z-index: 1000;
  }
  .header__wrapper {
    padding-top: 15px;
    height: 570px;
    width: 100%;
    position: absolute;
    top: 50px;
    left: -100%;
    background-color: rgb(22, 102, 56);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 50px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header__wrapper_active {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    left: 0;
  }
  .header__menu-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
  }
  .header__right-tell {
    margin-left: 20px;
  }
  .header__menu-block {
    text-align: center;
    margin-left: 45px;
  }
  .header__menu-item a {
    -webkit-text-decoration-line: none;
            text-decoration-line: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
  }
  .humburger {
    display: block;
    position: absolute;
    z-index: 5;
    top: 8px;
    right: 30px;
  }
  .humburger span {
    display: block;
    margin-top: 5px;
    width: 35px;
    height: 3px;
    background-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 7px;
    right: -9px;
  }
  .humburger_active > span {
    display: block;
    position: absolute;
    margin-bottom: -8px;
    top: 7px;
    right: -5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .humburger_active > span:nth-child(1) {
    -webkit-transform: translateY(3px) rotate(45deg);
            transform: translateY(3px) rotate(45deg);
  }
  .humburger_active > span:nth-child(2) {
    display: none;
  }
  .humburger_active > span:nth-child(3) {
    -webkit-transform: translateY(3px) rotate(-45deg);
            transform: translateY(3px) rotate(-45deg);
  }
}
/* ---------------------------------------------------big-slider */
.big-slider {
  min-height: 100vh;
}

.big-slider-block__item {
  height: 100vh;
}
.big-slider-block__item_sl1 {
  opacity: 0.9;
}

.big-slider-block__item-text {
  padding: 30px;
  border-radius: 30px;
  position: absolute;
  background-color: #0f9c49;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.big-slider-block__item-descr {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.big-slider-block .slick-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50px;
  font-size: 0;
  background: url("../img/right_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}

.big-slider-block .slick-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50px;
  font-size: 0;
  background: url("../img/left_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}

.big-slider-block .slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.big-slider-block .slick-dots li {
  padding: 0 5px;
  list-style: none;
}
.big-slider-block .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #000;
  background-color: #000;
}

.big-slider-block li.slick-active button {
  background-color: #0f9c49;
  border: 2px solid #0f9c49;
}

@media (max-width: 992px) {
  .h1_big-slider-title {
    font-size: 45px;
  }
  .big-slider-block__item-descr {
    font-size: 25px;
  }
  .big-slider-block > .slick-next {
    display: none;
  }
}
/* ---------------------------------------------------about-proj */
.about-proj {
  text-align: center;
  position: relative;
  min-height: 500px;
  padding: 110px 0 3px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 241, 241, 0.55)), to(rgb(255, 255, 255))), url("../img/home/bg_about.svg") top center/cover no-repeat;
  background: linear-gradient(rgba(250, 241, 241, 0.55), rgb(255, 255, 255)), url("../img/home/bg_about.svg") top center/cover no-repeat;
}
.about-proj p {
  text-align: center;
  color: #000000;
  font-size: 22px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .about-proj p {
    font-size: 18px;
    font-weight: 300;
  }
}
/* ---------------------------------------------------characteristic */
.characteristic {
  padding: 150px 0 200px 0;
}
.characteristic__block {
  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;
  gap: 50px;
}

.char-item {
  width: 225px;
  position: relative;
}
.char-item__icon {
  width: 55px;
  height: 55px;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.char-item__icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.char-item__icon img {
  width: 100%;
}
.char-item__title {
  line-height: 23px;
  font-weight: 400;
  color: #000000;
  font-size: 19px;
}
.char-item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 6;
  bottom: -10px;
  left: 0;
  height: 1px;
  width: 210px;
  background-color: #000;
}

/* ---------------------------------------------------benefit */
.benefit {
  min-height: 850px;
  padding: 100px 0 90px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(0, 0, 0, 0.05))), url("../img/home/Cam_2J.jpg") right top/contain no-repeat, url("../img/home/bg_about.svg") top center/cover no-repeat;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.05)), url("../img/home/Cam_2J.jpg") right top/contain no-repeat, url("../img/home/bg_about.svg") top center/cover no-repeat;
}
.benefit_h2 {
  margin-bottom: 150px;
}
.benefit__block {
  max-width: 1105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #0f9c49;
  border-radius: 30px;
  padding: 30px;
  gap: 20px;
}

.benefit-item {
  width: 325px;
  color: #fff;
}
.benefit-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.benefit-item__icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.benefit-item__icon img {
  width: 100%;
}
.benefit-item__title {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.benefit-item__descr {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}
.benefit-item__descr a {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 992px) {
  .benefit_h2 {
    margin-bottom: 50px;
    text-align: center;
  }
}
/* ----------------------Модальные окна Подробнее о преимуществах*/
.benefit-mod-more-info {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.benefit-mod-more-info__block {
  position: absolute;
  width: 560px;
  background-color: #fff;
}
.benefit-mod-more-info__block-img {
  width: 560px;
}
.benefit-mod-more-info__block-img img {
  width: 100%;
}
.benefit-mod-more-info__block-text {
  padding: 40px 45px;
  max-width: 560px;
}
.benefit-mod-more-info__block-title {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}
.benefit-mod-more-info__block-descr {
  overflow: auto;
  height: 200px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  margin-bottom: 20px;
}
.benefit-mod-more-info__block-btn {
  display: inline-block;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #222222;
  line-height: 42px;
  border-radius: 100px;
  padding: 0 20px;
  text-decoration: none;
}
.benefit-mod-more-info__block-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 2000;
}

@media (max-width: 623px) {
  .benefit-mod-more-info__block {
    width: 90%;
  }
  .benefit-mod-more-info__block-img {
    width: 100%;
  }
}
@media (max-width: 351px) {
  .benefit-mod-more-info__block-text {
    padding: 10px;
  }
  .benefit-mod-more-info__block-descr {
    font-size: 14px;
    line-height: 1.3;
  }
}
/* ----------------------------Модальные окна Контактная форма*/
.contact-popup-form {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-popup-form__block {
  position: absolute;
  max-width: 500px;
  background-color: #fff;
  padding: 0 50px 10px 50px;
}
.contact-popup-form__logo {
  max-width: 560px;
  max-height: 226px;
}
.contact-popup-form__logo img {
  width: 100%;
}
.contact-popup-form__title {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.contact-popup-form__descr {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.contact-popup-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.contact-popup-form__form-input {
  display: block;
  width: 310px;
  padding: 0 20px;
  height: 50px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 1.33;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-input::-moz-placeholder {
  font-size: 16px;
  line-height: 1.33;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.33;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-input::-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.33;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-input::placeholder {
  font-size: 16px;
  line-height: 1.33;
  font-family: "Montserrat", Arial, sans-serif;
}
.contact-popup-form__form-btn {
  width: 310px;
  height: 54px;
  text-align: center;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  font-weight: 700;
  white-space: nowrap;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}
.contact-popup-form__block-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* ---------------------------------------------------city */
.city {
  min-height: 550px;
  background: url("../img/home/per_bg-2.jpg") center center/cover no-repeat;
  padding: 170px 10px 50px 10px;
}
.city__block {
  padding: 30px 10px 30px 50px;
  max-width: 410px;
  border-radius: 25px;
  background-color: #0f9c49;
  opacity: 0.9;
}
.city__item {
  color: #fff;
  line-height: 31px;
  font-size: 20px;
  font-weight: 400;
  visibility: visible;
}

@media (max-width: 576px) {
  .city__item {
    font-size: 14px;
  }
}
/* ---------------------------------------------------gallery */
.gallery {
  position: relative;
  min-height: 500px;
  padding: 110px 0 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(250, 241, 241, 0.55))), url("../img/home/bg_about.svg") top center/cover no-repeat;
  background: linear-gradient(rgb(255, 255, 255), rgba(250, 241, 241, 0.55)), url("../img/home/bg_about.svg") top center/cover no-repeat;
}
.gallery__wrapper {
  display: grid;
  grid-template-rows: 210px 210px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  justify-items: stretch;
}

.gallery__item img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery__item img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.gallery__item_g1 {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
}
.gallery__item_g2 {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 100%;
}
.gallery__item_g3 {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 100%;
}
.gallery__item_g4 {
  grid-column: 3/5;
  grid-row: 1/2;
  width: 100%;
}
.gallery__item_g5 {
  grid-column: 3/4;
  grid-row: 2/3;
  width: 100%;
}
.gallery__item_g6 {
  grid-column: 4/5;
  grid-row: 2/3;
  width: 100%;
}

@media (max-width: 768px) {
  .gallery__wrapper {
    display: grid;
    grid-template-rows: repeat(6, 235px);
    grid-template-columns: 1fr;
  }
  .gallery__item_g1 {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }
  .gallery__item_g2 {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
  }
  .gallery__item_g3 {
    grid-column: 1/2;
    grid-row: 3/4;
    width: 100%;
  }
  .gallery__item_g4 {
    grid-column: 1/2;
    grid-row: 4/5;
    width: 100%;
  }
  .gallery__item_g5 {
    grid-column: 1/2;
    grid-row: 5/6;
    width: 100%;
  }
  .gallery__item_g6 {
    grid-column: 1/2;
    grid-row: 6/7;
    width: 100%;
  }
}
/* ---------------------------------------------------about-dev */
.about-dev {
  min-height: 900px;
  padding: 80px 0 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../img/home/pro_bg.jpg") center center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/home/pro_bg.jpg") center center/cover no-repeat;
}
.about-dev_h2 {
  color: #fff;
  margin-bottom: 50px;
}
.about-dev__text {
  padding: 20px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 60%;
  margin-bottom: 40px;
}
.about-dev__info-block {
  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;
  gap: 40px;
}
.about-dev__item {
  width: 400px;
}
.about-dev__item-title {
  color: #0f9c49;
  font-size: 56px;
  font-weight: 900;
  line-height: 87px;
}
.about-dev__item-title:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.about-dev__item-descr {
  line-height: 40px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 0 20px 0;
}

@media (max-width: 992px) {
  .about-dev__text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-dev__info-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 576px) {
  .about-dev__text {
    font-size: 14px;
    line-height: 27px;
  }
}
/* ---------------------------------------------------planning */
.planning {
  padding: 100px 0 50px 0;
}
.planning__planning-info {
  padding: 150px 0 50px 0;
}
.planning__btns {
  max-width: 675px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.planning__btns-all {
  display: block;
  color: #ffffff;
  background-color: #0f9c49;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  padding-left: 60px;
  padding-right: 60px;
  text-decoration: none;
  border-radius: 15px;
}
.planning__btns-comerc {
  display: block;
  color: #0f9c49;
  background-color: #ffffff;
  border: 3px solid #0f9c49;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  padding-left: 60px;
  padding-right: 60px;
  text-decoration: none;
  border-radius: 15px;
}

.planning-tabs {
  margin-bottom: 40px;
  width: 100%;
}
.planning-tabs__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.planning-tabs__tab-item {
  width: 300px;
  text-align: center;
  line-height: 30px;
  color: #777;
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid #777;
  cursor: pointer;
}
.planning-tabs__tab-item_active {
  color: #000;
  font-size: 17px;
  border-bottom: 2px solid #000;
}

.slider-wraper {
  display: none;
  margin: 0 auto;
  width: 1050px;
}

@media (max-width: 1200px) {
  .slider-wraper {
    width: 731px;
  }
}
@media (max-width: 768px) {
  .slider-wraper {
    width: 554px;
  }
}
@media (max-width: 660px) {
  .slider-wraper {
    width: 326px;
  }
}
@media (max-width: 400px) {
  .slider-wraper {
    width: 285px;
  }
}
.slider-wraper_active {
  display: block;
}
.show-commercial {
  display: block;
  line-height: 50px;
  font-size: 13px;
  width: 20%;
  color: #ffffff;
  background-color: #0f9c49;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.planning-tabs-slider-1 .slick-next, .planning-tabs-slider-2 .slick-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -50px;
  font-size: 0;
  background: url("../img/right_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}
.news__wrapper .slick-next {
  position: absolute;
  z-index: 5;
  top: 30%;
  transform: translateY(-50%);
  right: -1%;
  font-size: 0;
  background: url("../img/right_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}
.news__wrapper .slick-prev{
  position: absolute;
  z-index: 5;
  top: 30%;
  left: -1%;
  transform: translateY(-50%);
  font-size: 0;
  background: url("../img/left_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}
.news__wrapper-slide{
  margin: 10px;
}
@media (min-width: 900px) {
  .news__wrapper .slick-next {
    right: -3%;
  }
  .news__wrapper .slick-prev{
    left: -3%;
  }
}
.planning-tabs-slider-1 .slick-prev, .planning-tabs-slider-2 .slick-prev{
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -50px;
  font-size: 0;
  background: url("../img/left_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}

@media (max-width: 320px) {
  .slider-wraper {
    width: 249px;
  }
  .planning-tabs-slider-1 .slick-next, .planning-tabs-slider-2 .slick-next {
    right: -28px;
  }
  .planning-tabs-slider-1 .slick-prev, .planning-tabs-slider-2 .slick-prev {
    left: -28px;
  }
}
.room-item {
  margin: 5px;
  padding-top: 10px;
  height: 440px;
  width: 100%;
  background-color: #ebebeb;
  border-radius: 20px;
}
.room-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.room-item__img {
  width: 100%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.room-item__img img {
  height: 100%;
}
.room-item__title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  margin-left: 25px;
}
.room-item__flat-type, .room-item__flat-square {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  margin-left: 25px;
  margin-bottom: 10px;
}
.room-item__btn {
  display: block;
  line-height: 35px;
  font-size: 13px;
  width: 118px;
  color: #ffffff;
  background-color: #0f9c49;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-left: 25px;
}

/* ---------------------------------------------------news */
.news {
  min-height: 800px;
  padding: 110px 0 50px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(250, 241, 241, 0.55))), url("../img/home/bg_about.svg") center center/cover no-repeat, center center/cover no-repeat;
  background: linear-gradient(rgb(255, 255, 255), rgba(250, 241, 241, 0.55)), url("../img/home/bg_about.svg") center center/cover no-repeat, center center/cover no-repeat;
}
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.news__btn-more {
  color: #0f9c49;
  border: 3px solid #0f9c49;
  border-radius: 15px;
  text-align: center;
  line-height: 60px;
  width: 300px;
  margin: 0 auto;
  font-weight: 700;
  cursor: pointer;
  background-color: #fff;
}

.news-item {
  width: 310px;
  min-height: 450px;
}
.news-item__img {
  flex: 0 1 calc(33.333% - 20px); /* Три в ряд */
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 400px; 
  border-radius: 6px;
  /*width: 310px;
  height: 310px;
  margin-bottom: 20px;*/
}
.news-item__img img {
  width: 100%;
  height: 210px; 
  object-fit: cover; /* Забезпечує рівномірне масштабування */
  display: block;
  border-radius:6%

  /*border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;*/
}
.news-item__title {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  color: #0f9c49;
  margin-bottom: 25px;
  
  /*color: #0f9c49;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;*/

}
.news-item__descr {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 25px; 
  
  /*color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 25px;*/
}
.news-item__btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  background-color: #0f9c49;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  
  /*display: inline-block;
  text-align: center;
  line-height: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  background-color: #0f9c49;
  padding: 0 15px;
  text-decoration: none;*/
}

/* ---------------------------------------------------view-form */
.view-form {
  max-height: 720px;
  padding: 50px 0;
}
.view-form__h2 {
  color: #fff;
  margin-bottom: 50px;
}

.view-form-block {
  border: 1px solid #fff;
  border-radius: 20px;
  max-width: 560px;
  height: 440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 120px 60px 120px;
}
.view-form-block__title {
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}
.view-form-block__input {
  max-width: 350px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  padding: 0 15px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__input::-webkit-input-placeholder {
  color: grey;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__input::-moz-placeholder {
  color: grey;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__input:-ms-input-placeholder {
  color: grey;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__input::-ms-input-placeholder {
  color: grey;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__input::placeholder {
  color: grey;
  font-size: 16px;
  font-weight: 400;
}
.view-form-block__btn {
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    width: 200px;
    height: 50px;
    margin-top: 30px;
    display: inline-block;
    color: #444;
    border: 1px solid white;
    background: white;
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    vertical-align: middle;
    padding: 14px;
    text-align: center;
}

@media (max-width: 768px) {
  .view-form-block {
    padding: 35px 30px 30px 30px;
  }
}
/* ---------------------------------------------------map */
.map {
  position: relative;
  height: 600px;
}
.map__block {
  position: absolute;
  bottom: 20px;
  left: 30vh;
  height: 410px;
  width: 450px;
  background-color: #0f9c49;
  padding: 35px;
  border-radius: 20px;
}
.map__block-title {
  font-size: 28px;
  line-height: 1.17;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 35px;
}
.map__block-adress {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 25px;
}
.map__block-info {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: #ffffff;
}
.map__block-info-tel {
  text-decoration: none;
}
.map__block-info-mail {
  margin-bottom: 30px;
}
.map__block-soc {
  margin-top: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.map__block-soc:hover {
  -webkit-transform: scale3d(1.1);
          transform: scale3d(1.1);
}

@media (max-width: 768px) {
  .map__block {
    position: static;
    border-radius: 0;
    width: 100%;
  }
  .map iframe {
    height: 296px;
  }
}
/* --------------------------------------------footer */
.footer {
  min-height: 350px;
  background-color: #0f9c49;
  padding: 50px 0 30px 0;
  position: relative;
  overflow: hidden;
}
.footer__img-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 200px;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo-block {
  width: 450px;
  height: 90px;
  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;
}
.footer__logo-block img {
  width: 200px;
}
.footer__menu-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.footer__menu-item {
  list-style: none;
  margin-bottom: 8px;
}
.footer__menu-item a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.footer__menu-item_title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 25px;
  margin-bottom: 8px;
}
.footer__menu-item_top {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .footer__img-left {
    bottom: -19px;
    left: -163px;
  }
}
@media (max-width: 768px) {
  .footer__img-left {
    display: none;
  }
}
@media (max-width: 576px) {
  .footer__logo-block {
    width: 270px;
    height: 90px;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__logo-block img {
    display: block;
    width: 50%;
  }
  .footer__menu-block {
    gap: 30px;
  }
}
/* ====================================================ХІД БУДІВНИЦТВА========= */
.swiper img {
  width: 100%;
}
.big-header-banner {
  height: 550px;
  background: url("../img/bud/bg-bud.jpg") center center/cover no-repeat;
}

.billding {
  padding: 60px 0;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 241, 241, 0.55)), to(rgb(255, 255, 255))), url("../img/home/bg_about.svg") top center/cover no-repeat;
  background: linear-gradient(rgba(250, 241, 241, 0.55), rgb(255, 255, 255)), url("../img/home/bg_about.svg") top center/cover no-repeat;
}
.billding__h1 {
  text-align: center;
  color: #0f9c49;
  margin-bottom: 80px;
  text-transform: uppercase;
}
.billding__camera-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 570px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.billding__camera-item {
  width: 120px;
}
.billding__camera-img img {
  width: 100%;
}
.billding__camera-title {
  color: #0f9c49;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

@media (max-width: 768px) {
  .billding__h1 {
    font-size: 40px;
  }
}
.text-block {
  min-height: 350px;
  padding: 50px 0;
}
.text-block__descr {
  border-top: 1px solid #0f9c49;
  border-bottom: 1px solid #0f9c49;
  padding: 80px 0;
  text-align: center;
  font-size: 38px;
  line-height: 1.35;
  font-weight: 300;
  color: #000000;
  position: relative;
}
.text-block__descr::before {
  content: "Ми будуємо!";
  position: absolute;
  display: block;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 260px;
  height: 45px;
  background-color: #0f9c49;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 45px;
}

@media (max-width: 576px) {
  .text-block__descr {
    margin-top: 15px;
    font-size: 26px;
  }
}
.month {
  min-height: 600px;
  padding: 0 60px;
}
.month__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.month__block-item {
  margin-bottom: 15px;
  list-style: none;
  padding: 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.2509803922);
  color: #777;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  cursor: pointer;
}
.month__block-item:hover {
  border-bottom: 2px solid #000;
  color: #000;
}

@media (max-width: 576px) {
  .month {
    min-height: 500px;
    padding: 5px 20px;
  }
}
.slider-khid-budivn__slide {
  height: 450px;
  padding: 0 10px;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.slider-khid-budivn__slide:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.slider-khid-budivn__slide img {
  width: 100%;
}

.slider-khid-budivn .slick-dots{
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slider-khid-budivn .slick-dots li {
  padding: 0 5px;
  list-style: none;
}
.slider-khid-budivn .slick-dots li button{
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #000;
  background-color: #000;
}

.slider-khid-budivn li.slick-active button {
  background-color: #0f9c49;
  border: 2px solid #0f9c49;
}

.slider-khid-budivn .slick-next{
  position: absolute;
  z-index: 5;
  bottom: 20px;
  right: 30%;
  font-size: 0;
  background: url("../img/right_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}

.slider-khid-budivn .slick-prev {
  position: absolute;
  z-index: 5;
  left: 30%;
  bottom: 20px;
  font-size: 0;
  background: url("../img/left_icon.png") center center/cover no-repeat;
  width: 32px;
  height: 32px;
}

@media (max-width: 576px) {
  .slider-khid-budivn__slide {
    height: 345px;
  }
}
@media (max-width: 390px) {
  .slider-khid-budivn__slide {
    height: 300px;
  }
  .slider-khid-budivn .slick-next {
    right: 20%;
  }
  .slider-khid-budivn .slick-prev {
    left: 20%;
  }
}
/* ====================================================Планування========= */
.planning-info {
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 0 30px 0;
}
.planning-info__wrapper {
  max-width: 320px;
  text-align: center;
  padding: 0 10px;
}
.planning-info__title {
  font-size: 52px;
  line-height: 1.23;
  font-weight: 600;
  color: #000000;
  padding-bottom: 15px;
}
.planning-info__descr {
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  border-top: 1px solid #000;
  padding-top: 15px;
}

.planning-benef {
  min-height: 850px;
  padding: 100px 0 90px 0;
  background: url("../img/home/per_bg.jpg") right center/500px 100% no-repeat, -webkit-gradient(linear, left top, left bottom, from(rgba(239, 240, 240, 0.5)), to(rgba(239, 240, 240, 0.5))) center center/cover no-repeat;
  background: url("../img/home/per_bg.jpg") right center/500px 100% no-repeat, linear-gradient(rgba(239, 240, 240, 0.5), rgba(239, 240, 240, 0.5)) center center/cover no-repeat;
}
.planning-benef__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 800px;
  gap: 20px;
  margin-top: 30px;
}
.planning-benef__item {
  max-width: 390px;
}
.planning-benef__img {
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 20px;
}
.planning-benef__img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.planning-benef__img img {
  width: 100%;
}
.planning-benef__title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}
.planning-benef__descr {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
}

@media (max-width: 1300px) {
  .planning-benef__item {
    background-color: rgba(22, 102, 56, 0.9);
    border-radius: 20px;
    padding: 15px;
  }
  .planning-benef__descr, .planning-benef__title {
    color: #fff;
  }
}
/* ====================================================Новини та акції========= */
.news-block {
  padding: 200px 0 50px 0;
  background: #f2f2f2;
}
.news-block__descr {
  max-width: 560px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  color: #000000;
  margin-bottom: 100px;
  text-align: center;
}
/*.news-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 50px;
}*/

.news-block__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}


/*.news-items {
  max-width: 30%;
}*/

.news-items {
  flex: 0 1 calc(33.333% - 20px); /* Три в ряд */
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 400px; 
  border-radius: 6px;
}

/*.news-items__img {
  width: 100%;
  margin-bottom: 20px;
}*/

.news-items__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 6px;
}

.news-items__img img {
  width: 100%;
  height: 210px; 
  object-fit: cover; /* Забезпечує рівномірне масштабування */
  display: block;
}

/*.news-items__img img {
  width: 100%;
}*/

.news-items__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  flex-grow: 1; /* Дозволяє вирівняти кнопку вниз */
}

/*.news-items__title {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}*/
.news-items__descr {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  margin-bottom: 25px;
}
/*.news-items__btn {
  display: inline-block;
  text-align: center;
  line-height: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  background-color: #0f9c49;
  padding: 0 15px;
  text-decoration: none;
}*/

.news-items__btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  background-color: #0f9c49;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}


@media (max-width: 1099px) {
  .news-block {
    padding: 50px 0 50px 0;
  }
}


.news-page-block {
  text-align: center;
  padding: 120px 0 50px 0;
}

@media (max-width: 1099px) {
  .news-page-block {
    padding: 50px 0 50px 0;
  }
@media (max-width: 768px) {
  .news-items {
    flex: 0 1 100%;
  }
}