                body {
                    margin: 0;
                    padding: 0;
                    line-height: 20px;
                    font-size: 16px;
                    box-sizing: border-box;

                }

                .re_container {
                    width: 100%;
                    max-width: 100%;
                    margin: 0 auto;
                    padding: 0 50px;
                    position: relative;
                    z-index: 10;
                }

                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) {
                    .re_container {
                        width: 100% !important;
                        max-width: 100% !important;
                        padding: 0 20px;
                    }
                }

                .all_SP {
                    color: var(--head-span);
                }

                /********* scss start *********/

                :root {
                    --base-color: #003153;
                    --primary-color: #007234;
                    --h1-txt: 45px;
                    --p-txt: 18px;
                    --li-txt: 18px;
                }

                /********* scss end *********/

                .m_header {
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    z-index: 1000;
                    background: #fff;
                    transition: background 0.3s ease, box-shadow 0.3s ease;
                    box-shadow: rgb(255 248 248 / 23%) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
                    padding: 6px 0;
                }

                .responsive-button:focus {

                    outline: 3px solid #abd0c5;
                    outline-offset: 4px;

                }

                .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(--base-color);
                    font-size: var(--font-tx);
                    font-weight: var(--fw-bold);
                    position: relative;
                    padding: 10px 15px !important;
                    display: flex;
                }

                .m_header .menu-link:hover {
                    color: var(--primary-color);
                }

                .m_header .menu-link:hover i {
                    color:var(--primary-color);
                }

                .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 var(--base-color);
                    color: var(--base-color);
                    margin-left: 10px;
                }

                .m_header .dropdown-toggle::after {
                    margin-top: 5px;
                }

                .navbar-nav .nav-link.active {
                    color: var(--base-color) !important;
                }

                @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:1700px) and (max-width:1900px) {
                    .m_header .menu-link {
                        font-size: 18px;
                    }
                      .m_header .responsive-button {
                        font-weight: var(--fw-bold);
                        font-size: 20px;
                        padding: 8px 30px;
                    }
                }

                @media (min-width:1900px) and (max-width:2500px) {
                    .m_header .responsive-button {
                        margin: 10px 0;
                    }

                    .m_header .nav_img {
                        width: 100px;
                    }

                    .m_header .menu-link {
                        font-size: 22px;
                    }

                    .m_header .responsive-button {
                        font-weight: var(--fw-bold);
                        font-size: 25px;
                        padding: 8px 35px;
                    }
                }

                .sm_txt {
                    position: relative;
                    display: inline-block;
                    padding: 5px 12px;
                    border: 2px solid;
                    border-radius: 3px;
                    margin-right: 18px;
                }

                .sm_txt.light {
                    color: var(--primary-color);
                    border-color: var(--primary-color);
                }

                .sm_txt.light::before,
                .sm_txt.light::after {
                    background: #7eaa6c;
                }

                .sm_txt.dark {
                    color: #00d562;
                    border-color: #00d562;
                }

                .sm_txt.dark::before,
                .sm_txt.dark::after {
                    background: #00d562;
                }

                .sm_txt::before {
                    content: "";
                    position: absolute;
                    right: -12px;
                    top: 28%;
                    width: 13px;
                    height: 2px;
                }

                .sm_txt::after {
                    content: "";
                    position: absolute;
                    right: -28px;
                    top: 58%;
                    width: 27px;
                    height: 2px;
                }

                .mr_45 {
                    margin-right: 45px;
                }