:root {
    /*--primary-color: 141, 24, 18;*/
    /* --primary-color: 90, 69, 89; */
    --primary-color: 78, 79, 81;
    --dark-color: 34, 34, 34;
    --white-color: 255, 255, 255;
    --border-light-color: 230, 228, 224;
    --body-color: 244, 242, 239;
    --light-color: 230, 228, 224;
    --bs-light-rgb: var(--light-color);
    --ff-default: "Manrope", sans-serif;
    --ff-second: "Inter", sans-serif;
    --fs-medium: 22px;
    --anim: 0.4s ease;
}

body {
    font-family: var(--ff-default);
    background-color: rgb(var(--body-color));
}

img, svg {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
}

a, button {
    color: inherit;
}

.tabs__nav-item {
    flex: 1 0 auto;
}

.tabs__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid transparent;
    font-weight: 500;
}

.tabs__nav {
    overflow-x: auto;
    border-radius: 8px;
}

.tabs__nav-btn--active {
    background-color: rgb(var(--dark-color));
    color: rgb(var(--white-color));
    border-radius: 8px;
}

.tabs__nav--primary .tabs__nav-btn--active {
    background-color: rgb(var(--primary-color));
}

.tabs__panel {
    display: none;
}

.tabs__panel--active {
    display: block;
}

.content *:last-child {
    margin-bottom: 0;
}

.accordion__item {
    border-bottom: 1px solid rgb(var(--light-color));
}

.accordion__item--active {
    background-color: rgb(var(--light-color));
}

.accordion__button {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
}

.accordion__caption {
    font-size: var(--fs-medium);
    font-weight: 500;
    text-align: start;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.accordion__item--active .accordion__caption {
    -webkit-line-clamp: none;
}

.accordion__icon {flex: 0 0 auto;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;background-color: rgb(var(--light-color));border-radius: 4px;rotate: -180deg;transition: rotate var(--anim), background-color var(--anim), color var(--anim);}

.accordion__item--active .accordion__icon {
    background-color: rgb(var(--white-color));
    color: rgb(var(--primary-color));
    rotate: 0deg;
}

.accordion__descr {
    padding: 0 20px 20px;
    display: none;
}

.accordion__item--active .accordion__descr {
    display: block;
}

.picture-image {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.picture-image--70 {
    padding-bottom: 70%;
}

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

.picture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.picture-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picture-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(var(--dark-color), 0.8), rgb(var(--dark-color), 0));
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 4px;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    border: 1px solid transparent;
    transition: background-color var(--anim), color var(--anim), border-color var(--anim);
}

.button--white {
    color: rgb(var(--white-color));
}

.button--whatsapp {
    background-color: rgba(37, 211, 102, 1);
}

.button--telegram {
    background-color: rgba(0, 136, 204, 1);
}

.button--vk {
    background-color: rgba(73, 113, 158, 1);
}

.button:hover {
    background-color: transparent;
    color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.button--border {
    background-color: transparent;
    border-color: currentColor;
    color: rgb(var(--primary-color));
}

.button--border-white {
    color: rgb(var(--white-color));
}

.button--border:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    border-color: rgb(var(--primary-color));
}

.button--bg-white {
    background-color: rgb(var(--white-color));
    color: rgb(var(--primary-color));
}

.button--bg-white:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    border-color: rgb(var(--primary-color));
}

.lazy-video video,
.lazy-video picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.lazy-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(var(--dark-color), 0.8), rgb(var(--dark-color), 0));
}

.lazy-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-pagination__bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(var(--dark-color));
    border-radius: 50px;
    opacity: 0.2;
    transition: width var(--anim), opacity var(--anim);
}

.slider-pagination__bullet--active {
    width: 26px;
    opacity: 1;
}

.slider-pagination--light {
    position: relative;
    z-index: 1;
}

.slider-pagination--light .slider-pagination__bullet {
    background-color: rgb(var(--white-color));
    opacity: 0.4;
}

.slider-pagination--light .slider-pagination__bullet--active {
    background-color: rgb(var(--primary-color));
    opacity: 1;
}

.slider-pagination.swiper-pagination-lock {
    display: none;
}

.title {
    font-family: var(--ff-second);
    font-size: 45px;
    line-height: 1.2;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-caption {
    font-size: 12px;
    max-width: 150px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px 0;
}

.header-wrapper {
    padding: 10px 0;
    transition: background-color var(--anim), border-color var(--anim);
    border-bottom: 1px solid rgb(var(--light-color));
}

.header--fixed .header-wrapper {
    background-color: rgb(var(--white-color));
    border-color: transparent;
}

.yandex-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background-color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 12px;
}

.yandex-rating__value {
    font-size: 18px;
    font-family: var(--ff-second);
}

.menu-list {
    gap: 25px;
}

.menu-item__link {
    text-decoration: none;
}

.hero {
    min-height: calc(100vh - 98px);
    background-color: white;
    display: flex;
    align-items: flex-end;
}

.advantage-item__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 64px;
    margin-top: 10px;
}

.catalog-item__image .picture-image {
    padding-bottom: 110%;
}

.catalog-item__content {
    background-color: rgb(var(--light-color));
}

.catalog-item__name {
    font-size: var(--fs-medium);
    font-weight: 500;
    font-family: var(--ff-second);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgb(var(--light-color));
    height: 100%;
    min-height: 300px;
    gap: 20px;
    transition: background-color var(--anim);
}

.benefit-item__content {
    margin-top: auto;
}

.benefit-item__name {
    font-size: var(--fs-medium);
    font-weight: 500;
    transition: color var(--anim);
}

.benefit-item:hover {
    background-color: rgb(var(--light-color));
}

.benefit-item:hover .benefit-item__name {
    color: rgb(var(--primary-color));
}

.portfolio-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    max-width: 80%;
    width: 100%;
    opacity: 0;
    transition: opacity var(--anim);
}

.portfolio-item {
    display: block;
    position: relative;
}

.portfolio-item__name {
    font-size: var(--fs-medium);
    font-weight: 500;
    margin-bottom: 10px;
}

.portfolio-item__deadline {
    margin-bottom: 20px;
}

.portfolio-item__more {
    color: rgb(var(--primary-color));
    transition: opacity var(--anim);
}

.portfolio-item__more:hover {
    opacity: 0.5;
}

.portfolio-item:hover .portfolio-item__content {
    opacity: 1;
}

.pinterest img {
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.pinterest-title {
    font-size: 32px;
}

.step-item__name {
    font-size: var(--fs-medium);
    font-family: var(--ff-second);
    font-weight: 500;
    margin-bottom: 20px;
}

.step-item__number {
    margin-bottom: 20px;
}

.step-item {
    min-height: 320px;
    height: 100%;
    border: 1px solid rgb(var(--light-color));
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: background-color var(--anim);
    position: relative;
}

.step-item:hover {
    background-color: rgb(var(--light-color));
}

.step-item__content {
    margin-top: auto;
    margin-bottom: 20px;
}

.step-item__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.step-item__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.manufacturer-item__icon {
    flex: 0 0 auto;
    color: rgb(var(--primary-color));
}

.partner-info {
    padding: 30px;
    min-height: 300px;
}

.partner-info__description {
    margin-top: auto;
    line-height: 1.4;
}

.partner-info__name {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.partner-info__caption {
    line-height: 1;
}

.review-item__image {
    padding-bottom: 140%;
}

.feedback-contact {
    font-size: 18px;
}

.feedback-contact--phone {
    font-size: 26px;
}

.feedback-contact--email {
    font-size: 24px;
}

.credit-image {
    height: 100%;
}

.credit-image .picture-image {
    height: 100%;
}

.burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: none;
    background-color: transparent;
    width: 40px;
}

.burger::before, .burger::after {
    content: '';
}

.burger::before, .burger::after, .burger-line {
    width: 100%;
    height: 3px;
    background-color: rgb(var(--primary-color));
    border-radius: 50px;
}

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item__content {
    padding: 20px;
    transition: background-color var(--anim);
    border: 1px solid rgb(var(--light-color));
    border-top: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.product-item:hover .product-item__content {
    background-color: rgb(var(--border-light-color));
}

.product-item__gallery {
    flex: 0 0 auto;
    width: 100%;
}

.product-item__image {
    padding-bottom: 130%;
}

.product-item__name {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--ff-second);
    margin-bottom: 15px;
}

.product-item__parameter-caption {
    flex: 0 0 auto;
    width: 110px;
    opacity: 0.6;
}

.product-item__parameter {
    display: flex;
    justify-content: space-between;
    gap: 4px 8px;
    font-size: 14px;
    font-family: var(--ff-second);
}

.product-item__parameter-value {
    text-align: end;
}

.product-item__parameters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.product-item__price {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--ff-second);
    margin-bottom: 20px;
}

.product-item__pagination .swiper-pagination-bullet {
    background-color: rgb(var(--white-color));
    opacity: 0.6;
    transition: opacity var(--anim), width var(--anim);
    border-radius: 50px;
}

.product-item__pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 50px;
    opacity: 1;
}

.filter-item__options {
    display: none;
}

.filter-item {
    padding: 20px;
    border-bottom: 1px solid rgb(var(--border-light-color));
}

.filter-item--active .filter-item__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.filter-item--active {
    background-color: rgb(var(--border-light-color));
}

.filter-item__handler {cursor: pointer;}

.filter-item__title {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--ff-second);
}

.filter-item__arrow {
    transition: rotate var(--anim), color var(--anim);
}

.filter-item--active .filter-item__arrow {
    rotate: 180deg;
    color: rgb(var(--primary-color));
}

.filter-item__option-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border: 1px solid rgb(153,153,153);
    position: relative;
    top: 3px;
}

.filter-item__option {
    display: flex;
    gap: 8px;
}

.filter-item__option-caption {
    font-family: var(--ff-second);
    opacity: 0.8;
}

input:checked ~ .filter-item__option-icon, .filter-item__option--here .filter-item__option-icon {
    border-color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.85457 0.751693C6.60145 0.779818 6.45301 0.859506 6.20301 1.10169C6.09676 1.20482 5.25301 2.06107 4.32801 3.00638L2.64676 4.72201L2.17801 4.24701C1.67176 3.73294 1.61708 3.68451 1.47333 3.61263C1.31083 3.52982 1.21239 3.50951 1.01395 3.50951C0.862388 3.51107 0.81395 3.51732 0.706138 3.55326C0.399888 3.65326 0.142075 3.91263 0.0420753 4.21888C-0.00323721 4.35951 -0.0141747 4.65482 0.0202003 4.80169C0.0514503 4.93763 0.137388 5.11263 0.221763 5.21419C0.334263 5.35013 1.95458 6.99701 2.03583 7.05638C2.13583 7.13138 2.31083 7.21107 2.42801 7.23451C2.55301 7.26107 2.7827 7.25638 2.89676 7.22669C3.09207 7.17669 3.2077 7.10482 3.41707 6.90013C3.80926 6.51888 7.75301 2.48451 7.80614 2.41107C7.94051 2.22357 7.99832 2.03763 7.99832 1.79076C7.99832 1.60169 7.96864 1.46732 7.89676 1.32044C7.69989 0.925131 7.29364 0.703256 6.85457 0.751693Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: 8px;
    background-position: center;
    background-repeat: no-repeat;
}

.about-advantage {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: white;
    min-height: 150px;
    height: 100%;
}

.about-advantage__caption {
    margin-top: auto;
}

.about-advantage__value {
    font-size: 32px;
    font-weight: 500;
    color: rgb(var(--primary-color));
    margin-bottom: 24px;
}

.product-characters__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-characters {
    margin: 20px 0;
}

.product-characters__title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.product-character {
    display: flex;
    align-items: end;
    gap: 5px;
}

.product-character__sep {
    flex: 1 0 auto;
    border-bottom: 1px dashed rgb(var(--dark-color), 0.1);
    position: relative;
    top: -6px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: rgb(var(--primary-color));
}

.product-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 25px;
    padding-bottom: 25px;
    border: 1px solid rgb(var(--dark-color), 0.1);
    border-radius: 5px;
}

.product-credit__icon {
    flex: 0 0 auto;
    width: 48px;
}

.product-credit__icon svg {
    width: 100%;
}

.product-credit .button {
    margin-left: auto;
}

.product-credit__title {
    font-size: 18px;
    font-weight: 600;
}

.product-credit__caption {
    opacity: 0.75;
}

.product-button {
    flex: 1 0 auto;
    width: 280px;
}

.product-thumbs .swiper-button-arrow {
    position: static;
    transform: translate(0);
    margin: 0;
}

.product-thumbs {
    align-items: center;
    gap: 25px;
}

.product-thumbs .swiper {
    flex: 1 0 auto;
    width: 200px;
}

.swiper-button-arrow {
    background-color: rgb(var(--primary-color));
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 5px;
}

.swiper-button-arrow::after {
    font-size: 18px;
    font-weight: 700;
    color: rgb(var(--white-color));
}

.product-gallery__image {
    border-radius: 5px;
    display: block;
    overflow: hidden;
}

.product-gallery__image .picture-image {
    padding-bottom: 130%;
}

.product-thumb {
    opacity: 0.5;
    border-radius: 5px;
    overflow: hidden;
}

.product-character__value {
    max-width: 270px;
    text-align: end;
}

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

.contacts-item__caption {
    margin-bottom: 15px;
}

.contacts-item__value {
    font-weight: 600;
}

.contacts-item__value a {
    text-decoration: none;
}

.articles-item__name {
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.articles-item__time {
    font-size: 14px;
    opacity: 0.5;
}

.articles-item__preview {
    opacity: 0.75;
}

.benefits-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.products-related .swiper-slide {
    height: auto;
}

.filter-handler {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    width: 100%;
    border: 1px solid transparent;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    gap: 8px;
    justify-content: center;
    border-radius: 4px;
}

.filter-handler svg {
    width: 24px;
    height: 24px;
}

.material-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.material-item__name {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    width: 100%;
    background: linear-gradient(0deg, rgb(var(--dark-color), 0.7), transparent);
    color: rgb(var(--white-color));
    font-size: 18px;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: opacity var(--anim);
}

.material-item__feedback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    backdrop-filter: blur(2px);
    justify-content: center;
    background: rgb(var(--dark-color), 0.7);
    transition: opacity var(--anim);
    opacity: 0;
}

.material-item:hover .material-item__feedback {
    opacity: 1;
}

.material-item:hover .material-item__name {
    opacity: 0;
}
.cookie-warning {
    position: fixed;
    bottom: 8px;
    transform: translateX(-50%);
    left: 50%;
    display: none;
    justify-content: space-between;
    width: 100%;
    padding: 32px;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: white;
    color: rgb(0, 0, 0);
    max-width: 836px;
    box-shadow: 0 0 16px 0 rgb(0, 0, 0, 0.2);
}

.cookie-warning--active {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.cookie-warning__text {
    font-size: 16px;
    line-height: 160%;
    margin-right: 30px;
    max-width: 630px;
}

.cookie-warning__text a {
    color: inherit;
}

.cookie-warning__read {
    display: block;
    margin-left: 15px;
    color: white;
    text-decoration: underline;
}

.cookie-warning__apply {
    cursor: pointer;
    padding: 8px 18px;
    background-color: rgb(var(--primary-color));
    border: none;
    border-radius: 4px;
    color: white;
}
.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    border: none;
    border-radius: 4px;
    background: rgb(var(--primary-color));
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1400px) {
    .hero-description--fs-18 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .product-sticky {
        position: sticky;
        top: 120px;
    }
}

@media (max-width: 1399px) {
    body {
        font-size: 14px;
    }

    .title {
        font-size: 40px;
    }

    .menu-list {
        gap: 8px;
    }

    .advantage-item__title {
        font-size: 24px;
        margin-bottom: 48px;
    }
    
    .filter-item__title {
        font-size: 14px;
    }
    
    .filter-item--active .filter-item__options {
        gap: 5px;
    }
    
    .filter-item__option {
        font-size: 12px;
    }
    
    .filter-item__option-icon {
        width: 12px;
        height: 12px;
    }
    
    .filter-item__arrow {
        width: 15px;
    }
    
    .product-item__name {
        font-size: 18px;
    }
    
    .product-item__parameter {
        font-size: 12px;
        flex-direction: column;
    }
    
    .product-item__parameter-value {
        text-align: start;
    }
    
    .product-item__parameters {
        gap: 8px;
    }
}

@media (max-width: 1199px) {
    :root {
        --fs-medium: 18px;
    }
    
    .title {
        font-size: 32px;
    }

    .logo-caption {
        max-width: 130px;
    }
}

@media (max-width: 991px) {
    :root {
        --fs-medium: 16px;
    }
    
    body {
        font-size: 12px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .lazy-video::after {
        background: linear-gradient(0deg, rgb(var(--dark-color), 0.8), rgb(var(--dark-color), 0.5));
    }
    
    .credit-image .picture-image {
        padding-bottom: 60%;
    }

    .step-item {
        min-height: 180px;
    }
    
    .benefit-item {
        min-height: auto;
    }
    
    .feedback-contact {
        font-size: 14px;
    }
    
    .feedback-contact--phone {
        font-size: 18px;
    }
    
    .feedback-contact--email {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .cookie-warning--active {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 8px;
        bottom: 0;
        padding: 16px 12px 12px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cookie-warning__text {
        margin-right: 0;
        font-size: 14px;
    }

    .cookie-warning__apply {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .partner-info {
        min-height: 200px;
    }
    
    .partner-info__name {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .product-credit {
        flex-wrap: wrap;
    }
    
    .product-credit .button {
        margin-left: auto;
        width: 100%;
    }
}
.hero .hero-title {
    font-size:80px;
}
.hero .hero-description {
    margin-bottom: 50px !important;
    margin-top: 25px;
}
.price-button, .d-button {
    margin-top: 0;
}
@media (max-width: 991px) {
    .hero .hero-title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .hero .hero-title {
        font-size: 45px;
    }
    .price-button .button,
    .d-button .button {
        width:100%;
        max-width:280px;
    }
    .d-button .button {
        margin-top: 10px;
    }
}
@media (max-width: 450px) {
    .price-button .button,
    .d-button .button {
        width:100%;
        max-width:100%;
    }
}