@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    /* Основная зелёная палитра */
    --deep-color: #17B747; /* основной */
    --pale-color: #21D15A; /* акцент/светлее основного */
    --pale-color-transparency: #17b74775; /* полупрозрачный акцент (из запроса) */
    --btn-background: #FFFFFF; /* кнопки по-прежнему белые */

    --menu-item-color: #0B3A1A; /* цвет пунктов меню */
    --menu-item-color-hover: #12983E; /* hover для пунктов меню */

    --btn-background-action: #17B747; /* цвет активной кнопки */
    --desc-btn-color: #17B747;
    --desc-btn-color-hover: #12893A;

    --features-item-color: #0A2A19;
    --footer-item-color: #ffffff;
    --footer-line-color: #17B747;

    --sale-form-color: rgba(23,183,71,0.2);
    --sale-form-shadow: rgb(13 59 23 / 25%);
    --sale-btn-color: #17B747;

    --order-border-color: #0E3D20;
    --nav-btn-gradient: linear-gradient(180deg, #21D15A 0%, #12893A 100%);
    --nav-btn-border: #17B747;
    --nav-btn-font-color: #FFFFFF;
    --nav-btn-hover-color: #0E3D20;

    --faq-open-header: rgba(23,183,71,0.15);
    --faq-item-border: #21D15A;
    --faq-item-header: #0B3F1D;

    --reviews-background: rgba(23,183,71,0.2);
    --reviews-header-color: #1E4630;
    --table-head-color: #FFFFFF;
    --table-border-color: #0E3D20;
    --moby-item-color: #0E3D20;
    --panel-bottom-color: #0F4D2A;

    /* Дополнительные акценты */
    --accent-soft: #E8F7EE; /* очень светлый зеленоватый фон */
    --accent-warm: #f3c14a; /* тёплый акцент можно сохранить */
    --muted-text: #6b7a73; /* приглушённый текст */
}

@-webkit-keyframes glowing-white {
    0% {
        background-color: var(--btn-background);
        -webkit-box-shadow: 0 0 3px var(--btn-background);
    }
    50% {
        background-color: var(--btn-background);
        -webkit-box-shadow: 0 0 40px var(--btn-background);
    }
    100% {
        background-color: var(--btn-background);
        -webkit-box-shadow: 0 0 3px var(--btn-background);
    }
}

@-webkit-keyframes glowing-red {
    0% {
        background-color: var(--btn-background-action);
        -webkit-box-shadow: 0 0 3px var(--btn-background-action);
    }
    50% {
        background-color: var(--btn-background-action);
        -webkit-box-shadow: 0 0 40px var(--btn-background-action);
    }
    100% {
        background-color: var(--btn-background-action);
        -webkit-box-shadow: 0 0 3px var(--btn-background-action);
    }
}

@-webkit-keyframes glowing-green {
    0% {
        background-color: var(--deep-color);
        -webkit-box-shadow: 0 0 3px var(--deep-color);
    }
    50% {
        background-color: var(--deep-color);
        -webkit-box-shadow: 0 0 40px var(--deep-color);
    }
    100% {
        background-color: var(--deep-color);
        -webkit-box-shadow: 0 0 3px var(--deep-color);
    }
}

footer .footer-item, footer .footer-bottom {
    color: white;
}

body {
    margin: 0;
}


article {
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    padding: 40px 0;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

article h3 {
    font-size: 24px;
}

.header-top__address {
    color: white;
}

/*footer .footer-item, footer .footer-bottom {*/
/*    color: white;*/
/*}*/

.h3 {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

li {
    padding-bottom: 7px;
}

article img {
    max-width: 100%;
    max-height: 600px;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

article img.medium {
    max-width: 80%;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.text-center {
    text-align: center;
}

.error-404 {
    padding: 100px 0;
}

.header-first {
    background-color: var(--deep-color);
    padding: 20px 0;
}

.header-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 3fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    align-items: center;
    font-family: "Source Code Pro", monospace;
}

.header-top__order::before {
    content: "";
    display: inline-block;
    background: url("/public/images/template/basket.svg");
    width: 26px;
    height: 26px;
    margin-right: 6px;
}

.header-top__callback, .header-top__order {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pale-color);
    padding: 7px 5px;
    border: 2px solid var(--btn-background);
    border-radius: 10px;
    max-width: 185px;
}

.header-top__callback::before {
    content: "";
    display: inline-block;
    background: url("/public/images/template/callback.svg");
    width: 26px;
    height: 26px;
    margin-right: 6px;
}

.header-top__callback span, .header-top__order span {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}

.header-top__callback:hover, .header-top__order:hover {
    cursor: pointer;
    background-color: var(--btn-background);
}

.header-top__address {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header-top__address span {
    font-weight: 700;
}

.header-top__address::before {
    content: "";
    display: inline-block;
    background: url("/public/images/template/address.svg");
    width: 35px;
    height: 36px;
}

.header-second {
    background-color: var(--pale-color-transparency);
}

.header-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-bottom__logo {
    width: 30%;
}

.header-bottom__menu {
    width: 65%;
}

.header-bottom__logo a:-webkit-any-link {
    all: unset;
    cursor: pointer;
}

.header-bottom__logo span {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 118px;
    text-align: center;
    text-transform: uppercase;
}

.header-bottom__menu ul {
    display: flex;
    list-style: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    justify-content: space-between;
}

.header-bottom__menu ul a {
    color: var(--menu-item-color);
}

/*.header-bottom__menu ul li::after {*/
/*    content: "|";*/
/*    color: var(--menu-item-color);*/
/*    padding-left: 20px;*/
/*}*/

.header-bottom__menu ul li:last-child::after {
    all: unset;
}

.header-bottom__menu ul li a:hover {
    color: var(--menu-item-color-hover);
    cursor: pointer;
}

.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.banner-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 5px;
    width: 49%;
    order: 1;
}

.banner-logo {
    width: 49%;
}

.banner-logo img {
    display: block;
    margin: auto;
    max-width: 95%;
}

.banner-desc__heading {
    font-size: 22px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.banner-desc__txt {
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding-bottom: 30px;
}

.banner-desc__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 60px;
    background-color: var(--desc-btn-color);
    border-radius: 6px;
}

.banner-desc__btn span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 21px;
    color: var(--btn-background);
    text-transform: uppercase;
}

.banner-desc__btn:hover {
    background-color: var(--desc-btn-color-hover);
    cursor: pointer;
}

.features-bg {
    background-color: var(--pale-color-transparency);
    padding: 40px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.features__item {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 15%;
}

.features-item__img {
    padding-bottom: 10px;
}

.features-item__title {
    text-align: center;
}

.features-item__title span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--features-item-color);
}

footer {
    background-color: var(--deep-color);
    padding: 60px 10px;
    font-family: "Source Code Pro", monospace;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 15px;
    padding-bottom: 20px;
}

.footer-top__item {
    width: 24%;
}

.footer-item__title {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 10px;
}

.footer-item__menu ul {
    padding-inline-start: unset;
    margin-block-start: unset;
    margin-block-end: unset;
}

.footer-item__menu ul li {
    display: block;
    list-style-type: unset;
    padding-bottom: 5px;
}

.footer-item__menu ul li a, .footer-item__menu div a {
    color: var(--footer-item-color);
}

.footer-item__menu {
    padding-bottom: 10px;
}

.footer-item__menu div {
    padding-bottom: 5px;
}

.line-footer {
    border-top: 1px solid var(--footer-line-color);
    padding-bottom: 20px;
}

.footer-bottom {
    font-size: 14px;
}

.top-btn {
    display: none;
    background: var(--footer-line-color) url("/public/images/template/up-arrow.svg") center center no-repeat;
    width: 64px;
    height: 50px;
    position: fixed;
    bottom: 150px;
    right: 15px;
    cursor: pointer;
    border-radius: 10px;
}

.top-btn-show {
    display: block;
}

/* Блок с таймером */

.sale {
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding: 20px 0;
}

.sale-header {
    background-color: var(--deep-color);
    padding: 20px 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
    box-shadow: 3px 4px 4px var(--sale-form-shadow);
    position: relative;
}

.sale-header__title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--btn-background);
    text-shadow: 0px 4px 4px var(--sale-form-shadow);
}

.sale-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sale-timer__item {
    width: 10%;
    color: var(--btn-background);
    text-transform: uppercase;
    font-weight: 600;
}

.sale-timer__item .sale-item__num {
    text-shadow: 0px 4px 4px var(--sale-form-shadow);
    font-size: 32px;
}

.sale-timer__item .sale-item__string {
    text-shadow: 0px 4px 4px var(--sale-form-shadow);
    font-size: 14px;
}

.sale-timer__item .sale-item__num::after {
    content: ":";
    color: var(--btn-background);
    float: right;
}

.sale-timer__item:last-child .sale-item__num::after {
    content: "";
}

.sale-form {
    background: var(--btn-background);
    border: 1px solid var(--deep-color);
    box-shadow: 3px 4px 4px var(--sale-form-shadow);
    border-radius: 0 0 10px 10px;
    padding: 20px 30px;
}

.sale-form form {
    background: var(--sale-form-color);
    border: 1px solid var(--deep-color);
    box-shadow: 0px 4px 4px var(--sale-form-shadow);
    border-radius: 10px;
    padding: 40px 80px;
}

.sale-form__rows input {
    display: block;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 14px 10px;
    background: var(--btn-background);
    border: 1px solid var(--deep-color);
    border-radius: 10px;
    margin-bottom: 20px;
    outline: none;
}

.sale-btn {
    max-width: 300px;
    margin: auto;
}

.sale-form input[type="submit"] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--btn-background);
    padding: 12px 6px;
    width: 100%;
    background: var(--sale-btn-color);
    text-shadow: 0px 4px 4px var(--sale-form-shadow);
    border-radius: 10px;
    border-color: #ffffff00;
    text-transform: uppercase;
    cursor: pointer;
}

.sale-form input[type="submit"]:hover {
    -webkit-animation: glowing-red 1500ms infinite;
    -moz-animation: glowing-red 1500ms infinite;
    -o-animation: glowing-red 1500ms infinite;
    animation: glowing-red 1500ms infinite;
}

.sale-form__send-col .sale-privacy {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 20px 0;
    font-weight: 500;
    font-size: 17px;
}

.sale-privacy input {
    margin-right: 10px;
}

/* END Блок с таймером */

/* Блок без таймера sale order */
.order-wrapper {
    background: var(--btn-background);
    border: 2px solid var(--order-border-color);
    box-shadow: 3px 4px 4px var(--sale-form-shadow);
    border-radius: 10px;
    padding: 30px;
}

.order .sale-form {
    border: unset;
    box-shadow: unset;
}

.order-header__title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
/* END Блок без таймера sale order */

/* Блок без таймера sale order modal */
.order-header__close {
    float: right;
    margin-top: -22px;
    margin-right: -11px;
}

.order-header__close:hover {
    cursor: pointer;
}
/* END Блок без таймера sale order modal */

/* Цветные блоки */
.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0px 4px 4px var(--sale-form-shadow);
    border-radius: 15px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    padding: 20px 10px;
    margin: 20px 0;
}

.box__txt {
    width: 85%;
}

.box.pin-push {
    background: linear-gradient(180deg, rgba(64, 144, 88, 0.15) 0%, rgba(188, 212, 195, 0.24) 100%);
    border: 5px solid #17B747;
    border-radius: 0px 35px 35px 35px;
}

.box.alert {
    background: linear-gradient(180deg, rgba(255, 81, 81, 0.15) 0%, rgba(255, 166, 166, 0.24) 100%);
    border: 5px solid #FF4646;
    border-radius: 0px 35px 35px 35px;
}

.box.msg {
    background: linear-gradient(180deg, rgba(91, 145, 250, 0.15) 0%, rgba(197, 223, 255, 0.24) 100%);
    border: 5px solid #5479FB;
    border-radius: 0px 35px 35px 35px;
}

.pin-push .box__icon {
    background: url("/public/images/template/pin-push-icon.svg");
    width: 70px;
    height: 70px;
}

.alert .box__icon {
    background: url("/public/images/template/alert-icon.svg");
    width: 70px;
    height: 70px;
}

.msg .box__icon {
    background: url("/public/images/template/chat-icon.svg");
    width: 70px;
    height: 70px;
}
/* END Цветные блоки */

/* Навигация */
.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav-buttons a {
    background: var(--nav-btn-gradient);
    border: 1px solid var(--nav-btn-border);
    box-shadow: 0px 4px 4px var(--sale-form-shadow);
    color: var(--nav-btn-font-color);
    border-radius: 15px;
    text-decoration: none;
    font-size: 15px;
    padding: 14px;
    margin-bottom: 10px
}

.nav-buttons a:hover {
    background: var(--nav-btn-border);
    color: var(--nav-btn-hover-color);
    font-weight: 600;
}
/* END Навигация */

/* FAQ */
.faq {
    display: flex;
    flex-wrap: wrap;
    background: var(--btn-background);
    border: 3px solid var(--deep-color);
    box-shadow: 3px 4px 4px var(--sale-form-shadow);
    border-radius: 5px;
    padding: 30px;
    margin: 20px 0;
    font-family: "Montserrat", sans-serif;
}

.faq-item {
    width: 100%;
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: unset;
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--faq-item-header);
    cursor: pointer;
}

.faq-item.open .faq-item__header {
    background-color: var(--faq-open-header);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    border: 2px solid var(--faq-item-border);
}

.faq-item.open .faq-item__header::after {
    content: "";
    background: url("/public/images/template/minus.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
}

.faq-item.open .faq-item__txt {
    display: block;
    border: 1px solid var(--faq-item-border);
    border-top: unset;
    padding: 30px 20px;
}

.faq-item p {
    margin: unset;
}

.faq-item.close .faq-item__header {
    background-color: var(--faq-open-header);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--faq-item-border);
}

.faq-item.close .faq-item__header::after {
    content: "";
    background: url("/public/images/template/plus.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding-right: 30px;
}

.faq-item.close .faq-item__txt {
    display: none;
}
/* END FAQ */

/* Таблица */
table {
    width: 100%;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    border: 2px solid var(--table-border-color);
    border-spacing: unset;
    border-radius: 10px;
    margin: 19px 0;
}

table thead th {
    background-color: var(--deep-color);
    color: var(--table-head-color);
    font-weight: 600;
    border-right: 2px solid var(--table-border-color);
    padding: 16px;
}

table thead th:last-child {
    border-right: unset;
}

table thead th:first-child {
    border-radius: 8px 0 0 0;
}

table thead th:last-child {
    border-radius: 0 8px 0 0;
}

table tbody tr td {
    font-weight: 400;
    border-right: 2px solid var(--table-border-color);
    border-bottom: 2px solid var(--table-border-color);
    text-align: center;
    padding: 16px;
}

table tbody tr td:last-child {
    border-right: unset;
}

table tbody tr:last-child td {
    border-bottom: unset;
}

.table-responsive {
    overflow-x: auto;
}
/* END Таблица */

/* Отзывы */
.reviews-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: var(--reviews-background);
    padding: 20px;
    margin: 20px 0;
    font-family: "Montserrat", sans-serif;
    border-radius: 10px;
}

.reviews-item__photo {
    width: 80px;
}

.reviews-item__photo img {
    width: 90%;
}

.reviews-txt__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.reviews-txt__name {
    width: 50%;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    color: var(--reviews-header-color);
}

.reviews-txt__date {
    font-weight: 600;
    font-size: 18px;
    color: var(--reviews-header-color);
}

.reviews-item__txt {
    width: 90%;
}

.reviews-txt__text {
    font-weight: 400;
}
/* END Отзывы */

/* POP-UP */
.popup-fade {
    display: none;
}

.popup-fade:before {
    content: '';
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 9999;
}

.popup {
    position: fixed;
    z-index: 9999;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* END POP-UP */

.green-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--btn-background);
    padding: 12px 6px;
    width: 200px;
    background: var(--deep-color);
    text-shadow: 0px 4px 4px var(--sale-form-shadow);
    border-radius: 10px;
    border-color: #ffffff00;
    text-transform: uppercase;
    cursor: pointer;
    margin: 20px auto;
}

.green-btn:hover {
    -webkit-animation: glowing-green 1500ms infinite;
    -moz-animation: glowing-green 1500ms infinite;
    -o-animation: glowing-green 1500ms infinite;
    animation: glowing-green 1500ms infinite;
}

.green-btn-footer {
    margin-bottom: 50px;
}

a.link {
    all: unset;
}

.menu-fixed-top {
    background-color: var(--panel-bottom-color);
    position: fixed;
    width: 100%;
    z-index: 10;
    bottom: 0;
}

.header-top__callback {
    padding: 8px 5px;
}

.close-order {
    cursor: pointer;
    font-size: 18px;
}

.reviews-page {
    padding: 40px 0;
}

.privacy-user {
    display: none;
}

@media (max-width: 1200px) {
    .header-top__address span {
        font-weight: 700;
        font-size: 14px;
    }

    .header-bottom__logo span {
        font-size: 48px;
        line-height: 84px;
    }

    .header-bottom__logo {
        width: 25%;
    }

    .header-bottom__menu {
        width: 75%;
    }

    .header-bottom__menu ul {
        font-size: 16px;
    }

    /*.header-bottom__menu ul li::after {*/
    /*    padding-left: 8px;*/
    /*}*/

    .popup {
        width: 60%;
    }

    .features-item__title span {
        font-size: 15px;
    }
}

@media (max-width: 991.5px) {
    .header-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-top__address::before {
        content: "";
        display: none;
    }

    .header-bottom__menu nav {
        display: none;
    }

    .mob-menu {
        background: url("/public/images/template/menu.svg") 0 0 no-repeat;
        width: 24px;
        height: 24px;
        float: right;
    }

    .features-item__img {
        padding-bottom: 0px;
    }

    .features__item {
        width: 33%;
        padding-bottom: 20px;
    }

    .sale-timer__item {
        margin-right: 10px;
    }

    .sale-timer__item .sale-item__num::after {
        margin-right: -8px;
    }

    .sale-timer__item .sale-item__string {
        font-size: 13px;
    }

    .sale-form__send-col .sale-privacy {
        font-size: 14px;
    }

    .top-btn {
        width: 50px;
        height: 45px;
    }

    .sale-form {
        padding: 20px 10px;
    }

    .reviews-item__photo {
        width: 45px;
    }

    .reviews-txt__name {
        width: 27%;
    }

    .footer-top__item {
        width: 49%;
    }

    .nav-buttons a {
        width: 32%;
        text-align: center;
    }

    .features-item__title span {
        font-size: 16px;
    }

    .top-btn {
        display: none;
    }
}

@media (max-width: 830px) {
    .banner-logo img {
        max-width: 300px;
    }
}

@media (max-width: 767.5px) {
    .header-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        grid-column-gap: unset;
    }

    .header-top__item {
        display: flex;
        justify-content: center;
        width: 49%;
    }

    .header-top__callback, .header-top__order {
        width: 90%;
        max-width: unset;
    }

    .header-top .header-top__item:last-child {
        display: none;
    }

    .banner-desc {
        width: 100%;
    }

    .banner-logo {
        width: 100%;
        display: none;
    }

    .banner {
        padding: 20px 0;
    }

    .banner-desc__heading {
        padding-bottom: 20px;
    }

    .sale-timer {
        justify-content: space-evenly;
    }

    .sale-timer__item {
        margin-right: unset;
    }

    .sale-timer__item {
        width: 24%;
    }

    .sale-form form {
        padding: 40px 10px;
    }

    .order-header__title {
        font-size: 18px;
    }

    .order-header__close {
        margin-top: -25px;
        margin-right: -20px;
    }

    .reviews-item__photo {
        display: none;
    }

    .reviews-item__txt {
        width: 100%;
    }

    .nav-buttons a {
        width: 49%;
    }
}

@media (max-width: 530px) {
    .features__item {
        width: 45%;
        padding-bottom: 20px;
    }

    .sale-header__title {
        font-size: 22px;
        padding-bottom: 5px;
    }

    .sale-timer__item .sale-item__num {
        font-size: 26px;
    }

    .order-header__title {
        font-size: 16px;
    }

    .sale-form__send-col .sale-privacy {
        font-size: 13px;
    }

    .reviews-txt__name {
        font-size: 16px;
    }

    .reviews-txt__date {
        font-size: 16px;
    }

    .popup {
        width: 100%;
    }
}

@media (max-width: 471.5px) {
    .order-wrapper {
        padding: 5px;
    }

    .order-header {
        padding-top: 7px;
    }

    .sale-form {
        padding: 15px 10px;
    }

    .order-header__title {
        font-size: 15px;
    }

    .order-header__close {
        margin-top: -11px;
        margin-right: unset;
    }

    .faq {
        padding: 10px;
    }

    .reviews-txt__name {
        width: 100%;
    }

    .footer-top__item {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .nav-buttons a {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .header-top__item {
        width: 50%;
        min-height: 38px;
    }

    .header-top__callback span, .header-top__order span {
        font-size: 14px;
        font-weight: 600;
    }

    .banner-desc__heading {
        font-size: 20px;
    }

    article {
        font-size: 16px;
    }

    article h1 {
        font-size: 20px;
    }

    article h2 {
        font-size: 19px;
    }

    article h3 {
        font-size: 18px;
    }

    article h4 {
        font-size: 17px;
    }

    article h5 {
        font-size: 16px;
    }

    article h5 {
        font-size: 15px;
    }

    .box__txt {
        width: 98%;
        text-align: center;
    }

    .box__txt p {
        font-size: 16px;
    }

    .sale-header__title {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .sale-timer__item {
        width: 20%;
    }

    .faq-item__header {
        font-size: 15px;
    }

    .nav-buttons a {
        width: 99%;
        font-size: 15px;
    }
}

@media (max-width: 410px) {
    .header-top__callback span, .header-top__order span {
        font-size: 13px;
        font-weight: 600;
    }

    .features-item__title span {
        font-size: 14px;
    }

    .sale-header__title {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .sale-timer__item .sale-item__num {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .header-top__callback::before {
        display: none;
    }

    .header-top__order::before {
        display: none;
    }
}

@media (max-width: 365px) {
    .reviews-txt__name {
        text-align: center;
        padding-bottom: 8px;
    }

    .reviews-txt__date {
        width: 100%;
        text-align: center;
        padding-bottom: 8px;
    }

    .reviews-txt__rating {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 350px) {
    .features-item__title span {
        font-size: 13px;
    }

    .sale-header__title {
        font-size: 16px;
    }
}

@media (max-width: 325px) {
    .header-top__callback span, .header-top__order span {
        font-size: 12px;
        font-weight: 600;
    }

    .header-bottom__logo span {
        font-size: 36px;
        line-height: 68px;
    }

    .banner-desc__heading {
        font-size: 17px;
    }

    .banner-desc__txt {
        font-size: 16px;
    }

    .sale-form input[type="submit"] {
        font-size: 16px;
    }
}

@media (max-width: 310px) {
    .features__item {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .header-top__item {
        width: 100%;
        min-height: unset;
    }

    .header-top__item:first-child {
        padding-bottom: 10px;
    }

    .header-top__callback span, .header-top__order span {
        font-size: 14px;
        font-weight: 600;
    }

    .banner-desc__btn span {
        font-size: 18px;
    }

    .sale-timer__item .sale-item__string {
        font-size: 11px;
    }
}