/*====================================================
HT-ENVIRO RESPONSIVE FIX
====================================================*/

@media screen and (max-width:991px){

header{
    height:90px;
}

header .navbar{
    display:flex !important;
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:center !important;
    height:90px;
    padding:0 !important;
    position:relative;
}

header .logo{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    width:auto !important;
    flex:1;
    gap:12px;
}

header .logo img{
    width:58px;
    height:auto;
}

header .company-name{
    display:flex;
    flex-direction:column;
}

header .company-name h2{
    font-size:24px;
    line-height:1.05;
}

header .company-name span{
    font-size:12px;
}

header .quote-button{
    display:none !important;
}

header .menu-toggle{
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-left:auto;
    width:46px;
    height:46px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:10002;
}

header .menu-toggle span{
    width:28px;
    height:3px;
    margin:3px 0;
    background:#0C5A82;
}

header .menu{
    display:none !important;
}

header .menu.active{
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 12px 25px rgba(0,0,0,.12);
    padding:15px 0;
    z-index:10001;
}

header .menu.active li{
    width:100%;
}

header .menu.active a{
    display:block;
    padding:15px 25px;
    border-bottom:1px solid #ececec;
}

}