:root {
  --yellow: #cee316;
  --green: #007241;
  --blue: #4364b0;
  --black: #000000;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a {
  transition: 0.3s;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
}
body,
input,
textarea,
button {
  font-family: 'Montserrat', sans-serif;
}
.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal .close-modal-times {
  color: rgba(213, 213, 213, 0.78);
  font-size: 50px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-modal-times:hover {
  color: #ffffff;
}
.modal .modal-block {
  max-width: calc(100% - 30px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: none;
  animation: scall 0.7s;
}
.form-box-modal {
  max-width: 440px;
  padding: 40px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .form-box-modal {
    padding: 20px;
  }
}
.form-box-modal .input {
  margin-bottom: 15px;
}
.form-box-modal .checkbox {
  margin-bottom: 20px;
}

.form-box-modal .checkbox input.error + span{
  background: url(../img/red-checkbox.svg) no-repeat 0px center;
  color: red;
}
.form-box-modal .checkbox span {
  color: #222222;
}
.form-box-modal h3 {
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-align: center;
  margin-bottom: 16px;
}
.form-box-modal .btn {
  width: 100%;
}
.modal-thanks {
  padding: 30px 50px 50px;
  position: relative;
  pointer-events: none;
  background: #FFFFFF;
  border-radius: 10px;
  max-width: 815px!important;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.callback_popup__title {
  font-size: 36px;
  line-height: 140%;
  text-align: center;
  font-weight: 700;
}
.callback_popup__text {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #1F1F1F;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .modal-thanks {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 15px;
    margin: 15px;
  }
  .callback_popup__title {
    font-size: 28px;
    line-height: 140%;
    text-align: center;
  }
  .callback_popup__text {
    margin-top: 30px;
    font-size: 18px;
  }
}
.modal-info {
  width: 800px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
}
.modal-info h3 {
  font-weight: bold;
  color: #222222;
  font-size: 22px;
  margin-bottom: 20px;
}
.modal-info p {
  color: #222222;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.modal-info p:not(:last-child) {
  margin-bottom: 15px;
}
.checkbox {
  width: 100%;
  display: block;
  margin-top: 10px;
}
.checkbox span {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
  padding: 3px 0 3px 35px;
  cursor: pointer;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + span {
  background: url(../img/checkbox.svg) no-repeat 0px center;
}
.checkbox input[type=checkbox]:checked + span {
  background: url(../img/checkbox-active.svg) no-repeat 0px center;
}
.menu_mob {
  width: 30px;
  height: 30px;
  border: 1px solid #2C5EA7;
  box-sizing: border-box;
  border-radius: 5px;
  display: none;
  position: relative;
}
.menu_mob span {
  width: 16px;
  height: 2px;
  display: block;
  border-radius: 5px;
  background-color: #2C5EA7;
  position: absolute;
  top: 7px;
  left: 6px;
  transition: 0.5s;
}
.menu_mob span:nth-child(2) {
  top: 13px;
}
.menu_mob span:nth-child(3) {
  top: 19px;
}
.active_drop_men.menu_mob span {
  top: 13px;
}
.active_drop_men span:nth-child(1) {
  transform: rotate(225deg);
}
.active_drop_men span:nth-child(2) {
  transform: rotate(135deg);
}
.active_drop_men span:nth-child(3) {
  transform: rotate(225deg);
}
.overflow-wrap {
  overflow-x: auto;
  padding-bottom: 3px;
}
.overflow-wrap::-webkit-scrollbar-track {
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar {
  height: 3px;
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar-thumb {
  background-color: #EA262B;
  border-radius: 5px;
}
.scroll-top {
  position: fixed;
  bottom: 12px;
  right: 15px;
  width: 34px;
  height: 34px;
  display: block;
  background-color: var(--green);
  border: 1px solid var(--yellow);
  background-image: url(../img/up-arrow.svg);
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(150%);
  z-index: 10;
  border-radius: 7px;
}
.scroll-top:hover {
  background-color: #c3161a;
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
@keyframes scall {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.btn {
  max-width: 100%;
  height: 50px;
  background-color: var(--green);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;

}
.btn svg path {
  transition: fill 0.3s;
}
.btn:hover svg path {
  fill: var(--yellow);
}
.btn.btn-icon {
  height: 40px;
  font-size: 12px;
  padding: 0 20px;
}
.btn.btn-icon span {
  margin-left: 9px;
}
.btn.yellow {
  height: 60px;
  color: var(--green);
  background: var(--yellow);
}
.btn.yellow:hover {
  background: #dbf213;
  color: var(--green);
}
.btn:hover {
  color: var(--yellow);
  background: #015430;
}
.header {
  background-color: var(--yellow);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}
.header-box {
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  width: 140px;
  margin-bottom: -90px;
  margin-top: -23px;
}
.header-logo img {
  width: 100%
}
.header-logo:hover {
  opacity: 0.7;
}
.header-menu {
  width: calc(100% - 260px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-info {
  line-height: 1.5;
  color: #262728;
}
.header-info h6 {
  font-size: 12px;
  font-weight: bold;
  color: #007241;
}
.header-info p {
  font-size: 12px;
}
.header-btns {
  display: flex;
}
.header-btns .btn:not(:last-child) {
  margin-right: 20px;
}
.header-tel {
  font-weight: bold;
  font-size: 14px;
  color: var(--green);
}
.header-tel:hover {
  color: var(--blue);
}
.banner {
  padding: 70px 0 80px;
  background-image: url(../img/banner-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.banner-content {
  max-width: 570px;
  position: relative;
}
@media (max-width: 767px) {
  .banner-content {
    max-width: none;
  }
}
.banner-man {
  position: absolute;
  width: 490px;
  top: -170px;
  right: -470px;
}
@media (max-width: 1199px) {
  .banner-man {
    width: 380px;
    top: -100px;
    right: -370px;
  }
}
@media (max-width: 991px) {
  .banner-man {
    width: 250px;
    top: -10px;
    right: -200px;
  }
}
@media (max-width: 767px) {
  .banner-man {
    width: 250px;
    top: 50px;
    right: calc(50% - 125px);
  }
}
.banner-man img {
  width: 100%;
}

.banner-girl_1 {
  position: absolute;
  width: 650px;
  top: 18px;
  right: -635px;
}
@media (max-width: 1650px) {
  .banner-girl_1 {
    position: absolute;
    width: 570px;
    top: 105px;
    right: -550px;
  }
}
@media (max-width: 1500px) {
  .banner-girl_1 {
    position: absolute;
    width: 470px;
    top: 213px;
    right: -450px;
  }
}
@media (max-width: 1199px) {
  .banner-girl_1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner-girl_1 {
    display: block;
    position: absolute;
    width: 220px;
    top: auto;
    right: 0;
    bottom: -45px;
  }
}
.banner-girl_1 img {
  width: 100%;
}


.banner-girl_2 {
  position: absolute;
  width: 650px;
  top: -180px;
  left: -124px;
}
.banner-girl_2.this--mob {
  display: none;
}
@media (max-width: 1199px) {
  .banner-girl_2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner-girl_2.this--mob {
    display: block;
    width: 150px;
    top: auto;
    bottom: -193px;
    left: calc(50% - 75px);
  }
}

banner-girl_2 img {
  width: 100%;
}
.banner-content h1 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
  color: #262728;
}
.banner-content h1 span {
  color: var(--green);
}
.banner-sub {
  font-size: 22px;
  line-height: 1.4;
  color: #262728;
  margin: 20px 0;
}
.banner-info {
  width: 575px;
  height: 100px;
  background-image: url(../img/banner-info-bg.png);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  margin: 40px 0 60px;
}
.banner-info-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #FFFFFF;
}
.banner-info-box p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.banner-box-red p,
.banner-box-red h6 {
  color: var(--green);
}
.banner-info-box h6 {
  font-weight: bold;
}
.banner-info-box.banner-box-blue {
  width: 39%;
  padding-left: 30px;
}
.banner-info-box.banner-box-white {
  width: 31%;
  color: #262728;
}
.banner-info-box.banner-box-white h6 {
  font-size: 24px;
}
.banner-info-box.banner-box-white h6 span {
  font-size: 16px;
}
.banner-info-box.banner-box-red h6 {
  font-size: 32px;
}
.banner-info-box.banner-box-red h6 span {
  font-size: 18px;
}
.section {
  padding: 60px 0 80px;
}
.title {
  font-weight: bold;
  font-size: 34px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  color: #262728;
  margin-bottom: 40px;
  position: relative;
}
.title span {
  color: var(--green);
}
.title:before {
  content: '';
  width: 400px;
  height: 1px;
  background-color: #DADBDC;
  position: absolute;
  bottom: -6px;
  left: calc(50% - 200px);
}
.title:after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #DADBDC;
  position: absolute;
  bottom: -9px;
  left: calc(50% - 30px);
}
.title.small {
  font-size: 22px;
  margin-bottom: 25px;
}
.title-sub {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #262728;
  margin-bottom: 35px;
}
.form-box {
  background-color: #FFFFFF;
  padding: 18px 20px 24px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
}
.form-box .title-sub {
  margin-bottom: 17px;
}
.gift {
  width: 222px;
  height: 222px;
  background-image: url(../img/star.png);
  background-size: 100% 100%;
  position: absolute;
  top: -150px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
  text-align: center;
  transform: rotate(17deg);
}
.gift p {
  max-width: 120px;
  font-weight: bold;
  font-size: 11.5px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #262728;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.6);
}
.form-block {
  max-width: 670px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 0 auto 20px auto;
}
.form-block .label-box,
.form-block .btn {
  width: calc(50% - 15px);
}
.label-box {
  display: block;
}
.input {
  width: 100%;
  height: 50px;
  outline: none;
  background-color: #F3F4F5;
  border: 1px solid #DADBDC;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding-left: 40px;
  background-position: 12px center;
  background-repeat: no-repeat;
  font-size: 16px;
  color: #262728;
}
.input[name="phone"] {
  background-image: url(../img/phone.svg);
}
.input[name="name"] {
  background-image: url(../img/user.svg);
}
.textarea {
  width: 100%;
  height: 120px;
  outline: none;
  background-color: #F3F4F5;
  border: 1px solid #DADBDC;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 15px;
  font-size: 16px;
  color: #262728;
  resize: none;
  margin-bottom: 10px;
}
.label-name {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: #A8A9AA;
  margin-bottom: 5px;
}
.form-info-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--green);
}
.banner-description-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
}
.banner-description-block {
  width: calc(25% - 22px);
  padding: 20px 20px 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
}
.banner-description-number {
  font-weight: bold;
  font-size: 80px;
  color: #F3F4F5;
  position: absolute;
  bottom: 5px;
  right: 12px;
}
.banner-description-icon {
  width: 90px;
  height: 90px;
  background-color: #2C5EA7;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.banner-description-icon img {
  max-width: calc(100% - 25px);
  max-height: calc(100% - 30px);
}
.banner-description-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: #262728;
  position: relative;
}
.gray-bg {
  background-color: #F3F4F5;
}
.about {
  background-image: url(../img/about-bg.png);
  background-repeat: no-repeat;
  background-position: 10% bottom;
}
.about-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 300px;
}
.about-block {
  width: calc(33.333% - 22px);
  background-color: #FFFFFF;
  padding: 22px 20px 24px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.about-title {
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: left 10px;
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: var(--black);
  padding-left: 53px;
  margin-bottom: 17px;
}
.about-text {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.about-text:not(:last-child) {
  margin-bottom: 12px;
}
.list-info li {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  padding-left: 22px;
  margin-top: 12px;
  position: relative;
}
.list-info li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
}
.blue-bg {
  background-color: #2C5EA7;
}
.blue-bg .title {
  color: var(--yellow);
}
.blue-bg .title.this--wh {
  color: #ffffff;
}
.blue-bg .title-sub {
  color: #ffffff;
}
.blue-bg .title span {
  background-color: var(--yellow);
  padding: 0 7px;
  line-height: 1.3;
  color: #2C5EA7;
}
.types-filters {
  background-color: var(--yellow);
  padding: 5px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.types-filter-btn {
  padding: 12px 28px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #262728;
  cursor: pointer;
  transition: 0.3s;
}
.types-filter-btn:hover {
  color: var(--blue);
}
.types-filter-btn.active {
  background-color: var(--green);
  color: var(--yellow);
  border-radius: 100px;
}
.types-tab-block {
  display: none;
}
.types-tab-block.active {
  display: block;
}
.types-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 25px;
}
.types-block {
  width: calc(33.333% - 22px);
  margin-bottom: 30px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.types-content {
  height: calc(100% - 275px);
  background-color: #FFFFFF;
  padding: 15px 34px 105px;
  position: relative;
}
.types-content .btn {
  width: calc(100% - 68px);
  position: absolute;
  bottom: 30px;
  left: 34px;
}
.types-name {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #262728;
  margin-bottom: 12px;
  height: 55px;
}
.list-description {
  margin-bottom: 20px;
  height: 200px;
}
.list-description li {
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: left center;
  padding-left: 23px;
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.list-description li:not(:last-child) {
  margin-bottom: 9px;
}
.list-description.yellow li {
  background-image: url(../img/check-yellow.svg);
}
.types-info {
  font-weight: bold;
  font-size: 22px;
  color: #262728;
}
.types-info span {
  font-weight: 700;
  font-size: 32px;
}
.types-slider {
  position: relative;
}
.types-photo {
  width: 100%;
  height: 275px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.slider-arrow {
  width: 30px;
  height: 30px;
  background-image: url(../img/arrow-slider.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: calc(50% - 15px);
  z-index: 3;
  cursor: pointer;
  transition: 0.3s;
}
.slider-arrow.arrow-black {
  background-image: url(../img/arrow-black.svg);
}
.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 0.85;
}
.slider-arrow-prev {
  left: 12px;
}
.slider-arrow-next {
  transform: rotate(180deg);
  right: 12px;
}
.swiper-solution {
  position: relative;
}
.swiper-solution .slider-arrow-prev {
  left: 14.5%;
}
.swiper-solution .slider-arrow-next {
  right: 14.5%;
}
.swiper-solution .swiper-slide-active .solution-box:before {
  display: none;
}
.swiper-solution > .swiper-wrapper > .swiper-slide {
  padding: 15px;
}
.solution-box {
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 4px rgba(38, 39, 40, 0.12);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.solution-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(108, 108, 108, 0.55);
  transition: 0.3s;
}
.solution-slider {
  width: 55%;
  height: 100%;
}
.solution-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.solution-content {
  width: 45%;
  padding: 20px 25px 30px;
}
.solution-content h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #2C5EA7;
  margin-bottom: 11px;
}
.solution-content p {
  font-size: 16px;
  line-height: 140%;
  color: #262728;
  margin-bottom: 15px;
}
.solution-content .btn {
  width: 310px;
  margin-top: 35px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  opacity: 1;
  background: none;
  border: 1px solid #ffffff;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}
.reasons {
  background: #f1f1f2;
  overflow: hidden;
}
.reasons-wrap {
  max-width: 870px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .reasons-wrap {
    max-width: none;
  }
}
.reason-block {
  width: calc(33.333% - 22px);
  background-color: #FFFFFF;
  padding: 20px 25px 15px 40px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.reason-block p {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.banner-description-icon.reason-icon {
  margin: 0 0 10px 30px;
}
.reason-number {
  font-weight: bold;
  font-size: 34px;
  color: var(--green);
  position: absolute;
  top: 7px;
  left: 17px;
}
.reason-number:after {
  content: '';
  width: 2px;
  height: 300px;
  background-color: var(--green);
  position: absolute;
  top: 45px;
  left: 0;
}
.calculator {
  padding-top: 240px;
}
.calculator .container {
  position: relative;
}
.calculator .form-box {
  width: 100%;
  position: absolute;
  top: -320px;
  left: 0;
  z-index: 5;
}
.calculator .form-box .title,
.calculator .form-box .title-sub {
  color: #262728;
}
.calculator-box {
  background-color: var(--yellow);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
}
.list-rooms {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px dashed #DADBDC;
}
.list-rooms li {
  padding: 0 20px;
  font-size: 12px;
}
.list-rooms li:not(:last-child) {
  margin-right: 20px;
}
.list-rooms .btn {
  pointer-events: none;
}
.add-room-btn {
  max-width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  border: 1px solid var(--green);
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  transition: 0.3s;
}
.add-room-btn:hover {
  background-color: #015430;
  color: #ffffff;
}
.count-room {
  padding-right: 5px;
}
.calculator-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.calculator-block {
  width: calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
}
.calculator-block.calculator-cost-info {
  width: 33.333%;
  padding-left: 30px;
  border-left: 1px dashed #DADBDC;
}
.calculator-block.calculator-cost-info .calculator-title {
  margin-bottom: 5px;
}
.calculator-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  margin-bottom: 14px;
}
.calculator-radio-list {
  display: flex;
  justify-content: space-between;
}
.calculator-label {
  display: block;
  cursor: pointer;
}
.calculator-label input {
  display: none;
}
.calculator-label input:checked ~ .calculator-label-box .calculator-label-photo {
  position: relative;
}
.calculator-label input:checked ~ .calculator-label-box .calculator-label-photo img {
  border: 3px solid var(--green);
}
.calculator-label input:checked ~ .calculator-label-box .calculator-label-photo:before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../img/chech-red.svg);
  position: absolute;
  top: 10px;
  right: 10px;
}
.calculator-label input:checked ~ .calculator-label-box .calculator-label-name {
  color: var(--green);
}
.calculator-label span {
  display: block;
}
.calculator-label-photo {
  margin-bottom: 10px;
}
.calculator-label-photo img {
  width: 90px;
  height: 90px;
  display: block;
  border: 3px solid #B8BFCB;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.calculator-label-name {
  font-size: 16px;
  color: #262728;
}
.calculator-count {
  height: 50px;
  padding: 0 10px;
  background-color: var(--yellow);
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calculator-count span {
  width: 30px;
  height: 30px;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #262728;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
}
.calculator-count span:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--green);
}
.count-value {
  width: 100px;
  height: 30px;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #262728;
}
.ui-widget.ui-widget-content {
  height: 15px;
  background-color: var(--yellow);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  border: 1px solid #c5c5c5;
}
.ui-slider-horizontal .ui-slider-range {
  height: 9px;
  top: 2px;
  left: 3px;
  background-color: #2C5EA7;
  border-radius: 100px;
}
.ui-widget-content .ui-state-default {
  width: 22px;
  height: 22px;
  top: -4px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #ffffff;
  outline: none;
  color: #262728;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.range-slider {
  margin-bottom: 18px;
}
.slider-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.slider-info p {
  font-size: 16px;
  color: #A8A9AA;
}
.calculator-cost-text {
  font-size: 34px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 25px;
}
.calculator-cost-text:after {
  content: '₽';
  margin-left: 5px;
  font-size: 60%;
}
.price {
  overflow: hidden;
}
.price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.price-block {
  width: calc(33.333% - 22px);
  background-color: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
.price-block.best-price .list-description {
  margin-bottom: 50px;
}
.price-guarantee {
  width: 115px;
  height: 115px;
  background-image: url(../img/price-icon.png);
  background-size: cover;
  position: absolute;
  top: -30px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: rotate(15deg);
  color: #262728;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 7px;
}
.price-guarantee.this--wh {
  background-image: url(../img/price-icon-green.png);
}
.price-guarantee.this--wh h6,
.price-guarantee.this--wh p {
  color: #ffffff;
}
.price-guarantee h6 {
  font-weight: bold;
  font-size: 16px;
}
.price-guarantee p {
  font-weight: bold;
  font-size: 9px;
}
.price-photo img {
  width: 100%;
  height: 275px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
}
.price-content {
  padding: 15px 30px 30px;
  border-radius: 0 0 10px 10px;
}
.price-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #2C5EA7;
  margin-bottom: 2px;
}
.price-title sup {
  font-size: 60%;
}
.price-text {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  margin-bottom: 17px;
}
.certificates {
  background-image: url(../img/certificate-bg.png);
  background-repeat: no-repeat;
  background-position: 12% bottom;
}
.certificates-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 400px;
}
.certificate-block {
  width: calc(20% - 22px);
  background-color: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 5px;
  margin-top: 20px;
}
.certificate-block img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.comparison-sub {
  text-align: center;
  margin-bottom: 42px;
}
.comparison-sub span {
  background-color: var(--yellow);
  padding: 5px 15px;
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  color: #2C5EA7;
}
.comparison-slider {
  position: relative;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
.comparison-slider .btn {
  width: 270px;
  position: absolute;
  left: calc(50% - 135px);
  bottom: 30px;
  z-index: 1;
}
.comparison-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comparison-block {
  width: calc(50% - 5px);
}
.comparison-photo {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.comparison-info {
  width: 80px;
  height: 40px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  position: absolute;
  bottom: 10px;
  z-index: 1;
}
.comparison-before-text {
  left: 10px;
  border-radius: 0 10px 0 0;
}
.comparison-after-text {
  right: 10px;
  border-radius: 10px 0 0 0;
}
.professionalism-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0 100px;
}
.professionalism-block {
  width: calc(50% - 15px);
  background-color: var(--yellow);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 18px 30px 23px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.professionalism-icon {
  width: 70px;
}
.professionalism-content {
  width: calc(100% - 100px);
  position: relative;
}
.professionalism-content h3 {
  font-weight: bold;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 12px;
}
.professionalism-content p {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  position: relative;
  z-index: 3;
}
.professionalism-number {
  font-weight: bold;
  font-size: 80px;
  color: #c6db12;
  position: absolute;
  bottom: -20px;
  right: -12px;
}
.reviews {
  padding-top: 180px;
}
.reviews .container {
  position: relative;
}
.reviews .form-box {
  width: 100%;
  position: absolute;
  top: -300px;
  left: 0;
  z-index: 5;
  background: var(--yellow);
}
.reviews .form-box .title::before,
.reviews .form-box .title::after {
  background: #c2dc1c;
}
.reviews .form-box .btn {
  color: #ffffff;
}
.reviews .form-box .title-sub {
  color: var(--blue);
}
.reviews .form-box .form-info-text {
  color: var(--blue);
}
.reviews .form-box .label-name {
  color: var(--black);
}
.reviews-wrap {
  max-width: 1050px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #FFFFFF;
  padding: 30px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: auto;
  position: relative;
}
.reviews-wrap:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.swiper-slide-active .reviews-wrap:after {
  display: none;
}
.reviews-content {
  width: 470px;
}
.reviews-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #262728;
}
.reviews-list {
  margin-bottom: 16px;
}
.reviews-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px dashed #DADBDC;
}
.reviews-icon {
  width: 30px;
}
.reviews-info {
  width: calc(100% - 50px);
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.reviews-cost {
  font-weight: bold;
  font-size: 34px;
  color: #2C5EA7;
}
.reviews-cost span {
  font-size: 22px;
}
.reviews-slider-box {
  width: calc(100% - 500px);
  position: relative;
}
.reviews-photo {
  width: 100%;
  height: 410px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.reviews-prev {
  left: 14.5%;
}
.reviews-next {
  right: 14.5%;
}
.faq-block {
  background-color: #ffffff;
  border-radius: 10px;
}
.faq-block.faq-active .faq-title p {
  color: #EA262B;
}
.faq-block.faq-active .toggle-faq-btn {
  border-color: #EA262B;
}
.faq-block.faq-active .toggle-faq-btn:after,
.faq-block.faq-active .toggle-faq-btn:before {
  background-color: #EA262B;
  transform: rotate(360deg);
}
.faq-block:not(:last-child) {
  margin-bottom: 10px;
}
.faq-title {
  padding: 20px 90px 20px 30px;
  position: relative;
  cursor: pointer;
}
.faq-title p {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  transition: 0.3s;
}
.toggle-faq-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #2C5EA7;
  border-radius: 50%;
  position: absolute;
  top: 17px;
  right: 30px;
  transition: 0.3s;
}
.toggle-faq-btn:after,
.toggle-faq-btn:before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #2C5EA7;
  position: absolute;
  top: 50%;
  left: 4px;
  transition: 0.4s;
}
.toggle-faq-btn:before {
  transform: rotate(90deg);
}
.faq-info {
  display: none;
}
.faq-info {
  padding: 0 30px 24px;
}
.faq-info p {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
  padding-left: 27px;
  border-left: 2px solid #EA262B;
}
.footer {
  padding: 0 0 40px;
  text-align: center;
}
.footer-logo {
  width: 100px;
}
.privacy-policy {
  font-size: 12px;
  line-height: 150%;
  color: #A8A9AA;
  margin-top: 10px;
}
.questions {
  background: #ffffff;
  overflow: hidden;
}
.questions-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 400px;
  position: relative;
}
.questions-description {
  width: calc(50% - 25px);
  position: relative;
}
.questions-description-block {
  padding-left: 34px;
  background-image: url(../img/check-yellow.svg);
  background-repeat: no-repeat;
  background-size: 23px;
  background-position: left 8px;
}
.questions-description-block h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: var(--green);
}
.questions-description-block p {
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.questions-description-block:not(:last-child) {
  margin-bottom: 16px;
}
.questions-form {
  width: calc(50% - 20px);
  padding: 20px 20px 25px;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.questions-form h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #262728;
  margin-bottom: 18px;
}
.questions-form .label-box {
  margin-bottom: 12px;
}
.questions-form .btn {
  width: 100%;
}
.agreement-text {
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #A8A9AA;
  margin-top: 23px;
}
.interesting-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interesting-block {
  width: calc(33.333% - 22px);
  border-radius: 10px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.interesting-photo img {
  width: 100%;
  height: 275px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.interesting-content {
  padding: 16px 30px 24px;
  background-color: #ffffff;
}
.interesting-content p {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  color: #262728;
}
.interesting-show-all {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.interesting-show-all .btn {
  width: 270px;
}
.guests-slider {
  position: relative;
}
.guest-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.section-map {
  padding: 80px 0;
  position: relative;
}
.map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map-info {
  width: 370px;
  max-width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
}
.map-info h3 {
  padding: 18px 30px 12px;
  font-weight: bold;
  font-size: 22px;
  color: #262728;
  border-bottom: 1px solid #DADBDC;
}
.address-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 12px 15px;
}
.address-list::-webkit-scrollbar-track {
  background-color: #F3F4F5;
}
.address-list::-webkit-scrollbar {
  width: 8px;
  background-color: #F3F4F5;
}
.address-list::-webkit-scrollbar-thumb {
  background-color: #DADBDC;
  border-radius: 5px;
}
.address-label {
  display: block;
  cursor: pointer;
  padding-right: 30px;
}
.address-label input {
  display: none;
}
.address-label input:checked ~ span {
  background-image: url(../img/radio-checked.svg);
  color: #2C5EA7;
}
.address-label span {
  display: block;
  padding-left: 26px;
  background-image: url(../img/radio.svg);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 14px;
  line-height: 150%;
  color: #262728;
  transition: 0.3s;
}
.address-label:not(:last-child) {
  margin-bottom: 14px;
}
.contact-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 44px;
}
.contact-block {
  margin: 0 40px;
  text-align: center;
}
.contact-block h6 {
  font-weight: bold;
  font-size: 12px;
  color: #2C5EA7;
  margin-bottom: 5px;
}
.contact-block a,
.contact-block p {
  color: #262728;
  font-size: 16px;
}
.contact-block a:hover {
  color: var(--green);
}
.contacts-btns {
  display: flex;
  justify-content: center;
}
.contacts-btns .btn:not(:last-child) {
  margin-right: 30px;
}
.hidden {
  display: none;
}

#policy {
  max-width: 600px;
  padding: 30px 50px 50px;
  position: relative;
  pointer-events: none;
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

@media (max-width: 767px) {
  #policy {
    margin: 15px;
    padding: 30px 15px;
  }
}

#policy h4 {
  margin-bottom: 20px;
}
.privacy_btn {
  cursor: pointer;
}
.change-date {
  white-space: nowrap;
}