@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    font-family: 'Montserrat', sans-serif;
}

.fix-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 69;
}
.drbeen-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: black;
    padding: 16px 0px;
    /* height:70px; */
}
.drbeen-header .header-main{
    /* justify-content: space-between; */
    background: #000000;
    /* padding: 15px 30px; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: space-between; */
    align-items: center;
    /* gap: 15px;
    margin: 0;
    height: 70px; */
    max-width:1140px;
    margin: 0 auto;
}
.header-logo{
    max-width: 130px;
    max-height: 38px;
}
.header-logo > a{display: block;}
.header-logo > a > svg{display: block;width: 100%;}
.header-logo > svg{
    width: 100%;
    height: 100%;
}

/* Search */


.header-search {
    display: block !important;
}

.header-search{
    flex: 1 1 auto;
    max-width: 350px;
    margin:auto 120px auto 90px;
}
.search-input{
    background: rgb(255 255 255 / 20%);
    border-radius: 4px;
    border: none;
    /* max-width: 650px; */
    position: relative;
}
.search-input .input-field{
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 15px;
    padding-right: 52px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
}

input.input-field::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #D9D9D9;
}
input.input-field:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #D9D9D9;
}
input.input-field::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #D9D9D9;
}

.search-icon{
    background: none;
    border: none;
    outline: none;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 3;
}
.search-icon svg{
    display: block;
    width: 18px;
    height: 18px;
}
/* .search-icon svg path{stroke: #FFFFFF;} */
.search-icon:hover svg path{stroke: #E35D11;transition: all 250ms ease-in-out;}

.header-actions>ul{
    padding: 0;
    margin: 0;
}

.header-actions>ul>li{
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.header-actions>ul>li>a{
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #FFFFFF;
}

.header-actions>ul>li>a:hover{
    color: #E35D11;
    transition: all 250ms ease-in-out;
}

.link-arrow{
    margin-left: 6px;
}

.hover-dropdown{
    position: relative;
    /* perspective: 1000px;
    z-index: 10; */
}

.hover-dropdown-menu {
    display: none;
    opacity: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: -8px;
    /* right: 15px; */
    width: 100%;
    min-width: 180px;
    perspective: 1000px;
    z-index: 1;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    transition: all 250ms ease-in-out;
}

.hover-dropdown:hover .hover-dropdown-menu {
    display: block;
    opacity: 1;
}

.hover-dropdown-menu > li {
    list-style: none;
    display: block;
    /* display: none;
    opacity: 0; */
    transition: all 250ms ease-in-out;
}

.hover-dropdown-menu > li > a.dropdown-item{
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #3A4367;
    background: #FFFFFF;
    border-radius: 4px;
    white-space: normal;
    padding: 10px 15px;
}

.hover-dropdown-menu > li:hover > a.dropdown-item{
    background: #E35D11;
    color: #FFFFFF;
}

/* .hover-dropdown:hover .hover-dropdown-menu > li {
    display: block;
    opacity: 1;
} */

.hover-dropdown-menu {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

@keyframes growDown {
    0% {
        transform: scaleY(0)
    };
    80% {
        transform: scaleY(1.3)
    };
    100% {
        transform: scaleY(1)
    };
}

.user-link .hover-dropdown-menu{right: 0;}
.user-login{
    padding: 0;
    margin-left: 20px;
}
.user-icon{
    background: #FFFFFF;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: 0;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.user-icon > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-search-control{
    display: none !important;
}

/* Login Button Style */
.mobile-button{
    display: none;
}
.desktop-button{
    display: block;
}
.btn-login{
    margin: 0;
    margin-left: 5px;
}
.btn-login > svg{
    display: inline-block;
    vertical-align: middle;
}
.btn-login > svg > path{
    fill: #FFFFFF;
}
.btn-login:hover > svg > path, .btn-login:focus > svg > path, .btn-login:active > svg > path{
    fill: #E35D11;
}



/* Mobile Responsive Style For Quries */
@media only screen and (max-width: 1200px) {
    .header-search {
        max-width: 450px;
    }
}

@media only screen and (max-width: 991px) {
    .drbeen-header .header-main {
        padding: 15px 15px;
    }
    .mobile-search-control{
        display: inline-block !important;
    }
    .header-search {
        max-width: 38px;
        display: none !important;
    }
    .header-search.mobile-search{display: block;}
    .search-btn{
        background: rgb(255 255 255 / 20%);
        border-radius: 4px;
        border: none;
        padding: 10px 10px;
        position: relative;
    }
    .search-btn svg{
        display: block;
        width: 18px;
        height: 18px;
    }
    .search-btn svg path{stroke: #FFFFFF;}
    .mobile-search > .mobile-search-wrapper{
        height: 0;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        right: 0;
        transition: all 250ms ease-in-out;
    }
    .mobile-search.show > .mobile-search-wrapper{
        height: auto;
        opacity: 1;
        visibility: visible;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        z-index: 81;
        background: #000000;
        padding: 15px 15px;
    }

    .hover-dropdown:hover .hover-dropdown-menu {
        display: none;
        opacity: 0;
    }
    .hover-dropdown.show .hover-dropdown-menu {
        display: block;
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .header-logo {
        max-width: 115px;
        max-height: 35px;
    }
    .mobile-button{
        display: none;
    }
    .desktop-button{
        display: block;
    }

    .mobile-diss{
        display: none !important;
    }

    .tab-button{
        display: block;
    }

    .tab-diss{
        display: none !important;
    }

}

@media (min-width:600px) and (max-width:820px) {

    .user-login {
        margin-left: 0px !important;
    }

    .mobile-search{
    margin-right: 30px;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .tab-button{
        display: block;
    }

    .tab-diss{
        display: none !important;
    }

    .ham-menu{
        margin-right: 30px;
    }

    .btn-free-node{
        margin-left: 260px;
    }

    .tab-bttn-diss{
        display: block!important;
    }

    .tab-bttn-dis{
        display: none !important;
    }
}

@media only screen and (max-width: 600px) {
    .mobile-button{
        display: block;
    }
    .desktop-button{
        display: none;
    }

    .mobile-diss{
        display: none !important;
    }

    .drbeen-header {
        padding: 0px;
    }

    .drbeen-header .header-main {
        justify-content: space-between;
    }

    .btn-free-node{
        margin-right: -17px;
    }

    .user-login {
        margin-left: 0px !important;
    }

    .mobile-search{
        margin-right: 20px;
        margin-left: 40px;
    }

    .course-drop{
        padding: 12px 5px !important;
    }

}

@media only screen and (max-width: 374px) {
    .header-logo {max-width: 90px;}
    .drbeen-header .header-main {gap: 10px;}
    .header-actions>ul>li>a{padding: .5rem 5px;}
    .user-login {margin-left: 5px;}
   
}

.btn-free-node{
    height: 38px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 4px;
    border: 2px solid #E35D11;
    background: #E35D11;
}

.menu-open-ham {
    display: none;
    position: fixed;
    height: auto;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 81;
    background: #fff;
    border: 1px solid var(--gray-30, #D9D9D9);
    border-radius: 0px 4px 4px 0px;
    padding: 0px 15px;
    transition: all 250ms ease-in-out;
    animation: slideIn 300ms ease-in-out forwards;
    transform-origin: top center;
}
.menu-open-ham a {
    color: var(--Brand-Text-Gray, #3A4367);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 16px 5px;
    border-bottom: 1px solid #DBDBDB;
}
.rev-cl {
    border-bottom: none !important;
}

.library-list{
    width: 300px;
    height: 390px;
    overflow: auto;
}

@media (min-width:600px) and (max-width:1100px){
    .drbeen-header .header-main {
        justify-content: space-between;
    }

    .drbeen-header {
        padding: 16px 30px;
    }

    .course-drop{
        padding: 12px 5px !important;
        
    }

    .menu-open-ham{
        top:100px !important;
        position: fixed;
    }
}

@media (min-width:990px) and (max-width:1100px){

    .header-search {
        margin: auto 60px auto 50px;
    }

    .space-res{
        margin-right: 20px !important;
    }
}

@media (min-width:1101px) and (max-width:1200px){
    .drbeen-header {
        /* padding: 16px 70px; */
        padding: 16px 30px;
    }

    .header-search {
        margin: auto 60px auto 40px;
    }
}

@media (min-width:1200px) and (max-width:1223px){
    .drbeen-header {
        padding: 16px 30px;
    }
}

.home-ul{
    margin-left: 78px;
}

.user-login {
    margin-left: 0px;
}

@media (min-width:821px) and (max-width:991px) {
    .user-login {
        margin-left: 0px;
    }

    .mobile-search{
        margin-right: 30px;
    }
}

.home-logged-cl{
    visibility: hidden !important;
}

@media (min-width:991px) and (max-width:1008px){
    .header-search {
        margin: auto 44px auto 50px;
    }
}

.menu-open-ham{
    position: fixed;
    top:63px;
}

.header-search {
    flex: 1 1 auto;
    max-width: 320px;
    margin: auto;
}

@media (min-width:991px) and (max-width:1072px){
    .header-search {
        /* max-width: 210px; */
        max-width: 144px;
    }
}

@media (min-width:1100px) and (max-width:1160px){
    .header-search {
        max-width: 250px;
    }
}

@media (min-width:1072px) and (max-width:1100px){
    .header-search {
        max-width: 230px;
    }
}

.drbeen-header .header-main {
    justify-content: space-between;
}

