body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    box-sizing: border-box;

}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
button,
p {
    font-family: 'Poppins', sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
    color:var(--tx-color);
}

li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
     color:var(--tx-color);
}

a {
    text-decoration: none;
}

h1 {
   color:var(--tx-color);
    font-size: 35px;
    font-weight: 600;
}

@media (max-width:990px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px;
    }
}

/********* scss start *********/
/******** Font Sizes ******/
:root {
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-tx: 18px;
    --font-lg: 20px;
    --font-xl: 28px;
    --font-xxl: 36px;
    --font-hl: 40px;
    --font-hero: 48px;

}

/******** Font weight ******/
:root {
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
}

:root {
    --tx-color: #2d3748;
    --bg-color:#f0f0f3;
}


/********* scss end *********/

.m_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 6px 0;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.m_header .nav_mentor {
    padding: 0;
}

.m_header .nav_img img {
    width: 100%;
}

.m_header .nav_img {
    width: 80px;
}

.m_header .me-auNAV {
    /* width: 467px; */
    margin-left: auto;
    /* margin-right: 0 !important;
    text-align: right; */

}

.m_header .menu-link {
    color: var(--tx-black);
    font-size: var(--font-md);
    font-weight: 600;
    position: relative;
    padding: 10px 15px !important;
    display: flex;
}

.m_header .menu-link:hover {
    box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
    border-radius: 50px;
}

.m_header .menu-link:hover {
    color: #555555;
}

.m_header .menu-link:hover i {
    color: #5e5e5c;
}

.m_header .menu-link i {
    padding-right: 5px;

}

.m_header .responsive-button {
    font-weight: var(--fw-semibold);
    font-size: var(--font-lg);
    padding: 8px 30px;
    margin: 5px 0;
    color: var(--tx-color);
    margin-left: 10px;
    background:var(--bg-color);
    box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #ffffff;
}

.m_header .dropdown-toggle::after {
    margin-top: 5px;
}
 .navbar-nav .nav-link.active{
    color: var(--tx-color) !important;
}

/* 
                .m_header .menu-link:before {
                    position: absolute;
                    content: "";
                    top: 50%;
                    right: 0;
                    width: 2px;
                    height: 20px;
                    background: #c5d721;
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                    transform: translateY(-50%);
                } */

@media (min-width:1200px) and (max-width:1399px) {
    .m_header .menu-link {
        font-size: 14px;
    }

    .m_header .responsive-button {
        padding: 5px 30px;
           font-size: 16px;
    }

    .container {
        max-width: 1000px;
    }
        
}
@media (min-width:1400px) and (max-width:1500px){
       .container {
        max-width: 1000px;
    } 
}
@media (min-width:1900px) and (max-width:2500px) {
    .m_header .responsive-button {
        margin: 10px 0;
    }

    .m_header .nav_img {
        width: 100px;
    }
}

@media (min-width:1901px) and (max-width:3000px) {
    .m_header .menu-link {
        font-size: 22px;
    }

    .m_header .responsive-button {
        font-size: 22px;
        padding: 12px 40px;
    }

    .container {
        max-width: 1400px;
    }
}