.header {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    padding: 5px 0px;
    background: #000;
    font-family: museosanscyrl-700;
    z-index: 99999;
    transition: 0.3s;
    box-shadow: 0px 0px 0px #00000000;
    height: 152px;
    transition: 300ms;
}

.header .container {
    height: 100%;
}

.header_menu {
    position: relative;
    height: 100%;
    width: 1000px;
    justify-content: center;
}

.product_list_box_items_tabs {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0px;
    transform: 300ms;
    position: absolute;
    left: 0;
    top: 20px;
    background: #094b17;
    z-index: 2;
}

.product_list_box_item {
    position: relative;
}

.tab {
    position: relative;
    cursor: pointer;
    background: #094b17;
}

.tab:hover .product_list_box_items_tabs {
    height: auto;
    padding: 9px 8px;
}

.product_list_box_items_tabs .product_list_box_item:hover {
    background: #185826;
}

.tab:hover {
    border-radius: 3px;
    box-shadow: -8px 28px 39px #a8d5b16b;
}

.product_list_box_items_tabs .product_list_box_item {
    width: 100%;
}

.header_menu__logo {
    position: absolute;
    /* top: 20px; */
    width: 125px;
    height: auto;
    transition: 0.3s;
}

.header_menu__logo:hover {
    filter: grayscale(1);
}

.header_menu_content_text {
    font-family: "PT Serif";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 138%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
    color: #ffffff;
    transition: 300ms;
    height: 30px;
}

.left {
    text-align: right;
    justify-content: flex-end;
}

.header.scrol .left {
    flex-direction: row;
}

.header.scrol .reight {
    flex-direction: row-reverse;
}

.reight {
    text-align: start;
}

.header_menu_linck {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.02em;
    transition: 300ms;
    color: #ffffff;
}

.header_menu_linck:hover {
    opacity: 0.5;
}

.header_menu_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: 300ms;
}

.header_menu_linck_box {
    display: flex;
    gap: 32px;
}

/*  */
.header.scrol {
    background: #073611;
    box-shadow: 0px 0px 10px #0005;
    height: 100px;
}

.header.scrol .header_menu__logo {
    position: static;
    height: auto;
    width: 100px;
    transition: 0.3s;
}

/* .header.scrol .header_menu_content_text {
  height: 0px;
  overflow: hidden;
} */

.header.scrol:hover {
    padding: 15px 0px;
    box-shadow: 0px 21px 30px #0000003b;
}

/*  */
.header_menu_zvod {
    position: relative;
}

.header_menu_zvods {
    background: #073611;
    position: absolute;
    top: 44px;
    left: -11px;
    width: 163px;
    overflow: hidden;
    height: 0px;
    padding: 0px 20px;
    transition: 300ms;
    text-align: center;
}

.header_menu_zvod a {
    margin: 20px 0px;
}

.header_menu_zvod:hover .header_menu_zvods {
    height: 80px;
}

.product_list {
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #094b17;
    transition: 300ms;
    gap: 20px;
    position: fixed;
    left: 0;
    top: 149px;
    padding: 0px 35px;
    justify-content: space-around;
    display: grid;
    /*  grid-template-columns: 36% 33% 16%;*/
    /*grid-template-columns: 30% 30% 15% 15%;*/
    /* grid-template-columns: 28% 30% 14% 20%; */
    grid-template-columns: 18% 24% 24% 12% 20%;
}

.header.scrol .product_list {
    top: 100px;
}

.product_list_box p {
    text-transform: uppercase;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-align: start;
}

.product_list_box {
    margin-top: 35px;
    /*  width: 123%;*/
    display: flex;
    flex-direction: column;
    /*    width: 100%;*/
    width: 90%;
}

.new_category_piva p {
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    color: #094b17;
    max-width: max-content;
    padding: 3px 10px;
    border-radius: 3px;
}

.product_list_box_items {
    display: flex;
    height: 350px;
    flex-direction: column;
    flex-wrap: wrap;
    /* flex-wrap: nowrap;  */
    row-gap: 20px;
    width: 100%;
    align-items: flex-start;
    margin-top: 30px;
    border-right: 1px solid #fff;
}

.product_list_box:last-child .product_list_box_items {
    border-right: 1px solid transparent;
}

.product_list_box_item {
    color: #fff;
    text-align: start;
    /*  width: 34%;*/
    width: 50%;
    transition: 300ms;
}

.product_list_box_item:hover:not(.product_list_box_item.tab) {
    opacity: 0.5;
}

.header_menu_product:hover .product_list {
    height: 470px;
}

/*  */
#menu__toggle {
    opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
    right: 0 !important;
}

.menu__btn {
    position: fixed;
    top: 48px;
    right: 48px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition-duration: 0.25s;
}

.menu__btn > span::before {
    content: "";
    top: -12px;
}

.menu__btn > span::after {
    content: "";
    top: 12px;
}

.menu__box {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 80px 20px;
    list-style: none;
    background-color: #000;
    box-shadow: 2px 2px 6px rgb(0 0 0 / 40%);
    transition-duration: 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.25s;
}

.menu__item:hover {
    background-color: #cfd8dc;
}

.hamburger-menu {
    display: none;
}

.midel {
    display: none;
}

.header_contacts {
    display: none;
}

.product_list_box:nth-child(2) {
    position: relative;
}

/*НОВЫЙ БЛОК*/

.product_list_box:nth-child(3)::after {
    content: "";
    border-right: 2px solid #fff;
    position: absolute;
    top: 20px;
    height: 85%;
    left: 0;
    width: 100%;
    z-index: -1;
}

@media screen and (max-width: 1720px) {
    .product_list {
        grid-template-columns: 15% 27% 24% 12% 20%;
    }
}

@media screen and (max-width: 1500px) {
    .product_list_box p {
        font-size: 16px;
    }

    .product_list_box_item {
        font-size: 14px;
    }

    .product_list {
        padding: 0px 10px;
        grid-template-columns: 12% 24% 22% 10% 20%;
    }
}

.body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: "Arial Black", "Impact", sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
}

/*Новые стили*/

.product_list {
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
}

.header_menu_product:hover .product_list {
    height: 500px;
    overflow-y: scroll;
}

.product_list::-webkit-scrollbar {
    width: 10px;
}

.product_list::-webkit-scrollbar-thumb {
    background: #2C180D;
}

.product_list::-webkit-scrollbar-button {
    display: none;
}

.product_list_box {
    width: 100%;
}

.product_list_box_items {
    height: 100vh;
}

.product_list_box_item {
    padding-left: 0;
    width: 100%;
}

/* ===== Всплываающее меню ===== */
.header .menu-icon.active:before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
}
.header .menu-icon.active span {
    -webkit-transform: scale(0) translate(0, -50%);
    -ms-transform: scale(0) translate(0, -50%);
    transform: scale(0) translate(0, -50%);
}
.header .menu-icon.active:after {
    bottom: 49%;
    -webkit-transform: rotate(45deg) translate(0, 50%);
    -ms-transform: rotate(45deg) translate(0, 50%);
    transform: rotate(45deg) translate(0, 50%);
}




.header .menu-body {
    position: fixed;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.header .burgerBlock1 {
    position: relative;
    background: #fff;
    padding: 50px 50px 50px 60px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.header .burgerBlock2__close {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    cursor: pointer;
    width: 20px;
}
.header .burgerBlock2__close img {
    width: 100%;
}

.header .burgerBlock1 .burgerBlock__item {
    text-align: left;
    margin-bottom: 30px;
}
.header .burgerBlock1 .burgerBlock__item p:nth-child(1) {
    font-size: 36px;
    font-weight: 600;
    color: #104f95;
}
.header .burgerBlock1 .burgerBlock__item p:nth-child(2) {
    color: #7f8389;
    margin-bottom: 15px;
    font-size: 12px;
}
.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn.active {
    color: #104f95;
    font-weight: 600;
    text-decoration: underline;
}
.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn {
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
}
.header .menu-body.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    background: #003e83bf;
}


.header .burgerBlock2 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    border-left: 1px solid rgba(0, 0, 0, .2);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
    position: relative;
}


.header .tabs__item {
    position: absolute;
    top: 50px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    background: #fff;
    transition: 0.3s;
}

.header .tabs__item.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}
.header .burgerBlock2__title {
    color: #104f95;
    font-size: 36px;
    text-align: center;
    margin-bottom: 90px;
}
.header .burgerBlock2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.header .burgerBlock2__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-preferred-size: 34%;
    flex-basis: 34%;
    margin-bottom: 100px;
    cursor: pointer;
    position: relative;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.header .burgerBlock2__name {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .burgerBlock2__logo {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.header .burgerBlock2__element:before {
    position: absolute;
    bottom: 30px;
    width: 100%;
    content: "";
    height: 5px;
}


.header .burgerBlock2__element--firstsite:before {
    background: #f4c312;
}
.header .burgerBlock2__element--mysite:before {
    background: #109c83;
}
.header .burgerBlock2__element--shopsite:before {
    background: #08b1f4;
}

.header .burgerBlock2__element--firstsite .burgerBlock2__name {
    color: #f4c312;
}
.header .burgerBlock2__element--promosite:before {
    background: #020202;
}
.header .burgerBlock2__element--gosweb:before {
    background: #8b97ff;
}
.header .burgerBlock2__element--1cbitrix:before {
    background: #c92433;
}

.header .burgerBlock2__desc {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    font-weight: 600;
    color: #104f95;
    margin-top: 30px;
}



.header .burgerBlock3 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
}


.slinky-theme-default {
    background: #fff;
}
.slinky-menu {
    text-align: left;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.js-menu {
    display: none;
    width: 100%;
    min-height: 100% !important;
}

.header .burgerBlock1 .burgerBlock4__item .link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn {
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
}

.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn:hover {
    color: #104f95;
}
img {
    border-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__logo {
    max-width: 70px;
    margin-bottom: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__logo, .header .burgerBlock2__wrapper--promotion .burgerBlock2__name {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header .burgerBlock2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__element:before {
    bottom: 46px;
}





.header .burgerBlock3 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
}

.header .burgerBlock2.show, .header .burgerBlock3.show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.header .burgerBlock2__close {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    cursor: pointer;
    width: 20px;
}
.header .burgerBlock2__close img {
    width: 100%;
}
.tabs__item__F {
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    left: 0;
    transition: 0.5s;
    position: absolute;
    top: 50px;
    z-index: 1;
    transform: scale(0);
    width: 100%;
}
.tabs__item__F.active {
    opacity: 2;
    z-index: 1;
    transform: scale(1);
}

.header .burger3Card__head {
    font-size: 36px;
    color: #104f95;
    text-align: center;
}



.header .contentText {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    width: auto;
    margin: 20px auto;
    width: 100%;
    padding: 0px 30px;
}
.header .contentText img.burgerBlock2__logo {
    width: 70px;
    flex-basis: 70px;
}
.header .contentText .burger3Card__subhead {
    font-size: 18px;
    color: #104f95;
    text-align: left;
    margin: 20px;
}

a.tabs__nav-btn__S {
    display: block;
    margin-bottom: 10px;
}


.header .burger3Card__subhead {
    font-size: 24px;
    color: #104f95;
    text-align: center;
    margin-bottom: 25px;
}
.header .burger3Card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header .burger3Card {
    -ms-flex-preferred-size: 45%;
    flex-basis: 40%;
    border: 1px solid transparent;
    border-radius: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding: 10px;
    min-width: 248px;
    cursor: pointer;
    margin: 5px;
    border: 3px solid #eee;
}
.header .burder3Card__img {
    max-width: 120px;
    left: -20px;
    position: relative;
}
.header .burger3Card__title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #000;
}
.header .burger3Card--green .burger3Card__title:before {
    position: absolute;
    content: '';
    height: 5px;
    width: 90%;
    background: #109c83;
    bottom: -8px;
    left: 5%;
}
.header .burger3Card__subtitle {
    font-size: 16px;
    margin-bottom: 2px;
    color: #000;
}
.header .burger3Card__hidden {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header .burger3Card__buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}
.header .burger3Card__price2 {
    font-size: 12px;
    text-align: left;
    color: #104f95;
    margin-bottom: 15px;
    text-align: center;
}
.header .burger3Card__buttons a {
    max-width: 115px;
    min-width: 115px;
    font-size: 14px;
    padding: 5px;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
}
.button--tariffs {
    min-width: 276px;
}
.header .burger3Card__buttons a {
    max-width: 115px;
    min-width: 115px;
    font-size: 14px;
    padding: 5px;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    margin: 0px 2px;
}
.button--white {
    background-color: #fff;
    color: #104f95;
    border: 1px solid #104f95;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header .burger3Card__title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.burgerBlock1{
    z-index: 2;
}

.burgerBlock2{
    z-index: 1;
}

.burgerBlock3{
    z-index: 0;
}

.burger3Card__wrapper.contentText{
    padding: 0px 20px ;
    text-align: left;

}


.burger3Card__wrapper.contentText .titleText{
    text-align: center;

}

.burger3Card__wrapper.contentText .priceList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    color: #000;
    padding: 30px 0px;
}

.buttonBlockMenu {
    width: 100%;
    padding: 0px 30px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.burger3Card__wrapper.contentText .priceList div.parentPL{
    text-align: left;
    padding: 20px;
}

div.parentPL div {
    margin: 5px 0px;
}

.menu__content {
    text-align: center;
    padding: 0px 20px;
}
p.menu-offer__info {
    font-family: 'museosanscyrl';
}
p.titleMenu {
    text-transform: uppercase;
    margin: 10px;
    font-size: 25px;
    color: #104f95;
}
.formMenuProd, .menuButtonProd, .menu__manager-text {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
}
.formMenuProd .menu__tel.tel {
    border: 0px;
    font-size: 20px;
    width: 95%;
    border-bottom: 1px solid #c5c5c5;
}

ul.listSpec {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0px 30px;
    color: #fff;
}

ul.listSpec li {
    width: 50%;
    padding: 0px 20px;
}

.menuButtonProd .block{
    width: 45%;
}
p.menu-offer__info.block {
    font-size: 12px;
    text-align: left;
}
form#form {
    padding: 0px 20px;
}

.menuBlockManager img {
    width: 70px;
    margin-right: 20px;
}

p.mini {
    font-size: 12px;
    color: #aaa;
}

p.managerMenu {
    font-size: 20px;
}
a.menu-offer__recall-link {
    font-size: 25px;
}