body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    box-sizing: border-box;

}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
button,
p {
    font-family: "Josefin Sans", sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

@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 {
    --base-color: #042548;
    --basedark-color: #011f3f;
    --primary-color: #1daab5;
    --primary-light:#38ebf8;
    --primarydark-color: #0168ba;
    --base-white: #fff;
    --txt-light:#054f9d;
    --color-growing:#004312;
}

/********* scss end *********/

.m_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f1f9fa;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 6px 0;
}

.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: 70px !important;
    text-align: right;

}

.navbar-nav .nav-link.active {
    color: var(--txt-light);
}

.m_header .menu-link {
    color: var(--txt-light);
    font-size: var(--font-tx);
    font-weight: var(--fw-medium);
    position: relative;
    padding: 10px 15px !important;
    display: flex;
}


.m_header .menu-link i {
    padding-right: 5px;

}

.m_header .responsive-button {
    font-weight: var(--fw-bold);
    font-size: var(--font-tx);
    padding: 8px 20px;
    margin: 5px 0;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: ease-out 0.7s;
    border: 1px solid #294d85;
    color: #294d85;
    margin-left: 10px;
    height: 44px;
}
.m_header .responsive-button:focus-visible{
    color: #000;
}
.m_header .responsive-button:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 var(--base-color);
}

.m_header .responsive-button:active {
    transform: scale(0.9);
}

.m_header .dropdown-toggle::after {
    margin-top: 5px;
}

/* 
                .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%);
                } */



.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 10px;
}

@media (min-width:1200px) and (max-width:1399px) {
    .m_header .menu-link {
        font-size: 14px;
    }

    .m_header .responsive-button {
        padding: 5px 30px;
    }
}

@media (min-width:1900px) and (max-width:2500px) {
    .m_header .responsive-button {
        margin: 10px 0;
    }

    .m_header .nav_img {
        width: 100px;
    }
}