* {
    padding: 0;
    margin: 0;
    font-family: Tahoma, Roboto, Verdana, sans-serif;
    font-size: 16px;
    color: #333333;
}

a {
    color: #eba600;
    text-decoration: none;
}

a:hover {
    color: #FFBD1F;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
}

@media screen and (max-width: 540px) {
    * {
        font-size: 14px;
    }
}

.logo {
    max-height: 50px;
}

/****************************************
Общие стили
****************************************/

.text-white {
    color: white !important;
}

.text-yellow {
    color: #FFBD1F !important;
}

.bg-black {
    background-color: #222222;
}

button {
    cursor: pointer;
    color: white;
    background-color: #FFBD1F;
    outline: none;
    border: 1px solid #FFBD1F;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
}

button:hover {
    background-color: #eba600;
    border-color: #eba600;

}

button:active {
    box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, .125);
    background-color: #c78d00;
    border-color: #9f7000;
}

.call-btn::before {
    content: "\f095";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 8px;
}

button.white-btn {
    background-color: white;
    color: #333333;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #cccccc;
}

button.white-btn:hover {
    border: 1px solid #eeeeee;
    background-color: #eeeeee;
}

input,
textarea {
    background-color: white;
    border: 1px solid #cccccc;
    padding: 9px 10px 10px 10px;
}

input:focus,
textarea:focus {
    border-color: #FFBD1F;
    outline: 1px solid #FFBD1F;
}

input::placeholder,
textarea::placeholder {
    opacity: 0.4;
}

input[name="dop-message"] {
    display: none;
}

.form-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.form-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    text-align: center;
    max-width: 400px;
}

.form-grey-container {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    padding: 25px 10px;
    max-width: 100%;
    margin: 15px auto;
}

.back-top {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: gray;
    opacity: 0.2;
    border-radius: 100%;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateX(180deg);
    font-size: 2rem;
}

.back-top i {
    color: white;
}

.back-top:hover {
    opacity: 0.4;
}

@media screen and (max-width: 540px) {
    .form-horizontal {
        flex-direction: column;
        max-width: 80%;
        margin: 0 auto;
    }


    .form-horizontal button,
    .form-horizontal input {
        padding: 15px 20px;
    }
}


/****************************************
Стили для текста
****************************************/
h1 {
    font-size: 2.3rem;
    margin: 20px 0 10px 0;
}

h2 {
    font-size: 2rem;
    margin: 15px 0 30px 0;
}

h3 {
    font-size: 1.2rem;
    margin: 15px 0 5px 0;
}

p {
    line-height: 1.6;
}


/****************************************
Стили для первого экрана в index
****************************************/

.block-index {
    background: url('../img/main_bg.webp');
    background-size: cover;
    background-position: center;
    margin-bottom: 35px;
}

.block-index>.container {
    display: grid;
    grid-template-columns: 50%;
}


.block-index-text {
    background: rgba(0, 0, 0, .65);
    padding: 40px;
    margin: 25px 0;

}

.block-index-text h3,
.block-index-text h4,
.block-index-text h2,
.block-index-text h1 {
    position: relative;
    margin-bottom: 15px;
    color: white;
    margin-top: 0;
}

.block-index-text h2::after,
.block-index-text h1::after {
    bottom: -10px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100px;
    background: #eba600;
}

.block-index p {
    color: white;
    margin-bottom: 15px;
}


@media screen and (max-width: 1025px) {
    .block-index>.container {
        grid-template-columns: 70%;
        justify-content: center
    }
}

@media screen and (max-width: 768px) {
    .block-index>.container {
        grid-template-columns: 100%;
    }
}

/****************************************
Стили для модального окна
****************************************/

.modal {
    display: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, .5);
    align-items: center;
    justify-content: center;
}

.modal-open {
    display: flex;
    align-items: center;
    animation: open-modal;
    animation-duration: 0.3s;
}


@keyframes open-modal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;

    }
}

.modal-body {
    width: 400px;
    max-width: calc(100% - 15px) !important;
    background-color: white;
    animation: open-modal-body;
    animation-duration: 0.4s;
    position: relative;
    top: -10vh;
    padding: 0 0 45px 0;
}

@keyframes open-modal-body {
    from {
        opacity: 0;
        top: -30vh;
    }

    to {
        opacity: 1;
        top: -10vh;

    }
}

.modal-close-btn {
    display: block;
    margin: 0 0 0 auto;
    padding: 8px 10px;
}

.modal-content {
    padding: 25px 25px;
    max-width: 280px;
    margin: 0 auto;
}

.modal-content button,
.modal-content input {
    padding: 15px 20px;
}

/****************************************
Стили для меню, сюда входит: 
1 верхенее меню --> .top-nav
2 основное меню --> nav
****************************************/

.top-info {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    background-color: #222222;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;

}

.top-info-item a {
    padding: 10px 0;
    color: white;
    font-size: 0.95rem;
}

.top-info-item a:hover {
    color: #FFBD1F;
}

.top-info-item i {
    color: #FFBD1F;
}

a.top-info-social-icon {
    background-color: #333333;
    padding: 8px 8px;
    transition: 0.3s;
}

.top-info-social-icon:hover {
    background-color: #FFBD1F;
}

.top-info-social-icon i {
    color: white;
}


.menu-container {
    background: white;
    border-bottom: 1px solid #eee;
    box-shadow: 1px 0 3px 1px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: 0.3s;
}

.menu-container.fixed-menu-container {
    position: fixed;
    top: 0;
    width: 100%;
}

/*Основное меню*/
.top-menu {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 25px;
    padding: 15px 10px 0 15px;
}

.top-menu-header button {
    padding: 15px 10px 15px 20px;
    border: none;
    background-color: white;
}


.mobile-menu-info-container {
    padding: 25px 0 15px 15px;
    display: flex;
    gap: 20px;
    flex-direction: column
}

.mobile-menu-info-container h4 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.background-menu {
    display: none;
}

.open-menu-btn {
    display: none;
    width: 50px;
    height: 40px;
    margin: 15px 0;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}

.open-menu-btn span {
    width: 25px;
    height: 2px;
    margin: 2.5px 0;
    background-color: #777;
    border-radius: 5px;
}

.top-menu-navigation {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    z-index: 99;
}

.top-menu-navigation-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.top-menu-navigation-item-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
}

.level-1>.top-menu-navigation-item-content {
    border-radius: 35px;
    padding: 10px 15px;
}

.top-menu-navigation-item.level-1 {
    padding: 20px 0;
}

.top-menu-navigation-item-content a {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    font-weight: 700;
    white-space: nowrap;
}

.top-menu-navigation-item.active>.top-menu-navigation-item-content,
.top-menu-navigation-item.active>.top-menu-navigation-item-content>a,
.top-menu-navigation-item.active>.top-menu-navigation-item-content i {
    background: #FFBD1F;
    color: white !important;
}

.top-menu-navigation-item:hover>.top-menu-navigation-item-content,
.top-menu-navigation-item:hover>.top-menu-navigation-item-content>a,
.top-menu-navigation-item:hover>.top-menu-navigation-item-content i {
    background: #FFBD1F;
    color: white !important;
}

.top-menu-dropdown {
    display: none;
    position: absolute;
    min-width: 180px;
    top: 79px;
    background: white;
    border: 1px solid #eeeeee;
}

@media screen and (min-width: 1025px) {
    .top-menu-navigation-item.dropdown:hover>.top-menu-dropdown {
        display: block;
    }
}



.top-menu-dropdown>.top-menu-navigation-item>.top-menu-navigation-item-content {
    padding: 11px 0px 12px 11px;
}

.top-menu-dropdown>.top-menu-navigation-item.dropdown>.top-menu-navigation-item-content {
    padding: 0 0 0 10px;
}

.top-menu-dropdown>.top-menu-navigation-item.dropdown>.top-menu-navigation-item-content .top-menu-navigation-dropdown-btn {
    padding: 10px;
    transform: rotate(270deg);
}

.top-menu-dropdown>.top-menu-navigation-item>.top-menu-navigation-item-content a {
    color: #555;
    font-size: 0.9rem;
    padding-right: 25px;
}

.top-menu-navigation-item.level-2>.top-menu-dropdown {
    left: 100%;
    top: 0;
    margin-top: -1px;
}


@media screen and (max-width: 1200px) {
    .top-info {
        max-width: 960px;
        padding: 5px 15px;
    }

    .top-menu {
        max-width: 960px;
        padding: 0 15px;
    }

}

@media screen and (max-width: 1025px) {
    .top-menu-navigation {
        display: none !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        min-height: 100vh;
        background: white;
        padding: 15px 0;
        max-width: 330px;
        width: 100%;
        box-shadow: 0 0 45px rgba(0, 0, 0, .4);
        z-index: 100;
        padding-top: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        overflow-y: scroll;

    }

    .open-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }


    .mobile-menu-open {
        display: flex !important;
        animation: menu-right;
        animation-duration: 0.3s;
    }

    .background-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 99;
        animation: bg-menu-animation;
        animation-duration: 0.5s;
        opacity: 0.8;
        background: #333333;

    }

    @keyframes bg-menu-animation {
        from {
            opacity: 0;
        }

        to {
            opacity: 0.8;

        }
    }

    @keyframes menu-right {
        from {
            right: -100%;
        }

        to {
            right: 0;
        }
    }

    .top-menu-dropdown {
        position: relative;
        border: none;
        top: 0 !important;
        min-width: 100%;
        left: 0 !important;
    }

    .top-menu-dropdown>.top-menu-navigation-item>.top-menu-navigation-item-content a {
        font-weight: normal;
    }

    .top-menu-navigation-dropdown-btn {
        padding: 15px 20px !important;
        font-size: 1.4rem;
        border-left: 1px solid #eeeeee;
        transform: none !important;
    }

    .top-menu-navigation-item.level-2.dropdown>.top-menu-navigation-item-content>.top-menu-navigation-dropdown-btn {
        padding: 10px 19.5px !important;
    }

    .top-menu-navigation-link {
        padding: 15px 20px !important;
    }

    .top-menu-navigation-item {
        flex-direction: column;
        border: 1px solid #eeeeee;
        gap: 0;
        border-left: 0;
    }

    .top-menu-navigation-item.level-1 {
        padding: 0;
    }

    .top-menu-navigation-item-content {
        padding: 0 !important;
        border-radius: 0 !important;

    }

    .top-menu-navigation-item+.top-menu-navigation-item {
        border-top: 0 !important;
    }

    .top-menu-navigation-item-content a {
        padding: 10px;
        width: 100%;
    }

    .level-2>.top-menu-navigation-item-content a {
        padding-left: 30px !important;
    }

    .level-3>.top-menu-navigation-item-content a {
        padding-left: 45px !important;
        font-weight: normal;
    }

    .level-3>.top-menu-navigation-item-content a::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 6.5px;
        left: 30px;
        top: 23px;
        width: 4px;
        height: 4px;
        background: #777777;
    }

    .show>.top-menu-dropdown {
        display: block;
    }


}



/****************************************
Хлебные крошки
****************************************/

.breadcrumbs-container {
    display: flex;
    align-items: center;

}

.breadcrumbs-container::before {
    display: block;
    content: "";
    flex: 1;
    flex-shrink: 1;
    height: 1px;
    background-color: #FFBD1F;
    margin-right: 1.5rem;
}

.breadcrumbs {
    display: flex;
    padding: 20px 0;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    display: block;
    margin-bottom: 5px;
}

.breadcrumbs-link {
    color: #808080;
    font-size: 0.9rem;
}

.breadcrumbs-link.active {
    color: white;
}

.breadcrumbs-link:hover {
    color: #FFBD1F;
}

.breadcrumbs-item+.breadcrumbs-item::before {
    content: "/";
    padding: 0 0.8rem;
    color: #808080;
}

@media screen and (max-width: 540px) {
    .breadcrumbs {
        padding: 10px 0;
    }

    .breadcrumbs-link {
        font-size: 0.9rem;
    }


    .breadcrumbs-item+.breadcrumbs-item::before {
        content: "/";
        padding: 0 0.4rem;
    }
}




/****************************************
Стили тектовых страниц
****************************************/

.page-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(200px, 290px) auto;
    grid-template-rows: auto;
    padding-bottom: 5rem;
    min-width: 0
}

.page-grid>* {
    min-width: 0;
}

.sitebar-body {
    background-color: white;
    padding: 0 25px 30px 25px;
    border: 1px solid #eeeeee;
    position: relative;
}

.sitebar-body h3 {
    font-size: 1.3rem;
    padding: 15px 0 5px 0;
}


.sitebar-body h3::after {
    content: '';
    width: 60px;
    height: 2.5px;
    display: block;
    position: relative;
    bottom: -10px;
    background: #FFBD1F;
}

.sitebar-menu-navigation {
    display: flex;
    flex-direction: column;
}

.sitebar-menu-item {
    display: block;
    width: 100%;
}

.sitebar-menu-link {
    display: block;
    width: 100%;
    color: #666666;
    font-size: 0.97rem;
}

.sitebar-menu-link.active {
    color: #FFBD1F;
}

.sitebar-menu-link:hover {
    color: #FFBD1F;
}

.sitebar-menu-item.level-1 {
    border-bottom: 1px dashed #eeeeee;
    padding: 15px 0 15px 0;
}

.sitebar-menu-item.level-1:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sitebar-menu-item.level-2 .sitebar-menu-link {
    font-weight: 400;
    padding: 15px 0 0 20px;
    font-size: 0.9rem;
    position: relative;
}

.sitebar-menu-item.level-2 .sitebar-menu-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 6.5px;
    left: 5px;
    width: 4px;
    height: 4px;
    background: #333333;
}

.sitebar-menu-item.level-2 .sitebar-menu-link:hover::before {
    background: #FFBD1F;
}

.page-content img {
    max-width: 100%;
}

.page-content h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.page-content p,
.page-content a {
    margin-bottom: 10px;
}


.page-content ul {
    padding-left: 20px;
    list-style-type: square;
    margin-top: -5px;
}

.page-content li {
    padding-bottom: 10px;
}

.page-content h4 {
    margin: 10px 0;
}

.page-content h3+.get-price-cart-section {
    margin-top: 15px;
}

.page-content h3+button {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-content h3+p>button {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-content h2+.get-price-cart-section {
    margin-top: 15px;
}

.page-content ul.regions-list {
    display: flex;
    flex-wrap: wrap;
}

.page-content .regions-list li {
    margin-right: 24px;
}

dl {
    background: #f9f9f9;
    padding: 10px;
}

dt {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

dd {
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

table {
    width: 100%;
    max-width: 100%;
    min-width: 540px;
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 10px;
}


tr:nth-child(odd) {
    background-color: #f9f9f9;
}


td,
th {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}


blockquote {
    background-color: rgba(238, 238, 238, 0.4);
    font-size: 1rem;
    padding: 25px 30px 20px 45px;
    position: relative;
    border-left: 2px solid #FFBD1F;

}

blockquote>p {
    font-family: Arial, Helvetica, sans-serif !important;
    font-style: italic !important;
}




.page-content h3+ul,
.page-content h2+ul {
    margin-top: 10px;
}

@media screen and (max-width: 1200px) {
    .page-grid {
        grid-template-columns: auto;
        padding-bottom: 4rem;
    }

    .page-content {
        padding-bottom: 0;
    }

    .sitebar {
        grid-row: 2;
    }
}

@media screen and (max-width: 768px) {
    .page-content img {
        float: none !important;
        width: 70%;
        margin: 0 auto;
        display: block;
        padding: 10px 0 !important;
        height: auto !important;
    }
}


@media screen and (max-width: 540px) {
    .page-content img {
        width: 100%;

    }
}


/****************************************
Стили для блока вывод блога
****************************************/
.get-blog-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    row-gap: 30px;
}

.get-blog-section-cart h3 {
    margin: 5px 0 5px 0;
    transition: 0.3s;
    font-size: 1.1rem;
}

.get-blog-section-cart p,
.get-blog-section-cart span {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #666666;
}

.get-blog-section-cart-img::after {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    opacity: 0.25;
    background: black;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #eeeeee;
    z-index: 1;
    transition: 0.2s;
}


.get-blog-section-cart-img {
    width: 100%;
    height: 240px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.2s;
    overflow: hidden;
    text-align: center;
    min-height: 240px;
}

.get-blog-section-cart-img::after {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    opacity: 0.25;
    background: black;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #eeeeee;
    z-index: 1;
    transition: 0.2s;
}

.get-blog-section-cart-img img {
    width: 100%;
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
    min-height: 240px;
}

.get-blog-section-cart:hover .get-blog-section-cart-img {
    outline: 6px solid white;
    outline-offset: -6px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, .35);
}

.get-blog-section-cart:hover .get-blog-section-cart-img::after {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.7;
}

.get-blog-section-cart:hover .get-blog-section-cart-img::before {
    content: 'Прочитать статью';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 40%;
    height: 15%;
    font-weight: 700;
    color: white;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.2;

}

.get-blog-section-cart:hover h3 {
    color: #FFBD1F;
}

.get-blog-section-cart:hover p {
    color: #333333;
}

.get-block-begin {
    color: #eba600;
    font-size: 0.9rem;
    font-weight: 700;
}

.get-blog-section-cart:hover .get-block-begin {
    color: #FFBD1F;
}

@media screen and (max-width: 768px) {
    .get-blog-section {
        grid-template-columns: 1fr 1fr;
    }

    .get-blog-section-cart h3 {
        font-size: 1.2rem;
    }

    .get-blog-section-cart p {
        font-size: 1rem;
    }
}

@media screen and (max-width:540px) {
    .get-blog-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/****************************************
Стили для вывода страниц
****************************************/

.get-page-section {
    display: grid;
    row-gap: 30px;
}

.get-page-section>.get-blog-section-cart:hover .get-blog-section-cart-img::before {
    content: 'подробнее';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 40%;
    height: 15%;
    font-weight: 700;
    color: white;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.2;
}

.get-page-section>.get-blog-section-cart .get-blog-section-cart-img.h-150 {
    min-height: 150px !important;
    height: 150px !important;
}

.get-page-section .get-blog-section-cart-img.h-150>img {
    min-height: 150px !important;
}



/****************************************
Стили для блока почему выбирают нас
****************************************/

#block-why {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/bg-pre.webp');
    background-size: cover;
    padding: 5rem 0;
}

.block-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    text-align: center;
}

.block-why-content h3,
.block-why-content p {
    color: white;
}

.block-why-content img {
    width: 100%;
    max-width: 65px;
    margin: 30px auto 10px auto;
}

#block-why-top-h h2 {
    font-size: 2.3rem;
    margin-top: 0;
    color: #FFBD1F;
    position: relative;
    margin-top: -2px;
}



#block-why-top-h {
    position: relative;
    padding-left: 20px;
}

#block-why-top-h h2::after {
    content: none;
}

#block-why-top-h::before {
    content: '';
    width: 3px;
    height: calc(50%);
    display: block;
    position: absolute;
    left: 8px;
    top: 0;
    background: #FFBD1F
}

#block-why-top-h::after {
    content: '';
    width: 4px;
    height: calc(100% - 5px);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFBD1F;
}

#block-why-top-h p {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #d3d3d3;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .block-why-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 540px) {


    .block-why-content h3 {
        font-size: 1.1rem;
    }

    .block-why-content p {
        font-size: 0.85rem;
    }
}



/****************************************
Стили для блока с призывом
****************************************/

.call-back-yellow {
    background-color: #FFBD1F;
    outline: 1px dashed white;
    outline-offset: -10px;
    padding: 35px 55px;
    align-items: center;
    color: white;
    font-weight: 700;
    margin: 4rem auto;
    justify-content: space-between;
    display: flex;
}

.call-back-yellow p {
    color: white;
    font-size: 1.25rem;
    margin-right: 10px;
}

.call-back-yellow i {
    color: white;
    margin: 0 5px 0 0px;
    font-size: 1.3rem;
}

.call-back-yellow a {
    color: white;
    font-size: 1.25rem;
}

.call-back-yellow a:hover {
    text-decoration: underline;
}

.call-back-yellow>div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media screen and (max-width: 540px) {
    .call-back-yellow {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .call-back-yellow>div {
        justify-content: center;
        margin-bottom: 25px;
    }
}






/****************************************
Стили для footer
****************************************/

footer {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://www.zakaz-peska47.ru/img/kamennyy-ugol.jpg');
    background-position: center;
    background-size: cover;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer p {
    color: white;
}

.footer-dop-info {
    text-align: right;
}

.footer-dop-info span {
    position: relative;
    top: 10px;
    font-size: 0.75rem;
    color: #808080;
    text-align: right;
}


@media screen and (max-width:768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer p,
    footer a {
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .footer-dop-info {
        text-align: center;
        margin-top: 10px;
    }
}


/****************************************
Стили для вывода цен
****************************************/
.get-price-cart-section {
    gap: 20px !important;
    margin-bottom: 10px;
}

.price-cart {
    min-height: 100px;
}

.price-cart button {
    width: 100%;
    padding: 15px 0;
}

.price-cart i {
    color: white;
    margin-right: 5px;
}

.price-cart p {
    margin: 0;
    color: white !important;
    font-weight: 700;
}

.price-cart-price p {
    font-size: 1.9rem;
}

.price-cart-volume p {
    font-size: 0.9rem;
}

.price-cart-volume {
    text-align: center;
    padding: 10px;
    background-color: #333333;
}

.price-cart-price {
    background-position: center !important;
    background-size: cover !important;
    text-align: center;
    padding: 25px 0;
}

sup {
    color: white;
    font-size: 0.6rem;
}

/****************************************
Стили для сетки
****************************************/

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.d-grid {
    display: grid;
    min-width: 0;

}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.grid-col-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    row-gap: 20px
}

.grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.mt-3 {
    margin-top: 3rem;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
}

@media screen and (min-width: 1025px) {
    .desctop-none {
        display: none !important;
    }
}

@media screen and (max-width: 1025px) {
    .mobile-none {
        display: none !important;
    }

    .mt-3 {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .grid-col-2 {
        grid-template-columns: 1fr;
    }

    .grid-col-3 {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .grid-col-4 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }
}

@media screen and (max-width: 540px) {
    .grid-col-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 400px) {
    .grid-col-3 {
        grid-template-columns: 1fr;
        gap: 15px !important;
    }

    .grid-col-4 {
        grid-template-columns: 1fr;

    }
}