.homepageHeader {
    padding-left: 3%;
    padding-right: 3%;
    position: fixed;
    top: 0;
    left: 0;
    /*padding-top: 10px;
    padding-bottom: 10px;*/
    background-color: #FFF;
    width: 100%;
    z-index: 100;
    color: #000;
/*    height: 75px;*/
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 1px 1px 8px #dcdcdc;
}

.homepageHeader.scrolled {
    background: unset;
    background-color: #FFF;
}

.homepageSubheader {
    padding-left: 3%;
    padding-right: 3%;
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 70px;
    background-color: #05272c;
    width: 100%;
    z-index: 99;
    color: #fff;
    height: 50px;
    border-bottom: 0;
}

.homepageSubheader.scrolled {
    background: unset;
    background-color: #05272c;
}

.headerMenuItem {
    padding: 10px;
    position: relative;
}

.headerMenuItem:hover .headerMenuDropdownBoxProduct {
    display: block;
}

.menuBtn {
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    /*text-transform: uppercase;*/
    cursor: pointer;
}

.loginMenuItem {
    color: #fff;
}

.loginMenuItem:hover {
    color: #fff;
    opacity: 0.7;
}

.quotationBtn {
    padding: 5px 10px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #00C3E8;
    border-radius: 20px;
}

.quotationBtnHomePage {
    padding: 10px 10px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #00C3E8;
    border-radius: 25px;
}

.menuBtn i.la.la-angle-right {
    display: none;
}

.menuBtn i.la.la-angle-down {
  font-size: 10px;
  margin-top: -3px;
}

/*.menuBtn:hover {
    color: #1b75bb;
    background-color: #dedede;
    border-radius: 5px;
}*/

/*.menuBtn.active {
    background-color: transparent;
    border-radius: 5px;
}*/

.menuSettingBtn {
  padding: 5px 0px;
}

.menuSettingBtn i {
  font-size: 25px;
  color: #000;
  line-height: 25px;
}

.headerMenuDropdown.active ~ .headerMenuDropdownBox {
    display: block;
}

.headerMenuDropdownBox {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    right: 0;
    width: 250px;
    animation: headerDropdownBoxFadeIn ease 0.3s;
    z-index: 1;
}

.startSideBar {
    margin-top: -20px;
}

@keyframes headerDropdownBoxFadeIn {
    0% {
        opacity:0;
        top: 200%;
    }
    100% {
        opacity:1;
        top: 100%;
    }
}

.headerMenuDropdown2.active ~ .headerMenuDropdownBox2 {
    display: block;
}

.headerMenuDropdownBox2 {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: -250px;
    width: 250px;
    animation: headerDropdownBoxFadeIn2 ease 0.3s;
    z-index: 1;
}

@keyframes headerDropdownBoxFadeIn2 {
    0% {
        opacity:0;
        left: 0;
    }
    100% {
        opacity:1;
        left: -250px;
    }
}

.headerMenuDropdownItem {
    width: 100%;
    position: relative;
}

.menuDropdownBtn {
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    background-color: #1e4259;
    border-radius: unset;
}

.menuDropdownBtn:hover {
    background-color: #005faa;
    color: #fff;
    border-radius: unset;
}

.headerMenuClose {
    display: none;
}

.headerBurgerBtn {
    display: none;
}

.homepageHeaderBlackBG {
    display: none;
}

.homepageHeaderMobile {
    display: none;
}

@media (max-width: 767px) {

    .headerBurgerBtn {
        display: inline-block;
        position: relative;
        z-index: 999;
    }

    .headerBurgerBtn .open, .headerBurgerBtn.active .close {
        display: inline-block;
    }

    .headerBurgerBtn .close, .headerBurgerBtn.active .open {
        display: none;
    }

    .sideBarText{
        width: 200px;
    }

    .menuDropdownBtn:hover {
        background-color: unset;
        color: #fff;
        border-radius: unset;
    }

    .menuBtn {
        width: 100%;
        text-align: left;
    }

    .menuBtn i {
        font-size: 10px!important;
        margin-left: 5px;
        vertical-align: middle;
        display: inline-flex;
        transition: all .5s ease;
    }

    .menuBtn.active {
        color: #1b75bb;
    }

    .menuBtn.active i {
        transform: rotate(360deg);
    }


    .headerMenuDropdown2 i {
        font-size: 10px!important;
        margin-left: 5px;
        vertical-align: middle;
        display: inline-flex;
        transition: all .5s ease;
    }

    .headerMenuDropdown2.active {
        color: #1b75bb;
    }

    .headerMenuDropdown2.active i {
        transform: rotate(90deg);
    }


    .headerMobileDisplayNone {
        display: none;
    }

    .homepageHeader {
        /*width: 100%;
        position: fixed;
        top: 100%;
        left: 0;
        height: 100vh;
        background: unset;
        background-color: #fff;
        padding-top: 50px;
        overflow-y: auto;
        transition: all .5s ease;*/
        display: none !important;
    }

    .headerMenuItem {
        width: 100%;
    }

    .headerMenuDropdown ~ .headerMenuDropdownBox {
        animation: unset;
        display: block;
        position: relative;
        background-color: transparent;
        top: unset;
        right: unset;
        width: 100%;
        overflow: hidden;
        transition: all .5s ease;
        max-height: 0;
    }  

    .headerMenuDropdown.active ~ .headerMenuDropdownBox {
        transition: all .5s ease;
        max-height: 100vh;
    }

    .headerMenuDropdown2 ~ .headerMenuDropdownBox2 {
        animation: unset;
        display: block;
        position: relative;
        background-color: transparent;
        top: unset;
        left: unset;
        width: 100%;
        overflow: hidden;
        transition: all .5s ease;
        max-height: 0;
    }  

    .headerMenuDropdown2.active ~ .headerMenuDropdownBox2 {
        transition: all .5s ease;
        max-height: 100vh;
    }

    

    .headerMenuClose {
        display: block;
        position: absolute;
        top: 10px;
        right: 0px;
        color: #6c6e86;
        font-size: 15px;
    }

    /*.headerBurgerBtn,
    .headerBurgerBtn:hover,
    .headerBurgerBtn:focus {
        display: block;
        position: fixed;
        top: 0;
        background-color: #1e4259;
        border-radius: 0;
        z-index: 101;
        padding: 15px;
    }*/

    .headerBurgerBtn i {
        font-size: 25px!important;
        line-height: 25px;
        padding: 0;
        color: #fff;
    }

    .headerBurgerBtn i::before {
        font-weight: 600!important;
    }

    .sidebarMenuWrapper {
        display: block;
        position: fixed;
        z-index: 999;
        height: 100vh;
        width: 250px;
        /* left: -100%; */
        right:-100%;
        top: 0;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        padding-top: 15px;
        transition: all .5s ease;
        overflow-y: auto;
    }

    .headerBurgerBtn.active ~ .sidebarMenuWrapper {
        /* left: 0; */
        right:0;
    }

    .homepageHeaderBlackBG {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0,0,0,0.5);
        z-index: 99;
    }

    .headerBurgerBtn.active ~ .homepageHeaderBlackBG {
        display: block;
    }

    .homepageHeaderMobile {
        display: block;
        background-color: #1e4259;
        position: relative;
        color: #fff;
    }

    .sideBar {
        display: none;
    }
}

.menuLogo{
    padding-right: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;

/*    margin: 8px 0px 8px 8px;*/
}

@media (min-width: 768px) and (max-width: 990px) {
    .sideBar {
        display: none;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .sideBar {
        display: none;
    }
}

@media (min-width: 767px) and (max-width: 810px) {
    .headerMenuItem {
        padding: 10px 5px !important; 
    }
}

/* @media (min-width: 320px) and (max-width: 374px) {
    #loginLogo {
        padding-right: 85px !important; 
    }
}

@media (min-width: 375px) and (max-width: 425px) {
    #loginLogo {
        padding-right: 75px !important; 
    }
} */

/* #topFreeQuoteBTN :hover{
    color: white !important;
    background-color: #00B2CE !important;
} */

#getQuoteBtn {
    font-weight: 700 !important;
}

.getQuoteLabel {
    font-size: 15px !important;
    font-weight: 400 !important;
}




/* v2 start */
:root {
    --kevo-pink: #ff33b6;
    --disable-grey: #c7c7c7;
}

.kevoBtn {
    background-color: var(--kevo-pink);
    color: #fff;
    padding: 10px;
    width: 150px;
    border-radius: 5px;
}
.site-menu-exit {
    padding-right: 30px;
}
@media (max-width: 767px) {
    .sidebarMenuWrapper {
        width: 350px;
    }
}
@media (min-width: 768px) and (max-width: 990px) {
    .headerMenuItem {
        align-items: center;
        display: flex;
    }
    .headerBurgerBtn {
        display: none;
    }
}
@media (min-width: 991px) and (max-width: 1199px) {
    .headerMenuItem {
        align-items: center;
        display: flex;
    }
    .headerBurgerBtn {
        display: none;
    }
}
/* v2 end  */