@charset "UTF-8";

@import "../styles/default.css" screen;

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

html {
  background: #333841;
}

.HD2 {
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.MB-block {
  margin-bottom: 100px;
}

section {
  padding: 0 15px;
}

.Main {
  max-width: 2050px;
  width: 100%;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 100%;
}

.container {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar {
  background: #293440;
  -webkit-box-shadow: 0 4px 4px #E5D092;
  box-shadow: 0 4px 4px #E5D092;
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.top-bar__wrap {
  height: 75px;
  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;
}

.fixed {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.body-padding {
  padding-top: 75px;
}

.logo {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menutop {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

a.menutop__link {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}

a.menutop__link:hover {
  text-decoration: underline;
  color: #F1CE93;
}

.telephone {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  font-size: clamp(16px, 5vw, 24px);
  color: #E5D092;
}

.telephone a {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  font-size: clamp(16px, 5vw, 24px);
  color: #E5D092;
}

.telephone a:hover {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  font-size: clamp(16px, 5vw, 24px);
  color: #E5D092;
  text-decoration: underline;
  cursor: pointer;
}

.mob-menu {
  position: relative;
  z-index: 1;
}

/* HAMBURGER */

#hamburger {
  display: none;
  width: 30px;
  height: 22px;
  margin-top: 24px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  top: 8px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  top: -7px;
  left: 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  top: 7px;
  left: 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger.active {
  top: -51px;
  z-index: 10;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

#hamburger.active span {
  background-color: transparent;
}

#hamburger.active span:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.active span:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger:hover {
  cursor: pointer;
}

/* END  #hamburger */

.dropDownMenu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  z-index: 5;
  width: 200px;
  background: #9D9D9D;
  padding: 15px 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.dropDownMenu ul li a.mob-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F1CE93;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  height: 50px;
  color: #293440;
  font-size: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.dropDownMenu ul li a.mob-menu__link:hover {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.dropDownMenu ul li a.mob-menu__phone {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #293440;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 8px 0;
  padding: 3px 0;
}

.header {
  background: url("../images/bg-header.jpg") center top no-repeat;
  width: 100%;
  height: 706px;
  margin-bottom: 80px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  background-size: cover;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  overflow: hidden;
}

.header__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
}

.header__text-content {
  width: 51%;
}

.header__text-title {
  font-family: "Russo One", sans-serif;
  font-weight: normal;
  font-size: clamp(40px, 5vw, 75px);
  line-height: 1.2;
  color: #FFC86B;
  margin-bottom: 15px;
}

.header__text-desc {
  width: 90%;
  margin-bottom: 30px;
}

.header__text-desc span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  font-size: clamp(14px, calc(16px + 8 * ((100vw - 320px) / 960)), 20px);
  color: #fff;
  text-indent: 20px;
  display: block;
}

.header__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52%;
  flex: 0 0 52%;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
  font-size: 0;
}

.header__img img {
  width: 100%;
}

.box-bg {
  background: #293440;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.Box {
  padding: 0 15px;
  margin-bottom: 150px;
}

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

.Box__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.Box__info-wrap {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 80px 80px 80px;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  background: #293440;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.Box__info-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
}

.Box__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 43%;
  flex: 0 0 43%;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
  font-size: 0;
  margin: -100px 0 -120px;
  z-index: 2;
}

.Box__img--big {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
}

.Box__img--big img {
  width: 653px;
  height: auto;
}

.Box-title {
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.Box-title--center {
  text-align: center;
}

.Box-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
}

.BoxRight .Box__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  -webkit-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.BoxRight .Box__info {
  -webkit-transform: translate(-45%, 0px);
  -ms-transform: translate(-45%, 0px);
  transform: translate(-45%, 0px);
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.BoxRight .Box__info-wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.BoxRight .Box__info-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52%;
  flex: 0 0 52%;
}

.Block-content {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 80px 80px 80px;
  position: relative;
  background: #293440;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.pb40 {
  padding-bottom: 40px;
}

footer {
  background: #293440;
}

.Foot-top {
  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;
  position: relative;
  border-bottom: 1px solid #fff;
}

.Foot-top__info {
  width: 48%;
  padding: 40px 40px 40px 75px;
}

.Foot-top__telegram {
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.Foot-top__telegram-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
  margin-bottom: 10px;
  margin-left: 10px;
}

.Foot-top__telegram-link {
  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;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #fff;
  text-decoration: none;
}

.Foot-top__telegram-link:hover {
  -webkit-box-shadow: 1px 1px 15px #ffffff63;
  box-shadow: 1px 1px 15px #ffffff63;
}

.Foot-top__telegram-link-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 69px;
  flex: 0 0 69px;
  margin-right: 10px;
}

.Foot-top__telegram-link-text {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
  color: #fff;
  text-decoration: none;
}

a.Foot-top__telegram-link {
  color: #fff;
  text-decoration: none;
}

.Foot-bottom {
  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;
  padding: 10px 70px;
  background: #293440;
  position: relative;
  z-index: 10;
}

.Foot-bottom__tel {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}

.Foot-bottom__tel a {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}

.Foot-bottom__tel a:hover {
  text-decoration: underline;
}

.Foot-bottom__messangers a {
  margin: 0 5px;
}

.Foot-bottom__messangers a:hover {
  opacity: 0.6;
}

.video {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 15px;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

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

video {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.Reviews {
  margin-bottom: 80px;
  padding: 0 15px;
}

.Slider-reviews {
  width: 90%;
  margin: 0 auto;
}

.review-item {
  position: relative;
  padding: 0 5px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.review-item a.play {
  position: relative;
  margin-bottom: 20px;
}

.review-item a.play::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: url("../images/videopng.png") center top no-repeat;
  background-size: contain;
}

.review-item a.play:hover::before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.review-title {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}

.About,
.Faq {
  margin-bottom: 80px;
}

.About-cont_text {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.About-cont p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
}

.About-cont p:not(:last-child) {
  margin-bottom: 20px;
}

.About-cont p.text-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.About-cont p a {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
  color: #fff;
}

.About-cont_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44%;
  flex: 0 0 44%;
  margin-left: 37px;
  margin-top: -80px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.Home {
  margin: 25px auto;
}

.Home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  padding-left: 70px;
  text-decoration: none;
}

.Home a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.Home a::before {
  content: ' ';
  display: block;
  background: url("../images/icon-back.svg") center top no-repeat;
  width: 30px;
  height: 23px;
  margin-right: 10px;
}

.Faq
.accordion {
  width: 100%;
  margin: 0 auto;
}

/* секции аккордеона */

.accordion .accordion_item {
  margin-bottom: 1px;
  position: relative;
  margin-bottom: 20px;
}

/* заголовки панелей аккордеона */

.accordion .title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #293440;
  cursor: pointer;
  background: #F1CE93;
  padding: 10px 15px;
  -webkit-transition: all .2s linear 0;
  transition: all .2s linear 0;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}

/* переключатель панелей, положение вниз */

.accordion .title_block:after {
  content: '';
  height: 10px;
  width: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  display: block;
  border: 3px solid #293440;
  border-right-width: 0;
  border-top-width: 0;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 5px;
}

/* активный переключатель, положение вверх */

.accordion .active_block .title_block:after {
  border: 3px solid #293440;
  border-left-width: 0;
  border-bottom-width: 0;
  top: 18px;
}

.accordion .title_block:hover {
  background: #FFE8A4;
}

/* заголовок активного блока  */

.accordion .active_block .title_block {
  background: #FFE8A4;
}

/* блоки с содержанием */

.accordion .info {
  display: none;
  width: 98%;
  margin: -10px auto 0;
  padding: 20px 15px 10px;
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.accordion .info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  line-height: clamp(21px, 3vw, 27px);
  font-size: clamp(16px, 3vw, 20px);
  color: #F1CE93;
  color: #293440;
}

.accordion .info p:not(:last-child) {
  margin-bottom: 20px;
}

/* параграф внутри блоков с содержанием */

.accordion .info_item {
  margin-bottom: 10px;
}

/* картинки внутри аккордеона */

.accordion .info img {
  height: auto;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

/* полноразмерная картинка */

.large-img {
  width: 100%;
  margin-bottom: 10px;
}

/* миниатюра слева */

.img-left {
  width: 25%;
  float: left;
  margin: 5px 15px 5px 0;
}

/* миниатюра справа */

.img-right {
  width: 25%;
  float: right;
  margin: 5px 0 5px 15px;
}

.slider-wrap-prem {
  width: 95%;
  margin-bottom: 30px;
}

.Slider-prem {
  width: 500px;
}

.prem-item {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.prem-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  text-align: center;
}

.prem-img {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}

.prem-img img {
  height: 58px;
}

.feed-back {
  width: 500px;
  height: 80px;
  background: #EEBA64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  -webkit-box-shadow: 1px 1px 16px #E08D00;
  box-shadow: 1px 1px 16px #E08D00;
  margin-bottom: 40px;
}

.feed-back span {
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #212E39;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}

.feed-back:hover {
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 40px #E08D00;
  box-shadow: 1px 1px 40px #E08D00;
}

/*Модальное окно*/

.modal-window-parent {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: none;
  z-index: 901;
  overflow: hidden;
  overflow-y: auto;
}

.modal-window {
  min-height: 95%;
  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: 10px;
}

.modal-window-content {
  width: 1000px;
  height: 100%;
  background-color: #F1CE93;
  padding: 30px 60px;
  position: relative;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/***Иконка - закрытия модалки***/

.modal-window-close {
  position: absolute;
  top: -1px;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  color: #a5b3c2;
  z-index: 100;
}

.modal-window-close:before {
  content: "";
  display: block;
  background-image: url("../images/close.png");
  background-size: cover;
  width: 44px;
  height: 44px;
  position: relative;
}

.modal-window-close:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-feedback__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.form-feedback__title {
  font-weight: 600;
  font-size: 44px;
  line-height: 40px;
  color: #293440;
  margin-bottom: 30px;
  font-size: clamp(22px, 5vw, 44px);
  text-align: center;
  margin-top: 15px;
}

.form-feedback__right {
  text-align: right;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.form-feedback__right-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
}

.form-feedback__right-text a {
  font-style: italic;
  color: #293440;
}

.field-wrap {
  margin-bottom: 70px;
}

.field {
  width: 100%;
}

.field:not(:last-child) {
  margin-bottom: 25px;
}

.field input {
  width: 100%;
  border-radius: 13px;
  border: none;
  background: #FFF8F8;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: #293440;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) inset;
}

.field input ::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.3);
}

.field input ::-moz-placeholder {
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.3);
}

.field input :-ms-input-placeholder {
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.3);
}

.field input ::-ms-input-placeholder {
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.3);
}

.field input ::placeholder {
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.3);
}

.btn-submit {
  border-radius: 5px;
  background: #293440;
  width: 320px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover {
  -webkit-box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.Partners {
  margin-bottom: 80px;
  padding: 0 15px;
}

.Slider-partner {
  width: 90%;
  margin: 0 auto;
}

.Slider-partner .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*# sourceMappingURL=layout.css.map */

@media only screen and (max-width: 1154px) {
  .header__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
  }
}

@media only screen and (max-width: 1070px) {
  .header__img {
    -webkit-transform: translate(-100%, -72px);
    -ms-transform: translate(-100%, -72px);
    transform: translate(-100%, -72px);
  }
}

@media only screen and (max-width: 992px) {
  .menutop {
    display: none;
  }

  .telephone {
    display: none;
  }

  #hamburger {
    display: block;
  }

  .header {
    background-size: cover;
    height: auto;
    margin-bottom: 25px;
  }

  .header-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .header__text-wrap {
    padding-left: 0px;
  }

  .header__text-content {
    width: 100%;
  }

  .header__text-title {
    text-align: center;
  }

  .header__text-desc {
    text-align: center;
    width: 100%;
  }

  .header__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }

  .Box {
    margin-bottom: 25px;
  }

  .Box-wrap {
    background: #293440;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }

  .Box__info-wrap {
    padding: 0px;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .Box__info-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .Box__img {
    -webkit-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Box__img img {
    width: 50%;
    height: auto;
  }

  .Box__img--big {
    -webkit-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Box__img--big img {
    width: 70%;
    height: auto;
  }

  .Box-text {
    margin-bottom: 20px;
  }

  .BoxRight .Box__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .BoxRight .Box__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }

  .BoxRight .Box__info-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .Block-content {
    padding: 20px;
  }

  .Foot-top {
    text-align: center;
  }

  .Foot-top__info {
    width: 100%;
    padding: 20px;
  }

  .Foot-top__telegram {
    width: 100%;
    margin-bottom: 20px;
  }

  .Foot-top__telegram-title {
    margin-left: 0;
  }

  .Foot-top__telegram-link {
    width: 500px;
    margin: 0 auto;
  }

  .video {
    margin: 0 auto 25px;
  }

  .Reviews {
    margin-bottom: 25px;
  }

  .About,
  .Faq {
    margin-bottom: 25px;
  }

  .Home a {
    padding-left: 20px;
  }

  .slider-wrap-prem {
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Slider-prem {
    width: 80%;
  }

  .feed-back {
    margin: 0 auto 40px;
  }

  .modal-window-content {
    width: 100%;
    padding: 20px;
  }

  .form-feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form-feedback__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-bottom: 20px;
  }

  .form-feedback__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }

  .form-feedback__right-img {
    display: none;
  }

  .field-wrap {
    margin-bottom: 35px;
  }

  .field input {
    height: 40px;
  }

  .btn-submit {
    margin: 0 auto;
    width: 100%;
    height: 50px;
  }

  .Partners {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .Slider-reviews {
    width: 100%;
  }

  .About-cont_text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .About-cont_img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    margin: 0 auto;
    text-align: center;
  }

  .accordion .title_block {
    font-weight: 500;
    font-size: 17px;
    line-height: 18px;
  }

  .Slider-partner {
    width: 100%;
  }

  .partner-item img {
    width: 80%;
    height: auto;
  }
}

@media only screen and (max-width: 700px) {
  .Foot-bottom__tel span {
    display: block;
  }

  .Foot-bottom__tel span:not(:last-child) {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 560px) {
  .Foot-top__telegram-link {
    width: 100%;
  }

  .Foot-top__telegram-link-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .Foot-bottom {
    text-align: center;
    padding: 10px;
  }

  .Foot-bottom__tel {
    width: 100%;
    margin-bottom: 20px;
  }

  .Foot-bottom__messangers {
    width: 100%;
  }
}

@media only screen and (max-width: 540px) {
  .feed-back {
    width: 100%;
    height: 60px;
  }

  .feed-back span {
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
  }
}