@charset "UTF-8";

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

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

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

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

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body,
html {
    height: 100%;
    min-width: 320px
}

body {
    color: #000;
    line-height: 1;
    font-family: Gilroy;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

button,
input,
textarea {
    font-family: Gilroy;
    font-size: inherit;
    line-height: inherit
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent
}

a {
    color: inherit;
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit
}

body {
    opacity: 0;
    -webkit-transition: opacity .1s;
    transition: opacity .1s
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.loaded body {
    opacity: 1
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

@supports (overflow:clip) {
    .wrapper {
        overflow: clip
    }
}

.wrapper>main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.wrapper>* {
    min-width: 0
}

[class*=__container] {
    max-width: 47.12375rem;
    margin: 0 auto;
    padding: 0 .5rem
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px;
    font-size: 20px;
}

.input {
    width: 100%;
    display: block;
    padding: 0 20px;
    border-radius: .625rem;
    border: 1px solid #eee;
    font-weight: 500;
    line-height: 1.2
}

.input::-webkit-input-placeholder {
    color: #a8adb8
}

.input::-moz-placeholder {
    color: #a8adb8
}

.input:-ms-input-placeholder {
    color: #a8adb8
}

.input::-ms-input-placeholder {
    color: #a8adb8
}

.input::placeholder {
    color: #a8adb8
}

.input_star {
    position: relative
}

.input_star::before {
    content: "*";
    color: #d93c3c;
    position: absolute;
    top: 1.0625rem
}

.input_white {
    background-color: #eef2fa
}

.input__photo {
    width: 100%;
    height: inherit;
    padding: .625rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    border-radius: .625rem
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
    -moz-transition: opacity .3s;
    transition: opacity .3s
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
    -ms-transition: opacity .3s;
    transition: opacity .3s
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
    -ms-transition: opacity .3s;
    transition: opacity .3s
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0
}

textarea.input {
    resize: none;
    padding: 0 0
}

.select {
    min-width: 0;
    position: relative;
    background-color: inherit;
    border-radius: .625rem
}

.select:not(:last-child) {
    margin-bottom: .9375rem
}

.select__body {
    position: relative;
    background-color: inherit;
    border-radius: .625rem
}

.select__title {
    color: inherit;
    text-align: left;
    background-color: inherit;
    cursor: pointer;
    width: 100%;
    border-radius: .625rem
}

.select__value {
    color: #a8adb8;
    font-weight: 500;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    border-radius: .625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 .9375rem;
    gap: .625rem
}

.select__value>* {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.select__value._select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: .5
}

.select__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: .9375rem
}

.select__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: .9375rem
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
    border-radius: .9375rem
}

.select__options {
    background-color: inherit;
    color: #a8adb8;
    position: absolute;
    top: calc(100% - .0625rem);
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    border-top: 0;
    border-radius: .9375rem
}

.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 12.5rem
}

.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 5px 15px;
    color: inherit
}

.select__option._select-selected {
    background-color: #eee
}

.select__row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.select_show-top .select__options {
    top: auto;
    bottom: calc(100% - .0625rem);
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    padding: 5px 0 10px 0
}

._select-tag {
    cursor: pointer
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s;
    pointer-events: none;
    z-index: 149
}

.popup-show body::after {
    opacity: 1
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    -webkit-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
    visibility: hidden;
    pointer-events: none
}

.popup__text {
    text-align: center
}

.popup__title {
    font-weight: 700;
    line-height: 1.2692307692;
    padding-bottom: .3125rem
}

.popup__sub {
    line-height: 1.2631578947
}

.popup__close {
    line-height: 1.26;
    padding: 18px 27px;
    border-radius: 15px;
    border: 2px solid #000
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center
}

.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
    background-color: #eee;
    padding: 20px;
    width: 100%;
    max-width: 470px;
    min-height: 258px;
    border-radius: 20px;
    display: -ms-grid;
    display: grid;
    gap: 44px;
    justify-items: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.lock .popup__content {
    visibility: visible
}

.spollers {
    display: -ms-grid;
    display: grid;
    gap: 15px
}

.spollers__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .4375rem;
    padding: .3125rem 3.75rem .3125rem .9375rem;
    background-color: #549e85;
    -webkit-box-shadow: 0 3px 0 #529280;
    box-shadow: 0 3px 0 #529280;
    color: #fff;
    line-height: 1.2380952381;
    width: 100%;
    cursor: default;
    text-align: left;
    border-radius: .625rem;
    position: relative;
    list-style: none;
    list-style-type: none
}

.spollers__title img {
    max-width: .9375rem;
    display: inline-block
}

._spoller-init .spollers__title {
    cursor: pointer
}

._spoller-init .spollers__title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-color: #64b59c;
    height: 100%;
    border-radius: .625rem;
    -webkit-transition: -webkit-transform .5s ease 0s;
    transition: -webkit-transform .5s ease 0s;
    transition: transform .5s ease 0s;
    transition: transform .5s ease 0s, -webkit-transform .5s ease 0s
}

._spoller-init .spollers__title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/spollers/arrow.svg) center/30% no-repeat;
    height: 100%;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out
}

._spoller-init .spollers__title._spoller-active::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.spollers__body {
    padding: .625rem .9375rem;
    line-height: 1.2631578947
}

.spollers__body_pad {
    padding: 1.375rem 0
}

.spollers__body p {
    line-height: 1.2631578947;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .625rem
}

/*.spollers__body p::before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    background-color: #000;
    height: .25rem;
    width: .25rem
}*/

.spollers__body .image {
    padding-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.spollers__body .rows {
    display: -ms-grid;
    display: grid;
    gap: .4375rem
}

.spollers__body .rows .row {
    background-color: #fbfbfb;
    border-radius: .625rem;
    padding: .3125rem .75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.2631578947
}

.spollers__body .rows .row__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.spollers__body .rows .row__number {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.375rem;
    flex: 0 0 9.375rem;
    padding-left: .625rem
}

[data-showmore-button] span:last-child {
    display: none
}

._showmore-active [data-showmore-button] span {
    display: none
}

._showmore-active [data-showmore-button] span:last-child {
    display: block
}

[class*=-ibg] {
    position: relative
}

[class*=-ibg] img {
    position: absolute;
    width: 100%;
    height: 122%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

[class*=-ibg_contain] img {
    -o-object-fit: contain;
    object-fit: contain
}

/*.video__content {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%
}

.video__content embed,
.video__content iframe,
.video__content object,
.video__content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}*/

.form {
    padding: 1.25rem .625rem;
    display: -ms-grid;
    display: grid
}

.form_span {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-left: -.625rem;
    margin-right: -.625rem
}

.form__photo {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.2380952381;
    color: #454e9f;
    padding: .625rem;
    width: 100%;
    border: 2px solid #454e9f;
    border-radius: .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    gap: .3125rem
}

.form__photo::before {
    content: "";
    display: inline-block;
    background: url(../img/main-block/icons/photo.svg) center/70% no-repeat;
    width: 1.5625rem;
    height: 1.5625rem
}

.form__title {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .625rem;
    font-size: 25px;
}

.form__input {
    position: relative
}

.form__input_star {
    position: relative
}

.form__input_star::before {
    content: "*";
    color: #d93c3c;
    position: absolute
}

.form__input .textarea {
    min-height: 11.25rem;
    max-height: 18.75rem;
    resize: vertical
}

.form__button {
    background-color: #2E7D32;
    -webkit-box-shadow: 0 5px 0 #0f6514;
    box-shadow: 0 5px 0 #0f6514;
    color: #ffffff;
    font-size: 1.1875rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: .3125rem
}

.form__button::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem
}

.no-webp .form__button.card::before {
    background: url(../img/main-block/icons/cart.png) center/contain no-repeat
}

.form__button.card::before {
    content: ""
}

.form__button_phone {
    width: 100%
}

.form__button_phone::before {
    background: url(../img/main-block/icons/phone.svg) center/contain no-repeat;
    filter: invert(1);
}

.footer {
    margin-bottom: .9375rem
}

.footer__body {
    border-radius: 1.0625rem;
    background-color: #f2fff2;
    color: #1f1f1f;
    padding: 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__title {
    line-height: 1.2941176471;
    font-size: 25px;
}

.footer__adress {
    line-height: 1.2941176471;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}

.footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__link {
    line-height: 1.2666666667
}

.main-block {
    margin-top: .625rem;
    margin-bottom: .625rem
}

.main-block__top {
    background-color: #eef2fa;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.1875;
    border-top-left-radius: .9375rem;
    border-top-right-radius: .9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 4.1875rem;
    border-bottom: 1px solid #d2d2d2
}

.main-block__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.main-block__column:not(:last-child) {
    border-right: 1px solid #d2d2d2
}

.main-block__title {
    background-color: ##FAF7F0;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    padding: 1.25rem
}

.main-block__form {
    background-color: ##FAF7F0
}

.main-block__slider {
    background-color: ##FAF7F0;
    padding: 0 .625rem 1.25rem .625rem
}

.swiper-slide__image-ibg {
    border-top-left-radius: 1.0625rem;
    border-top-right-radius: 1.0625rem;
    padding-bottom: 93%;
    overflow: hidden
}

.swiper-slide__image-ibg img {
    border-top-left-radius: 1.0625rem;
    border-top-right-radius: 1.0625rem
}

.info-main-block {
    /*background-color: ##FAF7F0*/
}

.info-main-block__body {
    display: -ms-grid;
    display: grid;
    gap: 1.25rem;
    padding: .3125rem .625rem
}

.info-main-block__top {
    display: -ms-grid;
    display: grid;
    gap: .4375rem
}

.info-main-block__title {
    line-height: 1.25;
    font-weight: 700
}

.info-main-block__reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .625rem
}

.info-main-block__reviews a {
    line-height: 1.2631578947
}

.info-main-block__reviews::before {
    content: "";
    display: inline-block;
    width: 6.25rem;
    height: 1.25rem;
    background: url(../img/main-block/icons/stars.svg) center/contain no-repeat
}

.info-main-block__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    flex-direction: row;
}

.info-main-block__sale {
    line-height: 1.2352941176;
    color: #fff;
    background-color: #478072;
    padding: .25rem .4375rem;
    border-radius: .4375rem
}

.info-main-block__price-last {
    line-height: 1.3571428571;
    color: #a8adb8;
    text-decoration: line-through
}

.info-main-block__price {
    line-height: 1.2258064516;
    font-weight: 700
}

.info-main-block__price span {
    font-size: 1.3125rem;
    line-height: 1.2380952381
}

.info-main-block__text {
    line-height: 1.2142857143;
    font-weight: 700;
    color: #fff;
    background-color: #e23e32;
    padding: .1875rem .5rem;
    border-radius: .4375rem
}

.icons-main-block__body {
    background-color: ##FAF7F0;
    border-bottom-left-radius: 1.0625rem;
    border-bottom-right-radius: 1.0625rem;
    padding: .625rem .625rem 1.25rem .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 1.875rem
}

.icons-main-block__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28%;
    flex: 1 1 28%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: .625rem
}

.icons-main-block__item_big {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 44%;
    flex: 1 1 44%
}

.icons-main-block__item:not(:last-child) {
    margin-right: .625rem
}

.icons-main-block__img {
    min-height: 4.125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 2.25rem
}

.icons-main-block__img.car {
    max-width: 3.4375rem
}

.icons-main-block__text {
    text-align: center;
    line-height: 1.1538461538
}

.item__body {
    padding-bottom: 1.375rem;
    border-radius: 1.0625rem;
    background-color: #fff
}

.item__body_radius {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.item__title {
    line-height: 1.2068965517;
    padding-right: 1.875rem;
    position: relative;
    font-size: 30px !important;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.item__title span{
    color: #1F5E2E;
    text-shadow: 1px 1px 3px #55b559;
}
.item__title_bold {
    font-weight: 700
}

.item__title:not(:last-child)::after {
    /*content: "";
    position: absolute;
    bottom: 0;
    margin: 0px 0px -5px 0px;
    left: 0;
    display: inline-block;
    width: 4.125rem;
    height: .0925rem;
    background-color: #fe2024*/
}

.item__text {
    line-height: 1.3157894737
}

.item__image {
    text-align: center;
    overflow: hidden
}

.item__image img,
.item__image video {
    max-width: 100%;
    border-radius: .9375rem
}

.items__body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: -ms-grid;
    display: grid
}

.items__form {
    background-color: #fff;
    border-bottom-left-radius: 1.0625rem;
    border-bottom-right-radius: 1.0625rem;
    margin-top: -.625rem;
    padding-bottom: .625rem
}

.form-block__body {
    background-color: #eef2fa;
    padding-top: 1.25rem
}

.form-block__title {
    line-height: 1.2068965517;
    font-weight: 500;
    text-align: center;
    padding-left: .625rem;
    padding-right: .625rem
}

.form-block__title span {
    font-weight: 700
}

.spollers-block__body {
    background-color: #eef2fa;
/*    padding-top: .625rem;*/
    border-top-left-radius: 1.0625rem;
    border-top-right-radius: 1.0625rem;
    display: -ms-grid;
    display: grid;
    gap: .25rem
}

.spollers-block__body_white {
    background-color: #fff
}

.spollers-block__title {
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    padding-left: .625rem;
    padding-right: .625rem;
    padding-bottom: 1.25rem;
    padding-top: .8125rem
}

.video__body {
    /*background-color: #f4faf4;*/
    background: #FAF7F0;
    padding: 30px .625rem 40px;
}

.video__title {
    line-height: 1.2068965517;
    font-weight: 500;
    text-align: center;
    padding-bottom: .625rem;
    padding-left: .625rem;
    padding-right: .625rem
}

.video__content {
    border-radius: 1.0625rem
}

.question__body {
    padding-top: 1.25rem
}

.question-block__title {
    font-weight: 600;
    line-height: 1.2068965517;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.reviews__body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.reviews__top-block {
    text-align: center
}

.top-block-reviews {
    display: -ms-grid;
    display: grid;
    justify-items: center
}

.top-block-reviews__title {
    font-weight: 600;
    line-height: 1.2068965517;
    padding-bottom: .625rem
}

.top-block-reviews__rating {
    font-weight: 700;
    line-height: 1.2258064516;
    padding-bottom: .5625rem
}

.top-block-reviews__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .9375rem
}

.top-block-reviews__stars:not(:last-child) {
    margin-bottom: 1.25rem
}

.top-block-reviews__stars a {
    line-height: 1.2631578947
}

.top-block-reviews__stars::before {
    content: "";
    display: inline-block;
    width: 7.875rem;
    height: 1.4375rem;
    background: url(../img/main-block/icons/stars.svg) center/contain no-repeat
}

.show {
    display: none
}

.form__button_write {
    font-size: 1.1875rem;
    line-height: 1.2380952381;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: .3125rem;
    min-width: 15.625rem;
    border-radius: .625rem;
    border: 1px solid #454e9f;
    gap: .3125rem
}

.form__button_write::before {
    content: "";
    display: inline-block;
    width: 1.875rem;
    height: 1.875rem;
    background: url(../img/main-block/icons/send.svg) center/80% no-repeat
}

.form__button_reviews {
    margin-top: 2.625rem
}

.form__button_reviews::before {
    display: none
}

.form__button_abolition {
    line-height: 1.2631578947;
    border-radius: .625rem;
    border: 2px solid #000;
    padding: .4375rem 1.25rem
}

.open-block {
    padding-top: 1.5625rem;
    width: 100%
}

.open-block__title {
    font-weight: 700;
    line-height: 1.2068965517;
    padding-bottom: 1.25rem
}

.open-block__rating {
    line-height: 1.2631578947;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .625rem
}

.open-block__rating::after {
    content: "";
    display: inline-block;
    width: 15.0625rem;
    height: 2.625rem;
    background: url(../img/main-block/icons/stars.svg) center/contain no-repeat;
    width: 9.375rem;
    height: 1.875rem
}

.rating__body {
    padding-left: .9375rem;
    padding-right: .9375rem;
    padding-bottom: 1.3125rem
}

.rating__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 1.875rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .9375rem
}

.rating__number {
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    line-height: 1.2631578947
}

.rating__number_null {
    color: #c7c7c7
}

.rating__quantity {
    text-align: left;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    line-height: 1.2631578947
}

.rating__quantity_null {
    color: #c7c7c7
}

.rating__star {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.875rem;
    background: url(../img/main-block/icons/star.svg) center/contain no-repeat
}

.rating__line {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: #f7f7f7;
    height: .5625rem;
    border-radius: .3125rem;
    position: relative
}

.rating__line_all::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f4d189;
    border-radius: .3125rem
}

.rating__line_small::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: .9375rem;
    background-color: #f4d189;
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem
}

.button-block__body {
    padding-bottom: 1.25rem;
    padding-left: .625rem;
    padding-right: .625rem
}

.reviews-items__body {
    /*padding-left: .625rem;
    padding-right: .625rem;*/
    padding-bottom: .625rem
}
.reviews-items__body img{
    width: 100%;
}

.items-reviews__more {
    width: 100%;
    display: -ms-grid;
    display: grid
}

.items-reviews__more .open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2380952381;
    text-transform: uppercase;
    width: 100%;
    padding: .625rem;
    border-radius: .625rem;
    border: 1px solid #454e9f;
    margin-top: .625rem
}

.items-reviews__more .close {
    -ms-grid-column-align: center;
    justify-self: center;
    padding: 1.125rem 2.6875rem;
    line-height: 1.2631578947;
    border-radius: .9375rem;
    border: 1px solid #eef2fa;
    margin-top: .3125rem;
    margin-bottom: .625rem
}

.content-items-reviews {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: .4375rem;
    -moz-column-gap: .4375rem;
    column-gap: .4375rem;
    row-gap: .9375rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.content-items-reviews__card:not(:last-child) {
    margin-bottom: .9375rem
}

.content-items-reviews__image-ibg {
    padding-bottom: 88%;
    border-radius: .625rem;
    overflow: hidden
}

.content-items-reviews__image-ibg:not(:last-child) {
    margin-bottom: .625rem
}

.content-items-reviews__name {
    line-height: 1.2631578947;
    padding-left: .625rem;
    padding-right: .625rem
}

.content-items-reviews__name:not(:last-child) {
    margin-bottom: .3125rem
}

.content-items-reviews__rating {
    padding-left: .625rem;
    padding-right: .625rem;
    line-height: 1.3076923077;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .9375rem
}

.content-items-reviews__rating::before {
    content: "";
    display: inline-block;
    width: 3.125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3.125rem;
    flex: 0 0 3.125rem;
    height: .625rem;
    background: url(../img/main-block/icons/stars.svg) center/contain no-repeat
}

.content-items-reviews__rating:not(:last-child) {
    margin-bottom: .625rem
}

.content-items-reviews__text {
    line-height: 1.3;
    padding-left: .625rem;
    padding-right: .625rem
}

.form__input_blu {
    background-color: #eef2fa;
    border-radius: .9375rem
}

.form__input {
    background-color: #fff;
    border-radius: .625rem
}

.swiper {
    overflow: hidden
}

.swiper-initialized {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.swiper-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
    display: none !important
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #FE2024
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 52px;
    margin-top: calc(0px - var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background-color: #eb5757;
    opacity: .6;
    border-radius: 15px
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 22px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.swiper-scrollbar {
    position: relative;
    -ms-touch-action: none;
    background: #fff
}

.swiper-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 50;
    height: 4px;
    width: 100%
}

.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: #fe2024;
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.image-mini-slider__slide {
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s
}

.image-mini-slider__slide.swiper-slide-thumb-active {
    opacity: 1
}

.image-mini-slider__image {
    position: relative;
    padding: 0 0 92% 0;
    cursor: pointer;
    overflow: hidden
}

.image-mini-slider__image img {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.image-mini-slider__image_br img {
    border-bottom-right-radius: 17px
}

.image-mini-slider__image_bl img {
    border-bottom-left-radius: 17px
}

@media (min-width:47.12375em) {
    .input {
        padding-top: 1.125rem
    }

    .input {
        padding-bottom: 1.125rem
    }

    .input {
        padding-right: 3.25rem
    }

    .input {
        padding-left: 3.25rem
    }

    .input::-webkit-input-placeholder {
        font-size: 1.1875rem
    }

    .input::-moz-placeholder {
        font-size: 1.1875rem
    }

    .input:-ms-input-placeholder {
        font-size: 1.1875rem
    }

    .input::-ms-input-placeholder {
        font-size: 1.1875rem
    }

    .input::placeholder {
        font-size: 1.1875rem
    }

    .input_star::before {
        left: 2.3125rem
    }

    .input__photo {
        font-size: 1.1875rem
    }

    .select {
        font-size: 1.1875rem
    }

    .select__title {
        padding-top: 1.125rem
    }

    .select__title {
        padding-bottom: 1.125rem
    }

    .select__value {
        padding-right: 3.25rem
    }

    .select__value {
        padding-left: 3.25rem
    }

    .select__options {
        font-size: 1.1875rem
    }

    .select__options {
        padding-top: .8125rem
    }

    .select__options {
        padding-bottom: .8125rem
    }

    .select__options {
        padding-right: 2.375rem
    }

    .select__options {
        padding-left: 2.375rem
    }

    .popup__title {
        font-size: 1.625rem
    }

    .spollers__item {
        font-size: 1.25rem
    }

    .spollers__title {
        font-size: 1.25rem
    }

    .spollers__title {
        min-height: 5.6875rem
    }

    .spollers__title_pad {
        padding-left: 3.875rem
    }

    ._spoller-init .spollers__title::before {
        width: 5.6875rem
    }

    ._spoller-init .spollers__title::after {
        width: 5.6875rem
    }

    .spollers__body .rows .row {
        font-size: 1.1875rem
    }

    .form {
        font-size: 1.1875rem
    }

    .form__photo {
        font-size: 1.1875rem
    }

    .form__photo {
        min-height: 5.625rem
    }

    .form__title {
        padding-left: 3.25rem
    }

    .form__inputs:not(:last-child) {
        margin-bottom: 1.25rem
    }

    .form__input:not(:last-child) {
        margin-bottom: .9375rem
    }

    .form__input_star::before {
        top: 1.0625rem
    }

    .form__input_star::before {
        left: 2.3125rem
    }

    .form__input .textarea {
        padding-top: 1.125rem
    }

    .form__input .textarea {
        padding-bottom: 1.125rem
    }

    .form__input .textarea {
        padding-right: 3.25rem
    }

    .form__input .textarea {
        padding-left: 3.25rem
    }

    .form__button {
        min-height: 5.625rem
    }

    .form__button {
        gap: 1.0625rem
    }

    .footer__top {
        font-size: 1.0625rem
    }

    .footer__link {
        font-size: .9375rem
    }

    .main-block__top {
        min-height: 4.1875rem
    }

    .main-block__column {
        font-size: 1.1875rem
    }

    .main-block__title {
        font-size: 1.75rem
    }

    .info-main-block__title {
        font-size: 1.75rem
    }

    .info-main-block__reviews {
        font-size: 1.1875rem
    }

    .info-main-block__bottom {
        gap: 1.875rem
    }

    .info-main-block__sale {
        font-size: 1.0625rem
    }

    .info-main-block__price-last {
        font-size: 1.0625rem
    }

    .info-main-block__price {
        font-size: 1.75rem
    }

    .info-main-block__price span {
        font-size: 1.3125rem
    }

    .info-main-block__text {
        font-size: .875rem
    }

    .icons-main-block__text {
        font-size: 1.1875rem
    }

    .item__body {
        padding-top: 1.5rem
    }

    .item__body {
        padding-left: 2.1875rem
    }

    .item__body {
        padding-right: 2.1875rem
    }

    .item__title {
        font-size: 1.75rem
    }

    .item__title {
        padding-bottom: 1.1875rem
    }

    .item__title:not(:last-child) {
        margin-bottom: 1.1875rem
    }

    .item__text {
        font-size: 1.1875rem
    }

    .item__text:not(:last-child) {
        margin-bottom: 1.6875rem
    }

    .items__body {
        gap: .9375rem
    }

    .form-block__title {
        font-size: 1.75rem
    }

    .spollers-block__title {
        font-size: 1.75rem
    }

    .video__title {
        font-size: 1.8125rem
    }

    .question-block__title {
        font-size: 1.8125rem
    }

    .top-block-reviews__title {
        font-size: 1.8125rem
    }

    .top-block-reviews__rating {
        font-size: 5.8125rem
    }

    .form__button_write {
        min-height: 5.625rem
    }

    .open-block__title {
        font-size: 1.8125rem
    }

    .items-reviews__more .open {
        font-size: 1.3125rem
    }

    .items-reviews__more .open {
        min-height: 5.625rem
    }

    .content-items-reviews__name {
        font-size: 1.1875rem
    }

    .content-items-reviews__rating {
        font-size: .8125rem
    }

    .content-items-reviews__text {
        font-size: .9375rem
    }

    .form__input_blu:not(:last-child) {
        margin-bottom: .9375rem
    }
}

@media (max-width:25em) {
    .info-main-block__bottom {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        gap: .3125rem
    }
}

@media (max-width:20em) {
    .input {
        padding-top: .3125rem
    }

    .input {
        padding-bottom: .3125rem
    }

    .input {
        padding-right: .625rem
    }

    .input {
        padding-left: .75rem
    }

    .input::-webkit-input-placeholder {
        font-size: .875rem
    }

    .input::-moz-placeholder {
        font-size: .875rem
    }

    .input:-ms-input-placeholder {
        font-size: .875rem
    }

    .input::-ms-input-placeholder {
        font-size: .875rem
    }

    .input::placeholder {
        font-size: .875rem
    }

    .input_star::before {
        left: .4375rem
    }

    .input__photo {
        font-size: .875rem
    }

    .select {
        font-size: .875rem
    }

    .select__title {
        padding-top: .3125rem
    }

    .select__title {
        padding-bottom: .3125rem
    }

    .select__value {
        padding-right: .625rem
    }

    .select__value {
        padding-left: .75rem
    }

    .select__options {
        font-size: 1rem
    }

    .select__options {
        padding-top: .3125rem
    }

    .select__options {
        padding-bottom: .3125rem
    }

    .select__options {
        padding-right: .0000000625rem
    }

    .select__options {
        padding-left: .0000000625rem
    }

    .popup__title {
        font-size: 1.375rem
    }

    .spollers__item {
        font-size: .8125rem
    }

    .spollers__title {
        font-size: .8125rem
    }

    .spollers__title {
        min-height: 2.5rem
    }

    .spollers__title_pad {
        padding-left: 1.375rem
    }

    ._spoller-init .spollers__title::before {
        width: 2.5rem
    }

    ._spoller-init .spollers__title::after {
        width: 2.5rem
    }

    .spollers__body .rows .row {
        font-size: .75rem
    }

    .form {
        font-size: .875rem
    }

    .form__photo {
        font-size: .875rem
    }

    .form__photo {
        min-height: 2.5rem
    }

    .form__title {
        padding-left: .9375rem
    }

    .form__inputs:not(:last-child) {
        margin-bottom: .625rem
    }

    .form__input:not(:last-child) {
        margin-bottom: .5rem
    }

    .form__input_star::before {
        top: .4375rem
    }

    .form__input_star::before {
        left: .4375rem
    }

    .form__input .textarea {
        padding-top: .3125rem
    }

    .form__input .textarea {
        padding-bottom: .3125rem
    }

    .form__input .textarea {
        padding-right: .625rem
    }

    .form__input .textarea {
        padding-left: .75rem
    }

    .form__button {
        min-height: 4.375rem
    }

    .form__button {
        gap: .875rem
    }

    .footer__top {
        font-size: .75rem
    }

    .footer__link {
        font-size: .625rem
    }

    .main-block__top {
        min-height: 1.875rem
    }

    .main-block__column {
        font-size: .75rem
    }

    .main-block__title {
        font-size: 1.125rem
    }

    .info-main-block__title {
        font-size: 1.125rem
    }

    .info-main-block__reviews {
        font-size: .75rem
    }

    .info-main-block__bottom {
        gap: .625rem
    }

    .info-main-block__sale {
        font-size: .625rem
    }

    .info-main-block__price-last {
        font-size: .625rem
    }

    .info-main-block__price {
        font-size: 1.125rem
    }

    .info-main-block__price span {
        font-size: 1rem
    }

    .info-main-block__text {
        font-size: .5625rem
    }

    .icons-main-block__text {
        font-size: .8125rem
    }

    .item__body {
        padding-top: .625rem
    }

    .item__body {
        padding-left: .3125rem
    }

    .item__body {
        padding-right: .3125rem
    }

    .item__title {
        font-size: 1.125rem
    }

    .item__title {
        padding-bottom: .625rem
    }

    .item__title:not(:last-child) {
        margin-bottom: .625rem
    }

    .item__text {
        font-size: .75rem
    }

    .item__text:not(:last-child) {
        margin-bottom: .9375rem
    }

    .items__body {
        gap: .4375rem
    }

    .form-block__title {
        font-size: 1.125rem
    }

    .spollers-block__title {
        font-size: 1.125rem
    }

    .video__title {
        font-size: 1.125rem
    }

    .question-block__title {
        font-size: 1.125rem
    }

    .top-block-reviews__title {
        font-size: 1.125rem
    }

    .top-block-reviews__rating {
        font-size: 3.125rem
    }

    .form__button_write {
        min-height: 3.75rem
    }

    .open-block__title {
        font-size: 1.125rem
    }

    .items-reviews__more .open {
        font-size: 1.1875rem
    }

    .items-reviews__more .open {
        min-height: 4.375rem
    }

    .content-items-reviews__name {
        font-size: .75rem
    }

    .content-items-reviews__rating {
        font-size: .5625rem
    }

    .content-items-reviews__text {
        font-size: .625rem
    }

    .form__input_blu:not(:last-child) {
        margin-bottom: .4375rem
    }
}

@media (max-width:29.99875em) {
    .spollers__body .rows .row__number {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
        flex: 0 0 7.5rem
    }
}

@media (max-width:47.12375em) {
    :root {
        --mobile-input-padding-y: .5rem;
        --mobile-input-padding-x: 1rem;
        --mobile-input-placeholder-size: .9375rem;
        --mobile-title-size: 1.25rem;
        --mobile-title-large-size: 1.3125rem;
        --mobile-text-size: .875rem;
        --mobile-text-small-size: .75rem;
        --mobile-price-size: 1.25rem;
        --mobile-price-span-size: 1.125rem;
        --mobile-button-min-height: 4.5rem;
        --mobile-button-gap: .875rem;
        --mobile-card-padding-top: 1rem;
        --mobile-card-padding-x: .875rem;
        --mobile-card-title-gap: .75rem;
        --mobile-card-text-gap: 1.125rem;
        --mobile-content-gap: .625rem;
        --mobile-sale-gap: .875rem;
        --mobile-rating-size: 4rem;
        --mobile-spoller-size: .9375rem;
        --mobile-spoller-min-height: 4rem;
        --mobile-spoller-pad-left: 2rem;
        --mobile-spoller-icon-width: 4rem;
        --mobile-top-min-height: 2.5rem;
        --mobile-button-write-min-height: 4.25rem;
        --mobile-open-button-size: 1.25rem;
    }

    .input,
    .form__input .textarea,
    .select__title,
    .select__value {
        padding: var(--mobile-input-padding-y) var(--mobile-input-padding-x)
    }

    .select,
    .input__photo,
    .form,
    .form__photo {
        font-size: var(--mobile-input-placeholder-size)
    }

    .input::-webkit-input-placeholder,
    .input::-moz-placeholder,
    .input:-ms-input-placeholder,
    .input::-ms-input-placeholder,
    .input::placeholder {
        font-size: var(--mobile-input-placeholder-size)
    }

    .input_star::before,
    .form__input_star::before {
        left: var(--mobile-input-padding-x)
    }

    .form__input_star::before {
        top: .75rem
    }

    .select__options {
        font-size: 1rem;
        padding: .5rem .75rem
    }

    .popup__title {
        font-size: 1.5rem
    }

    .spollers__item,
    .spollers__title {
        font-size: var(--mobile-spoller-size)
    }

    .spollers__title {
        min-height: var(--mobile-spoller-min-height)
    }

    .spollers__title_pad {
        padding-left: var(--mobile-spoller-pad-left)
    }

    ._spoller-init .spollers__title::before,
    ._spoller-init .spollers__title::after {
        width: var(--mobile-spoller-icon-width)
    }

    .spollers__body .rows .row,
    .main-block__column,
    .info-main-block__reviews,
    .item__text,
    .content-items-reviews__name {
        font-size: var(--mobile-text-size)
    }

    .form__photo {
        min-height: 4rem
    }

    .form__title {
        padding-left: 1rem
    }

    .form__inputs:not(:last-child) {
        margin-bottom: .875rem
    }

    .form__input:not(:last-child),
    .form__input_blu:not(:last-child) {
        margin-bottom: .625rem
    }

    .form__button {
        min-height: var(--mobile-button-min-height);
        gap: var(--mobile-button-gap)
    }

    .form__button_write {
        min-height: var(--mobile-button-write-min-height)
    }

    .footer__top {
        font-size: var(--mobile-text-small-size)
    }

    .footer__link,
    .content-items-reviews__rating,
    .info-main-block__text {
        font-size: .625rem
    }

    .main-block__top {
        min-height: var(--mobile-top-min-height)
    }

    .main-block__title,
    .info-main-block__title,
    .item__title,
    .form-block__title,
    .spollers-block__title {
        font-size: var(--mobile-title-size)
    }

    .video__title,
    .question-block__title,
    .top-block-reviews__title,
    .open-block__title {
        font-size: var(--mobile-title-large-size)
    }

    .info-main-block__bottom {
        gap: var(--mobile-sale-gap)
    }

    .info-main-block__sale,
    .info-main-block__price-last,
    .icons-main-block__text {
        font-size: var(--mobile-text-small-size)
    }

    .info-main-block__price {
        font-size: var(--mobile-price-size)
    }

    .info-main-block__price span {
        font-size: var(--mobile-price-span-size)
    }

    .item__body {
        padding-top: var(--mobile-card-padding-top);
        padding-left: var(--mobile-card-padding-x);
        padding-right: var(--mobile-card-padding-x)
    }

    .item__title {
        padding: .375rem 0 0
    }

    .item__title:not(:last-child) {
        margin-bottom: var(--mobile-card-title-gap)
    }

    .item__text:not(:last-child) {
        margin-bottom: var(--mobile-card-text-gap)
    }

    .items__body {
        gap: var(--mobile-content-gap)
    }

    .top-block-reviews__rating {
        font-size: var(--mobile-rating-size)
    }

    .items-reviews__more .open {
        font-size: var(--mobile-open-button-size);
        min-height: var(--mobile-button-min-height)
    }

    .content-items-reviews__text {
        font-size: .75rem
    }
}

@media (min-width:22.5em) and (max-width:29.99875em) {
    :root {
        --mobile-input-padding-y: .6875rem;
        --mobile-input-padding-x: 1.5rem;
        --mobile-input-placeholder-size: 1rem;
        --mobile-title-size: 1.4375rem;
        --mobile-title-large-size: 1.5rem;
        --mobile-text-size: 1rem;
        --mobile-text-small-size: 1.1rem;
        --mobile-price-size: 1.4375rem;
        --mobile-price-span-size: 1.1875rem;
        --mobile-button-min-height: 4.875rem;
        --mobile-button-gap: .9375rem;
        --mobile-card-padding-top: 1.5rem;
        --mobile-card-padding-x: 1.375rem;
        --mobile-card-title-gap: .875rem;
        --mobile-card-text-gap: 1.3125rem;
        --mobile-content-gap: .75rem;
        --mobile-sale-gap: 1.125rem;
        --mobile-rating-size: 4.75rem;
        --mobile-spoller-size: 1rem;
        --mobile-spoller-min-height: 4.75rem;
        --mobile-spoller-pad-left: 2.75rem;
        --mobile-spoller-icon-width: 4.75rem;
        --mobile-top-min-height: 3.25rem;
        --mobile-button-write-min-height: 5rem;
        --mobile-open-button-size: 1.25rem;
    }
}

@media (min-width:30em) and (max-width:47.12375em) {
    :root {
        --mobile-input-padding-y: .9375rem;
        --mobile-input-padding-x: 2.25rem;
        --mobile-input-placeholder-size: 1.125rem;
        --mobile-title-size: 1.75rem;
        --mobile-title-large-size: 1.8125rem;
        --mobile-text-size: 1.1875rem;
        --mobile-text-small-size: 1.0625rem;
        --mobile-price-size: 1.75rem;
        --mobile-price-span-size: 1.3125rem;
        --mobile-button-min-height: 5.625rem;
        --mobile-button-gap: 1.0625rem;
        --mobile-card-padding-top: 2.5rem;
        --mobile-card-padding-x: 2.1875rem;
        --mobile-card-title-gap: 1.1875rem;
        --mobile-card-text-gap: 1.6875rem;
        --mobile-content-gap: .9375rem;
        --mobile-sale-gap: 1.875rem;
        --mobile-rating-size: 5.8125rem;
        --mobile-spoller-size: 1.25rem;
        --mobile-spoller-min-height: 5.6875rem;
        --mobile-spoller-pad-left: 3.875rem;
        --mobile-spoller-icon-width: 5.6875rem;
        --mobile-top-min-height: 4.1875rem;
        --mobile-button-write-min-height: 5.625rem;
        --mobile-open-button-size: 1.3125rem;
    }
}

@media (any-hover:hover) {
    .select__option:hover {
        background: #d9d9d9
    }
}

.webp .form__button.card::before {
    background: url(../img/main-block/icons/cart.webp) center/contain no-repeat;
    filter: invert(1);
}

.main_title {
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 30px;
}
.spollers__body b {
    display: contents;
}
.page__section.main-block {
    background: #FAF7F0;
    width: 100%;
    max-width: 754px;
    margin: 0px auto 12px;
    /*padding-top: 17px;*/
}
.timer {
    padding: 20px 0;
    margin-bottom: 20px;
}
.header__container {
    border: 4px solid #eef2fa;
    padding: 1.375rem;
    margin-top: 17px;
    border-radius: 1.0625rem;
    background-color: #fff;
}
main.page .main-block__title {
    margin: 0;
    padding: 7px;
    font-size: 32px;
    text-transform: uppercase;
}
/*.info-main-block__price {
    font-size: 30px;
    margin-top: -10px;
}*/
.info-main-block__price {
    font-size: 35px;
    margin-top: -10px;
    text-align: center;
    vertical-align: middle;
}
.warning {
    display: flex;
    justify-content: center;
    text-align: center;
    color: red;
    text-shadow: 1px 1px 3px #fffffe;
    background: #fff;
    border-radius: 50px;
    border: 3px dotted red;
    padding: 15px;
    margin: 25px 0 0;
    font-size: 20px;
    font-weight: 700;
}


/*отзывы*/
.content-items-reviews__text {
    position: relative;
    display: inline-block;
    max-width: 320px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #a8a7a7;
    border-radius: 18px;
    box-shadow: 4px 4px 0 #dddddd;
}
.content-items-reviews__text span::before{
    content: "… ";
}
.content-items-reviews__text span::after{
    content: " …";
}
/* Хвостик облачка */
.content-items-reviews__text::before{
    content: "";
    position: absolute;
    top: -9px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 2px solid #a8a7a7;
    border-left: 2px solid #a8a7a7;
    transform: rotate(45deg);
}
/*отзывы*/

.green {
    color: #1F5E2E;
    text-shadow: 1px 1px 3px #55b559;
}
.main-img {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.item__body.lightgreen {
    background: #F4FAF4;
}
.page__section {
    /*margin-bottom: 50px;*/
}
.page__section.reviews-items {
    margin: 20px 0 10px;
    text-align: center;
}
.main-block__title.red {
    color: red;
}
.center {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
}
.red-white {
    background: #C62828;
    color: #fff;
    margin: 0px auto 10px;
    font-size: 30px;
    padding: 8px 20px;
    font-weight: 700;
    display: block;
    border-radius: 20px;
    width: fit-content;
    text-align: center;
}

h3.main-block__title.second {
    font-size: 22px;
}
.item__text p {
    font-size: 22px;
}

.item__title.red {
    color: #C62828;
    margin-bottom: 25px;
}
.last {
    margin: 20px auto;
}

.badge-cont {
    width: 100%;
    display: inline-flex;
    justify-content: flex-end;
}
.badge {
    position: absolute;
    width: 140px;
    color: #fff;
    padding: 10px;
    font-weight: 700;
    text-align: center;
    background: #2e7d32;
}
.aciya {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video__content {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 500px; /* оптимальная ширина для Shorts */
        margin: 0 auto;   /* центрирование */
        aspect-ratio: 9 / 16; /* вертикальный формат */
        background: #000; /* фон на случай загрузки */
        border-radius: 16px; /* красивые скругления как в Shorts */
    }

.video__content iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }


/*шапка, рейтинг, кол-во заказов*/
.trust-block { background: #1c2f00 !important; padding-top: 6px !important; padding-bottom: 6px !important; }
.trust-block {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 14px 20px;
}
.trust-block__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.trust-block__stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
}
.trust-block__rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
}
.trust-block__score {
    font-size: 16px;
    font-weight: 700;
}
.trust-block__stars-img {
    width: 100px;
}
.trust-block__rating-desc {
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}
.trust-block__info {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
    row-gap: 5px;
}
.trust-block__purchases {
    margin: 0;
    text-transform: uppercase;
    font-size: 15px;
}
.trust-block__count {
    display: inline-block;
    border: 1px solid #fff;
    padding: 0 10px;
    border-radius: 5px;
    background: #fff;
    color: #06064b;
    font-weight: 700;
}
.trust-block__last-order {
    display: block;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
}
/*шапка, рейтинг, кол-во заказов*/

/* блок Как это работает*/
.grid-item {
    width: 49%;
    margin: 0 auto 20px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column-reverse;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.grid-item__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.grid-item__content {
    padding: 15px 5px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.grid-item__text {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
}

/* Адаптивность: на мобилках (до 400px) перестраиваем в 1 колонку */
@media (max-width: 400px) {
.grid-how-cont .grid-item {
    width: 100%;
}
}
/* блок Как это работает*/

/* блок Почему мы*/
.why-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;

}
.item_img {
    width: 32%;
}
.item_img img {
    max-width: 300px;
    width: -webkit-fill-available;
}
.why-cont .item__text {
    padding-left: 20px;
}
/* Адаптивность: на мобилках (до 400px) перестраиваем в 1 колонку */
@media (max-width: 400px) {
.why-cont {
    display: block;
}
.item_img {
    width: 100%;
    margin-bottom: 20px;
}
.item_img img {
    display: block;
    margin: 0 auto;
}
}
/* блок Почему мы*/