*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    text-decoration: none!important;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    
}


:root {
    --main-text-color: #00284F;
}

ul{
    list-style: none;
}
p{
    margin-bottom: 0;
}
a{
    color: black;
}
header{
    border-top: 3px solid var(--main-text-color);
    border-bottom: 3px solid var(--main-text-color);
}


footer{
    border-top: 3px solid var(--main-text-color);
    border-bottom: 3px solid var(--main-text-color);
}
.centering{
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    display: flex;
    align-items: center;
}
.logo-img{
    width: 68px;
}
.logo-img img{
    width: 100%;
}
.logo-txt{

}
.logo-title{
    color: var(--main-text-color);
    font-weight: 700;
    font-family: 'Panton';
    font-size: 36px;
    line-height: 1;

}
.logo-desc{
    font-size: 12px;
    font-weight: bold;
    width: 140px;
    line-height: 1;

}
.header_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;    
}
.header_top>div{
    margin:0 20px;
}
.humb-btn{
    background-color: #dadada;
    width: 34px;
    height: 34px;
    padding: 2px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    display: none;
}

.nav-min-show{
    display:block;
}
.navigation{
    padding: 1.2em;
    margin-bottom: 0;
    padding-top: 0;
    transition: 1s;
}

.navigation_item{
    padding: 0.3em;
    font-size: 1.4em;
    color: black;
}
.navigation_item>a{
    color: black;
    font-size: 1.8rem;
    margin: 0 20px;
    position: relative;
    line-height: 0;
}
.navigation_item>a::before{
    position: absolute;
    content: '';
    top: 0;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
}

.navigation_item>a:hover::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
    transition: 0.5s;
}
.navigation_item>a::after{
    position: absolute;
    content: '';
    bottom:  0;
    opacity: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
}
.navigation_item>a:hover::after{
    position: absolute;
    content: '';
    bottom:  0;
    right:0;
    opacity: 1;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
    transition: 0.5s;
}
.sub-nav{
    overflow: hidden;
    display: none;
    position: absolute;
    z-index: 5;
    padding: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.2);
}
.navigation_item:hover>.sub-nav{
    display: block;
}
.sub-navigation_item{

    min-width:130px;
    float:none;
    padding-left: 10px;
    display:block;
    position: relative;
    color: var(--main-text-color);
}
.sub-navigation_item>a{
    display: block;
    width: 100%;
    height: 100%;
}
.sub-navigation_item::after{
    position: absolute;
    content: '';
    bottom:  0;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
    z-index: 6;
}
.sub-navigation_item:hover::after{
    position: absolute;
    content: '';
    bottom:  0;
    left:0;
    opacity: 1;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
    transition: 0.5s;
    z-index: 6;
}
.sub-navigation_item:hover.sub-navigation_item>a{
    color: var(--main-text-color);
}
.form-control{
    border-radius: 0;
}
.btn-search{
    border: 1px solid var(--main-text-color);
    color: var(--main-text-color);
    border-radius: 0;
}
.btn-search:hover{
    background-color: var(--main-text-color);
}

/*main*/

main{
    padding: 30px 0 30px 0;
}
.main-back-cat{
    background-color: #F2F2F2;
}
.form-min,.form-order-min{
    width: 320px;
    padding: 45px;
    background-color: white;
    border: 2px solid var(--main-text-color);
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}
.bc-form{
    display: none;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000%;
    background-color: rgba(128, 128, 128, 0.537);
}
.form-min_title{
    padding-left: 10px;
    font-weight: bold;
    font-size: 21px;
}
.form-group{
    padding: 5px;
}

.btn-form-min{
    margin-top: 5px;
    border-radius: 0;
    margin-left: 5px;
    background-color: var(--main-text-color);
    color: white;
    border: 2px solid var(--main-text-color);
}

.close-form{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.close-form:before, .close-form:after {content: ""; position: absolute; width: 24px; height: 4px; background: var(--main-text-color);top:12px;right: 3px;}
.close-form:before {transform: rotate(45deg);}
.close-form:after {transform: rotate(-45deg);}

.intro-container{
    color: white;
        margin: 0 auto;
        padding: 140px 10px;
}

.main-back{
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url(..//images/analysis-2030265_960_720.jpg) ;
    box-shadow: rgba(0, 0, 0, 0.54) 0px 0px 1e+06px 1e+09px inset;
}
.intro-title{
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}
.intro-desc{
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 820px;

}

.intro-btn{
    text-align: center;
    padding: 20px;
    width: 200px;
    cursor: pointer;
    color: white;
    border: 2px solid var(--main-text-color);
    background-color: var(--main-text-color);
}
.intro-btn:hover{
    color: var(--main-text-color);
    background-color: white;
    border: 2px solid var(--main-text-color);
}


.switch-prod-controls{
    display: flex;
    margin-left: 5%;
}
.switch-prod-btn{
    width: 100px;
    text-align: center;
    background-color: #eeeeee;
    color: #333333;
    padding: 10px;
    margin-right:  15px;
    cursor: pointer;
  
}

.switch-prod-btn_active{
    color: white;
    background-color: var(--main-text-color);
    -webkit-box-shadow: 0px 0px 8px 4px rgba(38, 80, 34, 0.2);
    -moz-box-shadow: 0px 0px 8px 4px rgba(38, 80, 34, 0.2);
    box-shadow: 0px 0px 8px 4px rgba(38, 80, 34, 0.2);
}
.prod_wrapp{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
}
.prod_blc{
    width: 30%;
    padding-bottom: 10px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 23px 5px rgb(34 60 80 / 11%);
    -moz-box-shadow:0px 0px 23px 5px rgb(34 60 80 / 11%);
    box-shadow: 0px 0px 23px 5px rgb(34 60 80 / 11%);
}
.prod_blc:hover>a>.prod_blc-img>img{
    transform: scale(1.2);
}
.prod_blc-img{

    line-height: 0;
    overflow: hidden;
    height: 190px;
    margin: 0 auto;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 3px rgba(34, 60, 80, 0.2);
}
.prod_blc-img>img{
    width: 100%;
    max-height: 190px;
    transition: 1s;
}
.prod_blc-title{
    text-align: center;
    color: var(--main-text-color);
    font-size: 1.3rem;
    padding: 10px 0;
}
.prod_blc-btn{
    padding:16px 8px;
    width: 50%;
    margin: 0 auto;
    position: relative;
    border: 2px solid white;
    cursor: pointer;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    background-color: var(--main-text-color);
}
/* .prod_blc-btn::before{
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    width: 100%;
    height: 1px ;
    background-color: var(--main-text-color);
} */
.prod_blc-btn:hover{
    color: var(--main-text-color);
    background-color: white;
    border: 2px solid var(--main-text-color);
}


.promo-wrapp{
    margin: 0 30px;
    padding: 50px 20px;

    display: flex;
    background: repeating-radial-gradient(ellipse farthest-corner at left center, rgba(0, 40, 79, 0.91) 0%, rgba(0, 40, 79, 0.91) 100%), url(../images/promo.jpg) left 50% bottom 0px / cover no-repeat;
}
.promo-desc-bot{
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.promo-desc-top{
    font-size: 2.3rem;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
}
.promo-btn{
    width: 200px;
    padding: 20px;
    background-color: white;
    text-align: center;
    cursor: pointer;

}
.promo-btn:hover{
    color: var(--main-text-color);
    background-color: whitesmoke;
}


/*Contacts*/
.chnd-wrapp{
    display: flex;
    justify-content: space-between;
}
.loc-container{
    padding-right: 10px;
    width: 40%;
}
.loc-btn{
    cursor: pointer;
    border: 2px solid white;
    width: 200px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--main-text-color);
    color:var(--main-text-color);
}

.loc-btn-back{
    color: white;
    background-color: var(--main-text-color);
}
.location-container{
    justify-content: space-between;
    padding: 20px 0;
    display: flex;
    margin: 0 auto;
}
.loc-map{
    width: 100%;
}
.loc-desc{
    padding-top: 30px;
}

.show-loc{
    display: flex;
}
.hide{
    display: none;
}
/* foooooterrrr*/

.footer_container{
    display: flex;
    justify-content: space-between;

    padding: 20px 0;
}
.copyright{
    width: 24%;
}
.copyright-title,.ph_footer-title,.footer_links-title,.f_adress-title{
    font-size: 1.2rem;
    color: var(--main-text-color);
}
.copyright-txt{
    font-size: 0.7rem;
}
.ph_footer-wrapp{
    width: 24%;
}
.ph_footer-num{
    font-size: 0.9rem;
}
.ph_footer-mail>a{
    color: var(--main-text-color);

}
.ph_soc{
    display: flex;
}
.footer_sc-link{
    margin-right: 10px;
}
.scrollTop-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--main-text-color);
    padding: 10px;
    cursor: pointer;
}
.adress_wrapp{
    width: 50%;
}
.scrollTop-btn>img{
    display: inline-block;   
}



/*Catalog*/


.opt-cat{
    display: flex;

}

.cat-sort{
    padding: 0 30px 10px 30px;
    
    display: flex;
    justify-content: space-between;
}
.page-counter>a{
    padding:5px 10px;
    margin-left: 10px;
    cursor: pointer;
}
.pc-active{
    color: white;
    background-color: var(--main-text-color);
}
.cat-items-wrapp{
    display: flex;
    flex-wrap: wrap;
/*     justify-content: space-between; */
}
.cat-item{
    width: 33.3%;
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.card{
    transition: 0.5s;
    
}
.card:hover{
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.card-title{
    font-size: 0.8rem;
}
.card-maker{
    font-size: 0.7rem;
}
.card-maker>strong{
    margin-right: 5px;
}
.card-body{
    margin-top: 1px;
    border-top: 1px solid var(--main-text-color);
}
.cat-card-imgBlc{
    width: 80%;
    line-height: 0;
    overflow: hidden;
    height: 190px;
    margin: 0 auto;
    border-radius: 2px;
    border: 4px solid white;

}
.cat-card-imgBlc>img{
    max-width: 100%;
    max-height: 220px;
    margin: 0 auto;
    display: block;
}
.card-btn{
    display: block;
    text-align: center;
    padding: 15px;
    color: white;
    transition: 0.5s;
    background-color: var(--main-text-color);
}
.card-btn:hover{
    color: white;
    transform: scale(1.03);
}
.accord-wrapp{
    width: 20%;
}
.opt-cat-content{
    width: 80%;
}
.accord-title{
    text-align: center;
    color: white;
    padding: 15px;
    background-color: var(--main-text-color);
}
.accordion-btn{
    font-size: 1rem;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    padding: 10px;
    /* border-bottom: 1px solid #dee2e6; */
}
.accordion-btn>a{
    color: black;
    display: block;
    padding: 5px;
    font-weight: bold;
}
.accordion-btn>a:hover{
    color: var(--main-text-color);

}
.accordion-btn>a{
    text-align: left;
}

.categ-item-list{
    padding-left: 0;
    margin-left: 10px;
    list-style:disc;
    padding-right: 10px;
}
.categ-item-list>li{
    padding: 8px 0;

}
.categ-item-list>li>a{
    cursor: pointer;
}
.categ-item-list>li>a:hover{
    color: var(--main-text-color);
}
.accordion-body{
    margin: 0 0 0 20px !important;
    padding: 0;
}

/*description items*/

.description-wrapp{
    margin: 0 10px;
    border: 1px solid #e4e4e4;
    max-width: 800px;
    padding-bottom: 20px;
}
.description-top{
    display: flex;
}
.description-img{
    width: 70%;
    line-height: 0;
    margin: 0 auto;
    border-radius: 2px;
    border: 4px solid white;
}
.description-img>img{
    max-width: 345px;
    max-height: 345px;
    display: block;
    margin: 0 auto;
}
.prod-block{
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.vak-block-redline{
    border-bottom: 2px solid var(--main-text-color);
    width: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.prod-name,.prod-name-light{
    font-weight: bold;
    font-size: 14px ;
}
.prod-name-light{
    padding: 10px 0;
}
.prod-param{

font-size: 12px;
line-height: 11px;
display: flex;
justify-content: space-between;
color: #151515;
background: url(../images/dots.png) repeat-x bottom;
margin-bottom: 7px;
}
.prod-param-name{
    background-color: white;
}
.prod-param-val{
    background-color: white;
}
.prod-btn{
    background-color: var(--main-text-color);
    text-align: center;
    padding: 15px;
    width: 100px;
    color: white;
    cursor: pointer;
    border: 1px solid var(--main-text-color);
}
.prod-btn:hover{
    background-color: white;
    color: var(--main-text-color);
    border: 1px solid var(--main-text-color);
}
.desc-title-min{
    font-weight: bold;
    margin-left: 10px;
    margin-top: 20px;
}
.desc-text-pos{
    margin-left: 10px;
}





/*Adaptive*/
@media(max-width:1200px){
    .opt-cat{
        display: block;
    }
    .accord-wrapp,.opt-cat-content{
        width: 100%;
    }
    .accord-title{
        text-align: left;
    }
    .cat-sort{
        padding-top: 30px;
    }
    .cat-item{
        width: auto;
    }
    .description-wrapp{
        margin: 30px 0 0 0;
        max-width: 100%;
    }
}


@media(max-width:1000px){
    .d-flex{
        display: none!important;
    }
    .location-container{
        flex-wrap: wrap;
    }
    .loc-container{
        width: 100%;
    }
    .loc-map{
        width: 100%;
    }
    .loc-desc{
        padding-bottom: 30px;
    }
    .popup{
        display: none!important;
    }
    .cat-sort{
        display: block;
        padding: 0;
        margin-top: 15px;
    }
    .page-counter{
        padding: 10px 0;
    }
	.cat-items-wrapp{
        justify-content: center;
    }
}

@media(max-width:900px){
    .footer_container {
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
    .scrollTop-btn{
        display: none;
    }
    .ph_soc{
        justify-content: space-between;
    }
    .footer_sc-link{
        margin-right: 0;
    }
    .copyright,.ph_footer-wrapp,.adress_wrapp{
        width: auto;
        text-align: center;
        margin: 20px;
    }
}

@media(max-width:800px){
    .dropdown{
        top: -15px;
        right: 40px;
        margin-top: 0!important;
    }
    .header_top{
        padding: 10px;
    }
    .header_top>div{
        margin: 20px;
    }
    .navigation{
        display: none;
    }
    .header_top>div {
        margin: 20px 0;
    }
    .ph-number_wrapp,.wr-time_wrapp{
        display: none;
    }
    .humb-btn{
        display: block;
    }
    .sub-nav{
        position: static;
        box-shadow: none;
    }
    .sub-navigation_item{
        padding-left: 30px;
    }
}
@media(max-width:770px){

    .cat-items-wrapp{
        justify-content: center;
    }
    .page-counter>a{
        display: block;
        margin: 10px 0;
    }
    .description-top{
        display: block;
    }
    .description-text{
        padding-right: 5px;
    }
    .intro-desc{
        font-size: 0.9rem;

    }
    .intro-container{
        padding: 40px 10px;
    }
    .intro-title{
        font-size: 2.5rem;
    }
    .promo-wrapp{
        margin: 0 ;
        padding: 20px;
    }
    .promo-btn {
        padding: 10px;
    }
    .percent{display: none;}
    .promo-desc-top{
        font-size: 1.3rem;
    }
    .promo-desc-bot{
        font-size: 0.7rem;
    }
}


@media(max-width:600px){
    .dropdown{
        right: 50px;
    }
	.logo-title{
		font-size:30px;
	}
}
/*for humb menu*/

.showHumb{
    display: block;

}





.dropbtn {
    padding: 5px;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #f9f9f9; */
    width: 140px;
}

.dropbtn
{
  background: url('http://icons.iconarchive.com/icons/custom-icon-design/flag-3/16/Russia-Flag-icon.png') no-repeat left center;
  padding-left: 25px;
  width: 40px;
}

.dropbtn::after {
    background: rgba(0, 0, 0, 0) url("https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-16.png") no-repeat scroll center center;
    content: "";
    height: 16px;
    position: absolute;
    right: -20px;
    top: 7px;
    width: 16px;
}

.dropdown-content a:first-child
{
  background: url('http://icons.iconarchive.com/icons/custom-icon-design/flag-3/16/Russia-Flag-icon.png') no-repeat left center;
}

.dropdown-content a:last-child
{
  background: url('https://icons.iconarchive.com/icons/fatcow/farm-fresh/16/flag-usa-icon.png') no-repeat left center;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 2px 0 2px 25px;
    text-decoration: none;
    display: block;
	cursor: pointer;
}
.dropdown-content-backRus
{
  background: url('http://icons.iconarchive.com/icons/custom-icon-design/flag-3/16/Russia-Flag-icon.png') no-repeat left center;
}
.dropdown-content-backEn
{
    background: url('https://icons.iconarchive.com/icons/fatcow/farm-fresh/16/flag-usa-icon.png') no-repeat left center;
}
/* Change color of dropdown links on hover */
/* .dropdown-content a:hover {background-color: #f1f1f1} */

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
