.homepageHeader {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
    width: 100%;
    z-index: 100;
}

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

.headerMenuItem {
  padding: 0px 2px;
    position: relative;
}

.menuBtn {
    /* padding: 5px 10px; */
    font-weight: 500;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
    cursor: pointer;
}

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

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

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

/* .menuBtn.active {
    background-color: #dedede;
    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;
    border-radius: 5px;
    box-shadow: 4px 5px 5px 1px #0000001c;
}

.dropdown-item {
    font-size: 14px;
    color: #000;
}

@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: 12px;
    color: #6c6e86;
    padding: 0;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
}

.menuDropdownBtn:hover {
    background-color: #ececec;
    color: #6c6e86;
    border-radius: unset;
}

.headerMenuClose {
    display: none;
}

.headerBurgerBtn {
    display: none;
}

.homepageHeaderBlackBG {
    display: none;
}

.homepageHeaderMobile {
    display: none;
}

@media (max-width: 767px) {

    .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(90deg);
    }

    .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: 0;
        left: 100%;
        height: 100vh;
        background: unset;
        background-color: #fff;
        padding-top: 50px;
        overflow-y: auto;
        transition: all .5s ease;
    }

    .headerMenuItem {
        align-items: start;
        text-wrap: wrap;
    }

    .wa-in-inner-div{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .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;
        font-weight: 500;
    }

    .headerBurgerBtn,
    .headerBurgerBtn:hover,
    .headerBurgerBtn:focus {
        display: block;
        position: absolute;
        right: 20px;
        transform: translateY(30%);
        /* bottom: 25px; */
        /* background-color: #fff; */
        border-radius: 100%;
        z-index: 101;
        text-align: center;
        /* padding: 10px; */
        /* -webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5)!important;
        -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5)!important;
        box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5)!important; */
        font-size: 20px;
        line-height: 20px;    
    }

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

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

    .headerBurgerBtn.active ~ .homepageHeader {
        left: 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: #fff;
        padding: 10px 0px;
        position: relative;
    }
}