﻿body {
    margin: 0;
}

/* font family*/
@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.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*/

.Desktop {
    display: block;
}

.Mobile {
    display: none;
}

.C_Align {
    text-align: center;
}

.fixed-top {
    position: fixed;
    background-color: #fff;
    right: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo a img {
    width: 140px;
    background-color: #fff;
    padding: 5px 0px;
}

.top-login {
    text-align: right;
}

    .top-login p {
        margin: 3px 0px;
    }

.top-btn {
    font-size: 15px;
    transition: all 0.5s;
    padding: 10px 20px;
    border: 1px solid #ffc674;
    background-color: #ffc674;
    border-radius: 40px;
    color: #000;
    margin: 17px 0px 17px 15px;
}

    .top-btn:hover {
        background-color: #028174;
        color: #fff;
    }

.top-line {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mainMenu {
    list-style-type: none;
    margin: 0px 0px 0px -40px;
    text-align: left;
}

    .mainMenu li {
        display: inline-flex;
        padding: 30px 50px 30px 10px;
        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: #028174;
            font-size: 15px;
            text-transform: uppercase;
            font-family: Poppins-Medium;
            transition: all 0.5s;
        }

            .mainMenu li a:hover {
                color: #ffc674;
            }

        .mainMenu li ul li a {
            font-size: 14px;
            font-family: Poppins-Regular;
        }

.dropdown-menu {
    top: 85px;
    left: 8px;
}

.fixed-ht {
    height: 68px;
}

.home-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/home-bg.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh
}

.welcome-text {
    padding-top: 220px;
}

    .welcome-text h1 {
        color: #fff;
        margin: 10px 0px 15px;
        font-size: 40px;
        font-family: Poppins-Bold;
        text-transform: uppercase;
        text-shadow: 2px 2px 8px #000;
    }

    .welcome-text h2 {
        margin: 15px 0px 20px;
        font-family: Poppins-Bold;
        color: #ffc674;
        font-size: 32px;
        text-shadow: 2px 2px 8px #000;
    }

    .welcome-text h3 {
        margin: 15px 0px 30px;
        color: #fff;
        font-family: Poppins-Bold;
        font-size: 25px;
    }

        .welcome-text h3 span {
            color: #ffc674;
        }

    .welcome-text h4 {
        margin: 40px 0px 10px;
        font-size: 16px;
    }

        .welcome-text h4 a {
            background-color: #ffc674;
            border: 1px solid #ffc674;
            color: #000;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.5s;
        }

            .welcome-text h4 a:hover {
                background-color: #028174;
                color: #fff;
            }

#role-text {
    border-right: 2px solid #ffe3b3;
    animation: blink 0.6s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        border-color: transparent;
    }

    25%, 75% {
        border-color: #ffe3b3;
    }
}

.slider-img {
    display: none;
    max-width: 100%;
    margin: 0 auto;
}

.home-slider-img img {
    width: 65%;
    padding-top: 185px;
}

.gray-bg {
    background-color: #f1f1f1;
}

.grn-light-bg {
    background-color: #e5efc1;
}

.ylw-light-bg {
    background-color: #ffe3b3;
}

.green-bg {
    background-color: #028174;
}

.padding-01 {
    padding: 75px 0px;
}

.padding-02 {
    padding: 40px 0px;
}

.padding-03 {
    padding: 60px 0px 0px;
}

.padding-04 {
    padding: 10px 0px 40px;
}

.padding-05 {
    padding: 25px 0px;
}

.div-01 {
    margin: 10px 0px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.5s;
}

    .div-01:hover {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .div-01 h6 {
        margin: 0px 0px 10px;
    }

        .div-01 h6 img {
            width: 100%;
            border-radius: 5px;
        }

    .div-01 h3 {
        margin: 0px 0px 10px;
        font-size: 15px;
        font-family: Poppins-Medium;
        color: #028174;
    }

    .div-01 h5 {
        font-family: Poppins-Light;
        color: #39aea9;
        margin: 10px 0px;
        font-size: 15px;
        line-height: 22px;
    }

    .div-01 p {
        margin: 0px;
    }

.counter {
    margin: 40px 0px 0px;
}

    .counter h1 {
        font-family: Poppins-Bold;
        margin: 0px 0px 10px;
        font-size: 80px;
        color: #fff;
        text-shadow: 2px 2px 0px rgba(57, 174, 169, 0.7), -2px -2px 0px rgba(57, 174, 169, 0.7), 2px -2px 0px rgba(57, 174, 169, 0.7), -2px 2px 0px rgba(57, 174, 169, 0.7);
    }

    .counter h2 {
        margin: 0px 0px 0px;
        font-family: Poppins-Medium;
        font-size: 15px;
        color: #39aea9;
    }

.student-bg {
    background-image: url(../images/general/student-bg.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    border-radius: 0 50% 50% 0;
}

.student-bg-01 {
    background-image: url(../images/general/student-bg-01.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    border-radius: 0 50% 50% 0;
}

.about-div, .diy-div {
    padding: 60px 100px;
}

.bg-video-diy {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.home-about-bg {
    background-image: url(../images/general/indus-view.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
}

.home-about-bg-01 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .home-about-bg-01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/general/indus-view.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        filter: grayscale(100%);
        z-index: 0;
    }

    .home-about-bg-01 > * {
        position: relative;
        z-index: 1;
    }

.home-about {
    width: 100%;
    height: 100vh;
}

    .home-about tr td {
        vertical-align: middle;
    }

        .home-about tr td div {
            background-color: rgba(0,0,0,0.8);
            border: 1px solid #ffe3b3;
            padding: 30px;
        }

            .home-about tr td div h1 {
                margin: 0px 0px 10px;
                color: #ffe3b3;
                font-family: Poppins-Bold;
                font-size: 36px;
            }

            .home-about tr td div p {
                color: #fff;
            }

            .home-about tr td div h5 {
                margin: 20px 0px 0px;
            }

                .home-about tr td div h5 a {
                    border: 1px solid #ffe3b3;
                    background-color: #ffe3b3;
                    padding: 5px 10px;
                    font-size: 14px;
                    color: #000;
                    transition: all 0.5s;
                }

                    .home-about tr td div h5 a:hover {
                        background-color: rgba(0,0,0,0.5);
                        color: #fff;
                    }

.head1 {
    margin: 0px 0px 15px;
    font-size: 34px;
    color: #028174;
    font-family: Poppins-Bold;
}

.head2 {
    margin: 0px 0px 15px;
    font-size: 23px;
    color: #1d753b;
    font-family: Poppins-Medium;
}

.head3 {
    margin: 0px 0px 10px;
    font-size: 20px;
    color: #1d753b;
    font-family: Poppins-Light;
}

.head4 {
    margin: 0px 0px 10px;
    font-size: 15px;
    color: #1d753b;
    font-family: Poppins-Medium;
}

.head5 {
    margin: 0px 0px 10px;
    font-family: Poppins-Medium;
    font-size: 15px;
}

.sub-head1 {
    padding: 80px 0px;
    color: #ffe3b3;
}

.font-clr-01 {
    color: #ffe3b3;
}

.font-clr-02 {
    color: #028174;
}

.link a {
    color: #028174;
    transition: all 0.5s;
}

    .link a:hover {
        text-decoration: underline;
    }

.diy-img img {
    width: 55%;
}

.testi-bg {
    background-color: #e5efc1;
    border-radius: 180px;
    padding: 40px 0px;
}

.testi-icon {
    position: absolute;
    font-size: 60px;
    right: 8%;
    bottom: 83%;
}

.test-div h6 {
    color: #028174;
    font-size: 20px;
}

.test-div h5 {
    text-align: right;
    color: #028174;
    font-size: 15px;
    line-height: 22px;
}

.test-div {
    background-color: #e5efc1;
    border-radius: 10px;
    padding: 15px;
}

    .test-div p {
        font-size: 14px;
    }

.bottom-line {
    border-bottom: 1px solid #fcc272;
    margin: 10px 0px 15px;
}

.partner {
    list-style-type: none;
    margin: 10px 0px 0px -40px;
    text-align: center;
}

    .partner li {
        display: inline-block;
        padding: 0px 2px;
    }

        .partner li img {
            width: 115px;
            border: 1px solid #ccc;
            padding: 5px;
        }

.partner-bg {
    background-color: #ffe3b3;
    padding: 40px 0px;
}

.partner-eco li img {
    width: 175px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;
}

.partner-eco li {
    padding: 0px 20px;
}

.footer-bg-01 {
    background-image: linear-gradient(rgba(29, 117, 59, 0.9), rgba(29, 117, 59, 0.9)), url(../images/general/bg-01.jpg);
    background-position: center;
    background-size: cover;
    padding: 40px 0px 30px;
}

.footer-bg-02 {
    background-color: #ffc674;
}

.footer-width {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 20%;
}

.fhead {
    margin: 0px 0px 3px;
    color: #ffc674;
    font-size: 14px;
}

.flist {
    margin: 0px 0px 15px -40px;
    list-style-type: none;
}

    .flist li a i {
        color: #ffc674;
        padding-right: 5px;
    }

    .flist li a {
        color: #fff;
        font-size: 13px;
        transition: all 0.5s;
    }

        .flist li a:hover {
            color: #ffc674;
            margin-left: 5px;
        }

.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: #ffc674;
        }

.copyright {
    margin: 5px 0px;
    text-align: center;
    color: #000;
    font-size: 13px;
}

    .copyright a {
        color: #000;
        transition: all 0.5s;
    }

        .copyright a:hover {
            text-decoration: underline;
        }

.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-leadership {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-leadership.jpg);
    background-position: center;
    background-size: cover;
}

.bg-advisors {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-advisors.jpg);
    background-position: center;
    background-size: cover;
}

.bg-facilitators {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-facilitators.jpg);
    background-position: center;
    background-size: cover;
}

.bg-school-partnership {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-school-partnership.jpg);
    background-position: center;
    background-size: cover;
}

.bg-resources {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-resources.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-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-events {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-events.jpg);
    background-position: center;
    background-size: cover;
}

.bg-mentor {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-mentor.jpg);
    background-position: center;
    background-size: cover;
}

.bg-faq {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-faq.jpg);
    background-position: center;
    background-size: cover;
}

.bg-blog {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-blog.jpg);
    background-position: center;
    background-size: cover;
}

.bg-one-valley {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/general/sub-one-valley.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-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;
}

.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;
}

.login-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/general/login-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
}

.admin-module-bg {
    background-color: #f1f1f1;
}

.registration-box-inside {
    padding: 10px;
}

    .registration-box-inside h4, .admin-box-form h4 {
        margin: 10px 0px 10px;
        font-family: Poppins-Medium;
        color: #028174;
        font-size: 15px;
        border-bottom: 1px solid #ffc674;
        padding-bottom: 10px;
    }

    .registration-box-inside h5, .admin-box-form h5 {
        margin: 5px 0px 5px;
        color: #000;
        font-size: 15px;
        line-height: 23px;
    }

        .registration-box-inside h5 a {
            color: #000;
            text-decoration: underline;
            transition: all 0.5s;
        }

            .registration-box-inside h5 a:hover {
                color: #028174;
            }

        .registration-box-inside h5 span, .admin-box-form h5 span {
            color: #c50000;
            font-size: 13px;
        }

            .registration-box-inside h5 span span {
                color: #028174;
            }

    .registration-box-inside h3, .registration-box-inside h6 {
        margin: 10px 0px 5px;
        color: #000;
        font-size: 15px;
    }

    .registration-box-inside h6 {
        margin: 0px 0px 5px 15px;
        color: rgba(0,0,0,0.7);
        line-height: 22px;
    }

    .registration-box-inside p {
        font-size: 14px;
        margin: 0px 0px 10px;
    }

    .registration-box-inside h2 {
        margin: 5px 0px 5px;
        color: #000;
        font-size: 15px;
        line-height: 21px;
    }

    .registration-box-inside h6 a {
        color: #028174;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.5s;
    }

        .registration-box-inside h6 a:hover {
            text-decoration: underline;
        }

.gray-box {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    border-bottom: 3px solid #72b01d;
    margin: 10px 0px;
    padding: 15px 15px 10px;
}

    .gray-box h5 {
        margin: 0px 0px 5px;
        font-size: 14px;
    }

    .gray-box h4 {
        margin: 20px 0px 10px;
    }

.form-txtbx, .grd-txtbx {
    border: 1px solid #f1f1f1;
    background-color: #f1f1f1;
    width: 100%;
    padding: 10px 5px;
    border-radius: 5px;
    transition: all 0.5s;
    line-height: 20px;
    font-size: 14px;
    color: #000;
}

.form-txtbx-gray {
    border: 1px solid #028174;
}

.form-ddl {
    height: 41px;
}

.grd-txtbx {
    border: 1px solid #028174;
    background-color: #f1f1f1;
    padding: 5px;
}

.form-txtbx:focus {
    border: 1px solid #028174;
}

.form-calendar-txtbx {
    width: 85%;
}

.grd-savebtn, .grd-addbtn {
    border: 1px solid #72b01d;
    background-color: #72b01d;
    color: #fff;
    border-radius: 3px;
    padding: 0px 6px;
    float: right;
    transition: all 0.5s;
}

    .grd-savebtn:hover, .grd-addbtn:hover {
        border: 1px solid #1d753b;
        background-color: #1d753b;
    }

.grd-addbtn {
    font-size: 20px;
}

.calendar-gif {
    width: 30px;
    margin: 0px;
}

.form-btn, .search-btn, .login-btn {
    border: 1px solid #ffc674;
    background-color: #ffc674;
    width: auto;
    padding: 7px 15px;
    border-radius: 30px;
    transition: all 0.5s;
    color: #000;
    font-size: 14px;
    min-height: 35px;
}

    .form-btn:hover {
        background-color: #028174;
        color: #fff;
    }

.search-btn {
    background-color: #92de8b;
    color: #000;
}

    .search-btn:hover {
        border: 1px solid #39aea9;
        background-color: #39aea9;
        color: #fff;
    }

.lblSuccessMessage {
    color: #028174;
}

.registration-tbl {
    width: 100%;
    margin: 0px 0px 20px;
    font-size: 14px;
}

    .registration-tbl tr td {
        padding: 5px;
        border: 1px solid #ccc;
    }

        .registration-tbl tr td:nth-child(1) {
            width: 40%;
        }

        .registration-tbl tr td table tr td:nth-child(1) {
            width: auto;
        }

        .registration-tbl tr td a {
            color: rgb(0, 38, 255);
        }

            .registration-tbl tr td a:hover {
                color: #1d753b;
                text-decoration: underline;
            }

.tbl-bg-01 {
    background-color: #028174;
    color: #fff;
}

.tbl-bg-02 {
    background-color: #f1f1f1;
    color: #000;
}

.login-btn {
    border: 1px solid #ffc674;
    background-color: #ffc674;
    color: #000;
    margin: 5px 0px 0px;
}

    .login-btn:hover {
        background-color: #028174;
        color: #fff;
    }

.btn-width {
    width: auto;
    padding: 7px 10px;
}

.form-btn-txt {
    margin: 5px 0px 0px;
    border: none;
    background-color: transparent;
    color: #fff;
    transition: all 0.5s;
}

    .form-btn-txt:hover {
        color: #04e762;
    }

.font-icon i {
    color: #ffc674;
    font-size: 18px;
}

.form-captcha {
    color: #028174;
}

.form-message {
    color: #028174;
}

.user-help {
    margin: 0px 0px 10px;
    color: #04e762;
    font-size: 11px;
}

.grd-savebtn, .grd-addbtn {
    border: 1px solid #028174;
    background-color: #028174;
    color: #fff;
    border-radius: 3px;
    padding: 0px 6px;
    float: right;
    transition: all 0.5s;
}

    .grd-savebtn:hover {
        border: 1px solid #028174;
        background-color: #ffc674;
        color: #000;
    }

.grd-addbtn {
    border: 1px solid #028174;
    background-color: #ffc674;
    color: #000;
    font-size: 20px;
    line-height: 25px;
    border-radius: 20px;
}

    .grd-addbtn:hover {
        border: 1px solid #028174;
        background-color: #028174;
        color: #fff;
    }

.login-table {
    width: 100%;
    min-height: 275px;
}

    .login-table tr td {
        vertical-align: middle;
    }

.ddlCalendar {
    width: 100%;
}

    .ddlCalendar tr td {
        width: 33.333%;
        padding: 5px;
    }

        .ddlCalendar tr td div {
            background-color: #fff;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
            border-radius: 5px;
            border-bottom: 3px solid #72b01d;
            padding: 15px
        }

        .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: #000;
                    margin: 0px 0px 10px;
                    font-size: 14px;
                }

                    .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: 14px;
                    margin: 15px 0px;
                }

                    .ddlCalendar tr td table tr td h3 span {
                        color: #72b01d;
                        font-size: 15px;
                    }

                .ddlCalendar tr td table tr td h4 {
                    margin: 0px 0px 10px;
                    font-size: 14px;
                    line-height: 20px;
                }

    .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;
    }

.user-account {
    text-align: right;
    font-size: 14px;
}

    .user-account h5 {
        margin: 18px 0px 15px;
    }

        .user-account h5 span {
            color: #028174;
        }

            .user-account h5 span span {
                background-image: url(../images/icons/logo-icon.png);
                background-position: center;
                background-size: cover;
                padding: 5px 6px;
                border-radius: 75px;
                font-size: 14px;
                font-family: Poppins-Medium;
                color: #000;
            }

    .user-account p {
        margin: 5px 0px 5px;
        font-size: 14px;
    }

        .user-account p a {
            color: #000;
            transition: all 0.5s;
        }

            .user-account p a:hover {
                color: #028174;
            }

        .user-account p i {
            color: #028174;
            font-size: 16px;
        }

.mentor-filter {
    background-color: #e5efc1;
    border-radius: 5px;
    padding: 15px;
}

    .mentor-filter h3 {
        margin: 0px 0px 2px;
        font-size: 15px;
    }

.mentor-div {
    margin: 0px 0px 20px;
    border: 1px solid rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 5px;
}

.mentor-img img {
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    padding: 5px;
}

.mentor-dtl h1 {
    margin: 0px 0px 10px;
    font-size: 15px;
    color: #18842e;
}

    .mentor-dtl h1 span i {
        float: right;
        color: #18842e;
        padding: 0px 5px;
        cursor: pointer;
        transition: all 0.5s;
    }

        .mentor-dtl h1 span i:hover {
            color: #18842e;
        }

.mentor-dtl h2 {
    margin: 0px 0px 10px;
    font-size: 15px;
    color: #000;
}

.mentor-dtl h3 {
    margin: 0px 0px 10px;
    font-size: 14px;
    color: #18842e;
    line-height: 22px;
}

.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 #18842e;
        background-color: #ffc674;
        color: #000;
        border-radius: 15px;
        padding: 5px 10px;
        font-size: 15px;
        transition: all 0.5s;
    }

        .mentor-dtl h4 a:hover, .mentor-profile-contact h5 a:hover {
            background-color: #18842e;
            color: #fff;
        }

.mentor-banner-tbl {
    padding: 20px 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: 200px;
            border-radius: 50%;
            background-color: #fff;
            padding: 3px;
        }

        .mentor-banner-tbl table tr td h3 {
            color: #fff;
            font-size: 14px;
        }

            .mentor-banner-tbl table tr td h3 span {
                font-size: 22px;
                color: #ffc674;
            }

.mentor-profile-contact {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    z-index: 99;
    /*position: fixed;
    top: 25%;
    width: 29%;*/
}

    .mentor-profile-contact h1 {
        margin: 0px 0px 10px;
        text-align: center;
        font-size: 18px;
        color: #18842e;
        padding-bottom: 10px;
        border-bottom: 1px solid #ffc674;
    }

    .mentor-profile-contact h2 {
        text-align: right;
        color: rgb(0, 38, 255);
        font-size: 15px;
        margin: 0px 0px 10px;
    }

        .mentor-profile-contact h2 i {
            padding: 0px 5px;
            cursor: pointer;
        }

    .mentor-profile-contact h3 {
        margin: 0px 0px 10px;
        color: #000;
        font-size: 15px;
    }

    .mentor-profile-contact ul, .mentor-list {
        list-style-type: none;
        margin: 0px 0px 10px -40px;
        font-size: 15px;
    }

        .mentor-profile-contact ul li i, .mentor-list li i {
            color: #18842e;
            padding-right: 5px;
        }

    .mentor-profile-contact h5 {
        margin: 20px 0px 10px;
    }

.user-info {
    background-color: #ffe3b3;
    float: left;
    padding: 10px 10px 5px;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 10px;
}

    .user-info h3 {
        background-color: #028174;
        margin: 0px 0px 5px;
        border-radius: 5px;
        padding: 3px 5px;
        line-height: 20px;
        color: #fff;
        font-size: 14px;
    }

    .user-info h4 {
        margin: 0px 0px 0px;
        color: #000;
        font-size: 14px;
    }

    .user-info p {
        margin: 0px;
        color: #000;
        font-size: 14px;
    }

        .user-info h4 i, .user-info p i {
            color: #1d753b;
            width: 20px;
        }

.mentorship-slot-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url(../images/general/mentorship-calendar-bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    padding: 20px;
    margin: 10px 0px 0px;
}

.mentorship-calendar-slot-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url(../images/general/mentorship-calendar-slot-bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    padding: 20px;
    margin: 10px 0px 0px;
}

.mentorship-calendar-bg {
    background-color: #fff;
    margin: 10px 0px;
    overflow-x: auto;
}

.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: #fcc272;
        border: 1px solid #18842e;
        font-size: 13px;
    }

    .mentorship-calendar tr td {
        padding: 5px;
        font-size: 12px;
        line-height: 17px;
        border: 1px solid #18842e;
        height: 80px;
    }

        .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: 11px;
        }

            .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: 14px;
    color: #000;
}

    .ddlViewSlot h2 span {
        color: #1d753b;
    }

.ddlViewSlot h3 {
    margin: 0px 0px 5px;
    font-size: 15px;
    color: #028174;
    font-family: Poppins-Medium;
}

.ddlViewSlot h4 {
    margin: 0px 0px 5px;
    font-size: 15px;
    color: #000;
}

.ddlViewSlot p i {
    color: #1d753b;
    padding-right: 5px;
}

.ddlViewSlotDetails h1 {
    color: #000;
    margin: 0px 0px 5px;
    font-size: 15px;
}

    .ddlViewSlotDetails h1 span {
        padding-left: 10px;
    }

    .ddlViewSlotDetails h1 i {
        font-size: 20px;
        color: #1d753b;
        padding-right: 5px;
    }

.ddlViewSlotDetails h3 {
    font-size: 13px;
    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: -43px -32px -48px 0px;
}

.ddlViewSlotDetails h4 {
    font-size: 14px;
    line-height: 20px;
}

.mtop {
    margin-top: 15px;
}

.img-01 img {
    width: 85%;
}

.img-02 img {
    width: 65%;
    padding: 5px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.img-03 img {
    width: 50%;
}

.img-04 img {
    width: 60%;
}

.mentee-reg-details h3 {
    margin: 10px 0px 10px;
    font-family: Poppins-Medium;
    color: #1d753b;
    font-size: 15px;
    border-bottom: 1px solid #04e762;
    border-top: 1px solid #04e762;
    padding: 10px 5px;
    background-color: rgba(204, 255, 204, 0.2);
}

.mentee-reg-details h4 {
    font-size: 15px;
    font-family: Poppins-Medium;
    margin: 0px 0px 10px;
    line-height: 24px;
}

    .mentee-reg-details h4 span {
        font-size: 15px;
    }

        .mentee-reg-details h4 span i {
            color: #72b01d;
            padding-right: 5px;
        }

.mentee-reg-details table {
    width: 100%;
    font-size: 14px;
}

    .mentee-reg-details table tr td {
        padding: 5px;
        vertical-align: top;
    }

        .mentee-reg-details table tr td a {
            color: #0096FF;
            transition: all 0.5s;
        }

            .mentee-reg-details table tr td a:hover {
                color: #72b01d;
                text-decoration: underline;
            }

        .mentee-reg-details table tr td:nth-child(1) {
            width: 35%;
        }

.mentee-reg-all {
    height: 350px;
    overflow-x: auto;
}

/*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: #72b01d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #72b01d;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/*Grid table style*/
.grid-table {
    width: 100%;
}

    .grid-table tr th, .grid-table tr td {
        padding: 5px;
        font-size: 13px;
        font-weight: 500;
        border: 3px solid #fff;
        vertical-align: top;
    }

    .grid-table tr th {
        background-color: #028174;
        color: #fff;
    }

    .grid-table tr td {
        border-top: 1px solid #ffc674;
        border-bottom: 1px solid #ffc674;
    }

        .grid-table tr td label {
            padding: 0px;
            margin: 0px;
        }

.grid-emoji {
    padding-right: 3px;
}
/*Grid table style*/

.dtl-table table {
    width: 100%;
    margin: 10px 0px;
}

    .dtl-table table tr th, .dtl-table table tr td {
        padding: 5px;
        font-weight: 500;
        font-size: 14px;
        border: 1px solid #ccc;
    }

    .dtl-table table tr th {
        background-color: #eee;
        color: #000;
    }

    .dtl-table table tr td:nth-child(1) {
        width: 30%;
    }

.may-list {
    margin: 0px 0px 10px -20px;
    color: #028174;
}

    .may-list li {
        list-style-type: square;
        padding: 3px 0px;
        line-height: 22px;
    }

        .may-list li span {
            color: #000;
        }

.modal-body-may p {
    margin-bottom: 20px;
}

.reg-success-box {
    border: 1px solid #fff;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .reg-success-box h3 {
        margin: 15px 0px;
        font-size: 16px;
        line-height: 25px;
    }

.may-grid-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

.profile-left {
    /*background-color: #ffe3b3;*/
    background: linear-gradient(to right, #028174, #ffc674);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.profile-all {
    border-radius: 15px;
}

.profile-left h6 {
    text-align: center;
    margin: 10px 0px;
}

    .profile-left h6 img {
        width: 150px;
        border-radius: 5px;
    }

.profile-left h4 {
    margin: 10px 0px;
    padding-bottom: 10px;
    text-align: center;
    font-family: Poppins-Medium;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid #ffc674;
}

.profile-left h5 {
    margin: 10px 0px;
    text-align: center;
    font-size: 15px;
    font-family: Poppins-Regular;
    line-height: 28px;
}

    .profile-left h5 a {
        color: #fff;
        transition: all 0.5s;
    }

        .profile-left h5 a:hover {
            text-decoration: underline;
        }

        .profile-left h5 a img {
            width: 35px;
            margin: 5px 0px 0px;
            border: 1px solid #ffc674;
            border-radius: 50%;
        }

.profile-right {
    background-color: #fff;
    padding: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 15px;
}

    .profile-right h6 {
        text-align: right;
        margin: 20px 0px 10px;
    }

    .profile-right div h6 {
        margin: 10px 0px 20px;
    }

.profile-left h6 {
    margin: 20px 0px 10px;
}

    .profile-right h6 a, .profile-left h6 a, .profile-right div h6 a:hover {
        border: 1px solid #028174;
        background-color: #ffc674;
        color: #000;
        padding: 5px 10px;
        border-radius: 15px;
        cursor: pointer;
        transition: all 0.5s;
    }

        .profile-right h6 a:hover, .profile-left h6 a:hover, .profile-right div h6 a {
            background-color: #028174;
            color: #fff;
        }

.profile-box {
    margin: 10px 0px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 5px 10px;
}

    .profile-box h5 {
        font-size: 14px;
        color: #028174;
        border-bottom: 1px solid #f1f1f1;
        margin: 10px 0px 5px;
        padding-bottom: 5px;
        line-height: 22px;
    }

        .profile-box h5 a {
            text-decoration: underline;
            color: #028174;
        }

    .profile-box p {
        font-size: 14px;
        margin: 0px 0px 5px;
    }

        .profile-box p span {
            color: #028174;
        }

.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: 33.333%;
    }

.usertype {
    margin: 15px 0px;
}

    .usertype h1 {
        color: #028174;
        font-size: 22px;
        font-family: Poppins-Medium;
        margin: 10px 0px;
        border-bottom: 1px solid #ffc674;
        padding-bottom: 15px;
    }

    .usertype h2 {
        margin: 15px 0px;
        font-size: 16px;
    }

.tab-content-registration {
    background-color: #fff;
    padding: 30px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {

    .about-div {
        padding: 110px 100px;
    }

    .f-div-01 {
        margin-left: 40px;
    }

    .sharethis-div {
        width: 102%;
    }

    .head3 {
        line-height: 27px;
    }

    .mentor-profile-contact-margin {
        margin-top: -175px;
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .mainMenu li {
        padding: 28px 15px;
    }

        .mainMenu li a {
            font-size: 15px;
        }

    .top-btn {
        font-size: 14px;
        padding: 5px 10px;
        margin: 17px 0px 17px 10px;
    }

    .about-div {
        padding: 0px 50px;
    }

    .diy-div {
        padding: 30px 50px;
    }

    .home-bg {
        height: 85vh;
    }

    .welcome-text {
        padding-top: 190px;
    }

        .welcome-text h1 {
            font-size: 35px;
        }

        .welcome-text h2 {
            font-size: 27px;
        }

        .welcome-text h2 {
            font-size: 20px;
        }

    .home-slider-img img {
        width: 85%;
        padding-top: 175px;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: left;
        margin: 0px;
    }

        .logo a img {
            width: 135px;
            padding: 5px 0px;
        }

    .top-login {
        text-align: right;
        margin: -103px 0px 0px 0px;
    }

    .mainMenu {
        list-style-type: none;
        margin: 0px 0px 0px -40px;
        text-align: center;
    }

        .mainMenu li {
            padding: 8px 35px;
        }

            .mainMenu li a {
                font-size: 14px;
            }

    .top-btn {
        font-size: 14px;
        padding: 5px 10px;
        margin: 2px 0px;
    }

    .dropdown-menu {
        top: 38px;
        left: 32px;
    }

    .user-account {
        margin: -120px 0px 0px 0px;
    }

    .fixed-ht {
        height: 130px;
    }

    .home-bg {
        height: 75vh;
    }

    .welcome-text {
        padding-top: 190px;
    }

        .welcome-text h1 {
            font-size: 28px;
        }

        .welcome-text h2 {
            font-size: 26px;
        }

        .welcome-text h2 {
            font-size: 18px;
        }

        .welcome-text h4 a {
            padding: 5px 10px;
        }

    .home-slider-img img {
        width: 220px;
        padding-top: 175px;
    }

    .counter h1 {
        font-size: 35px;
    }

    .padding-01 {
        padding: 45px 0px;
    }

    .home-about tr td div h1, .head1 {
        font-size: 28px;
    }

    .head2 {
        font-size: 22px;
    }

    .head3 {
        font-size: 17px;
    }

    .sub-head1 {
        padding: 50px 0px;
    }

    .partner li {
        padding: 2px;
    }

        .partner li img {
            width: 85px;
        }

    .footer-width {
        width: 33.333%;
    }

    .user-account table tr td {
        padding: 0px 5px;
    }

        .user-account table tr td:nth-child(1) {
            width: 50%;
        }

        .user-account table tr td:nth-child(2) {
            text-align: left;
        }

    .about-div {
        padding: 0px 30px;
    }

    .diy-div {
        padding: 30px;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .logo a img {
        width: 110px;
        padding: 5px 0px;
    }

    .top-login {
        text-align: left;
    }

    .top-btn {
        font-size: 13px;
        padding: 4px 12px;
        margin: 2px 0px;
    }

    .mainMenu li {
        padding: 2px 0px;
        display: list-item;
        text-align: left;
    }

        .mainMenu li a {
            font-size: 14px;
        }

    .user-account {
        text-align: left;
        font-size: 14px;
    }

        .user-account h5 span span {
            padding: 5px 6px;
            font-family: Poppins-regular;
        }

    .dropdown-menu {
        top: 30px;
        left: 15px;
    }

    .fixed-ht {
        height: 45px;
    }

    .home-bg {
        height: 87vh;
    }

    .welcome-text {
        padding-top: 100px;
        text-align: center;
    }

        .welcome-text h1 {
            font-size: 23px;
        }

        .welcome-text h2 {
            font-size: 18px;
        }

        .welcome-text h3 {
            font-size: 16px;
        }

        .welcome-text h4 {
            margin: 31px 0px 10px;
            font-size: 14px;
        }

            .welcome-text h4 a {
                padding: 5px 10px;
            }

    .home-slider-img img {
        width: 200px;
        padding-top: 20px;
    }

    .padding-01 {
        padding: 40px 0px;
    }

    .home-about tr td div h1, .head1 {
        font-size: 20px;
        margin: 0px 0px 10px;
        font-family: Poppins-Medium;
    }

    .head2 {
        font-size: 17px;
    }

    .head3 {
        font-size: 15px;
    }

    .sub-head1 {
        padding: 50px 0px;
    }

    .counter h1 {
        font-size: 20px;
    }

    .testi-bg {
        border-radius: 40px;
    }

    .partner li {
        padding: 2px;
    }

        .partner li img {
            width: 85px;
        }

    .footer-width {
        width: 100%;
    }

    .user-account table tr td {
        padding: 0px 5px;
    }

        .user-account table tr td:nth-child(1) {
            width: 50%;
        }

        .user-account table tr td:nth-child(2) {
            text-align: left;
        }

    .about-div, .diy-div {
        padding: 15px;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
    .home-about tr td div h1, .head1 {
        font-size: 20px;
    }

    .head2 {
        font-size: 17px;
    }

    .welcome-text h1 {
        font-size: 21px;
    }

    .welcome-text h2 {
        font-size: 17px;
    }

    .welcome-text h3 {
        font-size: 15px;
    }
}
/*Media query*/
