/*
    Theme Name: ZOODOC
    Author: Tsyplinska Daria
*/

* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside,
footer,
header,
main,
nav,
section {
  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;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background: 0 0;
  cursor: pointer;
}
button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
:root {
  --grey-color: #282d2f;
  --blue-color: #2f2f6d;
  --grey-light-color: #979797;
  --orange-color: #f97004;
}
body,
html {
  height: 100%;
  font-family: Rubik, sans-serif;
  font-weight: 400;
}
* {
  color: var(--grey-color);
}
.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-container {
  flex: 1 1 auto;
}
[class*="__container"] {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
body.lock {
  overflow: hidden;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url(assets/fonts/Rubik-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url(assets/fonts/Rubik-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url(assets/fonts/rubik-semi-bold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
.header {
  padding-bottom: 18px;
}
.header.slidedown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 0;
  z-index: 999;
  -webkit-animation: slidedown 0.7s forwards;
  animation: slidedown 0.7s forwards;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  background-color: #fff;
}
.header.slidedown .header__blocks {
  border-bottom: 0;
}
@-webkit-keyframes slidedown {
  from {
    top: -250px;
  }
  to {
    top: 0;
  }
}
@keyframes slidedown {
  from {
    top: -250px;
  }
  to {
    top: 0;
  }
}
.header .advertising {
  background: linear-gradient(90deg, #f97004 0, #5b5bd3 70.32%);
  padding: 6px;
  font-weight: 500;
  text-align: center;
  line-height: 120%;
  position: relative;
}
.header .advertising * {
  color: #fff;
}
.header .advertising .close {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.header .advertising a {
  color: #fff;
}
.header .advertising a:hover {
  text-decoration: underline;
}
.header__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid #e3e9ec;
}
.header .menu__list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header .menu__list a {
  color: var(--grey-color);
  transition: all 0.1s ease-in-out;
}
.header .menu__list a:hover {
  color: var(--orange-color);
}
.header__info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header .shopping-cart {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header .shopping-cart img {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
}
.header .shopping-cart span {
  font-weight: 500;
  font-size: 16px;
  color: var(--grey-color);
}
.languages {
  position: relative;
}
.languages__current {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: 0 0;
  border: none;
}
.languages__current img {
  width: 19px;
  height: 19px;
}
.languages__current span {
  font-weight: 500;
  font-size: 16px;
  color: var(--grey-color);
  line-height: 120%;
}
.languages img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}
.languages__list {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 10;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px 12px;
  width: 70px;
  border-radius: 5px;
  left: -12px;
  margin-top: 10px;
}
.languages__list li a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.languages__list li a span {
  transition: 0.1s ease-in-out;
}
.languages__list li a:hover span {
  color: var(--orange-color);
}
.languages.active .languages__list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.languages * {
  font-weight: 500 !important;
}
.btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btns a {
  position: relative;
  z-index: 9;
}
.number__block {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 3px;
}
.number__block a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--grey-color);
  transition: color 0.1s ease-in-out;
}
.number__block a:hover {
  color: var(--orange-color);
}
.number__block .descript {
  font-size: 14px;
  color: var(--grey-light-color);
  text-align: right;
}
.register {
  padding: 10px 14px;
  color: #fff;
  background-color: var(--orange-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
  z-index: 9;
  font-size: 16px;
  line-height: 120%;
  box-shadow: 0 4px 20px 0 rgba(249, 112, 4, 0.2);
  text-align: center;
}

.register span {
  color: #fff;
  font-weight: 500;
}

.register:hover {
  background-color: #ff7913;
}
.burger-menu__blocks {
  display: none;
  flex-direction: column;
}
.burger-menu__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid #e3e9ec;
  padding: 12px 0;
}
.burger-menu__top.slidedown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-animation: slidedown 0.7s forwards;
  animation: slidedown 0.7s forwards;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  background-color: #fff;
  padding: 12px 15px;
}
@keyframes slidedown {
  from {
    top: -250px;
  }
  to {
    top: 0;
  }
}
.burger-menu__below {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
}
.burger-menu .burger-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.burger-menu .burger-btn img {
  width: 100%;
  height: 100%;
}
.burger-menu .burger-btn:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.burger-menu .burger-btn img {
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease,
    -webkit-transform 0.2s ease;
}
.burger-menu .register * {
  color: #fff;
}
.dropdown-menu {
  position: fixed;
  top: 14px;
  width: 100%;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  transition: opacity 0.35s ease, visibility 0.35s, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s,
    -webkit-transform 0.35s ease;
  pointer-events: none;
}
.dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dropdown-menu__blocks {
  padding: 32px 22px;
  background-color: #e9f0ff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  gap: 32px;
}
.dropdown-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.dropdown-menu .logo {
  max-width: 162px;
  min-width: 162px;
}
.dropdown-menu .menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.dropdown-menu .menu__list * {
  font-weight: 500;
  font-size: 20px;
}
.dropdown-menu .register * {
  color: #fff;
}
.dropdown-menu .register * {
  color: #fff;
}
.dropdown-menu .shopping-cart {
  display: flex;
  gap: 8px;
}
.dropdown-menu .shopping-cart * {
  font-weight: 500;
  font-size: 20px !important;
}
.dropdown-menu .number__block {
  align-items: start;
}
.dropdown-menu .number__block a {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.footer__blocks {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: end;
  padding: 12px 0 20px 0;
  border-top: 1px solid #e3e9ec;
}
.footer .up {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer .up * {
  transition: color 0.2s ease-in-out;
  font-size: 16px;
}
.footer .up svg {
  width: 9px;
  height: 11px;
}
.footer .up:hover * {
  color: var(--orange-color);
}
.footer .policy-link {
  line-height: 120%;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.footer .policy-link:hover {
  color: var(--orange-color);
}
.footer .author-picture {
  display: flex;
  align-items: end;
  gap: 5px;
}
.up-block {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}
.main__blocks {
  display: flex;
  align-items: center;
  min-height: 600px;
  background: linear-gradient(
    180deg,
    #bcdefa 0,
    #bddefb 26.33%,
    #b1dbf9 66.35%,
    #b1dbf9 81.73%,
    #95cff9 100%
  );
  border-radius: 20px;
  padding: 36px 42px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main__slide {
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main .info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 85px;
  padding-bottom: 81px;
}

.main__slide-info .logo {
  width: 256px;
}

.main .info .above-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-color);
}
.main .info .title {
  max-width: 720px;
  width: 100%;
  font-size: 46px;
  font-weight: 600;
  color: #2f2f6d;
}
.main .info .descript {
  max-width: 580px;
  width: 100%;
  line-height: 120%;
  color: var(--blue-color);
  font-size: 18px;
}
.main__picture {
  display: block;
}
.main .hide-mobile {
  display: block;
}
.main .show-mobile {
  display: none;
}
.main .register {
  padding: 13.5px 18px;
}
.main .btns {
  gap: 12px;
}
.about {
  padding-top: 35px;
  padding-bottom: 52px;
}
.about__blocks {
  display: flex;
  flex-direction: column;
}
.about__top {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.about__top .title {
  font-weight: 600;
  color: var(--blue-color);
  font-size: 46px;
  margin-left: 44px;
  margin-bottom: 32px;
}
.about__top img {
  margin-bottom: -17px;
}
.about__list {
  background-color: #e9f0ff;
  padding: 62px 52px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 66px;
  -moz-column-gap: 66px;
  column-gap: 66px;
  row-gap: 72px;
}
.about__item {
  display: flex;
  align-items: start;
  gap: 16px;
}
.about__item img {
  width: 60px;
  height: 60px;
}
.about__item-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__item-info h3 {
  color: var(--blue-color);
  font-size: 26px;
  line-height: 120%;
  font-weight: 600;
}
.about__item-info .descript {
  color: var(--blue-color);
  font-size: 18px;
  max-width: 484px;
  width: 100%;
}
.healthy__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 52px 42px;
  border-radius: 20px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #f97004 0, #5b5bd3 70.32%) border-box;
  border: 3px solid transparent;
  position: relative;
}
.healthy__blocks::after {
  position: absolute;
  left: 50%;
  bottom: -26px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  background-repeat: no-repeat;
  background-image: url(assets/img/svg/healthy-logo.svg);
  max-width: 242px;
  width: 100%;
  height: 55px;
}
.healthy__blocks::before {
  position: absolute;
  top: 55%;
  left: 44.5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background-position: center;
  background-image: url(assets/img/main/pow.webp);
  background-repeat: no-repeat;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 270px;
  height: 270px;
  background-size: cover;
}
.healthy__info {
  display: flex;
  flex-direction: column;
  gap: 52px;
  z-index: 9;
}
.healthy__info h2 {
  color: var(--grey-color);
  font-size: 46px;
  line-height: 120%;
  font-weight: 600;
  max-width: 450px;
  width: 100%;
}
.healthy__info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 502px;
  width: 100%;
}
.healthy__info-list p {
  color: var(--grey-color);
  font-size: 18px;
  line-height: 120%;
}
.healthy__pictures {
  display: flex;
}
.healthy__picture-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.healthy__picture-text svg {
  position: absolute;
  bottom: -85px;
  margin-right: -50px !important;
}
.healthy__picture-text svg * {
  width: auto;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
}
.healthy .picture-text-02 svg {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.healthy__picture-02 {
  border-radius: 50%;
  border: 5px solid #f97004;
}
.healthy .pic {
  max-width: 280px;
  min-width: 280px;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.healthy .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.healthy__picture-01 {
  margin-right: -50px;
  z-index: 9;
  border: 5px solid #555ad3;
  border-radius: 50%;
}
.healthy__picture-01 .pic img {
  -o-object-position: top;
  object-position: top;
}
.healthy .picture-text-01 .arc-text {
  bottom: -135px;
  margin-left: 120px;
}
.healthy .picture-text-02 .arc-text {
  bottom: -95px;
}

.pricing {
  position: relative !important;
}

.pricing__blocks {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 52px;
  gap: 32px;
}
.pricing__top h2 {
  font-weight: 600;
  font-size: 46px;
  line-height: 120%;
  text-align: center;
  color: var(--blue-color);
}
.pricing__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}
.pricing__item {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  background-color: #f3f7f9;
  border-radius: 20px;
  padding: 0 25px 35px 25px;
  margin-top: 150px;
  min-height: 600px;
  max-width: 405px;
  width: 100%;
}
.pricing__item-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.pricing__item-top h3 {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  color: var(--blue-color);
}
.pricing__item-top p {
  font-size: 18px;
  line-height: 120%;
  color: var(--blue-color);
  text-align: center;
}
.pricing__item-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing__item-active {
  background-color: #e9f0ff;
}
.pricing__image {
  max-width: 300px;
  width: 100%;
  height: 300px;
  max-height: 300px;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
  margin-top: -140px;
  position: relative;
  overflow: hidden;
}
.pricing__image-orange {
  border: 5px solid #f97004;
}
.pricing__image-blue {
  border: 5px solid #555ad3;
}
.pricing__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pricing__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pricing__prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__prices li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  padding: 12px 16px;
  background-color: #fff;
  border-radius: 8px;
}
.pricing__prices li * {
  color: #2f2f6d;
}
.pricing__prices li span {
  font-weight: 600;
}
.pricing .btns {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.pricing .btns-social {
  display: flex;
  gap: 12px;
}
.pricing .register {
  padding: 13.5px 18px;
}
.pricing .video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pricing .video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.pricing .video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  width: 100%;
  height: 100%;
}
.pricing .video-modal.active .video-modal__overlay {
  opacity: 1;
}
.pricing .video-modal__content {
  position: relative;
  max-width: 800px;
  width: 90%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  z-index: 1;
  -webkit-transform: translateY(0) scale(0.95);
  transform: translateY(0) scale(0.95);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.pricing .video-modal.active .video-modal__content {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pricing .video-modal video {
  width: 100%;
  display: block;
}
.pricing .video-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: 0 0;
  border: none;
  font-weight: 600;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.1s ease-in-out;
}
.pricing .video-modal__close:hover {
  color: var(--orange-color);
}
.services {
  margin-bottom: 92px;
}
.services__blocks {
  display: flex;
  gap: 54px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e3e9ec;
}
.services__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__item-02 {
  max-width: 300px;
  width: 100%;
  margin-top: 5px;
  margin-right: 100px;
}
.services__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.services__icon {
  min-width: 89px;
  height: 89px;
  max-height: 89px;
  max-width: 89px;
  border: 3px solid #555ad3;
  border-radius: 50%;
  overflow: hidden;
}
.services__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 323px;
  width: 100%;
}
.services__heading h3 {
  color: var(--grey-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
}
.services__heading p {
  font-size: 18px;
  line-height: 120%;
  color: var(--grey-color);
}
.services__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services__price {
  padding: 12px 16px;
  background-color: #f3f7f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 120%;
}
.services__price-name {
  font-weight: 500;
}
.services__price-value {
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}
.services__price * {
  font-size: 18px;
  color: var(--blue-color);
}
.services .btns .register {
  padding: 13.5px 18px;
}
.services .btns-social {
  display: flex;
  gap: 12px;
}

.services .btns-social a {
  width: 46px;
  height: 46px;
}

.services .btns-social img {
  width: 46px;
  height: 46px;
}

.products {
  margin-bottom: 112px;
}

.products__blocks {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 42px;
  border-radius: 20px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #f97004 0, #5b5bd3 70.32%) border-box;
  border: 3px solid transparent;
  position: relative;
}

.products__blocks::after {
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  background-repeat: no-repeat;
  background-image: url(assets/img/svg/vegapets.svg);
  max-width: 200px;
  width: 100%;
  height: 100px;
}
.products__info {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 41px;
  padding: 52px 0;
}
.products__info-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products__info h2 {
  color: var(--grey-color);
  font-size: 46px;
  line-height: 120%;
  font-weight: 600;
  max-width: 499px;
  width: 100%;
}
.products__info p {
  color: var(--grey-color);
  font-size: 18px;
  line-height: 120%;
  max-width: 428px;
  width: 100%;
}
.products .shop-link {
  padding: 13.5px 18px;
  color: #fff;
  background-color: var(--orange-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
  z-index: 9;
  font-size: 16px;
  line-height: 120%;
  box-shadow: 0 4px 20px 0 rgba(249, 112, 4, 0.2);
  display: flex;
  gap: 3px;
}
.products .shop-link span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.products .shop-link:hover {
  background-color: #ff7913;
}
.products__pictures {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
}
.products__picture {
  position: relative;
  min-width: 174px;
  height: 280px;
}
.products__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}
.products__picture:nth-child(1) {
  z-index: 1;
}
.products__picture:nth-child(2) {
  z-index: 2;
  margin-left: -30px;
  top: 20px;
}
.products__picture:nth-child(3) {
  z-index: 3;
  margin-left: -30px;
  top: 80px;
}
.products__picture:nth-child(4) {
  z-index: 4;
  margin-left: -30px;
  top: 20px;
}
.products .show-mobile {
  display: none;
}
.products .hide-mobile {
  display: flex;
}
.steps__blocks {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
}
.steps h2 {
  color: var(--grey-color);
  font-size: 46px;
  line-height: 120%;
  font-weight: 600;
  max-width: 499px;
  width: 100%;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.steps__item {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  background-color: #f3f7f9;
}
.steps__item h3 {
  font-size: 26px;
  color: var(--blue-color);
  font-weight: 600;
}
.steps__item p {
  color: var(--blue-color);
  line-height: 120%;
  font-size: 18px;
}
.steps .recommended {
  background-color: #e9f0ff;
}
.steps .step-number {
  padding: 8px;
  font-weight: 500;
  background-color: #fff;
  color: #282d2f;
  border-radius: 8px;
}
.steps .btns .register {
  padding: 13.5px 18px;
}
.steps .btns-social {
  display: flex;
  gap: 12px;
}
.team {
  padding-top: 92px;
}
.team__blocks {
  display: flex;
  flex-direction: column;
}
.team__top {
  display: flex;
  gap: 15px;
  align-items: end;
  justify-content: space-between;
}
.team__top-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 82px;
}
.team__top-info h2 {
  font-weight: 600;
  font-size: 46px;
  color: #2f2f6d;
  line-height: 120%;
}
.team__top-info p {
  max-width: 475px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: #282d2f;
  line-height: 120%;
}
.team .team-list {
  background-color: #e9f0ff;
  border-radius: 60px;
  margin-top: -42px;
}
.team .team-list__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 52px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 62px 0;
}
.team .team-list__block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team .team-list__pic {
  min-width: 250px;
  width: 250px;
  max-width: 250px;
  max-height: 250px;
  min-height: 250px;
  border-radius: 50%;
  overflow: hidden;
}
.team .team-list__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.team .team-list .pic-orange .team-list__pic {
  border: 5px solid #f97004;
}
.team .team-list .pic-orange .team-list__info h3 {
  color: #f97004;
}
.team .team-list .pic-blue .team-list__pic {
  border: 5px solid #555ad3;
}
.team .team-list .pic-blue .team-list__info h3 {
  color: #555ad3;
}
.team .team-list__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team .team-list__info h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  color: var(--blue-color);
}
.team .team-list__info p {
  max-width: 350px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: var(--blue-color);
  line-height: 120%;
}
.team-pic {
  margin-right: 25px;
}
.check {
  padding: 52px 0 0 0;
}
.check__blocks {
  padding: 42px 42px 35px 42px;
  border: 3px solid;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #f97004 0, #5b5bd3 70.32%) border-box;
  border: 3px solid transparent;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}
.check__blocks::before {
  position: absolute;
  top: 40%;
  left: 33%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background-position: center;
  background-image: url(assets/img/main/pow.webp);
  background-repeat: no-repeat;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 270px;
  height: 270px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  background-size: cover;
}
.check__info {
  display: flex;
  flex-direction: column;
  gap: 99px;
}
.check__info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check__info-list h2 {
  font-weight: 600;
  font-size: 46px;
  line-height: 120%;
}
.check__info-list p {
  font-size: 18px;
  line-height: 120%;
  max-width: 670px;
  width: 100%;
}
.check .show-mobile {
  display: none;
}
.check__pictures {
  display: flex;
}
.check__picture-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.check .picture-text-01 .under-text {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
  margin-right: -40px;
  margin-top: -10px;
}
.check .picture-text-02 .under-text {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  margin-right: 0;
  margin-top: -5px;
}

.check .picture-text-02 svg {
  width: 240px;
  height: 50px;
  margin-bottom: 70px;
  z-index: 9;
}

.check__picture-02 {
  border-radius: 50%;
  border: 5px solid #f97004;
}
.check .pic {
  max-width: 280px;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.check .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.check .btns .register {
  padding: 13.5px 18px;
}
.check .btns-social {
  display: flex;
  gap: 12px;
}
.faq__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 55px 0 92px 0;
}
.faq__top h2 {
  font-weight: 600;
  font-size: 46px;
  line-height: 120%;
  text-align: center;
  color: var(--blue-color);
}
.faq__list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  align-items: start;
  justify-content: start;
  -webkit-column-gap: 28px;
  -moz-column-gap: 28px;
  column-gap: 28px;
}
.faq__item {
  flex-direction: column;
  display: inline-flex;
  height: 100%;
  width: 100%;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  background-color: #f3f7f9;
  padding: 24px 32px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.faq__icon {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.faq__item.active {
  background-color: #e9f0ff;
}
.faq__item.active .faq__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq__question {
  display: flex;
  align-items: start;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
}
.faq__question span {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--blue-color);
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
  margin: 0;
  padding: 0;
}
.faq__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--blue-color);
  margin: 0;
  margin-top: 12px;
}
.contacts {
  padding-bottom: 32px;
}
.contacts__blocks {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.contacts__wrap {
  max-width: 470px;
  width: 100%;
  z-index: 9;
}
.contacts__block {
  padding: 52px 32px;
  max-width: 470px;
  border-radius: 20px;
  background-color: #e9f0ff;
  width: 100%;
  height: 100%;
}
.contacts__block {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
.contacts__info * {
  color: #2f2f6d;
}
.contacts__info h2 {
  font-weight: 600;
  font-size: 46px;
  line-height: 100%;
  text-align: center;
  color: var(--blue-color);
}
.contacts__info .item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}
.contacts__info .item span {
  font-size: 18px;
  line-height: 100%;
}
.contacts__info .item a {
  transition: color 0.2s ease-in-out;
}
.contacts__info .item a:hover {
  color: var(--orange-color);
}
.contacts__info .item a,
.contacts__info .item p {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}
.contacts__info a * {
  transition: color 0.2s ease-in-out;
}
.contacts__info a *:hover {
  color: var(--orange-color);
}
.contacts__info .social-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contacts__info .social-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contacts .btns {
  gap: 12px;
}
.contacts .btns .register {
  padding: 13.5px 18px;
}
.contacts__map {
  width: 100%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0) 0,
    rgba(233, 240, 255, 0.2) 100%
  );
  border-radius: 20px;
  overflow: hidden;
}
.contacts__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts .btns .register {
  padding: 13.5px 18px;
}
.contacts .btns-social {
  display: flex;
  gap: 12px;
}
.contacts .destination {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 120%;
  text-decoration: underline;
}
.works {
  padding: 92px 0 0 0;
}
.works__container {
  max-width: 1310px;
  margin: 0 auto;
}
.works__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.works h2 {
  font-weight: 600;
  font-size: 46px;
  color: #2f2f6d;
  line-height: 120%;
}
.works .works__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: 0 0;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.works .works__btn svg.icon {
  width: 31px;
  height: 31px;
  display: block;
}
.works .works__btn use {
  transition: color 0.2s ease-in-out;
}
.works .works__btn:hover use {
  color: var(--orange-color);
}
.works .swiper-pagination {
  position: relative;
}
.works__nav {
  display: flex;
  gap: 8px;
}
.works__btn--next svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.works__slider {
  overflow: hidden;
}
.works__slide {
  width: 300px;
  flex-shrink: 0;
}
.works__pagination {
  text-align: center;
}
.works .works__pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  top: 0;
}
.works .works__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #dfe8ec;
  opacity: 1;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  padding: 0;
  margin: 0;
}
.works
  .works__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f97004;
}
.compare {
  position: relative;
  width: 300px;
  height: 398px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.compare__img--after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s linear;
}
.compare__handle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 40px;
  cursor: ew-resize;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: #f97004;
}
@media (max-width: 1200px) {
  .header__blocks {
    display: none;
  }
  .burger-menu__blocks {
    display: flex;
  }
  .main__blocks {
    min-height: 500px;
  }
  .main .info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .main .info .title {
    font-size: 35px;
  }
  .about__top .title {
    font-size: 35px;
  }
  .healthy__blocks::before {
    display: none;
  }
  .healthy__info h2 {
    font-size: 35px;
    max-width: 100%;
    width: 100%;
  }
  .healthy__picture-text svg {
    margin-right: 0 !important;
    bottom: -85px;
  }
  .healthy .pic {
    height: 230px;
    max-width: 230px;
    min-width: 230px;
  }
  .pricing__blocks {
    gap: 14px;
    padding-top: 88px;
  }
  .pricing__top h2 {
    font-size: 35px;
  }
  .pricing__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .services {
    margin-bottom: 52px;
  }
  .services__blocks {
    gap: 20px;
  }
  .services__item-02 {
    margin-right: 0;
  }
  .products {
    margin-bottom: 70px;
  }
  .products__blocks {
    width: 100%;
    gap: 16px;
  }
  .products__info {
    width: 100%;
    gap: 16px;
    padding-bottom: 113px;
  }
  .products__info-top {
    width: 100%;
    gap: 16px;
  }
  .products__info h2 {
    width: 100%;
    max-width: 100%;
    font-size: 35px;
  }
  .products__info p {
    width: 100%;
    max-width: 100%;
  }
  .products .shop-link {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .products .show-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .products .hide-mobile {
    display: none;
  }
  .steps h2 {
    font-size: 35px;
  }
  .team {
    padding-top: 52px;
  }
  .team__top-info h2 {
    font-size: 35px;
  }
  .team .team-list__blocks {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 32px;
    padding: 40px 0;
  }
  .team .team-list__block {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .team-pic {
    margin-right: 0;
  }
  .check__blocks::before {
    display: none;
  }
  .check__info-list h2 {
    font-size: 35px;
  }
  .check .pic {
    height: 230px;
    max-width: 230px;
    min-width: 230px;
  }
  .faq__top h2 {
    font-size: 35px;
  }
  .faq__list {
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
  .contacts__info h2 {
    font-size: 35px;
  }
  .works {
    padding: 52px 0 0 0;
  }
  .works h2 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .services__blocks {
    flex-direction: column;
    gap: 52px;
  }
}
@media (max-width: 992px) {
  .header {
    padding-bottom: 15px;
  }
  .main__blocks {
    padding: 32px 22px;
    min-height: auto;
  }
  .main__slide {
    width: 100%;
    padding: 0;
  }
  .main__slide-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .main__slide-info .logo {
    width: 192px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }
  .main .info {
    padding: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .main .info .main__picture {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
  .main .info .title {
    max-width: 100%;
    font-size: 30px;
    text-align: left;
  }
  .main .info .descript {
    max-width: 100%;
    text-align: left;
  }
  .main .hide-mobile {
    display: none;
  }
  .main .show-mobile {
    display: block;
  }
  .main .btns {
    margin-top: 8px;
  }
  .about {
    padding-top: 52px;
  }
  .about__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .about__top .title {
    margin-left: 0;
    margin-bottom: 0;
    line-height: 100%;
  }
  .about__top img {
    margin-bottom: -12px;
    width: 317px;
  }
  .about__list {
    gap: 32px;
    padding: 32px 22px;
    grid-template-columns: repeat(1, 1fr);
  }
  .about__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about__item img {
    width: auto;
    height: auto;
  }
  .about__item-info h3 br {
    display: none;
  }
  .about__item-info .descript {
    max-width: 100%;
  }
  .healthy__blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
    padding: 32px 22px 62px 22px;
  }
  .healthy__info {
    gap: 16px;
    justify-content: start;
    width: 100%;
    align-items: start;
  }
  .healthy__info h2 {
    line-height: 100%;
  }
  .healthy__info h2 br {
    display: none;
  }
  .healthy__info-list {
    max-width: 100%;
  }
  .healthy__picture-01 {
    z-index: 1;
  }
  .healthy__picture-02 {
    z-index: 9;
  }
  .pricing__top h2 {
    margin-bottom: 0;
    line-height: 100%;
  }
  .products__blocks {
    padding: 0 0;
  }
  .products__info {
    padding: 32px 22px;
    padding-bottom: 113px;
  }
  .products__info h2 {
    margin-bottom: 0;
    line-height: 100%;
  }
  .steps__blocks {
    flex-direction: column;
    gap: 32px;
  }
  .steps h2 {
    line-height: 100%;
    text-align: left;
  }
  .steps__item {
    padding: 32px 22px;
  }
  .team__top {
    flex-direction: column;
    align-items: start;
    justify-content: baseline;
    gap: 32px;
  }
  .team__top-info {
    margin-bottom: 0;
  }
  .team__top-info p {
    width: 100%;
    max-width: 100%;
  }
  .team .team-list {
    border-radius: 30px;
    margin-top: -25px;
  }
  .team-pic {
    margin: 0 auto;
    max-width: 349px;
    width: 100%;
  }
  .check__blocks {
    padding: 32px 22px;
  }
  .check__info {
    gap: 32px;
    width: 100%;
  }
  .check__info-list {
    gap: 16px;
  }
  .check .show-mobile {
    display: flex;
    margin: 0 auto;
    max-width: 317px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .check .hide-mobile {
    display: none;
  }
  .check__picture-02 {
    z-index: 9;
  }
  .faq__blocks {
    padding: 52px 0 38px 0;
  }
  .faq__top h2 {
    line-height: 100%;
  }
  .faq__list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .faq__item {
    padding: 24px 22px;
  }
  .contacts__container {
    padding: 0;
  }
  .contacts__blocks {
    gap: 0;
    flex-direction: column-reverse;
  }
  .contacts__wrap {
    margin: 0 auto;
    margin-top: -55px;
    padding: 0 15px;
    width: auto;
    justify-content: center;
    align-items: center;
  }
  .contacts__block {
    padding: 32px 22px;
  }
  .contacts__info .social-list {
    flex-direction: column;
    gap: 12px;
    align-items: start;
  }
  .contacts__map {
    min-height: 333px;
    height: 333px;
  }
}
@media (max-width: 840px) {
  .footer__blocks {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .footer .up {
    position: absolute;
    top: 35px;
    right: 0;
  }
}
@media (max-width: 768px) {
  .pricing__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .pricing__item {
    gap: 20px;
    padding: 0 22px 32px 22px;
    min-height: auto;
  }
  .pricing .pricing__list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .pricing .pricing__item {
    order: 2;
  }
  .pricing .pricing__item-active {
    order: 1;
  }
}
@media (max-width: 668px) {
  .healthy__picture-text svg {
    margin-right: 55px !important;
    bottom: -85px;
  }
  .healthy .pic {
    height: 180px;
    max-width: 180px;
    min-width: 180px;
  }
  .check .pic {
    height: 180px;
    max-width: 180px;
    min-width: 180px;
  }
  .works .works__btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .header .advertising {
    display: flex;
    justify-content: space-between;
    padding: 6px 15px;
    font-size: 15px;
    text-align: left;
    gap: 10px;
  }
  .header .advertising .close {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    right: 0;
  }
}
@media (max-width: 420px) {
  .burger-menu .register {
    padding: 9px 12px;
    font-size: 14px;
    line-height: 120%;
  }

  .header .btns a:not(.register) {
    height: 35px;
  }

  .header .register {
    padding: 9px 7px;
  }

  .header .btns img {
    height: 35px;
    width: 35px;
  }

  .burger-menu .social-btn {
    width: 35px;
    height: 35px;
  }
  .dropdown-menu .social-btn {
    width: 35px;
    height: 35px;
  }
  .dropdown-menu .register {
    padding: 9px 12px;
    font-size: 14px;
    line-height: 120%;
  }
  .steps h2 {
    max-width: 360px;
    width: 100%;
  }
}
@media (max-width: 390px) {
  .burger-menu .burger-btn {
    width: 30px;
    height: 30px;
  }
  .pricing__item {
    padding: 0 22px 32px 22px;
    min-height: auto;
  }
  .check .picture-text-02 .under-text {
    max-width: 100px;
    min-width: 100px;
  }
  .check .pic {
    height: 150px;
    max-width: 150px;
    min-width: 150px;
  }
}
@media (max-width: 385px) {
  .burger-menu__top {
    gap: 15px;
  }
  .healthy .pic {
    height: 150px;
    max-width: 150px;
    min-width: 150px;
  }
  .healthy .picture-text-01 .arc-text {
    margin-left: 90px;
    bottom: -130px;
  }
  .healthy .picture-text-01 .arc-text * {
    font-size: 15px !important;
  }
  .healthy .picture-text-02 .arc-text {
    bottom: -95px;
  }
  .healthy .picture-text-02 .arc-text * {
    font-size: 15px !important;
  }
  .services__price {
    padding: 12px;
  }
  .services__price * {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .header .advertising p {
    max-width: 200px;
    width: 100%;
  }
  .burger-menu .register span {
    display: none;
  }
  .dropdown-menu .register span {
    display: none;
  }
}
@media (max-width: 375px) {
  .header .burger-menu__top {
    gap: 8px;
  }

  .main .info .title {
    font-size: 25px;
  }
  .main .info .descript {
    font-size: 16px;
  }
  .main .btns {
    gap: 10px;
  }
  .main .btns .register {
    padding: 9px 12px;
    font-size: 14px;
    line-height: 120%;
  }
  .main .btns .social-btn {
    width: 35px;
    height: 35px;
  }
  .about__top img {
    margin-bottom: -9px;
    width: 250px;
  }
  .healthy__blocks::after {
    bottom: -20px;
    height: 45px;
    max-width: 200px;
    width: 100%;
    background-size: contain;
  }
  .pricing__item-top h3 {
    font-size: 22px;
  }
  .pricing__item-top p {
    font-size: 16px;
  }
  .pricing__item-top p br {
    display: none;
  }
  .pricing__image {
    max-width: 270px;
    width: 100%;
    height: 270px;
    max-height: 270px;
  }
  .pricing__prices li {
    font-size: 16px;
  }
  .pricing .btns .register {
    padding: 9px 12px;
    font-size: 14px;
  }
  .pricing .btns-social a {
    width: 35px;
    height: 35px;
  }
  .services .btns .register {
    padding: 9px 12px;
    font-size: 14px;
  }
  .services .btns-social a {
    width: 35px;
    height: 35px;
  }

  .services .btns-social a {
    width: 35px;
    height: 35px;
  }

  .services .btns-social img {
    width: 35px;
    height: 35px;
  }

  .steps .btns .register {
    padding: 9px 12px;
    font-size: 14px;
  }
  .steps .btns-social a {
    width: 35px;
    height: 35px;
  }
  .check .btns .register {
    padding: 9px 12px;
    font-size: 14px;
  }
  .check .btns-social a {
    width: 35px;
    height: 35px;
  }
  .contacts .btns .register {
    padding: 9px 12px;
    font-size: 14px;
  }
  .contacts .btns-social a {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 370px) {
  .services__header {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .faq__icon {
    width: 25px;
    height: 25px;
  }
  .faq__question span {
    font-size: 20px;
  }
  .faq__text {
    font-size: 16px;
  }
}
@media (max-width: 345px) {
  .products .shop-link span {
    display: none;
  }
}
@media (max-width: 340px) {
  .pricing__image {
    max-width: 245px;
    width: 100%;
    height: 245px;
    max-height: 245px;
  }
  .pricing__prices li {
    font-size: 16px;
    gap: 3px;
    padding: 12px !important;
  }
  .check .picture-text-02 .under-text {
    max-width: 90px;
    min-width: 90px;
  }
  .check .pic {
    height: 140px;
    max-width: 140px;
    min-width: 140px;
  }
  .contacts__info .item span {
    font-size: 16px;
  }
  .contacts__info .item a,
  .contacts__info .item p {
    font-size: 20px;
  }
  .contacts .destination {
    font-size: 16px !important;
  }
}
@media (max-width: 325px) {
  .check .btns .register {
    padding: 9px 10px;
    font-size: 14px;
  }
  .check .btns-social {
    gap: 11px;
  }
}
@media (max-width: 321px) {
  .pricing .btns .register {
    padding: 9px 11px;
    font-size: 14px;
  }
  .contacts .btns .register {
    padding: 9px 11px;
  }
}

/* Анимация */

.about .scroll-animate,
.healthy .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out;
}

.pricing__top .scroll-animate {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s ease-in-out;
}

.pricing .scroll-animate-list > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.steps .scroll-animate-list > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-list > *.active {
  opacity: 1;
  transform: translateY(0);
}

.check .scroll-animate,
.products .scroll-animate {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.check .scroll-animate.active,
.products .scroll-animate.active {
  opacity: 1;
  transform: scale(1);
}

.pricing .scroll-animate,
.steps .scroll-animate {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s ease-in-out;
}

.team .scroll-animate {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== */
.contacts .btns-social a,
.check .btns-social a,
.steps .btns-social a,
.pricing .btns-social a,
.services .btns-social a {
  width: 46px;
  height: 46px;
}

.contacts .btns-social img,
.check .btns-social img,
.steps .btns-social img,
.pricing .btns-social img,
.services .btns-social img {
  width: 46px;
  height: 46px;
}

@media (max-width: 375px) {
  .contacts .btns-social a,
  .check .btns-social a,
  .steps .btns-social a,
  .pricing .btns-social a,
  .services .btns-social a {
    width: 35px;
    height: 35px;
  }

  .contacts .btns-social img,
  .check .btns-social img,
  .steps .btns-social img,
  .pricing .btns-social img,
  .services .btns-social img {
    width: 35px;
    height: 35px;
  }
}

/* ===================== */

.pricing__item {
  transform: none !important;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  z-index: 2;
}

.video-modal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.text-btn.register .btn-mobile {
  display: none;
}

@media (max-width: 380px) {
  .header .register {
    padding: 9px 12px;
    font-size: 14px;
  }

  .text-btn.register .btn-desktop {
    display: none;
  }

  .text-btn.register .btn-mobile {
    display: inline-flex;
  }
}

@media (max-width: 375px) {
  .main .btns img,
  .main .btns a:not(.register) {
    padding: 0;
    width: 35px;
    height: 35px;
  }
}
