@font-face {
    font-family: myFontR;
    src: url('Metropolis-Regular.otf');
    font-display: swap;
}
@font-face {
    font-family: InterFont;
    src: url('Inter-ExtraBold.ttf');
    font-display: swap;
}
button, input, select{
    outline: none !important;
    box-shadow: none !important;
}
button.btn-common{
    background-color: #1e3f9a !important;
    border-color: #1e3f9a !important;
    letter-spacing: 0.5px;
}
header{
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    width: 100%;
    z-index: 9999;
    position: relative;
}
header .row{
    align-items: center;
    position: relative;
}
header img{
    max-width: 200px;
}
header button.browse-program{
    background: #f12b31!important;
    border: 1px solid #f12b31!important;
    border-radius: 20px;
    box-shadow: 0 3px 6px 0 rgba(145,144,173,.12);
    color: #fff!important;
    display: inline-flex;
    /* font-family: nimbus-sans; */
    font-size: 14px;
    line-height: 11px;
    padding: 14px 15px;
    vertical-align: middle;
    letter-spacing: 0.3px;
    align-items: center;
}
header button.browse-program i{
    margin-left: 4px;
}
header button.action-btn{
    padding: 7px 32px;
    font-size: 16px;
}

header .menuArea{
    padding: 10px;
    position: absolute;
    /* width: 795px; */
    top: 45px;
    left: 25%;
    z-index: 999;
    display: none;
}
header .menuAreaInner{
    overflow: hidden;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.2);
    border: solid 1px #e5e5e5;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /* height: auto !important; */
    /* height: 500px; */
}
header .menuAreaInner:before{
    content: "";
    position: absolute;
    top: 1px;
    left: 72px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
header .menuAreaInner ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
header .menuAreaInner ul li{
    
}
header .menuAreaInner ul li a{
    display: block;
    padding: 14px 14px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;  
    transition: transform .2s;  
    cursor: pointer;
}
header .menuAreaInner ul li:last-child a{
    border: none;
}
header .menuAreaInner ul li a img{
    width: 30px;
    margin-right: 20px;
    display: inline-block;
}
header .menuAreaInner ul li a span{
    font-size: 15px;
    color: #000;
    display: inline-block;
    transition: all 0.3s ease-in;
}
header .menuAreaInner ul li a:hover span{
    /* box-shadow: rgba(0, 0, 0, 0.5) 20px 20px 30px; */
    /* transform: scale(1.1); */
    font-family: 'InterFont';
    font-size: 16px;
}
/* header .menuAreaInner ul li:nth-child(odd) a {
    color: #777;
} */
header .menuAreaInner ul li:nth-child(even) a {
    background: #f3f3f3;
}

header .btn-res{
    display: none;
    background: #fbfbfb!important;
    border: 1px solid #dddddd!important;
    font-size: 13px;
    padding: 4px 8px;
    float: right;
    margin-right: 2px;
}
.showMobile{
    display: none;
}

@media only screen and (max-width: 600px){
    .hideMobile{
        display: none !important;
    }
    .showMobile{
        display: block !important;
    }
    header{
        padding: 12px 0;
    }
    header img{
        max-width: 160px;
    }
    header .btn-res{
        display: block !important;
    }
    header .menuAreaInner ul li a{
        padding: 14px 10px;
    }
    header .menuArea{
        padding: 10px 0;
        top: 50px;
        left: 0%;
        width: 100%;
    }
    header .menuAreaInner{
        position: relative;
        /* left: -50%; */
    }
    header .menuAreaInner:before{
        display: none;
    }
    header .menuAreaInner ul li a img{
        width: 20px;
        margin-right: 10px;
    }
    header .menuAreaInner ul li a span{
        font-size: 12px;
    }
    .highlight span{
        font-size: .55rem;
    }
}