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

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@font-face {
  font-family: "Cormorant";
  src: url("./fonts/Cormorant-Regular.woff2") format("woff2"), url("./fonts/Cormorant-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("./fonts/Cormorant-Medium.woff2") format("woff2"), url("./fonts/Cormorant-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("./fonts/Cormorant-SemiBold.woff2") format("woff2"), url("./fonts/Cormorant-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("./fonts/Cormorant-Bold.woff2") format("woff2"), url("./fonts/Cormorant-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("./fonts/Cormorant-BoldItalic.woff2") format("woff2"), url("./fonts/Cormorant-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

:root {
  --beige: #F2EFE9;
  --accent-color: #E6B559;
  --hover: #CC993C;
  --second-family: "Cormorant", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  min-width: 320px;
  color: #404040;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

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

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

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

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

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 126px;
}

.format-text-p p {
  margin: 30px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 100px 0;
}
.section-text {
  max-width: 750px;
  font-size: 20px;
  margin-top: 50px;
}
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.section-header .section-text {
  margin-top: 0;
}
.section-header .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 50px;
}

.h1 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 95px;
  line-height: 110%;
  color: #332d27;
}

.h2 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  color: #332d27;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10em;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 25px 60px;
  color: #fff;
  background-color: var(--accent-color);
  position: relative;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn:active {
  background-color: var(--hover);
}
.btn--beige {
  background-color: var(--beige);
  color: #332d27;
}
.btn--beige:active {
  color: #fff;
}
.btn--white {
  background-color: #fff;
  color: #332d27;
}
.btn--white:active {
  color: #fff;
}
.btn--mobile {
  display: none;
}

@media (hover) {
  .btn:hover {
    background-color: var(--hover);
  }
  .btn--beige:hover {
    color: #fff;
  }
  .btn--white:hover {
    color: #fff;
  }
}
.swiper-prev,
.swiper-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--beige);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.swiper-prev svg path,
.swiper-next svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.swiper-prev:focus-visible,
.swiper-next:focus-visible {
  outline: none;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-prev:active,
.swiper-next:active {
  background-color: var(--hover);
}
.swiper-prev:active svg path,
.swiper-next:active svg path {
  fill: #fff;
}

.swiper-prev svg {
  margin-right: 4px;
}

.swiper-next svg {
  margin-left: 4px;
}

@media (hover) {
  .swiper-prev:hover,
  .swiper-next:hover {
    background-color: var(--hover);
  }
  .swiper-prev:hover svg path,
  .swiper-next:hover svg path {
    fill: #fff;
  }
  .wow {
    visibility: hidden;
  }
}
.swiper-pagination {
  z-index: 3;
}
.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #f1efe9;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 100%;
  margin: 0 15px !important;
  opacity: 1;
}
.swiper-pagination-bullet:active {
  background-color: var(--hover);
}
.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (hover) {
  .swiper-pagination-bullet:hover {
    background-color: var(--hover);
  }
}
.up {
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #5C94C0;
  position: fixed;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  right: 20px;
  bottom: 20px;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
}
.up.visible {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.up:active {
  background-color: #5C94C0;
}
.up:active svg path {
  stroke: #fff;
}

@media (hover) {
  .up:hover {
    background-color: #5C94C0;
  }
  .up:hover svg path {
    stroke: #fff;
  }
}
.page-section {
  padding: 50px 0 100px;
}
.page-title {
  margin-bottom: 70px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: normal;
}
.breadcrumbs a {
  color: #332d27;
  background-color: #F2EFE9;
  border-radius: 10em;
  padding: 5px 20px;
  text-decoration: none;
  margin-right: 55px;
  position: relative;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 10px;
}
.breadcrumbs a::after {
  position: absolute;
  top: 9px;
  right: -40px;
  content: "";
  display: inline-block;
  width: 19px;
  height: 9px;
  background-image: url("./img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.breadcrumbs a:active {
  background-color: var(--accent-color);
  color: #fff;
}

.breadcrumb_last {
  color: #C5C3BC;
  display: inline-block;
  margin-bottom: 10px;
}

@media (hover) {
  .breadcrumbs a:hover {
    background-color: var(--accent-color);
    color: #fff;
  }
}
@media only screen and (max-width: 1599px) {
  .h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .main {
    margin-top: 84px;
  }
  .section-text {
    font-size: 18px;
  }
  .h1 {
    font-size: 70px;
  }
  .h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-header .btn {
    display: none;
  }
  .btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #fff;
  }
  .btn--mobile:active {
    background-color: var(--hover);
  }
}
@media only screen and (max-width: 991px) and (hover) {
  .btn--mobile:hover {
    background-color: var(--hover);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    margin: 0 10px !important;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .section {
    padding: 70px 0;
  }
  .section-text {
    font-size: 16px;
    margin-top: 30px;
  }
  .section-header {
    margin-top: 30px;
  }
  .btn--mobile {
    margin-top: 40px;
  }
  .h1 {
    font-size: 48px;
  }
  .h2 {
    font-size: 36px;
  }
  .up {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }
  .breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .breadcrumbs a {
    margin-right: 40px;
  }
  .breadcrumbs a:after {
    right: -30px;
  }
  .page-section {
    padding: 30px 0 70px;
  }
  .page-title {
    margin-bottom: 40px;
  }
}
.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  border: none;
  background-color: var(--accent-color);
  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;
  width: 50px;
  height: 50px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.social-link + .social-link {
  margin-left: 20px;
}
.social-link:active {
  background-color: var(--hover);
}

.hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.hamburger .hamburger-box {
  width: 22px;
  height: 16px;
}
.hamburger .hamburger-box .hamburger-inner,
.hamburger .hamburger-box .hamburger-inner::after,
.hamburger .hamburger-box .hamburger-inner::before {
  background-color: #fff;
  height: 2px;
  width: 100%;
  border-radius: 10em;
}
.hamburger .hamburger-box .hamburger-inner::before {
  top: 7px;
}
.hamburger .hamburger-box .hamburger-inner::after {
  top: 14px;
}
.hamburger:hover {
  background-color: var(--hover);
  opacity: 1;
}
.hamburger.is-active .hamburger-inner {
  top: 0px;
}
.hamburger.is-active .hamburger-inner:after {
  top: 20px;
}

.header {
  z-index: 20;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #E6E6E6;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  height: 126px;
}
.header.fixed {
  height: 84px;
}
.header.fixed .header-block {
  height: 84px;
}
.header.fixed .header__logo img {
  width: 54px;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 126px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 74px;
}
.header__logo img {
  width: 74px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.header__logo .logo-image--white {
  display: none;
}
.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-contact {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.3;
}
.header-contact + .header-contact {
  margin-left: 50px;
}
.header-phone {
  font-weight: 700;
  font-size: 18px;
  color: #332d27;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.header-phone:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: #332d27;
}
.header-address {
  margin-top: 9px;
  font-weight: 500;
  font-size: 12px;
  color: #332d27;
}
.header-callback {
  margin-top: 9px;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent-color);
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.header-callback:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.header__social {
  margin-left: 60px;
}
.header__hamburger {
  display: none;
}

.menu {
  margin-right: auto;
  margin-left: 110px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item + .menu__item {
  margin-left: 10px;
}
.menu__item.current_page_item .menu__link, .menu__item.current_page_parent .menu__link {
  background-color: var(--beige);
}
.menu__link {
  display: block;
  border-radius: 10em;
  padding: 15px 40px;
  background-color: transparent;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: #332d27;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: nowrap;
}
.menu__link:active {
  background-color: var(--beige);
}
.menu-phone {
  display: none;
}
.menu-header, .menu-footer {
  display: none;
}

@media (hover) {
  .social-link:hover {
    background-color: var(--hover);
  }
  .menu__link:hover {
    background-color: var(--beige);
  }
}
@media only screen and (max-width: 1599px) {
  .menu {
    margin-left: 60px;
  }
  .menu__link {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1299px) {
  .header-contact + .header-contact {
    margin-left: 40px;
  }
  .header__social {
    margin-left: 50px;
  }
  .menu {
    margin-left: 40px;
  }
  .menu__link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header {
    height: 84px;
  }
  .header.opened .menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header-block {
    height: 84px;
  }
  .header__logo {
    margin-right: auto;
    width: auto;
  }
  .header__logo img {
    width: 54px;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 20px;
  }
  .header-contact + .header-contact {
    margin-left: 50px;
  }
  .menu {
    margin: 0;
    padding: 0;
    width: 400px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    height: 100dvh;
    background-color: #fff;
    z-index: 20;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 30px;
    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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .menu__list {
    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;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
  }
  .menu__item + .menu__item {
    margin-top: 30px;
    margin-left: 0;
  }
  .menu__link {
    padding-left: 40px;
    padding-right: 40px;
  }
  .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    min-height: 84px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 30px;
  }
  .menu-footer {
    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;
    border-top: 1px solid #E6E6E6;
    padding-top: 30px;
    margin-top: 30px;
    width: 100%;
  }
  .menu-footer .header-contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu-footer .header-contact + .header-contact {
    margin-left: 0;
    margin-top: 20px;
  }
  .menu__social {
    margin-top: 30px;
  }
  .menu__logo img {
    width: 54px;
  }
  .overlay {
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: 19;
    cursor: pointer;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .overlay.visible {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 991px) {
  .header-contacts {
    display: none;
  }
  .header__logo {
    margin-left: auto;
  }
  .header__logo img {
    width: 54px;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 20px;
  }
  .menu-phone {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    margin-right: 20px;
  }
  .menu-phone.visible .menu-phone__dropdown {
    opacity: 1;
    visibility: visible;
  }
  .menu-phone__link {
    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;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: var(--accent-color);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .menu-phone__link:active {
    background-color: var(--hover);
  }
  .menu-phone__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    padding-top: 25px;
    color: #fff;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .menu-phone__dropdown:before {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--beige);
    content: "";
    z-index: -1;
  }
  .menu-phone__dropdown .header-phone {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 991px) and (hover) {
  .menu-phone__link:hover {
    background-color: var(--hover);
  }
}
@media only screen and (max-width: 575px) {
  .menu {
    width: 100vw;
  }
}
@media only screen and (min-width: 1300px) {
  .header--is-home .menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    width: 49.5%;
    margin-right: 0;
    padding-left: 95px;
  }
  .header--is-home .header-contacts {
    margin-left: 50px;
    margin-right: auto;
  }
  .header--is-home .header-contacts .header-contact + .header-contact {
    margin-left: 30px;
  }
  .header--is-home .header__social {
    margin-right: auto;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .header--is-home .menu {
    width: 45%;
    padding-left: 60px;
  }
}
.header--is-home {
  -webkit-transition: none;
  transition: none;
}
.header--is-home .header__logo {
  width: 102px;
}
.header--is-home:not(.fixed) {
  background-color: transparent;
  border-color: transparent;
  height: 118px;
  margin-top: 44px;
}
.header--is-home:not(.fixed) .menu-phone__link {
  background-color: #fff;
}
.header--is-home:not(.fixed) .menu-phone__link svg path {
  fill: #332D27;
}
.header--is-home:not(.fixed):not(.opened) .hamburger {
  background-color: #fff;
}
.header--is-home:not(.fixed):not(.opened) .hamburger .hamburger-box .hamburger-inner,
.header--is-home:not(.fixed):not(.opened) .hamburger .hamburger-box .hamburger-inner::after,
.header--is-home:not(.fixed):not(.opened) .hamburger .hamburger-box .hamburger-inner::before {
  background-color: #332D27;
}
.header--is-home:not(.fixed):not(.opened) .hamburger:hover {
  background-color: var(--beige);
}
.header--is-home:not(.fixed) .header-block {
  height: 118px;
}
.header--is-home:not(.fixed) .header__logo img {
  display: none;
}
.header--is-home:not(.fixed) .header__logo .logo-image--white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 102px;
}
.header--is-home:not(.fixed) .header-contacts .header-phone {
  color: #fff;
}
.header--is-home:not(.fixed) .header-contacts .header-phone:hover {
  text-decoration-color: #fff;
}
.header--is-home:not(.fixed) .header-contacts .header-address {
  color: #fff;
}
.header--is-home:not(.fixed) .header-contacts .header-callback {
  color: #fff;
}
.header--is-home:not(.fixed) .header-contacts .header-callback:hover {
  text-decoration-color: #fff;
}
.header--is-home:not(.fixed) .header__social .social-link {
  background-color: #fff;
}
.header--is-home:not(.fixed) .header__social .social-link svg path {
  fill: #332D27;
}
.header--is-home:not(.fixed) .header__social .social-link:active {
  background-color: var(--beige);
}

@media (hover) {
  .header--is-home:not(.fixed) .header__social .social-link:hover {
    background-color: var(--beige);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .header--is-home:not(.fixed) .menu__item.current_page_item .menu__link, .header--is-home:not(.fixed) .menu__item.current_page_parent .menu__link {
    color: #332D27;
  }
  .header--is-home:not(.fixed) .menu__link {
    color: #fff;
  }
  .header--is-home:not(.fixed) .menu__link:active {
    color: #332D27;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) and (hover) {
  .header--is-home:not(.fixed) .menu__link:hover {
    color: #332D27;
  }
}
@media only screen and (max-width: 1299px) {
  .header--is-home:not(.fixed) {
    height: 126px;
    margin-top: 0px;
  }
  .header--is-home:not(.fixed) .header-block {
    height: 126px;
  }
  .header--is-home .header__logo {
    width: 74px;
  }
}
@media only screen and (max-width: 991px) {
  .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header--is-home .header__logo {
    width: 82px;
  }
}
.page-content {
  font-size: 16px;
}
.page-content p {
  margin: 30px 0;
  line-height: 1.5;
}
.page-content p a {
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.page-content p a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.page-content p b, .page-content p strong {
  font-weight: 700;
}
.page-content p i {
  font-style: italic;
}
.page-content h1 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  color: #332d27;
}
.page-content h2 {
  margin: 0;
  margin-top: 50px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1D1D;
}
.page-content h2 + p {
  margin-top: 20px;
}
.page-content ul, .page-content ol {
  margin: 20px 0;
  padding: 0;
}
.page-content ul li, .page-content ol li {
  position: relative;
}
.page-content ul li {
  padding-left: 38px;
}
.page-content ul li + li {
  margin-top: 20px;
}
.page-content ul li::before {
  position: absolute;
  left: 0px;
  top: 10px;
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 10em;
  background-color: var(--accent-color);
}
.page-content ol {
  counter-reset: item;
}
.page-content ol li {
  padding-left: 50px;
}
.page-content ol li + li {
  margin-top: 24px;
}
.page-content ol li:before {
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  background-color: #F2EFE9;
  border-radius: 100%;
  text-align: center;
  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;
  content: counter(item);
  counter-increment: item;
}
.page-content blockquote {
  padding: 20px 0 20px 20px;
  margin: 50px 0;
  line-height: 1.4;
  font-style: italic;
  border-left: 10px solid #F1EFE9;
}
.page-content .alignleft {
  float: left;
  margin: 10px 40px 30px 0;
}
.page-content .alignright {
  float: right;
  margin: 10px 0px 30px 40px;
}
.page-content .aligncenter,
.page-content div.aligncenter {
  display: block;
  margin: 0 auto 30px;
}
.page-content .image-popup {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-content .image-popup.aligncenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1199px) {
  .page-content h1 {
    font-size: 48px;
  }
  .page-content h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .page-content .alignleft,
  .page-content .alignright,
  .page-content .aligncenter,
  .page-content .alignnone {
    width: 100%;
    float: none;
    margin: 0 0 30px;
  }
  .page-content .alignleft img,
  .page-content .alignright img,
  .page-content .aligncenter img,
  .page-content .alignnone img {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .page-content {
    font-size: 14px;
  }
  .page-content h1 {
    font-size: 36px;
  }
  .page-content h2 {
    font-size: 20px;
    margin-top: 40px;
  }
  .page-content blockquote {
    margin: 40px 0;
  }
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: #332d27;
  font-weight: 600;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: #332d27;
  font-weight: 600;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: #332d27;
  font-weight: 600;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}
.form *::-ms-input-placeholder {
  font-size: 16px;
  color: #332d27;
  font-weight: 600;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}
.form *::placeholder {
  font-size: 16px;
  color: #332d27;
  font-weight: 600;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form textarea {
  position: relative;
  font-size: 16px;
  height: 70px;
  font-weight: 600;
  text-align: left;
  background-color: transparent;
  padding: 0 30px;
  color: #332d27;
  text-align: center;
  border: none;
  border: 2px solid #CE9D42;
  width: 100%;
  border-radius: 10em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form input[type=text].intl-tel-input,
.form input[type=tel].intl-tel-input,
.form input[type=url].intl-tel-input,
.form input[type=email].intl-tel-input,
.form input[type=password].intl-tel-input,
.form input[type=number].intl-tel-input,
.form textarea.intl-tel-input {
  text-align: left;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=tel]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=tel]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=tel]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=tel]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=tel]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 70px var(--accent-color);
  -webkit-text-fill-color: #332d27;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form label {
  display: block;
}
.form label + label {
  margin-top: 30px;
}

.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10em 0 0 10em;
  color: #332d27;
}
.iti__divider {
  margin-bottom: 0;
  padding-bottom: 0;
}
.iti__arrow {
  border-top: 4px solid #332d27;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #332d27;
}
.iti__country-list {
  max-height: 240px;
  z-index: 11;
  margin-top: 10px;
  white-space: normal;
  color: #332d27;
  font-weight: 600;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
}
.iti__country-list li {
  color: #332d27;
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.wpcf7 form .wpcf7-spinner {
  display: none;
}

.form .btn {
  margin-top: 30px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 2px;
  height: 16px;
  width: 16px;
  top: calc(50% - 9px);
  left: 0px;
  border: 1px solid #fff;
  background-color: transparent;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  top: calc(50% - 9px);
  left: 4px;
  background-image: url("./img/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-acceptance {
  margin-top: 30px;
  display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

@media only screen and (max-width: 575px) {
  .form *::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form *::-moz-placeholder {
    font-size: 14px;
  }
  .form *:-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::placeholder {
    font-size: 14px;
  }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=url],
  .form input[type=email],
  .form input[type=password],
  .form input[type=number],
  .form textarea {
    font-size: 14px;
    padding: 0 20px;
    height: 60px;
  }
  .form input:-webkit-autofill,
  .form input:-webkit-autofill:hover,
  .form input:-webkit-autofill:focus,
  .form input:-webkit-autofill:active {
    -webkit-box-shadow: inset 0 0 0 60px var(--accent-color);
  }
  .form label + label {
    margin-top: 20px;
  }
  .form .btn {
    margin-top: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 14px;
  }
  .iti .iti__selected-flag {
    font-size: 14px;
  }
  .iti__country-list {
    font-size: 14px;
  }
  .wpcf7-list-item-label {
    font-size: 14px;
  }
  .wpcf7-acceptance {
    margin-top: 20px;
  }
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50.5vw;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.hero-slider.swiper-initialized {
  opacity: 1;
}
.hero-slider:after {
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 300px;
  content: "";
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(360deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 100%);
}
.hero-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 775px;
  z-index: 2;
  position: absolute;
  bottom: 100px;
  right: 0;
}
.hero-slider__swiper-fraction {
  white-space: nowrap;
  font-weight: 600;
  line-height: 140%;
  color: #fff;
}
.hero-slider__swiper-fraction strong {
  font-weight: 600;
  font-size: 40px;
}
.hero-slider__swiper-pagination {
  text-align: right;
  margin-right: 200px;
}
.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content {
  min-height: 100%;
  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;
  padding-left: 50.5%;
}
.hero-content .container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero-info {
  max-width: 750px;
  padding-left: 130px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 150px;
}
.hero-title span {
  color: var(--accent-color);
  font-style: italic;
}
.hero-text {
  margin-top: 60px;
  font-size: 20px;
  color: #332d27;
  max-width: 490px;
}
.hero__btn {
  margin-top: 60px;
}

@media only screen and (min-width: 2000px) {
  .hero .container {
    min-height: auto;
    aspect-ratio: 1.5;
  }
}
@media only screen and (max-width: 1599px) {
  .hero-slider {
    width: 55vw;
  }
  .hero-content {
    padding-left: 55vw;
  }
  .hero-info {
    padding-left: 80px;
    max-width: 580px;
  }
  .hero-slider__navigation {
    bottom: 50px;
    width: 100%;
    padding-left: 40px;
  }
  .hero-slider__swiper-pagination {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1300px) and (max-height: 899px) {
  .hero-text {
    margin-top: 50px;
  }
  .hero__btn {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1299px) {
  .hero-slider {
    width: 100%;
    aspect-ratio: 1.5;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .hero-content {
    padding-left: 0;
  }
  .hero-content .container {
    min-height: auto;
    padding: 70px 20px 0;
  }
  .hero-info {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .hero-text {
    margin-top: 40px;
    font-size: 18px;
  }
  .hero__btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-slider__navigation {
    position: relative;
    width: 920px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    top: -60px;
  }
  .hero-slider__swiper-pagination {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-slider:after {
    height: 150px;
  }
  .hero-slider__navigation {
    width: 680px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider:after {
    height: 150px;
  }
  .hero-slider__navigation {
    width: 500px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-content .container {
    padding-top: 35px;
  }
  .hero-info {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .hero-text {
    margin-top: 30px;
    font-size: 16px;
  }
  .hero__btn {
    margin-top: 30px;
    width: 100%;
  }
  .hero-slider {
    aspect-ratio: 1;
  }
  .hero-slider__navigation {
    width: 100%;
    padding: 0 20px;
  }
}
.promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 340px;
  position: relative;
  background-color: #f1efe9;
}
.promo + .promo {
  margin-top: 40px;
}
.promo-section {
  margin-top: 100px;
}
.promo__info {
  padding: 40px 50px;
  min-height: 100%;
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.promo__tag {
  border-radius: 50px;
  padding: 5px 20px;
  background-color: var(--accent-color);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
.promo__photo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.promo__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo__title {
  margin: 0;
  margin-top: auto;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #1d1d1d;
}
.promo__text {
  margin-top: 20px;
  line-height: 140%;
  color: #1d1d1d;
}
.promo__btn {
  position: absolute;
  right: 50px;
  bottom: 40px;
}
.promo__btn--mobile {
  display: none;
}
.promo-slider {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.promo-slider-wrap {
  position: relative;
}
.promo-slider.swiper-initialized {
  opacity: 1;
}
.promo-slider .promo {
  width: auto;
  margin: 0;
  height: auto;
}
.promo-slider .promo + .promo {
  margin-top: 0;
}
.promo-slider__swiper-prev, .promo-slider__swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  margin-top: -30px;
}
.promo-slider__swiper-prev {
  left: -90px;
  right: auto;
}
.promo-slider__swiper-next {
  left: auto;
  right: -90px;
}
.promo-slider__swiper-pagination {
  margin-top: 30px;
  text-align: center;
}
.promo-block .promo:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.promo-block .promo:nth-child(2n+1) .promo__btn {
  right: auto;
  left: 50px;
}

@media only screen and (max-width: 1799px) {
  .promo-slider__swiper-prev {
    left: -35px;
  }
  .promo-slider__swiper-next {
    right: -35px;
  }
}
@media only screen and (max-width: 1199px) {
  .promo__info {
    padding: 40px 40px;
  }
  .promo__title {
    font-size: 26px;
  }
  .promo__btn {
    bottom: 40px;
    right: 40px;
  }
  .promo-block .promo:nth-child(2n+1) .promo__btn {
    left: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .promo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .promo__info {
    min-height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .promo__photo {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    aspect-ratio: 2;
    width: 100%;
  }
  .promo__tag {
    top: 20px;
    left: 20px;
    position: absolute;
    margin-bottom: 0;
  }
  .promo__title {
    margin-top: 0;
  }
  .promo-block .promo:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .promo-block .promo:nth-child(2n+1) .promo__btn {
    left: auto;
    right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .promo__text {
    margin-bottom: 30px;
  }
  .promo__btn {
    display: none;
  }
  .promo__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: auto;
  }
}
@media only screen and (max-width: 575px) {
  .promo + .promo {
    margin-top: 30px;
  }
  .promo-section {
    margin-top: 65px;
  }
  .promo__photo {
    aspect-ratio: 1.5;
  }
  .promo__info {
    padding: 30px;
  }
  .promo__title {
    font-size: 20px;
  }
  .promo__btn--mobile {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .promo-slider .promo + .promo {
    margin-top: 0px;
  }
  .promo-slider__swiper-prev, .promo-slider__swiper-next {
    display: none;
  }
  .promo-slider__swiper-pagination {
    margin-top: 30px;
  }
}
.about {
  position: relative;
}
.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 750px;
  margin-right: 20px;
}
.about-info {
  max-width: 465px;
}
.about__btn {
  margin-top: 50px;
}
.about-aside {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.about-aside__text {
  font-size: 14px;
  color: #404040;
  max-width: 236px;
}
.about-aside__photo {
  width: 365px;
  margin-top: 50px;
}
.about-aside__back-photo {
  position: absolute;
  top: 370px;
  left: calc(50% + 270px);
  pointer-events: none;
  bottom: 100px;
  right: 0;
  z-index: -1;
}
.about-aside__back-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 100px -10px -80px;
}

.advantage {
  width: calc(50% - 20px);
  margin: 0 10px 80px;
  padding-right: 40px;
}
.advantage-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}
.advantage-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #332d27;
}
.advantage-text {
  font-size: 14px;
  line-height: 140%;
  color: #332d27;
  margin-top: 20px;
}

.page-section .about {
  padding-top: 0;
}

@media only screen and (max-width: 1599px) {
  .about-content {
    width: 50%;
  }
  .about-aside {
    left: calc(50% + 20px);
  }
  .about-aside__back-photo {
    left: calc(50% + 170px);
  }
  .advantage {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-content {
    width: 100%;
  }
  .about-aside {
    display: none;
  }
  .advantage {
    padding-right: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .advantage {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .about__btn {
    margin-top: 30px;
  }
  .advantages {
    -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;
    margin: 70px 0 0;
  }
  .advantage {
    padding-right: 0;
    margin: 0;
    width: auto;
    max-width: 270px;
    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;
    text-align: center;
  }
  .advantage + .advantage {
    margin-top: 50px;
  }
  .advantage-icon {
    margin-bottom: 25px;
  }
  .advantage-title {
    font-size: 18px;
  }
  .advantage-text {
    font-size: 12px;
    margin-top: 15px;
  }
}
.interiors {
  border-top: 1px solid #E6E6E6;
}
.interiors-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px -10px -20px;
}
.interiors-slider {
  margin-top: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.interiors-slider-wrap {
  position: relative;
}
.interiors-slider.swiper-initialized {
  opacity: 1;
}
.interiors-slider .interior {
  width: auto;
  margin: 0;
  height: auto;
}
.interiors-slider__swiper-prev, .interiors-slider__swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  margin-top: -32px;
}
.interiors-slider__swiper-prev {
  left: -90px;
  right: auto;
}
.interiors-slider__swiper-next {
  left: auto;
  right: -90px;
}
.interiors-slider__swiper-pagination {
  margin-top: 40px;
  text-align: center;
}

.interior {
  width: calc(50% - 20px);
  margin: 0 10px 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.interior-photo {
  aspect-ratio: 1.459;
  position: relative;
  overflow: hidden;
}
.interior-photo:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(21, 21, 21, 0.3)), color-stop(80%, rgba(21, 21, 21, 0.3)));
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.3) 20%, rgba(21, 21, 21, 0.3) 80%);
}
.interior-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.interior-info {
  background-color: var(--beige);
  padding: 40px 180px 40px 50px;
  background-image: url("./img/decor-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right -10px;
}
.interior-title {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #332d27;
}
.interior-text {
  display: block;
  margin-top: 20px;
  line-height: 140%;
  color: #332d27;
}

@media (hover) {
  .interior:hover .interior-photo img {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  .interior:hover .interior-photo:after {
    opacity: 1;
  }
}
.page-section .interiors {
  padding-bottom: 0;
}

@media only screen and (max-width: 1799px) {
  .interiors-slider__swiper-prev {
    left: -35px;
  }
  .interiors-slider__swiper-next {
    right: -35px;
  }
}
@media only screen and (max-width: 1199px) {
  .interior-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .interior {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .interiors-block {
    margin-top: 40px;
  }
  .interiors-slider {
    margin-top: 40px;
  }
  .interiors-slider__swiper-prev, .interiors-slider__swiper-next {
    display: none;
  }
  .interiors-slider__swiper-pagination {
    margin-top: 30px;
  }
  .interiors .btn {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .interior-info {
    padding: 30px 100px 30px 20px;
  }
  .interior-title {
    font-size: 20px;
  }
  .interior-text {
    margin-top: 15px;
  }
}
.callback {
  background-color: #332D27;
  color: #fff;
  padding: 20px 0;
}
.callback-block {
  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;
}
.callback__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
}
.callback-form {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}
.callback-form .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.callback-form .form *::-webkit-input-placeholder {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.callback-form .form *::-moz-placeholder {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.callback-form .form *:-ms-input-placeholder {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.callback-form .form *::-ms-input-placeholder {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.callback-form .form *::placeholder {
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.callback-form .form input[type=text],
.callback-form .form input[type=tel],
.callback-form .form input[type=url],
.callback-form .form input[type=email],
.callback-form .form input[type=password],
.callback-form .form input[type=number],
.callback-form .form textarea {
  font-size: 14px;
  color: #fff;
  text-align: left;
  border: 1px solid #726A62;
  height: 52px;
}
.callback-form .form input:-webkit-autofill,
.callback-form .form input:-webkit-autofill:hover,
.callback-form .form input:-webkit-autofill:focus,
.callback-form .form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 52px #332D27;
  -webkit-text-fill-color: #fff;
}
.callback-form .form .iti .iti__selected-flag {
  font-size: 14px;
  color: #fff;
}
.callback-form .form .iti__divider {
  margin-bottom: 0;
  padding-bottom: 0;
}
.callback-form .form .iti__arrow {
  border-top: 4px solid #fff;
}
.callback-form .form .iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fff;
}
.callback-form .form > label {
  width: 360px;
}
.callback-form .form > label + label {
  margin-left: 20px;
  margin-top: 0px;
}
.callback-form .form .btn {
  height: 52px;
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0;
  padding: 0;
  margin-top: 0;
  font-size: 14px;
  margin-left: 20px;
}
.callback-form .form .wpcf7-acceptance {
  display: none;
  margin-top: 20px;
  width: 100%;
}
.callback-form .form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
}

@media only screen and (max-width: 1299px) {
  .callback {
    padding: 70px 0;
  }
  .callback-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .callback-form {
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
  }
  .callback-form .form {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .callback-form .form > label {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .callback-form {
    margin-top: 40px;
  }
  .callback-form .form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .callback-form .form .wpcf7-acceptance {
    display: block;
  }
  .callback-form .form > label {
    width: calc(50% - 20px);
  }
  .callback-form .form .btn {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .callback-form .form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .callback-form .form > label {
    width: 100%;
  }
  .callback-form .form > label + label {
    margin-left: 0;
    margin-top: 20px;
  }
  .callback-form .form .btn {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .callback__title {
    font-size: 20px;
  }
}
.manufacturers-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px -10px -20px;
}
.manufacturers-cnt {
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.manufacturers-cnt.visible {
  display: block;
}
.manufacturers-cnt.fade-in {
  opacity: 1;
  visibility: visible;
}
.manufacturers-slider {
  margin-top: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.manufacturers-slider-wrap {
  position: relative;
}
.manufacturers-slider.swiper-initialized {
  opacity: 1;
}
.manufacturers-slider .manufacturer {
  width: auto;
  margin: 0;
  height: auto;
}
.manufacturers-slider__swiper-prev, .manufacturers-slider__swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  margin-top: -30px;
}
.manufacturers-slider__swiper-prev {
  left: -90px;
  right: auto;
}
.manufacturers-slider__swiper-next {
  left: auto;
  right: -90px;
}
.manufacturers-slider__swiper-pagination {
  margin-top: 40px;
  text-align: center;
}

.manufacturer {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #f1efe9;
  padding: 30px 40px;
  min-height: 440px;
}
.manufacturer-logo {
  margin-bottom: 40px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.manufacturer-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: #332d27;
}
.manufacturer-text {
  line-height: 140%;
  color: #332d27;
  margin-top: 20px;
}
.manufacturer-info {
  margin-top: auto;
}
.manufacturer__btn {
  width: 100%;
  margin-top: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.manufacturers-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E6E6E6;
  border-radius: 10em;
  margin-top: 65px;
  overflow: hidden;
}
.manufacturers-tabs__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--accent-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.manufacturers-tabs__toggle {
  display: none;
}
.manufacturers-tab {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 50px;
  padding-right: 10px;
  height: 90px;
  width: 25%;
}
.manufacturers-tab + .manufacturers-tab {
  border-left: 1px solid #E6E6E6;
}
.manufacturers-tab__icon {
  width: 80px;
  height: 80px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin-left: 30px;
}
.manufacturers-tab__icon img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.manufacturers-tab__icon img:nth-child(1) {
  opacity: 1;
}
.manufacturers-tab__icon img:nth-child(2) {
  opacity: 0;
}
.manufacturers-tab__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #332d27;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.manufacturers-tab.active .manufacturers-tab__title {
  color: #fff;
}
.manufacturers-tab.active .manufacturers-tab__icon img:nth-child(1) {
  opacity: 0;
}
.manufacturers-tab.active .manufacturers-tab__icon img:nth-child(2) {
  opacity: 1;
}

@media (hover) {
  .manufacturers-tab {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .manufacturers-tab:not(.active):hover {
    background-color: #F9F8F5;
  }
}
@media only screen and (max-width: 1799px) {
  .manufacturers-slider__swiper-prev, .manufacturers-slider__swiper-next {
    background-color: #fff;
  }
  .manufacturers-slider__swiper-prev {
    left: -35px;
  }
  .manufacturers-slider__swiper-next {
    right: -35px;
  }
}
@media only screen and (max-width: 1279px) {
  .manufacturer {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .manufacturers-tab {
    padding-left: 30px;
  }
  .manufacturers-tab__icon {
    margin-left: 20px;
  }
  .manufacturer-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .manufacturer {
    width: calc(50% - 20px);
  }
  .manufacturers-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    border: 0;
  }
  .manufacturers-tabs__indicator {
    display: none;
  }
  .manufacturers-tab {
    width: 100%;
    padding-left: 20px;
    padding-right: 0px;
    height: 70px;
    border-bottom: 1px solid #E6E6E6;
  }
  .manufacturers-tab + .manufacturers-tab {
    border: none;
    border-bottom: 1px solid #E6E6E6;
  }
  .manufacturers-tab__icon {
    margin-left: 20px;
    width: 60px;
    height: 60px;
  }
  .manufacturers-tab.active {
    background-color: var(--accent-color);
  }
}
@media only screen and (max-width: 767px) {
  .manufacturer {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .manufacturers-block {
    margin-top: 40px;
  }
  .manufacturers-slider {
    margin-top: 40px;
  }
  .manufacturers-slider__swiper-prev, .manufacturers-slider__swiper-next {
    display: none;
  }
  .manufacturers-slider__swiper-pagination {
    margin-top: 30px;
  }
  .manufacturers-tabs {
    margin-top: 40px;
  }
  .manufacturers-tab {
    height: 50px;
  }
  .manufacturers-tab__icon {
    width: 40px;
    height: 40px;
  }
  .manufacturers-tab__title {
    font-size: 14px;
  }
  .manufacturer {
    min-height: 400px;
  }
  .manufacturer-title {
    font-size: 20px;
  }
}
.styles {
  border-top: 1px solid #E6E6E6;
}
.styles-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px -10px -20px;
}
.styles-slider {
  margin-top: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.styles-slider-wrap {
  position: relative;
}
.styles-slider.swiper-initialized {
  opacity: 1;
}
.styles-slider .style {
  width: auto;
  margin: 0;
  height: auto;
}
.styles-slider__swiper-prev, .styles-slider__swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  margin-top: -65px;
}
.styles-slider__swiper-prev {
  left: -90px;
  right: auto;
}
.styles-slider__swiper-next {
  left: auto;
  right: -90px;
}
.styles-slider__swiper-pagination {
  margin-top: 30px;
  text-align: center;
}

.style {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.style-photo {
  aspect-ratio: 0.765;
  position: relative;
  overflow: hidden;
}
.style-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.style-photo:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(21, 21, 21, 0.3)), color-stop(80%, rgba(21, 21, 21, 0.3)));
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.3) 20%, rgba(21, 21, 21, 0.3) 80%);
}
.style-title {
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #332d27;
  word-break: break-word;
  white-space: normal;
}

@media (hover) {
  .style:hover .style-photo img {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  .style:hover .style-photo:after {
    opacity: 1;
  }
}
@media only screen and (max-width: 1799px) {
  .styles-slider__swiper-prev {
    left: -35px;
  }
  .styles-slider__swiper-next {
    right: -35px;
  }
}
@media only screen and (max-width: 1279px) {
  .style {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .style-title {
    font-size: 20px;
    height: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .style {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .styles-block {
    margin-top: 40px;
  }
  .styles-slider {
    margin-top: 40px;
  }
  .styles-slider__swiper-prev, .styles-slider__swiper-next {
    display: none;
  }
  .styles-slider__swiper-pagination {
    margin-top: 20px;
  }
  .styles .btn {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .style-title {
    font-size: 16px;
    height: 65px;
  }
}
.request {
  padding-top: 50px;
}
.request-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--accent-color);
  padding: 76px 80px;
  color: #fff;
}
.request-info {
  width: 395px;
  position: relative;
  z-index: 2;
}
.request-info .h2 {
  color: #fff;
}
.request-logo {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 745px;
  margin-left: -40px;
}
.request-form {
  width: 440px;
  position: relative;
  z-index: 2;
}
.request-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  margin-top: 50px;
}

.page-section + .request {
  margin-top: 50px;
}

@media only screen and (max-width: 1199px) {
  .request {
    padding-top: 0px;
  }
  .request-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
  .request-info {
    width: 100%;
    max-width: 500px;
  }
  .request-logo {
    width: auto;
    margin: 50px 0 0;
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .request-form {
    width: 100%;
    max-width: 500px;
    margin-top: 50px;
  }
  .request-subtitle {
    margin-top: 40px;
    font-size: 22px;
  }
  .page-section + .request {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .request-block {
    padding: 60px 60px 0;
  }
}
@media only screen and (max-width: 575px) {
  .request-block {
    padding: 50px 40px 0;
  }
  .request-subtitle {
    font-size: 18px;
    margin-top: 30px;
  }
  .request-form {
    margin-top: 40px;
  }
  .request-logo {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 399px) {
  .request-block {
    padding: 40px 30px 0;
  }
}
.footer {
  background-color: #332D27;
  color: #fff;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-info {
  width: 244px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__logo {
  width: 114px;
  margin-bottom: 30px;
}
.footer__logo img {
  width: 100%;
}
.footer-copy {
  font-size: 13px;
}
.footer-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  width: 100%;
  margin-bottom: 20px;
}
.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-menu__item + .footer-menu__item {
  margin-top: 27px;
}
.footer-menu__link {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.footer-menu__link:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 490px;
  margin-bottom: -40px;
}
.footer-contact {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.footer-phone {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.footer-phone:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: #fff;
}
.footer-phone + .footer-phone {
  margin-top: 10px;
}
.footer-address {
  font-size: 14px;
  margin-top: 10px;
}
.footer-social {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: -40px;
}
.footer-social .footer-contact {
  width: 100%;
}
.footer-email {
  font-size: 14px;
}
.footer-email a {
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.footer-email a:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: #fff;
}
.footer__social .social-link {
  width: 32px;
  height: 32px;
  background-color: #fff;
}
.footer__social .social-link svg {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.footer__social .social-link + .social-link {
  margin-left: 15px;
}
.footer__social .social-link:active {
  background-color: var(--beige);
}

@media (hover) {
  .footer__social .social-link:hover {
    background-color: var(--beige);
  }
}
@media only screen and (max-width: 1279px) {
  .footer-info {
    width: 200px;
  }
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
}
@media only screen and (max-width: 991px) {
  .footer-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
  .footer-menu {
    width: auto;
  }
  .footer-menu__item + .footer-menu__item {
    margin-top: 20px;
  }
  .footer-contacts {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    width: auto;
  }
  .footer-contacts {
    margin-top: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-social {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .footer__logo {
    width: 100px;
    margin-bottom: 20px;
  }
}
.fancybox-bg {
  background-color: #000;
}

.fancybox-is-open .fancybox-bg {
  background-color: #000;
  opacity: 0.75;
}

.mfp-bg {
  background-color: #000;
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 0;
  width: 600px;
  padding: 80px;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  display: none;
  margin: 20px auto;
  text-align: center;
  text-align: center;
}
.popup-title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #fff;
}
.popup-subtitle {
  margin: 0;
  margin-top: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}
.popup-form {
  width: 100%;
}
.popup-form .form {
  margin-top: 50px;
  text-align: left;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 50px;
  width: 50px;
  z-index: 3;
  top: 15px;
  right: 15px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  display: none;
}
.popup__close svg {
  width: 20px;
  height: 20px;
}
.popup .iti__country-list {
  width: 440px;
}
.popup-image {
  margin-bottom: 30px;
}
.popup.popup--beige {
  background-color: var(--beige);
  color: #332D27;
  padding: 60px 80px;
}
.popup.popup--beige .popup-title {
  color: #332D27;
}

@media only screen and (max-width: 767px) {
  .popup {
    width: calc(100% - 40px);
  }
  .popup__close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media only screen and (max-width: 575px) {
  .popup {
    padding: 60px 40px;
  }
  .popup-title {
    font-size: 40px;
  }
  .popup-subtitle {
    font-size: 16px;
  }
  .popup-form .form {
    margin-top: 30px;
  }
  .popup__close {
    width: 40px;
    height: 40px;
  }
  .popup__close svg {
    width: 15px;
    height: 15px;
  }
  .popup.popup--beige {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 399px) {
  .popup {
    padding: 60px 30px;
  }
  .popup.popup--beige {
    padding: 60px 30px;
  }
}
.text-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.text-page-content {
  width: 100%;
  position: relative;
  z-index: 3;
}
.text-page-gallery {
  margin-left: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 49%;
  position: relative;
}
.text-page-gallery:before {
  position: absolute;
  content: "";
  z-index: 2;
  top: -2px;
  bottom: -2px;
  right: 100%;
  width: 10000px;
  background-color: #fff;
}
.text-page-slider {
  width: 100%;
  opacity: 0;
  overflow: visible;
}
.text-page-slider.swiper-initialized {
  opacity: 1;
}
.text-page-slider__swiper-pagination {
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.text-page-slide {
  aspect-ratio: 1.119;
  height: 100%;
  position: relative;
}
.text-page-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1199px) {
  .text-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-page-content {
    padding-bottom: 50px;
  }
  .text-page-gallery {
    margin-left: 0;
    width: 100%;
    margin-top: 0px;
  }
  .text-page-gallery:before {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .text-page-content {
    padding-bottom: 30px;
  }
  .text-page-slider__swiper-pagination {
    margin-top: 30px;
  }
}
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: -40px;
}
.contacts-section {
  position: relative;
}
.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts-info {
  width: 750px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts-cta {
  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;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 100px;
  left: calc(50% + 10px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contacts-cta__btn {
  padding: 30px 70px;
}

.contact {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 44px;
  font-size: 16px;
  color: #332D27;
  margin-bottom: 40px;
  width: 50%;
  padding-right: 50px;
}
.contact__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
.contact__phone {
  font-weight: 600;
  font-size: 20px;
  color: #332d27;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.contact__phone:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: #332d27;
}
.contact__phone + .contact__phone {
  margin-top: 10px;
}
.contact__email {
  font-size: 20px;
  color: #404040;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
}
.contact__email:hover {
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: #332d27;
}
.contact__email + .contact__email {
  margin-top: 10px;
}
.contact__address {
  margin-top: 10px;
}

.contacts-vk {
  background-color: #f1efe9;
  padding: 26px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 90px;
}
.contacts-vk__icon {
  width: 88px;
  height: 88px;
  margin-right: 40px;
}
.contacts-vk__text {
  font-size: 16px;
  line-height: 140%;
  color: #332d27;
  margin-right: 40px;
}
.contacts-vk__btn {
  padding: 17px 80px;
  margin-left: auto;
  font-size: 14px;
}

@media only screen and (max-width: 1599px) {
  .contacts-info {
    width: 50%;
  }
  .contacts-cta {
    left: calc(50% + 20px);
  }
  .contacts-vk {
    padding: 26px 30px;
  }
  .contacts-vk__icon {
    margin-right: 20px;
  }
  .contacts-vk__text {
    margin-right: 20px;
  }
  .contacts-vk__btn {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .contacts-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts-info {
    width: 100%;
  }
  .contacts-vk {
    margin-top: 50px;
  }
  .contacts-vk__icon {
    margin-right: 40px;
  }
  .contacts-vk__text {
    margin-right: 40px;
  }
  .contacts-vk__btn {
    padding-left: 80px;
    padding-right: 80px;
  }
  .contacts-cta {
    left: 100%;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    aspect-ratio: 1;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts-vk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 25px 30px 35px;
  }
  .contacts-vk__icon {
    margin-right: 0px;
  }
  .contacts-vk__text {
    margin-right: 0px;
  }
  .contacts-vk__btn {
    padding-left: 60px;
    padding-right: 60px;
    margin-left: 0;
    margin-top: 20px;
  }
  .contact {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .contacts {
    margin-bottom: -30px;
  }
  .contacts-vk {
    margin-top: 40px;
  }
  .contacts-vk__text {
    font-size: 14px;
  }
  .contacts-cta {
    margin-top: 40px;
  }
  .contacts-cta__btn {
    padding: 17px 60px;
    font-size: 14px;
  }
  .contact {
    font-size: 14px;
    padding-left: 40px;
    margin-bottom: 30px;
  }
  .contact__icon {
    width: 20px;
    height: 20px;
    top: 4px;
  }
  .contact__phone, .contact__email {
    font-size: 18px;
  }
}