.product .product__name-logo {
  filter: brightness() invert(0);
  transition: filter 0.3s;
}

#component,
body {
  color: #000;
  background: #fff;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0;
  font-family: Ubuntu, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
}

.wrapper,
.container {
  position: relative;
}

.wrapper {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100vw;
  overflow-x: hidden;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.title-2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.33;
}

@media (width <= 1230px) {
  .container {
    max-width: 1024px;
    padding: 0 20px;
  }
  .title-2 {
    font-size: 40px;
  }
}

@media (width <= 1023px) {
  .container {
    max-width: 768px;
    padding: 0 20px;
  }
  .title-2 {
    font-size: 32px;
  }
}

@media (width <= 767px) {
  .container {
    max-width: 425px;
  }
  .title-2 {
    font-size: 36px;
    font-weight: 500;
  }
}

@media (width <= 424px) {
  .container {
    max-width: 375px;
  }
}


html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

:focus {
  outline: 5px auto -webkit-focus-ring-color;
}

a {
  color: inherit;
}


p {
  margin: 10px 0 15px;
}

a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

.logo {
  width: 100%;
  font-size: 0;
}

img {
  max-width: 100%;
}

h2,
h3 {
  margin: 0;
  padding: 0;
}

.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}

.section {
  position: relative;
}

.section_gradient {
  background: linear-gradient(#edf3fa, #d2e1f3 103.27%);
}
.section_white {
  background-color: #fff;
}



.product {
  background-color: #eff3f3;
  border-radius: 10px;
  padding: 30px 30px 0;
  transition: background-color 0.3s;
  display: block;
  position: relative;
}

.product,
.product_h {
  height: 328px;
}

.product__wrap {
  color: #262626;
  z-index: 2;
  position: relative;
}

.product__top {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  display: flex;
}

.product__logo {
  padding-top: 15px;
  position: relative;
}

.product__logo img {
  will-change: transform;
  width: 53px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.product__logo img:first-child {
  display: block;
}

.product__logo img:last-child {
  display: none;
}

.product__logo svg {
  fill: currentColor;
  height: 42px;
}

.product__button {
  color: #0082cb;
  -ms-flex-align: center;
  justify-content: flex-end;
}

.product__button,
.product__button-arrow {
  align-items: center;
  display: flex;
}

.product__button-arrow {
  border: 1px solid;
  border-radius: 50%;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  -ms-flex-align: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  transition: all 0.3s;
}

.product__button-arrow svg {
  fill: #0082cb;
  width: 16px;
  height: 16px;
  transition: all 0.3s;
}

.product__button-text {
  max-width: 0;
  font-size: 14px;
  font-weight: 500;
  transition: max-width 0.3s;
  position: relative;
  overflow: hidden;
}

.product__info_maw {
  max-width: 240px;
}

.product__title {
  max-width: 435px;
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.product__descr {
  opacity: 0.5;
  font-size: 16px;
  line-height: 1.4;
}

.product__image {
  width: 100%;
  padding: 0 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.product__image-wrap {
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.product__image-wrap,
.product__image-wrap_mb {
  margin-bottom: -50px;
}

.product__image-wrap_left {
  justify-content: flex-start;
}

.product__image_maw img {
  width: 111px;
}

.products {
  padding: 100px 0 135px;
}

.products__group:nth-child(2) {
  margin-top: 40px;
}

.products__group:not(:last-child) {
  margin-bottom: 110px;
}

.products__group-title {
  font-size: 43px;
  font-weight: 500;
  line-height: 1.3;
}

.products__wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 40px;
  margin-bottom: -90px;
  display: flex;
}

.products__item {
  flex: 0 calc(33.3333% - 20px);
  max-width: calc(33.3333% - 6.66667px);
  margin-bottom: 90px;
}

.products__item,
.products__item:nth-child(3n),
.products__item:nth-child(2n) {
  margin-right: 20px;
}

@media (width >= 768px) {
  .product:hover {
    background-color: currentColor;
  }
}

@media (width <= 1230px) {
  .products {
    padding: 70px 0;
  }

  .products__wrap {
    margin-top: 40px;
  }
}

@media (width <= 1023px) {
  .product__info_maw {
    max-width: 400px;
  }

  .product__title {
    margin-bottom: 15px;
    font-size: 28px;
  }

  .product__descr {
    font-size: 20px;
  }

  .product__image-wrap {
    margin-bottom: -134px;
  }

  .product__image-wrap img {
    height: 170px;
  }

  .product__image-wrap_mb {
    margin-bottom: -105px;
  }

  .product__image_maw .product__image-wrap {
    margin-bottom: -40px;
  }

  .product__image_maw img {
    height:auto;
  }

  .products__wrap {
    margin-bottom: 0;
    display: block;
  }

  .products__item {
    flex: 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .products__item,
  .products__item:nth-child(n),
  .products__item:nth-child(2n) {
    margin-right: 0;
  }

  .products__item:not(:last-child) {
    margin-bottom: 165px;
  }
}

@media (width <= 767px) {
  .product {
    height: auto;
    padding: 20px 20px 0;
  }

  .product__top {
    margin-bottom: 23px;
  }

  .product__logo {
    justify-content: flex-start;
    padding-top: 0;
    display: flex;
  }

  .product__logo img.product__logo-img {
    width: auto;
    height: 53px;
    position: static;
    transform: none;
  }

  .product__logo img.product__logo-img:first-child {
    display: block;
  }

  .product__logo svg {
    display: none;
  }

  .product__info_maw {
    max-width: 180px;
  }

  .product__title {
    margin-bottom: 7px;
    font-size: 20px;
  }

  .product__descr {
    font-size: 16px;
  }
  
  .product__image-wrap img{
    height:auto;
  }

  .product__image {
    align-items: flex-start;
    height: 85px;
    margin-top: 15px;
    padding: 0;
    display: flex;
    position: static;
  }

  .product__image-wrap {
    margin-bottom: -60px;
  }

  .product__image_maw {
    justify-content: flex-end;
    align-items: flex-end;
    height: 0;
  }

  .product__image_maw .product__image-wrap {
    margin-bottom: -15px;
    margin-right: -20px;
  }

  .products__wrap {
    margin-top: 25px;
  }

  .products__item:not(:last-child) {
    margin-bottom: 90px;
  }
}













.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  z-index: 1;
  width: 100%;
  display: none;
}

.owl-carousel .owl-stage {
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  position: relative;
}

.owl-carousel .owl-stage:after {
  content: ".";
  clear: both;
  visibility: hidden;
  height: 0;
  line-height: 0;
  display: block;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  float: left;
  -webkit-touch-callout: none;
  min-height: 1px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item img {
  width: 100%;
  display: block;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  padding: 0;
}


.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-nav {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: -80px;
  right: 0;
}

.owl-prev,
.owl-next {
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 40px;
  padding-top: 12px;
}

.owl-prev {
  margin-right: 30px;
}

.owl-dots {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
}

[role="button"] {
  cursor: pointer;
}

.owl-prev svg,
.owl-next svg {
  fill: currentColor;
  width: 100%;
  height: 16px;
  transition: transform 0.4s;
}

.owl-prev svg {
  transform: scaleX(-1);
}

.owl-dot {
  opacity: 0.3;
  -ms-flex: 0 50px;
  flex: 0 50px;
  width: 100%;
  max-width: 50px;
  height: 2px;
  transition: opacity 0.2s;
  display: block;
  background-color: #fff !important;
}

.owl-dot.active {
  opacity: 1;
}

.owl-dot:not(:last-child) {
  margin-right: 20px;
}


@media (width <= 1023px) {
  .owl-nav {
    top: -60px;
  }
}







.substance {
  padding-top: 270px;
  padding-bottom: 35px;
  position: relative;
}

.substance__bg {
  top: 0;
}

.substance__bg,
.substance__bg-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.substance__bg-image {
  z-index: 2;
  mix-blend-mode: multiply;
  width: 228px;
  height: 370px;
  margin-left: -9px;
  top: 160px;
}

.substance__bg-circle {
  z-index: 1;
  background-color: #f0f9ff;
  border-radius: 50%;
  width: 806px;
  height: 806px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.substance__group {
  z-index: 3;
  position: relative;
}

.substance__title {
  text-align: center;
  font-size: 31px;
  line-height: 1.3;
}

.substance__logo {
  margin-top: 20px;
}

.substance__logo,
.substance__logo .owl-stage .owl-item {
  justify-content: center;
  display: flex;
}

.substance__logo .owl-stage .owl-item {
  align-items: flex-end;
}

.substance__logo .owl-stage .owl-item img {
  width: auto;
  max-width: none;
}

.substance__wrap {
  justify-content: center;
  align-items: flex-start;
  margin-top: 55px;
}

.substance__wrap,
.substance__info {
  display: flex;
}

.substance__info {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  justify-content: flex-end;
}

.substance__info-wrap {
  max-width: 390px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.substance__slider-wrap {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  min-width: 0;
  padding-left: 40px;
}

.substance__slider-dots {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.substance__slider-dot {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s;
}

.substance__slider-dot:not(:last-child) {
  margin-right: 22px;
}

.substance__slider-dot.active {
  color: #0082cb;
}

.substance__slide {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.substance__text {
  max-width: 330px;
  font-size: 16px;
  line-height: 1.6;
}

@media (width <= 1023px) {
  .substance__logo .owl-stage .owl-item img {
    transform: scale(0.6);
  }

  .substance__info-wrap,
  .substance__text {
    max-width: 310px;
  }
}

@media (width <= 767px) {
  .substance {
    padding-top: 50px;
  }

  .substance__bg-image {
    top: -20px;
    transform: translateX(-50%) rotate(-10deg) scale(0.6);
  }

  .substance__bg-circle {
    width: 530px;
    height: 530px;
  }

  .substance__title {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .substance__logo {
    margin-top: -20px;
  }

  .substance__logo .owl-stage .owl-item img {
    transform: scale(0.3);
  }

  .substance__wrap {
    margin-top: 25px;
    display: block;
  }

  .substance__info-wrap {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .substance__slider-wrap {
    padding-left: 0;
  }

  .substance__text {
    max-width: 100%;
  }
}


















.advantages {
  padding: 80px 0;
}

.advantages__wrap {
  justify-content: space-between;
}

.advantages__wrap,
.advantages__item {
  align-items: flex-start;
  display: flex;
}

.advantages__item {
  flex: 0 calc(25% - 11.25px);
  justify-content: flex-start;
  max-width: calc(25% - 11.25px);
  margin-bottom: 0;
  margin-right: 15px;
}

.advantages__item:nth-child(4n) {
  margin-right: 0;
}

.advantages__icon {
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  margin-right: 20px;
}

.advantages__title {
  margin-bottom: 13px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.advantages__descr {
  font-size: 15px;
  line-height: 1.6;
}

@media (width <= 1230px) {
  .advantages {
    padding: 50px 0;
  }

  .advantages__item {
    flex: 0 calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
    margin-bottom: 0;
    margin-right: 15px;
  }

  .advantages__item:nth-child(4n) {
    margin-right: 0;
  }

  .advantages__icon {
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    margin-right: 18px;
  }

  .advantages__title {
    font-size: 24px;
  }

  .advantages__descr {
    font-size: 14px;
  }
}

@media (width <= 1023px) {
  .advantages {
    padding: 32px 0;
  }

  .advantages__icon {
    display: none;
  }

  .advantages__title {
    font-size: 18px;
  }

  .advantages__descr {
    font-size: 12px;
  }
}

@media (width <= 767px) {
  .advantages {
    padding: 35px 0;
  }

  .advantages__wrap {
    display: block;
  }

  .advantages__item {
    flex: 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .advantages__item,
  .advantages__item:nth-child(n),
  .advantages__item:nth-child(2n) {
    margin-right: 0;
  }

  .advantages__item:not(:last-child) {
    margin-bottom: 22px;
  }

  .advantages__icon {
    display: block;
  }

  .advantages__title {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .advantages__descr {
    font-size: 16px;
  }
}












.defence {
  position: relative;
}

.defence {
  padding: 70px 0 85px;
}

.defence__title {
  margin-bottom: 45px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}

.defence__title span {
  padding-left: 233px;
  display: block;
}

.defence__wrap {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.defence__item {
  text-align: center;
}

.defence__item:not(:last-child) {
  margin-right: 40px;
}

.defence__icon {
  color: #0082cb;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1.3;
}

.defence__descr {
  font-size: 18px;
}

.defence__anim {
  z-index: -1;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 90px);
}

@media (width <= 1230px) {
  .defence__title {
    font-size: 40px;
  }

  .defence__anim {
    left: 50%;
  }
}

@media (width <= 1023px) {
  .defence {
    padding: 50px 0;
  }

  .defence__title span {
    padding-left: 60px;
  }

  .defence__item:not(:last-child) {
    margin-right: 40px;
  }
}

@media (width <= 767px) {
  .defence__title {
    font-size: 26px;
  }

  .defence__title span {
    padding-left: 70px;
  }

  .defence__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
  }

  .defence__item:not(:last-child) {
    margin-left: 0;
    margin-right: 0;
  }

  .defence__item {
    flex: 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .defence__item,
  .defence__item:nth-child(4n) {
    margin-right: 0;
  }

  .defence__item:nth-child(3n) {
    margin-right: 0;
  }

  .defence__anim {
    opacity: 0.2;
    display: none;
  }
}

.defence__anim {
  transform: translate(-50%);
}

.defence__anim-video {
  width: 700px;
}

.defence__anim-video video {
  object-fit: contain;
  width: 100%;
}

@media (width <= 1230px) {
  .defence__wrap {
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .defence__item:not(:last-child) {
    margin: 0 30px 25px;
  }

  .defence__item {
    margin-bottom: 25px;
  }
}

@media screen and (width <= 767px) {
  .defence__item:not(:last-child) {
    margin-left: 0;
    margin-right: 0;
  }

  .defence__item {
    flex: 0 50%;
    max-width: 50%;
    margin-bottom: 25px;
    margin-left: 0;
  }

  .defence__item,
  .defence__item:nth-child(4n) {
    margin-right: 0;
  }

  .defence__item:nth-child(3n) {
    margin-right: 0;
  }
}









.dosage {
  padding-bottom: 80px;
}

.dosage__wrap {
  padding: 45px 0 65px;
  position: relative;
}

.dosage__wrap:before {
  content: "";
  background-color: #f5f5f5cc;
  border-radius: 30px;
  width: calc(100% + 200px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dosage__title,
.dosage__row {
  z-index: 2;
  position: relative;
}

.dosage__row {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  max-width: 910px;
  margin: 45px auto 0;
  display: flex;
}

.dosage__item {
  flex: 0 33.3333%;
  max-width: 33.3333%;
  margin-bottom: 0;
  margin-right: 0;
  padding: 0 30px;
}

.dosage__image {
  width: 100%;
  height: 217px;
  margin-bottom: 33px;
  position: relative;
}

.dosage__image-bg {
  z-index: 2;
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.dosage__image-item {
  z-index: 3;
  transform-origin: 100% 100%;
  width: 163px;
  transition: transform 0.4s;
  position: absolute;
  bottom: -30px;
  right: -5px;
}

.dosage__circle {
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dosage__circle_1 {
  width: 186px;
  height: 186px;
  margin-left: 10px;
}

.dosage__circle_2 {
  width: 217px;
  height: 217px;
}

.dosage__info {
  text-align: center;
}

.dosage__descr {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.dosage__age {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

@media (width <= 1230px) {
  .dosage {
    padding-bottom: 30px;
  }

  .dosage__circle_1 {
    width: 120px;
    height: 120px;
  }

  .dosage__circle_2 {
    width: 173px;
    height: 173px;
  }

  .dosage__descr {
    margin-bottom: 7px;
  }

  .dosage__age {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .dosage__row {
    margin-top: 10px;
  }

  .dosage__image-bg {
    display: none;
  }

  .dosage__image-item {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .dosage__circle {
    width: 160px;
    height: 160px;
  }

  .dosage__circle_1 {
    margin-left: 0;
  }
}

@media (width <= 767px) {
  .dosage {
    padding-bottom: 0;
  }

  .dosage__wrap {
    padding-bottom: 70px;
  }

  .dosage__row {
    margin-bottom: -20px;
  }

  .dosage__item {
    flex: 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 30px;
    margin-right: 30px;
    padding: 0;
  }

  .dosage__item:nth-child(2n) {
    margin-right: 0;
  }

  .dosage__image {
    height: 120px;
    margin-bottom: 8px;
  }

  .dosage__image-item {
    width: 107px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .dosage__circle {
    width: 110px;
    height: 110px;
    top: 0;
    bottom: auto;
  }

  .dosage__info {
    text-align: left;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .dosage__descr {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .dosage__age {
    margin-bottom: 0;
    font-size: 14px;
  }
}










.partners {
  padding: 50px 0 70px;
}

.partners__title {
  margin-bottom: 53px;
}

.partners__wrap {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.partners__item {
  background-color: #fffc;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 10px 35px 35px;
  transition:
    background-color 0.4s,
    box-shadow 0.4s;
  display: block;
}

.partners__item:hover {
  background-color: #fff;
}

.partners__image {
  justify-content: center;
  height: 140px;
}

.partners__image,
.partners__row {
  align-items: center;
  display: flex;
}

.partners__row {
  justify-content: space-between;
  padding: 0 10px;
}

.partners__text {
  color: #0082cb;
  font-size: 16px;
  font-weight: 700;
}

.partners__arrow img {
  transition: transform 0.4s;
}

@media (width <= 1230px) {
  .partners {
    padding-top: 35px;
  }

  .partners__title {
    margin-bottom: 30px;
  }

  .partners__image {
    height: 170px;
  }
}

@media (width <= 1023px) {
  .partners__item {
    margin-bottom: 0;
    padding: 10px 15px 20px;
  }

  .partners__image {
    height: 120px;
    padding: 0 30px;
  }

  .partners__text {
    font-size: 14px;
  }

  .partners__arrow {
    max-width: 16px;
  }
}

@media (width <= 767px) {
  .partners--product .title-2 {
    font-size: 26px;
  }

  .partners {
    padding-bottom: 35px;
  }

  .partners__wrap,
  .partners__item {
    display: block;
  }

  .partners__item {
    flex: 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .partners__item,
  .partners__item:nth-child(n) {
    margin-right: 0;
  }

  .partners__image img {
    max-width: 260px;
    max-height: 63px;
  }
}












.documents {
  margin-bottom: 82px;
  padding-top: 60px;
}

.documents__main-title {
  margin-bottom: 65px;
}

.documents__wrap {
  background-color: #edf3fa;
  border-radius: 30px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 80px;
  overflow: hidden;
}

.documents__wrap,
.documents__item {
  display: flex;
}

.documents__item {
  -ms-flex: 0 467px;
  flex: 0 467px;
  justify-content: flex-start;
  align-items: center;
}

.documents__image {
  -ms-flex: 0 0 262px;
  flex: 0 0 262px;
  margin-right: 35px;
  transition: transform 0.4s;
  transform: translateY(68px);
  box-shadow: -10px 40px 54px #0082cb33;
}

.documents__image-wrap {
  padding-top: 122.519%;
  position: relative;
  overflow: hidden;
}

.documents__image-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.documents__info {
  -ms-flex: 100%;
  flex: 100%;
}

.documents__title {
  margin-bottom: 7px;
  font-size: 28px;
}

.documents__title,
.documents__data {
  font-weight: 500;
  line-height: 1.3;
}

.documents__data {
  color: #c2c2c2;
  margin-bottom: 15px;
  font-size: 17px;
}

.documents__button .button {
  height: 56px;
}

.faq {
  padding-bottom: 60px;
}

.faq__main-title {
  margin-bottom: 60px;
}

.faq__item:not(:last-child) {
  margin-bottom: 35px;
}

.faq__row {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq__title {
  max-width: 800px;
  font-size: 24px;
  line-height: 1.3;
  transition: color 0.3s;
}

.faq__icon {
  width: 27px;
  height: 27px;
  position: relative;
}

.faq__icon span {
  background-color: #0082cb;
  width: 100%;
  height: 3px;
  margin-top: -1px;
  transition: transform 0.1s;
  position: absolute;
  top: 50%;
  left: 0;
}

.faq__icon span:nth-child(2) {
  transform: rotate(-90deg);
}

.faq__inner {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.4;
  display: none;
}

.faq__inner p {
  max-width: 680px;
}

.faq__inner p:first-child {
  margin-top: 0;
}

.faq__inner p:last-child {
  margin-bottom: 0;
}

@media (width <= 1230px) {
  .documents {
    padding-top: 40px;
  }

  .documents,
  .documents__main-title {
    margin-bottom: 40px;
  }

  .documents__wrap {
    justify-content: center;
    padding: 0 40px;
  }

  .documents__item {
    -ms-flex: 0 410px;
    flex: 0 410px;
  }

  .documents__image {
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    transform: translateY(50px);
  }

  .documents__title {
    font-size: 22px;
  }

  .documents__data {
    font-size: 12px;
  }

  .documents__button .button {
    height: 50px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .faq__title {
    max-width: 600px;
    font-size: 20px;
  }

  .faq__inner p {
    max-width: 550px;
  }
}

@media (width <= 1023px) {
  .documents__wrap {
    padding: 20px;
  }

  .documents__item {
    -ms-flex: 0 300px;
    flex: 0 300px;
  }

  .documents__image {
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    margin-right: 20px;
    transform: translateY(20px);
  }

  .faq__main-title,
  .faq__item:not(:last-child) {
    margin-bottom: 35px;
  }

  .faq__title {
    max-width: 450px;
    font-size: 18px;
  }

  .faq__icon {
    width: 20px;
    height: 20px;
  }

  .faq__icon span {
    height: 2px;
  }

  .faq__inner p {
    max-width: 480px;
  }
}

@media (width <= 767px) {
  .documents__wrap {
    padding: 30px 40px 0;
    display: block;
  }

  .documents__item {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .documents__image {
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    margin-bottom: -40px;
    margin-right: 0;
    display: block;
    transform: none;
  }

  .documents__info {
    text-align: center;
    margin-bottom: 35px;
  }

  .documents__title {
    margin-bottom: 12px;
  }

  .faq {
    padding-bottom: 0;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 25px;
  }

  .faq__title {
    max-width: 265px;
    font-size: 16px;
    font-weight: 500;
  }

  .faq__icon span {
    height: 3px;
  }
}
@media (width <= 767px) {
  .documents__wrap {
    overflow: visible;
  }
}











.main-form {
  position: relative;
}

.main-form {
  padding: 195px 0 65px;
}

.main-form__bg {
  width: 1920px;
  font-size: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.main-form__container {
  background-color: #fff;
  border-radius: 30px;
  padding: 45px 50px 55px;
}

.main-form__title {
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 1.3;
}

.main-form__title span {
  font-weight: 700;
}

.main-form__info {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 18px;
  margin-bottom: 25px;
  display: flex;
}

.main-form__col {
  -ms-flex: 0 333px;
  flex: 0 333px;
}

.main-form__anno {
  font-size: 15px;
  line-height: 1.5;
}

.main-form__subtitle {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.main-form__descr {
  font-size: 15px;
  line-height: 1.5;
}

.main-form__group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.main-form__input {
  -ms-flex: 0 333px;
  flex: 0 333px;
}

.main-form__input span {
  color: #bebebe;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.25;
  display: block;
}

.main-form__input input {
  color: #6d6d6d;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0;
  outline: none;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 0;
  font-family: Ubuntu, sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
}

.main-form__input input:focus {
  border-color: #0082cb;
}

.main-form__input_full {
  margin-top: 50px;
  -ms-flex: 100% !important;
  flex: 100% !important;
}

.main-form__button .button {
  width: 240px;
  height: 65px;
  padding-left: 30px;
  padding-right: 30px;
}

.main-form__success-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.main-form__success-left {
  -ms-flex: 0 375px;
  flex: 0 375px;
  margin-right: 30px;
}

.main-form__success-right {
  -ms-flex: 0 630px;
  flex: 0 630px;
}

.main-form__success-title {
  margin-bottom: 18px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
}

.main-form__success-descr {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.5;
}

.main-form__success-socials,
.main-form__success-social {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.main-form__success-social:not(:last-child) {
  margin-right: 24px;
}

.main-form__success-icon {
  background-color: #262626;
  border-radius: 50%;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  transition: background-color 0.3s;
  display: flex;
}

.main-form__success-label {
  font-size: 11px;
  line-height: 1.5;
}

.main-form__success-value {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.main-form__anim-title {
  text-align: center;
  font-size: 16px;
}

.main-form__instance {
  display: none;
}

.main-form__instance.active {
  display: block;
}

@media (width <= 1230px) {
  .main-form__bg {
    width: 1800px;
    margin-left: -50px;
  }

  .main-form__col {
    -ms-flex: 0 270px;
    flex: 0 270px;
  }

  .main-form__descr {
    font-size: 13px;
  }

  .main-form__input {
    -ms-flex: 0 270px;
    flex: 0 270px;
  }
}

@media (width <= 1023px) {
  .main-form__bg {
    width: 1440px;
    bottom: -40px;
  }

  .main-form__container {
    border-radius: 20px;
    padding: 25px 35px 30px;
  }

  .main-form__title {
    font-size: 32px;
  }

  .main-form__col {
    -ms-flex: 0 200px;
    flex: 0 200px;
  }

  .main-form__descr {
    font-size: 12px;
  }

  .main-form__group {
    margin-bottom: 30px;
  }

  .main-form__input {
    -ms-flex: 0 200px;
    flex: 0 200px;
  }

  .main-form__input_full {
    margin-top: 35px;
  }

  .main-form__success-title {
    font-size: 24px;
  }

  .main-form__success-descr {
    font-size: 14px;
  }
}

@media (width <= 767px) {
  .main-form {
    padding-top: 425px;
  }

  .main-form__bg {
    width: 1170px;
    margin-left: -180px;
    top: -50px;
    bottom: auto;
  }

  .main-form__container {
    border-radius: 0;
    width: 100vw;
    max-width: 375px;
    padding: 25px 15px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-form__info {
    display: block;
  }

  .main-form__col {
    -ms-flex: 100%;
    flex: 100%;
  }

  .main-form__col:not(:last-child) {
    margin-bottom: 16px;
  }

  .main-form__subtitle {
    font-size: 16px;
  }

  .main-form__group {
    margin-bottom: 0;
  }

  .main-form__input {
    -ms-flex: 100%;
    flex: 100%;
    margin-bottom: 28px;
  }

  .main-form__input_full {
    margin-top: 0;
  }

  .main-form__button .button {
    width: 100%;
  }

  .main-form__success-right,
  .main-form__anim {
    display: none;
  }
}














.footer {
  z-index: 3;
  background-color: #fff;
  padding: 40px 0 60px;
  position: relative;
}

.footer__top {
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 42px;
}

.footer__top,
.footer__logos {
  display: flex;
}

.footer__logos {
  justify-content: flex-start;
  align-items: center;
  margin-right: 30px;
  font-size: 0;
}

.footer__logo {
  height: 56px;
  margin-right: 13px;
}

.footer__logo .logo {
  height: 100%;
  display: block;
}

.footer__logo img {
  max-height: 100%;
}

.footer__sublogo {
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
}

.footer__bottom {
  color: #aaa;
  border-top: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 17px;
  font-size: 12px;
}

.footer__bottom,
.footer__dev {
  display: flex;
}

.footer__dev {
  justify-content: flex-end;
  align-items: baseline;
}

.footer__center {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer__right {
  margin-left: 30px;
}

.footer__group:nth-child(2) {
  margin-left: 45px;
}

.footer__group-label {
  white-space: nowrap;
  margin-bottom: 12px;
  font-size: 12px;
}

.footer__min-row,
.footer__contact {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__contact {
  transition: all 0.2s;
}

.footer__contact:hover {
  opacity: 0.7;
}

.footer__contact:nth-child(2) {
  margin-top: 12px;
}

.footer__contact-icon {
  border: 1px solid #7373734d;
  border-radius: 50%;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  font-size: 0;
  display: flex;
}

.footer__contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer__contact-value {
  white-space: nowrap;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.footer__contact-label {
  font-size: 12px;
  display: block;
}

.footer__messangers {
  justify-content: flex-start;
  margin-left: 17px;
}

.footer__messangers,
.footer__messanger {
  align-items: center;
  display: flex;
}

.footer__messanger {
  border-radius: 50%;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 0;
}

.footer__messanger svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  transition: all 0.2s;
}

.footer__messanger_viber {
  background-color: #aa5abe;
  margin-right: 10px;
}

.footer__messanger_telegram {
  background-color: #35aee2;
}

.footer__socs {
  justify-content: flex-end;
}

.footer__socs,
.footer__soc {
  align-items: center;
  display: flex;
}

.footer__soc {
  color: #0082cb;
  border: 1px solid #0082cb;
  border-radius: 30px;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  justify-content: center;
  width: 120px;
  height: 38px;
  transition: all 0.2s;
}

.footer__soc:first-child,
.footer__soc-icon {
  margin-right: 10px;
}

.footer__soc-icon {
  font-size: 0;
}

.footer__soc-icon svg {
  fill: currentColor;
}

.footer__soc:hover {
  color: #fff;
  background-color: #0082cb;
}

@media (width <= 1230px) {
  .footer__logos {
    margin-right: 20px;
  }

  .footer__right {
    margin-left: 20px;
  }

  .footer__group:nth-child(2) {
    margin-left: 25px;
  }

  .footer__socs {
    display: block;
  }

  .footer__soc {
    width: 128px;
  }

  .footer__soc:first-child {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (width <= 1023px) {
  .footer__logos {
    display: block;
  }

  .footer__logo {
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer__sublogo {
    max-width: 94px;
    margin: 24px auto 0;
  }

  .footer__sublogo,
  .footer__center {
    display: block;
  }

  .footer__group:nth-child(2) {
    margin-top: 20px;
    margin-left: 0;
  }

  .footer__socs {
    display: flex;
  }

  .footer__soc {
    width: 120px;
  }

  .footer__soc:first-child {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

@media (width <= 767px) {
  .footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    padding-bottom: 92px;
  }

  .footer .container {
    padding: 0 10px;
  }

  .footer__top {
    padding-bottom: 20px;
    display: block;
  }

  .footer__logos {
    justify-content: center;
    margin-bottom: 27px;
    margin-right: 0;
    display: flex;
  }

  .footer__sublogo {
    -ms-flex: auto;
    flex: auto;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 0;
  }

  .footer__bottom {
    border: none;
    padding-top: 0;
  }

  .footer__copy {
    max-width: 130px;
    line-height: 1.3;
  }

  .footer__dev {
    display: block;
  }

  .footer__center,
  .footer__right {
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .footer__right {
    margin-top: 20px;
    margin-left: 0;
  }

  .footer__group:nth-child(2) {
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .footer__socs {
    justify-content: space-between;
  }

  .footer__soc {
    flex: 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    margin-bottom: 0;
    margin-right: 10px;
  }

  .footer__soc:nth-child(2n) {
    margin-right: 0;
  }
}