* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

html, body {
  min-height: 100%;
  position: relative;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

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

body {
  font: 16px "Futura PT", sans-serif;
  color: #242424;
  background-color: #fff;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

input, textarea, select, option, button, label {
  outline: none;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol, menu {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

label, [type='submit'] {
  cursor: pointer;
}

fieldset, [type='submit'] {
  border: none;
}

.icon {
  display: inline-block;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

@font-face {
  font-family: "Futura PT";
  font-display: swap;
  src: url("../fonts/FuturaPT-Book.woff");
  src: url("../fonts/FuturaPT-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Book.woff");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Futura PT";
  font-display: swap;
  src: url("../fonts/FuturaPT-Light.woff");
  src: url("../fonts/FuturaPT-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Light.woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Futura PT";
  font-display: swap;
  src: url("../fonts/FuturaPT-Medium.woff");
  src: url("../fonts/FuturaPT-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Medium.woff");
  font-style: normal;
  font-weight: 500;
}

.menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu__item:not(:last-child) {
  margin-right: 30px;
}

.menu__link {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 767px) {
  .menu__link {
    font-size: 22px;
  }
}

.menu__link:hover {
  color: #9B4560;
}

.menu-hamburger {
  display: none;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu-hamburger {
    display: block;
  }
}

.menu-hamburger__item {
  width: 40px;
  height: 1px;
  background-color: #242424;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.menu-hamburger__item:not(:last-child) {
  margin-bottom: 10px;
}

.menu-hamburger_pos_left {
  margin-right: 15px;
}

.menu-hamburger_pos_right {
  margin-left: 15px;
}

.menu-hamburger_active .menu-hamburger__item {
  width: 25px;
}

.menu-hamburger_active .menu-hamburger__item:nth-child(1) {
  -webkit-transform: rotate(-45deg) translateY(8px);
          transform: rotate(-45deg) translateY(8px);
}

.menu-hamburger_active .menu-hamburger__item:nth-child(2) {
  -webkit-transform: rotate(45deg) translateY(-7px);
          transform: rotate(45deg) translateY(-7px);
}

.menu-overlay {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding-bottom: 60px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .menu-overlay_active {
    opacity: 1;
    pointer-events: auto;
  }
}

.header {
  padding: 8px 0;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-box-shadow: 0 3px 5px transparent;
          box-shadow: 0 3px 5px transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 767px) {
  .header {
    padding: 5px 0;
  }
}

.header_visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-box-shadow: 0 3px 5px rgba(155, 69, 96, 0.15);
          box-shadow: 0 3px 5px rgba(155, 69, 96, 0.15);
}

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

.header__left, .header__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__logo {
  width: 65px;
  height: 65px;
}

@media (max-width: 767px) {
  .header__logo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__menu_mob {
  margin: auto;
}

.header__menu_mob .menu {
  display: block;
}

.header__menu_mob .menu__item {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.header__menu_mob .menu__item:not(:last-child) {
  margin-right: auto;
  margin-bottom: 25px;
}

.logo {
  display: table;
}

.logo__img {
  width: 100px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.btn {
  display: table;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn_center {
  margin-left: auto;
  margin-right: auto;
}

.btn_theme_red {
  background-color: #9B4560;
  color: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(36, 36, 36, 0.2);
          box-shadow: 0 4px 10px rgba(36, 36, 36, 0.2);
}

.btn_theme_red:hover {
  background-color: #7E374D;
  -webkit-box-shadow: 0 8px 10px rgba(126, 55, 77, 0.2);
          box-shadow: 0 8px 10px rgba(126, 55, 77, 0.2);
}

.btn_size_s {
  min-width: 150px;
  padding: 0 5px;
  height: 30px;
  line-height: 30px;
  font-size: 10px;
}

.btn_size_m {
  min-width: 200px;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
}

.btn_size_l {
  min-width: 280px;
  padding: 0 20px;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .btn_size_l {
    min-width: 240px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn-group .btn:not(:last-child) {
  margin-right: 10px;
}

.title {
  font-weight: normal;
}

.title_size_l {
  font-size: 48px;
  line-height: 64px;
  color: #9B4560;
}

@media (max-width: 767px) {
  .title_size_l {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
  }
}

.title_size_m {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title_size_m {
    font-size: 26px;
    line-height: 35px;
  }
}

.title_size_s {
  font-size: 24px;
  line-height: 34px;
}

@media (max-width: 767px) {
  .title_size_s {
    font-size: 20px;
    line-height: 28px;
  }
}

.title_size_xs {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .title_size_xs {
    font-size: 18px;
    line-height: 27px;
  }
}

.lead {
  font-size: 28px;
  line-height: 36px;
  font-weight: 300;
  padding-bottom: 1em;
}

.text {
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 23px;
  }
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_theme_gray {
  color: rgba(36, 36, 36, 0.7);
}

.desc {
  font-size: 26px;
  line-height: 38px;
  font-weight: 300;
}

.link {
  color: #9B4560;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.link:hover {
  color: #C64C72;
}

.link:focus {
  color: rgba(155, 69, 96, 0.5);
}

.icon-vk {
  width: 30px;
  height: 30px;
  background: url("../img/vk-icon.svg") center no-repeat;
  background-size: contain;
}

.icon-inst {
  width: 30px;
  height: 30px;
  background: url("../img/inst-icon.svg") center no-repeat;
  background-size: contain;
}

.icon-fb {
  width: 30px;
  height: 30px;
  background: url("../img/fb-icon.svg") center no-repeat;
  background-size: contain;
}

.icon-phone {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url("../img/icon-phone.svg") center no-repeat;
  background-size: contain;
}

.body-fixed {
  width: 100%;
  overflow: hidden;
}

.body-fixed.mob-device {
  position: fixed;
}

.intro-section {
  background: url("../img/background-pattern.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767px) {
  .intro-section {
    background-image: url("../img/beauty-chocolate.jpg");
  }
  .intro-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 36, 36, 0.6);
  }
}

.intro-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 665px;
  height: 100vh;
}

@media (max-width: 1023px) {
  .intro-section__row {
    min-height: 100vh;
    height: auto;
    display: block;
    min-height: 1px;
  }
}

.intro-section__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.intro-section__content {
  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;
  text-align: center;
  padding: 45px 20px 55px;
}

@media (max-width: 767px) {
  .intro-section__content {
    padding: 145px 0 25px;
  }
}

.intro-section__image {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .intro-section__image {
    display: none;
  }
}

.intro-section__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: fade 10s ease 2.5s infinite;
          animation: fade 10s ease 2.5s infinite;
}

.intro-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro-section__logo {
  width: 180px;
  margin: auto auto 83px;
}

@media (max-width: 767px) {
  .intro-section__logo {
    display: none;
  }
}

.intro-section__title {
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .intro-section__title {
    color: #fff;
  }
}

.intro-section__desc {
  margin-bottom: 33px;
}

@media (max-width: 767px) {
  .intro-section__desc {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 25px;
  }
}

.intro-section__btn {
  margin-bottom: 50px;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.075);
            transform: scale(1.075);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(1.075);
            transform: scale(1.075);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.075);
            transform: scale(1.075);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(1.075);
            transform: scale(1.075);
  }
}

.scroll-more {
  display: table;
  margin: auto auto 0;
  width: 85px;
  text-align: center;
}

@media (max-width: 1023px) {
  .scroll-more {
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  .scroll-more {
    margin-top: 70px;
    color: #fff;
  }
}

.scroll-more:hover .scroll-more__icon {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.scroll-more__text {
  display: block;
  font-size: 14px;
  line-height: 27px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 4px;
}

.scroll-more__icon {
  display: table;
  width: 19px;
  height: 27px;
  margin: 0 auto;
  border: 1px solid;
  border-radius: 20px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 767px) {
  .scroll-more__icon {
    width: 10px;
    height: 16px;
    border: none;
    background: url("../img/arrow-down.svg") center no-repeat;
    background-size: contain;
  }
}

.scroll-more__icon::before {
  content: '';
  width: 1px;
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  margin: auto;
  background-color: currentColor;
}

@media (max-width: 767px) {
  .scroll-more__icon::before {
    display: none;
  }
}

.advantages {
  padding: 105px 0 125px;
}

@media (max-width: 1023px) {
  .advantages {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .advantages {
    padding: 65px 0;
  }
}

.advantages__title {
  margin-bottom: 65px;
}

@media (max-width: 767px) {
  .advantages__title {
    margin-bottom: 20px;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 100px;
}

@media (max-width: 1023px) {
  .advantages-grid {
    display: block;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 1023px) {
  .advantages-item:not(:last-child) {
    margin-bottom: 50px;
  }
}

.advantages-item:hover .advantages-item__image {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.advantages-item__image {
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 1023px) {
  .advantages-item__image {
    display: block;
  }
}

@media (max-width: 767px) {
  .advantages-item__image {
    height: auto;
    max-width: 200px;
    margin: 0 auto 5px;
  }
}

@media (max-width: 1023px) {
  .advantages-item__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.advantages-item__title {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .advantages-item__text {
    display: none;
  }
}

.about {
  padding-bottom: 150px;
}

@media (max-width: 1023px) {
  .about {
    padding-bottom: 0;
  }
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/background-pattern.jpg") center no-repeat;
  background-size: cover;
}

@media (max-width: 1023px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .about__row {
    background: none;
  }
}

.about__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/beauty-chocolate-2.jpg") center no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0 4px 30px rgba(110, 60, 76, 0.2);
          box-shadow: 0 4px 30px rgba(110, 60, 76, 0.2);
}

@media (max-width: 1023px) {
  .about__image {
    display: none;
  }
}

@media (max-width: 767px) {
  .about__image {
    display: block;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.about__image-out {
  width: 320px;
  height: 300px;
  margin: auto -50px -150px auto;
  -webkit-box-shadow: 0 4px 10px rgba(110, 60, 76, 0.2);
          box-shadow: 0 4px 10px rgba(110, 60, 76, 0.2);
}

@media (max-width: 767px) {
  .about__image-out {
    width: auto;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }
}

.about__content {
  padding: 130px 120px 125px 100px;
}

@media (max-width: 1023px) {
  .about__content {
    padding: 75px 50px;
  }
}

@media (max-width: 767px) {
  .about__content {
    padding: 0 20px 25px;
  }
}

.about__content-inner {
  max-width: 570px;
}

@media (max-width: 1023px) {
  .about__content-inner {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about__content-inner {
    max-width: none;
  }
}

.about__title {
  margin-bottom: 43px;
}

@media (max-width: 1023px) {
  .about__title {
    margin-bottom: 23px;
  }
}

@media (max-width: 767px) {
  .about__title {
    text-align: center;
  }
}

.about__text {
  margin-bottom: 1em;
}

.catalog-section {
  padding-top: 105px;
}

@media (max-width: 1023px) {
  .catalog-section {
    padding-top: 75px;
  }
}

@media (max-width: 767px) {
  .catalog-section {
    padding-top: 65px;
  }
}

.catalog-section__title {
  margin-bottom: 40px;
}

@media (max-width: 1023px) {
  .catalog-section__title {
    margin-bottom: 25px;
  }
}

.catalog-main {
  margin-bottom: 105px;
}

@media (max-width: 1023px) {
  .catalog-main {
    margin-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .catalog-main {
    margin-bottom: 65px;
  }
}

.video-section {
  padding-top: 105px;
}

.video-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/background-pattern.jpg") center no-repeat;
  background-size: cover;
}

@media (max-width: 1023px) {
  .video-section__row {
    display: block;
  }
}

.video-section__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.video-section__content {
  padding: 200px 140px 200px 120px;
  position: relative;
}

@media (max-width: 1023px) {
  .video-section__content {
    padding: 40px 20px 53px;
    text-align: center;
  }
}

.video-section__image {
  background: url("../img/beauty-chocolate-3.jpg") center no-repeat;
  background-size: cover;
}

@media (max-width: 1023px) {
  .video-section__image {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .video-section__image {
    height: 220px;
  }
}

.video-section__title {
  margin-bottom: 43px;
}

@media (max-width: 1023px) {
  .video-section__title {
    margin-bottom: 25px;
  }
}

.video-section__text {
  max-width: 290px;
}

@media (max-width: 1023px) {
  .video-section__text {
    margin-left: auto;
    margin-right: auto;
  }
}

.video-section__btn-play {
  position: absolute;
  top: calc(50% - 50px);
  right: -50px;
}

@media (max-width: 1023px) {
  .video-section__btn-play {
    right: 0;
    left: 0;
    top: calc(100% - 30px);
    margin: auto;
  }
}

.video {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.video_active {
  opacity: 1;
  pointer-events: auto;
}

.btn-play {
  display: block;
  width: 100px;
  height: 100px;
  background: #fff url("../img/icon-play.svg") 57% center no-repeat;
  background-size: 30px 38px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 1023px) {
  .btn-play {
    width: 60px;
    height: 60px;
    background-size: 18px 23px;
  }
}

.btn-play:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.btn-play_hidden {
  opacity: 0;
  pointer-events: 0;
}

.gallery {
  padding: 105px 0 100px;
}

@media (max-width: 767px) {
  .gallery {
    padding: 65px 0 0;
  }
}

.gallery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 1023px) {
  .gallery__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery__image {
  width: 570px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1023px) {
  .gallery__image {
    width: 100%;
  }
}

.gallery__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 127px 0 150px 65px;
}

@media (max-width: 1023px) {
  .gallery__content {
    padding: 0 0 25px;
  }
}

.gallery__title {
  margin-bottom: 67px;
}

@media (max-width: 1023px) {
  .gallery__title {
    margin-bottom: 25px;
  }
}

.gallery__subtitle {
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .gallery__subtitle {
    margin-bottom: 18px;
  }
}

.gallery .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: -205px;
  margin-top: -21px;
}

@media (max-width: 1023px) {
  .gallery .owl-nav {
    margin-right: 0;
    margin-top: 0;
    padding-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gallery .owl-prev, .gallery .owl-next {
  width: 40px;
  height: 21px;
  background: url("../img/arrow-left.svg") center no-repeat;
  background-size: contain;
  border: none;
}

.gallery .owl-prev {
  margin-right: 60px;
}

.gallery .owl-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gallery .owl-dots {
  display: none;
}

.reviews-section {
  padding: 105px 0;
}

@media (max-width: 1023px) {
  .reviews-section {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 65px 0;
  }
}

.reviews-section__title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .reviews-section__title {
    margin-bottom: 24px;
  }
}

.reviews-slider-item {
  padding: 0 15px;
}

.reviews-slider .owl-stage-outer {
  padding: 20px 0;
}

.reviews-slider .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5px;
}

.reviews-slider .owl-prev, .reviews-slider .owl-next {
  width: 40px;
  height: 21px;
  background: url("../img/arrow-left.svg") center no-repeat;
  background-size: contain;
  border: none;
}

.reviews-slider .owl-prev {
  margin-right: 60px;
}

.reviews-slider .owl-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.reviews-slider .owl-dots {
  display: none;
}

.card {
  background-color: #fff;
  padding: 25px 27px;
  -webkit-box-shadow: 0 6px 20px rgba(110, 60, 76, 0.2);
          box-shadow: 0 6px 20px rgba(110, 60, 76, 0.2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.card:hover .card__avatar img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.card__image {
  margin-bottom: 20px;
}

.card__title {
  font-weight: 500;
  margin-bottom: 5px;
}

.card__date {
  display: block;
  font-weight: 300;
  margin-bottom: 20px;
}

.card__text {
  margin-bottom: 15px;
}

.card__avatar img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.avatar {
  width: 103px;
  height: 103px;
  border: 3px solid rgba(243, 223, 225, 0.8);
  background-color: #D8D8D8;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.avatar_center {
  margin-left: auto;
  margin-right: auto;
}

.contacts-section {
  padding: 145px 0;
  background: url("../img/background-pattern.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .contacts-section {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .contacts-section {
    padding: 15px 0;
  }
}

.contacts-section::before {
  content: '';
  position: absolute;
  width: 1010px;
  height: 800px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url("../img/beauty-chocolate-4.jpg") center no-repeat;
  background-size: cover;
}

@media (max-width: 1023px) {
  .contacts-section::before {
    display: none;
  }
}

.contacts-section__form {
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .contacts-section__form {
    margin: 0 auto;
  }
}

.form {
  width: 100%;
  max-width: 510px;
  padding: 40px 60px;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 20px rgba(110, 60, 76, 0.2);
          box-shadow: 0 6px 20px rgba(110, 60, 76, 0.2);
  position: relative;
}

@media (max-width: 767px) {
  .form {
    padding: 25px 20px;
  }
}

.form__title {
  font-weight: 500;
  margin-bottom: 40px;
}

.form__submit {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form__field {
  display: block;
  position: relative;
  margin-bottom: 24px;
}

.form__field_active .form__placeholder {
  top: -21px;
}

.form__placeholder {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  line-height: 36px;
  pointer-events: none;
  padding: 0 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.form-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.form-overlay_active {
  opacity: 1;
  pointer-events: auto;
}

.form-overlay__inner {
  width: 100%;
  margin: auto;
}

.form-overlay__title {
  margin-bottom: 60px;
}

.input {
  width: 100%;
  height: 36px;
  border: none;
  border-bottom: 1px solid;
  background-color: transparent;
  font-size: 16px;
  color: #242424;
  padding: 0 10px;
}

.textarea {
  width: 100%;
  height: 105px;
  resize: none;
  border: none;
  border-bottom: 1px solid;
  background-color: transparent;
  font-size: 16px;
  color: #242424;
  padding: 7px 10px;
}

.social {
  display: inline-block;
  vertical-align: middle;
}

.social-item {
  display: inline-block;
  font-size: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.social-item:not(:last-child) {
  margin-right: 30px;
}

.social-item:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.ggpa {
  font-size: 13px;
  text-transform: uppercase;
}

.ggpa:hover .ggpa_orange {
  color: #ff500b;
}

.ggpa_orange {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.tabs {
  position: relative;
}

@media (max-width: 1023px) {
  .tabs::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: -20px;
    width: 155px;
    height: 36px;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
  }
}

@media (max-width: 1023px) and (max-width: 767px) {
  .tabs::before {
    display: none;
    width: 75px;
  }
}

.tabs-nav {
  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;
  margin-bottom: 63px;
  position: relative;
}

.tabs-nav::-webkit-scrollbar-track {
  width: 0 !important;
  display: none !important;
  background-color: transparent;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
  background-color: transparent;
}

.tabs-nav::-webkit-scrollbar-thumb {
  display: none;
  background-color: transparent;
}

@media (max-width: 1023px) {
  .tabs-nav {
    margin-bottom: 40px;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: scroll;
    overflow-y: hidden;
    display: block;
    white-space: nowrap;
    padding-right: 100px;
    padding-bottom: 5px;
  }
}

.tabs-nav__item {
  display: block;
  font-size: 20px;
  white-space: nowrap;
  color: rgba(36, 36, 36, 0.5);
  position: relative;
  padding: 0 22px 5px;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .tabs-nav__item {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .tabs-nav__item {
    font-size: 18px;
    padding: 0 0 5px;
  }
}

.tabs-nav__item::before {
  content: '';
  width: calc(100% - (30px + 44px));
  height: 2px;
  background-color: #9B4560;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 767px) {
  .tabs-nav__item::before {
    width: calc(100% - 30px);
  }
}

.tabs-nav__item:not(:last-child) {
  margin-right: 60px;
}

@media (max-width: 1023px) {
  .tabs-nav__item:not(:last-child) {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .tabs-nav__item:not(:last-child) {
    margin-right: 25px;
  }
}

.tabs-nav__item:first-child {
  margin-left: 20px;
}

.tabs-nav__item.active {
  font-size: 24px;
  font-weight: 500;
  color: #9B4560;
}

@media (max-width: 767px) {
  .tabs-nav__item.active {
    font-size: 18px;
  }
}

.tabs-nav__item.active::before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.tabs-content {
  width: 100%;
  max-width: 1035px;
  margin-left: auto;
  margin-right: auto;
}

.tabs-content__item {
  display: none;
}

.catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023px) {
  .catalog-item {
    display: block;
  }
}

.catalog-item__image {
  width: 100%;
  max-width: 326px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 160px;
}

@media (max-width: 1023px) {
  .catalog-item__image {
    margin: 0 auto 35px;
  }
}

@media (max-width: 767px) {
  .catalog-item__image {
    margin-bottom: 15px;
  }
}

.catalog-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.catalog-item__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 17px;
}

.catalog-item__text {
  margin-bottom: 20px;
}

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

@media (max-width: 320px) {
  .catalog-item__action {
    display: block;
  }
}

.catalog-item__price {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 85px;
}

@media (max-width: 1023px) {
  .catalog-item__price {
    margin-right: 50px;
  }
}

@media (max-width: 320px) {
  .catalog-item__price {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .catalog-item__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.catalog-item__tip {
  margin-bottom: 28px;
}

.tip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .tip {
    display: block;
  }
}

.tip-item {
  position: relative;
  z-index: 1;
}

.tip-item:not(:last-child) {
  margin-right: 40px;
}

.tip-item:nth-child(1) {
  z-index: 3;
}

.tip-item:nth-child(2) {
  z-index: 2;
}

.tip-item:nth-child(3) {
  z-index: 1;
}

.tip-item_active .tip-item__title {
  color: #242424;
}

.tip-item_active .tip-item__content {
  opacity: 1;
  pointer-events: auto;
}

.tip-item__title {
  font-weight: 500;
  color: #9B4560;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 12px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.tip-item__content {
  position: absolute;
  min-width: 245px;
  z-index: 1;
  top: 0;
  left: -10px;
  opacity: 0;
  padding: 40px 10px 7px;
  pointer-events: none;
  background-color: #F8F8F8;
  -webkit-box-shadow: 0 4px 20px #D1A6A4;
          box-shadow: 0 4px 20px #D1A6A4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.footer {
  padding: 20px 0;
  background-color: rgba(239, 218, 220, 0.4);
}

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

@media (max-width: 1023px) {
  .footer__row {
    display: block;
  }
}

.footer__right {
  margin-left: auto;
}

@media (max-width: 1023px) {
  .footer__right {
    margin-left: 0;
  }
}

.footer-nav {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .footer-nav {
    display: block;
    text-align: center;
    margin-bottom: 25px;
  }
}

.footer-nav__item {
  display: inline-block;
  font-size: 16px;
}

@media (max-width: 767px) {
  .footer-nav__item {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-nav__item:not(:last-child) {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .footer-nav__item:not(:last-child) {
    margin-right: auto;
    margin-bottom: 24px;
  }
}

.footer-nav__item a {
  padding: 15px 9px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.footer-nav__item a:hover {
  color: #9B4560;
}

@media (max-width: 1023px) {
  .footer__logo {
    margin: 0 auto 25px;
  }
}

.footer-bottom {
  padding-top: 60px;
}

@media (max-width: 1023px) {
  .footer-bottom {
    padding-top: 50px;
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .footer-bottom-nav {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-nav {
    margin-bottom: 35px;
  }
}

.footer-bottom-nav__item {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .footer-bottom-nav__item {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-bottom-nav__item:not(:last-child) {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .footer-bottom-nav__item:not(:last-child) {
    margin-right: auto;
    margin-bottom: 24px;
  }
}

.footer-bottom-nav__item a {
  text-decoration: underline;
}

.footer-bottom-nav__item a:hover {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .footer-bottom__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer__social {
  margin-left: 60px;
}

@media (max-width: 1023px) {
  .footer__social {
    display: table;
    margin: 0 auto;
  }
}
