@charset "UTF-8";

@font-face {
  font-family: 'Gilroy-300';
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

/*Обнуление*/

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

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

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

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

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

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

body {
  font-family: "Gilroy-400", sans-serif;
  background-color: #040404;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.133;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  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;
  position: relative;
  background: url("../images/main-bg-decor.png") left bottom/47.3% auto no-repeat;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.gradient-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: "Gilroy-300", sans-serif;
  text-transform: uppercase;
}

.main-button {
  display: inline-block;
  position: relative;
  padding: 19px 35px;
  background: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  -webkit-transform: skewX(-43deg);
  -ms-transform: skewX(-43deg);
  transform: skewX(-43deg);
  font-family: "Montserrat-400", sans-serif;
  font-size: 18px;
  line-height: 1.22;
  color: #000000;
  text-transform: uppercase;
}

.main-button span {
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-transform: skewX(43deg);
  -ms-transform: skewX(43deg);
  transform: skewX(43deg);
}

.main-button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #FF8A1E;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}

.main-button:hover::after,
.main-button:focus::after {
  opacity: 1;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.float-link {
  -webkit-transform: translateX(70px);
  -ms-transform: translateX(70px);
  transform: translateX(70px);
  position: fixed;
  right: 15px;
  bottom: 125px;
  z-index: 30;
  display: block;
  width: 35px;
  height: 35px;
  background: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  -o-transition: transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
}

.float-link::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #FF8A1E;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}

.float-link::after {
  content: '';
  width: 13px;
  height: 13px;
  border-right: 1px solid #040404;
  border-bottom: 1px solid #040404;
  position: absolute;
  left: 50%;
  top: 53%;
  -webkit-transform: translate(-50%, -20%) rotate(-135deg);
  -ms-transform: translate(-50%, -20%) rotate(-135deg);
  transform: translate(-50%, -20%) rotate(-135deg);
}

.float-link.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.float-link:hover::before,
.float-link:focus::before {
  opacity: 1;
}

.swiper .pagination-wrap {
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  text-align: center;
}

.swiper .swiper-pagination {
  position: static;
  left: 0;
  bottom: 0;
  width: auto;
  border-radius: 20px;
  background-color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 6px 4px 3px 3px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #DBDBDB;
  margin: 0 2px 3px 3px;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

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

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  display: none;
}

.swiper .swiper-button-prev {
  background-image: url("../images/icons/slider-arrow-left-original.svg");
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-prev:focus {
  background-image: url("../images/icons/slider-arrow-left-hover.svg");
}

.swiper .swiper-button-next {
  background-image: url("../images/icons/slider-arrow-right-original.svg");
}

.swiper .swiper-button-next:hover,
.swiper .swiper-button-next:focus {
  background-image: url("../images/icons/slider-arrow-right-hover.svg");
}

h1 {
  font-size: 50px;
}

h2,
.big-title {
  font-size: 45px;
}

h3,
.medium-title {
  font-size: 32px;
}

h4,
.small-title {
  font-size: 26px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
}

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

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.header__logo img {
  display: block;
  width: auto;
  height: 100px;
}

.header__navigation-wrap {
  margin-left: auto;
}

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

.header__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1px;
}

.header__menu-item {
  margin-right: 30px;
}

.header__menu-link {
  display: inline-block;
  font-family: "Gilroy-300", sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: inherit;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__menu-link.active {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__menu-link:hover,
.header__menu-link:focus {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__phone {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-family: "Gilroy-700", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: inherit;
  white-space: nowrap;
}

.header__phone:hover,
.header__phone:focus {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__burger {
  display: none;
}

.header__burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-color: #000000;
}

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

.header__burger.active span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.top {
  position: relative;
}

.top__bg-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top__bg-image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  opacity: 0.8;
}

.top__bg-logo {
  display: block;
  width: 440px;
  height: auto;
  opacity: 0.1;
}

.top__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 796px;
  padding-top: 140px;
  padding-bottom: 23px;
}

.top__content {
  width: 100%;
  max-width: 550px;
  padding-right: 50px;
}

.top__title {
  font-family: "Gilroy-500", sans-serif;
  font-size: 45px;
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 63px;
}

.top__title-span1 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14px;
  margin-bottom: 5px;
  font-size: 55px;
  position: relative;
}

.top__title-span1::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 6px;
}

.top__title-span2 {
  font-size: 40px;
}

.top__consultation {
  padding: 19px 37px 19px 31px;
  margin-left: 27px;
}

.top__socials {
  position: absolute;
  right: 0;
  bottom: 30px;
  list-style: none;
}

.top__socials-item {
  margin-bottom: 10px;
}

.top__socials-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  padding: 6px;
  background-color: #ffffff;
  position: relative;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.top__socials-link img {
  display: block;
  width: auto;
  height: auto;
  max-height: 24px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top__socials-link::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}

.top__socials-link.bottom-image {
  padding-bottom: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.top__socials-link.bottom-image img {
  max-height: 28px;
}

.top__socials-link:hover img,
.top__socials-link:focus img {
  -webkit-filter: contrast(30%);
  filter: contrast(30%);
}

.top__socials-link:hover::after,
.top__socials-link:focus::after {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(4, 4, 4, 0.85);
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff url("../images/modal-order-decor.png") right top/144px auto no-repeat;
  padding: 60px 18px;
  text-align: center;
  color: #040404;
}

.modal__content.consultation-modal__content {
  width: 720px;
  height: 440px;
  background: url("../images/modal-consultation-decor1.png") left top/308px auto no-repeat, #ffffff url("../images/modal-consultation-decor2.png") right bottom/255px auto no-repeat;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal__content.consultation-modal__content .modal__close {
  width: 20px;
  height: 20px;
}

.modal__close {
  display: block;
  position: absolute;
  top: 38px;
  right: 24px;
  width: 20px;
  height: 20px;
  z-index: 51;
}

.modal__close::before,
.modal__close::after {
  content: '';
  width: 28px;
  height: 2px;
  background-color: #040404;
  border-radius: 10px;
  position: absolute;
  left: -5px;
  top: 50%;
}

.modal__close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__close.consultation-modal__close {
  top: 25px;
  right: 24px;
}

.modal__phone {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 4px;
  font-family: "Gilroy-700", sans-serif;
  font-size: 30px;
  line-height: 1.23;
  color: #040404;
}

.modal__phone::before,
.modal__phone::after {
  content: '';
  width: 35px;
  height: 35px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-47%);
  -ms-transform: translateY(-47%);
  transform: translateY(-47%);
}

.modal__phone::before {
  background-color: #040404;
}

.modal__phone::after {
  background: url("../images/icons/icon-phone-white.svg") center center/auto 24px no-repeat;
}

.modal__phone:hover,
.modal__phone:focus {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal__phone:hover::before,
.modal__phone:focus::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
}

.modal__title {
  margin-bottom: 20px;
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.modal__text {
  margin-bottom: 40px;
  font-size: 15px;
}

.modal__form {
  width: 260px;
  margin: 0 auto;
}

.contact-form__row {
  padding: 0 5px;
  margin-bottom: 10px;
}

.contact-form__input {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #040404;
  padding: 11px 10px;
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: #040404;
}

.contact-form__input::-webkit-input-placeholder {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: rgba(4, 4, 4, 0.25);
}

.contact-form__input::-moz-placeholder {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: rgba(4, 4, 4, 0.25);
}

.contact-form__input:-ms-input-placeholder {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: rgba(4, 4, 4, 0.25);
}

.contact-form__input::-ms-input-placeholder {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: rgba(4, 4, 4, 0.25);
}

.contact-form__input::placeholder {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
  line-height: 1.133;
  color: rgba(4, 4, 4, 0.25);
}

.contact-form__input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 5px #FF8A1E;
  box-shadow: 0 0 5px #FF8A1E;
}

.contact-form__error {
  margin-top: 5px;
  font-family: "Gilroy-300", sans-serif;
  font-size: 13px;
  color: red;
  text-align: left;
}

.contact-form__text {
  font-family: "Gilroy-300", sans-serif;
  text-align: left;
  margin-bottom: 40px;
  margin-top: 2px;
  padding: 0 5px;
}

.contact-form__submit {
  -webkit-transform: skewX(-31deg);
  -ms-transform: skewX(-31deg);
  transform: skewX(-31deg);
  padding: 19px 49px;
}

.contact-form__submit span {
  -webkit-transform: skewX(31deg);
  -ms-transform: skewX(31deg);
  transform: skewX(31deg);
}

.benefits__inner {
  padding: 199px 0 152px;
  position: relative;
}

.benefits__bg-decor {
  position: absolute;
  top: 117px;
  right: 41px;
  width: 86%;
}

.benefits__bg-decor img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.1;
}

.benefits__title {
  margin-bottom: 62px;
  position: relative;
}

.benefits__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-right: -15px;
  margin-left: -6px;
}

.benefits__column {
  width: 33.333%;
  padding-right: 13px;
}

.benefits__column:nth-child(1) .benefits__item:nth-child(4) {
  position: absolute;
  top: 33%;
  left: 37%;
  width: 31%;
  margin-bottom: 0;
}

.benefits__column:nth-child(2) {
  width: 28%;
}

.benefits__item {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-family: "Gilroy-300", sans-serif;
}

.benefits__item-icon {
  display: inline-block;
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.benefits__item-title {
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.services__title {
  margin-bottom: 18px;
}

.services__slider {
  margin: 0 -1.5%;
  padding: 40px 0;
}

.services__slider .swiper-slide {
  padding: 0 4.3%;
}

.services__slider .swiper-button-prev,
.services__slider .swiper-button-next {
  top: 30%;
}

.services__slider .swiper-button-prev {
  left: 18px;
}

.services__slider .swiper-button-next {
  right: 18px;
}

.services__slide {
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services__slide-image {
  position: relative;
  padding-bottom: 115.4%;
  -webkit-clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  margin-bottom: 60px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services__slide-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.services__slide-title {
  font-family: "Gilroy-300", sans-serif;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services__slide-title span {
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 2px;
}

.services__slide-price {
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  margin-bottom: 61px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services__slide-order {
  -webkit-transform: skewX(-26deg);
  -ms-transform: skewX(-26deg);
  transform: skewX(-26deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services__slide-order span {
  -webkit-transform: skewX(26deg);
  -ms-transform: skewX(26deg);
  transform: skewX(26deg);
}

.guarantee {
  padding: 122px 0 100px;
  position: relative;
}

.guarantee__bg {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-69%, 176px);
  -ms-transform: translate(-69%, 176px);
  transform: translate(-69%, 176px);
  width: 653px;
  opacity: 0.4;
}

.guarantee__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.guarantee .container {
  position: relative;
}

.guarantee__title {
  margin-bottom: 62px;
}

.guarantee__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: -30px;
}

.guarantee__column {
  width: 377px;
  padding-right: 30px;
}

.guarantee__column:nth-child(2) {
  width: 430px;
}

.guarantee__item {
  margin-bottom: 32px;
  padding-left: 30px;
  position: relative;
}

.guarantee__item::before {
  content: '';
  width: 15px;
  height: 15px;
  background-color: #FF8A1E;
  -webkit-clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.guarantee__item-title {
  margin-bottom: 15px;
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.guarantee__item-text {
  font-family: "Gilroy-300", sans-serif;
}

.gallery {
  padding-top: 48px;
}

.gallery__container {
  max-width: 1600px;
  padding: 0 50px;
  margin: 0 auto;
}

.gallery__title {
  margin-bottom: 23px;
}

.gallery__slider {
  overflow: visible;
  padding-top: 122px;
}

.gallery__slider .swiper-slide {
  padding: 0 15px;
}

.gallery__slider .pagination-wrap {
  display: none;
}

.gallery__slider .swiper-pagination {
  display: none;
}

.gallery__slider .swiper-button-prev,
.gallery__slider .swiper-button-next {
  top: 0;
  left: auto;
  margin-top: 0;
}

.gallery__slider .swiper-button-prev {
  right: 226px;
}

.gallery__slider .swiper-button-next {
  right: 150px;
}

.gallery__slide {
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__slide:hover,
.gallery__slide:focus {
  -webkit-transform: scale(1.17);
  -ms-transform: scale(1.17);
  transform: scale(1.17);
  z-index: 1;
}

.gallery__slide:hover .gallery__item-info,
.gallery__slide:focus .gallery__item-info {
  opacity: 1;
  padding: 18px 20px 23px;
}

.gallery__slide:hover .gallery__item-image img,
.gallery__slide:focus .gallery__item-image img {
  -webkit-transform: scale(0.83);
  -ms-transform: scale(0.83);
  transform: scale(0.83);
}

.gallery__slide:hover .gallery__item-title,
.gallery__slide:focus .gallery__item-title {
  -webkit-transform: scale(0.83);
  -ms-transform: scale(0.83);
  transform: scale(0.83);
  margin-bottom: 8px;
}

.gallery__slide:hover .gallery__item-text,
.gallery__slide:focus .gallery__item-text {
  -webkit-transform: scale(0.83);
  -ms-transform: scale(0.83);
  transform: scale(0.83);
  margin-bottom: -6px;
}

.gallery__slide-image {
  position: relative;
  padding-bottom: 72%;
}

.gallery__slide-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__item-info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background-color: rgba(4, 4, 4, 0.9);
  padding: 22px 25px 21px;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.gallery__item-title {
  max-width: 490px;
  margin: 0 auto 15px;
  font-family: "Gilroy-500", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__item-text {
  max-width: 490px;
  margin: 0 auto;
  font-family: "Gilroy-500", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.premium {
  position: relative;
  padding: 179px 0 80px;
}

.premium__bg {
  position: absolute;
  right: 8%;
  top: 76px;
  width: 955px;
  opacity: 0.4;
}

.premium__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.premium .container {
  position: relative;
}

.premium__title {
  margin: 0 auto 65px;
}

.premium__slider .pagination-wrap {
  display: none;
}

.premium__slider .swiper-pagination {
  display: none;
}

.premium__slider .swiper-button-prev,
.premium__slider .swiper-button-next {
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  width: 118px;
  height: 118px;
}

.premium__slider .swiper-button-prev {
  left: 0;
}

.premium__slider .swiper-button-next {
  left: auto;
  right: 0;
}

.premium__slide {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.premium__slide-info {
  position: relative;
  padding-bottom: 75%;
}

.premium__slide-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.premium__slide-video video {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.premium__preview-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.premium__preview-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.premium__preview-play {
  position: absolute;
  left: 51.9%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 124px;
  height: 124px;
  background: url("../images/icons/icon-play-original.png") center center/contain no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.premium__preview-play:hover,
.premium__preview-play:focus {
  background-image: url("../images/icons/icon-play-hover.png");
}

.premium__slide-title {
  padding: 30px 10px 10px;
  font-family: "Gilroy-300", sans-serif;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.salons {
  padding: 90px 0 183px;
}

.salons__title {
  margin-bottom: 65px;
}

.salons__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.salons__item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 60px;
  text-align: center;
  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;
}

.salons__item-image {
  width: 100%;
  height: 260px;
  margin-bottom: 57px;
}

.salons__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.salons__item-address {
  font-family: "Gilroy-700", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.salons__item-address span {
  display: block;
}

.salons__item-worktime {
  margin-bottom: 20px;
  font-family: "Gilroy-300", sans-serif;
  font-size: 20px;
}

.salons__item-dayoff {
  margin-bottom: 20px;
  font-family: "Gilroy-300", sans-serif;
  font-size: 20px;
}

.salons__item-phone {
  display: inline-block;
  margin-bottom: 60px;
  font-family: "Gilroy-700", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.salons__item-phone:hover,
.salons__item-phone:focus {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.salons__item-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 0;
  padding: 19px 50px;
  -webkit-transform: skewX(-26deg);
  -ms-transform: skewX(-26deg);
  transform: skewX(-26deg);
}

.salons__item-button span {
  -webkit-transform: skewX(26deg);
  -ms-transform: skewX(26deg);
  transform: skewX(26deg);
}

.salons__map-wrap {
  position: relative;
  padding-bottom: 71.4%;
}

.salons__map-image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer {
  padding: 30px 0 31px;
}

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

.footer__logo {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  height: auto;
  margin-right: 30px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__navigation {
  margin-right: 104px;
  margin-bottom: -15px;
  width: 600px;
}

.footer__menu {
  width: 100%;
  list-style: none;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.footer__menu-item {
  margin-bottom: 15px;
}

.footer__menu-link {
  display: inline-block;
  font-family: "Gilroy-300", sans-serif;
  font-size: 20px;
  line-height: 1.18;
  color: #ffffff;
}

.footer__menu-link.active {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__menu-link:hover,
.footer__menu-link:focus {
  background-color: #FF8A1E;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #FFF9D8));
  background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-image: linear-gradient(90deg, #FF8A1E 31.63%, #FFF9D8 111.7%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 190px;
  margin-left: 30px;
  margin-top: -10px;
  text-align: right;
}

.footer__phone {
  margin-bottom: 15px;
}

.footer__copyright {
  font-family: "Gilroy-300", sans-serif;
  font-size: 15px;
}

@media (min-width: 992px) {
  .services__slide:hover,
  .services__slide:focus {
    padding-top: 22px;
    -webkit-transform: scaleY(1.2) scaleX(1.18);
    -ms-transform: scaleY(1.2) scaleX(1.18);
    transform: scaleY(1.2) scaleX(1.18);
  }

  .services__slide:hover .services__slide-image,
  .services__slide:focus .services__slide-image {
    margin-bottom: 44px;
  }

  .services__slide:hover .services__slide-title,
  .services__slide:focus .services__slide-title {
    -webkit-transform: scaleY(0.8) scaleX(0.85);
    -ms-transform: scaleY(0.8) scaleX(0.85);
    transform: scaleY(0.8) scaleX(0.85);
    margin-bottom: 16px;
  }

  .services__slide:hover .services__slide-price,
  .services__slide:focus .services__slide-price {
    -webkit-transform: scaleY(0.8) scaleX(0.85);
    -ms-transform: scaleY(0.8) scaleX(0.85);
    transform: scaleY(0.8) scaleX(0.85);
    margin-bottom: 42px;
  }

  .services__slide:hover .services__slide-order,
  .services__slide:focus .services__slide-order {
    -webkit-transform: scaleY(0.8) scaleX(0.85) skewX(-26deg);
    -ms-transform: scaleY(0.8) scaleX(0.85) skewX(-26deg);
    transform: scaleY(0.8) scaleX(0.85) skewX(-26deg);
  }
}

@media (min-width: 993px) {
  .header__navigation-wrap {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 1400px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .big-title {
    font-size: 40px;
  }
}

@media (max-width: 1300px) {
  .gallery__slider .swiper-button-prev {
    right: 80px;
  }

  .gallery__slider .swiper-button-next {
    right: 0px;
  }
}

@media (max-width: 1200px) {
  .header__logo img {
    height: 85px;
  }

  .header__menu-item {
    margin-right: 20px;
  }

  .header__phone {
    font-size: 16px;
  }

  .top__inner {
    padding-top: 105px;
  }
}

@media (max-width: 1100px) {
  .header__logo img {
    height: 70px;
  }

  .header__menu-item {
    margin-right: 13px;
  }

  .header__menu-link {
    font-size: 13px;
  }

  .header__phone {
    font-size: 16px;
  }

  .top__inner {
    padding-top: 90px;
  }

  .services__slider {
    margin: 0;
  }

  .services__slider .swiper-slide {
    padding: 0 20px;
  }

  .services__slider .swiper-button-prev {
    left: 0;
  }

  .services__slider .swiper-button-next {
    right: 0;
  }

  .gallery__item-title {
    max-width: 100%;
    width: 100%;
  }

  .gallery__item-text {
    max-width: 100%;
    width: 100%;
  }

  .premium {
    padding-top: 130px;
  }

  .premium__bg {
    width: 800px;
    right: -100px;
    top: 130px;
  }

  .premium__slider .swiper-slide {
    padding: 0 70px;
  }

  .premium__slider .swiper-button-prev,
  .premium__slider .swiper-button-next {
    width: 60px;
    height: 60px;
  }

  .footer__navigation {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .wrapper {
    background-size: 65% auto;
  }

  .main-button {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .big-title {
    font-size: 36px;
  }

  h3,
  .medium-title {
    font-size: 26px;
  }

  h4,
  .small-title {
    font-size: 22px;
  }

  .header__navigation-wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 4, 4, 0.85);
  }

  .header__navigation-wrap.open .header__navigation {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__navigation {
    display: block;
    max-height: 100%;
    overflow-y: auto;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    background: #ffffff url("../images/header-mobile-decor.png") right -6px top/115px 255px no-repeat;
    padding: 30px 50px 30px 40px;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

  .header__menu {
    display: block;
  }

  .header__menu-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }

  .header__menu-link {
    font-size: 14px;
    color: #040404;
    white-space: normal;
  }

  .header__menu-link.active {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #f7c698));
    background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #f7c698 111.7%);
    background-image: linear-gradient(90deg, #FF8A1E 31.63%, #f7c698 111.7%);
  }

  .header__menu-link:hover,
  .header__menu-link:focus {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(31.63%, #FF8A1E), color-stop(111.7%, #f7c698));
    background-image: -o-linear-gradient(left, #FF8A1E 31.63%, #f7c698 111.7%);
    background-image: linear-gradient(90deg, #FF8A1E 31.63%, #f7c698 111.7%);
  }

  .header__actions {
    margin-left: auto;
  }

  .header__phone {
    font-size: 20px;
  }

  .header__burger {
    display: block;
    width: 29px;
    height: 30px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 10;
    margin-left: 30px;
    margin-bottom: 2px;
  }

  .header__burger span {
    display: block;
    width: 29px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .header__burger span:first-child {
    top: 7px;
  }

  .header__burger span:last-child {
    top: auto;
    bottom: 7px;
  }

  .top__bg-image {
    opacity: 0.7;
  }

  .top__bg-logo {
    width: 260px;
  }

  .top__inner {
    height: 100vh;
    min-height: 450px;
  }

  .top__title {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .top__title-span1 {
    font-size: 44px;
  }

  .top__title-span2 {
    font-size: 36px;
  }

  .modal__content.consultation-modal__content {
    width: 600px;
    height: 350px;
    background-size: 250px auto, 200px auto;
  }

  .modal__phone {
    font-size: 24px;
  }

  .benefits__inner {
    padding: 103px 0 80px;
  }

  .benefits__bg-decor {
    top: 70px;
    right: 0;
    width: 80%;
  }

  .benefits__title {
    margin-bottom: 38px;
  }

  .benefits__block {
    margin-left: -4px;
    margin-right: -30px;
  }

  .benefits__column:nth-child(1) .benefits__item:nth-child(4) {
    position: static;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
  }

  .benefits__column {
    width: 50% !important;
    padding-right: 30px;
  }

  .benefits__item-icon {
    width: 80px;
  }

  .services__title {
    margin-bottom: -4px;
  }

  .services__slider .swiper-slide {
    padding: 0 10px;
  }

  .services__slider .swiper-button-prev,
  .services__slider .swiper-button-next {
    top: 33%;
  }

  .services__slide-image {
    margin-bottom: 30px;
  }

  .services__slide-title {
    margin-bottom: 15px;
  }

  .services__slide-price {
    margin-bottom: 30px;
  }

  .guarantee {
    padding: 45px 0 30px;
  }

  .guarantee__bg {
    -webkit-transform: translate(-40%, 40px);
    -ms-transform: translate(-40%, 40px);
    transform: translate(-40%, 40px);
  }

  .guarantee__title {
    margin-bottom: 40px;
  }

  .gallery {
    padding-top: 41px;
  }

  .gallery__slider {
    padding-top: 70px;
  }

  .gallery__slider .swiper-button-prev,
  .gallery__slider .swiper-button-next {
    width: 50px;
    height: 50px;
  }

  .premium {
    padding-top: 98px;
  }

  .premium__bg {
    width: 650px;
  }

  .premium__title {
    margin-bottom: 44px;
  }

  .salons {
    padding: 50px 0 70px;
  }

  .salons__title {
    margin-bottom: 44px;
  }

  .salons__block {
    margin: 0 -5px;
  }

  .salons__item {
    padding: 0 5px;
  }

  .salons__item-image {
    margin-bottom: 31px;
    height: 220px;
  }

  .salons__item-address {
    margin-bottom: 17px;
  }

  .salons__item-worktime {
    margin-bottom: 17px;
  }

  .salons__item-dayoff {
    margin-bottom: 12px;
  }

  .salons__item-phone {
    margin-bottom: 30px;
  }

  .footer__logo {
    width: 80px;
  }

  .footer__navigation {
    width: 450px;
  }

  .footer__menu {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .footer__menu-link {
    font-size: 18px;
  }

  .footer__phone {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .header__navigation {
    max-width: 300px;
  }

  .benefits__inner {
    padding-bottom: 30px;
  }

  .benefits__bg-decor {
    width: auto;
    height: 80%;
    margin-right: -15px;
  }

  .benefits__bg-decor img {
    width: auto;
    height: 100%;
  }

  .benefits__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
  }

  .benefits__column {
    width: 100% !important;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .services {
    padding-top: 24px;
  }

  .services__slider .swiper-button-prev,
  .services__slider .swiper-button-next {
    top: 35%;
  }

  .guarantee__bg {
    left: auto;
    right: 0;
    -webkit-transform: translate(200px, 205px) rotate(90deg);
    -ms-transform: translate(200px, 205px) rotate(90deg);
    transform: translate(200px, 205px) rotate(90deg);
  }

  .guarantee__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .guarantee__column {
    width: 100% !important;
    max-width: 500px;
  }

  .gallery__slider .swiper-slide {
    padding: 0 5px;
  }

  .gallery__slide:hover,
  .gallery__slide:focus {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .gallery__slide:hover .gallery__item-info,
  .gallery__slide:focus .gallery__item-info {
    padding: 15px;
    z-index: 10;
  }

  .gallery__slide:hover .gallery__item-image img,
  .gallery__slide:focus .gallery__item-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .gallery__slide:hover .gallery__item-title,
  .gallery__slide:focus .gallery__item-title {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-bottom: 20px;
  }

  .gallery__slide:hover .gallery__item-text,
  .gallery__slide:focus .gallery__item-text {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-bottom: 0;
  }

  .gallery__slide-image {
    padding-bottom: 0;
    height: 300px;
  }

  .gallery__item-info {
    width: 100%;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .gallery__item-title {
    font-size: 16px;
  }

  .gallery__item-text {
    font-family: "Gilroy-300", sans-serif;
  }

  .premium__preview-play {
    width: 100px;
    height: 100px;
  }

  .premium__slide-title {
    font-size: 18px;
  }

  .salons__item {
    width: 50%;
  }

  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

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

  .footer__menu {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  .footer__menu-link {
    font-size: 16px;
  }

  .footer__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .wrapper {
    background-size: 128% auto;
    background-position: left bottom;
  }

  .float-link {
    width: 25px;
    height: 25px;
  }

  .float-link::after {
    width: 12px;
    height: 12px;
  }

  h1 {
    font-size: 30px;
  }

  h2,
  .big-title {
    font-size: 30px;
  }

  h3,
  .medium-title {
    font-size: 22px;
  }

  h4,
  .small-title {
    font-size: 18px;
  }

  .header__logo img {
    height: 60px;
  }

  .header__navigation {
    max-width: 214px;
    padding: 30px 45px 30px 15px;
    background-size: auto auto;
    background-position: right -2px top;
  }

  .header__phone {
    color: #040404;
    margin-top: 3px;
  }

  .top__inner {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .top__content {
    padding-right: 0;
  }

  .top__title {
    font-size: 30px;
    text-align: center;
  }

  .top__title-span1 {
    font-size: 35px;
  }

  .top__title-span1 {
    margin: 15px auto 10px;
  }

  .top__title-span2 {
    font-size: 30px;
  }

  .top__consultation {
    display: block;
    max-width: 100%;
    text-align: center;
    -webkit-transform: skewX(-39deg);
    -ms-transform: skewX(-39deg);
    transform: skewX(-39deg);
    padding: 20px 24px;
    margin: 0 auto;
  }

  .top__consultation span {
    -webkit-transform: skewX(39deg);
    -ms-transform: skewX(39deg);
    transform: skewX(39deg);
  }

  .top__socials {
    bottom: 10px;
  }

  .modal__content {
    padding: 24px 15px 41px;
    width: 360px;
  }

  .modal__content.consultation-modal__content {
    width: 400px;
    height: 200px;
    background-size: 143px auto, 130px auto;
    padding: 25px;
  }

  .modal__close {
    top: 21px;
    right: 20px;
  }

  .modal__close.consultation-modal__close {
    width: 17px;
    height: 17px;
    top: 32px;
    right: 21px;
  }

  .modal__close.consultation-modal__close::before,
  .modal__close.consultation-modal__close::after {
    width: 23px;
    background-color: #ffffff;
  }

  .modal__phone {
    font-size: 18px;
    padding-left: 45px;
  }

  .modal__phone::before,
  .modal__phone::after {
    width: 30px;
    height: 30px;
  }

  .modal__title {
    max-width: 190px;
    margin: 0 auto 23px;
  }

  .modal__text {
    max-width: 215px;
    margin: 0 auto 30px;
  }

  .contact-form__text {
    margin-bottom: 33px;
  }

  .guarantee__bg {
    -webkit-transform: translate(267px, 205px) rotate(90deg);
    -ms-transform: translate(267px, 205px) rotate(90deg);
    transform: translate(267px, 205px) rotate(90deg);
  }

  .guarantee__item {
    margin-bottom: 31px;
  }

  .guarantee__item::before {
    top: 53%;
  }

  .guarantee__item-title {
    font-size: 16px;
    margin-bottom: 11px;
  }

  .premium__bg {
    width: 400px;
    top: auto;
    bottom: -54px;
    right: -150px;
  }

  .premium__slider .swiper-slide {
    padding: 0;
  }

  .premium__slider .pagination-wrap {
    display: block;
    bottom: auto;
    top: calc((100vw - 30px) - 30px);
  }

  .premium__slider .swiper-pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .premium__slider .swiper-button-prev,
  .premium__slider .swiper-button-next {
    display: none;
  }

  .premium__slide-info {
    padding-bottom: 100%;
  }

  .premium__preview-image {
    -o-object-position: center center;
    object-position: center center;
  }

  .premium__preview-play {
    width: 47px;
    height: 47px;
  }

  .premium__slide-title {
    font-size: 16px;
    padding-top: 20px;
  }

  .salons {
    padding-top: 8px;
  }

  .salons__title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .salons__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .salons__item {
    width: 100%;
    max-width: 400px;
  }

  .salons__item-image {
    height: 260px;
  }

  .salons__item-address {
    font-size: 16px;
  }

  .salons__item-address span {
    margin-top: 5px;
  }

  .salons__item-worktime {
    font-size: 16px;
  }

  .salons__item-dayoff {
    font-size: 16px;
  }

  .salons__item-phone {
    font-size: 16px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .footer__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__logo {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: 60px;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .footer__navigation {
    margin-bottom: 13px;
  }

  .footer__menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .footer__menu-item {
    text-align: center;
  }

  .footer__menu-link.active {
    font-size: 20px;
  }

  .footer__info {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .footer__phone {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services__slider .swiper-slide {
    padding: 0 20px;
  }

  .services__slider .swiper-button-prev,
  .services__slider .swiper-button-next {
    top: 33%;
  }

  .services__slide-order {
    width: 95%;
    max-width: 320px;
    -webkit-transform: skewX(-38deg);
    -ms-transform: skewX(-38deg);
    transform: skewX(-38deg);
    padding: 19px 20px;
    text-align: center;
  }

  .services__slide-order span {
    -webkit-transform: skewX(38deg);
    -ms-transform: skewX(38deg);
    transform: skewX(38deg);
  }

  .gallery__container {
    padding: 0 10px;
  }

  .gallery__slider {
    padding-top: 22px;
    overflow: hidden;
  }

  .gallery__slider .pagination-wrap {
    display: block;
  }

  .gallery__slider .swiper-pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .gallery__slider .swiper-button-prev,
  .gallery__slider .swiper-button-next {
    display: none;
  }

  .gallery__slide-image {
    height: 345px;
  }

  .salons__item-button {
    width: 87%;
    max-width: 320px;
    -webkit-transform: skewX(-38deg);
    -ms-transform: skewX(-38deg);
    transform: skewX(-38deg);
    padding: 20px;
    text-align: center;
  }

  .salons__item-button span {
    -webkit-transform: skewX(38deg);
    -ms-transform: skewX(38deg);
    transform: skewX(38deg);
  }
}

@media (max-width: 400px) {
  .wrapper {
    background-size: 168% auto;
    background-position: left -54px bottom 42px;
  }

  .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .benefits__bg-decor {
    height: 580px;
    top: 227px;
    margin-right: -15px;
  }

  .benefits__bg-decor img {
    opacity: 0.13;
  }

  .benefits__item-icon {
    width: 60px;
    margin-right: 13px;
  }

  .benefits__item-title {
    font-size: 16px;
    margin-bottom: 7px;
  }
}

@media (max-width: 370px) {
  .top__consultation {
    margin: 0 30px;
  }
}

@media (max-width: 350px) {
  h1 {
    font-size: 26px;
  }

  h2,
  .big-title {
    font-size: 26px;
  }

  h3,
  .medium-title {
    font-size: 18px;
  }

  h4,
  .small-title {
    font-size: 16px;
  }
}