@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Gilroy";
  font-weight: 400;
  color: #010101;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  body::-webkit-scrollbar {
    width: 2px;
  }
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ff4e4e;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #d65a5a;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: transparent;
  border-radius: 10;
  background-color: transparent;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 78px;
}

@media only screen and (max-width: 767px) {
  .wrapper {
    padding-bottom: 55px;
  }
}

@media only screen and (max-width: 580px) {
  .wrapper {
    padding-bottom: 65px;
  }
}

.header {
  padding: 16px 0;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto;
  z-index: 200;
}

@media only screen and (max-width: 991px) {
  .header {
    position: fixed;
  }
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__item {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    background: #fff;
    min-height: 100vh;
    height: 100%;
    padding: 100px 20px 80px 20px;
    gap: 30px;
    flex-direction: column;
    transition: 300ms;
    align-items: flex-start;
  }
  .header__item.active {
    right: 0;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  margin-right: 26px;
}

@media only screen and (max-width: 991px) {
  .header__nav {
    display: block;
  }
}

.header__nav li {
  margin-right: 35px;
  position: relative;
}

.header__nav .sub-menu {
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  top: 30px;
  display: none;
  left: 0;
  width: 120%;
}

.header__nav .menu-item-has-children {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  transform: translateY(8px);
  cursor: pointer;
}

.header__nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.header__nav .menu-item-has-children::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  margin-left: 8px;
  border-width: 4px 4px 0 4px;
  border-color: #1d1d1d transparent transparent transparent;
  opacity: 0.5;
}

.header__nav .sub-menu li {
  margin: 0;
}

.header__nav .sub-menu li a {
  padding: 6px 10px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}

@media only screen and (max-width: 991px) {
  .header__nav .sub-menu {
    position: static;
    box-shadow: none;
    padding-top: 10px;
  }

  .header__nav .sub-menu li a {
    border: 0;
  }

  .header__nav .menu-item-has-children {
    padding: 0;
    transform: none;
    display: block;
    position: relative;
  }

  .header__nav .menu-item-has-children::after {
    position: absolute;
    left: 175px;
    top: 10px;
  }
}

.header__nav .sub-menu li a:hover::before {
  display: none;
}

@media only screen and (max-width: 1240px) {
  .header__nav li {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .header__nav li:last-child {
    margin-bottom: 0;
  }
}

.header__nav li:last-child {
  margin-right: 0;
}

.header__nav li a {
  font-size: 16px;
  color: #1d1d1d;
  opacity: 0.5;
  position: relative;
}

@media only screen and (max-width: 1240px) {
  .header__nav li a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li a {
    opacity: 1;
    font-size: 17px;
  }
}

.header__nav li a:hover {
  opacity: 1;
}

.header__nav li a:hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ef453e;
  top: -28px;
  left: 0;
  position: absolute;
}

@media only screen and (max-width: 991px) {
  .header__nav li a:hover::before {
    display: none;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 43px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

@media only screen and (max-width: 1240px) {
  .header__btn {
    width: 122px;
  }
}

@media only screen and (max-width: 991px) {
  .header__btn {
    width: 100%;
  }
}

.header__btn span {
  position: relative;
  z-index: 5;
}

.header__btn:hover {
  box-shadow: 0 0 0 5px rgba(255, 78, 78, .2);
}

.header__burger {
  display: none;
  width: 30px;
}

@media only screen and (max-width: 991px) {
  .header__burger {
    display: block;
  }
}

.header__burger div {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.header__burger div span {
  position: relative;
  display: block;
  width: 30px;
  height: 5px;
  border-radius: 7px;
  background: #ef453e;
  transition: all 0.2s ease-in-out;
}

.header__burger div span:before,
.header__burger div span:after {
  content: "";
  width: 30px;
  height: 5px;
  position: absolute;
  left: 0;
  background: #ef453e;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}

.header__burger div span:before {
  top: -8px;
}

.header__burger div span:after {
  top: 8px;
}

.header__burger div.active span {
  background: transparent;
}

.header__burger div.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger div.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.showcase {
  background: url(../images/showcase-1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.showcase__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

@media only screen and (max-width: 1660px) {
  .showcase__inner {
    padding: 120px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__inner {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__inner {
    padding: 100px 0 60px 0;
  }
}

.showcase__content {
  width: 100%;
  position: relative;
  z-index: 60;
}

.showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -400px;
  top: 0;
  height: 120%;
  width: 1218px;
  min-height: 1150px;
}

@media only screen and (max-width: 1660px) {
  .showcase__image {
    width: 1000px;
    min-height: auto;
    right: -300px;
  }
}

@media only screen and (max-width: 1240px) {
  .showcase__image {
    width: 800px;
    right: -200px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__image {
    right: -300px;
    width: 800px;
  }
}

.showcase__image img {
  width: 100%;
  height: 100%;
}

.showcase__title {
  font-size: 37px;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
  }
}

.showcase__subtitle {
  max-width: 655px;
  font-size: 37px;
  line-height: 45px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .showcase__subtitle {
    font-size: 24px;
    line-height: 30px;
  }
}

.showcase__info {
  font-size: 20px;
  line-height: 24px;
  max-width: 595px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .showcase__info {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.showcase__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.showcase__btn span {
  position: relative;
  z-index: 5;
}

.showcase__btn:hover::before {
  width: 207px;
  height: 59px;
}

.showcase__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fixed {
  background: linear-gradient(90deg, #fdedf2 59.38%, #dee4fe 100%), linear-gradient(180deg, #dce4ff 0%, #ffeef1 100%),
    #f9f0f7;
  opacity: 0.8;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 15px 0;
}

@media only screen and (max-width: 767px) {
  .fixed {
    padding: 10px 16px;
  }
}

@media only screen and (max-width: 580px) {
  .fixed {
    height: 65px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
  }
}

.fixed p {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  max-width: 908px;
  color: #707070;
  text-transform: uppercase;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .fixed p {
    font-size: 14px;
    line-height: 18px;
  }
  .fixed p br {
    display: none;
  }
}

@media only screen and (max-width: 390px) {
  .fixed p {
    font-size: 12px;
    line-height: 15px;
  }
}

.general-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1240px) {
  .general-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .general-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.form {
  padding: 72px 0 102px 0;
}

@media only screen and (max-width: 1240px) {
  .form {
    padding: 60px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .form {
    padding: 40px 0 60px 0;
  }
}

.form__item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding-top: 16px;
  position: relative;
  transition: 300ms;
  height: 247px;
}

.form__mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .form__mobile {
    display: block;
    padding: 0 20px;
  }
}

.form__item:hover {
  border: 1px solid #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}

.form__item:nth-child(1) .form__image {
  left: 19px;
  bottom: -25px;
  transform: scale(1.4);
  width: 193px;
}

@media only screen and (max-width: 1240px) {
  .form__item:nth-child(1) .form__image {
    left: 36px;
  }
}

.form__item:nth-child(2) .form__image {
  left: -33px;
  bottom: -30px;
  transform: scale(1.4);
}

.form__item:nth-child(3) .form__image {
  left: -15px;
  transform: scale(1.3);
  bottom: -43px;
}

.form__item:nth-child(4) .form__image {
  left: auto;
  right: -7px;
  bottom: -33px;
  transform: scale(1.2);
}

.form__item:nth-child(5) .form__image {
  left: 30px;
  width: 200px;
  bottom: -38px;
  transform: scale(1.2);
}

.form__items {
  padding: 0 20px;
}

@media only screen and (max-width: 991px) {
  .form__items {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  .form__items {
    padding: 0 30px;
  }
}

.form__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -16px;
  width: 270px;
  bottom: -63px;
  transition: 1000ms;
  transform: translateY(50px);
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .form__image {
    left: auto !important;
    right: 0 !important;
  }

  .form__item:nth-child(5) .form__image {
    left: auto !important;
    right: 35px !important;
  }

  .form__item:nth-child(1) .form__image {
    right: 37px !important;
  }
}

.form__image.element-show {
  opacity: 1;
  transform: none;
}

.form__item:nth-child(1) .form__image.element-show {
  transform: scale(1.4);
}

.form__item:nth-child(2) .form__image.element-show {
  transform: scale(1.4);
}

.form__item:nth-child(3) .form__image.element-show {
  transform: scale(1.3);
}

.form__item:nth-child(4) .form__image.element-show {
  transform: scale(1.2);
}

.form__item:nth-child(5) .form__image.element-show {
  transform: scale(1.2);
}

.form__head {
  font-size: 18px;
  line-height: 25px;
  padding: 0 12px 0 23px;
}

.form .slick-slide {
  margin: 0 15px;
}

.form .slick-list {
  margin: 0 -15px;
  padding-bottom: 30px;
}

.form .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.form .slick-dots li {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form .slick-dots li:last-child {
  margin-right: 0;
}

.form .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  background: #f7f7f7;
  border-radius: 50%;
}

.form .slick-dots .slick-active button {
  background: #ff4e4e;
}

.form .slick-arrow {
  width: 11px;
  height: 20px;
  border: 0;
  font-size: 0;
  background: none;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 50%;
  transform: translate(0, -50%);
}

.form .slick-arrow.slick-disabled {
  opacity: 0.5;
}

.form .slick-prev {
  background-image: url(../images/arrow-l.svg);
  left: -33px;
}

@media only screen and (max-width: 1240px) {
  .form .slick-prev {
    left: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .form .slick-prev {
    left: 0;
  }
}

.form .slick-next {
  background-image: url(../images/arrow-r.svg);
  right: -33px;
}

@media only screen and (max-width: 1240px) {
  .form .slick-next {
    right: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .form .slick-next {
    right: 0;
  }
}

.apply {
  background: url(../images/apply-bg.svg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0 115px 0;
}

@media only screen and (max-width: 1240px) {
  .apply {
    padding: 120px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .apply {
    padding: 60px 0 60px 0;
  }
}

#apply {
  position: relative;
  top: -95px;
}

@media only screen and (max-width: 991px) {
  #apply {
    position: relative;
    top: -95px;
  }

  #form {
    position: relative;
    top: -95px;
  }
}

.apply__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

@media only screen and (max-width: 767px) {
  .apply__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.apply__item {
  background: #ffffff;
  border-radius: 10px;
  transition: 300ms;
  padding: 20px 17px 25px 22px;
  transition: 1000ms;
  transform: translateY(50px);
  opacity: 0;
}

.apply__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .apply__item {
    padding: 16px 16px 20px 16px;
  }
}

.apply__item:last-child {
  display: block;
}

@media only screen and (max-width: 767px) {
  .apply__item:last-child {
    text-align: center;
  }
}

.apply__item-head {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.apply__item:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.apply__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(138.42deg, #ffe8f7 23.5%, rgba(255, 255, 255, 0) 76.88%), #ffffff;
  width: 88px;
  min-width: 88px;
  height: 88px;
  float: right;
  border-radius: 50%;
  margin-left: 10px;
}

.apply__head {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .apply__head {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

.apply__list li {
  display: inline;
  font-size: 16px;
  line-height: 22px;
}

.apply__list li span {
  color: #ff4e4e;
}

.apply__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 39px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .apply__btn {
    margin: 0 auto;
  }
}

.apply__btn span {
  position: relative;
  z-index: 5;
}

.apply__btn:hover::before {
  width: 188px;
  height: 49px;
}

.apply__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.super {
  padding-top: 80px;
}

@media only screen and (max-width: 1240px) {
  .super {
    padding-top: 50px;
  }
}

.super__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .super__items {
    display: block;
  }
}

.super__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-width: 260px;
  margin-right: 85px;
  transition: 1000ms;
  transform: translateX(-100px);
  opacity: 0;
}

.super__logo.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1240px) {
  .super__logo {
    width: 240px;
    min-width: 240px;
    margin-right: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .super__logo {
    margin: 0 auto 40px auto;
    width: 260px;
    min-width: 260px;
  }
}

.super__item {
  font-size: 20px;
  line-height: 28px;
  position: relative;
  transition: 1000ms;
  transform: translateX(100px);
  opacity: 0;
}

.super__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1240px) {
  .super__item {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .super__item {
    font-size: 16px;
    line-height: 24px;
  }
}

.super__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e8e8e8;
  position: absolute;
  left: -40px;
  top: 0;
}

@media only screen and (max-width: 1240px) {
  .super__item::before {
    left: -30px;
  }
}

@media only screen and (max-width: 767px) {
  .super__item::before {
    left: 50%;
    transform: translate(-50%, 0);
    width: 100px;
    height: 1px;
    top: -15px;
  }
}

.super__item p {
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .super__item p {
    margin-bottom: 10px;
  }
}

.super__item p:last-child {
  margin-bottom: 0;
}

.super__item p span {
  font-weight: 600;
}

.super__frame {
  width: 100%;
  height: 294px;
  margin-top: 80px;
}

.super__frame video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

@media only screen and (max-width: 1240px) {
  .super__frame {
    margin-top: 60px;
    height: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .super__frame {
    height: 220px;
    margin-top: 30px;
  }
}

.preparat {
  padding: 86px 0;
  background: #fbfbfb;
}

@media only screen and (max-width: 1240px) {
  .preparat {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .preparat {
    padding: 40px 0;
  }
}

.preparat__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 34px;
}

@media only screen and (max-width: 1240px) {
  .preparat__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .preparat__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}

.preparat__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 120px;
  column-gap: 120px;
  max-width: 1070px;
  margin: 0 auto;
}

@media only screen and (max-width: 1240px) {
  .preparat__items {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .preparat__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .preparat__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.preparat__item {
  transition: 1000ms;
  transform: translateY(50px);
  opacity: 0;
}

.preparat__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .preparat__item:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .preparat__item:last-child {
    grid-column-start: 1;
    grid-column-end: 2;
    max-width: 100%;
  }
}

.preparat__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 200px;
}

.preparat__text {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
}

.numbers {
  padding: 75px 0 25px 0;
}

@media only screen and (max-width: 1240px) {
  .numbers {
    padding: 60px 0 25px 0;
  }
}

@media only screen and (max-width: 767px) {
  .numbers {
    padding: 40px 0 25px 0;
  }
}

.numbers__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 17px;
}

@media only screen and (max-width: 1240px) {
  .numbers__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__items {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.numbers__item {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: 300ms;
  padding: 22px 12px 22px 22px;
  transition: 1000ms;
  transform: translateY(50px);
}

.numbers__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .numbers__item {
    padding: 16px;
  }
}

.numbers__item:hover {
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.numbers__item:hover .numbers__head span {
  color: #ff4e4e;
}

.numbers__head {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 5px;
  transition: 500ms;
}

.numbers__head span {
  font-weight: 600;
  transition: 300ms;
}

.numbers__text {
  font-size: 16px;
  line-height: 23px;
}

.numbers__content {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: 300ms;
  margin-bottom: 20px;
  padding: 30px 40px 35px 26px;
  transition: 1000ms;
  transform: translateY(50px);
}

.numbers__content.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .numbers__content {
    padding: 16px;
  }
}

.numbers__content:hover {
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.numbers__content:hover .numbers__head span {
  color: #ff4e4e;
}

.numbers__info {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .numbers__info {
    margin-bottom: 12px;
  }
}

.numbers__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 5px;
}

@media only screen and (max-width: 1240px) {
  .numbers__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .numbers__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__list {
    grid-template-columns: 1fr;
  }
}

.numbers__list-item {
  font-size: 18px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.numbers__list-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4e4e;
  min-width: 8px;
  margin-right: 10px;
}

.numbers__end {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: 300ms;
  padding: 20px 40px 20px 26px;
  font-size: 16px;
  line-height: 23px;
  transition: 1000ms;
  transform: translateY(50px);
}

.numbers__end.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .numbers__end {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__end {
    padding: 16px;
  }
}

.numbers__end:hover {
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.reviews {
  padding: 150px 0 75px 0;
  background: url(../images/review-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 991px) {
  .reviews {
    padding: 80px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .reviews {
    padding: 40px 0 80px 0;
  }
}

.reviews__title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 44px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .reviews__title {
    font-size: 28px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}

.reviews__item {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  overflow: hidden;
}

.reviews__item-inner {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .reviews__item-inner {
    display: block;
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__item-inner {
    padding: 15px;
  }
}

.reviews__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 276px;
  width: 276px;
  margin-right: 59px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

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

@media only screen and (max-width: 991px) {
  .reviews__image img {
    border-radius: 10px;
  }
}

@media only screen and (max-width: 1240px) {
  .reviews__image {
    min-width: 250px;
    width: 250px;
  }
}

@media only screen and (max-width: 991px) {
  .reviews__image {
    margin: 0 auto 50px auto;
    min-width: auto;
    width: 100%;
  }
}

.reviews__info {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 12px;
  position: relative;
}

.reviews__info::before {
  content: "";
  display: block;
  width: 29px;
  height: 25px;
  background-image: url(../images/opostr.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
  position: absolute;
  left: -40px;
  top: 0;
}

@media only screen and (max-width: 991px) {
  .reviews__info::before {
    left: 50%;
    transform: translate(-50%, 0);
    top: -30px;
  }
}

.reviews__link {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff4e4e;
  position: relative;
  margin-bottom: 40px;
}

.reviews__link:hover::before {
  opacity: 0;
}

.reviews__link::before {
  content: "";
  display: block;
  transition: 300ms;
  width: 100%;
  height: 1px;
  background-color: #ff4e4e;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.reviews__end-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.reviews__end-text {
  font-size: 14px;
}

.reviews__content {
  padding: 25px 18px 20px 0;
}

@media only screen and (max-width: 991px) {
  .reviews__content {
    padding: 0;
  }
}

.reviews__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .reviews__inner {
    display: block;
  }
}

.reviews__items {
  max-width: 870px;
}

@media only screen and (max-width: 1240px) {
  .reviews__items {
    max-width: 690px;
  }
}

@media only screen and (max-width: 991px) {
  .reviews__items {
    max-width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__items {
    max-width: 100%;
    width: 100%;
  }
}

.reviews .slick-slide,
.drug-reviews .slick-slide {
  position: relative;
}

.reviews .slick-slide.slick-active::before {
  opacity: 0;
}

.reviews .slick-list {
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .reviews .container {
    padding: 0;
  }
}

.reviews .slick-dots,
.drug-reviews .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}

.reviews .slick-dots li,
.drug-reviews .slick-dots li {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews .slick-dots li:last-child,
.drug-reviews .slick-dots li:last-child {
  margin-right: 0;
}

.reviews .slick-dots li button,
.drug-reviews .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  background: #e8e8e8;
  border-radius: 50%;
}

.reviews .slick-dots .slick-active button,
.drug-reviews .slick-dots .slick-active button {
  background: #ff4e4e;
}

.reviews .reviews__prev,
.reviews .reviews__next {
  min-width: 133px;
  width: 133px;
  display: flex;
  align-items: center;
  position: static;
  margin: 0;
  justify-content: center;
  position: relative;
  height: 308px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .reviews .reviews__prev,
  .reviews .reviews__next {
    display: none !important;
  }
}

.reviews .reviews__prev:hover::before,
.reviews .reviews__next:hover::before {
  opacity: 0;
}

.reviews .reviews__prev::after,
.reviews .reviews__next::after {
  content: "";
  display: block;
  width: 34px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: center;
  position: absolute;
  top: 50%;
  transition: 300ms;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews .reviews__prev::before,
.reviews .reviews__next::before {
  content: "";
  background: linear-gradient(180deg, rgba(220, 228, 255, 0.8) 0%, rgba(255, 238, 241, 0.8) 100%);
  display: block;
  position: absolute;
  width: 100%;
  z-index: 5;
  height: 100%;
  top: 0;
  border-radius: 10px;
  left: 0;
  transition: 500ms;
}

.reviews .reviews__prev img,
.reviews .reviews__next img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}

.reviews .reviews__prev::after {
  background-image: url(../images/review-l.svg);
}

.reviews .reviews__next::after {
  background-image: url(../images/review-r.svg);
}

.faq {
  padding: 82px 0 64px 0;
}

@media only screen and (max-width: 991px) {
  .faq {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .faq {
    padding: 40px 0 60px 0;
  }
}

.faq__item {
  margin-bottom: 15px;
  transition: 1000ms;
  transform: translateX(-100px);
}

.faq__item.element-show {
  opacity: 1;
  transform: none;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  transition: 300ms;
  padding: 12px 14px 12px 26px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .faq__header {
    padding: 15px;
  }
}

.faq__header.active {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    linear-gradient(90deg, #fdedf2 0%, #dee4fe 100%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.faq__header.active .faq__arrow {
  border: 1px solid #ff4e4e;
}

.faq__header.active .faq__arrow img:first-child {
  display: none;
}

.faq__header.active .faq__arrow img:last-child {
  display: block;
}

.faq__head {
  font-size: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .faq__head {
    font-size: 18px;
  }
}

.faq__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #3e68fd;
  border-radius: 50%;
  min-width: 38px;
  margin-left: 15px;
}

.faq__arrow img:last-child {
  display: none;
}

.faq__body {
  margin-top: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 18px 28px;
  font-size: 16px;
  display: none;
  line-height: 24px;
}

.faq__body a{
  color: #587cff;
}

@media only screen and (max-width: 767px) {
  .faq__body {
    padding: 15px;
  }
}

.sertificate {
  padding: 66px 0 86px 0;
  background: #fbfbfb;
}

@media only screen and (max-width: 767px) {
  .sertificate {
    padding: 40px 0 66px 0;
  }
}

.sertificate__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}

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

@media only screen and (max-width: 1240px) {
  .sertificate__items {
    padding: 0 20px;
  }
}

.sertificate .slick-list {
  margin: 0 -15px;
}

.sertificate .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.sertificate .slick-dots li {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sertificate .slick-dots li:last-child {
  margin-right: 0;
}

.sertificate .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  background: #e8e8e8;
  border-radius: 50%;
}

.sertificate .slick-dots .slick-active button {
  background: #ff4e4e;
}

.sertificate .slick-arrow {
  width: 11px;
  height: 20px;
  border: 0;
  font-size: 0;
  background: none;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 50%;
  transform: translate(0, -50%);
}

.sertificate .slick-arrow.slick-disabled {
  opacity: 0.5;
}

.sertificate .slick-prev {
  background-image: url(../images/arrow-l.svg);
  left: -33px;
}

@media only screen and (max-width: 1240px) {
  .sertificate .slick-prev {
    left: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate .slick-prev {
    left: 0;
  }
}

.sertificate .slick-next {
  background-image: url(../images/arrow-r.svg);
  right: -33px;
}

@media only screen and (max-width: 1240px) {
  .sertificate .slick-next {
    right: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate .slick-next {
    right: 0;
  }
}

.buy {
  padding: 70px 0 80px 0;
}

@media only screen and (max-width: 991px) {
  .buy {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .buy {
    padding: 40px 0;
  }
}

.buy__grid {
	display: grid;
	gap: 20px;
}

@media only screen and (min-width: 576px) {
	.buy__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 768px) {
	.buy__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;	
	}
}

@media only screen and (min-width: 992px) {
	.buy__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (max-width: 991px) {
	.buy__slider {
		padding: 0 20px;
	}
}

.buy__slide {
	margin: 15px;
}

@media only screen and (max-width: 1240px) {
	.buy__slide {
		margin: 10px;
	}
}

@media only screen and (max-width: 767px) {
	.buy__slide {
		margin: 5px;
	}
}

.buy__item {
  position: relative;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: 300ms;
  padding: 30px;
  transition: 1000ms;
}

.buy__item.element-show {
  opacity: 1;
  transform: none;
}

.buy__item:nth-child(3) .buy__image {
  transform: translateY(-15px);
}

.buy__item:hover {
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.buy__item:hover .buy__image {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.buy__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 100%;
  opacity: 0.8;
  filter: saturate(0);
  -webkit-filter: saturate(0);
  transition: 300ms;
}

@media only screen and (min-width: 576px) {
	.buy__image {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 575px) {
	.buy__btn {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  inset: 0;
	}
}

@media only screen and (min-width: 576px) {
	.buy__btn {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 100%;
	  height: 47px;
	  font-size: 18px;
	  font-weight: 600;	
	  background: #ff4e4e;
	  color: #fff;
	  border-radius: 100px;
	  text-transform: uppercase;
	}	
}

@media only screen and (min-width: 576px) {
	.buy__btn:hover {
	  box-shadow: 0 0 0 5px rgba(255, 78, 78, .2);
	}	
}

@media only screen and (max-width: 575px) {
	.buy__btn span {
		display: none;
	}
}

.buy .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.buy .slick-dots li {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy .slick-dots li:last-child {
  margin-right: 0;
}

.buy .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  background: #e8e8e8;
  border-radius: 50%;
}

.buy .slick-dots .slick-active button {
  background: #ff4e4e;
}

.buy .slick-arrow {
  width: 11px;
  height: 20px;
  border: 0;
  font-size: 0;
  background: none;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: calc(50% - 20px);
  transform: translate(0, -50%);
}

.buy .slick-arrow.slick-disabled {
  opacity: 0.5;
}

.buy .slick-prev {
  background-image: url(../images/arrow-l.svg);
  left: -33px;
}

@media only screen and (max-width: 1240px) {
  .buy .slick-prev {
    left: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .buy .slick-prev {
    left: 0;
  }
}

.buy .slick-next {
  background-image: url(../images/arrow-r.svg);
  right: -33px;
}

@media only screen and (max-width: 1240px) {
  .buy .slick-next {
    right: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .buy .slick-next {
    right: 0;
  }
}

.single-info {
  background: #fbfbfb;
  padding: 60px 0 100px 0;
}

@media only screen and (max-width: 767px) {
  .single-info {
    padding: 40px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .single-info picture {
    width: 100%;
    height: 100%;
  }
}

.single-info img {
  float: left;
  margin-right: 50px;
  margin-bottom: 20px;
  -o-object-fit: cover;
  min-width: 507px;
  width: 507px;
  object-fit: cover;
}

@media only screen and (max-width: 1240px) {
  .single-info img {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .single-info img {
    float: none;
    min-width: auto;
    width: 100%;
    display: block;
    text-align: center;
  }
}

.single-info h1,
.single-info h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

@media only screen and (max-width: 1240px) {
  .single-info h1,
  .single-info h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .single-info h1,
  .single-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.single-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
}

@media only screen and (max-width: 767px) {
  .single-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.single-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.single-info a {
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
}

.single-info ol {
  padding-left: 15px;
  text-decoration: underline;
  font-size: 16px;
  line-height: 22px;
}

.single-info ol li {
  margin-bottom: 10px;
}

.single-info ol li:last-child {
  margin-bottom: 0;
}

.single-info a:hover {
  color: #ff4e4e;
}

.info-block ol {
  padding-left: 15px;
  text-decoration: underline;
  font-size: 16px;
  line-height: 22px;
}

.info-block ol li {
  margin-bottom: 10px;
}

.info-block ol li:last-child {
  margin-bottom: 0;
}

.info-block a:hover {
  color: #ff4e4e;
}

.footer {
  background: #02071a;
  padding: 60px 0 60px 0;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .footer {
    padding: 40px 0 50px 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .footer__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .footer__items {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__start {
  max-width: 385px;
}

@media only screen and (max-width: 1240px) {
  .footer__start {
    max-width: 270px;
    min-width: 270px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__start {
    grid-column-start: 1;
    grid-column-end: 4;
    min-width: auto;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__start {
    grid-column-end: 3;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  margin-bottom: 17px;
}

@media only screen and (max-width: 991px) {
  .footer__logo {
    margin: 0 auto 15px auto;
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__info {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .footer__info {
    text-align: center;
  }
}

.footer__social {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social li {
  margin-right: 16px;
}

.footer__social li:last-child {
  margin-right: 0;
}

.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social li a:hover {
  transform: scale(1.1);
}

.footer__head {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}

@media only screen and (max-width: 991px) {
  .footer__item {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.footer__lists {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .footer__lists {
    justify-content: space-between;
  }
}

.footer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  max-width: 400px;
  row-gap: 15px;
}

@media only screen and (max-width: 991px) {
  .footer__list {
    column-gap: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__list {
    column-gap: 20px;
  }
}

.footer__list:last-child {
  margin-right: 0;
}

.footer__list li {
}

.footer__list li:last-child {
}

.footer__list li a {
  font-size: 16px;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .footer__list li a {
    white-space: normal;
  }
}

.footer__list li a:hover {
  color: #ef453e;
}

@media only screen and (max-width: 991px) {
  .footer__end {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.footer__contacts {
  margin-bottom: 12px;
}

.footer__contacts a {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer__contacts a:last-child {
  margin-bottom: 0;
}

.footer__contacts a:hover {
  color: #ef453e;
}

.footer__contacts a img {
  margin-right: 7px;
}

.footer__adres {
  font-size: 16px;
  line-height: 24px;
  max-width: 226px;
}

@media only screen and (max-width: 1240px) {
  .footer__adres {
    max-width: 200px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__adres {
    max-width: 100%;
  }
}

.footer-end {
  text-align: center;
  padding: 20px 16px;
  background: #000414;
  font-size: 14px;
  color: #fff;
}

.showcase-product {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .showcase-product {
    min-height: auto;
    padding: 140px 0 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product {
    padding: 120px 0 80px 0;
  }

  .showcase-product:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    z-index: 10;
  }
}

.showcase-product .container {
  width: 100%;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1240px) {
  .showcase-product .container {
    width: 970px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase-product .container {
    width: 750px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product .container {
    width: 100%;
  }
}

.showcase-product__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 100px;
  -webkit-animation: spin 3s infinite linear;
  animation: spin 3s infinite linear;
}

@-webkit-keyframes spin {
  0% {
    transform: translate3d(0, -50%, 0) translate(-50%, 0);
  }
  50% {
    transform: translate3d(0, 50%, 0) translate(-50%, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0) translate(-50%, 0);
  }
}

@keyframes spin {
  0% {
    transform: translate3d(0, -50%, 0) translate(-50%, 0);
  }
  50% {
    transform: translate3d(0, 50%, 0) translate(-50%, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0) translate(-50%, 0);
  }
}

@media only screen and (max-width: 991px) {
  .showcase-product__arrow {
    bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product__arrow {
    width: 32px;
  }
}

.showcase-product__content {
  max-width: 594px;
}

@media only screen and (max-width: 991px) {
  .showcase-product__content {
    max-width: 500px;
  }
}

.showcase-product__title {
  text-transform: uppercase;
  font-size: 37px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 22px;
}

@media only screen and (max-width: 991px) {
  .showcase-product__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product__title {
    font-size: 24px;
    line-height: 30px;
  }
}

.showcase-product__head {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

@media only screen and (max-width: 991px) {
  .showcase-product__head {
    font-size: 24px;
  }
}

.showcase-product__info {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 991px) {
  .showcase-product__info {
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product__info {
    font-size: 16px;
    line-height: 22px;
  }
}

.showcase-product__items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .showcase-product__items {
    display: block;
  }
}

.showcase-product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  margin-right: 34px;
}

@media only screen and (max-width: 767px) {
  .showcase-product__btn {
    margin: 0 auto 30px auto;
  }
}

.showcase-product__btn span {
  position: relative;
  z-index: 5;
}

.showcase-product__btn:hover::before {
  width: 207px;
  height: 59px;
}

.showcase-product__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.showcase-product__download {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .showcase-product__download {
    justify-content: center;
  }
}

.showcase-product__download:hover {
  text-decoration: underline;
  color: #ef453e;
}

.showcase-product__download img {
  margin-right: 10px;
}

.showcase-product__slider {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .showcase-product__slider {
    height: 100%;
  }
}

.showcase-product__slider .slick-list,
.showcase-product__slider .slick-track {
  height: 100vh;
}

@media only screen and (max-width: 991px) {
  .showcase-product__slider .slick-list,
  .showcase-product__slider .slick-track {
    height: 523px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-product__slider .slick-list,
  .showcase-product__slider .slick-track {
    height: 100%;
  }
}

.showcase-product__slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.showcase-product__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .showcase-product__slider-item img {
    -o-object-position: 75% 50%;
    object-position: 75% top;
  }
}

.cistit {
  padding: 105px 0 30px 0;
}

@media only screen and (max-width: 1240px) {
  .cistit {
    padding: 80px 0 30px 0;
  }
}

@media only screen and (max-width: 991px) {
  .cistit {
    padding: 60px 0 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .cistit {
    padding: 40px 0 20px 0;
  }
}

.cistit__title:not(:last-child) {
	margin: 0;
}

.cistit__description {
	font-weight: 700;
	text-align: center;
	margin: 15px 0 45px;
}

@media only screen and (max-width: 1240px) {
	.cistit__description {
		margin-bottom: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.cistit__description {
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 768px) {
	.cistit__description {
		font-size: 18px;
	}
}

.cistit__items {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .cistit__items {
    display: block;
  }
}

.cistit__item {
  max-width: 410px;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
}

@media only screen and (max-width: 1240px) {
  .cistit__item {
    max-width: 380px;
  }
}

@media only screen and (max-width: 991px) {
  .cistit__item {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.cistit__item:last-child {
  margin-bottom: 0;
}

.cistit__note {
	margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  .cistit__block {
    margin-bottom: 20px;
  }
}

.cistit__block:last-child {
  transition: 1000ms;
  transform: translateX(50px);
  opacity: 0;
}

.cistit__block:last-child.element-show {
  transform: none;
  opacity: 1;
}

.cistit__block:last-child .cistit__item {
  flex-direction: row-reverse;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .cistit__block:last-child .cistit__item {
    text-align: left;
    flex-direction: row;
  }
}

.cistit__block:last-child .cistit__image {
  margin-right: 0;
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .cistit__block:last-child .cistit__image {
    margin-left: 0;
    margin-right: 20px;
  }
}

.cistit__block:nth-child(2) {
  transition: 1000ms;
  transform: translateX(-50px);
  opacity: 0;
}

.cistit__block:nth-child(2).element-show {
  transform: none;
  opacity: 1;
}

.cistit__abs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 329px;
  transition: 1000ms;
  transform: translate(-50%, -30%);
  opacity: 0;
}

.cistit__abs.element-show {
  transform: translate(-50%, -50%);
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .cistit__abs.element-show {
    transform: none;
  }
}

.cistit__abs img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1240px) {
  .cistit__abs {
    width: 170px;
  }
}

@media only screen and (max-width: 991px) {
  .cistit__abs {
    width: 300px;
    position: static;
    margin: 0 auto 30px auto;
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .cistit__abs {
    width: 100%;
    margin: -30px auto -30px auto;
  }
}

.cistit__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  min-width: 88px;
  background: linear-gradient(138.42deg, #ffe8f7 23.5%, rgba(255, 255, 255, 0) 76.88%);
  margin-right: 30px;
}

@media only screen and (max-width: 991px) {
  .cistit__image {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .cistit__image {
    margin-right: 15px;
    min-width: 75px;
    width: 75px;
    height: 75px;
  }
  .cistit__image img {
    width: 50%;
  }
}

.cistit__text {
  font-size: 16.7px;
  line-height: 20px;
}

.cistit__text span{
	color: #ff4e4e;
}

@media only screen and (max-width: 767px) {
  .cistit__text {
    font-size: 16px;
  }
}

.sostav {
  padding: 172px 0 77px 0;
  background: url(../images/review-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1240px) {
  .sostav {
    padding: 140px 0 60px 0;
  }
}

@media only screen and (max-width: 991px) {
  .sostav {
    padding: 120px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .sostav {
    padding: 80px 0 60px 0;
  }
}

.sostav__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 398px;
  column-gap: 398px;
  row-gap: 207px;
  position: relative;
}

@media only screen and (max-width: 1240px) {
  .sostav__items {
    row-gap: 163px;
  }
}

@media only screen and (max-width: 991px) {
  .sostav__items {
    row-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .sostav__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.sostav__item {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.sostav__item:hover .sostav__before svg path {
  fill: #ff4e4e;
}

.sostav__item svg path {
  transition: 500ms;
}

.sostav__item:nth-child(4) {
  grid-column-start: 1;
  grid-column-end: 3;
  max-width: 564px;
  width: 100%;
  margin: 0 auto;
  grid-row-start: 2;
  grid-row-end: 3;
  text-align: center;
  transition: 1000ms;
  transform: translateY(50px);
  opacity: 0;
}

.sostav__item:nth-child(4).element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .sostav__item:nth-child(4) {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
    max-width: 100%;
    text-align: left;
  }
}

.sostav__item:nth-child(4) .sostav__before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -160px;
}

@media only screen and (max-width: 991px) {
  .sostav__item:nth-child(4) .sostav__before {
    display: none;
  }
}

.sostav__item:nth-child(4) .sostav__text {
  max-width: 400px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .sostav__item:nth-child(4) .sostav__text {
    max-width: 100%;
  }
}

.sostav__item:nth-child(2) {
  transition: 1000ms;
  transform: translateX(-50px);
  opacity: 0;
}

.sostav__item:nth-child(2).element-show {
  transform: none;
  opacity: 1;
}

.sostav__item:nth-child(2) .sostav__before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -205px;
  top: 0;
}

@media only screen and (max-width: 1240px) {
  .sostav__item:nth-child(2) .sostav__before {
    right: -203px;
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sostav__item:nth-child(2) .sostav__before {
    display: none;
  }
}

.sostav__item:nth-child(3) {
  transition: 1000ms;
  transform: translateX(50px);
  opacity: 0;
}

.sostav__item:nth-child(3).element-show {
  transform: none;
  opacity: 1;
}

.sostav__item:nth-child(3) .sostav__before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -200px;
  top: 0;
}

@media only screen and (max-width: 1240px) {
  .sostav__item:nth-child(3) .sostav__before {
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sostav__item:nth-child(3) .sostav__before {
    display: none;
  }
}

.sostav__head {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sostav__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.sostav__center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 214px;
  border-radius: 50%;
  background: #ff4e4e;
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 0) scale(0.5);
  transition: 1000ms;
  opacity: 0;
}

.sostav__center.element-show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .sostav__center {
    opacity: 0.5;
  }
}

@media only screen and (max-width: 767px) {
  .sostav__center {
    display: none;
  }
}

.mehanizm {
  padding-top: 80px;
}

@media only screen and (max-width: 991px) {
  .mehanizm {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .mehanizm {
    padding-top: 40px;
  }
}

.mehanizm__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-bottom: 25px;
  row-gap: 30px;
}

@media only screen and (max-width: 1240px) {
  .mehanizm__items {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .mehanizm__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .mehanizm__items {
    grid-template-columns: 1fr;
  }
}

.mehanizm__item {
  background: #fff;
  border-radius: 10px;
  padding: 21px;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
  position: relative;
}

.mehanizm__item:hover::before {
  background: #ff4e4e;
}

.mehanizm__item::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: #ebebeb;
  transition: 300ms;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.mehanizm__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.mehanizm__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  min-width: 43px;
  font-size: 16px;
  color: #e2b1cf;
  border-radius: 50%;
  background: linear-gradient(138.42deg, #ffe8f7 23.5%, rgba(255, 255, 255, 0) 76.88%);
}

.mehanizm__text {
  font-size: 17px;
  line-height: 21px;
}

.mehanizm__text span {
  font-weight: 700;
}

.mehanizm__end {
  position: relative;
  height: 37px;
  display: flex;
}

.mehanizm__end-inner {
  padding-bottom: 27px;
  border-bottom: 1px solid #f1f1f1;
}

@media only screen and (max-width: 767px) {
  .mehanizm__end-inner {
    display: none;
  }
}

.mehanizm__end-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  color: #000000;
  z-index: 7;
  opacity: 0.08;
}

.mehanizm__end-block {
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-top-right-radius: 40px;
  width: 100%;
  transition: 500ms;
  height: 100%;
  margin-right: -40px;
}

.mehanizm__end-block.active {
  background: #ff4e4e;
}

.mehanizm__end-block--first {
  border-top-left-radius: 40px;
  border-top-right-radius: 70px;
  border-bottom-left-radius: 40px;
  position: relative;
  z-index: 6;
}

.mehanizm__end-block--second {
  position: relative;
  z-index: 5;
}

.mehanizm__end-block--third {
  position: relative;
  z-index: 4;
}

.mehanizm__end-block--foure {
  position: relative;
  z-index: 3;
}

.mehanizm__end-block--five {
  position: relative;
  z-index: 2;
}

.mehanizm__end-block--six {
  position: relative;
  z-index: 1;
  transform: translateX(-40px);
}

.form-apply__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .form-apply__items {
    display: block;
  }
}

.form-apply__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 498px;
  min-width: 498px;
  margin-right: 49px;
}

@media only screen and (max-width: 1240px) {
  .form-apply__image {
    min-width: 420px;
    width: 420px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .form-apply__image {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .form-apply__image {
    width: 100%;
    min-width: auto;
  }
}

.form-apply__image img {
  width: 100%;
  height: 100%;
}

.form-apply__title {
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .form-apply__title {
    font-size: 28px;
    margin-bottom: 5px;
  }
}

.form-apply__info {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
}

.form-apply__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.form-apply__list li:last-child {
  margin-bottom: 0;
}

.form-apply__list li img {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 11px;
}

.showcase-page {
  padding: 16px 0 104px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 75px;
  z-index: 5;
  position: relative;
}

.showcase-page::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(64, 64, 64, 0.75), rgba(64, 64, 64, 0.75));
}

.showcase-page .container {
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 991px) {
  .showcase-page {
    background-position: left;
    padding-bottom: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-page {
    padding-bottom: 40px;
    margin-top: 75px;
  }
}

.showcase-page__bread {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  margin-bottom: 72px;
}

@media only screen and (max-width: 991px) {
  .showcase-page__bread {
    margin-bottom: 40px;
  }
}

.showcase-page__bread a {
  opacity: 0.5;
}

.showcase-page__bread a:hover {
  opacity: 1;
}

.showcase-page__bread-line {
  margin: 0 11px;
}

.showcase-page__title {
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .showcase-page__title {
    font-size: 30px;
  }
}

.urologia {
  padding: 60px 0 80px 0;
}

@media only screen and (max-width: 991px) {
  .urologia {
    padding: 40px 0 60px 0;
  }
}

.urologia__items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .urologia__items {
    flex-direction: column-reverse;
  }
}

.urologia__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 439px;
  margin-left: 155px;
  width: 439px;
  transform: scale(1.5);
}

@media only screen and (max-width: 1240px) {
  .urologia__image {
    min-width: 380px;
    width: 380px;
    margin-left: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .urologia__image {
    margin: 0 auto;
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .urologia__image {
    min-width: auto;
    width: 100%;
  }
}

.urologia__title {
  text-transform: uppercase;
  font-size: 34px;
  line-height: 41px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .urologia__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.urologia__list li {
  margin-bottom: 16px;
  display: flex;
  transition: 300ms;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .urologia__list li {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.urologia__list li:hover {
  color: #ff4e4e;
}

.urologia__list li:hover::before {
  background: none;
}

.urologia__list li::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid #ff4e4e;
  transition: 300ms;
  min-width: 15px;
  background: #ff4e4e;
  border-radius: 50%;
  margin-right: 11px;
}

@media only screen and (max-width: 991px) {
  .urologia__list li::before {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border: 2px solid #ff4e4e;
  }
}

.urologia__list li:last-child {
  margin-bottom: 0;
}

.banner-light {
  padding: 30px 0 25px 0;
  background: #e4e4e48f;
}

@media only screen and (max-width: 767px) {
  .banner-light {
    padding: 15px 0;
  }
}

.banner-light p {
  text-align: center;
  margin: 0 auto;
  max-width: 790px;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 41px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .banner-light p {
    font-size: 28px;
    max-width: 700px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-light p {
    font-size: 20px;
    line-height: 24px;
  }
}

.banner-img {
  padding: 85px 0 100px 0;
}

@media only screen and (max-width: 991px) {
  .banner-img {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-img {
    padding: 60px 0;
  }
}

.banner-img__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img__image img {
  width: 100%;
  height: 100%;
}

.mehanizm-super__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 15px;
}

@media only screen and (max-width: 991px) {
  .mehanizm-super__items {
    grid-template-columns: 1fr;
  }
}

.mehanizm-super__item {
  display: flex;
  align-items: flex-start;
}

.mehanizm-super__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  border-radius: 50%;
  height: 88px;
  min-width: 88px;
  background: linear-gradient(138.42deg, #ffe8f7 23.5%, rgba(255, 255, 255, 0) 76.88%);
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .mehanizm-super__image {
    margin-right: 15px;
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
}

.mehanizm-super__text {
  font-size: 20px;
  line-height: 24px;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .mehanizm-super__text {
    font-size: 16px;
    line-height: 20px;
    padding-top: 0;
  }
}

.mehanizm-super__text span {
  font-weight: 600;
}

.unikal {
  padding: 150px 0 95px 0;
  background: url(../images/review-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 991px) {
  .unikal {
    padding: 120px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .unikal {
    padding: 60px 0;
  }
}

.unikal__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 25px;
}

@media only screen and (max-width: 1240px) {
  .unikal__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .unikal__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.unikal__item {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 18px 22px;
  position: relative;
  transition: 300ms;
}

@media only screen and (max-width: 1240px) {
  .unikal__item {
    min-height: 120px;
  }
}

.unikal__item:hover {
  background: linear-gradient(180deg, #dce4ff 0%, #ffeef1 100%), #e1e5fd;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.unikal__item:hover .unikal__number {
  background: #ff4e4e;
}

.unikal__text {
  font-size: 18px;
  line-height: 20px;
  max-width: 80%;
  font-weight: 500;
}

.unikal__number {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  font-size: 55px;
  font-weight: 500;
  color: #fff;
  background: #f1f1f1;
  position: absolute;
  bottom: 15px;
  right: 13px;
}

@media only screen and (max-width: 767px) {
  .unikal__number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 45px;
  }
}

.info-block {
  padding: 100px 0 82px 0;
}

@media only screen and (max-width: 991px) {
  .info-block {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .info-block {
    padding: 40px 0 60px 0;
  }
}

.info-block p {
  font-size: 16px;
  line-height: 23px;
}

.top_button {
  border-radius: 50%;
  padding: 13px 15px;
  z-index: 150;
  position: fixed;
  bottom: 90px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  right: 20px;
  background: #ff4e4e;
  transform: rotate(180deg);
  display: none;
}

@media only screen and (max-width: 767px) {
  .top_button {
    bottom: 70px;
    right: 10px;
  }
}

.top_button span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_button span img {
  transform: rotate(180deg);
}

.bread {
  padding: 90px 0 58px 0;
}

@media only screen and (max-width: 991px) {
  .bread {
    padding: 90px 0 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .bread {
    padding: 60px 0 30px 0;
  }
}

.bread .showcase-page__bread {
  color: #ff4e4e;
  margin: 0;
}

.bread .showcase-page__bread a {
  color: #252525;
  opacity: 0.5;
}

.bread .showcase-page__bread a:hover {
  opacity: 1;
}

.kb_sep {
  margin: 0 8px;
}

.regen-showcase {
  margin-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .regen-showcase {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-showcase {
    margin-bottom: 60px;
  }
}

.regen-showcase__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .regen-showcase__items {
    display: block;
  }
}

.regen-showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 465px;
  width: 465px;
  margin-left: 55px;
  border-radius: 10px;
}

@media only screen and (max-width: 1240px) {
  .regen-showcase__image {
    min-width: 420px;
    width: 420px;
    margin-left: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-showcase__image {
    min-width: auto;
    width: 100%;
    margin: 20px 0 0 0;
    height: 300px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .regen-showcase__image {
    height: 100%;
  }
}

.regen-showcase__image picture {
  width: 100%;
  height: 100%;
}

.regen-showcase__image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.regen-showcase__item {
  padding-top: 16px;
}

@media only screen and (max-width: 1240px) {
  .regen-showcase__item {
    padding: 0;
  }
}

.regen-showcase__title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 13px;
}

@media only screen and (max-width: 767px) {
  .regen-showcase__title {
    font-size: 24px;
  }
}

.regen-showcase__info {
  font-size: 16px;
  line-height: 20px;
}

.regen-showcase__info p {
  margin-bottom: 20px;
}

.regen-showcase__info p:last-child {
  margin-bottom: 0;
}

.regen-scheme {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .regen-scheme {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-scheme__content {
    display: flex;
    flex-direction: column;
  }
}

.regen-scheme__items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .regen-scheme__items {
    order: 2;
    display: block;
  }
}

.regen-scheme__item {
  padding: 13px 23px;
  font-size: 22px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 20px;
  width: 100%;
  white-space: nowrap;
  text-align: center;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme__item {
    white-space: normal;
  }
}

@media only screen and (max-width: 991px) {
  .regen-scheme__item {
    font-size: 18px;
    padding: 10px 14px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-scheme__item {
    margin-bottom: 20px;
  }
}

.regen-scheme__item:last-child {
  margin-right: 0;
}

.regen-scheme__center {
  position: relative;
  font-size: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 71px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 825px;
  width: 100%;
  background: linear-gradient(180deg, #dce4ff 0%, #eef6ff 100%);
  border-radius: 112px;
  padding: 16px;
  margin: 50px auto 65px auto;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme__center {
    font-size: 50px;
    line-height: 60px;
    max-width: 700px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-scheme__center {
    font-size: 40px;
    max-width: 550px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-scheme__center {
    order: 1;
    font-size: 32px;
    line-height: 38px;
    max-width: 100%;
    border-radius: 40px;
    margin: 0 0 40px 0;
  }
}

.regen-scheme__center::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -36px;
  width: 2px;
  background: #779fff;
  height: 26px;
}

@media only screen and (max-width: 767px) {
  .regen-scheme__center::before {
    display: none;
  }
}

.regen-scheme__center::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -36px;
  width: 2px;
  background: #779fff;
  height: 26px;
}

@media only screen and (max-width: 767px) {
  .regen-scheme__center::after {
    height: 20px;
    bottom: -30px;
  }
}

.regen-scheme__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .regen-scheme__image {
    display: none;
  }
}

.regen-scheme__image-first {
  left: -90px;
  top: -37px;
}

@media only screen and (max-width: 991px) {
  .regen-scheme__image-first {
    width: 55px;
    left: -65px;
  }
}

.regen-scheme__image-second {
  right: -90px;
  top: -37px;
}

@media only screen and (max-width: 991px) {
  .regen-scheme__image-second {
    width: 55px;
    right: -65px;
  }
}

.regen-scheme__image-third {
  bottom: -37px;
  left: -112px;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme__image-third {
    width: 80px;
    left: -95px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-scheme__image-third {
    width: 55px;
    left: -65px;
  }
}

.regen-scheme__image-foure {
  bottom: -37px;
  right: -112px;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme__image-foure {
    width: 80px;
    right: -95px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-scheme__image-foure {
    width: 55px;
    right: -65px;
  }
}

.banner-regeneration p {
  font-size: 30px;
  line-height: 42px;
  max-width: 1055px;
}

@media only screen and (max-width: 991px) {
  .banner-regeneration p {
    font-size: 24px;
    line-height: 30px;
  }
}

.regen-list {
  padding: 60px 0 82px 0;
}

@media only screen and (max-width: 991px) {
  .regen-list {
    padding: 40px 0 60px 0;
  }
}

.regen-list__title {
  margin: 0 auto 48px auto;
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  max-width: 1045px;
}

@media only screen and (max-width: 991px) {
  .regen-list__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-list__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}

.regen-list__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .regen-list__items {
    display: block;
  }
}

.regen-list__item {
  display: flex;
  align-items: center;
  margin-right: 35px;
}

@media only screen and (max-width: 1240px) {
  .regen-list__item {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-list__item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .regen-list__item:last-child {
    margin-bottom: 0;
  }
}

.regen-list__item:last-child {
  margin-right: 0;
}

.regen-list__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89px;
  height: 89px;
  border-radius: 50%;
  min-width: 89px;
  background: linear-gradient(138.42deg, #ffe8f7 23.5%, rgba(255, 255, 255, 0) 76.88%);
  margin-right: 30px;
}

@media only screen and (max-width: 1240px) {
  .regen-list__image {
    min-width: 75px;
    width: 75px;
    height: 75px;
    margin-right: 20px;
  }
}

.regen-list__text {
  font-size: 20px;
  line-height: 23px;
}

.regen-advant {
  padding: 60px 0 65px 0;
  background: #fbfbfb;
}

@media only screen and (max-width: 991px) {
  .regen-advant {
    padding: 40px 0;
  }
}

.regen-advant__title {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1240px) {
  .regen-advant__title {
    font-size: 32px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .regen-advant__title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-advant__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

.regen-advant__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 55px;
}

@media only screen and (max-width: 1240px) {
  .regen-advant__text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-advant__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.regen-advant__btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .regen-advant__btns {
    display: block;
  }
}

.regen-advant__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .regen-advant__btn {
    margin: 0 auto 15px auto;
  }
}

.regen-advant__btn:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .regen-advant__btn:last-child {
    margin-bottom: 0;
    margin-right: auto;
  }
}

.regen-advant__btn:hover::before {
  width: 284px;
  height: 59px;
}

.regen-advant__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.regen-advant__btn span {
  position: relative;
  z-index: 5;
}

.regen-advant__btn:last-child {
  width: 212px;
}

.regen-advant__btn:last-child:hover::before {
  width: 228px;
  height: 59px;
}

.instruction-bg {
  background: url(../images/instruction-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
}

.instruction {
  padding-bottom: 60px;
}

.instruction__content {
  max-width: 862px;
  margin: 0 auto;
}

@media only screen and (max-width: 1240px) {
  .instruction__content {
    max-width: 100%;
  }
}

.instruction__content h1,
.instruction__content h2,
.instruction__content h3 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .instruction__content h1,
  .instruction__content h2,
  .instruction__content h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .instruction__content h1 br,
  .instruction__content h2 br,
  .instruction__content h3 br {
    display: none;
  }
}

.instruction__content p,
.instruction__content div {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 20px;
}

.instruction__content p:last-child {
  margin-bottom: 0;
}

.instruction__content p strong {
  font-weight: 600;
}

.special-video {
  padding: 80px 0;
}

@media only screen and (max-width: 991px) {
  .special-video {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .special-video {
    padding: 40px 0 60px 0;
  }
}

.special-video__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .special-video__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}

.special-video__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 196px;
}

.special-video__item iframe {
  width: 100%;
  height: 100%;
}

.special-video__item.active::before {
  opacity: 0;
}

.special-video__item.active video {
  display: block;
}

.special-video__item.active .special-video__play {
  display: none;
}

.special-video__item.active .special-video__image {
  display: none;
}

.special-video__item.active .special-video__name {
  display: none;
}

.special-video__item video {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.special-video__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.special-video__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.special-video__image picture {
  width: 100%;
  height: 100%;
}

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

.special-video__name {
  width: 100%;
  position: absolute;
  bottom: 15px;
  padding: 0 13px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .special-video__name {
    font-size: 15px;
  }
}

.special-video .slick-slide {
  margin: 0 15px;
}

@media only screen and (max-width: 1240px) {
  .special-video .slick-slide {
    margin: 0 6px;
  }
}

.special-video .slick-slide > div {
  margin-bottom: 32px;
}

@media only screen and (max-width: 1240px) {
  .special-video .slick-slide > div {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .special-video .slick-slide > div {
    margin-bottom: 15px;
  }
}

.special-video .slick-slide > div:last-child {
  margin-bottom: 0;
}

.special-video .slick-list {
  margin: 0 -15px;
}

@media only screen and (max-width: 1240px) {
  .special-video .slick-list {
    margin: 0 -6px;
  }
}

.special-video .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 33px;
}

@media only screen and (max-width: 767px) {
  .special-video .slick-dots {
    margin-top: 25px;
  }
}

.special-video .slick-dots li {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.special-video .slick-dots li button {
  border: 0;
  font-size: 0;
  background: #e8e8e8;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 50%;
}

.special-video .slick-dots li:last-child {
  margin-right: 0;
}

.special-video .slick-dots .slick-active button {
  background: #ff4e4e;
}

.special-states {
  padding: 73px 0 100px 0;
  background-color: #fbfbfb;
  background-image: url(../images/special-states-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media only screen and (max-width: 991px) {
  .special-states {
    padding: 50px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .special-states {
    padding: 40px 0 60px 0;
  }
}

.special-states__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 32px;
}

@media only screen and (max-width: 1240px) {
  .special-states__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .special-states__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 639px) {
  .special-states__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.special-states__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.special-states__block {
  margin-bottom: 10px;
}

.special-states__image {
  position: relative;
  margin-bottom: 14px;
  min-height: 50px;
}

.special-states__image-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.special-states__image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 195px;
  border-radius: 10px;
}

.special-states__category {
  font-size: 10px;
  font-weight: 600;
  color: #5a5a5a;
  display: inline-block;
  padding: 5px 8px;
  background: #e9e9e9;
  border-radius: 4px;
}

.special-states__name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1240px) {
  .special-states__name {
    font-size: 18px;
  }
}

.special-states__name:hover {
  color: #ff4e4e;
}

.special-states__text {
  font-size: 16px;
  line-height: 23px;
}

.special-states__read {
  font-size: 16px;
  font-weight: 500;
  color: #ff4e4e;
  text-decoration: underline;
}

.special-states__read:hover {
  text-decoration: none;
}

.special-states__all {
  margin: 22px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.special-states__all span {
  position: relative;
  z-index: 5;
}

.special-states__all:hover::before {
  width: 207px;
  height: 59px;
}

.special-states__all::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__reklama {
  margin: 44px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.faq__reklama span {
  position: relative;
  z-index: 5;
}

.faq__reklama:hover::before {
  width: 291px;
  height: 59px;
}

.faq__reklama::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.states {
  padding: 82px 0;
}

@media only screen and (max-width: 991px) {
  .states {
    padding: 60px 0 80px;
  }
}

@media only screen and (max-width: 767px) {
  .states {
    padding: 40px 0 60px 0;
  }
}

.states__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .states__items {
    display: block;
  }
}

.states__saidbar {
  min-width: 366px;
  width: 366px;
  margin-right: 32px;
  padding: 20px 30px 25px 30px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .states__saidbar {
    min-width: auto;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0;
  }
}

.states__saidbar-items {
  margin-top: 10px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .states__saidbar-items {
    padding: 0 20px 20px 20px;
  }
}

.states__saidbar-title {
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .states__saidbar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 20px;
  }
  .states__saidbar-title.active::after {
    transform: rotate(180deg);
  }
  .states__saidbar-title::after {
    content: "";
    display: block;
    margin-left: 5px;
    transition: 300ms;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #696969 transparent transparent transparent;
  }
}

.states__saidbar-category {
  font-size: 18px;
  color: #666666;
  cursor: pointer;
  display: flex;
  transition: 300ms;
  align-items: center;
}

.states__saidbar-listcategory {
  font-size: 18px;
  color: #666666;
  cursor: pointer;
  display: flex;
  transition: 300ms;
  align-items: center;
  padding-left: 10px;
  display: none;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .states__saidbar-listcategory {
    display: flex;
  }
}

.states__saidbar-listcategory::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: #696969 transparent transparent transparent;
}

.states__saidbar-category:hover {
  color: #ff4e4e;
  font-weight: 500;
}

.states__saidbar-category:hover:after {
  border-color: #ff4e4e transparent transparent transparent;
}

.states__saidbar-category::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: #696969 transparent transparent transparent;
}

.states__saidbar-category.active::after {
  transform: rotate(180deg);
}

.states__saidbar-item {
  margin-bottom: 10px;
}
.states__saidbar-listcategory.active {
  display: flex;
}

.states__saidbar-item.active .states__saidbar-listcategory {
  display: flex;
}

.states__saidbar-subcategory.active {
  display: block;
}

.states__saidbar-category:hover {
  color: #ff4e4e;
  font-weight: 500;
}

.states__saidbar-listcategory:hover {
  color: #ff4e4e;
  font-weight: 500;
}

.states__saidbar-listcategory:hover:after {
  color: #ff4e4e;
  font-weight: 500;
}

.states__saidbar-category:hover:after {
  border-color: #ff4e4e transparent transparent transparent;
}

.states__saidbar-item:last-child {
  margin-bottom: 0;
}

.states__saidbar-subcategory {
  transition: 300ms;
  padding-top: 10px;
  padding-left: 20px;
  display: none;
}

.states__saidbar-subcategory li {
  position: relative;
}

.states__saidbar-subcategory li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #ff4e4e;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -11px;
}

@media only screen and (max-width: 991px) {
  .states__saidbar-subcategory {
    padding-left: 15px;
  }
  .states__saidbar-subcategory.active {
    display: block;
  }
}

.states__saidbar-subcategory li {
  font-size: 18px;
  color: #666666;
  margin-bottom: 10px;
  transition: 300ms;
  cursor: pointer;
}

.states__saidbar-subcategory li:hover {
  color: #ff4e4e;
}

.states__saidbar-subcategory li:last-child {
  margin-bottom: 0;
}

.states .special-states__items {
  grid-template-columns: 1fr;
}

@media only screen and (max-width: 639px) {
  .states .special-states__items {
    grid-template-columns: 1fr;
  }
}

.states__title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 26px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1240px) {
  .states__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.questions {
  padding: 100px 0;
}

@media only screen and (max-width: 1240px) {
  .questions {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .questions {
    padding: 60px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .questions {
    padding: 40px 0 60px 0;
  }
}

.questions__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 53px;
}

@media only screen and (max-width: 991px) {
  .questions__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .questions__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.reviews-page {
  margin-bottom: 140px;
}

@media only screen and (max-width: 1240px) {
  .reviews-page {
    margin-bottom: 120px;
  }
}

.reviews-page__content {
  max-width: 861px;
  min-height: 197px;
  margin: 0 auto 20px auto;
}

@media only screen and (max-width: 1240px) {
  .reviews-page__content {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews-page__content {
    min-height: auto;
  }
}

.reviews-page__content h1,
.reviews-page__content h2,
.reviews-page__content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .reviews-page__content h1,
  .reviews-page__content h2,
  .reviews-page__content h3 {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
  }
}

.reviews-page__content p {
  font-size: 16px;
  line-height: 22px;
}

.reviews-page__italic {
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  max-width: 861px;
  margin: 0 auto 70px auto;
}

@media only screen and (max-width: 1240px) {
  .reviews-page__italic {
    max-width: 100%;
  }
}

.reviews-page__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 217px;
  min-width: 217px;
  height: 197px;
  margin-right: 33px;
  float: left;
}

@media only screen and (max-width: 767px) {
  .reviews-page__image {
    float: none;
    margin: 0 auto 10px auto;
  }
}

.reviews-page__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews-page .slick-slide {
  position: relative;
}

.reviews-page .slick-slide.slick-active::before {
  opacity: 0;
}

.reviews-page .slick-list {
  padding: 15px;
}

.reviews-page .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}

.reviews-page .slick-dots li {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-page .slick-dots li:last-child {
  margin-right: 0;
}

.reviews-page .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  background: #e8e8e8;
  border-radius: 50%;
}

.reviews-page .slick-dots .slick-active button {
  background: #ff4e4e;
}

.reviews-page .reviews__prev,
.reviews-page .reviews__next {
  min-width: 133px;
  width: 133px;
  display: flex;
  align-items: center;
  position: static;
  margin: 0;
  justify-content: center;
  position: relative;
  height: 308px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .reviews-page .reviews__prev,
  .reviews-page .reviews__next {
    display: none !important;
  }
}

.reviews-page .reviews__prev:hover::before,
.reviews-page .reviews__next:hover::before {
  opacity: 0;
}

.reviews-page .reviews__prev::after,
.reviews-page .reviews__next::after {
  content: "";
  display: block;
  width: 34px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: center;
  position: absolute;
  top: 50%;
  transition: 300ms;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews-page .reviews__prev::before,
.reviews-page .reviews__next::before {
  content: "";
  background: linear-gradient(180deg, rgba(220, 228, 255, 0.8) 0%, rgba(255, 238, 241, 0.8) 100%);
  display: block;
  position: absolute;
  width: 100%;
  z-index: 5;
  height: 100%;
  top: 0;
  border-radius: 10px;
  left: 0;
  transition: 500ms;
}

.reviews-page .reviews__prev img,
.reviews-page .reviews__next img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}

.reviews-page .reviews__prev::after {
  background-image: url(../images/review-l.svg);
}

.reviews-page .reviews__next::after {
  background-image: url(../images/review-r.svg);
}

.reviews-page__content a {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 8px 42px 8px 15px;
  font-size: 14px;
  line-height: 18px;
  color: #ef453e;
  margin-top: 25px;
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .reviews-page__file {
    padding: 8px 15px;
  }
}

.reviews-page__file:hover {
  text-decoration: none;
}

.reviews-page__subtitle {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.buy-page {
  padding: 70px 0 110px 0;
}

@media only screen and (max-width: 1240px) {
  .buy-page {
    padding: 60px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .buy-page {
    padding: 40px 0 60px 0;
  }
}

.single {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .single {
    margin-bottom: 60px;
  }
}

.single__content {
  max-width: 862px;
  margin: 0 auto;
  text-align: left;
}

@media only screen and (max-width: 1240px) {
  .single__content {
    max-width: 100%;
  }
}

.single__content h1,
.single__content h2,
.single__content h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .single__content h1,
  .single__content h2,
  .single__content h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

.single__content a {
  color: #ff4e4e;
}

.single__content p {
  font-size: 16px;
  text-align: left !important;
  line-height: 24px;
  margin: 10px 0;
}

.single__content p:last-child {
  margin-bottom: 0;
}

.single__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 10px 0;
  min-height: 160px;
}

.single__hash {
  padding: 5px 12px;
  display: inline-block;
  background: #f3f3f3;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 13px;
}

.single .reviews-page__file {
  margin-top: 10px;
  margin-bottom: 18px;
}

.single__tags {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .single__tags {
    display: block;
  }
}

.single__tags img {
  width: 5px;
  display: inline-block;
  min-height: auto;
}

@media only screen and (max-width: 767px) {
  .single__tags img {
    transform: translateY(10px);
  }
}

.single__tag {
  display: inline-block;
  padding: 5px 12px;
  background: #f3f3f3;
  border-radius: 5px;
  font-size: 12px;
  margin-right: 12px;
}

.single__tag:hover {
  background: #ff4e4e;
  color: #fff;
}

.single-end {
  margin-bottom: 90px;
}

.single-end__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .single-end__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single-end {
    margin-bottom: 60px;
  }
}

.modal-special {
  background: linear-gradient(0deg, #ffffff, #ffffff), linear-gradient(0deg, #ffffff, #ffffff), #ffffff;
  border-radius: 10px;
  max-width: 530px;
  width: 100%;
  padding: 0;
  overflow: visible;
}

.modal-special .fancybox-button.fancybox-close-small {
  display: none;
}

.modal-special__inner {
  position: relative;
  padding: 30px 48px;
}

@media only screen and (max-width: 767px) {
  .modal-special__inner {
    padding: 30px 20px;
  }
}

.modal-special__strong {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: -16px;
  right: -32px;
}

@media only screen and (max-width: 767px) {
  .modal-special__strong {
    right: 10px;
    top: -40px;
  }
}

.modal-special__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-special__text {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin-bottom: 15px;
}

.modal-special__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 191px;
  height: 43px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  margin: 0 auto;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.modal-special__btn span {
  position: relative;
  z-index: 5;
}

.modal-special__btn:hover::before {
  width: 220px;
  height: 59px;
}

.modal-special__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .bread-single .kama_breadcrumbs span:nth-child(2) {
  display: none;
}

.bread-single .kama_breadcrumbs span:nth-child(3) {
  display: none;
}

.bread-single .kama_breadcrumbs span:nth-child(4) {
  display: none;
}

.bread-single .kama_breadcrumbs span:nth-child(5) {
  display: none;
} */

.error {
  padding: 160px 0 120px 0;
}

.error__image {
  width: 600px;
  margin: 0 auto 50px auto;
}

.error__image img {
  width: 100%;
}

.error__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1240px) {
  .error__image {
    width: 400px;
    margin-bottom: 30px;
  }

  .error__title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .error {
    padding: 120px 0 80px 0;
  }

  .error__image {
    width: 280px;
    margin-bottom: 20px;
  }

  .error__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.error__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 47px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
}

.error__btn span {
  position: relative;
  z-index: 5;
}

.error__btn:hover::before {
  width: 207px;
  height: 59px;
}

.error__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper.error-page {
  padding-bottom: 0;
}

.wrapper.error-page .fixed {
  display: none;
}

sup {
  font-size: 0.5em;
  line-height: 0;
}

.regen-scheme-oblast {
  margin-top: 90px;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme-oblast {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .regen-scheme-oblast {
    margin-top: 60px;
  }
}

.regen-scheme-oblast .regen-scheme__center {
  background: #ffb4b461;
  color: #ff4e4e;
  min-height: 175px;
}

@media only screen and (max-width: 991px) {
  .regen-scheme-oblast .regen-scheme__center {
    min-height: auto;
  }
}

.regen-scheme-oblast .regen-scheme__center::after {
  display: none;
}

.regen-scheme-oblast .regen-scheme__center::before {
  background: #ffb4b461;
}

.oblast-info-block {
  font-size: 16px;
  line-height: 24px;
}

.oblast-info-block ul li {
  margin-bottom: 10px;
}

.oblast-info-block li:last-child {
  margin-bottom: 0;
}

.oblast-info-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.oblast-info-block ul {
  margin-bottom: 15px;
}

.regen-scheme-besplodie .regen-scheme__center::before {
  display: none;
}

.regen-scheme-derm .regen-scheme__center::after {
  display: block;
  background: #ffb4b461;
}

.banner-light-derm p {
  font-size: 24px;
  line-height: 32px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .banner-light-derm p {
    font-size: 16px;
    line-height: 20px;
  }
}

.pharmakonadzor__tabs {
  display: flex;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
}

.pharmakonadzor__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  padding: 10px 25px;
  border-right: 1px solid #d9d9d9;
}

@media only screen and (max-width: 991px) {
  .pharmakonadzor__tabs {
    display: block;
  }

  .pharmakonadzor__tab {
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .pharmakonadzor__tab:last-child {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pharmakonadzor__tab {
    font-size: 14px;
  }
}

.pharmakonadzor__tab.active {
  background: #f0f0f0;
}

.pharmakonadzor__tab:last-child {
  border-right: 0;
}

.pharmakonadzor__content h1,
.pharmakonadzor__content h2,
.pharmakonadzor__content h3 {
  font-size: 30px;
  color: #ff4e4e;
  font-weight: 700;
  margin-bottom: 10px;
}

.pharmakonadzor__content p {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 20px;
}

.pharmakonadzor__content ul li {
  list-style-type: disc;
}

.pharmakonadzor__content ul {
  padding-left: 20px;
}

.pharmakonadzor__contents a {
  color: #ff4e4e;
}

.pharmakonadzor__content p strong {
  color: #ff4e4e;
}

.pharmakonadzor__content ul li {
  margin-bottom: 10px;
}

.pharmakonadzor__content p:last-child {
  margin-bottom: 0;
}

.pharmakonadzor__content p strong {
  font-weight: 600;
}

.pharmakonadzor__contents h4 {
  margin-bottom: 10px;
}

.pharmakonadzor__contents p {
  margin: 10px 0 !important;
}

.pharmakonadzor__contents .single {
  margin-bottom: 40px;
}

.pharmakonadzor__contents .form-group label {
  margin-bottom: 10px;
}

.reklama__content img {
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
}

.reklama__content h1,
h2,
h3,
h4 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .reklama__content h1,
  h2,
  h3,
  h4 {
    font-size: 24px;
  }
}

.stomatologiya__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.stomatologiya__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stomatologiya__banner img {
  width: 100%;
  height: 100%;
}

.regen-scheme.banner-light {
  padding: 80px 0;
}

@media only screen and (max-width: 1240px) {
  .regen-scheme.banner-light {
    padding: 45px 0;
  }

  .stomatologiya__title {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .stomatologiya__title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .regen-scheme.banner-light {
    padding: 25px 0;
  }
}

.urologia-stomatologiya .urologia__title {
  font-size: 26px;
  line-height: 32px;
}

@media only screen and (max-width: 767px) {
  .urologia-stomatologiya .urologia__title {
    font-size: 22px;
    line-height: 26px;
  }
}

.urologia-stomatologiya .urologia__list li {
  align-items: flex-start;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.urologia-stomatologiya .urologia__list li::before {
  width: 10px;
  height: 10px;
  min-width: 10px;
  transform: translateY(4px);
}

.result__title {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .result__title {
    margin-top: 60px;
  }
}

.unikal__items-stomatologiya {
  grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 991px) {
  .unikal__items-stomatologiya {
    grid-template-columns: 1fr;
  }
}

.stomatologiya__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 43px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  margin: 30px auto 0 auto;
}

.stomatologiya__btn span {
  position: relative;
  z-index: 5;
}

.stomatologiya__btn:hover::before {
  width: 192px;
  height: 59px;
}

.stomatologiya__btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.state-cistit {
  padding-top: 83px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .state-cistit {
    padding-top: 53px;
    margin-bottom: 30px;
  }
  
}

@media only screen and (max-width: 767px) {
  .state-cistit {
    padding-top: 23px;
    margin-bottom: 10px;
  }
  
}

.state-cistit__item {
  position: relative;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  height: 300px;
  margin: 0 15px;
}

@media only screen and (max-width: 767px) {
  .state-cistit__item {
    height: 240px;
  }
}

.state-cistit__item:hover {
  border: 1px solid #fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.09);
}

.state-cistit .slick-list {
  margin: 0 -15px;
  overflow: visible;
}

.state-cistit .slick-arrow {
  border: 0;
  background: none;
  font-size: 0;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  transform: translate(0, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  width: 11px;
  height: 20px;
}

.state-cistit .slick-prev {
  right: 20px;
  background-image: url(../images/state-cistit_arrow-r.svg);
}

.state-cistit .slick-next {
  left: -29px;
  background-image: url(../images/state-cistit_arrow-l.svg);
}

.state-cistit .slick-arrow.slick-disabled {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .state-cistit__items {
    padding: 0 40px;
  }

  .state-cistit .slick-next {
    left: 0;
  }

  .state-cistit .slick-prev {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .state-cistit__item {
    margin: 0 10px;
  }

  .state-cistit .slick-list {
    margin: 0 -10px;
  }
}

.state-cistit__name {
  font-size: 20px;
  padding: 20px 10px 23px 23px;
  line-height: 26px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .state-cistit__name {
    font-size: 18px;
    line-height: 24px;
  }
}

.state-cistit__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 196px;
}

@media only screen and (max-width: 767px) {
  .state-cistit__image {
    height: 150px;
  }
}

.state-cistit__image img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  height: 100%;
  object-fit: cover;
}

.specialists-category {
  padding: 82px 0;
}

.specialists-category__item {
  margin-bottom: 25px;
  padding: 21px 39px 26px 39px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.specialists-category__name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.specialists-category__item:first-child {
  background-image: url(../images/specialist-banner_1.png);
}

.specialists-category__item:nth-child(2) {
  background-image: url(../images/specialist-banner_2.png);
}

.specialists-category__item:nth-child(3) {
  background-image: url(../images/specialist-banner_3.png);
}

.specialists-category__item:last-child {
  margin-bottom: 0;
}

.specialists-category__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 43px;
  background: #575757;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.specialists-category__btn:hover {
  background: #ff4e4e;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .specialists-category {
    padding: 45px 0;
  }

  .specialists-category__item {
    padding: 20px;
  }

  .specialists-category__name {
    font-size: 20px;
  }
}

.states-category {
  padding: 82px 0 127px 0;
}

@media only screen and (max-width: 1240px) {
  .states-category {
    padding: 60px 0 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .states-category {
    padding: 50px 0 80px 0;
  }
}

.states-category__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 31px;
  row-gap: 31px;
}

@media only screen and (max-width: 1240px) {
  .states-category__items {
    column-gap: 15px;
    row-gap: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .states-category__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .states-category__items {
    grid-template-columns: 1fr;
  }
}

.states-category__item {
  position: relative;
  height: 274px;
  padding: 18px 21px;
}

@media only screen and (max-width: 767px) {
  .states-category__item {
    height: 260px;
  }
}

.states-category__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.states-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.states-category__name {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(180deg, #dce4ff 0%, #ffeef1 100%), #ffffff;
  border-radius: 10px;
  position: absolute;
  bottom: 18px;
  left: 21px;
  height: 39px;
  padding-left: 18px;
  display: flex;
  align-items: center;
  right: 21px;
}

@media only screen and (max-width: 1240px) {
  .states-category__name {
    font-size: 18px;
    white-space: nowrap;
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .states-category__name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
  }

  .states-category__name::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6.5px 0 6.5px;
    transition: 300ms;
    border-color: #ff4e4e transparent transparent transparent;
  }

  .states-category__name.active::after {
    transform: rotate(180deg);
  }
}

.states-category__block {
  position: absolute;
  z-index: 5;
  background: linear-gradient(0deg, #ff4e4e, #ff4e4e);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  color: #fff;
  padding: 21px 11px 32px 24px;
  transition: 800ms;
  opacity: 0;
  perspective: 800px;
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1240px) {
  .states-category__block {
    padding: 20px 10px 20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .states-category__block {
    display: none;
    opacity: 1;
    transform: none;
    padding: 16px 8px 50px 16px;
  }
}

.states-category__item:hover .states-category__block {
  transform: rotateY(0deg);
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .states-category__block.active {
    display: block;
  }
}

.states-category__head {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.states-category__list-inner {
  padding-right: 10px;
  overflow-y: scroll;
}

@media only screen and (max-width: 1240px) {
  .states-category__list-inner {
  }
}

.states-category__list {
  max-height: 190px;
}

@media only screen and (max-width: 767px) {
  .states-category__list {
    max-height: 142px;
  }
}

.states-category__list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}

.states-category__list li:last-child {
  margin-bottom: 0;
}

.states-category__list li a {
  display: flex;
  align-items: flex-start;
}

.states-category__list li a:hover {
  text-decoration: underline;
}

.states-category__list li a::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: center;
  min-width: 19px;
  margin-right: 14px;
  background-image: url(../images/state_category-icon.svg);
}

.states-category__list-inner::-webkit-scrollbar {
  width: 15px;
  background: #ff3636;
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .states-category__list-inner::-webkit-scrollbar {
    width: 4px;
  }
}

.states-category__list-inner::-webkit-scrollbar-thumb {
  background: #cf2929;
  border-radius: 50px;
}

.states-category__list-inner::-webkit-scrollbar-thumb:hover {
  background-color: #b81919;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.states-category__list-inner::-webkit-scrollbar-track {
  -webkit-box-shadow: transparent;
  border-radius: 10;
  background-color: transparent;
}

.algoritmu {
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .algoritmu {
    padding: 60px 0;
  }
}

.algoritmu__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 40px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1240px) {
  .algoritmu__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .algoritmu__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .algoritmu__items {
    column-gap: 20px;
    row-gap: 30px;
    margin-bottom: 40px;
  }
}

.algoritmu__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  height: 185px;
}

@media only screen and (max-width: 767px) {
  .algoritmu__image {
    height: 150px;
  }
}

.algoritmu__name {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}

.algoritmu__end {
  font-size: 16px;
  line-height: 24px;
}

.algoritmu__end ol {
  padding-left: 20px;
}

.algoritmu li {
  margin-bottom: 20px;
}

.algoritmu li:last-child {
  margin-bottom: 0;
}

.showcase-page-specialists::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
}

.showcase-page-specialists .showcase-page__title {
  color: #000;
}

.showcase-page-specialists .showcase-page__bread {
  color: #000;
}

.footer-specialists {
  background: #8AB9DC;
}

.footer-end-specialists {
  background: #8AB9DC;
}

.single-cistit__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-cistit__content a {
  color: #ff4e4e;
}

.single-cistit__content {
  font-size: 16px;
  line-height: 24px;
}

.single-cistit__content div,
p {
  margin: 10px 0;
}

.states__saidbar-subcategory li {
  display: flex;
  align-items: flex-start;
}

.states__saidbar-subcategory p {
  margin: 0;
}

.specialists-category__items {
  display: flex;
}

.specialists-category__item {
  height: 365px;
  width: 100%;
  margin-right: 30px;
  padding: 0;
  border: 1px solid #F1F1F1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.specialists-category__item:last-child {
  margin-right: 0;
}

.specialists-category__block {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  padding: 24px 34px;
  height: 158px;
  margin-top: auto;
  margin-bottom: 0;
}

.specialists-category__btn {
  background: #efefef;
  border-radius: 10px;
  color: #5e5e5e;
}

.specialists-category__btn:hover {
  background: #ff4e4e;
  color: #fff;
}


.specialists-category__name{
  height: 58px;
}

.specialists-category__name{
  margin-bottom: 10px;
}

@media only screen and (max-width: 1240px) {
  .specialists-category__item {
    margin-right: 15px;
  }

  .specialists-category__name{
    font-size: 20px;
    line-height: 24px;
    line-height: 28px;
    height: 52px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists-category__items{
    display: block;
  }

  .specialists-category__item{
    margin-right: 0;
    margin-bottom: 20px;
    height: 320px;
  }

  .specialists-category__item:last-child{
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .specialists-category__block{
    padding: 20px;
    height: 145px;
  }

  .specialists-category__name{
    font-size: 18px;
  }
}

.new-list li{
  margin-bottom: 10px;
}

.new-list li:last-child{
  margin-bottom: 0;
}

.new-list li a{
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.new-list li a:hover{
  color: #ff4e4e;
}

.videomaterial__grid p{
  margin: 0;
}

.videomaterial__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

.videomaterial__grid p{
  display: flex;
  align-items: center;
  justify-content: center;
}

.videomaterial__grid iframe{
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.states__title-videomaterial{
  font-size: 24px;
}

.states__item{
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .videomaterial__grid{
    column-gap: 8px;
    row-gap: 8px;
  }

  .videomaterial__grid iframe{
    min-height: 120px;
  }
}

.algoritmu-new .algoritmu__name {
  font-size: 12px;
  line-height: 18px;
}

.algoritmu-new .algoritmu__name p{
  margin: 0;
}

.algoritmu-new .algoritmu__name p:first-child{
  font-weight: 700;
  font-size: 16px !important;
  margin-bottom: 10px;
}

.algoritmu-new .algoritmu__name p:last-child{
  margin-top: 10px;
}

.algoritmu__name:hover {
    color: #ff4e4f;
    cursor: pointer;
}

.modalBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transform: scale(0);
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
}

.modalBox_show {
  transform: scale(1);
  pointer-events: all;
  overflow: visible; 
}

.modalBox__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}

.modalBox__inner {
  display: flex;
  padding: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1000px;
  width: 100%;
  height: 564px;
  /* background-color: #fff; */
  background-image: url(../images/modalInner.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 99;
  transform: translate(-50%, -50%);
}

.modalBoxClose {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #ff4e4e;
  border:none;
  cursor: pointer;
  transition: background-color 0.4s ease-in-out;
}

.modalBoxClose svg {
  transition: transform 0.4s ease-in-out;
}

.modalBoxClose:hover {
  background-color: #262626;
}

.modalBoxClose:hover svg {
  transform: rotate(180deg);
}

.modalBox__button {
  margin-top: auto;
  width: 180px;
  height: 60px;
  font-size: 17px;
}

.modalBox__button:hover::before {
  width: 200px;
  height: 75px;
}

@media screen and (max-width:770px) {
  
  .modalBox__inner  {
    max-width: calc(100% - 20px);
    width: 100%;
    height: 220px;
    padding: 20px;
    padding-bottom: 10px;
  }

  .modalBoxClose {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #ff4e4e;
    border: none;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out;
}

.modalBox__button {
  width: 132px;
  height: 43px;
  font-size: 13px;
}
.header__btn:hover::before {
  width: 142px;
  height: 53px;
}

}

.states__saidbar-videos a{
  display: flex;
  align-items: center;
  font-size: 16px;
  margin: 5px 0;
}

.states__saidbar-videos a:before{
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: #ff3636;
  min-width: 10px;
  margin-right: 10px;
}

.states__saidbar-videos a:hover{
  color: #ff3636;
}

.par_cat:after {
    content: '';
    display: block;
    width: 10px;
    left: 0;
    position: absolute;
    height: 1px;
    background: #ff3636;
    min-width: 10px;
    margin-right: 10px;
    transform: rotate(89deg);
}

.states__saidbar-videos a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 5px 0;
}

.special-states__name{
  display: block;
}

.uteka iframe{
	width: 100%;
	height: 500px;
	object-fit: cover;
	border: 0;
}

.uteka {
	margin-bottom: 100px;
}

@media only screen and (max-width: 1240px) {
	.uteka {
	margin-bottom: 80px;
}	
}

@media only screen and (max-width: 767px) {
.uteka {
	margin-bottom: 60px;
}	
	
	.uteka iframe{
	width: 100%;
	height: 400px;
	object-fit: cover;
	border: 0;
}
}

.presentation__box {
	max-width: 35%;
}

.presentation {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	font-size: 16.7px;
	line-height: 20px;
}

.presentation__body {
	height: 228px;
}

.presentation__body iframe {
	width: 100%;
	height: 100%;
}

.presentation__desc {
	font-size: 14px;
	line-height: 120%;
}

@media all and (max-width: 992px) {
	.presentation__box {
		max-width: 100%;
	}	
	.presentation__body {
		height: 100%;
	}
	.presentation__body iframe {
		height: revert-layer;
	}
}

/* New */
.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6,
.prose ol, .prose ul, .prose li,
.prose p {
  margin-bottom: 15px;
}

.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

@media only screen and (max-width: 1240px) {
  .prose h1, .prose h2, .prose h3,
  .prose h4, .prose h5, .prose h6 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .prose h1, .prose h2, .prose h3,
  .prose h4, .prose h5, .prose h6 {
    font-size: 26px;
  }
}

.prose ol {
  list-style-position: inside;
}

.prose ol li::marker {
  color: #ff4e4e;
}

.prose ul li {
  position: relative;
  padding-left: 20px;
}

.prose ul li:before {
  position: absolute;
  width: 11px;
  height: 11px;
  content: "";
  background-color: #ff4e4e;
  border-radius: 100%;
  top: 3px;
  left: 0;
}

.prose strong {
  font-weight: 600;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 48px;
  background: #ff4e4e;
  border-radius: 500px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  padding: 0 48px;
  cursor: pointer;
}

.btn span {
  position: relative;
  z-index: 5;
}

.btn::before {
  content: "";
  background: #ff4e4e;
  opacity: 0.2;
  border-radius: 500px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 300ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  transform: translate(-50%, -50%) scaleX(1.1) scaleY(1.3);
}

.alert {
  background-color: #f3f3f3;
  border-radius: 14px;
  padding: 46px 30px 50px;
}

@media only screen and (max-width: 767px) {
  .alert {
    padding: 30px 15px 40px;
  }
}

.alert__content {
  display: flex;
  justify-content: center;
  gap: 18px;
}

@media only screen and (max-width: 767px) {
  .alert__content {
    flex-direction: column;
    gap: 10px;
  }
}

.alert__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  fill: #ff4e4e;
}

@media only screen and (max-width: 991px) {
  .alert__icon {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .alert__icon {
    width: 24px;
    height: 24px;
  }
}

.alert__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

@media only screen and (max-width: 991px) {
  .alert__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .alert__text {
    font-size: 16px;
  }
}

.graph__legend {
  margin-bottom: 28px;
}

.graph__legend-item {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .graph__legend-item {
    font-size: 16px;
  }
}

.graph__legend-item:before {
  position: relative;
  width: 18px;
  height: 18px;
  content: "";
  background-color: var(--data-color);
  border-radius: 100%;
  top: 2px;
}

.graph__legend-item:not(:last-child) {
  margin-bottom: 10px;
}

.graph__scales {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to bottom,
                            #dedede 1px, transparent 1px, transparent calc(25% - 1px),
                            #dedede 25%, #dedede calc(25% + 1px), transparent calc(25% + 1px), transparent calc(50% - 1px),
                            #dedede 50%, #dedede calc(50% + 1px), transparent calc(50% + 1px), transparent calc(75% - 1px),
                            #dedede 75%, #dedede calc(75% + 1px), transparent calc(75% + 1px), transparent calc(100% - 1px),
                            #dedede calc(100% - 1px), #dedede 100%);
}

.graph__scale {
  width: 135px;
  font-size: 28px;
  font-weight: 600;
  background-color: var(--data-color, #333);
  color: #fff;
  text-align: center;
  padding: 12px;
}

@media only screen and (max-width: 767px) {
  .graph__scale {
    width: 100px;
    font-size: 20px;
  }
}

.page-nav {
  position: fixed;
  width: 100%;
  bottom: 100px;
  left: 0;
  z-index: 150;
}

@media only screen and (max-width: 767px) {
  .page-nav {
    display: none;
  }
}

.page-nav__list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.page-nav__link {
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  padding: 6px 9px 4px;
}

.page-nav__link_button {
  background-color: #ff4e4e;
  color: #fff;
  border-radius: 50px;
}

.section {
  padding: 110px 0;
}

@media only screen and (max-width: 1240px) {
  .section {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section {
    padding: 75px 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1240px) {
  .section__header {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section__header {
    margin-bottom: 20px;
  }
}

.section__header_left {
  text-align: left;
}

.section__title,
.section__subtitle {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.section__title {
  font-size: 34px;
  color: #191919;
}

@media only screen and (max-width: 1240px) {
  .section__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .section__title {
    font-size: 26px;
  }
}

.section__subtitle {
  font-size: 20px;
}

.section__subtitle:first-child {
  margin-bottom: 20px;
}

.section__title + .section__subtitle {
  color: #6d60bc;
  margin-top: 25px;
}

@media only screen and (max-width: 1240px) {
  .section__subtitle {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .section__subtitle {
    font-size: 16px;
  }
}

.section__title + .section__subtitle:before {
  display: block;
  width: 78px;
  height: 1px;
  content: "";
  background-color: #a8a8a8;
  margin-bottom: 24px;
}

.intro {
  padding: 75px 0 0;
}

@media only screen and (min-width: 992px) {
  .intro {
    height: 100vh;
    min-height: 720px;
  }
}

.intro__main-wrapper {
  display: flex;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .intro__main-wrapper {
    flex-direction: column;
  }
}

@media only screen and (min-width: 992px) {
  .intro__image-wrapper,
  .intro__info-wrapper {
    flex: 1 0 0%;
    width: 50%;
  }
}

.intro__info-wrapper {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .intro__image,
  .intro__info,
  .intro__video {
    width: 100%;
    height: 100%;
  }
}

.intro__image,
.intro__video {
  position: relative;
  background-color: #333;
}

@media only screen and (max-width: 991px) {
  .intro__image,
  .intro__video {
    min-height: 240px;
  }
}

@media only screen and (max-width: 991px) {
  .intro__image:after,
  .intro__video:after {
    display: block;
    content: "";
    padding-bottom: 50%;
  }
}

.intro__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 992px) {
  .intro__info,
  .intro__video {
    flex-grow: 1;
  }
}

.intro__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #DCE4FF 0%, #FFEEF1 100%);
  padding: 60px;
}

@media only screen and (min-width: 992px) {
  .intro__info:not(:last-child) {
    max-height: 320px;
  }
}

@media only screen and (max-width: 991px) {
  .intro__info {
    padding: 45px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .intro__info {
    padding: 30px 15px;
  }
}

.intro__title {
  font-size: 37px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .intro__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .intro__title {
    font-size: 26px;
  }
}

.intro__description {
  font-size: 20px;
  line-height: 1.15;
  margin-top: 18px;
}

@media only screen and (max-width: 991px) {
  .intro__description {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .intro__description {
    font-size: 16px;
  }
}

.intro__description strong {
  font-weight: 600;
}

.intro__video * {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video-section {
  padding: 0;
}

.video-section__video {
  position: relative;
  min-height: 320px;
  max-height: 800px;
}

.video-section__video:after {
  display: block;
  content: "";
  padding-bottom: 50%;
}

.video-section__video * {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.disease-about__main-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .disease-about__main-wrapper {
    flex-direction: column;
  }
}

@media only screen and (min-width: 992px) {
  .disease-about__main-wrapper {
    justify-content: space-between;
  }
}

@media only screen and (min-width: 992px) {
  .disease-about__info-wrapper,
  .disease-about__image-wrapper {
    flex: 0 0 auto;
  }
}

@media only screen and (min-width: 992px) {
  .disease-about__info-wrapper {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .disease-about__info {
    padding-right: 40px;
  }
}

.disease-about__image {
  position: relative;
  padding-right: 24px;
  padding-bottom: 12px;
  z-index: 1;
}

@media only screen and (max-width: 575px) {
  .disease-about__image {
    padding-right: 18px;
    padding-bottom: 6px;
  }
}

.disease-about__image-inner {
  width: 410px;
  height: 410px;
  background-color: #808080;
  border-radius: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 575px) {
  .disease-about__image-inner {
    width: 280px;
    height: 280px;
  }
}

.disease-about__image-inner:after {
  position: absolute;
  width: inherit;
  height: inherit;
  content: "";
  border: 1px solid #ff4e4e;
  border-radius: inherit;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.disease-about__img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  border-radius: inherit;
}

.features {
  background: #f3f3f3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 85px 0;
}

.features__title {
  color: #ff4e4e;
}

.features__items {
  display: grid;
  gap: 32px;
  counter-reset: item;
}

@media only screen and (min-width: 768px) {
  .features__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features__item {
  counter-increment: item;
}

.features-item {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  height: 100%;
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0 0 45.4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 10px 18px;
  transition: .2s;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .features-item {
    gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .features-item {
    gap: 15px;
  }
}

.features-item:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(138.42deg, #FF63CA 23.5%, #FF8686 76.88%);
  top: 0;
  left: 0;
  z-index: -1;
  transition: .2s;
}

.features-item__number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: 74px;
  height: 74px;
  font-size: 39px;
  font-weight: 600;
  background-color: #fff;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  overflow: hidden;
  transition: .2s;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .features-item__number {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}

@media only screen and (max-width: 575px) {
  .features-item__number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

.features-item__number:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(138.42deg, #FF63CA 23.5%, #FF8686 76.88%);
  top: 0;
  left: 0;
  transition: .2s;
  z-index: -1;
}

.features-item__number:empty:after {
  content: counter(item);
}

.features-item__title {
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 991px) {
  .features-item__title {
    font-size: 16px;
  }
}

.features-item__description {
  margin: 0;
}

.features-item__title + .features-item__description {
  margin-top: 15px;
}

.features-item:not(:hover):before {
  visibility: hidden;
  opacity: 0;
}

.features-item:hover {
  color: #fff;
}

.features-item:hover .features-item__number {
  color: #ff78a1;
}

.features-item:hover .features-item__number:before {
  visibility: hidden;
  opacity: 0;
}

.features-item_alt {
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
  padding: 18px;
}

@media only screen and (max-width: 991px) {
  .features-item_alt {
    gap: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .features-item_alt {
    gap: 15px;
  }
}

.features-item_alt .features-item__number {
  width: 60px;
  height: 60px;
  font-size: 30px;
}

@media only screen and (max-width: 991px) {
  .features-item_alt .features-item__number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 575px) {
  .features-item_alt .features-item__number {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

.features__note {
	font-weight: 600;
	background-color: #fff;
	border-radius: 60px;
	box-shadow: 0 0 45.4px rgba(0, 0, 0, 0.05);
	text-align: center;
	margin-top: 36px;
	padding: 22px;	
}

@media only screen and (max-width: 991px) {
	.features__note {
		font-size: 14px;
		padding: 15px;
	}
}

.drug-features__main-wrapper {
  display: flex;
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .drug-features__main-wrapper {
    flex-direction: column;
  }
}

@media only screen and (min-width: 992px) {
  .drug-features__main-wrapper {
    justify-content: space-between;
  }
}

@media only screen and (min-width: 992px) {
  .drug-features__items-wrapper,
  .drug-features__image-wrapper {
    flex: 0 0 auto;
  }
}

@media only screen and (min-width: 992px) {
  .drug-features__items {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .drug-features__items-wrapper {
    width: 50%;
  }
}

.drug-features__item:not(:last-child) {
  margin-bottom: 18px;
}

.drug-feature {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media only screen and (max-width: 575px) {
  .drug-feature {
    gap: 15px;
  }
}

.drug-feature__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: linear-gradient(138.42deg, #FF63CA 23.5%, #FF8686 76.88%);
  border-radius: 100%;
  padding: 15px;
  transition: .2s;
}

@media only screen and (max-width: 575px) {
  .drug-feature__icon {
    width: 48px;
    height: 48px;
  }
}

.drug-feature:hover .drug-feature__icon {
  box-shadow: 0 0 0 6px rgba(255, 78, 78, 0.2);
}

.drug-feature__icon__description {
  line-height: 1.15;
}

@media only screen and (max-width: 991px) {
  .drug-features__image-wrapper {
    align-self: center;
  }
}

.drug-features__image {
  position: relative;
  max-width: 510px;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .drug-features__image {
    max-width: 400px;
  }
}

@media only screen and (min-width: 992px) {
  .drug-features__image {
    padding: 50px 15px 0;
  }
}

.drug-features__image:after {
  position: absolute;
  width: 410px;
  height: 410px;
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, #BCCBFF 0%, #FFEEF1 100%);
  border-radius: 100%;
  filter: blur(41px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .drug-features__image:after {
    width: 360px;
    height: 360px;
  }
}

@media only screen and (max-width: 575px) {
  .drug-features__image:after {
    width: 240px;
    height: 240px;
  }
}

.drug-features__note {
  font-size: 14px;
  text-decoration: underline;
  text-align: right;
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .drug-features__note {
    text-align: center;
    margin-top: 30px;
  }
}

.future-mom {
  background: linear-gradient(90.77deg, #F2F2F2 0.66%, #FFFFFF 72.28%);
  padding: 54px 0;
}

.future-mom__main-wrapper {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .future-mom__main-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .future-mom__info-wrapper,
  .future-mom__image-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .future-mom__info {
    padding-right: 75px;
  }
}

.future-mom__badges {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

@media only screen and (max-width: 991px) {
  .future-mom__badges {
    gap: 15px;
  }
}

.future-mom__badge {
  width: 75px;
  height: 75px;
}

@media only screen and (max-width: 991px) {
  .future-mom__badge {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (min-width: 992px) {
  .future-mom__image-wrapper {
    width: calc(50% + ((100vw - 1160px) / 2));
    margin: -54px 0;
  }
}

@media only screen and (min-width: 992px) {
  .future-mom__img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
  }
}

.drug-composition {
  padding-bottom: 30px;
}

.drug-composition__item:not(:last-child) {
  margin-bottom: 24px;
}

.drug-composition-card {
  display: flex;
  gap: 36px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
  padding: 22px 24px;
}

@media only screen and (max-width: 767px) {
  .drug-composition-card { 
    flex-direction: column;
    gap: 15px;
    padding: 18px 20px;
  }
}

.drug-composition-card__image {
  flex-shrink: 0;
  position: relative;
  width: 262px;
  max-height: 190px;
  background-color: #383838;
  border-radius: inherit;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .drug-composition-card__image {
    width: 100%;
    max-width: 260px;
  }
}

.drug-composition-card__image:after {
  display: block;
  content: "";
  padding-bottom: 75%;
}

.drug-composition-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  top: 0;
  left: 0;
}

.drug-composition-card__prose {
  line-height: 1.4;
}

.drug-composition-card__prose h1, .drug-composition-card__prose h2, .drug-composition-card__prose h3,
.drug-composition-card__prose h4, .drug-composition-card__prose h5, .drug-composition-card__prose h6 {
  font-size: 16px;
}

.mehanizm_alt .mehanizm__number {
  background: linear-gradient(90.77deg, #F2F2F2 0.66%, #FFFFFF 72.28%);
  color: #000;
}

.cistit_alt .cistit__abs {
  width: 280px;
  top: 40%;
}

@media only screen and (max-width: 767px) {
  .cistit__abs {
    margin-bottom: 30px;
  }
}

/* .cistit_alt .presentation__box {
  max-width: 50%;
} */

.cistit_alt .cistit__item {
  max-width: 420px;
}

.drug-usage {
  background-color: #f3f3f3;
  padding: 90px 0 120px;
}

@media only screen and (max-width: 1240px) {
  .drug-usage {
    padding: 80px 0 100px;
  }
}

@media only screen and (max-width: 767px) {
  .drug-usage {
    padding: 75px 0 90px;
  }
}

.drug-usage__main-wrapper {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .drug-usage__main-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .drug-usage__image-wrapper,
  .drug-usage__info-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (max-width: 991px) {
  .drug-usage__image-wrapper {
    order: 2;
  }
}

.drug-usage__image {
  position: relative;
  max-width: 500px;
  z-index: 1;
}

@media only screen and (max-width: 1240px) {
  .drug-usage__image {
    max-width: 420px;
  }
}

@media only screen and (max-width: 991px) {
  .drug-usage__image {
    margin: 0 auto;
  }
}

.drug-usage__image:after {
  position: absolute;
  width: 410px;
  height: 410px;
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, #BCCBFF 0%, #FFEEF1 100%);
  border-radius: 100%;
  filter: blur(41px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .drug-usage__image:after {
    width: 360px;
    height: 360px;
  }
}

@media only screen and (max-width: 575px) {
  .drug-usage__image:after {
    width: 240px;
    height: 240px;
  }
}

.drug-usage__img {
  width: 100%;
}

.drug-usage__prose {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
  margin-top: 35px;
  padding: 30px 40px;
}

@media only screen and (max-width: 767px) {
  .drug-usage__prose {
    padding: 20px 30px;
  }
}

.drug-offer {
  background: #333;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 135px 0;
}

@media only screen and (max-width: 1240px) {
  .drug-offer {
    padding: 110px 0;
  }
}

@media only screen and (max-width: 767px) {
  .drug-offer {
    padding: 90px 0;
  }
}

.drug-offer__title {
  color: inherit;
}

.drug-offer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.pregnancy-rate__items {
  display: flex;
  background-color: #f3f3f3;
  border-radius: 14px;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 22px 28px 36px;
}

@media only screen and (max-width: 991px) {
  .pregnancy-rate__items {
    flex-direction: column;
    gap: 30px;
  }
}

.pregnancy-rate__item {
  flex: 1 0 auto;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .pregnancy-rate__item:nth-child(odd) {
    width: 58%;
  }
}

@media only screen and (min-width: 992px) {
  .pregnancy-rate__item:nth-child(even) {
    width: 42%;
  }
}

.pregnancy-rate__item-description {
  line-height: 1.4;
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .pregnancy-rate__item-description {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .pregnancy-rate__item:nth-child(odd):not(:last-child) .pregnancy-rate__item-description {
   	padding-right: 30px;
  }
}

.pregnancy-rate__item-description span {
  color: var(--data-color);
}

.pregnancy-rate__note {
  margin-top: 25px;
}

.pregnancy-rate + .drug-alert,
.drug-alert + .super {
  padding-top: 0;
}

.hero-offer {
  background: linear-gradient(180deg, #dce4ff 0%, #ffeef1 100%);
  padding: 54px 0;
}

.hero-offer__main-wrapper {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .hero-offer__main-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .hero-offer__info-wrapper,
  .hero-offer__image-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .hero-offer__info {
    padding-right: 75px;
  }
}

.hero-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

@media only screen and (min-width: 992px) {
  .hero-offer__image-wrapper {
    width: calc(50% + ((100vw - 1160px) / 2));
    margin: -54px 0;
  }
}

@media only screen and (min-width: 992px) {
  .hero-offer__img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
  }
}

.drug-reviews .slick-list {
  padding-bottom: 16px;
}

.drug-reviews .slick-track {
  display: flex;
}

.drug-reviews .slick-slide {
  height: inherit;
}

.drug-reviews__item {
  margin: 0 16px;
}

.drug-review-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 10px 22px 22px;
}

.drug-review-card:before {
  position: absolute;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #ff4e4e;
  top: 0;
  left: 0;
}

.drug-review-card__content {
  flex-grow: 1;
}

.drug-review-card__more {
  margin-top: 14px;
}

.drug-review-card__more-link {
  color: #ff4e4e;
  text-decoration: underline;
}

.drug-review-card__author {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}

.cookie-alert {
  position: fixed;
  width: 100%;
  pointer-events: none;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  z-index: 100;
}

.cookie-alert:not(._active) {
  display: none;
}

.cookie-alert__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  background-color: #fff;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 17px 0px rgba(12, 5, 95, 0.1);
  box-shadow: 0px 0px 17px 0px rgba(12, 5, 95, 0.1);
  pointer-events: auto;
  padding: 15px 25px;
}

@media (max-width: 1024px) {
  .cookie-alert__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
  }
}

@media (min-width: 1025px) {
  .cookie-alert__block {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;    
  }
}

.cookie-alert__description {
  font-weight: 300;
}

.cookie-alert__link {
  color: #ff4e4e;
}

.cookie-alert__link:hover {
  opacity: 0.8;
}

.cookie-alert__link:active {
  opacity: 0.6;
}

.cookie-alert__button {
  -webkit-box-flex: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
