@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a:visited,
a:link,
a:active {
    text-decoration: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

article > * + * {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background-color: transparent;
}

button {
    cursor: pointer;
}

body {
    background-color: var(--section-primary-bg);
}

.container {
    width: 100%;
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
}
@media (max-width: 344.9px) {
    .container {
        padding: 0 10px;
    }
}

.promo {
    padding-bottom: 130px;
}

@media (max-width: 768px) {
    .promo {
        padding-bottom: 70px;
    }
}

.promo__content {
    padding-top: 96px;
    padding-bottom: 96px;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .promo__content {
        flex-direction: column;
        padding-top: 32px;
        padding-bottom: 50px;
    }

    .promo__wrap-description-product {
        width: 100%;
    }
}

.promo__wrap-slider {
    width: 100%;
    max-width: 579px;
}

@media (max-width: 1360px) {
    .promo__wrap-slider {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .promo__wrap-slider {
        width: 100%;
    }
}
.promo__wrap-description-product {
}

.promo__wrap-product-title_mobile {
    display: none;
}

@media (max-width: 768px) {
    .promo__wrap-product-title_mobile {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.promo__product-name {
    font-size: 25px;
    line-height: 100%;
    color: #4d3b3c;
    margin-bottom: 7px;
}

@media (max-width: 950px) {
    .promo__product-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .promo__product-name {
        text-align: center;
        font-size: 3em;
    }
}

.promo__product-heading {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 72px;
    line-height: 110%;
    text-transform: uppercase;
    color: #183d32;
}

/* @media (max-width: 1125px) {
  .promo__product-heading {
    width: 100%;
    margin-bottom: 15px;
    font-size: 32px !important;
  }
} */

/* @media (max-width: 950px) {
  .promo__product-heading {
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .promo__product-heading {
    text-align: center;
    margin-bottom: 30px;
  }
} */

.promo__description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #183d32;
    margin-bottom: 24px;
}

@media (max-width: 1125px) {
    .promo__description {
        margin-bottom: 25px;
    }
}

.promo__description-item {
    font-size: 16px;
    line-height: 150%;
    color: #4d3b3c;
    margin-bottom: 20px;
}

.promo__description-item span {
    font-weight: 700;
    margin-right: 20px;
}

@media (max-width: 950px) {
    .promo__description-item {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .promo__description-item {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .promo__description-item .br {
        display: none;
    }
}

.promo__wrap-button {
    display: flex;
    align-items: center;
    column-gap: 18px;
    margin-bottom: 40px;
}

.promo__marketplace-button {
    /*margin-bottom: 15px;*/
}

.wherebuy__marketplace-button {
    margin-top: 15px;
}

.promo__marketplace-button:last-child {
    margin-bottom: 0;
}

.swiper-slide__list-item {
    position: relative;
}

.swiper-slide__list-item::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100%;
}

.swiper-slide__list-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.promo__slider-image {
    border-radius: 10px;
}

.promo__slider-button {
    position: absolute;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    z-index: 2;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo__slider-button:hover {
    cursor: pointer;
}

.promo__slider-button.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

.promo__wrap-slider-button-next {
    right: 30px;
}

.promo__wrap-slider-button-next .promo__slider-button-next {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #dca9a8;
    margin-left: 2px;
}

.promo__wrap-slider-button-prev {
    left: 30px;
}

.promo__wrap-slider-button-prev .promo__slider-button-prev {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 8px solid #dca9a8;
    margin-right: 2px;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    background: transparent !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent !important;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 452px;
    margin-bottom: 24px;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 24px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    /* height: 123px; */
    opacity: 1;
    /*opacity: 0.4;*/
    transition: opacity 0.6s;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.test {
    width: 30%;
}

.description {
    padding: 100px 0;
    background: url('../images/bg/catalog/products-bg.jpg') no-repeat center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .description {
        padding: 70px 0;
    }
}

.description__wrap-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 75px;
}

@media (max-width: 768px) {
    .description__wrap-switch {
        display: none;
    }
}

.description__switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
    transition: all 0.3s;
}

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

.description__switch:hover {
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.description__switch.switch-active .description__switch-name img {
    opacity: 1;
}

.description__switch-name {
    font-size: 19px;
    line-height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #4d3b3c;
}

.description__switch-name img {
    margin-right: 5px;
    opacity: 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .description__switch-name img {
        display: none;
    }
}

.description__content-about-product {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.description__wrap-action {
    width: 53%;
}

@media (max-width: 768px) {
    .description__wrap-action {
        width: 100%;
        margin-bottom: 70px;
    }
}

.description__title {
    font-family: 'Mulish', sans-serif;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 130%;
    color: #4d3b3c;
    margin-bottom: 23px;
}

@media (max-width: 768px) {
    .description__title {
        text-align: center;
        width: 100%;
        font-size: 4.69em;
        margin-bottom: 30px;
    }
}

.description__action-decription {
    margin-top: 30px;
}

.description__action-decription:first-child {
    margin-top: 0;
}

.description__description-text {
    font-size: 16px;
    line-height: 150%;
    color: #4d3b3c;
}

@media (max-width: 768px) {
    .description__description-text {
        font-size: 3em;
    }
}

.description__description-text span {
    font-weight: 600;
}

.description__wrap-advantage {
    width: 38%;
}

@media (max-width: 768px) {
    .description__wrap-advantage {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .description__wrap-advantage_mobile {
        width: 100%;
        margin-bottom: 70px;
    }
}

.description__action-decription-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .description__action-decription-item {
        display: list-item;
        font-size: 1em;
        list-style: disc;
        margin-left: 15px;
    }
}

.description__action-decription-item::before {
    content: ' ';
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background: #4d3b3c;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .description__action-decription-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .description__content {
        display: none;
    }
}

.description__content_mobile {
    display: none;
}

@media (max-width: 768px) {
    .description__content_mobile {
        display: block;
    }
}

.description__content-product-structure {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.description__content-product-structure_mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 70px;
}

.description__wrap-composition {
    width: 41.5%;
}

@media (max-width: 768px) {
    .description__wrap-composition {
        width: 100%;
    }
}

.description__wrap-composition-slider {
    width: 47.5%;
    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .description__wrap-composition-slider {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .description__wrap-composition-slider {
        width: 100%;
        margin-bottom: 20px;
    }
}

.description__composition-slider {
    width: 72.5%;
    margin-left: 43px;
    margin-right: 43px;
    height: auto;
    background: transparent;
}

@media (max-width: 768px) {
    .description__composition-slider {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.description__composition-text-wrap {
    margin-top: 30px;
}

.description__swiper-slide {
    background: transparent;
}

.description__slider-image {
    border-radius: 0px 40px 0px 0px;
    width: 84% !important;
}

@media (max-width: 768px) {
    .description__slider-image {
        width: 100% !important;
    }
}

.description__slider-button {
    width: 34px;
    height: 34px;
    border: 1px solid #4d3b3c;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description__slider-button:hover {
    cursor: pointer;
}

.description__slider-button.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

@media (max-width: 768px) {
    .description__slider-button {
        margin-right: 28px;
        width: 6.37em;
        height: 6.37em;
    }

    .description__slider-button:last-child {
        margin-right: 0;
    }
}

.description__slider-wrapper-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.description__wrap-slider-button-next .description__slider-button-next {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #dca9a8;
    margin-left: 2px;
}

@media (max-width: 768px) {
    .description__wrap-slider-button-next .description__slider-button-next {
        border-top: 0.75em solid transparent;
        border-bottom: 0.75em solid transparent;
        border-left: 1.5em solid #dca9a8;
    }
}

.description__wrap-slider-button-prev {
    left: 30px;
}

.description__wrap-slider-button-prev .description__slider-button-prev {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 8px solid #dca9a8;
    margin-right: 2px;
}

@media (max-width: 768px) {
    .description__wrap-slider-button-prev .description__slider-button-prev {
        border-top: 0.75em solid transparent;
        border-bottom: 0.75em solid transparent;
        border-right: 1.5em solid #dca9a8;
    }
}

.description__slide-description {
    background: #ffffff;
    border-radius: 0px 0px 0px 40px;
    width: 78%;
    padding: 36px 39px 36px 42px;
    margin-left: auto;
    margin-top: -45px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .description__slide-description {
        margin-top: 0;
        width: 100%;
        padding: 20px 27px 40px;
    }
}

.description__slide-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

@media (max-width: 768px) {
    .description__slide-title {
        font-size: 16px;
    }
}

.description__slide-text {
    font-size: 15px;
    line-height: 150%;
    color: #4d3b3c;
    text-align: left;
}

@media (max-width: 768px) {
    .description__slide-text {
        font-size: 13px;
    }
}

.description__content-product-use {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .description__content-product-use {
        flex-direction: column;
    }
}

.description__wrap-product-use {
    width: 41.5%;
}

@media (max-width: 768px) {
    .description__wrap-product-use {
        width: 100%;
    }
}

.description__wrap-product-use-description {
    margin-bottom: 30px;
}

.description__wrap-product-use-description:last-child {
    margin-bottom: 0;
}

.description__wrap-product-use-description .description__product-use-description {
    list-style: decimal;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .description__wrap-product-use-description .description__product-use-description {
        margin-left: 65px;
    }
}

@media (max-width: 500px) {
    .description__wrap-product-use-description .description__product-use-description {
        margin-left: 25px;
    }
}

.description__wrap-product-use-image {
    width: 47.5%;
}

@media (max-width: 768px) {
    .description__wrap-product-use-image {
        width: 100%;
        display: none;
    }
}

.description__product-use-image {
    width: 100%;
    border-radius: 0px 0px 0px 40px;
}

.description__show-more {
    font-weight: 500;
    font-size: 3em;
    line-height: 150%;
    border: none;
    text-decoration-line: underline;
    background: none;
    color: #dca9a8;
    display: block;
    padding-left: 0;
}

.description .points {
    display: inline;
}
.promo__count {
    font-family: var(--font-primary);
    margin-top: 24px;
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #183d32;
}
.promo__marketplace-button {
    border-radius: 5px;
    padding: 10px;
    flex: 0 1 288px;
    height: 74px;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
}
.button-marketplace_wb {
    background: #730d86;
}
.button-marketplace_wb:hover {
    background: #620b71;
}
.button-marketplace_oz {
    background: #0551db;
}
.button-marketplace_oz:hover {
    background: #053fab;
}
.button-marketplace_wb span,
.button-marketplace_oz span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}
.promo__theme-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #183d32;
    margin-bottom: 24px;
}
.border__block {
    border: 1px solid rgba(24, 61, 50, 0.3);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 32px;
    overflow: auto;
}
.table {
    border-radius: 10px;
    /* width: 100%; */
    border-collapse: collapse;
}
.table th {
    padding: 5px;
    border: 2px solid rgba(24, 61, 50, 0.3);
    border-top: none;
    padding: 4px 16px 16px 16px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #183d32;
}
.table th:first-of-type {
    border-left: none;
}
.table th:last-of-type {
    border-right: none;
}
.table td {
    border: 2px solid rgba(24, 61, 50, 0.3);
    padding: 5px;
}
.table td:first-of-type {
    border-left: none;
}
.table__first-column {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    color: #183d32;
}
.table__second-column p {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #183d32;
    max-width: 117px;
    width: 100%;
    margin: 0 auto;
}
.table td:last-of-type {
    border-right: none;
}
.prod_3 .table__third-column .table__text-bold{
    font-size: 14px;

}
.prod_3 .table__third-column div{
    max-width: 175px;
}
.prod_3 .table__second-column p{
font-size: 14px;

max-width: 145px
}
@media (max-width:992px) {
    .prod_3{
        max-width: 535px!important;
    }
}
@media (max-width:768px) {
    .prod_3 .table__third-column .table__text-bold{
        font-size: 12px;
    
    }
   
  .prod_3 .table__second-column p{
    font-size: 12px;
    
    }
}
.table__text-bold {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #183d32;
}
.table__third-column {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #183d32;
}
.table__third-column div {
    max-width: 112px;
    width: 100%;
    margin: 0 auto;
}
.table td:last-of-type {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #183d32;
}

.consist__row {
    display: flex;
}
.consist__block {
    flex: 1 1 100%;
}
.consist__item {
    display: flex;

    justify-content: space-between;
    margin-bottom: 8px;
}
.consist__item:last-of-type {
    margin-bottom: 0px;
}
.consist__block:nth-of-type(1) {
    padding-right: 24px;
    border-right: 2px solid #d9d9d9;
}
.consist__block:nth-of-type(2) {
    padding-left: 24px;
}
.consist__item-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: #183d32;
}
.consist__item-value {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: right;
    color: #183d32;
}
@media (max-width: 1360px) {
    .table th {
        font-size: 16px;
    }
    .table__first-column {
        font-size: 16px;
    }
    .table__second-column p {
        font-size: 14px;
    }
    .table__text-bold {
        font-size: 14px;
    }
    .consist__item-name {
        font-size: 16px;
    }
    .consist__item-value {
        font-size: 16px;
    }
    .border__block {
        padding: 16px;
    }
}
@media (max-width: 1220px) {
    .promo__product-heading {
        font-size: 56px;
    }
    .table th {
        padding: 4px 10px 10px 10px;
    }
    .table__first-column {
        font-size: 13px;
    }
    .table th {
        font-size: 14px;
    }
    .promo__content {
        gap: 32px;
    }
    .border__block {
        padding: 12px;
    }
    .table__text-bold {
        font-size: 12px;
    }
    .table__second-column p {
        font-size: 13px;
    }
    .consist__item-name {
        font-size: 14px;
    }
    .consist__item-value {
        font-size: 14px;
    }
}

.promo__period {
    margin-top: 48px;
    display: flex;
    gap: 4px;
    justify-content: center;
}
.promo__period-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 1px solid #183d32;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #183d32;
}
.promo__period-item.selected {
    color: #fff;
    background-color: #183d32;
}
.promo__period-selected {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}
.promo__period-border {
    left: 0;
    height: 14px;
    width: 100%;
    border-bottom: 1px solid rgba(24, 61, 50, 0.4);
    border-left: 1px solid rgba(24, 61, 50, 0.4);
    border-right: 1px solid rgba(24, 61, 50, 0.4);
    position: absolute;
    bottom: -14px;
}
.promo__period-text {
    position: absolute;
    bottom: -36px;
    left: 25px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #183d32;
}
@media (max-width: 1440px) {
    .promo__period-item {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .promo__period-text {
        font-size: 15px;
    }
}
@media (max-width: 1360px) {
    .promo__period-item {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .promo__period-text {
        left: 18px;
    }
}
.promo__effect {
    margin-top: 90px;
}
.promo__effect-row:first-of-type {
    margin-bottom: 48px;
}
.promo__effect-row {
    display: flex;
    justify-content: space-between;
    gap:8px;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width:768px) {
    .promo__effect.prod_2 p{
        font-size: 13px;
    }
}
.promo__effect-item {
    flex: 0 1 251px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.promo__effect-item p {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: #183d32;
}
.mySwiper .swiper-slide img {
    /* object-fit: contain; */
}
.mySwiper .swiper-slide {
    width: 100%;
    max-width: 177px;
    max-height: 177px;
}
@media (max-width: 992px) {
    .promo__wrap-slider {
        width: 100%;
    }
}
.device__mob {
    display: none;
}
@media (max-width: 992px) {
    .device__pc {
        display: none;
    }
    .promo__period.device__mob {
        display: flex;
        margin-bottom: 58px;
    }
    .promo__effect.device__mob {
        display: block;
    }
    .promo__effect-item p {
        font-size: 16px;
    }
    .promo__effect-item img {
        max-width: 82px;
    }
    .mySwiper .swiper-slide {
        width: 100%;
        max-width: 130px;
        max-height: 130px;
    }
    .promo__wrap-slider {
        display: flex;
        max-width: 100%;
        gap: 60px;
    }
    .mySwiper {
        flex: 0 1 130px;
    }
    .mySwiper2 {
        flex: 0 1 579px;
    }
    .promo__effect.device__mob {
        margin-top: 32px;
    }
}
@media (max-width: 768px) {
    .promo__wrap-slider {
        display: block;
    }
    .mySwiper .swiper-slide {
        width: 100%;
        max-width: 96px;
        max-height: 96px;
    }
    .mySwiper2 {
        max-width: 579px;
    }
    .promo__wrap-slider {
        max-width: 579px;
    }
    .promo__product-heading {
        font-size: 40px;
    }
}
@media (max-width: 576px) {
    .mySwiper2 {
        margin-bottom: 16px;
    }
    .promo__content {
        gap: 32px;
    }
    .promo__count {
        font-size: 18px;
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .promo__wrap-button {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    .promo__marketplace-button {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
        margin: 0;
    }
    .promo__theme-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .promo__wherebuy-img {
        max-width: 40px;
    }
    .promo__marketplace-button {
        height: 64px;
    }
    .promo__period-item {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .promo__period-text {
        font-size: 14px;
        left: 3px;
    }
    .border__block {
        padding: 9px;
        margin-bottom: 24px;
    }
    /* .table th {
        padding: 4px 6px 6px 6px;
        font-size: 12px;
    }
    .table__first-column {
        font-size: 11px;
    }
    .table__second-column p {
        font-size: 11px;
    }
    .table__text-bold {
        font-size: 11px;
    }
    .table__third-column {
        font-size: 8px;
    }
    .table td:last-of-type {
        font-size: 9px;
    } */
    .consist__row {
        flex-direction: column;
        gap: 8px;
    }
    .consist__block:nth-of-type(1) {
        border: none;
        padding: 0;
    }
    .consist__block:nth-of-type(2) {
        padding: 0;
    }
    .border__block-2 {
        padding: 20px;
        margin-bottom: 32px;
    }
    .consist__item-name {
        font-size: 16px;
    }
    .consist__item-value {
        font-size: 16px;
    }
    .promo__period {
        gap: 2px;
    }
}
/* @media (max-width: 430px) {
    .table th {
        padding: 4px 6px 6px 6px;
        font-size: 8px;
    }
    .table__first-column {
        font-size: 7px;
    }
    .table__second-column p {
        font-size: 7px;
    }
    .table__text-bold {
        font-size: 7px;
    }
    .table__third-column {
        font-size: 4px;
    }
    .table td:last-of-type {
        font-size: 5px;
    }
    .mySwiper2 {
        height: 279px;
        width: 320px;
    }
    .promo__wrap-slider {
        max-width: 320px;
    }
    .promo__wrap-slider-button-next {
        right: 15px;
    }
    .promo__wrap-slider-button-prev {
        left: 15px;
    }
} */

.footer {
    font-family: var(--font-primary);
    background: #f1f2ec;
}
.footer__block {
    padding: 40px 0;
    text-align: center;
}
.footer__block {
    font-size: 12px;
    line-height: 140%;
    color: #183d32;
    opacity: 0.5;
}
.footer__block a {
    color: #183d32;

    text-decoration: underline;
}
.footer__block a:hover {
    text-decoration: none;
}
.device__pc.product_4 .promo__period-text{
    left:65px;
}
@media (max-width:1360px) {
    .device__pc.product_4 .promo__period-text{
        left: 56px;
    }
    
}
@media (max-width:992px) {
    .device__mob.product_4 .promo__period-text{
        left:52px;
    }
}
@media (max-width:576px) {
    .device__mob.product_4 .promo__period-text{
        left:30px;
    }  
}