body{

    margin: 0;

    padding: 0;

    overflow-x: hidden;

    box-sizing: border-box;

    max-width: 100vw;

    background-color: #EAEEF5;

}

*{

    box-sizing: border-box;

    padding: 0;

    margin: 0;

}

::selection {

    color: #B4B0B9; /* Цвет текста */

    background: #130129; /* Цвет фона */

}

ul,li{

    list-style: none;

}

h1{
    font-size: 36px !important;
}
h2:not(.switcher){
    font-size: 24px !important;
}
h2.switcher{
    font-size: 24px;
    white-space: break-spaces !important;
    text-align: center;
    font-weight: 400;
    font-family: 'Roboto';
}
h3{
     font-size: 18px !important;
 }

a{

    text-decoration: none;

    cursor: pointer;

}

button{

    border: 0;

    cursor: pointer;

}

input,

textarea{

    padding: 8px 16px;

    border-radius: 10px;

    background-color: white;

    border: 0;

}

input::placeholder,

textarea::placeholder{

    font-family: Roboto;

    font-size: 16px;

}

:active,

:hover,

:focus,

input,

textarea{

    outline: 0 !important;

    outline-offset: 0 !important;

}

.input-border,

.textarea-border,

.custom-checkbox-border>span::before{

    border: 1px solid #000000 !important;

}

.ajax-form-input.required-error-empty{

    background-color: #f6afaf !important;

}

.ajax-form-checkbox.required-error-empty+span{

    color: #F32000 !important;

}

.ajax-form-checkbox.required-error-empty+span:before{

    background-color: #f6afaf !important;

}



/* POP-UPs */

.pop-up{

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    z-index: 100;

}

.pop-up.active{

    display: flex;

}

.pop-up-wrapper{

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    width: 100%;

    height: 100%;

}

.pop-up-fade{

    position: absolute;

    width: 100%;

    height: 100%;

    background-color: gray;

    opacity: .5;

    z-index: 99;

}

.pop-up-items{

    padding: 64px;

    background-color: white;

    border-top-right-radius: 80px;

    z-index: 101;

}

.pop-up-items-item-logo{

    display: flex;

    justify-content: center;

}

.pop-up-items-item-logo img{

    opacity: .5;

}

.pop-up-items-item-title{

    display: flex;

    justify-content: center;

}

.pop-up-items-item-subtitle{

    margin: 16px 0 8px 0;

    display: flex;

    justify-content: center;

}

.pop-up-items-item-form{

    display: flex;

    flex-flow: column;

}

.pop-up-items-item-form p{

    margin: 32px 0 8px 0;

}

.pop-up-items-item-form button{

    margin: 32px 0 16px 0;

    width: fit-content;

    justify-self: center;

    align-self: center;

}

.pop-up-items-item-form{

    max-width: 335px;

}





/* ХЛЕБНЫЕ КРОШКИ */

.section-breadcrumbs{

    padding-left: 150px;

    width: 100%;

}

.section-breadcrumbs-breadcrumbs {
	display: flex;
	margin-bottom: 64px;
	gap: 8px;
}

.section-breadcrumbs-breadcrumbs p {
	color: #B4B0B9;
}



/* CHECKBOX */

/* для элемента input c type="checkbox" */

.custom-checkbox>input {

    position: absolute;

    z-index: -1;

    opacity: 0;

}



/* для элемента label, связанного с .custom-checkbox */

.custom-checkbox>span {

    display: inline-flex;

    user-select: none;

}



/* создание в label псевдоэлемента before со следующими стилями */

.custom-checkbox>span::before {

    content: '';

    display: inline-block;

    width: 14px;

    height: 14px;

    flex-shrink: 0;

    flex-grow: 0;

    border: 0;

    border-radius: 3px;

    margin-right: 3px;

    background-color: white;

    background-repeat: no-repeat;

    background-position: center center;

    background-size: contain;

    cursor: pointer;

}



/* стили при наведении курсора на checkbox */

.custom-checkbox>input+span:hover::before {

}



/* стили при наведении курсора на checkbox, когда не активен и не выбран */

.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {

}



/* стили для активного чекбокса (при нажатии на него) */

.custom-checkbox>input:not(:disabled):active+span::before {

}



/* стили для чекбокса, находящегося в фокусе */

.custom-checkbox>input:focus+span::before {

}



/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */

.custom-checkbox>input:focus:not(:checked)+span::before {

}



/* стили для чекбокса, находящегося в состоянии checked */

.custom-checkbox>input:checked+span::before {

    background-image: url("/assets/images/svg/ico-check.svg");

}



/* стили для чекбокса, находящегося в состоянии disabled */

.custom-checkbox>input:disabled+span::before {

}





/* FONTS */

@font-face {

    font-family: Inter;

    src: url(/assets/fonts/Inter-Bold.ttf);

    font-display: swap;

}

@font-face {

    font-family: Roboto;

    src: url(/assets/fonts/Roboto-Regular.ttf);
    
    font-display: swap;


}







/* TEXT */

.font-roboto{

    font-family: Roboto;

    font-weight: normal;

}

.font-inter{

    font-family: Inter;

    font-weight: bold;

}

.font-weight-bold{

    font-weight: bold !important;

}

.font-weight-normal{

    font-weight: normal !important;

}

.txt-12{

    font-style: normal;

    font-size: 12px;

}

.txt-14{

    font-style: normal;

    font-size: 14px;

}

.txt-16{

    font-style: normal;

    font-size: 16px;

}

.txt-18{

    font-style: normal;

    font-size: 18px;

}

.txt-24{

    font-style: normal;

    font-size: 18px;

}

.txt-30{

    font-style: normal;

    font-size: 30px;

}

.txt-36{

    font-style: normal;

    font-size: 36px;

}

.txt-40{

    font-style: normal;

    font-size: 40px;

}



.col-black{

    color: #130129;

}

.col-red{

    color: #F32000;

}

.col-gray{

    color: #B4B0B9;

}

.col-white{

    color: #ffffff;

}



.btn-black-to-red-transparent{

    padding: 10px 20px;

    background-color: transparent;

    color: #130129;

    border-radius: 14px;

    border: 1px solid #130129;

}

.btn-red-to-white-transparent,

.btn-red-to-black-transparent{

    padding: 10px 20px;

    background-color: transparent;

    color: #F32000;

    border-radius: 14px;

    border: 1px solid #F32000;

}

.btn-white-to-red-transparent{

    padding: 10px 20px;

    background-color: transparent;

    color: #ffffff;

    border-radius: 14px;

    border: 1px solid #ffffff;

}

 .btn-red{

    padding: 10px 20px;

    background-color: #F32000;

    color: #ffffff;

    border-radius: 14px;

}

.btn-white{

    padding: 10px 20px;

    background-color: white;

    color: #F32000;

    border-radius: 14px;

}



.txt-capitalize:first-letter {
    text-transform: capitalize;
}



.shadow-16{

    box-shadow: 6px 6px 16px rgba(19,1,41,0.1);

}

.shadow-30{

     box-shadow: 6px 6px 30px rgba(19,1,41,0.1);

 }

.shadow-20{

    box-shadow: 10px 10px 20px rgba(19,1,41,0.2);

}







/* ICO */

.ico{

    position: relative;

}

.ico:before{

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    background-repeat: no-repeat;

    background-position: left;

    background-size: contain;

}

.ico-16:before{

    width: 16px;

    height: 16px;

}

.ico-20:before{

    width: 25px;

    height: 25px;
    margin-left: 3px;

}

.ico-24:before{

    width: 24px;

    height: 24px;

}

.ico-shesterni-red:before{

    background-image: url("/assets/images/svg/ico-shesterni-red.svg");

}

.ico-shesterni-black:before{

    background-image: url("/assets/images/svg/ico-shesterni-black.svg");

}

.ico-addr-location:before{

    background-image: url("/assets/images/svg/ico-addr-location.svg");

}

.ico-addr-phone:before{

    background-image: url("/assets/images/svg/ico-addr-phone.svg");

}

.ico-addr-time:before{

    background-image: url("/assets/images/svg/ico-addr-time.svg");

}

.ico-addr-email:before{

    background-image: url("/assets/images/svg/ico-addr-email.svg");

}





/* BURGER */

.burger {

    display: none;

    cursor: pointer;

    align-self: center;

    z-index: 1001;

}



.bar1, .bar2, .bar3 {

    width: 35px;

    height: 5px;

    background-color: #333;

    margin: 6px 0;

    transition: 0.4s;

}

.active .bar1 {

    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;

    transform: rotate(-45deg) translate(-9px, 6px) ;

}

.active .bar2 {

    opacity: 0;

}

.active .bar3 {

    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;

    transform: rotate(45deg) translate(-8px, -8px) ;

}





/* BLOCKS */

.content{

    display: flex;

    flex-flow: column;

}

.content-center{

    justify-content: center;

    align-items: center;

}

.wrapper-center{

    width: 100%;

    max-width: 1400px;

}

.wrapper-full{

    width: 100%;

    max-width: 100%;

}

.align-center{

    display: flex;

    align-items: center;

}

.content{

    width: 100%;

}

main{

    width: 100%;

    overflow: hidden;

    padding-top: 170px;

}





/* HEADER */

header{

    height: 170px;

    position: fixed;

    background-color: transparent;

    z-index: 999;

}

header.scrolled{

    height: 100px;

    background-color: white;

 }

header .wrapper-center{

    display: flex;

    height: 170px;

}

.header-logo-wrapper{

    max-width: 100px;

}

.header-menu-wrapper{

    width: 100%;

}

.header-menu {
	display: flex;
	width: 100%;
	max-width: 800px;
	place-content: space-between;
	margin: 0 10px;
	z-index: 99;
	gap: 20px;
}

.header-contacts-tel-wrapper{

    width: max-content;

 }

.header-contacts-callback-btn-wrapper{

    width: max-content;

    margin: 0 0 0 32px;

}

.menu-item-with-inner{

    position: relative;

}

.menu-inner{

    width: max-content;

    max-height: 0;

    overflow-y: hidden;

    position: absolute;

    background-color: white;

    left: -10px;

}

.menu-item-inner{

    padding: 10px 10px 10px 10px;

}

.menu-item-with-inner:after{

    content: url("/assets/images/svg/ico-menu-inner.svg");

    position: absolute;

    padding: 0 10px;

    top: 0;

    left: 100%;

}

.desc {
    padding: 2px;
    font-size: 14px;
    line-height: 1.6;
}

.desc li {
    list-style: disc;
    margin-left: 10px;
    font-size: 15px;
    padding-bottom: 10px;
}


footer{

    background-color: #130129;

}

.footer-wrapper{

    display: flex;

    place-content: space-between;

    align-items: flex-start;

    padding: 130px 0 40px 0;

}

.footer-menu-item{

    margin: 0 0 16px 0;

}

.footer-cities-list-item{

    margin: 0 0 16px 0;

}

.footer-contacts-wrapper{

    display: flex;

    flex-flow: column;

}

.footer-contacts-callback-btn-wrapper{

    margin: 0 0 32px 0;

}

.footer-contacts-tel-wrapper{

    display: flex;

    flex-flow: column;

}

.footer-contacts-tel-wrapper a{

    display: flex;

    margin: 0 0 16px 0;

}

.footer-contacts-tel-wrapper a p{

    margin: 0 0 0 16px;

}

.footer-wrapper-nne{

    text-align: center;

    padding: 0 0 32px 0;

}











/* HOVERS */



header,

.menu-item,

.menu-item a,

.menu-item-description,

.header-contacts-tel-wrapper a,

.btn-black-to-red-transparent,

.btn-red-to-white-transparent,

.btn-white-to-red-transparent,

.btn-red-to-black-transparent,

.btn-red,

.btn-white,

.custom-checkbox>input+span::before,

.menu-inner,

.menu-item-with-inner:after,

input[type="text"],

textarea,

.custom-checkbox>input+span::before,

.footer a{

    transition-duration: .3s;

}

.btn-black-to-red-transparent:hover,

.btn-white-to-red-transparent:hover{

    color: #F32000;

    border-color: #F32000;

}

.btn-red-to-white-transparent:hover{

    color: #ffffff;

    border-color: #ffffff;

}

.btn-red-to-black-transparent:hover{

    color: #130129;

    border-color: #130129;

}

.btn-red:hover{

    box-shadow: 6px 6px 24px rgba(19,1,41,0.2);

    color: #F32000;

    background-color: #ffffff;

}

.btn-white:hover{

    box-shadow: 6px 6px 24px rgba(19,1,41,0.2);

    background-color: #F32000;

    color: #ffffff;

}



.menu-item a:hover{

    cursor: pointer;

}



.header-menu .menu-item a:hover{

    color: #F32000;

    text-shadow: 3px 3px 6px rgba(19,1,41,0.3);

}



.header-contacts-tel-wrapper a:hover{

    color: #130129;

    text-shadow: 3px 3px 6px rgba(19,1,41,0.3);

}



.menu-item-with-inner:hover .menu-inner{

        max-height: 1000px;
    display: grid
;
    grid-template-columns: 1fr 1fr;

}

.menu-item-with-inner:hover:after{

    transform-origin: center 60%;

    transform: rotate(180deg);

}

input[type="text"]:hover,

textarea:hover,

.custom-checkbox>input+span:hover::before{

    box-shadow: inset 0 0 5px rgba(19,1,41,0.2);

}

.footer a:hover{
    color: #F32000;
}






@media (max-width: 1400px){



}



@media (max-width: 900px) {

    .header-menu{

        flex-flow: column;

    }

    .wrapper-center {
        width: 95%;
    }

    header .wrapper-center{

        place-content: space-between;
        width: 95%;

    }

.header-menu-wrapper.active {
	display: flex;
	overflow-x: scroll;
}

.header-menu-wrapper {
	align-items: flex-start;
	display: none;
	position: fixed;
	background-color: white;
	z-index: 1000;
	width: 300px;
	height: 100vh;
	right: 0;
	top: 0;
	padding: 50px 16px 16px 16px;
}
    header.scrolled {
        height: 150px;
    }

    .footer-wrapper{

        flex-flow: column;

        padding: 32px;

    }

    .header-contacts-callback-btn-wrapper{

        display: none;

    }

.burger {
	display: inline-block;
	position: fixed;
	top: 1%;
	right: 5%;
}

    .menu-inner{

        position: unset !important;

    }

.menu-item-with-inner::after {
	position: absolute;
	top: 0;
	left: 50%;
}
    .menu-item-inner{

        padding: 0 0 0 16px;

    }

    .section-7 .custom-checkbox {
        padding-top: 30px;
    }

}

main p a {
    color: #F32000;
}

main p a:hover {
    text-decoration: underline;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.catalog_list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin-bottom: 64px;
}

.catalog_item {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
    transition: all 0.6s ease;
    border-radius: 4px;
}

.catalog_item:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.catalog_item:hover span {
	color: #F32000;
}

.catalog_item img {
	max-width: 219px;
	width: 100%;
}

.catalog_item-text {
	padding: 20px;
	width: 100%;
}

.catalog_item-text span {
    font-family: Inter;
	color: #130129;
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
}

.catalog_item-text p {
	font-family: Inter;
	color: #130129;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
}

.main__catalog {
	background: #DAE0EA;
	padding-top: 100px;
}

.main__catalog  .section-0-item-right {
	background: #fff;
    padding-bottom: 0;
}

.main__catalog  .section-0-item-left {
	background: #fff;
}

.main__catalog .section-0 {
	position: relative;
	display: flex;
	background-color: #fff;
	margin-top: 64px;
}

.main__catalog .section-0-item-left-img {
	height: 100%;
	display: flex;
}
.section-breadcrumbs {
	margin-top: 64px;
}

.catalog-header header {
	height: 100px;
    background-color: #DAE0EA;
}

.main__catalog-info {
	background: #fff;
	margin-bottom: 64px;
	width: 100%;
}

.search-container {
	max-width: 940px;
	margin: 0 auto 64px auto;
	width: 100%;
}   

.search-form {
    width: 100%;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	transition: border-color 0.3s ease;
}


.search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 16px;
	background: transparent;
	border-radius: 25px;
	padding: 17px 16px;
}

.search-input::placeholder {
    color: #999;
    font-size: 14px;
}

.search-button {
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    background-color: #fff;
}

.search-button:hover {
    background: #0056b3;
}

.search-button svg {
    color: white;
}

.search-input:hover {
	box-shadow: none !important;
}

.catalog__tables {
	background-color: #fff;
	width: 100%;
    padding-top: 128px !important;
}

.catalog__tables .section-1-items-item tr:first-child > th {
	background-color: #EAEEF5;
	border: 3px solid white !important;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: white;
	border-bottom: unset !important;
}

.section-1-items-item table tbody > tr:not(:first-child) th[colspan]:not([colspan="1"]) {
    background-color: #F3F5F9;
    border: 3px solid white !important;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: white;
    border-bottom: unset !important;
}

.catalog__tables .section-1-items-item tr > td{
	border-bottom: 1px solid #EAEEF5 !important;
}

.catalog__tables .section-1-items-item tr > th{
	border-bottom: 1px solid #EAEEF5 !important;
}

.catalog__tables .section-1-items-item table p {
    font-family: Roboto;
    padding: 0;
}

.catalog__tables .section-1-items-item tr > th {
	padding: 16px;
}

.catalog__tables .section-1-items-item {
	width: 100% !important;
	max-width: none !important;
	margin-top: 64px;
}

.catalog__tables .section-1-items-item:first-child {
    margin-top: 0;
}

.catalog__tables .section-1-items-item >  table {
    width: 100% !important;
    max-width: none !important;
}

.catalog__tables .section-1-items-item > div >  table {
    width: 100% !important;
    max-width: none !important;
}

.table-product-name {
    color: #130129;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 32px;
}

.table-product-name a {
    color: #130129;
}

.main__catalog .section-0 {
	padding-left: 0 !important;
}

.catalog__tables .section-1-items-item table {
	width: 100% !important;
}

.catalog__tables .two-tables {
    display: flex;
    flex-direction: column;
    gap: 64px;
}



@media(max-width:1000px) {
    .catalog_list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:700px) {
    .catalog_list {
        grid-template-columns: repeat(2, 1fr);
        width: 100vw;
    }
    .menu-item-with-inner:hover .menu-inner {
        grid-template-columns: 1fr !important;
    }

}

@media(max-width:1000px) {
    .catalog__tables .section-1-items-item {
	overflow-x: scroll;
}
}

@media(max-width:500px) {
    .catalog_list {
        display: flex;
        flex-direction: column;
    }
}