@charset "UTF-8";

/*Обнуление*/
:root {
  --font-family: "Tilda Sans", sans-serif;
  --second-family: "Tenor Sans", sans-serif;
  --third-family: "SFT Schrifted Serif TRIAL D", sans-serif;
}
:root {
  --c-light: #e4dfd6;
  --c-dark-65: #c7b79c;
  --c-dark: #a99166;
  --c-pink: #d780a4;
  --c-darkest: #685d38;
  --c-green: #748500;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: var(--font-family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: 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;
  padding: 15px 30px;
  background-color: #00e70000;
  border: 2px solid #E7A300;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #E7A300;
  font-weight: 600;
}

.button:hover {
  background-color: #E7A300;
  box-shadow: 0 0 40px 40px #E7A300 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  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: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  padding-bottom: 33px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 55px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: var(--c-dark);
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 33px 0px 67px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1194px;
  padding: 0px 67px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 18px 0px 0px;
  position: absolute;
  width: 100%;

}


.header__body {
  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;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  width: 100%;
}

.header__link {
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--c-light);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.header__link svg{
  transition: all .5s;
}
.header__link:hover svg{
  transform: translate(5px, 0px);
}
.header__phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-light);
  position: relative;
}
.header__phone:before{
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background:var(--c-light);
  left: 0;
  bottom: -3px;
  transition: all 0.5s ease-in-out;
}
.header__phone:hover:before{
  width: 100%;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 34px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  background-color: #e4dfd6;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 100%;
}

.header__menu-button span {
  top: 50%;
  width: 100%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 0px 36px;
  max-width: 1440px;
}

.menu._active {
  left: 0;
}

.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;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: #e4dfd6d6;
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-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;
  padding: 40px 16px;
}

.popup__content {
  border-radius: 45px;
  padding: 15px;
  width: 500px;
  max-width: 500px;
  background: var(--c-darkest);
  position: relative;
}

.close-popup {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 32px;
  right: 32px;
  cursor: pointer;
}
.keepers-item__row {
  border: 1px solid var(--c-light);
  border-radius: 30px;
  width: 470px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-top: 33px;
}
.keepers-item__img {
  max-width: 250px;
  border-radius: 5px;
}
.keepers-item__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.keepers-item__name {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--c-light);
}
.keepers-item__stag {
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--c-light);
}
.keepers-item__tests p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--c-light);
}
.keepers-item__tests {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.keepers-item__price {
  border: 1px solid var(--c-light);
  border-radius: 100px;
  padding: 5px 10px;
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: var(--c-light);
}
.keepers-item__btns {
  border-top: 1px solid var(--c-light);
  padding: 24px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--c-light);
}
.keepers-item__btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--c-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
}
.keepers-item__all{
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.keepers-item__btn svg, .keepers-item__btns, .keepers-item__btn {
  transition: all .5s;
}
.keepers-item__btns:hover {
  background: var(--c-dark);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 29px;
}
.keepers-item__btns:hover .keepers-item__btn{
  color: var(--c-light);
}
.keepers-item__btns:hover  svg:first-child {
  transform: translate(10px, 0px);
}
.keepers-item__btns:hover  svg:last-child {
  transform: translate(-10px, 0px);
}
@media (max-width: 1200px) {


  .header__menu-button{
    display: block;
  }
    .subtitle {
        font-size: 44px;
    }

}

@media (max-width: 767px) {
  .header {
    padding: 24px 0px;
  }

  .header__container {
    padding: 0px 24px;
  }

  .header__items {
    gap: 16px;
  }

  .header__content {
    gap: 16px;
  }
  .popup__content {
    width: 100%;
    max-width: 500px;
  }
  .keepers-item__row {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 28px;
      padding-bottom: 24px;
    }
  .section {
    padding: 24px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -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: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 77px;
}
.header__menu a:hover {
  color: #E7A300;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 25px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__logo img {
  width: 200px;
}
.header__menu a {
  font-size: 18px;
  font-weight: 600;
}
div.header__button {
  padding: 0;
}
.header__lines {
  display: flex;
  gap: 69px;
  align-items: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
  margin-top: -14px;
}
.head__row .head__logo {
  max-width: 328px;
}
.header__line {
  width: 100%;
  background: var(--c-light);
  height: 1px;
}
.header__line-logo svg {
  width: 76px;
  height: 13px;
}
.header__socials{
  display: flex;
  gap: 9px;
  margin-left: auto;
}
.header__soc img {
  width: 35px;
  transition: all 0.5s ease-in-out;
}
.header__soc:hover img {
  transform: scale(1.2);
}
.banner__title--block{
  display: block;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}
@media (max-width: 1506px) {

}
@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .header__lines {
    gap: 38px;
    margin-top: -10px;
  }
}

  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 12px;
    background: #a99166;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    padding: 0;
  }
  .header__menu a {
    font-size: 18px;
    font-weight: 600;
  }
  #menu {
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .head__row {
    align-items: center;
    flex-direction: row;
    gap: 72px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
.menu-item a {
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: #e4dfd6;
}
.header__body._active a.header__logo {
  display: none;
}
.header__content._active .header__socials {
  display: none;
}
.header__content._active {
  justify-content: end;
}
.menu-item--active a, .menu-item:hover a {
  color: #685d38;
}
.menu-item {
  padding-left: 42px;
}
li.menu-item{
  position: relative;
}
li.menu-item.menu-item--active:before, li.menu-item:hover:before{
  content: '';
  background-image: url("../img/menu-star.svg");
  position: absolute;
  left: 0;
  height: 30px;
  width: 30px;
  top: calc(50% - 15px);
}
.head__button {
  padding-left: 42px;
  padding-top: 42px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.head__button a.header__link {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #e4dfd6;
}
.head__contacts {
  padding-left: 42px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.head__address--block {
  display: block;
}
.head__address {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #e4dfd6;
}
@media (max-width: 1200px) {
  .head__row {
    gap: 33px;
  }
  .menu-item a {
    font-size: 28px;
  }
  .head__logo {
    max-height: 308px;
  }
}
@media (max-width: 767px) {
  .head__logo {
    display: none;
  }
  .head__contacts .header__socials {
    display: flex;
    margin: 0;
  }
  .head__contacts {
    flex-wrap: wrap;
  }
}
.banner__title{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  color: var(--c-light);
}
.banner__row{
  max-width: 530px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.banner {
  padding-top: 107px;
  background-image: url(../img/banner.jpg);
  min-height: 598px;
  background-color: rgb(169 145 102 / 50%);
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-service{
  background-image: url(../img/banner-service.jpg);
}
.banner-about{
  background-image: url(../img/banner-about-1.jpg);
}
.banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(169 145 102 / 50%);
  top: 0;
}
.banner__container {
  position: relative;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 33px;
  }
  .header__soc img {
    width: 24px;
  }
  .header__content {
    gap: 38px;
  }
  .header__link {
    padding: 0;
    font-size: 12px;
  }
  .header__phone {
    font-size: 12px;
  }
  .header__body {
    gap: 33px;
  }
  .banner__title {
    font-size: 32px;
  }
  .header {
    padding: 18px 0px 0px;
  }
  .banner-about {
    background-image: url(../img/banner-about.jpg);
  }
}

@media (max-width: 767px) {
  .header__socials {
    display: none;
  }
  .header__button {
    display: none;
  }
  .header__content {
    justify-content: end;
  }
  .banner__title {
    font-size: 20px;
  }
  .banner__row {
    gap: 24px;
  }
  .banner {
    min-height: 321px;
  }
  .container{
    padding: 0 24px;
  }
}
.about {
  background: var(--c-light);
  position: relative;
}

.about:before{
  content: '';
  background-image: url("../img/about-bg.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.about__container {
  position: relative;
}
.breadcrumbs{
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--c-darkest);
  padding-bottom: 22px;
  text-transform: uppercase;
}
.about__title {
  padding-left: 67px;
  max-width: 652px;
}
.about__row {
  display: flex;
  gap: 67px;
}
img {
  max-width: 100%;
}
.about__slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.about-swiper {
  margin-top: 67px;
  border-radius: 15px;
  height: calc(100% - 67px);
}
.about__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--c-darkest);
}
.about__texts {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.about__hrefs{
  padding: 24px 0 33px;
}
.about__hrefs {
  display: flex;
  gap: 18px;
  align-items: center;
}
.about__href{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-dark);
}
.about__item {
  width: calc(50% - 33px);
}
.about__img:first-child {
  margin-top: 67px;
}
.about__imgs {
  display: flex;
  gap: 33px;
  align-items: flex-start;
}
.about__img {
  width: calc(50% - 16px);
  border-radius: 15px;
  height: 348px;
  object-fit: cover;
}
.swiper-pagination-bullet {
  width:  10px;
  height: 10px;
  display: inline-block;
  border-radius:  50%;
  background:  #a99166;
  opacity:  0.2;
}
.swiper-pagination-bullet-active {
  opacity:  1;
  background: #a99166;
}
.about__swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  gap: 10px;
  position: relative;
  top: 0;
  left: 0;
}
.about__swiper--pagin {
  position: absolute;
  left: 29px;
  bottom: 33px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.about__swiper-button-next {
  z-index: 1;
  cursor: pointer;
}
 .about__str {
  transition: margin-left .5s;
}
.about__hrefs:hover .about__str {
  margin-left: 10px;
}
@media (max-width: 960px) {
  .about__title {
    padding-left: 0;
  }
  .about__row {
    flex-direction: column;
    gap: 33px;
  }
  .about__item {
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
  .about-swiper {
    margin-top: 0;
    border-radius: 15px;
    height: 100%;
  }
  .about__img {
    height: 100%;
    object-fit: cover;
  }
  .about:before {
    background-image: url(../img/about-bg-768.png);
    background-size: contain;
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 12px;
  }
  .about__slide img {
    min-height: 457px;
  }
  .about__row {
    gap: 24px;
  }
  .about__hrefs {
    padding-bottom: 24px;
  }
  .about__imgs {
    flex-direction: column;
    gap: 24px;
  }
  .about__img:first-child {
    margin-top: 0;
  }
  .about__img {
    width: 100%;
    min-height: 494px;
  }
}
.procedures {
  background: #dfd7cc;
}
.procedures__subtitle,.procedures__item--span{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: -0.05em;
  color: var(--c-dark-65);
}
.procedures__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.procedures__blocks {
  position: absolute;
  background: var(--c-light);
  padding: 24px;
  border-radius: 15px;
  width: 400px;
  gap: 10px;
  flex-direction: column;
  display: none;
  z-index: 2;
  left: calc(50% - 200px);
}
.procedures__item:hover .procedures__blocks {
  display: flex;
}
.procedures__subtitle {
  cursor: pointer;
}
.about_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--c-darkest);
  text-align: center;
}
.procedures__name, .procedures__href {
  color: var(--c-darkest);
  font-weight: 700;
  text-align: center;
}
.procedures__href{
  position: relative;
}
.procedures__href:before{
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--c-darkest);
  left: 0;
  bottom: -3px;
  transition: all 0.5s ease-in-out;
}
.procedures__href:hover:before{
  width: 100%;
}
.procedures__href {
  width: fit-content;
  margin: auto;
}
.procedures__item {
  position: relative;
}
.products {
  padding: 67px 67px 0;
  position: relative;

}
.product__category {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--c-darkest);
}
.product__slide {
  background: var(--c-light);
  padding-top: 33px;
  height: auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.product__info{
  padding: 0 33px;
}
.product__slide img {
  margin: auto;
  display: block;
  padding: 15px 0;
}
.product__name {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--c-darkest);
}
.product__time {
  border: 1px solid var(--c-darkest);
  border-radius: 100px;
  padding: 7px 15px;
  width: 89px;
  height: 29px;
  margin: 24px auto;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: var(--c-darkest);
}
.product__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: var(--c-darkest);
  padding-bottom: 33px;
}
.product__btns {
 margin-top: auto;
}
.product__btn {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-dark);
  text-transform: uppercase;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.product__btn {
  padding: 24px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.product__btn:hover{
  background: var(--c-dark);
}
.product__btn:hover path{
  fill: var(--c-light);
}
.product__btn:hover {
  color: var(--c-light);
}
.product__swiper--pagin {
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  top: 50px;
}
.product__swiper-button-prev, .product__swiper-button-next {
  cursor: pointer;
}
.procedures__subtitle, .procedures__item--span {
  font-size: 32px;
}
.procedures__item:hover .procedures__subtitle {
  color: var(--c-dark);
}

@media (max-width: 1200px) {
  .procedures__blocks {
    left: 0;
  }
  .products {
    padding-top: 33px;
  }
  .product__slide{
    padding-top: 16px;
  }
  .product__time {
    margin: 16px auto;
  }
  .product__text {
    padding-bottom: 16px;
  }
}

@media (max-width: 1000px) {
  .procedures__row {
    max-width: 644px;
    margin: auto;
  }
  .procedures__row div:nth-child(11) .procedures__blocks{
    left: calc(50% - 200px);
  }
  .procedures__row div:nth-child(29) .procedures__blocks{
    left: calc(50% - 234px);
  }
  .procedures__row div:nth-child(23) .procedures__blocks{
     left: calc(50% - 330px);
   }
}
@media (max-width: 767px) {
  .procedures__subtitle, .procedures__item--span {
    font-size: 20px;
  }
  .procedures__row {
    flex-direction: column;

    gap: 10px;
  }
  .procedures__item--span {
    display: none;
  }
  .procedures__blocks {
    position: relative;
    left: 0!important;
    width: 100%;
    margin-top: 10px;
  }
  .products {
    padding: 24px 0 0;
  }
  .product__swiper--pagin {
    position: relative;
    top: 0;
    margin-top: 24px;
    justify-content: center;
    gap: 24px;
  }
}

.relaxation{
  background-image: url("../img/relaxation.jpg");
  background-size: cover;
  min-height: 460px;
  background-attachment: fixed;
  align-items: center;
  display: flex;
  padding: 33px 0;
}
.relaxation__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--c-light);
  padding-bottom: 67px;
  max-width: 450px;
  margin: auto;
}
.relaxation__texts{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.relaxation__text--fw{
  font-weight: 700;

  margin: 0;
}
.relaxation__body {
  max-width: 584px;
  margin: auto;
}
.relaxation__title {
  color: var(--c-light);
  text-align: center;
}
.relaxation__button {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-light);
  justify-content: center;
}
.relaxation__button svg, .product__btn svg{
  transition: all .5s;
}
.relaxation__button:hover svg:last-child, .product__btn:hover svg:last-child {
  transform: translate(-10px, 0px);
}
.relaxation__button:hover svg:first-child, .product__btn:hover svg:first-child {
  transform: translate(10px, 0px);
}
@media (max-width: 1200px) {
  .relaxation__text {
    padding-bottom: 33px;
  }
}

@media (max-width: 767px) {
  .relaxation {
    min-height: 100%;
  }
}
.equipment__row{
  display: flex;
  justify-content: space-between;
}
.bg1 {
  background: var(--c-light);
  position: relative;
}
.bg1:before {
  content: '';
  background-image: url(../img/about-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.equipment__img {
  width: 254px;
  border-radius: 30px;
  transform: rotate(-5deg);
  object-fit: cover;
  height: 380px;
  transition: all 0.5s ease-in-out;
}
.equipment__block {
  position: relative;
}
.equipment__block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--c-dark);
  transform: rotate(5deg);
  border-radius: 30px;
  left: 35px;
  transition: all 0.5s ease-in-out;
}
.equipment__container {
  position: relative;
}
.equipment__title {
  padding-bottom: 67px;
}
.equipment__info{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--c-darkest);
  text-align: center;
  display: none;
  width: 254px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 20px;
}
.equipment__block:hover .equipment__info{
  display: block;
}
.equipment__block:hover:before {
  left: 0;
  z-index: 1;
  transform: scaleX(1);
}
.equipment__block:hover .equipment__img {
  z-index: 0;
  position: relative;
  transform: scaleX(-1);
}
@media (max-width: 1200px) {
  .equipment__row {
    gap: 67px 95px ;
    margin: auto;
    padding-right: 50px;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  /*.equipment__block {
    width: 85%;
    margin: auto;
  }
  .equipment__img {
    width: 100%;
    height: 100%;
  }*/
}

@media (max-width: 767px) {
  .equipment__title {
    padding-bottom: 33px;
  }
  .equipment__block {
    width: 80%;
    margin: auto;
  }
  .equipment__img {
    width: 90%;
    height: 100%;
  }
  .equipment__block:before {
    width: 90%;
    left: 35px;
  }
  .equipment__row {
    padding: 0;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.logos{
  padding: 50px 0;
  border-bottom: 1px solid var(--c-dark);
  border-top: 1px solid var(--c-dark);
  position: relative;
}
.logos__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1200px) {
  .logos__img {
    margin: auto;
  }
  .logos__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 33px;
  }
}

@media (max-width: 767px) {

}
.feedback {
  background: #dfd7cc;
  padding: 33px 0;
}
.feedback__title {
  padding-left: 67px;
  max-width: 690px;
}
.feedback__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 67px;
}
input {
  width: 100%;
  background: #ffffff00;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: var(--c-darkest);
  border-bottom: 1px solid var(--c-dark);
  padding: 12px 0px;
}
input::placeholder{
  color: var(--c-darkest);
}
.feedback__button {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 18px;
}
.feedback__texts {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--c-darkest);
  padding-bottom: 22px;
  text-transform: uppercase;
  line-height: 1.5;
}
.feedback__form--success {
  display: none;
}
@media (max-width: 1200px) {
  .feedback__title {
    padding-left: 0;
    max-width: 568px;
  }
  .feedback__form {
    grid-template-columns: 1fr;
    gap: 33px;
  }
}

@media (max-width: 767px) {
  .feedback__form {
    gap: 24px;
  }
}
.scroll-text{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 55px;
  color: var(--c-dark);
}
.scroll-texts {
  gap: 19px;
  background: var(--c-light);
  padding: 50px 0;
  animation: marquee 20s linear infinite;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.footer__main {
  background: var(--c-light);
}
.footer__lines {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
  margin-left: -33px;
}
.footer__line {
  background: var(--c-dark);
  width: 100%;
  height: 1px;
}
.footer__line-logo svg {
  width: 76px;
  height: 13px;
}
.footer__copyrights {
  padding: 24px 0;
  display: flex;
  gap: 33px;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  color: var(--c-dark);
  display: flex;
  flex-direction: column;
}
.footer__copyright a {
  letter-spacing: 0.1em;
  text-decoration-skip-ink: none;
  color: var(--c-dark);
  text-align: right;
  position: relative;
  width: fit-content;
  margin-left: auto;
}
.footer__copyright a:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--c-dark);
  left: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
}
.footer__copyright a:hover:before{
  width: 0;
}
.footer__copyright--span {
  max-width: 156px;
  display: block;
  text-align: center;
}
.footer__copyright--span-block{
  display: block;
}
@media (max-width: 1200px) {
  .scroll-text {
    font-size: 44px;
  }
  .footer__copyright {
    font-size: 10px;
  }
  .footer__copyrights {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .scroll-texts {
    padding: 24px 0;
  }
  .scroll-text {
    font-size: 28px;
  }
  .footer__copyrights {
    flex-wrap: wrap;
  }
  .footer__copyright:first-child{
    order: 1;
  }
  .footer__copyright:nth-child(2){
    order:4;
  }
  .footer__copyright:nth-child(3){
    order:5;
    width: 100%;
    align-items: center;
  }
  .footer__copyright:nth-child(4){
    order:3;
  }
  .footer__copyright:nth-child(5){
    order:2;
  }
}
.reviews {
  position: relative;
}
.reviews__kavichka {
  padding-bottom: 22px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-align: right;
  color: var(--c-dark);
}
.reviews__texts p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: var(--c-dark);
}
.reviews__texts {
  display: flex;
  gap: 24px;
}
.reviews__name {
  font-weight: 400;
  font-size: 16px;
  color: var(--c-darkest);
}
.reviews__date {
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: var(--c-dark);
  padding-top: 10px;
}
.reviews__row {
  display: flex;
  gap: 67px;
}
.reviews__item {
  width: calc(100% - 285px - 67px);
  position: relative;
}
.reviews__item:last-child {
  width: 285px;
}
.reviews__img {
  border-radius: 30px;
}
.reviews__swiper--pagin {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 33px;
  z-index: 2;
}
.reviews__swiper-button-prev, .reviews__swiper-button-next {
  cursor: pointer;
}
.reviews__info {
  margin-top: auto;
}
.reviews__slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.reviews__place {
  font-weight: 400;
  font-size: 14px;
  color: var(--c-darkest);
}
@media (max-width: 1200px) {
  .reviews__row {
    gap: 33px;
  }
  .reviews__item {
    width: calc(100% - 285px - 33px);
  }
  .reviews__texts p, .reviews__kavichka{
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .reviews__row {
    flex-direction: column;
    gap: 24px;
  }
  .reviews__item, .reviews__item:last-child {
    width: 100%;
  }
  .reviews__texts p, .reviews__kavichka{
    font-size: 20px;
  }
  .reviews__img {
    width: 100%;
  }
}
.relaxations__body {
  width: calc(100% - 234px);
  margin: auto;
  position: relative;
}
.relaxation__contents {
  display: flex;
  gap: 67px;
}
.relaxation__img {
  border-radius: 30px;
}
.relaxation__contents .relaxation__text {
  max-width: 100%;
  text-align: left;
  padding-bottom: 0;
}
.relaxation__contents .relaxation__button {
  justify-content: left;
}
.relaxation__contents .relaxation__title {
  text-align: left;
  padding: 0;
}
.relaxation__content {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.relaxation__swiper--pagin {
  position: absolute;
  width: calc(100% + 234px);
  left: -117px;
  display: flex;
  justify-content: space-between;
  top: calc(50% - 25px);
}
#relaxations .breadcrumbs {
  color: var(--c-light);
  padding-bottom: 33px;
}
.relaxation__swiper-button-prev, .relaxation__swiper-button-next {
  cursor: pointer;
}
#relaxations {
  padding: 67px 0;
}
@media (max-width: 1200px) {
  #relaxations {
    padding: 33px 0;
  }
  .relaxation__contents {
    flex-direction: column;
    gap: 33px;
    max-width: 536px;
  }
  .relaxations__container {
    width: 100%;
  }
  .relaxations__body {
    max-width: 536px;
    width: 100%;
  }
  .relaxation__img {
    max-width: 290px;
    margin: auto;
  }
  .relaxation__content {
    align-items: center;
  }
  .relaxation__contents .relaxation__text {
    text-align: center;
  }
  relaxation__swiper--pagin {
    width: calc(100% + 100px);
    left: -50px;
  }

}

@media (max-width: 767px) {
  #relaxations {
    padding: 24px 0;
  }
  .relaxation__img {
    max-width: 330px;
    width: 100%;
  }
  .relaxation__swiper--pagin {
    width: 100%;
    left: 0;
    z-index: 2;
    top: 150px;
  }
}
.categories {
  padding-top: 67px;
}
.categories__filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 33px;
}
.filters__button {
  border: 1px solid var(--c-dark);
  border-radius: 100px;
  padding: 15px;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: var(--c-dark);
  text-transform: uppercase;
}
.filters__button--active {
  background: rgba(169, 145, 102, 0.4);
  color: var(--c-darkest);
}
.filters__button:hover {
  background: rgba(169, 145, 102, 0.4);
  color: var(--c-darkest);
}
.categories__title {
  padding-left: 67px;
}
.category__name {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.05em;
  color: var(--c-darkest);
}
.category__time, .category__price {
  border: 1px solid var(--c-darkest);
  border-radius: 100px;
  padding: 7px 15px;
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: var(--c-darkest);
}
.category__intro {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.05em;
  color: var(--c-dark);
}
.category__infos {
  display: flex;
  gap: 15px;
  align-items: center;
}
.category__texts p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--c-darkest);
}
.category__texts  {
  
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}
.categories__category {
  display: flex;
  gap: 67px;
  flex-wrap: wrap;
}
.category__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(50% - 34px);
  border-bottom: 1px solid var(--c-dark);
  padding-bottom: 24px;
}
.category__read {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
  justify-content: space-between;
}
.category__href {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-dark);
  text-transform: uppercase;
}
.category__hrefs {
  display: flex;
  align-items: center;
  gap: 18px;
}
.category__more {
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: var(--c-darkest);
  position: relative;
}
.category__more:before{
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--c-darkest);
  left: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
}
.category__more:hover:before{
  width: 100%;
}
.categories {
  background: var(--c-light);
  position: relative;
}
.categories:before {
  content: '';
  background-image: url(../img/about-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.categories__container{
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .categories {
    padding-top: 33px;
  }
  .categories__title {
    padding-left: 0;
  }
  .category__name {
    font-size: 18px;
  }
  .category__infos {
    flex-wrap: wrap;
  }
  .categories__category {
    gap: 33px;
  }
  .category__item {
    width: calc(50% - 17px);
  }
  .category__read {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .categories {
    padding-top: 24px;
  }
  .filters__button {
    line-height: 126%;
  }
  .category__item {
    width: 100%;
  }
}
.keepers__row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 67px 33px;
}
.keepers__block {
  position: relative;
}
.keepers__img {
  width: 254px;
  border-radius: 30px;
  transform: rotate(-5deg);
  object-fit: cover;
  height: 380px;
  transition: all 0.5s ease-in-out;
}
.keepers__block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--c-dark);
  transform: rotate(5deg);
  border-radius: 30px;
  left: 35px;
  transition: all 0.5s ease-in-out;
}
.keepers__title {
  padding-bottom: 67px;
  padding-left: 67px;
  color: var(--c-dark);
}
.keepers__item {
  cursor: pointer;
}

.keepers__info{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--c-darkest);
  text-align: center;
  display: none;
  width: 254px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 20px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.keepers__name {
  font-size: 16px;
  font-weight: 700;
}
.keepers__stag{
  line-height: 1;
}
.keepers__block:hover .keepers__info {

  display: flex;
}
.keepers__block:hover:before {
  left: 0;
  z-index: 1;
  transform: scaleX(1);
}

.keepers__block:hover .keepers__img {
  z-index: 0;
  position: relative;
  transform: scaleX(-1);
}
@media (max-width: 1200px) {
  .keepers__title {
    padding-bottom: 33px;
    padding-left: 0;
  }
  .keepers__row {
    justify-content: space-around;
    gap: 67px;
  }
}

@media (max-width: 767px) {
  .keepers__row {
    gap: 40px;
    flex-direction: column;
  }
  .keepers__block {
    width: 80%;
    margin: auto;
    max-width: 280px;
  }
  .keepers__block:before {
    width: 100%;
    left: 17px;
  }
  .keepers__img {
    width: 100%;
    margin-left: -12px;
  }
}
.category__str {
  transition: all .5s;
}
.category__hrefs:hover .category__str {
  transform: translate(10px, 0px);
}
.keepers {
  background: #dfd7cc;
}

.philosophy__text{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  color: var(--c-light);
}
.philosophy__row{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.philosophy{
  background-image: url(../img/relaxation.jpg);
  background-size: cover;
  min-height: 460px;
  background-attachment: fixed;
  align-items: center;
  display: flex;
  padding: 67px 0;
}

@media (max-width: 1200px) {
  .philosophy__text {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .philosophy__text {
    font-size: 20px;
    line-height: 1.3;
  }
  .philosophy {
    min-height: auto;
    padding: 24px 0;
  }
  .philosophy__row {
    gap: 24px;
  }
}
.history__body{
  padding-left: 67px;
}
.history__title{
  max-width:926px;
}
.history__text{
max-width: 595px;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.history__text p{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--c-darkest);
}
.history {
  position: relative;
}
.history-swiper {
  margin-top: 67px;
  border-radius: 30px;
}
.history__slide img {
  border-radius: 30px;
  width: 100%;
}
.history__contanier {
  position: relative;
}
.history__swiper--pagin {
  position: absolute;
  width: calc(100% + 140px);
  left: -70px;
  display: flex;
  justify-content: space-between;
  top: calc(50% - 25px);
}
.history__swiper-button-prev, .history__swiper-button-next {
  cursor: pointer;
}
.gallery__swiper-wrapper .gallery__slide{
  height: 336px;
  width: auto;
}
.gallery__swiper-wrapper .gallery__slide img {
  object-fit: contain;
  height: 336px;
  width: auto;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .history__body {
    padding-left: 0;
  }
  .history-swiper {
    margin-top: 33px;
    border-radius: 30px;
    width: 536px;
    aspect-ratio: 1 / 1;
    max-height: 463px;
  }
  .history__swiper--pagin {

    width: 100%;
    left: 0;
  }
  .history__slide img {
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    max-height: 463px;
  }
  #history {
    padding-bottom: 33px;
  }
  #history2, #history3 {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .history-swiper {
    width: 100%;
  }
  .history__swiper--pagin {
    z-index: 1;
    width: calc(100% - 20px);
    left: 10px;
  }
}
.principles__item {
  background: var(--c-light);
  padding-top: 33px;
  height: auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.principles__row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.principles__item{
  width: calc(33% - 9px);
}
.principles__item img {
  margin: auto;
  display: block;
  padding: 15px 0;
}
.product__plashkas {
  display: flex;
  gap: 10px;
}
.product__plashka{
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: var(--c-darkest);
  border: 1px solid var(--c-darkest);
  border-radius: 100px;
  padding: 5px 10px;
}
.product__plashkas {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 24px 0;
}
.principles__item .product__btn svg {
  transition: all .5s;
  min-width: 31px;
}
.product__btn--span {
  text-align: center;
}
@media (max-width: 1200px) {
  .principles__item {
    width: calc(50% - 9px);
  }
}

@media (max-width: 767px) {
  .principles__item {
    width: 100%;
  }
}
.principles__item .product__name {
  padding-bottom: 24px;
}
.contens{
  position: relative;
}
.contens__container {
  position: relative;
  z-index: 1;
}
.contens:before {
  content: '';
  background-image: url(../img/about-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.contens__row {
  display: flex;
  flex-direction: column;
  gap: 33px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--c-darkest);
}
.contens ul li {
  list-style: decimal;
}
.contens ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ol li {
  list-style: circle;
}
ol {
  padding-left: 20px;
}
.contens__row a {
  display: inline;
}

.div-input-cc input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: auto;
}
.div-input-cc i {
  width: 13px;
  height: 13px;
  border: 1px solid var(--c-dark);
  border-radius: 3px;
  display: inline-block;
  position: relative;
  float: left;
  box-sizing: border-box;
  margin-right: 10px;
  min-width: 13px;
  margin-top: 2px;
}
.div-input-cc i:after {
  content: '';
  background-image: url(/img/checkbox.png);
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -ms-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.div-input-cc label input[type="checkbox"]:checked+i:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.contact-form-agree-politics a {
  display: inline;
  color: var(--c-dark);
  position: relative;
}
.contact-form-agree-politics a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--c-dark);
  left: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
}
.contact-form-agree-politics a:hover:before {
  width: 0;
}
label.pol.contact-form-agree-politics {
  color: var(--c-dark);
  font-size: 13px;
  display: flex;
  padding-top: 20px;
  align-items: center;
}
.element-tg-hidden{
  opacity: 0.3;
  pointer-events: none;
}


.contens ul li  ul>li:before {
  content: counters(li,".") ". ";
  font-variant-numeric: tabular-nums;
  position: absolute;
  left: -35px;
}
.contens ul li ul>li{
  position: relative;
}
.contens__row>ul>li {
  counter-increment: li;
}
.contens ul ul{
  padding-left: 40px;
}

.reviews__swiper-button-next, .reviews__swiper-button-prev {
  transition: all .5s;
  height: 50px;
  border-radius: 50%;
}
.reviews__swiper-button-next:hover, .reviews__swiper-button-prev:hover {
  background: var(--c-darkest);
  border-radius: 50%;
  height: 50px;
}

.product__swiper-button-next, .product__swiper-button-prev {
  transition: all .5s;
  height: 50px;
  border-radius: 50%;
}
.product__swiper-button-next:hover, .product__swiper-button-prev:hover {
  background: var(--c-darkest);
  border-radius: 50%;
  height: 50px;
}

.history__swiper-button-next, .history__swiper-button-prev {
  transition: all .5s;
  height: 50px;
  border-radius: 50%;
}
.history__swiper-button-next:hover, .history__swiper-button-prev:hover {
  background: var(--c-darkest);
  border-radius: 50%;
  height: 50px;
}

.relaxation__swiper-button-next, .relaxation__swiper-button-prev {
  transition: all .5s;
  height: 50px;
  border-radius: 50%;
}
.relaxation__swiper-button-next:hover, .relaxation__swiper-button-prev:hover {
  background: var(--c-darkest);
  border-radius: 50%;
  height: 50px;
}

