@font-face {
  font-family: "Medieval";
  src: url("assets/fonts/medieval-english-normal.woff"), url("assets/fonts/medieval-english-normal.woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Light.woff"), url("assets/fonts/Montserrat-Light.woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.woff"), url("assets/fonts/Montserrat-Regular.woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.woff"), url("assets/fonts/Montserrat-Medium.woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.woff"), url("assets/fonts/Montserrat-SemiBold.woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.woff"), url("assets/fonts/Montserrat-Bold.woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --primary: #da48d7;
  --accent: #f3b8f0;
  --hover: #b12cb3;
  --bg: #f8f4fb;
  --text: #2e2e2e;
  --white: #ffffff;
  --error: #fa3e2c;
  --gray: #d2d7da;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
}

.no-scroll {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 70px;
}
@media (max-width: 576px) {
  .main {
    margin-top: 60px;
  }
}

.container {
  max-width: 1238px;
  padding: 0 15px;
  margin: 0 auto;
}

.container-right {
  padding-left: calc((100% - 1238px) / 2 - 15px);
}

.btn {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 0.15;
  color: var(--white);
  border-radius: 16px;
  background-color: var(--primary);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .btn:hover {
    background-color: #b12cb3;
  }
}
@media (hover: none) {
  .btn:active {
    background-color: #b12cb3;
  }
}

.btn-outline {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 0.15;
  color: var(--primary);
  border-radius: 16px;
  border: 1px solid var(--primary);
  background-color: var(--white);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .btn-outline:hover {
    color: var(--white);
    background-color: var(--primary);
  }
}
@media (hover: none) {
  .btn-outline:active {
    color: var(--white);
    background-color: var(--primary);
  }
}

.to-top {
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: bottom 0.2s, -webkit-transform 0.2s;
  transition: bottom 0.2s, -webkit-transform 0.2s;
  transition: bottom 0.2s, transform 0.2s;
  transition: bottom 0.2s, transform 0.2s, -webkit-transform 0.2s;
  z-index: 2;
}
.to-top.show {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (hover: hover) {
  .to-top:hover {
    bottom: 35px;
  }
}
@media (max-width: 576px) {
  .to-top {
    width: 45px;
    height: 45px;
    right: 15px;
  }
}

.cart-fixed {
  padding: 15px 20px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: fixed;
  bottom: 100px;
  right: 30px;
  border-radius: 12px;
  background-color: #da48d7;
  z-index: 2;
}
.cart-fixed img {
  height: 23px;
}
.cart-fixed .cart-quantity {
  width: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
@media (max-width: 992px) {
  .cart-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 576px) {
  .cart-fixed {
    padding: 10px 15px;
    right: 15px;
    bottom: 85px;
  }
}

.thnx {
  padding: 75px 0;
}
@media (max-width: 576px) {
  .thnx {
    padding: 50px 0;
  }
}
.thnx__wrapper {
  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;
  gap: 15px;
}
.thnx__icon {
  width: 100px;
  height: 100px;
}
.thnx__title {
  font-weight: 700;
  font-size: 36px;
  color: var(--text);
}
@media (max-width: 576px) {
  .thnx__title {
    font-size: 30px;
  }
}
.thnx__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}
.thnx__link {
  height: 50px;
  padding: 10px 25px;
}

.home-page .header {
  width: 100%;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: #f8f4fb;
  -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}
.home-page .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.home-page .header__logo {
  max-width: 100px;
  position: relative;
}
.home-page .header .menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.home-page .header .menu__contacts-item {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.home-page .header .menu__contacts-item svg {
  fill: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .home-page .header .menu__contacts-item:hover {
    color: var(--accent);
  }
  .home-page .header .menu__contacts-item:hover svg {
    fill: var(--accent);
  }
}
@media (hover: none) {
  .home-page .header .menu__contacts-item:active {
    color: var(--accent);
  }
  .home-page .header .menu__contacts-item:active svg {
    fill: var(--accent);
  }
}
.home-page .header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
.home-page .header .nav__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .home-page .header .nav__link:hover {
    color: var(--primary);
  }
}
@media (hover: none) {
  .home-page .header .nav__link:active {
    color: var(--primary);
  }
}
.home-page .header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.home-page .header__contacts-item {
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.home-page .header__contacts-item svg {
  fill: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .home-page .header__contacts-item:hover svg {
    fill: var(--primary);
  }
}
@media (hover: none) {
  .home-page .header__contacts-item:active svg {
    fill: var(--primary);
  }
}
.home-page .header .header__tel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.home-page .header .header__tel svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .home-page .header .header__tel:hover {
    color: var(--primary);
  }
  .home-page .header .header__tel:hover svg {
    fill: var(--primary);
  }
}
@media (hover: none) {
  .home-page .header .header__tel:active {
    color: var(--primary);
  }
  .home-page .header .header__tel:active svg {
    fill: var(--primary);
  }
}
.home-page .header__lang {
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  position: relative;
}
.home-page .header__lang-btn {
  padding: 5px 10px 5px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
  border-radius: 15px;
  border: 1px solid var(--gray);
}
.home-page .header__lang-btn svg {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.home-page .header__lang-btn.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.home-page .header__lang-text {
  font-size: 16px;
  font-weight: 500;
}
.home-page .header__lang-dropdown {
  width: 100px;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  border-radius: 15px;
  border: 1px solid var(--gray);
  background-color: var(--bg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.home-page .header__lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.home-page .header__lang-dropdown .lang-item a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  text-align: center;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.home-page .header__lang-dropdown .lang-item a img {
  width: 35px;
}
@media (hover: hover) {
  .home-page .header__lang-dropdown .lang-item a:hover {
    background-color: var(--gray);
  }
}
.home-page .header__lang-dropdown .lang-item.current-lang a {
  color: var(--text);
  background-color: var(--gray);
}
.home-page .header .hamburger {
  margin: 0;
  display: none;
  width: 30px;
  height: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 4;
}
.home-page .header .hamburger span {
  width: 27px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home-page .header .hamburger span::before {
  content: "";
  width: 27px;
  height: 1.5px;
  position: absolute;
  left: 0;
  background: var(--text);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
}
.home-page .header .hamburger span::after {
  content: "";
  width: 27px;
  height: 1.5px;
  position: absolute;
  left: 0;
  background: var(--text);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}

@media (max-width: 1200px) {
  .home-page .header .nav__list {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
@media (max-width: 1170px) {
  .home-page .header.header--active .menu {
    opacity: 1;
    visibility: visible;
  }
  .home-page .header.header--active .hamburger span {
    width: 30px;
    height: 1.5px;
    position: relative;
    background: transparent !important;
  }
  .home-page .header.header--active .hamburger span::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background: var(--text);
  }
  .home-page .header.header--active .hamburger span::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background: var(--text);
  }
  .home-page .header.sticky .hamburger span {
    background: var(--text);
  }
  .home-page .header.sticky .hamburger span::before {
    background: var(--text);
  }
  .home-page .header.sticky .hamburger span::after {
    background: var(--text);
  }
  .home-page .header .menu {
    width: 100%;
    height: 100vh;
    padding: 70px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .home-page .header .menu__contacts {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
  }
  .home-page .header .menu__contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
  }
  .home-page .header .menu__contacts-item svg {
    width: 25px;
    height: 25px;
  }
  .home-page .header__lang {
    margin: 0 auto;
  }
  .home-page .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-page .header .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .home-page .header .nav__link {
    font-size: 20px;
    color: var(--text);
  }
  .home-page .header .nav .cart-btn {
    display: none;
  }
  .home-page .header .header__contacts {
    display: none;
  }
}
@media (max-width: 576px) {
  .home-page .header {
    padding: 10px 0;
  }
}
.intro {
  position: relative;
  width: 100%;
  height: 650px;
}
@media (max-width: 768px) {
  .intro {
    height: 550px;
  }
}
.intro__bg {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 50%;
     object-position: center 50%;
}
.intro__wrapper {
  padding-top: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .intro__wrapper {
    padding-top: 150px;
  }
}
.intro__title {
  max-width: 750px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .intro__title {
    font-size: 30px;
  }
}
.intro__subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
@media (max-width: 768px) {
  .intro__subtitle {
    max-width: 500px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .intro__subtitle {
    font-size: 16px;
  }
}
.intro__btn {
  margin: 20px auto 0;
  max-width: 260px;
  height: 50px;
  font-size: 18px;
  font-weight: 500;
}

.doctor-review {
  padding: 75px 0;
  background-color: #fff;
}
@media (max-width: 576px) {
  .doctor-review {
    padding: 50px 0;
  }
}
.doctor-review__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.doctor-review__video iframe,
.doctor-review__video #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-reviews {
  padding: 75px 0;
}
@media (max-width: 576px) {
  .video-reviews {
    padding: 50px 0;
  }
}
.video-reviews__wrapper {
  width: 900px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .video-reviews__wrapper {
    width: 100%;
  }
}
.video-reviews__slider {
  width: 900px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .video-reviews__slider {
    width: 100%;
  }
}
.video-reviews__slider .swiper-slide {
  height: 100%;
}
.video-reviews__thumb {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.video-reviews__thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-reviews__pagination {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.video-reviews__pagination .swiper-pagination-bullet {
  background-color: var(--primary);
}
.video-reviews__prev, .video-reviews__next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}
.video-reviews__prev {
  left: -15px;
}
@media (max-width: 992px) {
  .video-reviews__prev {
    left: 0;
  }
}
.video-reviews__next {
  right: -15px;
}
@media (max-width: 992px) {
  .video-reviews__next {
    right: 0;
  }
}

.about {
  padding: 75px 0;
  background-color: #fff;
}
@media (max-width: 576px) {
  .about {
    padding: 50px 0;
  }
}
.about__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}
.about__subtitle {
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}
.about__items {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .about__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about__items {
    grid-template-columns: 1fr;
  }
}
.about__item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
@media (max-width: 992px) {
  .about__item:nth-child(3) {
    grid-column: 1/3;
  }
}
@media (max-width: 768px) {
  .about__item {
    grid-column: 1/2;
  }
  .about__item:nth-child(3) {
    grid-column: 1/2;
  }
}
@media (max-width: 576px) {
  .about__item {
    padding: 15px;
  }
}
.about__item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
  text-align: center;
}
.about__item-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
@media (max-width: 768px) {
  .about__item-text {
    font-size: 16px;
  }
}

.heals {
  width: 100%;
  padding: 75px 0;
  background-color: var(--white);
}
.heals__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
}
.heals__items {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.heals__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.heals__item-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
}
.heals__item-text {
  margin: 15px 0;
  max-width: 512px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.heals__item-btn {
  margin-top: auto;
  max-width: 180px;
  height: 40px;
}
.heals__item-img {
  overflow: hidden;
  border-radius: 16px;
  background-color: #d9d9d9;
}
.heals__item-img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 2;
}
.heals__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 992px) {
  .heals__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .heals__item {
    -webkit-box-flex: calc(50% - 10px);
        -ms-flex: calc(50% - 10px) 0 1;
            flex: calc(50% - 10px) 0 1;
  }
}
@media (max-width: 768px) {
  .heals__item {
    -webkit-box-flex: 100%;
        -ms-flex: 100% 1 1;
            flex: 100% 1 1;
  }
  .heals__item-img {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .heals__item-img {
    height: auto;
  }
}
.product {
  padding: 75px 0;
  background-color: var(--white);
}
@media (max-width: 576px) {
  .product {
    padding: 50px 0;
  }
}
.product__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
@media (max-width: 1170px) {
  .product__wrapper {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .product__wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product .product-slider {
  max-width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product .thumbs-swiper {
  width: 100px;
  min-width: 100px;
  height: 400px;
}
@media (max-width: 1024px) {
  .product .thumbs-swiper {
    width: 70px;
    min-width: 70px;
    height: 270px;
  }
}
.product .thumbs-swiper .swiper-slide {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: 2px solid var(--gray);
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .product .thumbs-swiper .swiper-slide {
    padding: 5px;
  }
}
.product .thumbs-swiper .swiper-slide-thumb-active {
  border-color: var(--primary);
}
.product .thumbs-swiper img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .product .thumbs-swiper img {
    width: 100%;
    height: 100%;
  }
}
.product .main-swiper {
  padding: 20px;
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 8px;
}
@media (max-width: 1170px) {
  .product .main-swiper {
    max-width: 350px;
  }
}
@media (max-width: 1024px) {
  .product .main-swiper {
    max-width: 270px;
    height: 270px;
  }
}
.product .main-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  background: white;
}
.product-info {
  width: 100%;
}
.product-info__title {
  font-size: 26px;
  font-weight: 700;
}
.product-info__subtitle {
  font-size: 20px;
  font-weight: 700;
}
.product-info__status {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.product-info__status-text {
  font-size: 16px;
  font-weight: 500;
}
.product-info__about {
  margin-top: 30px;
}
.product-info__about-head {
  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;
}
.product-info__about-btn {
  padding: 8px 20px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-radius: 10px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: #ededed;
}
@media (hover: hover) {
  .product-info__about-btn:hover {
    background-color: #dcdcdc;
  }
}
.product-info__list {
  margin-top: 15px;
}
.product-info__item {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  border-bottom: 1px dashed var(--gray);
}
.product-info__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .product-info__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-info__label {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.product-info__value {
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .product-info__value {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-info__value {
    text-align: right;
  }
}
.product-info__bottom {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1170px) {
  .product-info__bottom {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .product-info__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.product-info__btn {
  width: 100%;
  max-width: 250px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .product-info__btn {
    max-width: 100%;
  }
}
.product-info__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1170px) {
  .product-info__price {
    gap: 30px;
  }
}
.product-info__price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.product-info__price-info .old-price {
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
}
.product-info__price-info .new-price {
  font-size: 18px;
  font-weight: 700;
}
.product-info__price-info .label {
  color: #BFBFBF;
}
@media (max-width: 1024px) {
  .product-info__price-info .label {
    font-size: 14px;
  }
}

.results {
  padding: 75px 0;
}
@media (max-width: 576px) {
  .results {
    padding: 50px 0;
  }
}
.results__wrapper {
  position: relative;
  width: 760px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .results__wrapper {
    width: 100%;
  }
}
.results__slider {
  width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .results__slider {
    width: 100%;
  }
}
.results .swiper-wrapper {
  height: 500px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .results .swiper-wrapper {
    height: auto;
    height: 400px;
  }
}
.results .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}
.results__pagination {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.results__pagination .swiper-pagination-bullet {
  background-color: var(--primary);
}
.results__prev, .results__next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}
.results__prev {
  left: -15px;
}
@media (max-width: 992px) {
  .results__prev {
    left: 0;
  }
}
.results__next {
  right: -15px;
}
@media (max-width: 992px) {
  .results__next {
    right: 0;
  }
}

.reviews {
  padding: 75px 0;
  position: relative;
}
.reviews__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
}
.reviews__wrapper {
  position: relative;
}
.reviews__slider {
  margin-top: 35px;
  padding: 0 5px 5px;
  position: relative;
  overflow: hidden;
}
.reviews__slider .item {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.reviews__slider .item .item__rating {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.reviews__slider .item__text {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.reviews__slider .item__thumbnail {
  width: 60px;
  height: 60px;
}
.reviews__slider .item__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.reviews__slider .item__region {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
.reviews__slider .item__bot {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__slider .item__bot-inner {
  margin-left: 15px;
}
.reviews__slider-pagination {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.reviews__slider-pagination .swiper-pagination-bullet {
  background-color: var(--primary);
}
.reviews__slider-next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}
.reviews__slider-prev {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .reviews__slider .item__text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .reviews {
    padding: 50px 0;
  }
  .reviews__slider .item {
    padding: 20px 15px;
  }
  .reviews__slider .item__thumbnail {
    width: 55px;
    height: 55px;
  }
  .reviews__slider .item__name {
    font-size: 16px;
  }
  .reviews__slider .item__bot-inner {
    margin-left: 10px;
  }
  .reviews__slider .item__rating img {
    max-width: 18px;
  }
}
.docs {
  padding: 75px 0;
}
.docs__slider {
  position: relative;
  overflow: hidden;
}
.docs .swiper-pagination {
  z-index: 1;
}
.docs .swiper-pagination-bullet {
  background-color: var(--accent);
}
.docs__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.docs__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .docs__item:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .docs__item:hover .docs__item-text {
    opacity: 1;
    visibility: visible;
  }
}
.docs__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.docs__item-text {
  width: 100%;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  pointer-events: none;
}

@media (max-width: 768px) {
  .docs__item::before {
    content: none;
  }
  .docs__item-text {
    display: none;
  }
}
@media (max-width: 576px) {
  .docs {
    padding: 50px 0;
  }
  .docs__slider {
    padding-bottom: 35px;
  }
  .docs__item {
    height: 400px;
  }
  .docs__item img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.info {
  padding: 75px 0;
}
@media (max-width: 576px) {
  .info {
    padding: 50px 0;
  }
}
.info__content {
  height: 200px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.info__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 244, 251, 0.5)), to(#f8f4fb));
  background: linear-gradient(to bottom, rgba(248, 244, 251, 0.5), #f8f4fb);
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.info__content.expanded::after {
  opacity: 0;
}
.info__content.expanded {
  max-height: auto;
}
.info__content a {
  color: var(--accent);
  text-decoration: underline;
}
.info__content p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.info__content p:first-child {
  margin-top: 0;
}
.info__content h2 {
  margin-top: 15px;
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
  text-align: center;
}
.info__content h2:first-child {
  margin-top: 0;
}
.info__content h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.info__content h3:first-child {
  margin-top: 0;
}
.info__content ul {
  margin-top: 15px;
  padding-left: 20px;
}
.info__content ul:first-child {
  margin-top: 0;
}
.info__content ul li {
  line-height: 1.5;
  list-style: disc;
  list-style-type: disc;
}
.info__content ol {
  margin-top: 15px;
  padding-left: 20px;
}
.info__content ol:first-child {
  margin-top: 0;
}
.info__content ol li {
  line-height: 1.5;
  list-style: decimal;
  list-style-type: decimal;
}
.info__toggle {
  width: 250px;
  height: 50px;
  margin: 30px auto 0;
}

.faq {
  padding: 75px 0;
  background-color: var(--white);
}
@media (max-width: 576px) {
  .faq {
    padding: 50px 0;
  }
}
.faq__title {
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
  text-align: center;
}
.faq__items {
  margin-top: 35px;
}
.faq__item {
  padding: 15px 0;
}
.faq__item-question {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (hover: hover) {
  .faq__item-question:hover {
    cursor: pointer;
  }
  .faq__item-question:hover .faq__item-title {
    color: var(--primary);
  }
  .faq__item-question:hover .faq__item-btn svg {
    fill: var(--primary);
    stroke: var(--primary);
  }
}
@media (hover: none) {
  .faq__item-question:active {
    cursor: auto;
  }
}
.faq__item-question--active .faq__item-title {
  color: var(--primary);
}
.faq__item-question--active .faq__item-btn {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item-question--active .faq__item-btn svg {
  fill: var(--primary);
  stroke: var(--primary);
}
.faq__item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (max-width: 768px) {
  .faq__item-title {
    font-size: 18px;
  }
}
.faq__item-btn {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.faq__item-btn svg {
  fill: var(--text);
  stroke: var(--text);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.faq__item-answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.faq__item-text {
  margin-top: 15px;
  max-width: 1000px;
}
.faq__item-text p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.faq__item-text p:not(:first-child) {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .faq__item-text p {
    font-size: 16px;
  }
  .faq__item-text p:not(:first-child) {
    margin-top: 10px;
  }
}

.feedback {
  width: 100%;
  padding: 75px 0;
  position: relative;
  background-image: url("assets/images/feedback_bg.jpg");
  background-position: 30% 65%;
  background-repeat: no-repeat;
  background-size: cover;
}
.feedback::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.feedback__wrapper {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  position: relative;
}
.feedback__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  position: relative;
}
.feedback .form {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
.feedback .form.hide {
  display: none;
}
.feedback .form__item {
  position: relative;
}
.feedback .form__item:nth-child(1) {
  grid-column: 1/2;
}
.feedback .form__item:nth-child(2) {
  grid-column: 2/3;
}
.feedback .form__item-name {
  width: 100%;
  height: 50px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.feedback .form__item-name.error {
  border-color: var(--error);
}
.feedback .form__item-name::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-name::-moz-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-name:-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-name::-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-name::placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item:nth-child(2) span {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 500;
}
.feedback .form__item-phone {
  width: 100%;
  height: 50px;
  padding: 0 24px 0 66px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.feedback .form__item-phone.error {
  border-color: var(--error);
}
.feedback .form__item-phone::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-phone::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-phone:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-phone::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form__item-phone::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.4);
}
.feedback .form .good {
  grid-column: 1/3;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.feedback .form .good__thumbnail {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
}
.feedback .form .good__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feedback .form .good__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.feedback .form .good__inner-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback .form .good__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.feedback .form .good__price span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.feedback .form .good__btns {
  max-width: 114px;
  margin-left: auto;
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  background-color: #f5f5f5;
  border-radius: 12px;
}
.feedback .form .good__qty {
  min-width: 20px;
  max-width: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.feedback .form .good__decrement {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url("assets/images/minus_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.feedback .form .good__increment {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url("assets/images/plus_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.feedback .form .amount {
  grid-column: 1/3;
  height: 50px;
  padding: 10px;
  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;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 16px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}
.feedback .form__btn {
  grid-column: 1/3;
  height: 50px;
}
.feedback .form__btn.success {
  border-color: #008c49;
  background-color: #008c49;
}
.feedback .form__btn:disabled {
  opacity: 0.8;
  cursor: wait;
  pointer-events: none;
}
.feedback .form__btn--telegram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #229ed9;
  border: 2px solid #229ed9;
  background-color: var(--white);
}
.feedback .form__btn--telegram:hover {
  color: var(--white);
  background-color: #229ed9;
}
@media (hover: hover) {
  .feedback .form__btn--telegram:hover {
    color: var(--white);
    background-color: #229ed9;
  }
}
@media (hover: none) {
  .feedback .form__btn--telegram:active {
    color: var(--white);
    background-color: #229ed9;
  }
}
.feedback .form__text {
  grid-column: 1/3;
  font-size: 16px;
  color: var(--white);
  text-align: center;
}

@media (max-width: 576px) {
  .feedback {
    padding: 50px 0;
  }
  .feedback .form {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feedback .form__item {
    position: relative;
  }
  .feedback .form__item:nth-child(1) {
    grid-column: 1/2;
  }
  .feedback .form__item:nth-child(2) {
    grid-column: 1/2;
  }
  .feedback .form .good {
    grid-column: 1/2;
  }
  .feedback .form .good__thumbnail {
    width: 65px;
    height: 65px;
  }
  .feedback .form .good__title {
    font-size: 16px;
  }
  .feedback .form .good__price span {
    font-size: 16px;
  }
  .feedback .form .amount {
    grid-column: 1/2;
    font-size: 16px;
  }
  .feedback .form__btn {
    grid-column: 1/2;
  }
}
.footer {
  padding: 20px 0;
  background-color: var(--text);
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo {
  max-width: 125px;
}
.footer__contacts {
  margin-left: 120px;
}
.footer__tel {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .footer__tel:hover {
    color: var(--accent);
  }
}
@media (hover: none) {
  .footer__tel:active {
    color: var(--accent);
  }
}
.footer__address {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}
.footer__socials {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.footer__socials-item {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__socials-item svg {
  fill: var(--white);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (hover: hover) {
  .footer__socials-item:hover svg {
    fill: var(--accent);
  }
}
@media (hover: none) {
  .footer__socials-item:active svg {
    fill: var(--accent);
  }
}
.footer .divider {
  margin: 15px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.footer__copyright {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}

@media (max-width: 992px) {
  .footer__contacts {
    margin-left: 80px;
  }
}
@media (max-width: 768px) {
  .footer__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }
  .footer__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .footer__contacts {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .footer__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 15px;
  }
  .footer__logo {
    max-width: 120px;
  }
  .footer__contacts {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .footer__tel, .footer__address {
    width: 100%;
    display: block;
    text-align: center;
  }
  .footer__socials {
    margin: 0;
  }
}/*# sourceMappingURL=style.css.map */