﻿body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--bg);
    color: var(--text);
    transition: background 0.3s, color 0.3s;
    margin: 0;
}
/* font family*/
@font-face {
    font-family: 'RobotoCondensed';
    src: url('../fonts/RobotoCondensed.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoCondensed-Regular';
    src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype');
}
/* font family*/

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

:root {
    --headfont: 'RobotoCondensed', sans-serif;
    --subfont: 'RobotoCondensed-Regular', sans-serif;
    --bodyfont: 'Inter', sans-serif;
    --bg: #ffffff;
    --text: #0f172a;
    --heading: #1d753b;
    --subheading: #39aea9;
    --accent: #028174;
    --highlight: #cea473;
}

.dark-mode {
    --bg: #0f172a;
    --text: #e2e8f0;
    --heading: #86efac;
    --subheading: #4ade80;
    --accent: #22c55e;
    --highlight: #cea473;
}

.head1, .head2, .head3, .highlight {
    font-family: var(--headfont);
    margin: 0px 0px 15px;
}

.highlight {
    font-style: italic;
}

.head1 {
    font-size: 55px;
    line-height: 1.2;
    color: var(--heading);
}

.dark-mode .head1 {
    color: #FFB95C;
}

.head2 {
    font-size: 37px;
    line-height: 1.3;
    color: var(--heading);
}

.head3 {
    font-size: 30px;
    line-height: 1.2;
    font-family: var(--subfont);
}

.dark-mode .head3 {
    color: #FFD29D;
}

.head4, .head5, .head6 {
    margin: 0px 0px 15px;
    font-size: 30px;
    line-height: 1.2;
    color: var(--heading);
    font-family: var(--headfont);
}

.head5 {
    margin: 0px 0px 10px;
    font-size: 18px;
}

.head6 {
    margin: 0px 0px 10px;
    font-size: 16px;
}

.sub-head1 {
    margin: 0px;
    padding: 40px 0px;
    color: #FFB95C;
    font-family: var(--headfont);
    font-size: 42px;
}

.dark-mode .sub-head1 {
    color: #86efac;
}

.dark-mode .head4, .dark-mode .head6 {
    color: #FFB95C;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.highlight {
    font-size: 20px;
    line-height: 1.4;
    color: var(--highlight);
}

.ptag {
    font-size: 22px;
    font-family: var(--headfont);
    line-height: 1.3;
}

.Desktop {
    display: block;
}

.Mobile {
    display: none;
}

.C_Align {
    text-align: center;
}

.hero-section-bg {
    background-color: #0f172a;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99;
}

    .fixed-top.scrolled {
        background-color: #fff !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        transition: background-color 200ms linear;
    }

.admin-fixed-top {
    background-color: #fff !important;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 200ms linear;
}

.logo-menu {
    background-color: #0e1525 !important;
    border-radius: 50px;
    margin: 0px 0px 0px;
}

    .logo-menu.scrolled {
        background-color: #fff !important;
        transition: background-color 200ms linear;
    }

.logo a img {
    width: 275px;
    padding: 5px 0px;
}

.mainMenu {
    list-style-type: none;
    margin: 0px 0px 0px -40px;
    text-align: left;
}

    .mainMenu li {
        display: inline-flex;
        padding: 14px 35px 14px 20px;
        transition: all 0.5s;
    }

        .mainMenu li ul {
            text-align: left;
        }

            .mainMenu li ul li {
                padding: 0px;
                width: 100%;
                display: inline-block;
                transition: all 0.5s;
            }

        .mainMenu li a {
            color: #fff;
            font-size: 16px;
            transition: all 0.5s;
        }

            .mainMenu li a:hover {
                color: #E89A39;
            }

        .mainMenu li ul li a {
            font-size: 15px;
            font-family: var(--bodyfont);
            text-transform: none;
            border-radius: 15px;
        }

.mainMenu_Black li a {
    color: #000;
}

.dropdown-menu {
    font-size: 15px;
    background-color: #fff;
    border-radius: 15px;
    top: 52px;
    left: 20px;
}

.dark-mode .dropdown-menu {
    font-size: 15px;
    background-color: #fff;
}

.login-list {
    list-style-type: none;
    text-align: right;
    margin: 0px -15px 0px 0px;
}

    .login-list li {
        display: inline-block;
        padding: 4px 0px 4px 5px;
    }

        .login-list li h5 {
            margin: 5px 0px 2px;
            font-size: 14px;
            color: #E89A39;
        }

.dark-mode .login-list li h5 {
    color: #22c55e;
}

.login-list li h5 span span {
    background-color: #E89A39;
    color: #0f172a;
    font-size: 13px;
    padding: 3px;
    border-radius: 50px;
}

.dark-mode .login-list li h5 span span {
    background-color: #22c55e;
    color: #fff;
}

.login-list li p {
    margin: 4px 0px 0px;
    font-size: 14px;
}

    .login-list li p a {
        color: #fff;
        transition: all 0.5s;
        cursor: pointer;
    }

    .login-list li p span a {
        font-size: 15px;
    }

    .login-list li p i, .login-list li p a:hover {
        color: #E89A39;
    }

    .login-list li p a img {
        width: 32px;
        vertical-align: middle;
    }

.login-list-admin li p a {
    color: #000;
}

.dark-mode .login-list li p i {
    color: #22c55e;
}

.dark-mode .login-list li p a:hover {
    color: #22c55e;
}

.fixed-top.scrolled .login-list li p a {
    color: #000 !important;
    transition: all 0.5s;
}

    .fixed-top.scrolled .login-list li p a:hover {
        color: #E89A39 !important;
    }

.dark-mode .fixed-top.scrolled .login-list li p a:hover {
    color: #22c55e !important;
}

.login-signup-btn {
    background-color: #FFB95C;
    border: 1px solid #FFB95C;
    color: #000;
    padding: 10px 15px;
    border-radius: 30px;
    width: 100px;
    font-size: 15px;
    transition: all 0.5s;
}

    .login-signup-btn:hover {
        border: 1px solid #E89A39;
        background-color: #E89A39;
        color: #fff;
    }

.dark-mode .login-signup-btn {
    background-color: #22c55e;
    border: 1px solid #22c55e;
    color: #fff;
}

    .dark-mode .login-signup-btn:hover {
        background-color: #1d753b;
        border: 1px solid #1d753b;
    }

.fixed-ht {
    height: 55px;
}

.master-body-bg {
    background: linear-gradient(135deg, #e8f5e9 0%, #fdfcfb 100%);
    transition: background 0.4s ease, color 0.4s ease;
}

.dark-mode .master-body-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.banner-img {
    position: absolute;
}

    .banner-img table {
        width: 100%;
        height: 100vh;
    }

        .banner-img table tr td {
            vertical-align: bottom;
        }

            .banner-img table tr td img {
                width: 95%;
            }

.hero-text {
    position: absolute;
    width: 120%;
    height: 100vh;
}

    .hero-text tr td {
        vertical-align: middle;
    }

        .hero-text tr td h1 {
            font-family: var(--headfont);
            margin: 20px 0px 15px;
            text-transform: uppercase;
            color: #FFB95C;
            font-size: 58px;
            line-height: 1.2;
            width: 120%;
        }

.dark-mode .hero-text tr td h1 {
    color: #22c55e;
}

.hero-text tr td h2 {
    font-family: var(--bodyfont);
    margin: 0px 0px 15px;
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
}

.hero-text tr td h3 {
    margin: 30px 0px 0px;
    font-family: var(--bodyfont);
}

    .hero-text tr td h3 a {
        border: 1px solid #FFB95C;
        background-color: #FFB95C;
        color: #000;
        padding: 10px 20px;
        transition: all 0.5s;
        border-radius: 30px;
        font-size: 17px;
    }

        .hero-text tr td h3 a:hover {
            border: 1px solid #E89A39;
            background-color: #E89A39;
            color: #fff;
        }

.dark-mode .hero-text tr td h3 a {
    border: 1px solid #22c55e;
    background-color: #22c55e;
    color: #fff;
}

    .dark-mode .hero-text tr td h3 a:hover {
        border: 1px solid #1d753b;
        background-color: #1d753b;
    }

.gradient {
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 2;
    margin: -200px 0px 0px;
}

.gradient-bg-01 {
    background: linear-gradient(135deg, #e8f5e9 0%, #fdfcfb 100%);
    color: var(--text);
    padding: 60px 0;
    transition: background 0.4s ease, color 0.4s ease;
}

.gradient-bg-02 {
    transition: background 0.4s ease, color 0.4s ease;
    margin: 20px 0px 80px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 20px;
    color: var(--text);
}

.dark-mode .gradient-bg-01 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text);
}

.dark-mode .gradient-bg-02 {
    background-color: #141f38;
    color: var(--text);
}

.link {
    margin: 20px 0px 10px;
}

    .link a {
        border: 1px solid #FFB95C;
        background-color: #FFB95C;
        color: #000;
        padding: 7px 14px;
        transition: all 0.5s;
        border-radius: 30px;
        font-size: 15px;
    }

        .link a:hover {
            background-color: #E89A39;
            border: 1px solid #E89A39;
            color: #fff;
        }

.dark-mode .link a {
    border: 1px solid #22c55e;
    background-color: #22c55e;
    color: #fff;
}

    .dark-mode .link a:hover {
        border: 1px solid #1d753b;
        background-color: #1d753b;
    }

/*div-box-01*/

.div-box-01 {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin: 10px 0px;
}

.dark-mode .div-box-01 {
    background-color: #0f172a;
}

.div-box-01 h1 {
    font-family: var(--headfont);
    font-size: 85px;
    color: var(--heading);
    margin: 10px 0px;
}

.dark-mode .div-box-01 h1 {
    color: #FFB95C;
}

.div-box-01 h2 {
    font-family: var(--bodyfont);
    font-size: 16px;
}

/*div-box-02*/

.div-box-02 {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin: 10px 0px;
    transition: all 0.5s;
}

    .div-box-02:hover {
        transform: scale(1.1);
        object-fit: cover;
        position: relative;
    }

.dark-mode .div-box-02 {
    background: #141f38;
}

.div-box-02 h6 {
    margin: 0px 0px 5px;
}

    .div-box-02 h6 img {
        width: 80%;
        border-radius: 50%;
        border: 1px solid #ccc;
        padding: 3px;
        transition: all 0.5s;
    }

.div-box-02:hover h6 img {
    border: 1px solid #FFB95C;
}

.div-box-02 h5 {
    font-family: var(--bodyfont);
    font-size: 15px;
    line-height: 1.4;
    margin: 10px 0px 0px;
    min-height: 70px;
}

.dark-mode .div-box-02 h5 {
    color: #ffffff;
}

.dark-mode .div-box-02 h6 img {
    border: 2px solid #fff;
}

.div-box-02-domain {
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.15);
}

/*div-box-03*/

.div-box-03 {
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin: 10px 0px;
    transition: all 0.5s;
}

    .div-box-03:hover {
        transform: scale(1.1);
        object-fit: cover;
        position: relative;
    }

    .div-box-03 h6 {
        margin: 0px;
        background-color: #fff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        text-align: center;
    }

        .div-box-03 h6 img {
            width: 60%;
            padding: 15px;
            border-radius: 50%;
        }

    .div-box-03 div {
        padding: 25px;
        background-color: transparent;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

        .div-box-03 div h3 {
            margin: 0px 0px 7px;
            font-family: var(--headfont);
            font-size: 18px;
        }

        .div-box-03 div h4 {
            margin: 0px 0px 10px;
            font-size: 15px;
            line-height: 1.3;
            font-family: var(--headfont);
            min-height: 40px;
        }

        .div-box-03 div ul {
            margin: 0px 0px 15px -40px;
            list-style-type: none;
            font-size: 14px;
            color: #000;
            min-height: 135px;
        }

            .div-box-03 div ul li {
                display: inline-block;
                padding: 10px;
                background-color: rgba(0,0,0,0.1);
                border-radius: 15px;
            }

                .div-box-03 div ul li span {
                    /*background-color: rgba(0,0,0,0.1);
                    padding: 5px 10px;
                    border-radius: 20px;*/
                }

        .div-box-03 div p {
            margin: 10px 0px 0px;
        }

            .div-box-03 div p a {
                border: 1px solid #FFB95C;
                background-color: #FFB95C;
                color: #000;
                padding: 5px 10px;
                border-radius: 20px;
                font-size: 14px;
                transition: all 0.5s;
            }

                .div-box-03 div p a:hover {
                    border: 1px solid #E89A39;
                    background-color: #E89A39;
                    color: #fff;
                }

.dark-mode .div-box-03 div p a {
    border: 1px solid #22c55e;
    background-color: #22c55e;
    color: #fff;
}

    .dark-mode .div-box-03 div p a:hover {
        border: 1px solid #1d753b;
        background-color: #1d753b;
    }

.dark-mode .div-box-03 div {
    background: #0f172a;
}

    .dark-mode .div-box-03 div ul li span {
        background-color: #fff;
    }

.div-box-03 div h6 {
    float: right;
    border: none;
    background-color: transparent;
    margin: 0px;
}

    .div-box-03 div h6 img {
        width: 25px;
        border-radius: 50px;
    }

    .div-box-03 div h6 span a img {
        padding: 0px;
        margin: -10px 0px 0px 0px;
    }

/*div-box-04*/
.div-box-04 {
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin: 10px 0px;
    transition: all 0.5s;
    min-height: 450px;
}

    .div-box-04 h6 {
        margin: 0px;
    }

        .div-box-04 h6 img {
            width: 100%;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
        }

    .div-box-04 div {
        padding: 25px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

        .div-box-04 div h3 {
            margin: 0px 0px 10px;
            font-family: var(--headfont);
            font-size: 18px;
            line-height: 1.3;
        }

.dark-mode .div-box-04 {
    background-color: #141f38;
}

    .dark-mode .div-box-04 div p {
        color: #fff;
    }

.div-box-04 div h6 {
    margin: 15px 0px 10px;
    font-size: 14px;
}

    .div-box-04 div h6 a {
        border: 1px solid #FFB95C;
        background-color: #FFB95C;
        color: #000;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 14px;
        transition: all 0.5s;
        cursor: pointer;
    }

        .div-box-04 div h6 a:hover {
            border: 1px solid #E89A39;
            background-color: #E89A39;
            color: #fff;
        }

.dark-mode .div-box-04 div h6 a {
    border: 1px solid #22c55e;
    background-color: #22c55e;
    color: #fff;
}

.top-mentor tr td {
    padding: 0px 15px;
    width: 33.333%;
}

.partner-eco {
    margin: 15px 0px 10px;
}

    .partner-eco img {
        width: 80%;
        border: 1px solid rgba(0,0,0,0.15);
        border-radius: 25px;
        background-color: #fff;
        padding: 15px;
        transition: all 0.5s;
    }

        .partner-eco img:hover {
            transform: scale(1.1);
            object-fit: cover;
            position: relative;
        }

.padding-01 {
    padding: 60px 0px;
}

.padding-02 {
    padding: 60px 0px 0px;
}

.padding-03 {
    padding: 50px 0px;
}

.mtop {
    margin-top: 15px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

    .image-container table {
        width: 100%;
        height: 375px;
        text-align: center;
        position: relative;
    }

        .image-container table tr td {
            vertical-align: middle;
        }

            .image-container table tr td h2 {
                line-height: 1.3;
                font-size: 22px;
                font-family: var(--headfont);
            }

                .image-container table tr td h2 span {
                    color: #fff;
                    padding: 5px;
                    font-size: 35px;
                }

            .image-container table tr td h2, .image-text h3 {
                margin: 0px;
                color: #fff;
                font-size: 23px;
            }

    .image-container:hover table {
        position: static;
    }

.image-text h3 {
    margin: 50px 0px 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: var(--headfont);
}

.image-text p {
    color: #fff;
    text-align: left;
    line-height: 1.5;
}

.image-bg-01::before, .image-bg-02::before, .image-bg-03::before, .image-bg-04::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.image-bg-01::before {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/general/process-01.jpg);
    background-size: cover;
    background-position: center;
}

.image-bg-02::before {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/general/process-02.jpg);
    background-size: cover;
    background-position: center;
}

.image-bg-03::before {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/general/process-03.jpg);
    background-size: cover;
    background-position: center;
}

.image-bg-04::before {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/general/process-04.jpg);
    background-size: cover;
    background-position: center;
}

.image-text {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 405px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    transition: bottom 0.5s ease;
}

.image-container:hover .image-text {
    bottom: 0;
}

.expand {
    width: 100%;
    display: flex;
    margin: 20px 0px 0px;
}

.joinus-box {
    height: 400px;
    overflow: hidden;
    padding: 30px;
    font-size: 30px;
    flex: 1;
    transition: 1s;
    cursor: pointer;
}

    .joinus-box:hover {
        flex: 3;
    }

    .joinus-box table {
        width: 100%;
        height: 400px;
        text-align: center;
    }

        .joinus-box table tr td {
            vertical-align: middle;
        }

            .joinus-box table tr td h3 {
                color: #fff;
                font-family: var(--headfont);
                margin: 0px;
                font-size: 30px;
                line-height: 1.2;
            }

.joinus-box-01 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/why-join-us-01.jpg);
    background-size: cover;
    background-position: center;
}

.joinus-box-02 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/why-join-us-02.jpg);
    background-size: cover;
    background-position: center;
}

.joinus-box-03 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/why-join-us-03.jpg);
    background-size: cover;
    background-position: center;
}

.joinus-box-04 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/why-join-us-04.jpg);
    background-size: cover;
    background-position: center;
}

.joinus-box-05 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/why-join-us-05.jpg);
    background-size: cover;
    background-position: center;
}

.testi-width-left, .testi-width-right {
    float: left;
    position: relative;
    min-height: 1px;
}

.testi-width-left {
    width: 60%;
}

.testi-width-right {
    width: 40%;
}

.testi-content {
    background-color: #fff;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 25px;
}

.test-div h6 {
    font-size: 30px;
    color: #FFB95C;
    margin: 0px 0px 10px;
}

.test-div h5 {
    font-family: var(--headfont);
    line-height: 1.3;
    font-size: 15px;
}

.testi-bg {
    background-image: url(../images/general/student-bg.jpg);
    background-size: cover;
    background-position: center;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testi-content, .testi-bg {
    height: 400px;
}

.dark-mode .testi-content {
    background-color: #0f172a;
}

.footer-bg-01 {
    background-color: #0f172a;
    padding: 40px 0px 30px;
}

.footer-bg-02 {
    background-color: #0e1525;
}

.dark-mode .footer-bg-01 {
    background-color: #0f172a;
}

.footer-width {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 20%;
}

.fhead {
    margin: 0px 0px 3px;
    color: #FFB95C;
    font-size: 15px;
    font-family: var(--headfont);
}

.flist {
    margin: 0px 0px 15px -40px;
    list-style-type: none;
}

    .flist li a i {
        color: #FFB95C;
        padding-right: 5px;
    }

    .flist li {
        padding: 1px 0px;
    }

        .flist li a {
            color: #fff;
            font-size: 14px;
            transition: all 0.5s;
        }

            .flist li a:hover {
                color: #FFB95C;
                margin-left: 5px;
            }

.dark-mode .fhead {
    color: #22c55e;
}

.dark-mode .flist li a:hover {
    color: #86efac;
}

.dark-mode .flist li a i {
    color: #86efac;
}

.social-icon {
    margin: 10px 0px 15px;
}

    .social-icon a {
        color: #fff;
        transition: all 0.5s;
        font-size: 18px;
    }

        .social-icon a i {
            padding-right: 5px;
        }

        .social-icon a:hover {
            color: #FFB95C;
        }

.copyright {
    margin: 5px 0px;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

    .copyright a {
        color: #fff;
        transition: all 0.5s;
    }

        .copyright a:hover {
            text-decoration: underline;
        }

/*Arrow section starts*/
#toTop {
    text-decoration: none;
    display: none;
    position: fixed;
    bottom: 10%;
    right: 1%;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border: none;
    text-indent: 100%;
    z-index: 10;
}

#toTop {
    background: url("../images/icons/up-arrow-green.png") no-repeat 0px 0px;
}

.dark-mode #toTop {
    background: url("../images/icons/up-arrow-yellow.png") no-repeat 0px 0px;
}
/*Arrow section ends*/

.login-div {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 10px 0px;
}

.dark-mode .login-div {
    background-color: #0f172a;
}

.login-div h2 {
    margin: 0px 0px 10px;
    font-family: var(--headfont);
    color: #1d753b;
    font-size: 30px;
}

.dark-mode .login-div h2 {
    color: #FFB95C;
}

.dark-mode .login-div h5 {
    color: #22c55e;
}

.login-div h5 {
    margin: 0px 0px 15px;
    font-family: var(--headfont);
    color: #E89A39;
    font-size: 16px;
}

.form-txtbx {
    border: 1px solid rgba(0,0,0,0.15);
    background-color: #f2f2f2;
    border-radius: 7px;
    padding: 7px 10px;
    color: #000;
    font-size: 15px;
    width: 100%;
}

.form-txtbx-ddl {
    padding: 9px 10px;
}

    .form-txtbx-ddl option {
        font-size: 15px;
    }

.dark-mode .form-txtbx {
    border: 1px solid #fff;
    background-color: #fff;
}

.form-txtbx-gray {
    border: 1px solid #1d753b;
    background-color: #E9F8D3;
}

.dark-mode .form-txtbx-gray {
    border: 1px solid #FFB95C;
    background-color: #fff4e6;
}

.form-message {
    font-family: var(--headfont);
    font-size: 17px;
    color: #1d753b;
}

.dark-mode .form-message {
    color: #FFB95C;
}

.login-div table {
    width: 100%;
}

    .login-div table tr td:nth-child(2) {
        padding: 0px 10px;
    }

.refresh-btn {
    border: 1px solid #1d753b;
    background-color: #1d753b;
    color: #fff;
    border-radius: 50px;
    transition: all 0.5s;
}

    .refresh-btn:hover {
        background-color: #22c55e;
        border: 1px solid #22c55e;
    }

.dark-mode .refresh-btn {
    border: 1px solid #FFB95C;
    background-color: #FFB95C;
    color: #000;
}

    .dark-mode .refresh-btn:hover {
        border: 1px solid #E89A39;
        background-color: #E89A39;
        color: #fff;
    }

.form-btn {
    background-color: #1d753b;
    border: 1px solid #1d753b;
    color: #fff;
    padding: 7px 10px;
    border-radius: 30px;
    width: 100px;
    font-size: 14px;
    transition: all 0.5s;
}

    .form-btn:hover {
        background-color: #22c55e;
        border: 1px solid #22c55e;
    }

.dark-mode .form-btn {
    background-color: #FFB95C;
    border: 1px solid #FFB95C;
    color: #000;
}

    .dark-mode .form-btn:hover {
        background-color: #E89A39;
        border: 1px solid #E89A39;
        color: #fff;
    }

.login-div i {
    color: #1d753b;
    font-size: 18px;
}

.dark-mode .login-div i {
    color: #FFB95C;
}

.form-btn-txt {
    border: none;
    background-color: transparent;
    color: #1d753b;
    transition: all 0.5s;
    font-family: var(--headfont);
    font-size: 16px;
}

    .form-btn-txt:hover {
        color: #22c55e;
    }

.dark-mode .form-btn-txt {
    color: #FFB95C;
}

    .dark-mode .form-btn-txt:hover {
        color: #E89A39;
    }

.usertype-list {
    margin: 15px 0px 12px;
}

    .usertype-list ul {
        margin: 0px 0px 0px -40px;
        list-style-type: none;
    }

        .usertype-list ul li {
            display: inline-block;
            margin: 0px 5px 0px 0px;
        }

            .usertype-list ul li a {
                border: 1px solid #1d753b;
                background-color: #1d753b;
                color: #fff;
                padding: 10px 15px;
                border-radius: 30px;
                transition: all 0.5s;
            }

                .usertype-list ul li a:hover {
                    background-color: #fff;
                    color: #000;
                }

.dark-mode .usertype-list ul li a {
    border: 1px solid #FFB95C;
    background-color: #FFB95C;
    color: #000;
}

    .dark-mode .usertype-list ul li a:hover {
        background-color: transparent;
        color: #FFB95C;
    }

/* Active tab */
.usertype-list ul li a.active {
    background-color: #fff;
    color: #000;
}

.dark-mode .usertype-list ul li a.active {
    background-color: transparent;
    color: #FFB95C;
}

/* Completed tab ✅ */
.usertype-list ul li a.completed::after {
    content: " ✅";
    font-size: 14px;
    color: green;
    margin-left: 5px;
}


.form-div {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 10px 0px;
}

.dark-mode .form-div {
    background-color: #141f38;
}

.form-div-text h5, .form-div-text h2, .form-div-text h2 span {
    margin: 0px 0px 5px;
    font-size: 15px;
    line-height: 1.5;
}

    .form-div-text h5 span, .form-div-text h2 span span {
        color: red;
        font-size: 12px;
    }

.form-div-text h6 {
    margin: 0px 0px 0px 15px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

    .form-div-text h6 a {
        color: #1d753b;
        transition: all 0.5s;
        font-size: 14px;
        cursor: pointer;
    }

        .form-div-text h6 a:hover {
            color: #22c55e;
        }

.dark-mode .form-div-text h6 a {
    color: #FFB95C;
}

    .dark-mode .form-div-text h6 a:hover {
        color: #E89A39;
    }

.dark-mode .form-div-text h6 {
    color: #ccc;
}

.dark-mode .form-div-text h5 span, .dark-mode .form-div-text h2 span span {
    color: #ff704d
}

.form-div-text h5 span span {
    color: var(--text);
}

.form-div-text h1 {
    margin: 0px 0px 15px;
    font-size: 12px;
    color: red;
}

.bottom-line {
    border-bottom: 1px solid #FFB95C;
    margin: 10px 0px 15px;
}

.dark-mode .bottom-line {
    border-bottom: 1px solid #22c55e;
}

.dark-mode .form-div-text h1 {
    color: #ff704d;
}

.form-div-text p {
    margin: 0px 0px 15px;
}

.reg-next-pre-btn {
    text-align: right;
}

    .reg-next-pre-btn a {
        color: #1d753b;
        font-size: 28px;
        transition: all 0.5s;
    }

        .reg-next-pre-btn a:hover {
            color: #22c55e;
        }

.dark-mode .reg-next-pre-btn a {
    color: #FFB95C;
}

    .dark-mode .reg-next-pre-btn a:hover {
        color: #E89A39;
    }

input.invalid, textarea.invalid {
    border: 1px solid red !important;
}

.form-div-text h4 {
    margin: 0px 0px 15px;
    font-family: var(--headfont);
    font-size: 18px;
    color: #1d753b;
    border-bottom: 1px solid #22c55e;
    padding: 0px 0px 10px 0px;
    line-height: 1.5;
}

.dark-mode .form-div-text h4 {
    color: #FFB95C;
    border-bottom: 1px solid #E89A39;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    font-size: 25px;
    color: #1d753b;
    /*font-weight: 500;*/
    font-family: var(--headfont);
}

.dark-mode .modal-title {
    color: #FFB95C;
}

.close {
    color: #1d753b;
    transition: all 0.5s;
}

    .close:hover,
    .close:focus {
        color: #22c55e;
    }

.dark-mode .close {
    color: #FFB95C;
}

    .dark-mode .close:hover,
    .dark-mode .close:focus {
        color: #E89A39;
    }

.modal-content {
    background-color: #fff;
}

.dark-mode .modal-content {
    background-color: #0f172a;
}

.may-list {
    margin: 0px 0px 10px 0px;
    color: #1d753b;
}

    .may-list li {
        list-style-type: square;
        padding: 3px 0px;
        line-height: 22px;
    }

        .may-list li span {
            color: var(--text);
        }

.modal-body-may p {
    margin-bottom: 20px;
}

.dark-mode .may-list {
    color: #FFB95C;
}

.error {
    color: red;
    font-size: 13px;
}

.dark-mode .error {
    color: #ff704d;
}

#mentorUsernameStatus, #menteeUsernameStatus {
    font-size: 13px;
}

.profile-left {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 25px 25px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.dark-mode .profile-left {
    border: 1px solid #0f172a;
    background-color: #141f38;
}

.profile-all {
    border-radius: 20px;
}

.profile-left h6 {
    text-align: center;
    margin: 10px 0px;
}

    .profile-left h6 img {
        width: 135px;
        border-radius: 5px;
        background-color: #fff;
        margin-bottom: 10px;
    }

.profile-left h4 {
    margin: 10px 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #1d753b;
    font-family: var(--headfont);
    font-size: 15px;
    border-bottom: 1px solid #1d753b;
}

.dark-mode .profile-left h4 {
    color: #FFB95C;
    border-bottom: 1px solid #FFB95C;
}

.profile-left h5 {
    margin: 10px 0px 15px;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
}

    .profile-left h5 a {
        color: var(--text);
        transition: all 0.5s;
    }

        .profile-left h5 a:hover {
            text-decoration: underline;
        }

        .profile-left h5 a img {
            width: 30px;
            margin: 5px 0px 0px;
            border: 1px solid #ffc674;
            border-radius: 50%;
        }

.profile-right {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px 25px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-bottom: 15px;
}

.dark-mode .profile-right {
    border-top: 1px solid #0f172a;
    border-bottom: 1px solid #0f172a;
    border-right: 1px solid #0f172a;
    background-color: #141f38;
}

.profile-right h6 {
    text-align: right;
    margin: 20px 0px 10px;
}

.profile-right div h6 {
    margin: 10px 0px 20px;
}

.profile-left h6 {
    margin: 10px 0px;
}

    .profile-right h6 a, .profile-left h6 a, .profile-right div h6 a:hover {
        background-color: #1d753b;
        border: 1px solid #1d753b;
        color: #fff;
        padding: 5px 10px;
        border-radius: 30px;
        min-width: 100px;
        font-size: 13px;
        transition: all 0.5s;
        cursor: pointer;
    }

        .profile-left h6 a:hover {
            background-color: #22c55e;
            border: 1px solid #22c55e;
        }

.dark-mode .profile-right h6 a, .dark-mode .profile-left h6 a, .dark-mode .profile-right div h6 a:hover {
    background-color: #FFB95C;
    border: 1px solid #FFB95C;
    color: #000;
}

.profile-left h6 a:hover {
    background-color: #E89A39;
    border: 1px solid #E89A39;
}

.profile-right div h6 a {
    background-color: #1d753b;
    border: 1px solid #1d753b;
    color: #ffc674;
}

.profile-right h6 a:hover {
    background-color: #1d753b;
    color: #ffc674;
}

.profile-box {
    margin: 10px 0px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 5px 10px;
}

.profile-box-wt {
    background-color: #fff;
    overflow-x: auto;
}

.dark-mode .profile-box-wt {
    background-color: #0f172a;
}

.profile-box h5 {
    font-size: 14px;
    color: #1d753b;
    border-bottom: 1px solid #f1f1f1;
    margin: 10px 0px 5px;
    padding-bottom: 5px;
    line-height: 22px;
}

    .profile-box h5 a {
        text-decoration: underline;
        color: #1d753b;
    }

.dark-mode .profile-box h5 {
    color: #FFB95C;
}

.profile-box p {
    font-size: 14px;
    margin: 0px 0px 5px;
}

    .profile-box p span {
        color: #1d753b;
    }

.dark-mode .profile-box p span {
    color: #FFB95C;
}

.profile-info-tbl {
    width: 100%;
    font-size: 14px;
}

    .profile-info-tbl tr td {
        padding: 5px 0px;
    }

        .profile-info-tbl tr td:nth-child(1) {
            width: 35%;
        }

        .profile-info-tbl tr td span {
            color: #000;
        }

.dark-mode .profile-info-tbl tr td span {
    color: #fff;
}

.profile-info-tbl tr td p {
    padding: 5px 0px 15px;
    margin: 0px 0px 0px;
    border-top: 1px solid #1d753b;
    font-size: 14px;
}

.dark-mode .profile-info-tbl tr td p {
    border-top: 1px solid #FFB95C;
}

.mentor-prof-cal {
    width: 100%;
}

    .mentor-prof-cal tr th, .mentor-prof-cal tr td {
        font-weight: 500;
        padding: 5px;
        text-align: center;
        font-size: 13px;
        border: 1px solid rgba(0,0,0,0.1);
        transition: all 0.5s;
    }

        .mentor-prof-cal tr td:hover {
            background-color: #ffe3b3;
        }

        .mentor-prof-cal tr td table tr td, .mentor-prof-cal tr td table tr td:hover {
            background-color: #ffc674;
        }

.mentor-prof-cal-mtop {
    margin: 10px 0px 0px;
}

.dtlViewAllMentor {
    margin: 5px 0px;
}

    .dtlViewAllMentor tr td {
        padding: 10px;
        width: 25%;
    }

.user-info {
    background-color: #eee;
    float: left;
    padding: 25px 25px 0px;
    border-radius: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 20px;
}

    .user-info h3 {
        background-color: #1d753b;
        margin: 0px 0px 5px;
        border-radius: 10px;
        padding: 3px 10px;
        line-height: 20px;
        color: #fff;
        font-size: 14px;
    }

.dark-mode .user-info h3 {
    background-color: #FFB95C;
    color: #000;
}

.user-info h4 {
    margin: 0px 0px 0px;
    color: #000;
    font-size: 14px;
    line-height: 22px;
}

.user-info p {
    margin: 0px;
    color: #000;
    font-size: 14px;
}

    .user-info h4 i, .user-info p i {
        color: #1d753b;
        width: 20px;
    }

.dark-mode .user-info h4 i, .dark-mode .user-info p i {
    color: #E89A39;
}

.ddlViewSlot h2 {
    margin: 0px 0px 5px 0px;
    text-align: right;
    font-size: 14px;
    color: #000;
}

    .ddlViewSlot h2 span {
        color: #1d753b;
    }

.ddlViewSlot h3 {
    margin: 0px 0px 10px;
    font-size: 16px;
    color: #1d753b;
}

.dark-mode .ddlViewSlot h3 {
    color: #FFB95C;
}

.ddlViewSlot h4 {
    margin: 0px 0px 15px;
    font-size: 14px;
    color: #000;
}

.dark-mode .ddlViewSlot h4 {
    color: #fff;
}

.ddlViewSlot p i {
    color: #1d753b;
    padding-right: 5px;
}

.ddlViewSlotDetails h1 {
    color: #1d753b;
    margin: 10px 0px 15px;
    font-size: 15px;
}

.dark-mode .ddlViewSlotDetails h1 {
    color: #FFB95C;
}

.ddlViewSlotDetails h1 span {
    padding-left: 10px;
}

.ddlViewSlotDetails h1 i {
    font-size: 20px;
    color: #1d753b;
    padding-right: 5px;
}

.ddlViewSlotDetails h3 {
    font-size: 14px;
    color: #fff;
    border-radius: 15px;
    margin: 0px 0px 10px;
    line-height: 24px;
    display: inline-block;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #1d753b;
    position: absolute;
    top: 20px;
    right: 1%;
}

    .ddlViewSlotDetails h3 span {
        color: #fcc272;
        display: inline-flex;
        min-width: 65px
    }

.ddlViewSlotDetails-report h3 {
    position: relative;
    top: 0;
    float: right;
    margin: -43px -32px -48px 0px;
}

.ddlViewSlotDetails h4 {
    font-size: 14px;
    line-height: 25px;
}

/*Rounded switch*/
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #1d753b;
}

input:focus + .slider {
    box-shadow: 0 0 1px #72b01d;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/* Rounded sliders */

.switch-div {
    padding: 25px;
}

.bg-sub-banner {
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url(../images/general/connecting-bg.png);
    background-position: center;
    background-size: cover;
}

.dark-mode .bg-sub-banner {
    background-color: #0e1525;
}

.bg-about {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/general/sub-about.jpg);
    background-position: center;
    background-size: cover;
}

.bg-vision {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-vision.jpg);
    background-position: center;
    background-size: cover;
}

.bg-mentors {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-mentors.jpg);
    background-position: center;
    background-size: cover;
}

.bg-contact {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-contact.jpg);
    background-position: center;
    background-size: cover;
}

.bg-sitemap {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-sitemap.jpg);
    background-position: center;
    background-size: cover;
}

.bg-blogs {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-blogs.jpg);
    background-position: center;
    background-size: cover;
}

.bg-news {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-news.jpg);
    background-position: center;
    background-size: cover;
}

.bg-videos {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-videos.jpg);
    background-position: center;
    background-size: cover;
}

.bg-faqs {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-faqs.jpg);
    background-position: center;
    background-size: cover;
}

.bg-blogs {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-blogs.jpg);
    background-position: center;
    background-size: cover;
}

.bg-terms {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-terms.jpg);
    background-position: center;
    background-size: cover;
}

.bg-policy {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-policy.jpg);
    background-position: center;
    background-size: cover;
}

.mentor-div {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px 25px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 0px 0px 20px;
}

.dark-mode .mentor-div {
    background-color: #0f172a;
}

.mentor-img img {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
}

.mentor-dtl h1 {
    margin: 0px 0px 10px;
    font-size: 22px;
    color: #1d753b;
    font-family: var(--headfont);
    line-height: 1.5;
}

.dark-mode .mentor-dtl h1 {
    color: #FFB95C;
}

.mentor-dtl h1 span {
    color: var(--text);
    font-size: 15px;
}

.mentor-dtl h6 {
    float: right;
    margin: 0px 0px 10px;
}

    .mentor-dtl h6 img {
        width: 30px;
        border-radius: 50px;
    }

.mentor-dtl h2 {
    margin: 0px 0px 10px;
    font-size: 15px;
    line-height: 25px;
}

    .mentor-dtl h2 a {
        color: var(--text);
    }

.mentor-dtl h3 {
    margin: 5px 0px 10px 0px;
    font-size: 14px;
    color: #000;
    line-height: 22px;
}

    .mentor-dtl h3 span {
        background-color: #eee;
        padding: 5px 15px;
        border-radius: 30px;
    }

.mentor-dtl p {
    font-size: 14px;
}

.mentor-dtl-01 h3 {
    line-height: 35px;
}

    .mentor-dtl-01 h3 span {
        background-color: rgba(0,0,0,0.1);
        padding: 5px 10px;
        border-radius: 15px;
        color: #000;
    }

.mentor-dtl h4 {
    margin: 20px 0px 10px;
}

    .mentor-dtl h4 a, .mentor-profile-contact h5 a {
        border: 1px solid #1d753b;
        background-color: #1d753b;
        color: #fff;
        border-radius: 15px;
        padding: 5px 10px;
        font-size: 14px;
        transition: all 0.5s;
    }

        .mentor-dtl h4 a:hover, .mentor-profile-contact h5 a:hover {
            border: 1px solid #22c55e;
            background-color: #22c55e;
        }

.dark-mode .mentor-dtl h4 a, .dark-mode .mentor-profile-contact h5 a {
    border: 1px solid #FFB95C;
    background-color: #FFB95C;
    color: #000;
}

    .dark-mode .mentor-dtl h4 a:hover, .dark-mode .mentor-profile-contact h5 a:hover {
        border: 1px solid #E89A39;
        background-color: #E89A39;
    }

.mentor-banner-tbl {
    padding: 10px 0px;
}

    .mentor-banner-tbl table tr td {
        padding: 5px;
    }

        .mentor-banner-tbl table tr td:nth-child(1) {
            width: 35%;
        }

        .mentor-banner-tbl table tr td img {
            width: 150px;
            border-radius: 50%;
            background-color: #fff;
            padding: 3px;
        }

        .mentor-banner-tbl table tr td h3 {
            color: #fff;
            font-size: 15px;
            line-height: 27px;
            font-family: var(--headfont);
        }

            .mentor-banner-tbl table tr td h3 span {
                font-size: 30px;
                color: #ffc674;
            }

.dark-mode .mentor-banner-tbl table tr td h3 span {
    color: var(--heading);
}

.mentor-profile-contact {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 10px 0px;
    z-index: 99;
    /*position: fixed;
    top: 25%;
    width: 29%;*/
}

.dark-mode .mentor-profile-contact {
    background-color: #0f172a;
}

.mentor-profile-contact h1 {
    margin: 0px 0px 10px;
    text-align: center;
    font-size: 18px;
    color: #1d753b;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffc674;
    font-family: var(--headfont);
}

.dark-mode .mentor-profile-contact h1 {
    color: #FFB95C;
}

.mentor-profile-contact h2 {
    text-align: right;
    margin: 0px 0px 10px;
}

    .mentor-profile-contact h2 img {
        width: 30px;
        border-radius: 50px;
    }

    .mentor-profile-contact h2 i {
        padding: 0px 5px;
        cursor: pointer;
    }

.mentor-profile-contact h3 {
    margin: 0px 0px 10px;
    color: #000;
    font-size: 15px;
    line-height: 22px;
}

.dark-mode .mentor-profile-contact h3 {
    color: var(--text);
}

.mentor-profile-contact ul, .mentor-list {
    list-style-type: none;
    margin: 0px 0px 10px -40px;
    font-size: 15px;
}

    .mentor-profile-contact ul li {
        padding: 3px 0px;
    }

        .mentor-profile-contact ul li a {
            color: #000;
            transition: all 0.5s;
        }

            .mentor-profile-contact ul li a:hover {
                color: #1d753b;
            }

.dark-mode .mentor-profile-contact ul li a {
    color: #fff;
}

    .dark-mode .mentor-profile-contact ul li a:hover {
        color: #FFB95C;
    }

.mentor-profile-contact h5 {
    margin: 20px 0px 10px;
}

.user-info {
    background-color: #fff;
    float: left;
    padding: 15px 15px 0px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

    .user-info h3 {
        background-color: #1d753b;
        margin: 0px 0px 5px;
        border-radius: 5px;
        padding: 3px 5px;
        line-height: 20px;
        color: #fff;
        font-size: 15px;
    }

    .user-info h4 {
        margin: 0px 0px 0px;
        color: #000;
        font-size: 14px;
        line-height: 22px;
    }

    .user-info p {
        margin: 0px;
        color: #000;
        font-size: 15px;
        line-height: 1.7;
    }

        .user-info h4 i, .user-info p i {
            color: #1d753b;
            width: 20px;
        }

.mentorship-calendar-bg {
    background-color: #fff;
}

.mentorship-calendar {
    width: 100%;
}

    .mentorship-calendar tr td table {
        background-color: #18842e;
    }

        .mentorship-calendar tr td table tr td {
            padding: 5px;
            color: #fff;
            background-color: #18842e;
        }

            .mentorship-calendar tr td table tr td a {
                background-color: #fcc272;
                padding: 0px 7px;
                border-radius: 15px;
                font-size: 15px;
            }

    .mentorship-calendar tr th {
        text-align: center;
        padding: 5px;
        font-weight: 500;
        background-color: #FFB95C;
        border: 1px solid #18842e;
        font-size: 13px;
    }

.dark-mode .mentorship-calendar tr th {
    color: #374151;
}

.mentorship-calendar tr td {
    padding: 5px;
    font-size: 12px;
    line-height: 17px;
    border: 1px solid #18842e;
    height: 45px;
}

    .mentorship-calendar tr td a {
        color: #fff;
    }

    .mentorship-calendar tr td span {
        font-size: 11px;
    }

        .mentorship-calendar tr td span span {
            font-size: 10px;
            line-height: 15px;
        }

.mentorship-calendar tr:nth-child(1) td {
    height: auto;
    padding: 5px;
}

.mentorship-calendar td ul {
    list-style-type: none;
    margin: 0px 0px 0px -40px;
}

    .mentorship-calendar td ul li {
        padding: 2px 0px;
        font-size: 10px;
        line-height: 13px;
    }

        .mentorship-calendar td ul li:nth-child(2) {
            border-top: 1px solid #04e762;
        }

.ddlViewSlot h2 {
    margin: 0px 0px 5px 0px;
    text-align: right;
    font-size: 16px;
    color: var(--text);
    font-family: var(--headfont);
}

    .ddlViewSlot h2 span {
        color: #1d753b;
    }

.dark-mode .ddlViewSlot h2 span {
    color: #FFB95C;
}

.ddlViewSlot h3 {
    margin: 0px 0px 10px;
    font-size: 22px;
    color: #1d753b;
    font-family: var(--headfont);
}

    .ddlViewSlot h3 span {
        font-size: 15px;
    }

.dark-mode .ddlViewSlot h3 {
    color: #FFB95C;
}

.ddlViewSlot h4 {
    margin: 0px 0px 15px;
    font-size: 15px;
    color: var(--text);
}

.ddlViewSlot p i {
    color: #1d753b;
    padding-right: 5px;
}

.ddlViewSlotDetails h1 {
    color: #1d753b;
    margin: 10px 0px 15px;
    font-size: 15px;
}

    .ddlViewSlotDetails h1 span {
        padding-left: 10px;
    }

    .ddlViewSlotDetails h1 i {
        font-size: 20px;
        color: #1d753b;
        padding-right: 5px;
    }

.ddlViewSlotDetails h3 {
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    margin: 0px 0px 10px;
    line-height: 24px;
    display: inline-block;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #1d753b;
    position: absolute;
    top: 20px;
    right: 1%;
}

    .ddlViewSlotDetails h3 span {
        color: #fcc272;
        display: inline-flex;
        min-width: 65px
    }

.ddlViewSlotDetails-report h3 {
    position: relative;
    top: 0;
    float: right;
    margin: -40px -35px 0px 0px;
    z-index: 1;
}

.ddlViewSlotDetails h4 {
    font-size: 14px;
    line-height: 25px;
}

.ddlCalendar {
    width: 100%;
}

    .ddlCalendar tr td {
        width: 33.333%;
        padding: 5px;
    }

        .ddlCalendar tr td div {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            padding: 25px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            margin: 10px;
        }

.dark-mode .ddlCalendar tr td div {
    background-color: #0f172a;
}

.ddlCalendar tr td table {
    width: 100%;
}

    .ddlCalendar tr td table tr td {
        padding: 0px;
    }

        .ddlCalendar tr td table tr td:nth-child(2) {
            text-align: right;
        }

        .ddlCalendar tr td table tr td h1, .ddlCalendar tr td table tr td h3 {
            color: var(--text);
            margin: 0px 0px 10px;
            font-size: 15px;
        }

.dark-mode .ddlCalendar tr td table tr td h1, .dark-mode .ddlCalendar tr td table tr td h3 {
    color: #fff;
}

.ddlCalendar tr td table tr td h1 i {
    font-size: 30px;
    padding-right: 5px;
    color: #1d753b;
}

.ddlCalendar tr td table tr td h3 {
    color: #000;
    font-size: 13px;
    margin: 5px 0px;
    line-height: 22px;
}

    .ddlCalendar tr td table tr td h3 span {
        color: #1d753b;
        font-size: 17px;
        font-family: var(--headfont);
    }

.dark-mode .ddlCalendar tr td table tr td h3 span {
    color: #FFB95C;
}

.ddlCalendar tr td table tr td h4 {
    margin: 0px 0px 15px;
    font-size: 14px;
    line-height: 20px;
}

.ddlCalendar tr td table tr td h5 {
    margin: 10px 0px 5px;
}

.ddlCalendar .ddlCalendar-disable table tr td h1,
.ddlCalendar .ddlCalendar-disable table tr td h3,
.ddlCalendar .ddlCalendar-disable table tr td h4,
.ddlCalendar .ddlCalendar-disable table tr td h1 i,
.ddlCalendar .ddlCalendar-disable table tr td h3 span {
    color: #8c8c8c;
}

.sitemap ul {
    margin: 0px 0px 0px 0px;
}

    .sitemap ul li {
        list-style-type: disc;
    }

        .sitemap ul li a {
            color: var(--text);
            transition: all 0.5s;
            font-size: 15px;
        }

            .sitemap ul li a:hover {
                color: #1d753b;
            }

.dark-mode .sitemap ul li a {
    color: #fff;
}

    .dark-mode .sitemap ul li a:hover {
        color: #FFB95C;
    }

.login-img img {
    width: 65%;
}

.img-01 img {
    width: 100%;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.link-01 a {
    color: #1d753b;
    transition: all 0.5s;
}

    .link-01 a:hover {
        color: #22c55e;
    }

.dark-mode .link-01 a {
    color: #FFB95C;
    transition: all 0.5s;
}

    .dark-mode .link-01 a:hover {
        color: #E89A39;
    }

.videos {
    margin: 10px 0px;
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.15);
}

    .videos iframe {
        width: 100%;
        border-radius: 15px;
    }

    .videos p {
        font-size: 15px;
        margin: 10px 0px 0px;
        line-height: 1.5;
        min-height: 50px;
        text-align: center;
    }

.slots-search-tbl {
    width: 100%;
    margin: 40px 0px;
}

    .slots-search-tbl tr td:nth-child(1) {
        width: 75%;
    }

.slot-txtbx {
    border: 1px solid #fff;
    background-color: #fff;
    padding: 5px 20px;
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    font-size: 15px;
    color: #000;
}

.slot-btn {
    border: 1px solid #FFB95C;
    background-color: #FFB95C;
    color: #000;
    padding: 5px 10px;
    font-size: 15px;
    width: 100%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.5s;
}

    .slot-btn:hover {
        border: 1px solid #E89A39;
        background-color: #E89A39;
    }

.dark-mode .slot-btn {
    border: 1px solid #22c55e;
    background-color: #22c55e;
    color: #fff;
}

    .dark-mode .slot-btn:hover {
        border: 1px solid #1d753b;
        background-color: #1d753b;
    }

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
    .div-box-01 h2 {
        font-size: 18px;
    }

    .f-div-01 {
        margin-left: 0px;
    }

    .sharethis-div {
        width: 102%;
    }

    .form-txtbx {
        font-size: 16px;
    }

    .mentor-profile-contact-margin {
        margin-top: -150px;
        background-color: #fff;
    }

    .abt-div {
        width: 90%;
    }

    .footer-div {
        margin-left: -30px;
    }

    .videos iframe {
        height: 200px;
    }

    .p-tag-ht div p {
        min-height: 175px;
    }

    .test-div p {
        min-height: 165px;
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .head1 {
        font-size: 45px;
    }

    .head2, .sub-head1 {
        font-size: 36px;
    }

    .head3 {
        font-size: 28px;
    }

    .head4 {
        font-size: 25px;
    }

    .highlight {
        font-size: 22px;
    }

    .logo a img {
        width: 230px;
        padding: 8px 0px;
    }

    .mainMenu li {
        padding: 12px 20px 15px 0px;
    }

        .mainMenu li a {
            font-size: 15px;
        }

    .login-list {
        width: 112%;
    }

        .login-list li {
            padding: 7px 0px 10px 5px;
        }

            .login-list li h5 {
                margin: -2px 0px 0px 0px;
            }

            .login-list li p {
                margin: 3px 0px -5px 0px;
            }

    .login-signup-btn {
        padding: 5px 10px;
        width: auto;
    }

    .hero-text tr td h1 {
        font-size: 45px;
    }

    .hero-text tr td h2 {
        font-size: 22px;
    }

    .testi-content, .testi-bg {
        height: 450px;
    }

    .login-div h2 {
        font-size: 25px;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .head1 {
        font-size: 37px;
    }

    .head2, .sub-head1 {
        font-size: 28px;
    }

    .head3, .head4 {
        font-size: 23px;
    }

    .highlight {
        font-size: 18px;
    }

    .logo {
        text-align: center;
        border-bottom: 1px solid #eee;
    }

        .logo a img {
            width: 220px;
            padding: 5px 0px;
        }

    .mainMenu li {
        padding: 8px 20px 8px 0px;
    }

        .mainMenu li a {
            font-size: 15px;
        }

    .login-list li {
        padding: 3px 0px 3px 5px
    }

    .login-signup-btn {
        padding: 5px 10px;
        width: auto;
        font-size: 14px;
    }

    .fixed-ht {
        height: 90px;
    }

    .hero-section-bg, .banner-img table, .hero-text {
        height: 75vh;
    }

        .hero-text tr td h1 {
            margin: 75px 0px 15px;
            font-size: 30px;
        }

        .hero-text tr td h2 {
            font-size: 18px;
        }

        .hero-text tr td h3 {
            margin: 30px 0px 0px;
        }

            .hero-text tr td h3 a {
                font-size: 16px;
            }

    .div-box-01 h1 {
        font-size: 35px;
    }

    .div-box-01 h2 {
        font-size: 16px;
    }

    .testi-content, .testi-bg {
        height: 500px;
    }

    .footer-width {
        width: 33.333%;
    }

    .login-div h2 {
        font-size: 23px;
    }

    .reg-next-pre-btn a {
        font-size: 23px;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .Desktop {
        display: none;
    }

    .Mobile {
        display: block;
    }

    .head1, .sub-head1 {
        font-size: 25px;
    }

    .head2 {
        font-size: 22px;
    }

    .head3 {
        font-size: 18px;
    }

    .head4 {
        font-size: 20px;
    }

    .head5 {
        font-size: 17px;
    }

    .highlight {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    .logo-menu {
        margin: 0px;
    }

    .logo a img {
        width: 200px;
    }

    .mainMenu {
        margin: 5px 0px 5px -40px;
    }

        .mainMenu li {
            padding: 2px 0px;
            display: list-item;
        }

            .mainMenu li a {
                font-size: 14px;
            }

    .login-list li {
        padding: 2px 0px;
    }

    .login-list {
        list-style-type: none;
        text-align: left;
        margin: 0px 0px 5px -40px;
    }

        .login-list li h5 {
            margin: 5px 0px 10px;
        }

    .login-signup-btn {
        padding: 5px 10px;
        width: auto;
        font-size: 14px;
    }

    .fixed-ht {
        height: 45px;
    }

    .hero-section-bg {
        height: 60vh;
        text-align: center;
    }

    .banner-img table {
        height: 60vh;
        text-align: left;
    }

    .hero-text {
        height: 50vh;
        width: 100%;
        z-index: 1;
    }

    .banner-img table tr td img {
        width: 60%;
    }

    .hero-text tr td h1 {
        margin: 45px 0px 15px;
        font-size: 25px;
        padding: 0px 30px;
        width: 100%;
    }

    .hero-text tr td h2 {
        font-size: 16px;
        padding: 0px 30px;
    }

    .hero-text tr td h3 {
        margin: 20px 0px 0px;
    }

        .hero-text tr td h3 a {
            font-size: 15px;
            padding: 5px 10px;
        }

    .image-container table {
        height: 250px;
    }

    .image-text {
        height: 280px;
    }

        .image-container table tr td h2, .image-text h3 {
            font-size: 16px;
            margin: 0px 0px 10px;
        }

            .image-container table tr td h2 span {
                font-size: 22px;
            }

    .partner-eco {
        margin: 0px;
    }

        .partner-eco img {
            width: 100%;
            border-radius: 10px;
            padding: 3px;
        }

    .padding-01 {
        padding: 40px 0px;
    }

    .padding-02 {
        padding: 40px 0px 0px;
    }

    .padding-03 {
        padding: 20px 0px;
    }

    .div-box-01, .div-box-02, .div-box-03 {
        border-radius: 10px;
    }

    .div-box-01 {
        padding: 10px;
    }

        .div-box-01 h1 {
            font-size: 25px;
        }

        .div-box-01 h2 {
            font-size: 13px;
            line-height: 1.2;
            margin: 0px;
            min-height: 65px;
        }

    .joinus-box {
        height: 250px;
        overflow: hidden;
        padding: 15px;
    }

        .joinus-box table {
            height: 250px;
        }

            .joinus-box table tr td h3 {
                font-family: var(--bodyfont);
                font-size: 15px;
            }

    .testi-width-left, .testi-width-right {
        width: 100%;
    }

    .testi-content {
        height: auto;
    }

    .testi-bg {
        height: 400px;
    }

    .testi-content {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 0px;
    }

    .testi-bg {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 25px;
    }

    .div-box-04 {
        min-height: 0;
    }

    .footer-width {
        width: 100%;
    }

    .login-div h2, .modal-title {
        font-size: 20px;
    }

    .reg-next-pre-btn a {
        font-size: 20px;
    }

    .form-div-text h4 {
        font-size: 16px;
    }

    .mentor-banner-tbl table tr td h3 {
        font-size: 15px;
    }

        .mentor-banner-tbl table tr td h3 span {
            font-size: 23px;
        }

    .top-mentor tr td {
        padding: 0px 5px;
    }

    .div-box-02 h5 {
        font-size: 13px;
        min-height: 75px;
    }

    .div-box-03 div, .div-box-02 {
        padding: 10px;
    }

        .div-box-03 div h3 {
            font-size: 15px;
        }

        .div-box-03 div h4 {
            font-size: 14px;
            margin: 0px 0px 10px;
        }

        .div-box-03 div p a {
            padding: 5px;
            font-size: 13px;
        }

        .div-box-03 div h6 img {
            width: 20px;
        }

    .videos p {
        min-height: 135px;
    }

    .sub-head1-slots {
        padding: 40px 0px 10px;
    }

    .slots-search-tbl {
        margin: 0px 0px 40px;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
    .head1 {
        font-size: 28px;
    }

    .head2, .sub-head1 {
        font-size: 22px;
    }

    .head4 {
        font-size: 18px;
    }
}
/*Media query*/
