.platform-logo {
  flex: none;
  font-size: 0;
  display: block;
  height: 13px;
  width: auto;
}
.platform-logo svg * {
  transition: 0.3s;
}
.platform-logo:not(:hover) svg *[fill] {
  fill: #b3b3b3;
}
.platform-logo:not(:hover) svg *[stroke] {
  stroke: #b3b3b3;
}
.title-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: #4b4e51;
}
@media only screen and (min-width: 600px) {
  .title-main {
    font-size: 22px;
  }
}
@media only screen and (min-width: 900px) {
  .title-main {
    font-size: 20px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1180px) {
  .title-main {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1440px) {
  .title-main {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1850px) {
  .title-main {
    font-size: 40px;
  }
}
.review-platform__block {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  padding: 0;
  box-shadow: none;
  line-height: 1;
}
.review-platform__block:focus {
  outline-color: rgba(0, 0, 0, 0);
}
@media (hover: hover) {
  .review-platform__block {
    cursor: pointer;
  }
}
.review-platform {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.review-platform__block {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
}
@media only screen and (min-width: 768px) {
  .review-platform__block {
    margin-top: 20px;
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }
}
@media only screen and (min-width: 900px) {
  .review-platform__block {
    gap: 22px;
  }
}
@media only screen and (min-width: 1180px) {
  .review-platform__block {
    gap: 30px;
  }
}
.review-platform__block:first-child {
  margin-top: 0;
}
.review-platform__loadbar {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0;
  flex: none;
}
@media only screen and (min-width: 1180px) {
  .review-platform__loadbar {
    width: 60px;
    height: 60px;
  }
}
.review-platform__loadbar-circle {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  rotate: -90deg;
}
.review-platform__loadbar-bg {
  fill: none;
  stroke-width: 5;
  stroke: #e0e0e0;
}
.review-platform__loadbar-progress {
  fill: none;
  stroke: #b3b3b3;
  stroke-width: 5;
  stroke-dasharray: 0 282.743;
  stroke-linecap: round;
  transition: stroke-dasharray 1s linear, stroke 0.3s;
}
@media (hover: hover) {
  .review-platform__block:hover .review-platform__loadbar-progress {
    stroke: #f60;
  }
}
.review-platform__loadbar-progress_active {
  stroke: #f60;
}
.review-platform__rating {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: #4b4e51;
}
@media only screen and (min-width: 1180px) {
  .review-platform__rating {
    font-size: 20px;
  }
}
.review-platform__icon {
  font-size: 0;
  margin-top: 9px;
}
@media only screen and (min-width: 768px) {
  .review-platform__icon {
    margin: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .review-platform__icon-svg {
    height: 30px;
    width: auto;
  }
}
.review-platform__icon-path {
  transition: 0.3s;
}
.review-platform__block:not(.review-platform__block_active):not(
    .review-platform__block:hover
  )
  .review-platform__icon-path {
  fill: #b3b3b3;
}
@media (hover: hover) {
  .checkbox {
    cursor: pointer;
  }
}
.checkbox {
  flex: none;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  font-size: 0;
  user-select: none;
}
.checkbox__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #cad1d8;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.checkbox__input:checked + .checkbox__content {
  background: #4b4e51;
  border-color: #4b4e51;
}
.checkbox__icon {
  font-size: 0;
  display: block;
  stroke: #fff;
  width: 100%;
  height: 100%;
  padding: 1.5px;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__content .checkbox__icon {
  opacity: 1;
}
.checkbox__input {
  display: none;
}
.review-card {
  box-shadow: 0 4px 20px 0 rgba(25, 25, 27, 0.03);
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 900px) {
  .review-card {
    padding: 23px 25px;
  }
}
@media only screen and (min-width: 1180px) {
  .review-card {
    padding: 25px 25px;
  }
}
@media only screen and (min-width: 1440px) {
  .review-card {
    padding: 35px 30px;
  }
}
.review-card__stars {
  display: flex;
  gap: 0;
  font-size: 0;
  margin-top: 8px;
}
@media only screen and (min-width: 900px) {
  .review-card__stars {
    margin-top: 7px;
  }
}
@media only screen and (min-width: 1440px) {
  .review-card__stars {
    margin-top: 5px;
  }
}
.review-card__stars-el {
  width: 16px;
  height: 16px;
  fill: #f60;
}
.review-card__stars-el_gray {
  fill: #dedede;
}
.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.review-card__top-body {
  margin-top: 5px;
}
@media only screen and (min-width: 900px) {
  .review-card__top-body {
    margin-top: 11px;
  }
}
.review-card__img {
  object-fit: cover;
  flex: none;
  width: 48px;
  height: 48px;
}
@media only screen and (min-width: 900px) {
  .review-card__img {
    width: 60px;
    height: 60px;
  }
}
.review-card__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #4b4e51;
}
@media only screen and (min-width: 900px) {
  .review-card__name {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1440px) {
  .review-card__name {
    font-size: 16px;
  }
}
.review-card__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  color: #4b4e51;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 11;
  margin-top: 10px;
}
@media only screen and (min-width: 900px) {
  .review-card__text {
    -webkit-line-clamp: 12;
    line-height: 1.65;
    font-size: 11px;
  }
}
@media only screen and (min-width: 1180px) {
  .review-card__text {
    -webkit-line-clamp: 13;
    line-height: 1.6;
    font-size: 12px;
  }
}
@media only screen and (min-width: 1440px) {
  .review-card__text {
    -webkit-line-clamp: 11;
    line-height: 1.65;
    font-size: 13px;
  }
}
.review-card__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #b3b3b3;
  text-underline-offset: 2px;
  transition: 0.3s;
}
@media (hover: hover) {
  .review-card__link {
    cursor: pointer;
  }
  .review-card__link:hover {
    color: #f60;
  }
}
.review-card__link:active {
  color: #f60;
}
@media only screen and (min-width: 1180px) {
  .review-card__link {
    font-size: 12px;
  }
}
.review-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  width: 100%;
  gap: 10px;
}
@media only screen and (min-width: 1180px) {
  .review-card__bottom {
    margin-top: 15px;
  }
}
.sec-header__wrap {
  padding: 9px 0;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .sec-header__wrap {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-header__wrap {
    padding-top: 4px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-header__wrap {
    padding-top: 0;
  }
}
.sec-brands {
  overflow: hidden;
}
.sec-brands__wrap {
  padding-bottom: 30px;
}
@media only screen and (min-width: 900px) {
  .sec-brands__wrap {
    padding-top: 28px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-brands__wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__wrap {
    padding-bottom: 65px;
  }
}
.sec-brands__wrap_catalog {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 900px) {
  .sec-brands__wrap_catalog {
    padding-top: 76px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-brands__wrap_catalog {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__wrap_catalog {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.sec-brands__slider {
  margin-top: 41px;
}
@media only screen and (min-width: 768px) {
  .sec-brands__slider {
    margin: 0;
    overflow: hidden;
    margin-right: -20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-brands__slider {
    overflow: visible;
    position: relative;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__slider {
    margin-top: 10px;
  }
}
.sec-brands__slider-swiper {
  overflow: visible;
  height: 157px;
}
@media only screen and (min-width: 900px) {
  .sec-brands__slider-swiper {
    height: 129px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-brands__slider-swiper {
    height: 168px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__slider-swiper {
    height: 161px;
  }
}
.sec-brands__slider-slide {
  width: 146px;
}
@media only screen and (min-width: 900px) {
  .sec-brands__slider-slide {
    width: 190px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__slider-slide {
    width: auto;
  }
}
.sec-brands__slider-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-brands__slider-scrollbar {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__slider-scrollbar {
    margin-top: 66px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-brands__body {
    width: 400px;
  }
}
.sec-reviews {
  overflow: hidden;
}
.sec-reviews__wrap {
  padding: 21px 0;
  padding-bottom: 50px;
}
@media only screen and (min-width: 1180px) {
  .sec-reviews__wrap {
    padding-top: 13px;
  }
}
.sec-reviews__wrap_catalog {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 900px) {
  .sec-reviews__wrap_catalog {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-reviews__wrap_catalog {
    padding-top: 95px;
    padding-bottom: 132px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-reviews__wrap_catalog {
    padding-top: 100px;
    padding-bottom: 144px;
  }
}
.sec-reviews__platforms {
  margin-top: 29px;
  order: 2;
  max-width: 400px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .sec-reviews__platforms {
    display: block;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-reviews__platforms {
    padding-left: 24px;
    margin-top: 37px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-reviews__platforms {
    flex: 1;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-reviews__body {
    width: 479px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-reviews__body {
    width: 580px;
  }
}
.sec-reviews__title {
  order: 1;
}
@media only screen and (min-width: 1180px) {
  .sec-reviews__title {
    flex: none;
    width: 256px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-reviews__title {
    width: 346px;
  }
}
.sec-reviews__slider {
  order: 3;
}
@media only screen and (min-width: 768px) {
  .sec-reviews__slider {
    border-radius: 20px;
  }
}
.sec-reviews__slider-slide {
  width: 280px;
}
@media only screen and (min-width: 1440px) {
  .sec-reviews__slider-slide {
    width: 350px;
  }
}
.sec-reviews__nav {
  order: 4;
}
.sec-subscribe {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe {
    overflow: visible;
  }
}
.sec-subscribe_payment {
  overflow: visible;
}
.sec-subscribe__wrap {
  padding: 39px 0;
  padding-top: 89px;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__wrap {
    padding: 54px 0;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__wrap {
    padding: 92px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__wrap {
    padding-top: 134px;
    padding-bottom: 120px;
  }
}
.sec-subscribe__wrap_payment {
  padding-top: 16px;
  padding-bottom: 0;
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__wrap_payment {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__wrap_payment {
    padding-top: 30px;
  }
}
.sec-subscribe__wrap_catalog {
  padding-top: 98px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .sec-subscribe__wrap_catalog {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__wrap_catalog {
    padding-top: 107px;
    padding-bottom: 111px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__wrap_catalog {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__wrap_catalog {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.sec-subscribe__wrap_articles {
  padding-top: 100px;
  padding-bottom: 0px;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__wrap_articles {
    padding-top: 139px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__wrap_articles {
    padding-top: 172px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__wrap_articles {
    padding-top: 180px;
  }
}
.sec-subscribe__container_payment {
  padding: 0;
}
.sec-subscribe__content {
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(25, 25, 27, 0.03);
  background: #fff;
  border-radius: 20px;
  padding-bottom: 39px;
}
@media only screen and (min-width: 768px) {
  .sec-subscribe__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
}
.sec-subscribe__phone {
  position: relative;
  width: 81%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  aspect-ratio: 0.847;
  top: -54px;
  margin-bottom: -53px;
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  .sec-subscribe__phone {
    margin-bottom: 0;
    top: 0;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__phone {
    margin-top: -8%;
    flex: none;
    width: 43%;
    max-width: none;
    margin-right: 3%;
    margin-bottom: -9%;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__phone {
    width: 44%;
    margin-top: -9%;
    margin-bottom: -10%;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__phone {
    width: 32%;
    margin-top: -6%;
    margin-bottom: -9%;
    margin-right: 10%;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__phone_payment {
    width: 47%;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__phone_payment {
    width: 46%;
    margin-right: 1%;
    margin-top: -8%;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__phone_payment {
    width: 37%;
    margin-top: -6%;
    margin-bottom: -8%;
    margin-right: 8%;
  }
}
.sec-subscribe__phone-shadow {
  position: absolute;
  z-index: 2;
  left: 22%;
  top: 30%;
  width: 73%;
}
.sec-subscribe__phone-img {
  position: absolute;
}
.sec-subscribe__phone-img_1 {
  top: 8%;
  left: 0;
  height: auto;
  width: 55%;
  z-index: 1;
}
.sec-subscribe__phone-img_2 {
  top: 0;
  right: 0;
  height: auto;
  width: 58%;
  z-index: 3;
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__phone-img_2 {
    top: 1%;
    right: 2%;
    width: 59%;
  }
}
.sec-subscribe__body {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 30px;
}
@media only screen and (min-width: 768px) {
  .sec-subscribe__body {
    padding: 20px 30px;
    text-align: left;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__body {
    padding: 20px 0;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__body {
    padding-left: 63px;
    padding-bottom: 36px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__body {
    max-width: 794px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
    padding-left: 80px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__body_payment {
    flex: 1;
    width: 10px;
    padding: 30px 0;
    padding-left: 39px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__body_payment {
    padding-left: 49px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__body_payment {
    padding-left: 155px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__title_payment {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__title_payment {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__title_payment {
    font-size: 38px;
  }
}
.sec-subscribe__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #4b4e51;
  opacity: 0.6;
  margin-top: 9px;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__text {
    font-size: 16px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__text {
    font-size: 20px;
    margin-top: 10px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__text {
    font-size: 24px;
    padding-right: 0;
    max-width: 580px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__text_payment {
    font-size: 12px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__text_payment {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__text_payment {
    font-size: 20px;
  }
}
.sec-subscribe__bottom {
  margin-top: 20px;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__bottom {
    display: flex;
    align-items: flex-end;
    gap: 34px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__bottom {
    gap: 42px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__bottom {
    margin-top: 20px;
    gap: 47px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__bottom_payment {
    margin-top: 39px;
    gap: 19px;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__bottom_payment {
    gap: 34px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__bottom_payment {
    margin-top: 30px;
    gap: 47px;
    align-items: flex-end;
  }
}
.sec-subscribe__bottom-text {
  display: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #4b4e51;
  opacity: 0.5;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__bottom-text {
    display: block;
    line-height: 1.3;
    max-width: 325px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__bottom-text {
    font-size: 14px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__bottom-text_payment {
    font-size: 11px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__bottom-text_payment {
    font-size: 12px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__bottom-text_payment {
    font-size: 15px;
  }
}
.sec-subscribe__qr {
  display: none;
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__qr {
    display: block;
    width: 110px;
    height: 110px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__qr {
    width: 134px;
    height: 134px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__qr_payment {
    width: 92px;
    height: 92px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__qr_payment {
    width: 110px;
    height: 110px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__qr_payment {
    width: 134px;
    height: 134px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__button {
    margin-bottom: 21px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__button {
    margin-bottom: 29px;
    font-size: 13px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-subscribe__button_payment {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-subscribe__button_payment {
    margin-bottom: 20px;
    width: 170px;
    height: 44px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-subscribe__button_payment {
    font-size: 15px;
    width: 180px;
    height: 48px;
    margin-bottom: 28px;
  }
}
.sec-seo__wrap {
  padding-bottom: 62px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__wrap {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__wrap {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__wrap {
    padding-bottom: 119px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__wrap {
    padding-bottom: 160px;
  }
}
.sec-seo__wrap_catalog {
  padding-top: 41px;
  padding-bottom: 61px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__wrap_catalog {
    padding-top: 70px;
    padding-bottom: 97px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__wrap_catalog {
    padding-top: 123px;
    padding-bottom: 119px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__wrap_catalog {
    padding-top: 127px;
    padding-bottom: 157px;
  }
}
.sec-seo__text {
  margin-top: 10px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__text {
    margin-top: 20px;
    max-width: 680px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__text {
    max-width: 820px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__text {
    margin-top: 29px;
  }
}
.sec-seo__content {
  margin-top: 15px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__content {
    margin-top: 29px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__content {
    margin-top: 50px;
  }
}
.sec-seo__block {
  box-shadow: 0 4px 20px 0 rgba(25, 25, 27, 0.03);
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .sec-seo__block {
    padding: 30px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-seo__block {
    padding: 40px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__block {
    margin-top: 31px;
  }
}
.sec-seo__block:first-child {
  margin-top: 0;
}
.sec-seo__block-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sec-seo__block-icon {
  display: block;
  flex: none;
  object-fit: contain;
  width: 22px;
  height: 22px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__block-icon {
    width: 26px;
    height: 26px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__block-icon {
    width: 34px;
    height: 34px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__block-icon {
    width: 40px;
    height: 40px;
  }
}
.sec-seo__block-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #4b4e51;
  margin-top: 2px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__block-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__block-title {
    font-size: 24px;
    margin-top: 3px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__block-title {
    font-size: 28px;
  }
}
.sec-seo__block-title-2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: #4b4e51;
  margin-top: 11px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__block-title-2 {
    font-size: 14px;
    margin-top: 19px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__block-title-2 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__block-title-2 {
    font-size: 18px;
    margin-top: 31px;
  }
}
.sec-seo__block-title-2:first-child {
  margin-top: 0;
}
.sec-seo__text-2 {
  margin-top: 4px;
}
@media only screen and (min-width: 900px) {
  .sec-seo__text-2 {
    margin-top: 9px;
  }
}
@media only screen and (min-width: 1180px) {
  .sec-seo__text-2 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1440px) {
  .sec-seo__text-2 {
    font-size: 15px;
  }
}
.sec-seo__block-flex {
  margin-top: 12px;
}
@media only screen and (min-width: 768px) {
  .sec-seo__block-flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 900px) {
  .sec-seo__block-flex {
    margin-top: 30px;
  }
}
.sec-seo__block-flex-col {
  margin-top: 11px;
}
@media only screen and (min-width: 768px) {
  .sec-seo__block-flex-col {
    width: 50%;
    padding: 0 15px;
    margin: 0;
  }
}
.sec-seo__block-flex-col:first-child {
  margin-top: 0;
}
