@charset "UTF-8";
:root {
  --font-family: "Golca", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-family: "Roboto Flex", sans-serif;
  --font3: "Inter", sans-serif;
  --content-width: 160rem;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --red: #dc0000;
  --grey: #58595b;
  --white: #fff;
  --grad-blue: #4ca6bd;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaBold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaBoldItalic.woff2) format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Golca Extra";
  src: url(../fonts/GolcaExtraBoldItalic.woff2) format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Golca Semi";
  src: url(../fonts/GolcaSemiBoldItalic.woff2) format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Golca Semi";
  src: url(../fonts/GolcaSemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaMedium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaLight.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaRegular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(GolcaLightItalic.woff2) format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaMediumItalic.woff2) format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Golca Extra";
  src: url(../fonts/GolcaExtraLight.woff2) format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golca Extra";
  src: url(../fonts/GolcaExtraLightItalic.woff2) format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaThin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golca Extra";
  src: url(../fonts/GolcaExtraBold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Golca;
  src: url(../fonts/GolcaThinItalic.woff2) format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.5208333333vw;
}
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}
.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  background-image: url(../img/bg_polygon.svg);
  background-size: cover;
  background-repeat: repeat;
}
img {
  width: 100%;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
a {
  text-decoration: none;
}
.site-container {
  overflow: hidden;
}
.is-hidden {
  display: none !important;
}
.btn-reset {
  border: none;
  padding: 0;
  background: 0 0;
  cursor: pointer;
}
.red {
  font-family: var(--font-family);
  font-weight: 800;
  color: var(--red);
}
.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}
.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}
.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}
.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}
.centered {
  text-align: center;
}
.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.page--ios .dis-scroll {
  position: relative;
}
.apteki {
  margin-top: 8rem;
}
.apteki__top-text {
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 110%;
  margin-bottom: 6.7rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .apteki__top-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 2.6666666667vw;
  }
  .container {
    max-width: 1600px;
  }
  .apteki {
    margin-top: 5rem;
  }
  .apteki__top-text {
    margin-bottom: 1.7rem;
    font-size: 1.8rem;
  }
}
.apteki__title {
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 110%;
  color: #58595b;
  margin: 0 0 5rem;
}
.apteki__title span {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 129%;
  color: #58595b;
}
@media (max-width: 768px) {
  .apteki__title span {
    font-size: 15px;
  }
  .apteki__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .apteki__title span {
    font-size: 1.5rem;
  }
  .apteki__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.apteki__grid {
  display: -ms-grid;
  display: grid;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  border-radius: 2.4rem;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  padding: 7.2rem 9rem;
  margin-bottom: 9rem;
  gap: 2rem;
}
.apteki__grid-item {
  min-width: 34rem;
  min-height: 19rem;
  -webkit-box-shadow: 12px 12px 33px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 12px 12px 33px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  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;
}
.apteki__grid-item img {
  width: 20rem;
}
@media (max-width: 768px) {
  .apteki__grid {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 20px;
    margin-bottom: 50px;
  }
  .apteki__grid-item img {
    width: 40rem;
  }
  .apteki__grid-item {
    min-height: 30rem;
  }
}
@media (max-width: 576px) {
  .apteki__grid {
    border-radius: 18px;
    gap: 1rem;
    padding: 2rem;
    margin-bottom: 5rem;
  }
  .apteki__grid-item img {
    width: 10rem;
  }
  .apteki__grid-item {
    height: 7rem;
    width: 100%;
    min-height: unset;
    min-width: unset;
  }
  .apteki__grid-item-ozer img {
    width: 5rem;
  }
}
.apteki__num {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  color: #828282;
  margin-bottom: 28px;
}
.faq {
  margin: 100px 0;
}
.faq__wrapper {
  padding: 7rem 13rem;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 576px) {
  .apteki__num {
    font-size: 14px;
  }
  .faq {
    margin: 5rem 0;
  }
  .faq__wrapper {
    border-radius: 12px;
    margin: 0 -1.5rem;
    gap: 0.5rem;
    padding: 3rem 2rem;
  }
}
.faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 800;
  font-size: 6.4rem;
  line-height: 130%;
  color: #fff;
  gap: 2.5rem;
  margin: 0 0 4.7rem;
}
.faq__title img {
  width: 21rem;
}
@media (max-width: 576px) {
  .faq__title img {
    width: 9rem;
  }
  .faq__title {
    font-size: 2rem;
  }
}
.faq__item {
  background-color: #fff;
  border-radius: 24px;
}
.accordion {
  position: relative;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-size: 3.2rem;
  border-radius: 24rem;
  background: #fff;
  font-weight: 800;
  color: #dc0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4.2rem 3.1rem 4.2rem 12.9rem;
}
.accordion::before {
  left: 5.7rem;
  top: 6.2rem;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  border-radius: 50%;
  background-color: #dc0000;
  min-width: 4.8rem;
  min-height: 4.8rem;
  background-image: url(../img/faq-qq.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 2.4rem;
}
.active::before {
  border: 1px solid #dc0000;
  background-color: #fff;
  background-image: url(../img/faq-aa.svg);
}
.panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 0 12.5rem 4.5rem;
  font-weight: 350;
  font-size: 2.4rem;
  line-height: 130%;
  color: #58595b;
  margin: 0;
}
.panel p span {
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 576px) {
  .accordion {
    font-size: 1.4rem;
    padding: 2rem 2.1rem 2rem 4.9rem;
  }
  .accordion::before {
    left: 1.3rem;
    top: 3.2rem;
    min-width: 2.8rem;
    min-height: 2.8rem;
  }
  .panel p {
    padding: 0 2.1rem 4.2rem 4.9rem;
    font-size: 1.4rem;
  }
}
.footer__upper-text {
  font-family: var(--third-family);
  font-weight: 300;
  font-size: 4rem;
  line-height: 110%;
  text-align: center;
  color: #828282;
  display: block;
  margin-bottom: 18px;
}
.footer__content {
  padding: 63px 0 47px;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
}
.footer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (31%) [3];
  grid-template-columns: repeat(3, 31%);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__upper-text {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .footer__content {
    padding: 30px 0 46px;
  }
  .footer__list {
    -ms-grid-columns: 35% 24% 36%;
    grid-template-columns: 35% 24% 36%;
  }
  .footer__item img {
    max-width: 157px;
  }
}
@media (max-width: 576px) {
  .footer__upper-text {
    margin: 0 auto 2.2rem;
    max-width: 30.3rem;
  }
  .footer__content {
    padding: 3rem 0 4.6rem;
  }
  .footer__list {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.footer__item {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4.4rem;
}
@media (min-width: 1921px) {
  .footer__item img {
    width: 27rem;
  }
  .header__logo-link {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer__item img {
    max-width: 15.7rem;
  }
  .footer__item:nth-child(1) {
    gap: 3.4rem;
  }
}
.footer__item:nth-child(2) {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  gap: 4.9rem;
}
@media (max-width: 576px) {
  .footer__item:nth-child(2) {
    -ms-flex-item-align: start;
    align-self: flex-start;
    gap: 1.6rem;
  }
}
.footer__item:nth-child(3) {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  display: block;
}
@media (max-width: 576px) {
  .footer__item:nth-child(3) {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .footer__item {
    font-family: var(--font-family);
  }
}
.footer__item-upper {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__item-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 125%;
  color: var(--white);
}
@media (max-width: 768px) {
  .footer__item-text {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .footer__item-text {
    font-family: var(--font-family);
    font-size: 1.3rem;
  }
}
.footer__item-about {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 125%;
  color: var(--white);
}
@media (max-width: 768px) {
  .footer__item-about {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .footer__item-about {
    font-family: var(--font-family);
    font-size: 1.5rem;
  }
}
.footer__link {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 125%;
  color: var(--white);
}
.popup {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.popup-content video {
  width: 124rem;
  height: 70rem;
}
@media (max-width: 1024px) {
  .popup-content video {
    width: 192rem;
    height: 108rem;
  }
}
@media (max-width: 768px) {
  .footer__link {
    font-size: 13px;
  }
  .popup-content video {
    width: 192rem;
    height: 108rem;
  }
}
@media (max-width: 576px) {
  .footer__link {
    font-size: 1.3rem;
    font-family: var(--font-family);
  }
  .popup-content video {
    width: 38rem;
    height: 21rem;
  }
}
.close {
  color: #fff;
  float: right;
  font-size: 30px;
  font-weight: 700;
}
.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
@-webkit-keyframes headerAnim {
  0%,
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes headerAnim {
  0%,
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: relative;
  background: -o-linear-gradient(133deg, #a01a19 0, #ed3427 50%, #f78e28 100%);
  background: linear-gradient(317deg, #a01a19 0, #ed3427 50%, #f78e28 100%);
  padding: 1.5rem 15px;
  z-index: 5;
  min-height: 8.3rem;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-container {
  padding-top: var(--header-height); /* Динамическая переменная */
}

.header .hidden {
  display: none;
}
.header__logo-link {
  max-width: 27.6rem;
}
.header__search {
  position: relative;
  width: 53.5rem;
}
.header #search-input {
  outline: 0;
  border-radius: 55px;
  width: 100%;
  padding: 0.8rem 6rem;
  border: 1px solid transparent;
  font-size: 3rem;
  font-family: var(--font-family);
}
.header #search-btn {
  position: absolute;
  left: 2.3rem;
  top: 51%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: none;
  background: 0 0;
  cursor: pointer;
}
.header #search-btn img {
  width: 2.1rem;
  height: 2.1rem;
}
.header #close-search {
  position: absolute;
  right: 0;
  top: 50%;
  border: none;
  background: 0 0;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header #close-search img {
  width: 1.9rem;
  height: 1.9rem;
}
.header #close-search.hidden {
  display: none;
}
.header__navigation {
  gap: 5.2rem;
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__search-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0 6px;
  }
  .header__logo-link {
    max-width: 176px;
  }
  .header__search-shop {
    display: none;
  }
}
.header__search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__search-icon img {
  width: 2.9rem;
  height: 3rem;
}
.header .search-box {
  display: none;
}
.header__purchare-link {
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 44px;
  padding: 1.3rem 3rem;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  color: var(--white);
}
.menu {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.menu__link {
  font-family: Golca, sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
}
.menu__link:hover {
  color: #d8d8d8;
}
@media (max-width: 1024px) {
  .menu__link {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .menu {
    position: fixed;
    background-color: #fff;
    bottom: 0;
    top: 49px;
    right: -100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 0 0;
    -webkit-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
  }
  .menu::after {
    content: "";
    position: absolute;
    background-image: url(../img/curve.svg);
    bottom: 0;
    left: 0;
    width: 1920px;
    height: 340px;
    background-repeat: no-repeat;
    -webkit-transform: translate(-20%, 33%);
    -ms-transform: translate(-20%, 33%);
    transform: translate(-20%, 33%);
  }
  .menu--active {
    right: 0;
    z-index: 5;
  }
  .menu__link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: var(--grey);
  }
}
.menu__item--mobile {
  display: none;
}
@media (max-width: 768px) {
  .menu__item--mobile {
    display: block;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.2rem;
  -moz-column-gap: 5.2rem;
  column-gap: 5.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .menu__list {
    padding: 0 0 0 16px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 26px;
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.burger {
  --burger-width: 24px;
  --burger-height: 22px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::after,
.burger::before {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger::before {
  top: 0;
  content: "";
  position: absolute;
  right: 0;
  width: 30px;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger--active::after {
  width: 30px;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.hero {
  padding: 10.4rem 0 0;
  background-image: url("../img/lorotricin_new_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 7.2rem 0 0; */
  width: 100%;
  margin: auto auto 120px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .hero {
    background-image: none;
    margin-bottom: 0;
    padding: 0; /* Убираем padding для hero на мобильных */
  }
  .hero .container {
    padding: 0; /* Убираем padding для hero .container на мобильных */
  }
  .hero .swiper-wrapper {
    margin: 0;
  }
  .hero__img {
    -webkit-transform: scale(1.4) !important;
    -ms-transform: scale(1.4) !important;
    transform: scale(1.4) !important;
    max-width: 29rem;
    right: -3.1rem;
  }
  .hero__title {
    font-size: 2.5rem;
    line-height: 120%;
    max-width: 27.1rem;
    margin-bottom: 2rem;
    text-align: center; /* Центрируем заголовок на мобильных */
  }
  .hero__title-part1 {
    font-size: 3rem; /* Явно устанавливаем размер шрифта для части 1 */
  }
  .hero__title-part2 {
    font-size: 2.5rem; /* Явно устанавливаем размер шрифта для части 2 */
  }
  .hero__name {
    font-size: 1.6rem;
    max-width: 21.8rem;
    line-height: 120%;
  }
  .hero__swiper {
    height: 56rem;
    margin: 0;
  }
  .hero__no-swiper {
    height: 56rem;
    margin: 0;
  }
  .hero .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid var(--grey);
    background-color: var(--red);
  }
  .hero__slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
  }
  .hero__content {
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding-top: 5rem; /* Регулируем верхний отступ для размещения контента выше */
    margin-top: 0; /* Убеждаемся, что нет дополнительного верхнего отступа */
    margin-bottom: auto; /* Прижимаем к верху внутри флекс-контейнера */
  }
  .hero__slide-mob {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/lorotricin_new_hero_mob.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .hero__man-mob {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25.5rem;
    height: 54rem;
    background-image: url("../img/loro_man.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
  }
  .hero__formula {
    margin-top: 0; /* Убираем верхний отступ */
    max-width: 18rem; /* Корректируем максимальную ширину для мобильной формулы */
    padding-left: 0;
  }
  .hero__formula img {
    width: 100%;
    height: auto;
  }
  .hero_title_formula {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .menu__list {
    -webkit-column-gap: 9px;
    -moz-column-gap: 9px;
    column-gap: 9px;
  }
  .hero {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .burger {
    z-index: 5;
    display: block;
  }
  .hero {
    margin-bottom: 3.7rem;
  }
  .hero .swiper-button-next {
    display: none;
  }
}
.hero::after {
  /* content: "";
  position: absolute;
  background-image: url(../img/curve.svg);
  bottom: 0;
  left: 0;
  width: 192rem;
  height: 340px;
  background-repeat: no-repeat;
  -webkit-transform: translate(0, 33%);
  -ms-transform: translate(0, 33%);
  transform: translate(0, 33%); */
}
@media (min-width: 1921px) {
  .hero::after {
    background-size: 100% 100%;
    height: 1000px;
  }
  .hero__img {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .hero::after {
    height: 269px;
  }
}
.hero__img {
  position: absolute;
  bottom: -5px;
  right: 18.6rem;
  z-index: 1;
  margin-bottom: -0.5rem;
  max-width: 66.8rem;
  pointer-events: none;
}
@media (max-width: 576px) {
  .header {
    min-height: unset;
  }
  .hero .container {
    padding: 0; /* Убираем padding для hero .container на мобильных */
  }
  /* .hero::after {
    height: 340px;
  } */
  .hero__img {
    -webkit-transform: scale(1.4) !important;
    -ms-transform: scale(1.4) !important;
    transform: scale(1.4) !important;
    max-width: 29rem;
    right: -3.1rem;
  }
}
.hero__title {
  margin: 0;
  max-width: 89.5rem;
  font-family: Golca, var(--font-family);
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  font-size: 8rem;
  text-align: center;
}

.hero__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__swiper {
  margin: 0 -1.5rem;
  width: 100%;
  height: 80rem;
}
.hero__no-swiper {
  margin: 0 -1.5rem;
  width: 100%;
  height: 80rem;
}
.hero .swiper-pagination {
  bottom: 25px;
  z-index: 1;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0 6px;
  border: 1px solid #fff;
}
@media (max-width: 576px) {
  .hero__name {
    font-size: 1.6rem;
    max-width: 21.8rem;
    line-height: 120%;
  }
  .hero__swiper {
    height: 56rem;
    margin: 0;
  }
  .hero__no-swiper {
    height: 56rem;
    margin: 0;
  }

  .hero .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid var(--grey);
    background-color: var(--red);
  }
}
.hero .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}
.hero .swiper-button-next {
  z-index: 4;
  color: var(--red);
  margin-right: 3.4rem;
}
.hero .swiper-button-next::after {
  font-size: 5rem;
}
.hero .swiper-button-prev {
  z-index: 3;
  color: var(--red);
  margin-left: 3.4rem;
}
.hero .swiper-button-prev::after {
  font-size: 5rem;
}
.hero .swiper-wrapper {
  margin: 0;
}
.hero__slide {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .hero__slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
  }
}
.hero__content {
  z-index: 3;
  /* Удаляем закомментированные стили абсолютного позиционирования */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-top: 5rem; /* Регулируем верхний отступ для размещения контента выше */
  margin-top: 0; /* Убеждаемся, что нет дополнительного верхнего отступа */
  margin-bottom: auto; /* Прижимаем к верху внутри флекс-контейнера */
}
.hero__slide-mob {
  display: none;
}
@media (max-width: 576px) {
  .hero__slide-mob {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/lorotricin_new_hero_mob.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
}
.hero__man-mob {
  display: none;
}
@media (max-width: 576px) {
  .hero__man-mob {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25.5rem;
    height: 54rem;
    background-image: url("../img/loro_man.png");
    background-size: contain; /* Используем contain для изображения, чтобы оно не обрезалось */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    /* Нет margin-top: auto здесь, так как он абсолютно позиционирован */
  }
}
.hero__formula {
  max-width: 80rem;
  width: 100%;
  margin-top: 5rem;
  padding-left: 1rem;
}
@media (max-width: 576px) {
  .hero__formula {
    margin-top: 0; /* Убираем верхний отступ */
    max-width: 18rem; /* Корректируем максимальную ширину для мобильной формулы */
    padding-left: 0;
  }
  .hero__formula img {
    width: 100%;
    height: auto;
  }
}
.hero__list {
  padding: 0 3.6rem 0 0;
  gap: 3rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .hero__list {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__item {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero__item-img {
  max-width: 12.6rem;
}
@media (max-width: 576px) {
  .hero__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.1rem;
  }
  .hero__item-img {
    max-width: 6.4rem;
  }
}
.hero__slide-two-img {
  position: absolute;
  left: -9.6rem;
  bottom: 2.3rem;
  z-index: 1;
  max-width: 69.8rem;
}
@media (min-width: 1921px) {
  .hero .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 0.6rem;
  }
  .hero__item-img,
  .hero__slide-two-img {
    width: 100%;
  }
  .hero__more svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 576px) {
  .hero__slide-two-img {
    bottom: 0;
    width: 29rem;
    left: 12.5rem;
    min-width: 28rem;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
.hero__slide-content {
  width: 100%;
}
.hero__item-desk {
  margin: 0;
  max-width: 27.9rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  color: var(--grey);
}
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 6.4rem;
}
.hero__slide--revmobile {
  display: none;
}
@media (max-width: 576px) {
  .hero__item-desk {
    font-size: 1.5rem;
    max-width: 17.7rem;
    text-align: left;
  }
  .hero__info {
    margin-bottom: 2rem;
  }
  .hero__slide--revmobile {
    display: block;
  }
}
.hero__subname {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 130%;
  color: var(--grey);
}
@media (max-width: 576px) {
  .hero__subname {
    font-size: 1.6rem;
    max-width: 21rem;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 2rem;
  }
}
.hero__more {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
  background: var(--red);
  padding: 2rem 3rem;
  border-radius: 44px;
  max-width: 20.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .hero__more {
    font-size: 13px;
    padding: 10px 17px;
    max-width: 118px;
    gap: 6px;
  }
  .hero__more svg {
    width: 9px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .hero__more {
    font-size: 1.3rem;
    padding: 1rem 1.7rem;
    max-width: 11.8rem;
    gap: 0.6rem;
  }
}
.discomfort {
  z-index: 1;
  position: relative;
  padding: 0 0 38.8rem;
}
.hero_title_formula {
  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;
}
@media (max-width: 576px) {
  .discomfort {
    padding: 0 0 33.6rem;
    min-height: 60rem;
    overflow: hidden;
    margin-bottom: 5.2rem;
  }
  .discomfort__title {
    max-width: 28.1rem;
  }
   .hero_title_formula {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.discomfort__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--red);
  margin: 0 0 8rem;
}
@media (max-width: 1024px) {
  .discomfort__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.discomfort__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.8rem;
}
@media (max-width: 576px) {
  .discomfort__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.discomfort__item {
  max-width: 27rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.3rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 130%;
  color: var(--red);
}
@media (max-width: 768px) {
  .hero .swiper-button-prev {
    display: none;
  }
  .discomfort__item {
    font-size: 12px;
  }
  .discomfort__video svg {
    height: 10px;
  }
}
@media (max-width: 576px) {
  .discomfort__item {
    font-size: 1.6rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 200px;
  }
}
.discomfort__item-img img {
  width: 100%;
}
.discomfort__video {
  border: transparent;
  background: var(--red);
  border-radius: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  top: 50%;
  right: 26.4rem;
  position: absolute;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
  padding: 2rem 3.5rem;
}
@media (min-width: 1921px) {
  .discomfort__video svg {
    min-height: 2rem;
    min-width: 2rem;
  }
}
@media (max-width: 1024px) {
  .discomfort__video {
    top: 40%;
  }
}
@media (max-width: 768px) {
  .discomfort__video {
    font-size: 10px;
    padding: 10px 15px 11px;
    gap: 7px;
    right: 47px;
    top: 48%;
  }
}
@media (max-width: 576px) {
  .discomfort__video svg {
    width: 1rem;
    height: 1.3rem;
  }
  .discomfort__video {
    padding: 1rem 1.5rem 1.1rem;
    gap: 0.7rem;
    font-size: 1.3rem;
    top: 29rem;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
.discomfort__img-mobile {
  display: none;
  left: -178px;
  position: absolute;
  bottom: -9.2rem;
  width: 75.5rem;
  height: 36rem;
  background-image: url(../img/woman2.png);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.discomfort__img-mobile::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 1.9rem;
  opacity: 0.9;
  left: 19rem;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-position: center;
  width: 19.1rem;
  height: 19.1rem;
  background-image: url(../img/pain1.png);
  background-repeat: no-repeat;
  -webkit-animation: 2s infinite pulse-animation;
  animation: 2s infinite pulse-animation;
  background-size: cover;
}
.discomfort__img-mobile::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  opacity: 0.9;
  background-repeat: no-repeat;
  right: 35%;
  min-width: 12.3rem;
  min-height: 20rem;
  background-image: url(../img/cat.png);
  -webkit-transform: translateY(5rem);
  -ms-transform: translateY(5rem);
  transform: translateY(5rem);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  background-size: cover;
}
.discomfort__img-mobile.aos-animate::before {
  -webkit-transform: translateY(10rem);
  -ms-transform: translateY(10rem);
  transform: translateY(10rem);
}
.discomfort__img {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.discomfort__img img {
  width: 100%;
}
@media (max-width: 576px) {
  .discomfort__img-mobile {
    display: block;
  }
  .discomfort__img {
    display: none;
  }
}
.discomfort__img::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 7.5rem;
  opacity: 0.9;
  left: 58.9rem;
  width: 39rem;
  height: 38.4rem;
  background-image: url(../img/pain1.png);
  background-repeat: no-repeat;
  -webkit-animation: 2s infinite pulse-animation;
  animation: 2s infinite pulse-animation;
  background-size: cover;
}
.discomfort__img::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 7.5rem;
  opacity: 0.9;
  background-repeat: no-repeat;
  right: 61rem;
  min-width: 27.1rem;
  min-height: 40.9rem;
  background-image: url(../img/cat.png);
  -webkit-transform: translateY(0rem);
  -ms-transform: translateY(0rem);
  transform: translateY(0rem);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  background-size: cover;
}
.discomfort__img.aos-animate::before {
  -webkit-transform: translateY(10rem);
  -ms-transform: translateY(10rem);
  transform: translateY(10rem);
}
.discomfort__item-img {
  min-width: 9rem;
  min-height: 10.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  -webkit-animation: 2s infinite pulse-animation;
  animation: 2s infinite pulse-animation;
}
.discomfort__item-img img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 2s;
  -o-transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
}
@media (max-width: 1024px) {
  .discomfort__item-img {
    min-width: 44px;
    min-height: 44px;
  }
}
@media (max-width: 576px) {
  .discomfort__item-img {
    min-width: 4.4rem;
    min-height: 4.4rem;
  }
}
.discomfort__item-text {
  min-width: 142px;
}
.diversity {
  margin-bottom: 12.7rem;
  padding: 20rem 0 0;
}
@media (max-width: 768px) {
  .diversity {
    margin-bottom: 72px;
  }
}
.diversity__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .diversity {
    padding: 0;
    margin-bottom: 9.2rem;
  }
  .diversity__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
.diversity__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: 2.4rem;
}
.diversity__info-text {
  max-width: 92.9rem;
  border-radius: 24px;
  padding: 6.4rem 4.9rem 7.3rem 5.5rem;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
}
.diversity__info-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--white);
  margin: 0 0 3.2rem;
}
@media (max-width: 576px) {
  .diversity__info {
    gap: 1rem;
  }
  .diversity__info-text {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.2rem 0.9rem 2.9rem 2.4rem;
  }
  .diversity__info-title {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
}
.diversity__sub {
  font-weight: 500;
  font-size: 3.8rem;
}
@media (max-width: 1024px) {
  .diversity__sub {
    font-size: 4.8rem;
  }
}
@media (max-width: 576px) {
  .diversity__sub {
    font-size: 2.4rem;
    font-weight: 350;
  }
}
.diversity__info-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  color: var(--white);
  margin: 0;
}
@media (max-width: 1024px) {
  .diversity__info-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .diversity__info-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .diversity__info-subtitle {
    font-size: 1.5rem;
  }
}
.diversity__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  color: var(--white);
}
@media (max-width: 1024px) {
  .diversity__item {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .diversity__item {
    font-size: 10px;
  }
  .diversity__imgs {
    min-height: 259px;
  }
}
@media (max-width: 576px) {
  .diversity__item {
    font-size: 1.5rem;
    max-width: 23.8rem;
  }
  .diversity__info-important img {
    min-width: 6.5rem;
    min-height: 5.8rem;
  }
}
.diversity__list {
  margin: 0;
  color: #fff;
  padding-left: 30px;
}
.diversity__info-important {
  padding: 3rem 2.5rem 4.5rem 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
/*   align-items: center; */
  max-width: 91.9rem;
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  margin: 1rem 0 0 0.7rem;
}
.diversity__info-important::after {
  display: block;
  content: "";
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  position: absolute;
  z-index: -1;
  border-radius: 30px;
}
.diversity__info-important img {
  width: 100%;
  max-width: 15rem;
  max-height: 12.9rem;
}
@media (max-width: 1024px) {
  .diversity__info-important {
    margin: 1.5rem;
    max-width: 90.5rem;
  }
}
.diversity__info-important-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 1024px) {
  .diversity__info-important-text {
    font-size: 11px;
  }
}
.diversity__imgs {
  position: relative;
  width: 57rem;
}
.diversity__imgs-mobile {
  display: none;
}
@media (max-width: 576px) {
  .diversity__info-important {
    padding: 2.3rem 2.4rem 2.5rem 1.6rem;
    max-width: 54.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 17px;
    border: 15px solid transparent;
    -o-border-image: url(../img/Rectangle95.png) 12 round;
    border-image: url(../img/Rectangle95.png) 12 round;
    margin: 0;
  }
  .diversity__info-important-text {
    font-size: 1.5rem;
    max-width: 46rem;
  }
  .diversity__imgs {
    -webkit-transform: translate(-15%, 0);
    -ms-transform: translate(-15%, 0);
    transform: translate(-15%, 0);
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 22rem;
  }
  .diversity__imgs-mobile {
    display: block;
  }
}
.diversity__imgs-virus {
  position: absolute;
  top: 3.4rem;
  left: 19.3rem;
  max-width: 22rem;
  width: 100%;
}
@media (max-width: 768px) {
  .diversity__imgs-virus {
    max-width: 87px;
  }
}
@media (max-width: 576px) {
  .diversity__imgs-virus {
    max-width: 213px;
    display: none;
  }
  .diversity__imgs-fungi {
    display: none;
  }
}
.diversity__imgs-fungi {
  width: 100%;
  position: absolute;
  top: 20.1rem;
  left: 49rem;
  max-width: 18.6rem;
}
@media (max-width: 768px) {
  .diversity__imgs-fungi {
    max-width: 77px;
  }
}
.diversity__imgs-bacteria {
  width: 100%;
  position: absolute;
  top: 41.1rem;
  left: 23.1rem;
  max-width: 19.6rem;
}
.advantage {
  margin-bottom: 20rem;
}
@media (max-width: 768px) {
  .diversity__imgs-bacteria {
    max-width: 85px;
  }
  .advantage {
    margin-bottom: 83px;
  }
}
@media (max-width: 576px) {
  .diversity__imgs-bacteria {
    display: none;
  }
  .advantage {
    margin-bottom: 7.2rem;
  }
}
.advantage__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--red);
  margin: 0 0 1.8rem;
}
.advantage__logo-img {
  margin-bottom: 8.4rem;
}
.advantage__logo-img img {
  width: 100%;
  max-width: 94.8rem;
}
@media (max-width: 768px) {
  .advantage__title {
    font-size: 24px;
  }
  .advantage__logo-img img {
    max-width: 288px;
  }
  .advantage__logo-img {
    margin-bottom: 111px;
  }
}
@media (max-width: 576px) {
  .advantage__title {
    font-size: 2.4rem;
  }
  .advantage__logo-img img {
    max-width: 94.8rem;
  }
  .advantage__logo-img {
    margin-bottom: 11.1rem;
  }
}
.advantage__info {
  position: relative;
  padding: 13.8rem 12.8rem 9rem 13.6rem;
  border-radius: 24px;
  margin-bottom: 7.2rem;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
}
.advantage__info-img {
  position: absolute;
  right: -7.4rem;
  top: -29.8rem;
}
.advantage__info-img img {
  max-width: 62.6rem;
  height: 42.6rem;
}
@media (max-width: 768px) {
  .advantage__info {
    padding: 121px 17px 46px 16px;
    margin-bottom: 32px;
  }
  .advantage__info-img img {
    max-width: none;
    height: 182px;
  }
}
@media (max-width: 576px) {
  .advantage__info {
    padding: 12.1rem 1.7rem 4.6rem 1.6rem;
    margin-bottom: 3.2rem;
    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;
  }
  .advantage__info-img img {
    width: auto;
    height: 18.2rem;
  }
  .advantage__info-img {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    top: -8.7rem;
  }
}
.advantage__info-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  text-align: center;
  color: var(--white);
  margin: 0 0 63px;
}
@media (max-width: 768px) {
  .advantage__info-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .advantage__info-title {
    max-width: 28.7rem;
    margin-bottom: 2rem;
  }
}
.advantage__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .advantage__list {
    -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: 7px;
    margin-bottom: 41px;
  }
}
@media (max-width: 576px) {
  .advantage__list {
    gap: 0.7rem;
    margin-bottom: 4.1rem;
  }
}
.advantage__item-upperinfo {
  gap: 2.5rem;
  width: 35.6rem;
  height: 41rem;
  background-image: url(../img/item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
}
.advantage__item-upperinfo img {
  width: 100%;
}
.advantage__item-desk {
  margin: 0;
  max-width: 27.8rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  color: var(--grey);
}
@media (max-width: 768px) {
  .advantage__item-upperinfo {
    width: 202px;
    height: 234px;
    gap: 12px;
  }
  .advantage__item-desk {
    font-size: 18px;
    max-width: 155px;
  }
}
@media (max-width: 576px) {
  .advantage__item-upperinfo {
    width: 20.2rem;
    height: 23.4rem;
    gap: 1.2rem;
  }
  .advantage__item-desk {
    font-size: 1.8rem;
    max-width: 15.5rem;
  }
}
.advantage__item-subinfo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1921px) {
  .advantage__item-subinfo img {
    width: 100%;
    min-height: 11.6rem;
  }
}
.advantage__item-subinfo img {
  max-height: 11.6rem;
  width: auto;
}
.advantage__item-subinfo-desk {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  max-width: 31.2rem;
  margin: 0;
}
.advantage__list--mobile {
  display: none;
}
@media (max-width: 768px) {
  .advantage__item-subinfo {
    display: none;
  }
  .advantage__item-subinfo-desk {
    font-size: 18px;
    max-width: 144px;
  }
  .advantage__list--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -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: 29px;
  }
}
@media (max-width: 576px) {
  .advantage__item-subinfo-desk {
    font-size: 1.8rem;
    max-width: 14.4rem;
  }
  .advantage__list--mobile {
    gap: 2.9rem;
  }
}
.advantage__item-subinfo--mobile {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.advantage__item-subinfo--mobile img {
  max-width: 52px;
}
.advantage__item-subinfo-desk--mobile {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  max-width: 31.2rem;
  margin: 0;
}
@media (max-width: 768px) {
  .advantage__item-subinfo-desk--mobile {
    font-size: 18px;
    max-width: 144px;
  }
}
@media (max-width: 576px) {
  .advantage__item-subinfo--mobile {
    gap: 1.2rem;
  }
  .advantage__item-subinfo--mobile img {
    max-width: 5.2rem;
  }
  .advantage__item-subinfo-desk--mobile {
    font-size: 1.8rem;
    max-width: 14.4rem;
  }
}
.advantage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.advantage__item img {
  max-width: 11.9rem;
}
.advantage__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5rem;
}
.advantage__manual {
  max-width: 23.6rem;
  gap: 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.7rem 4rem;
  border-radius: 44px;
  background: var(--red);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
}
.advantage__manual svg {
  min-height: 2rem;
  min-width: 2rem;
}
@media (max-width: 768px) {
  .advantage__item img {
    max-width: 60px;
  }
  .advantage__manual {
    font-size: 13px;
    max-width: 153px;
    padding: 11px 29px;
  }
  .advantage__manual svg {
    width: 11px;
  }
}
@media (max-width: 576px) {
  .advantage__item img {
    max-width: 6rem;
  }
  .advantage__manual {
    font-size: 1.3rem;
    max-width: 15.3rem;
    padding: 1.1rem 2.9rem;
  }
  .advantage__manual svg {
    width: 1.1rem;
  }
}
.advantage__link {
  max-width: 23.6rem;
  gap: 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.7rem 4rem;
  border-radius: 44px;
  background: var(--red);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
}
@media (max-width: 768px) {
  .advantage__link {
    font-size: 13px;
    max-width: 153px;
    padding: 11px 29px;
  }
}
.internal {
  margin-bottom: 17.9rem;
}
@media (max-width: 576px) {
  .advantage__link {
    font-size: 1.3rem;
    max-width: 15.3rem;
    padding: 1.1rem 2.9rem;
  }
  .internal {
    margin-bottom: 11.5rem;
  }
}
.internal__upper {
  padding-left: 2.7rem;
}
.internal__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--grey);
  margin: 0 0 2.9rem;
}
.internal__logo {
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .internal__title {
    margin-bottom: 1rem;
    font-size: 2.4rem;
    max-width: 28.8rem;
  }
  .internal__logo {
    margin-bottom: 1rem;
  }
}
.internal__logo-img {
  max-width: 94.9rem;
}
@media (max-width: 768px) {
  .internal__logo-img {
    max-width: 288px;
  }
}
.internal__subtitle {
  width: 164.2rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--red);
  margin: 0 0 7.9rem;
}
.internal__content {
  position: relative;
  height: 112rem;
}
.internal__circle {
  position: absolute;
  top: 46.8rem;
  left: 79.9rem;
  z-index: 1;
}
.internal__circle img {
  width: 12.9rem;
  max-width: 12.9rem;
}
@media (max-width: 576px) {
  .internal__logo-img {
    max-width: 28.8rem;
  }
  .internal__subtitle {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    max-width: 28.3rem;
  }
  .internal__content {
    -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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 89.6rem;
  }
  .internal__circle {
    display: none;
  }
}
.internal__chloride {
  position: absolute;
  left: 71.6rem;
  top: 0;
  gap: 2.5rem;
  width: 61.6rem;
  height: 53.4rem;
  background-image: url(../img/chloride-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
}
.internal__chloride img {
  width: 12.9rem;
  max-width: 12.9rem;
}
@media (max-width: 576px) {
  .internal__chloride img {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    width: auto;
    max-width: 7.1rem;
  }
  .internal__chloride {
    width: 32.1rem;
    height: 27.8rem;
    top: auto;
    left: auto;
    gap: 1rem;
  }
}
.internal__vectorup {
  position: absolute;
  top: -6rem;
  left: 53.9rem;
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
  z-index: -1;
}
.internal__vectorup img {
  width: 44.7rem;
  max-width: 44.7rem;
}
.internal__chloride-link {
  padding: 1.5rem 4.4rem 2rem 3.2rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  background-color: var(--red);
  color: var(--white);
  border-radius: 76px;
  border: 2px solid #fff;
}
@media (max-width: 576px) {
  .internal__vectorup img {
    width: auto;
    max-width: 24.5rem;
  }
  .internal__vectorup {
    top: 22.7rem;
    left: 20rem;
  }
  .internal__chloride-link {
    padding: 1.3rem;
    font-size: 1.8rem;
  }
}
.internal__chloride-desk {
  max-width: 39.5rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  margin: 0;
}
.internal__benzocaine {
  position: absolute;
  top: 27.9rem;
  left: 23.2rem;
  gap: 2.5rem;
  width: 61.6rem;
  height: 53.4rem;
  background-image: url(../img/chloride-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
}
.internal__benzocaine img {
  width: 12rem;
  max-width: 12rem;
}
@media (max-width: 576px) {
  .internal__chloride-desk {
    font-size: 1.5rem;
    max-width: 22.5rem;
  }
  .internal__benzocaine img {
    width: auto;
    max-width: 7.1rem;
  }
  .internal__benzocaine {
    width: 32.1rem;
    height: 27.8rem;
    top: 30rem;
    left: auto;
    gap: 1rem;
  }
}
.internal__vectorsub {
  position: absolute;
  top: 38.4rem;
  left: -25.9rem;
}
.internal__vectorsub img {
  width: 44.7rem;
  max-width: 44.7rem;
}
.internal__benzocaine-link {
  padding: 1.5rem 5.2rem 1.8rem 5rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  background-color: var(--red);
  color: var(--white);
  border-radius: 76px;
  border: 2px solid #fff;
}
@media (max-width: 576px) {
  .internal__vectorsub img {
    width: auto;
    max-width: 24.5rem;
  }
  .internal__vectorsub {
    top: 21rem;
    left: -11.4rem;
  }
  .internal__benzocaine-link {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}
.internal__benzocaine-desk {
  margin: 0;
  max-width: 37.5rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
}
.internal__tyrothricin {
  position: absolute;
  top: 55.7rem;
  left: 71.6rem;
  gap: 2.5rem;
  width: 61.6rem;
  height: 53.4rem;
  background-image: url(../img/chloride-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
}
.internal__tyrothricin img {
  width: 11.1rem;
  max-width: 11.1rem;
}
@media (max-width: 576px) {
  .internal__benzocaine-desk {
    font-size: 1.5rem;
    max-width: 22.5rem;
  }
  .internal__tyrothricin img {
    max-width: 7.1rem;
    width: auto;
  }
  .internal__tyrothricin {
    gap: 1rem;
    top: 60rem;
    left: auto;
    width: 32.1rem;
    height: 27.8rem;
  }
}
.internal__tyrothricin-link {
  padding: 1.5rem 5.2rem 1.8rem 5rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  background-color: var(--red);
  color: var(--white);
  border-radius: 76px;
  border: 2px solid #fff;
}
@media (max-width: 576px) {
  .internal__tyrothricin-link {
    font-size: 1.8rem;
    padding: 1.2rem 2.8rem;
  }
}
.internal__tyrothricin-desk {
  margin: 0;
  max-width: 37.5rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
}
.profit {
  margin-bottom: 20rem;
}
@media (max-width: 576px) {
  .internal__tyrothricin-desk {
    font-size: 1.5rem;
    max-width: 22.5rem;
  }
  .profit {
    margin-bottom: 10.1rem;
  }
}
.profit__logo {
  margin-bottom: 1rem;
  max-width: 94.9rem;
}
@media (max-width: 768px) {
  .profit__logo {
    max-width: 288px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .profit__logo {
    max-width: 28.8rem;
    margin-bottom: 1rem;
  }
}

.profit__text {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--red);
  margin: 0 0 7.2rem;
}
.profit__item-img {
  width: 22.5rem;
  height: 25.3rem;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  background-image: url(../img/profitembg.svg);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.profit__item-img svg {
  max-width: 9.5rem;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Обновляем стили для активного состояния */
/* .profit__item-img--outlined.active svg {
  filter: brightness(0) invert(1);
} */

/* @media (max-width: 768px) {
  .profit__item-img svg {
    max-width: 6rem;
  }
} */

/* Новый класс для альтернативного стиля */
.profit__item-img--outlined {
  background-image: none;
  position: relative;
}

/* Градиентная подложка */
.profit__item-img--outlined::after {
  content: '';
  position: absolute;
  top: -5px;  /* Выступает на 5px сверху */
  left: -5px; /* Выступает на 5px слева */
  width: calc(100% + 10px);  /* Добавляем по 5px с каждой стороны */
  height: calc(100% + 10px); /* Добавляем по 5px сверху и снизу */
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  -webkit-mask-image: url(../img/profitembg.svg);
  mask-image: url(../img/profitembg.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: -1;
  transition: all 0.3s ease;
}

.profit__item-img--outlined::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/profitembg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

/* Состояние при клике */
.profit__item-img--outlined.active {
  transform: scale(1.2);
}

.profit__item-img--outlined.active::before {
  background-image: url(../img/profitembg.svg);
  filter: none;  /* Убираем фильтр, который создавал белый фон */
  opacity: 0;    /* Делаем фон полностью прозрачным */
}

.profit__item-img--outlined.active svg {
  filter: brightness(0) invert(1);  /* Только иконка становится белой */
}

.profit__item-img--outlined svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  width: 100% !important;
  height: auto !important;
}

/* SVG фильтр для градиента */
.gradient-svg-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}


.profit__item-img img {
  max-width: 9.5rem;
}

.profit__text sup {
  font-weight: 500;
  font-size: 3.4rem;
}
@media (max-width: 768px) {
  .profit__text {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .profit__text sup {
    font-size: 12px;
  }
  .profit__item-img {
    width: 15.8rem;
    height: 17.8rem;
  }
}
.profit__list {
  padding: 0 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .profit__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .profit__text {
    font-size: 2.4rem;
    max-width: 28.8rem;
  }
  .profit__text sup {
    font-size: 1.2rem;
  }
  .profit__item-img img {
    max-width: 6.1rem;
  }
  .profit__list {
    gap: 2.4rem;
    margin-top: 10px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footnotes{
    margin-left: unset !important;
    padding: 20px !important; 
  }
}
.profit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.profit__item-desk {
  text-align: center;
  margin: 0 auto; /* Добавляем автоматические отступы по бокам */
  width: 100%; /* Занимаем всю доступную ширину */
  display: flex;
  justify-content: center; /* Центрируем по горизонтали */
  align-items: center; /* Центрируем по вертикали */
  white-space: nowrap; /* Запрещаем перенос строки */
  padding: 0 10px; /* Добавляем небольшие отступы по бокам */
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.0rem;
  line-height: 130%;
  color: var(--grey);
}
.receipt {
  margin-bottom: 22.2rem;
}
.receipt .container {
  padding: 7.9rem 13.5rem 13.5rem;
  border-radius: 24px;
  background: -o-radial-gradient(
    -2.63% 110.29%,
    183.94% 135.68%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
  background: radial-gradient(
    183.94% 135.68% at -2.63% 110.29%,
    #faa628 0,
    #e62c28 59.375%,
    #a01a19 100%
  );
}
@media (max-width: 768px) {
  .profit__item {
    gap: 4px;
  }
  .profit__item-desk {
    font-size: 18px;
    max-width: 173px;
  }
  .receipt .container {
    padding: 49px 27px;
  }
}
@media (max-width: 576px) {
  .profit__item {
    gap: 0.4rem;
  }
  .profit__item-desk {
    font-size: 1.8rem;
    max-width: 18.4rem;
  }
  .receipt {
    margin-bottom: 9.8rem;
  }
  .receipt .container {
    border-radius: 1.6rem;
    padding: 4.9rem 1.6rem;
  }
}
.receipt__title {
  display: block;
  max-width: 92.9rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  text-align: center;
  color: var(--white);
  margin: 0 auto 3.2rem;
}
@media (max-width: 768px) {
  .receipt__title {
    font-size: 24px;
    margin-bottom: 10px;
    max-width: 929px;
  }
}
@media (max-width: 576px) {
  .receipt__title {
    max-width: 26.6rem;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    max-width: 92.9rem;
  }
}
.receipt__subtitle {
  margin: 0 auto 7.2rem;
  max-width: 102.4rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
  color: var(--white);
}
.receipt__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15.6rem;
  min-height: 72rem;
}
.receipt__tabs img {
  max-width: 50.7rem;
}
@media (max-width: 768px) {
  .receipt__subtitle {
    font-size: 18px;
    margin-bottom: 33px;
  }
  .receipt__tabs img {
    max-width: 250px;
  }
  .receipt__tabs {
    min-height: 529px;
  }
}
@media (max-width: 576px) {
  .receipt__subtitle {
    font-size: 1.8rem;
    margin-bottom: 3.3rem;
    max-width: 28.9rem;
  }
  .receipt__tabs img {
    max-width: 30rem;
  }
  .receipt__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.9rem;
    min-height: 52.9rem;
  }
}
.receipt__content {
  position: relative;
  border-radius: 24px;
  background-color: #fff;
  padding: 12rem 13.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.8rem;
}
@media (max-width: 576px) {
  .receipt__content {
    border-radius: 16px;
    gap: 4.6rem;
    padding: 4.3rem 1.1rem 23rem 1.7rem;
  }
}
.receipt__tab-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5.6rem;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
}
@media (max-width: 768px) {
  .receipt__tab-btns {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .receipt__tab-btns {
    gap: 1.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.receipt__sub {
  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;
}
.receipt__manual {
  max-width: 23.6rem;
  gap: 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 4rem;
  border-radius: 44px;
  background: var(--red);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
}
.receipt__manual svg {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 768px) {
  .receipt__manual {
    max-width: 160px;
    font-size: 13px;
    gap: 7px;
    padding: 10px 30px;
  }
}
.receipt__tabcontent {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10rem);
  -ms-transform: translateY(10rem);
  transform: translateY(10rem);
  -webkit-transition: visibility, opacity 1s linear,
    -webkit-transform 0.5s linear;
  transition: visibility, opacity 1s linear, transform 0.5s linear,
    -webkit-transform 0.5s linear;
  -o-transition: visibility, opacity 1s linear, transform 0.5s linear;
  height: 0;
}
.receipt__tabcontent:nth-child(4) img {
  max-width: 45.7rem;
}
@media (max-width: 576px) {
  .receipt__manual {
    max-width: 16rem;
    font-size: 1.3rem;
    gap: 0.7rem;
    padding: 1rem 3rem;
  }
  .receipt__manual svg {
    width: 2rem;
    height: 2rem;
  }
  .receipt__tabcontent:nth-child(4) img {
    max-width: 25rem;
  }
}
.receipt__tabcontent.show {
  visibility: visible;
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: visibility, opacity 1s linear,
    -webkit-transform 0.5s linear;
  transition: visibility, opacity 1s linear, transform 0.5s linear,
    -webkit-transform 0.5s linear;
  -o-transition: visibility, opacity 1s linear, transform 0.5s linear;
}
.receipt__tablinks {
  padding: 1.4rem 5.5rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 130%;
  color: var(--grey);
  -webkit-box-shadow: 0.9rem 0.9rem 2.1rem 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0.9rem 0.9rem 2.1rem 0 rgba(0, 0, 0, 0.12);
  background: #ececec;
  border-radius: 51px;
  -webkit-transition: background-color 0.5s, color 0.5s;
  -o-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
.receipt__tablinks.active {
  background: var(--red);
  color: #fff;
}
@media (max-width: 768px) {
  .receipt__tablinks {
    font-size: 18px;
    padding: 10px 48px;
  }
}
@media (max-width: 576px) {
  .receipt__tablinks {
    font-size: 1.8rem;
    padding: 1rem 4.8rem;
    max-width: 18.3rem;
  }
}
.receipt__tabcontent-desk {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 130%;
  color: var(--grey);
  margin: 0 0 6.5rem;
  max-width: 65.5rem;
}
.receipt__tabcontent-desk span {
  font-weight: 800;
}
@media (max-width: 768px) {
  .receipt__tabcontent-desk {
    font-size: 15px;
    margin-bottom: 46px;
    max-width: 655rem;
  }
}
@media (max-width: 576px) {
  .receipt__tabcontent-desk {
    font-size: 1.5rem;
    margin-bottom: 4.6rem;
  }
}
.receipt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7.2rem;
}
@media (max-width: 576px) {
  .receipt__list {
    margin-bottom: 0;
  }
}
.receipt__method-title {
  display: block;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 120%;
  color: var(--grey);
  margin-bottom: 4.5rem;
}
.receipt__item-img {
  width: 33.2rem;
  max-width: 33.2rem;
}
@media (max-width: 768px) {
  .receipt__method-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .receipt__item-img {
    max-width: 196px;
  }
}
@media (max-width: 576px) {
  .receipt__method-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .receipt__item-img {
    max-width: 19.6rem;
  }
}
.receipt__item-img-pill {
  width: 12rem;
  max-width: 12rem;
}
@media (max-width: 768px) {
  .receipt__item-img-pill {
    width: auto;
    max-width: 75px;
  }
}
@media (max-width: 576px) {
  .receipt__item-img-pill {
    max-width: 7.5rem;
  }
}
.receipt__item-img-sday {
  width: 7.1rem;
  max-width: 7.1rem;
}
@media (max-width: 768px) {
  .receipt__item-img-sday {
    width: auto;
    max-width: 52px;
  }
}
.receipt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .receipt__item-img-sday {
    max-width: 5.2rem;
  }
  .receipt__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
.receipt__item {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.6rem;
}
.receipt__item-suptext {
  max-width: 33.3rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 120%;
  color: var(--grey);
}
@media (max-width: 768px) {
  .receipt__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .receipt__item-suptext {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .receipt__item {
    gap: 1rem;
  }
  .receipt__item:nth-child(1) {
    display: none;
  }
  .receipt__item-suptext {
    max-width: 25.2rem;
    font-size: 1.8rem;
  }
  .receipt__item-suptext br {
    display: none;
  }
}
.receipt__red {
  font-size: 2.4rem;
  line-height: 130%;
  color: var(--red);
}
@media (max-width: 768px) {
  .receipt__red {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .receipt__red {
    font-size: 1.5rem;
    display: block;
  }
}
.receipt__black {
  font-size: 1.9rem;
  line-height: 130%;
}
@media (max-width: 768px) {
  .receipt__black {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .receipt__black {
    font-size: 1.5rem;
    display: block;
  }
}
.receipt__item-img-mobile {
  max-width: 19.6rem;
  display: none;
  position: absolute;
  bottom: 6.2rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 576px) {
  .receipt__item-img-mobile {
    display: block;
  }
  .receipt__item-img-mobile img {
    width: 20rem;
    max-width: unset;
  }
}
.articles {
  display: none;
  margin-bottom: 3.1rem;
}
@media (max-width: 1024px) {
  .articles {
    margin-bottom: 29px;
  }
  .articles__item-img img {
    height: auto;
    width: 450px;
  }
}
@media (max-width: 576px) {
  .articles {
    margin-bottom: 2.9rem;
  }
}
.articles__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 6rem;
  line-height: 110%;
  color: var(--grey);
  margin: 0 0 7.4rem;
}
@media (max-width: 1024px) {
  .articles__item-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 576px) {
  .articles__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .articles__item-img img {
    width: 100%;
    max-height: 100vh;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .articles__item-img {
    width: 100%;
  }
}
.articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 14rem;
  margin-bottom: 7.5rem;
}
@media (max-width: 1024px) {
  .articles__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px 50px;
  }
}
@media (max-width: 576px) {
  .articles__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3.2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.articles__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1921px) {
  .articles__item {
    width: 30%;
  }
}
@media (max-width: 1024px) {
  .articles__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .articles__item {
    width: 100%;
    gap: 0.8rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.articles__item-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 130%;
  color: var(--grey);
}
@media (max-width: 1024px) {
  .articles__item-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 18px;
  }
}
.articles__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18.1rem;
}
@media (max-width: 1024px) {
  .articles__sub {
    margin-bottom: 81px;
  }
}
@media (max-width: 768px) {
  .articles__sub {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .articles__item-title {
    font-size: 1.8rem;
  }
  .articles__sub {
    margin-bottom: 7rem;
  }
}
.articles__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.7rem 4rem;
  border-radius: 44px;
  background: var(--red);
  gap: 1.3rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  color: var(--white);
}
@media (min-width: 1921px) {
  .articles__more {
    width: 23.5rem;
  }
}
.articles__more img {
  max-width: 3.4rem;
  max-height: 2.8rem;
}
@media (max-width: 1024px) {
  .articles__more img {
    max-width: 18px;
    max-height: 15px;
  }
  .articles__more {
    font-size: 13px;
    padding: 10px 29px;
    gap: 7px;
  }
}
@media (max-width: 576px) {
  .articles__more img {
    max-width: 1.8rem;
    max-height: 1.5rem;
  }
  .articles__more {
    font-size: 1.3rem;
    padding: 1rem 2.9rem;
    gap: 0.7rem;
  }
}
.articles__attachment-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 115%;
  color: #828282;
}
@media (max-width: 1024px) {
  .articles__attachment-item {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .articles__attachment-item {
    font-size: 1.3rem;
  }
}
@-webkit-keyframes pulse-animation {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
  }
}
@keyframes pulse-animation {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
  }
}

small{
  font-size: 50%;
}

.header__specialists-link-wrapper {
  padding: 1.5rem;
}

.header__specialists-link {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  border-radius: 44px;
  padding: 1.3rem 3rem;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
}
.specialists-popup__content {
  max-width: 110.9rem;
  width: 100%;
}

.specialists-popup__inner {
  width: 100%;
}

.specialists-popup__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 130%;
  margin: 0 0 2.4rem;
}

.specialists-popup__width {
  max-width: 110.9rem;
}

.specialists-popup__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 2rem;
  line-height: 130%;
  color: var(--grey);
  margin: 0 0 3.2rem;
  padding-bottom: 3.2rem;
}

.specialists-popup__buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3.2rem;
}

.specialists-popup__button {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 115%;
  padding: 1.7rem 4rem;
  border-radius: 4.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.specialists-popup__button--continue {
  background: radial-gradient(183.94% 135.68% at -2.63% 110.29%, #faa628 0, #e62c28 59.375%, #a01a19 100%);
  color: var(--white);
}

.specialists-popup__button--continue:hover {
  opacity: 0.9;
}

.specialists-popup__button--close {
  position: relative;
  background: #fff;
  color: var(--red);
  z-index: 1;
}

.specialists-popup__button--close-wrapper {
  position: relative;
  background: radial-gradient(183.94% 135.68% at -2.63% 110.29%, #faa628 0, #e62c28 59.375%, #a01a19 100%);
  padding: 4px;  /* Толщина градиентной границы */
  border-radius: 4.6rem;  /* Чуть больше, чем у кнопки */
  width: fit-content;
}

.specialists-popup__button--close:hover {
  background: #fff5f5;
}

.specialists-popup__button--close::before {
  display: none;
}

@media (max-width: 576px) {
  .specialists-popup .diversity__info-important {
    padding: 2rem;
    gap: 1.7rem;
  }

  .specialists-popup__title {
    font-size: 2.4rem;
  }

  .specialists-popup__text {
    font-size: 1.6rem;
  }

  .specialists-popup__buttons {
    flex-direction: column;
  }

  .specialists-popup__button {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
  }
}

.specialists-popup.popup {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.specialists-popup .diversity__info-important {
  padding: 4rem;
}

.specialists-popup__inner {
  width: 100%;
  background: #fff;
  border-radius: 27px;
  padding: 0 2rem;
}

.hero__name > .bigger{
  font-size: 5.2rem;
}
.hero__subtitle > .bigger{
  font-size: 4rem;
}


@media (max-width: 576px) {
  .specialists-popup .diversity__info-important {
    margin: -2px;
    padding: 2rem;
  }

  .specialists-popup__inner {
    padding: 2rem;
  }

  .specialists-popup__button--close-wrapper {
    width: 100%;
  }

  .specialists-popup__button--close {
    width: 100%;
  }

  .hero__name > .bigger{
    font-size: 2.5rem;
  }
  .hero__subtitle > .bigger{
    font-size: 4rem;
  }
  
  .specialists-popup__width {
    flex-direction: column;
  }
  
  .diversity__info-important img{
    align-self: center;
  }
}

.profit__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profit__item-img .ico {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profit__item-img svg {
    width: 60%;
    height: auto;
}

.profit__no-padding{
  padding-left: 0;
}

.footnotes {
    margin-top: 40px;
    padding: 20px 0;
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    /* margin-left: 180px; */
    margin: 40px auto;
    max-width: 75%;
}

.footnotes p {
    margin: 0;
    padding: 3px 0;
}

.profit__list-wrapper {
  position: relative;
  padding: 0 6rem;
  margin: 0 -6rem;
}

.profit__swiper {
  overflow: hidden;
  position: relative;
}

.profit__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.profit__swiper-prev, .profit__swiper-next {
  color: var(--red) !important;
}

@media (max-width: 576px) {
  .profit__list-wrapper {
    padding: 0 3rem;
    margin: 0 -3rem;
  }
}

/* По умолчанию показываем десктопную версию и скрываем мобильную */
.profit__list-mobile-show {
  display: none !important;
}

.profit__list-mobile-hidden {
  display: block !important;
}

/* На мобильных устройствах меняем отображение */
@media (max-width: 576px) {
  .profit__list-mobile-show {
    display: block !important;
  }

  .profit__list-mobile-hidden {
    display: none !important; /* !important чтобы перебить возможные конфликты стилей */
  }
}

/* Добавим стили для иконок и их градиентов */
/* .profit__item-img--outlined .ico svg {
  width: 60%;
  height: auto;
} */

/* Обновим стили для градиента */
.profit__item-img--outlined .ico svg {
  fill: #c62421;
}

.profit__item-desk--nowrap {
  white-space: nowrap;
}

/* Стили для активного слайда в profit секции */
.profit__swiper .swiper-slide-active .profit__item-img--outlined {
  transform: scale(1.2);
  margin-bottom: 25px;
}

.profit__swiper .swiper-slide-active .profit__item-img--outlined::before {
  background-image: url(../img/profitembg.svg);
  filter: none;
  opacity: 0;
}

.profit__swiper .swiper-slide-active .profit__item-img--outlined svg {
  filter: brightness(0) invert(1);
}

/* Скрываем текст у неактивных слайдов */
.profit__swiper .swiper-slide .profit__item-desk {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Показываем текст только у активного слайда */
.profit__swiper .swiper-slide-active .profit__item-desk {
  opacity: 1;
  visibility: visible;
  font-size: 3rem;
  text-align: center;
  max-width: 300px;
}

/* .profit__list-wrapper .swiper-wrapper {
  max-height: 350px;
}
 */
@media (max-width: 576px) {
  .profit__list-wrapper .profit__swiper-prev {
    display: none;
  }
  .profit__list-wrapper .profit__swiper-next {
    display: none;
  }
  .profit__item-desk--nowrap {
    white-space: normal;
}
}


.news {
  padding: 10px;
}

.news .diversity__info-important {
  padding: 30px;
}

.news__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.news .specialists-popup__inner {
  padding: 0;
}

.news__heading-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 4rem;
}

.news__heading-ico {
  width: 8rem;
}

.news__heading-text {
  font-size: 3rem;
  font-weight: 500;
  color: #cf2723;
}

.news__text {
  font-size: 2.5rem;
  font-weight: 500;
  color: #58595B;
}

.profit__swiper .profit__item-img {
  margin-bottom: 25px;
}
.profit__swiper .profit__item-desk {
  font-size: 3rem;
}

@media (max-width: 576px) {
  .news__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding: 0 10px;
  }

  .news .specialists-popup__button {
    text-align: center;
  }
}

.fancybox__content {
  aspect-ratio: unset !important;
}

.news .specialists-popup__buttons {
  margin-top: 4rem;
}

.news__subtext {
  margin-top: 2rem;
  color: #818181;
  font-size: 2rem;
}

@media (max-width: 576px) {
  .profit__swiper .profit__item-desk {
    font-size: 1.5rem;
  }

  .news__heading-block {
    margin-bottom: 4rem;
  }
  
  .news__heading-ico {
    width: 6rem;
  }
  
  .news__heading-text {
    font-size: 2.5rem;
  }
  
  .news__text {
    font-size: 2rem;
  }

  .news__subtext {
    font-size: 1.5rem;
  }
}
/* 
.profit-pc .profit__item-img {
  width: 235px;
  height: 265px;
} */
.hero_title_formula{
  margin-top:90px;
}
/* Основные размеры шрифтов */
.hero__title-part1 {
  font-size: 13.83rem;
}

.hero__title-part2 {
  font-size:  8.15rem;
}

/* Медиа-запрос для планшетов и ноутбуков (1024px) */
@media (max-width: 1440px) {
  .hero__title-part1 {
    font-size: 13.83rem;
  }
  
  .hero__title-part2 {
    font-size: 8.15rem;
  }

  .hero_title_formula {
    margin-top: 60px;
  } 
}
@media (max-width: 796px) {
    .hero_title_formula {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 120%;
    max-width: 27.1rem;
    margin-bottom: 2rem;
    text-align: center; /* Центрируем заголовок на мобильных */
  }
  .hero__title-part1 {
    font-size: 3rem; /* Явно устанавливаем размер шрифта для части 1 */
  }
  .hero__title-part2 {
    font-size: 2.5rem; /* Явно устанавливаем размер шрифта для части 2 */
  }
}

.hero__formula {
  max-width: 80rem;
  width: 100%;
  margin-top: 5rem;
  padding-left: 1rem;
}

/* Добавляем/изменяем стили внутри медиа-запроса (max-width: 576px) */

@media (max-width: 576px) {
  .hero {
    background-image: url("../img/lorotricin_new_hero_mob.png") !important;
    background-size: cover;
    background-position: top left;
    padding: 0;
    position: relative;
    overflow: visible;
  }
  
  .hero .container {
    padding: 0;
  }
  
  .hero__swiper {
    height: 80vh; /* Гибкая высота */
    min-height: 500px;
    margin: 0;
  }
  .hero__no-swiper {
    height: 80vh; /* Гибкая высота */
    min-height: 500px;
    margin: 0;
  }
  
  .hero__slide {
    align-items: center;
    justify-content: flex-start;
  }
  
  .hero__content {
    padding-top: 5%;
    margin-top: 0;
    z-index: 10;
    position: relative;
    transform: translateY(0);
  }
  
  .hero__title {
    line-height: 150%;
    max-width: 90%;
    margin: 1.5rem auto 1.5rem;
    text-align: center;
  }
  
  .hero__title-part1 {
    font-size: 5rem;
  }
  
  .hero__title-part2 {
    font-size: 2.95rem;
  }
  
  .hero__formula {
    margin-top: 0;
    max-width: 340px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero__formula img {
    width: 100%;
    height: auto;
  }
  
  .hero_title_formula {
    width: 100%;
    margin-top: 0;
  }
  
  /* Новые стили для человека в пачке */
  .hero__man-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  
  .hero__man-mob {
    display: block;
    height: 85%;
    background-image: url(../img/loro_man.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  
  /* Убираем ненужные элементы */
  .hero__img,
  .hero__slide-mob {
    display: none;
  }
}
.profit__swiper-next-align{
    right: var(--swiper-navigation-sides-offset, 0px) !important;
    left: auto !important;
    top: 40% !important;
}
.profit__swiper-prev-align{
    left: var(--swiper-navigation-sides-offset, 0px) !important;
    right: auto !important;
    top: 40% !important;
}
.h-fit-content{
    height:fit-content !important;
}
@media (max-width: 440px) {
    .hero__content {
      padding-top: 15%;
    }
}
.display-comfortable{
  position: inherit;
  margin-top: 2rem;
}