@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --white: #ffffff;
    /*--blue: #0d6efd;*/
    /* --blue: #134088; */
    --blue: #0a3f5a;
    --blue-hover:#11a9b7;
    /*--red: #dc3545;*/
    --red: #FF0000;
    --colorIcon: #134088;
    --border-color: lightgrey;
    --radius-block: .3em;
    --color-co: #0b3f5a;
}
*{
    font-family: 'Roboto', sans-serif;
    /* box-sizing: border-box; */
}
body { 
		-ms-user-select: none; 
		-moz-user-select: none; 
		-webkit-user-select: none; 
		user-select: none; 
}

input[type="text"], textarea {
    outline: none;
    box-shadow:none !important;
    border:1px solid #ccc !important;
}
header{
    background:var(--white);
}
.search{
    width: min(100%, 60%);
}
#search{
    background: #fafafa;
}
 /* menu */
.menu{
    background:var(--blue);
}
.menu .nav-item.level-1:hover{
    /* background:#0e5dd0; */
    background:var(--blue-hover);
}
.menu .level-1>.sub-menu{
    background: #efefef;
    /* width:200px; */
    width:auto;
}
.menu .level-1>.sub-menu>li a{
    color:black;
    padding: 10px;
    text-decoration:none;
    display: block;
}
.menu .level-2>.sub-menu{
    margin-left: 100%;
    margin-top: -44px;
    background: #efefef;
    /* width: 200px; */
    width:100%;
}
.menu .nav-item.active>a{
    color:var(--white) !important;
}
.menu .nav-item.active:not(.sub-menu){
    /* background:#0e5dd0; */
    background:var(--blue-hover);
}
.menu .level-1>a{
    color:var(--white);
    text-decoration:none;
    padding: 10px 20px;
    display: block;
}
.nav .nav-item:hover>.sub-menu{
    display:flex !important;
    flex-direction: column-reverse;
}
.sub-menu{
    display:none;
    position:absolute;
    background:var(--white);
    z-index:10;
    list-style:none;
    margin:0;
    padding:0;
}
.sub-menu a{
    color:var(--blue);
}

/* advanatges home page */

.advantages--info {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 2rem 0;
}

.advantages--info .item--advantages {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-block);
    padding: 1rem;
    align-items: center;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 50px 1fr;
}

.advantages--info .item--advantages img {
    width: 60px;
    aspect-ratio: 1;
}

.advantages--info .item--advantages svg {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    fill: var(--colorIcon);
}

.advantages--info .item--advantages p {
    font: bold 15px/1.5 sans-serif;
    /* text-align: center; */
    margin: 0;
    color: var(--color-co);
}

/* раздел карты */

.maps--block {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: 1fr 3fr;
}

.maps--block .address--maps {
	width: min(100%, 350px);
	margin-left: auto;
	grid-gap: .5rem;
	display: grid;
}

.maps--block iframe {
    display: block;
    height: max(300px, 100%);
    width: 100%;
    aspect-ratio: 16/9;
}

.address--maps .item-address-block {
	border: 1px solid var(--border-color);
	border-radius: var(--radius-block);
	padding: 1rem;
}

.item-address-block > * {
    margin: 0;
    padding: 0;
    font: 16px/1.5 sans-serif;
}

.item-address-block .title--address {
    font: bold 22px/1.5 sans-serif;
    margin-bottom: 1rem;
}

.item-address-block .connect--address {
    display: block;
}

.brands--list {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(4,1fr)
}

.description-manufacture {
    display: grid !important;
    grid-gap: 1rem;
    grid-template-columns: 1fr 3fr;
    margin-bottom: 2rem;
}

.description-manufacture img {
    width: min(100%, 300px);
    margin: auto;
}

.description-manufacture .text-block {
    padding: 1rem;
}

.brand-item {}

.brand-item > a {
    display: block;
    width: 100%;
}

.brand-item img {
	display: block;
	margin: auto;
	width: min(100%, 200px);
	aspect-ratio: 16/9;
	object-fit: contain;
}

.brand-item a.brand-title {
    text-align: center;
    font: bold 16px sans-serif;
    text-decoration: none;
    color: lightgrey;
    margin: 1rem 0;
}

.specifications {
    padding: 1rem;
}

.specifications ul {
    width: calc((100% / 2) - 1rem);
}

.dots {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dots li {
    clear:both;
}

.specifications li:not(:last-child) {
    margin-bottom: 1rem;
}

.dots li > span:first-child {
    float: left;
    padding: 0 .4em 0 0;
    margin: 0;
}

.dots li > span:last-child {
    float: right;
    padding: 0 0 0 .4em;
    margin: 0;
}

.specifications a {}

.dots li:after {
    content: "";
    display: block;
    overflow: hidden;
    height: 1em;
    border-bottom: 1px dotted;
}

/* Главный слайдер */

.home-slider img{
    object-fit: cover;
    display: block;
    width: 100%;
}
/* карусель производителей на главной странице */

.brandSwiper img {
    width: min(100%, 150px);
    display: block;
    margin: auto;
    aspect-ratio: 16/9;
    object-fit: contain;
    /*filter: grayscale(1);*/
    transition: all .3s linear;
}

.brandSwiper img:hover,
.brandSwiper img:focus {
    filter: grayscale(0);
}

/* catalog menu */

.nav-catalog, .nav-catalog ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-catalog .sub-menu-catalog{
    display:none;
    transition: box-shadow 0.3s;
}

.nav-catalog li{
    padding: 12px 10px;
    min-height:45px;
    border:none;
}

.nav-catalog a{
    color:black;
    font-size: 14px;
    text-decoration: none;
    width:100%;
    display:flex;
}

@media(min-width:1024px){
    .nav-item-catalog:not(.level-2):hover>.sub-menu-catalog{
        animation: fadeInFromNone 0.3s ease-out;
        display:flex !important;
        margin-left: 95%;
        z-index: 10;
        background:var(--white);
        top: -1px;
        position: absolute;
        width: 850px;
        -webkit-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
        -moz-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
        box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
    }  
    @keyframes fadeInFromNone {
        0% {
            display: none;
            opacity: 0;
        }
    
        1% {
            opacity: 0;
        }
    
        100% {
            opacity: 1;
        }
    }
    .nav-catalog .level-1>.sub-menu-catalog>li{
        width:33%;
    }
    .nav-catalog .level-3>a{
        font-size:12px;
    }
    .nav-catalog .level-3>a::before{
        content:"- ";
    }
}

.category-icon{
    /* width:24px; */
    width:35px;
    margin-right: 0.7rem;
}
.nav-catalog .nav-item-catalog>a span{
    display:flex;
    align-items:flex-start;
}

.list-group-item.active{
    background-color: transparent !important;
    border-color: #dee2e6 !important;
}
.nav-item-catalog.active>a span{
    font-weight:bold;
}

/* catalog */ 
.products{
    display:flex;
    flex-wrap:wrap;
    grid-gap:1%;
    row-gap:10px;
}
.category_product{
    width: 24%;
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.2s ease-in-out;
}
.category_product:hover{
    transform:scale(1.03);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.category_product .product-title{
    /* font-size: 1.5rem; */
    font-size: 16px;
    text-decoration:none;
    color:#343434;
}
.category_product .product-title a{
    text-decoration:none;
    color:#343434;
}
.category_product img{
    
}
.product-more{
    background: #f8f8f8;
    color: #343434;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 9px;
    transition:0.3s ease-in-out;
    border-width: 0px 1px 1px 1px;
    border-color: #d9d9d9;
    border-style: solid;
}
.category_product:hover .product-more{
    background:var(--red);
    color: var(--white);
}
.category_product .card-img-top{
    /* height: 257px; */
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.page-content{
    width:100%;
}

/* footer */
footer{
    background-color: var(--blue);
    /* background-image: linear-gradient(0deg,#a6a6a6 -49.79%,hsla(0,0%,100%,0)); */
    color:var(--white);
}
footer a{
    color:var(--white);
    text-decoration:none;
}

.offer-footer-col {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 0 2rem;
}

.offer-copyright {
    text-align: center;
    padding: 0 0 3rem;
}

footer p {
    margin-bottom: 0;
}

.offer-footer-col .footer-col {
}

.offer-footer-col .footer-col a {
    display: block;
    width: fit-content;
    line-height: 1.5;
}

.title--footer-col {
    font: bold 18px sans-serif;
}

.disable-link {
    pointer-events: none;
}

.contact-footer-block a {
    display: grid !important;
    grid-gap: .5em;
    grid-template-columns: 20px 1fr;
    font: bold 18px sans-serif;
}

.contact-footer-block a > svg {
    margin-top: .25em;
}
.caretRotate{
    transform: rotate(180deg);
}

/* social footer block */

.offer-social {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.offer-social::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 1);
	margin-top: -1px;
}

.offer-social ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline-flex;
	display: -webkit-inline-flex;
	grid-gap: 1rem;
	background: transparent;
	padding: 0 2rem;
	position: relative;
	text-align: center;
}

.offer-social li {
	display: block;
    width: 40px;
    aspect-ratio: 1;
    border: 1px solid;
    border-radius: 1.5em;
    overflow: hidden;
    background: #343434;
}

.offer-social .item--social {
    display: flex;
    width: 100%;
    height: 100%;
    transition: all .3s ease-out;
}

.offer-social .item--social.vk:hover,
.offer-social .item--social.vk:focus {
    background: rgb(102, 149, 189);
}

.offer-social .item--social.tg:hover,
.offer-social .item--social.tg:focus {
    background: rgb(42, 161, 218);
}

.offer-social .item--social.yt:hover,
.offer-social .item--social.yt:focus {
    background: rgb(230, 33, 23);
}

.offer-social .item--social.vb:hover,
.offer-social .item--social.vb:focus {
    background: rgb(123, 81, 158);
}

.offer-social .item--social.wt:hover,
.offer-social .item--social.wt:focus {
    background: rgb(102, 188, 84);
}

.offer-social .item--social > span {
	background-color: #ffffff;
	display: block;
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	width: 16px;
	height: 16px;
	margin: auto;
}

.offer-social .vk > span {
    -webkit-mask-image: url(/images/social/vk.svg);
}

.offer-social .tg > span {
    -webkit-mask-image: url(/images/social/telegram.svg);
}

.offer-social .yt > span {
    -webkit-mask-image: url(/images/social/YouTube.svg);
}

.offer-social .vb > span{
    -webkit-mask-image: url(/images/social/viber.svg);
}

.offer-social .wt > span {
    -webkit-mask-image: url(/images/social/whatsapp.svg);
}

/* карточка товаров - детальная страница */

.des-card-product {
    display: grid !important;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin-bottom: 3rem;
}

.des-card-product > * {}

.des-card-product > img {
	display: block;
	margin: 0 auto;
	aspect-ratio: 1;
	width: min(100%, 330px);
	border-radius: .5em;
	overflow: hidden;
	object-fit: cover;
}

.des-card-product .des-product > *:not(:last-child){
    margin-bottom: 1rem;
}

.des-card-product .des-product .cost {
    font: bold 20px/1.5 sans-serif;
}

.des-card-product .des-product .brand {}

.des-card-product .des-product button {
    width: min(100%, 300px);
    display: block;
}

.des-card-product .des-product .des-cost-warning {
    display: grid;
    grid-gap: .5rem;
    grid-template-columns: 20px 1fr;
    align-items: center;
    width: min(100%, 300px);
}

.des-card-product .des-product .des-cost-warning svg {
    width: 20px;
    height: 20px;
}

.des-card-product .des-product .des-cost-warning span {
    color: grey;
    font-size: 13px;
}

.product-detail_gallery .swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.product-detail_gallery .swiper-slide {
    background-size: cover;
    background-position: center;
}

.product-gallery-swiper-2 {
    height: 80%;
    width: 100%;
    margin-bottom: 10px;
}

.product-gallery-swiper-1 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.product-gallery-swiper-1 .swiper-slide {
    width: 25%;
    height: 25%;
    opacity: 0.4;
}

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

.product-detail_gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-swiper-2 .swiper-slide img{
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    max-height: 100%;
    object-fit: cover;
}

.num--list ol {
    list-style: none;
    counter-reset: li;
}

.num--list li > span {
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
}

.num--list li:not(:last-child),
.num--list li > span {
    margin-bottom: 1rem;
}

.num--list li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    font-weight: bold;
}

.num--list ol:first-child > li:before {
    font-size: 18px;
}

.wrapper-delivery {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.wrapper-delivery .title--delivery {
    text-align: center;
    font-weight: bold;
}

.wrapper-delivery img {
    display: block;
    margin: auto;
    aspect-ratio: 16/9;
    width: min(100%, 150px);
}

.wrapper-delivery p {
    text-align: center;
}


#order-product,
#order-phone {
    width: clamp(300px, 100%, 450px);   
}

.fancybox__content form button[type="submit"] {
    width: -webkit-fill-available;   
}

.bc-separator{
    margin:0px 5px;
}
.breadcrumbs a:hover{
    color:var(--blue);
}
.breadcrumbs a{
    text-decoration:none;
    color:#acacac;
}

.breadcrumb-item.active{
    color:#acacac !important;
}

.another-questions{
    background:#134088;
    color:var(--white);
}
.another-questions button{
    border-color:white;
}

.logo-footer > span {
	background-color: #ffffff;
	display: block;
	-webkit-mask-size: cover;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image: url('/images/logo.png');
	width: 100px;
	height: 40px;
	margin: auto;
}
/* акции */
.events{
    display:flex;
    grid-gap: 2%;
    flex-wrap: wrap;
}
.events-item{
    width: 23%;
    height: 250px !important;
    text-align: center;
    justify-content: space-between;
    color:white;
    text-decoration:none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom:25px;
}
.event-info{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height: 100%;
}
.event-time{
   background: var(--blue-hover);
    padding: 3px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 6px;
}
.event-detail-image{
    max-width:100%;
}
.price-list{
    /* background: #dc3545; */
}

.jGrowl.top-right {
    z-index: 99999;
}

.subcategory-items{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1%;
}
.subcategory-item{
    width: 19%;
    display: flex;
    align-items: center;
    border: 1px solid #bfbfbf99;
    padding: 10px 15px;
    text-decoration: none;
    color: #343434;
    grid-gap: 6px;
    margin-bottom: 10px;
    transition:0.4s ease-in-out;
}
.subcategory-item:hover{
    background:var(--blue);
    color:var(--white);
}

.color-about-co p {
    color: var(--color-co);
}

.col-max-4 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.col-max-4 .subcategory-item {
    width: 100%;
}

/* для экранов меньше 600px */

@media(max-width: 600px) {
    /* header */
    header{
        background: #f3f3f3;
        border-bottom: 1px solid #3434341c;
    }
    header .logo img{
        height: 38px;
        width: 76px;
    }
    .burger-menu{
        border: none;
        width: 37px;
        height: 37px;
        background:none;
    }
    .mobile-menu{
        width:100%;
        display:none;
    }
    .nav-mobile{
        margin-bottom: 0;
    }
    .nav-mobile .sub-menu-mobile{
        position:relative;
        margin-left:20px;
        display:none;
    }
    .nav-mobile .nav-item a{
        color:black;
        text-decoration:none;
    }
    .nav-mobile svg{
        width:15px;
        height:15px;
    }
    .nav-mobile .nav-item.active>a span{
        font-weight:bold;
    }
    .nav-mobile .parent-link{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    .level-2{
        padding-left:20px;
    }
    .level-3{
        padding-left:30px;
    }
    .level-4{
        padding-left:40px;
    }
    /* map */
    .maps--block {
        grid-template-columns: 1fr;
    }
    
    .maps--block .address--maps {
        margin: auto;
    }
    
    .maps--block iframe {
        height: auto;
    }
    
    .brands--list {
        grid-template-columns: repeat(2, 1fr)
    }
    
    .offer-footer-col {
        grid-template-columns: 1fr
    }
    
    .description-manufacture {
        grid-template-columns: 1fr;
    }
    
    .footer-col.contact-footer-block {
       /* grid-column: 1/ span2; */
    }
    
    /* catalog menu */
    .opened{
        display:block !important;
    }
    .nav-catalog li {
        height:auto;
        min-height: 45px;
    }
    /* .nav-item-catalog.active a{
        color:var(--white);
    } */
    .nav-item-catalog.parent li{
        background: transparent;
        border: none;
        margin-top: 5px;
    }
    /* catalog */
    .products{
        margin-top: 10px !important;
    }
    .category_product{
        width: 49%;
    }
    .product-more{
        background:var(--red);
        color: var(--white);
    }
    
    .des-card-product {
        grid-template-columns: 1fr
    }
    
    .des-card-product .des-product > * {
        margin: auto;
    }
    
    .des-card-product .des-product > *:not(.des-cost-warning) {
        text-align: center;
    }
    
    .product-detail_gallery{
        max-width: 340px;
        margin: 0 auto;
    }
    .nav-item-catalog.level-2{
        padding-right:0;
    }
    .events{
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .events-item{
        width:97%;
    }
    .subcategory-items{
        display: none;
    }
    
    #nav-tab .nav-link {
        flex: 1 1 calc((100% / 4) - 1rem);
        box-sizing: border-box;
        padding: .5rem;
    }
    
    .col-max-4 {
        display: none !important;
    }
}
@media(min-width:1024px){
    .sub-menu-catalog{
        padding:20px !important;
    }
    .menu .level-2>a>span>svg, .menu .level-3>a>span>svg{
        transform: rotate(270deg);
    }
    .nav-item-catalog.level-2 .sub-menu-catalog{
        display:block;
        position: relative;
        margin: 0;
        padding: 0 !important;
        background: none;
    }
    .nav-item-catalog.level-2{
        min-height:45px;
        height: auto;
        /* border: 1px solid blue; */
    }
    .nav-item-catalog.level-2 .sub-menu-catalog>li img{
        display:none;
    }
    .nav-item-catalog.level-3{
        padding:5px 0;
    }
    .nav-item-catalog.level-3>a{
        justify-content:flex-start;
    }
    .nav-item-catalog.level-2 .bi-caret-right-fill{
        display:none;
    }
    .menu .level-3>.sub-menu {
        margin-left: 100%;
        margin-top: -44px;
        background: #efefef;
        width: 200px;
    }
    
    .menu .nav {
        flex-direction: row-reverse;
        justify-content: center;
    }
    
    .menu .nav .nav-item.level-1 {
        font-size: 14.5px;
    }
    
    .menu .nav .nav-item.level-1:nth-child(6) {
        
    }
    
    .menu .nav .nav-item.level-1:nth-child(4) {}
    
    .menu .level-1>a {
        padding: 10px 15px;
    }
}

@media(min-width: 601px) and (max-width: 1180px) {
    .offer-footer-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subcategory-item {
        width: 100%;
        flex-basis: calc((100% / 2) - 1rem);
    }
    
    .products {
        flex-basis: calc(80% - 2rem) !important;
    }
    
    .row {
        justify-content: space-between;
    }
    
    .category_product {
        width: 100%;
        flex-basis: calc((100% / 3) - 1rem)
    }
    
    .nav-catalog li {
        display: block;
        width: 180px;
    }
    
    .nav-catalog .nav-item-catalog>a span {
        font-size: 1.3vw;
    }
}

@media(max-width: 1180px) {
    .specifications ul {
        width: 100%;
    } 
    
    .col-max-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .burger-menu{
        border: none;
        width: 37px;
        height: 37px;
        background:none;
    }
    .mobile-menu{
        width:100%;
        display:none;
    }
    .nav-mobile{
        margin-bottom: 0;
    }
    .nav-mobile .sub-menu-mobile{
        position:relative;
        margin-left:20px;
        display:none;
    }
    .nav-mobile .nav-item a{
        color:black;
        text-decoration:none;
    }
    .nav-mobile svg{
        width:15px;
        height:15px;
    }
    .nav-mobile .nav-item.active>a span{
        font-weight:bold;
    }
    .nav-mobile .parent-link{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    .level-2{
        padding-left:20px;
    }
    .level-3{
        padding-left:30px;
    }
    .level-4{
        padding-left:40px;
    }
    
    .opened{
        display:block !important;
    }
    .nav-catalog li {
        height:auto;
        min-height: 45px;
    }
    /* .nav-item-catalog.active a{
        color:var(--white);
    } */
    .nav-item-catalog.parent li{
        background: transparent;
        border: none;
        margin-top: 5px;
    }
    
    .nav-item-catalog.level-2{
        padding-right:0;
    }
    
}