
/* Define variables */

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3{
    text-align: left;
    margin: .5rem auto;
}

a {
    text-decoration: none;
}
ul{
    margin-bottom: 2.5rem;
}
li {
    list-style: none;
}

img {
    margin: 1rem auto;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
}
/* width  */
.w_60{
    width: 60%;
}
/* text/ font size  */
.paragraph{
    font-size: 16px;
    font-weight: 300;
}
.title{
    font-size: 20px;
    font-weight: 500;
}
.subtitle{
    font-size: 18px;
    font-weight: 600;
}
/* text/ font size  */
/* color  */
.text_deep_blue{
    color: var(--link-color-dark);
}
.text_light_blue{
    color: var(--link-color);
}
/* color  */
.wrapper {
    display: flex;
}

.main {
    min-height: 100vh;
    width: 75%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: var(--bs-body-bg);
    position: relative;
    left: 25%;
}
/* side bar style  */
/* mobile sidebar start */
.mobile_logo {
  display: none;
}
.close_m {
    position: fixed;
    right: 32px;
    top: 100px;
    z-index: 4;
    color: #fff;
    display: none;
    font-size: 25px;
}
.main_overlay::before{
    position: absolute;
    content: "";
    background: #201e1eb0;
    height: 100%;
    width: 100%;
    z-index:2;
    top: 86px;
}
/* mobile sidebar end */
.logo_hr{
    width: 30%;
    margin-top: 25px;
}
#sidebar {
    width: 25%;
    min-width: 300px;
    z-index: 5;
    transition: all .25s ease-in-out;
    background-color: var(--sidebar-background-color);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #DADADA;
    position: fixed;
    top: 60px;
    height: 100%;
    overflow: scroll;
    padding-top: 20px;
}
.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.5rem;
    display: none;
}
.toggle-btn i {
    font-size: 1.5rem;
    color: #FFF;
}


.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}
.sidebar-logo a img{
    width: 180px;
}

#sidebar.expand .sidebar-logo,
#sidebar.expand a.sidebar-link span {
    display: none;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
    max-width: 350px;
    margin-left: auto;
}

a.sidebar-link {
    margin: 10px 40px;
    padding: 8px 15px 8px 25px;
    color: var(--link-color-dark);
    display: block;
    font-size: 16px;
    white-space: wrap;
    border-radius: 20px;
    font-weight: 300;
}
.sidebar-dropdown{
    padding:0 10px 0 100px;
}
.sidebar-dropdown li{
    list-style: disc;
    font-size: 22px;
}
.sidebar-dropdown li a{
    font-size: 16px;
    font-weight: 300;
    margin: 0 10px 0 0px;
    line-height: 1.5rem;
    padding: 4px 10px;
}

.sidebar-link i {
    font-size: 1.1rem;
    margin-right: .75rem;
}

a.sidebar-link:hover , a.sidebar-link.active{
    background-color: #EAEAEA;
    font-weight: 600;
}

.sidebar-item {
    position: relative;
}

#sidebar.expand .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: var(--sidebar-expand-background-color);
    padding: 0;
    min-width: 15rem;
    display: none;
}


#sidebar.expand .has-dropdown+.sidebar-dropdown {
    max-height: 15em;
    width: 100%;
    opacity: 1;
}
#sidebar .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 3px;
    position: absolute;
    margin-left: 25px;
    top: 16px;
    left: 130px;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}
#sidebar .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
    top: 12px;
}
.sidebar-footer{
    padding-bottom: 50px;
    max-width: 350px;
    margin-left: auto;
}
.sidebar-footer a{
    font-weight: 600;
}
.sidebar-footer a:hover{
   background: transparent;
}
/* side bar style end */
/* top nav bar  */
.mobile_s_menu{
    display: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.top_nav{
    transition: all .25s ease-in-out;
    background-color: #ffffff !important;
    border-bottom: 1px solid #DADADA;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 7;
}
.top_nav_bar{
    padding: 10px 0;
}
.top_nav_bar a{
    font-size: 16px;
    font-weight: 300;
    color: var(--link-color-dark) !important;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.top_nav_bar a.active , .top_nav_bar a:hover{
    font-weight: 600;
}
.top_nav_bar a.active::after , .top_nav_bar a:hover::after{
    content: "";
    background: var(--link-color-dark);
    position: absolute;
    height: 4px;
    width: 82%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.search {
    flex: 0 0 30%;
}
.search form{
    position: relative;
}
.search form input{
    box-shadow: none !important;
    border-radius: 26px;
    background: #EAEAEA;
    color: #1E1E1E80 !important;
    font-size: 16px;
    padding: 10px 19px 10px 23px;
    border: none !important;
}
.search form input:focus{
    border: none !important;
    background: #EAEAEA;
    color: #1E1E1E80 !important;

}
.search form input:focus-visible{
    outline: 0 !important;
}
.search_btn{
    position: absolute;
    background: transparent;
    top: 22%;
    border: none;
    right: 20px;
    color: #1E1E1E80 !important;
}
/* top nav bar end */

/* main content  */
.main_content{
    margin-top: 160px;
}
.open_btn_on_this_page{
    position: absolute;
    top: 100px;
    right: 30px;
    padding: 4px 8px;
    border: 1px solid #DADADA;
    cursor: pointer;
    border-radius: 3px;
}
.close_btn_on_this_page{
    position: absolute;
    left: 20px;
    cursor: pointer;
}
.on_this_page{
    position: fixed;
    right: 0;
    top: 60px;
    border: 1px solid #DADADA;
    padding: 48px 30px 5px 70px;
    background: #fff;
    max-width: 320px;
}
.on_this_page_ul {
    padding: 0;
}
.on_this_page_ul li{
    position: relative;
    margin: 9px 0px;
}
/* .on_this_page_ul li.active::before , .on_this_page_ul li:hover::before {
    content: "";
    position: absolute;
    left: -13px;
    height: 100%;
    width: 4px;
    background: #2AA81F;
    border-radius: 4px;
} */
.on_this_page_ul li.active a{
    font-weight:500;
}
.on_this_page_ul li a {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

.on_this_page{
    display: block;
}
.on_this_page_close{
    display: none ;
}
/* responsive  */
@media only screen and (max-width: 1200px) {

}
/* ========================= tablet breakpoint(768 to 1024) ========================== */
@media only screen and (max-width: 1025px) {
    #sidebar {
        min-width: 285px;
    }
}
/* ========================= mobile breakpoint (0 to 767) ========================== */
@media only screen and (max-width: 990px) {
    .mobile_logo {
        width: 120px;
        display: block;
    }
    .wrapper{
        position: relative;
    }
    .sidebar{
        display: none !important;
        height: 100%;
        overflow-y: scroll;
    }
    .sidebar_open{
        display: block !important;
        position: absolute;
        height: 100%;
    }
    .on_this_page{
        display: none;
        /* top:-40px; */
    }
    .on_this_page_close{
        display: block;
        /* top: 130px; */
    }


    .main_content_inner{
        width: 87%;
    }
    .mobile_s_menu{
        display: block;
        width: 100%;
        padding: 18px;
        border-bottom: 1px solid #DADADA;
        margin-top: 86px;
        position: fixed;
        z-index: 0;
        background: #ffffff;
    }
    .top_nav_bar a.active::after, .top_nav_bar a:hover::after {
        width: 20%;
        left: 10%;
    }
    .main{
        width: 100%;
        left: 0;
    }
    .top_nav{
        width: 100%;
    }
    .main_content {
        margin-top: 170px;
    }
    .open_btn_on_this_page{
        position: unset;
        display: none;
    }

}
@media only screen and (max-width:360px) {
    #sidebar {
        min-width: 242px;
    }
}
