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 {
    --primaryTX-color: #d2e867;
    --whiteTX-color: #ffffff;
    --darkTX-color: #a7c706;
    --BG-color: #d2e867;
    --tx-black: #000;
    --head-span: #c69900;
    --h1-color: #001f63;
}

.all_SP {
    color: var(--head-span);
}
.all_SPS{
    color: #ffda31;
}
/********* scss end *********/

.m_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  background: #ffdc31;
    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: 0 !important;
    text-align: right;

}

.m_header .menu-link {
    color: #000000;
    font-size: var(--font-tx);
    font-weight: var(--fw-bold);
    position: relative;
    padding: 10px 15px !important;
    display: flex;
}

.m_header .menu-link:hover {
    color: #000000;
}

.m_header .menu-link:hover i {
    color: #000000;
}

.m_header .menu-link i {
    padding-right: 5px;

}

.m_header .responsive-button {
    font-weight: var(--fw-bold);
    font-size: var(--font-lg);
    padding: 8px 30px;
    margin: 5px 0;
    border: 1px solid #000000;
    /* background: #e07d05; */
    color: #000000;
    margin-left: 10px;
}

.m_header .dropdown-toggle::after {
    margin-top: 5px;
}

.m_header .nav-link.active{
    color: #000000;
}
.m_header .nav-link.active i{
    color: #000000;
}
/* 
                .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%);
                } */

.m_header.scrolled {
     background: #ffdc31;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.m_header.scrolled .nav-link {
    color: #000000;
}
.m_header.scrolled .nav-link i {
    color: #000;
}

.m_header.scrolled .nav-link.active {
    color: #000;
}

.m_header.scrolled .nav-link.active i {
    color: #000;
}

.m_header.scrolled .responsive-button {
    color: #000;
    border-color: #000;
}
@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;
    }
}
@media (max-width:990px) {
    .m_header.scrolled .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    }
     .m_header.scrolled .navbar-toggler {
    border: var(--bs-border-width) solid rgb(255, 255, 255);
}
}