@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600&family=Roboto:wght@300;400;500&family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #044a25;
    --highlight-color: #7ac42f;
    --sh-color: #b6f0c0;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 15px;
}

#top_bar {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: var(--primary-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.35px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding: 0px 8px;
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

/* navbar  */

.header .menu>ul li {
    list-style: none;
}

.header .menu>ul {
    padding: 0;
    margin: 0;
}

.header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    background: var(--secondary-color);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.nav_box {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0px 5%;
}

.header .nav_box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.header .logo img {
    height: 85px;
    padding: 1px 0;
}

.header .menu .head {
    display: none;
}

.header .menu>ul {
    list-style: none;
}

.header .menu>ul>li {
    display: inline-block;
}

.header .menu>ul>li:not(:last-child) {
    margin-right: 20px;
}

.header .menu .dropdown {
    position: relative;
}

.header .menu a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.header .menu a span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.header .menu>ul>li>a {
    padding: 20px 0;
}

.header .menu>ul>.dropdown>a {
    padding-right: 15px;
}

.header .menu i {
    font-size: 10px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: var(--text-color);
    top: calc(50% - 5px);
}

.header .menu>ul>li>i {
    right: 0;
}

.header .menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    white-space: nowrap;
    max-width: 340px;
    padding: 10px 0;
    background: var(--secondary-color);
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.header .menu .sub-menu-right {
    left: 100%;
    top: 0;
}

.header .menu .sub-menu-left {
    right: 100%;
    left: auto;
    top: 0;
}

.header .menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.3s ease;
}

.header .menu .sub-menu a {
    padding: 8px 20px;
}

.header .menu .sub-menu .dropdown>a {
    padding-right: 30px;
}

.header .menu .sub-menu a {
    background: transparent;
    transition: all 0.3s ease;
}

.header .menu .sub-menu a:hover {
    background: transparent;
    color: var(--highlight-color) !important;
    transition: all 0.3s ease;
}

.header .menu .sub-menu i {
    transform: rotate(-90deg);
    right: 10px;
}

.menu_right {
    display: flex;
}

/* .menu_right>* {
    margin-right: 25px;
  } */

.menu_right .open-menu-button {
    display: none;
}

@media(max-width:991px) {

    .nav_box{
        padding: 0 15px !important;
    }
    .header {
        padding: 0px 0;
    }

    .header .menu {
        position: fixed;
        right: 0;
        top: 0;
        width: 330px;
        height: 100%;
        padding: 10px 15px;
        overflow-y: auto;
        background: var(--secondary-color);
        transform: translateX(100%);
        z-index: 1;
        box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    }

    .header .menu.open {
        transform: none;
    }

    .header .menu .head {
        display: block;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(4, 74, 37, 0.35);
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .menu .close-menu-button {
        width: 40px;
        height: 40px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        background: transparent;
    }

    .header .menu .close-menu-button::before,
    .header .menu .close-menu-button::after {
        content: "";
        position: absolute;
        width: 80%;
        height: 2px;
        background: var(--primary-color);
    }

    .header .menu .close-menu-button::before {
        transform: rotate(45deg);
    }

    .header .menu .close-menu-button::after {
        transform: rotate(-45deg);
    }

    .header .menu>ul>li {
        display: block;
    }

    .header .menu>ul>li:not(:last-child) {
        margin-right: 0;
    }

    .header .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .header .menu>ul>li>a {
        padding: 10px 0;
    }

    .header .menu>ul>.dropdown>a {
        padding-right: 10px;
    }

    .header .menu i {
        width: 26px;
        height: 26px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 8px;
        background: var(--primary-color);
        color: var(--secondary-color);
    }

    .header .menu .sub-menu {
        width: 100%;
        position: static;
        transform: none;
        visibility: visible;
        opacity: 1;
        padding: 0;
        transition: none;
        display: none;
        box-shadow: none;
        border-radius: 0;
    }

    .header .menu .sub-menu li:last-child {
        border: none;
    }

    .header .menu .sub-menu a {
        padding: 10px 0px 10px 15px;
    }

    .header .menu .sub-menu .sub-menu a {
        padding-left: 26px;
    }

    .header .menu .sub-menu .sub-menu .sub-menu a {
        padding-left: 45px;
    }

    .header .menu .sub-menu i {
        transform: none;
        right: 0px;
    }

    .menu_right .open-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 40px;
        cursor: pointer;
        position: relative;
        background: transparent;
        border: none;
    }

    .menu_right .open-menu-button .line {
        width: 30px;
        height: 2px;
        background: var(--primary-color);
        position: absolute;
    }

    .menu_right .open-menu-button .line1 {
        transform: translateY(-8px);
    }

    .menu_right .open-menu-button .line3 {
        transform: translateY(8px);
    }

    .header .menu .dropdown.active>i {
        transform: rotate(180deg);
    }

    .header .menu .dropdown.active>.sub-menu {
        display: block;
    }
    .header .nav_box{
        justify-content: space-between;
    }


}



/* end navbar  */

.banner {
    width: 100%;
    height: auto;
    padding: 12% 0;
    background: var(--primary-color);
}

.banner_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.65px;
    line-height: 60px;
    /* padding-top: 40px !important; */
}

.banner_sh {
    font-family: 'Montserrat', sans-serif;
    color: var(--highlight-color);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.35px;
    line-height: inherit;
    padding-top: 10px !important;
}

.banner_li {
    padding: 0;
    margin: 0;
    text-align: center;
    margin-top: 30px !important;
}

.banner_li li {
    font-family: 'Poppins', sans-serif;
    list-style: none;
    display: inline-block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.35px;
    line-height: 14px;
    padding: 0 15px;
}

.banner_li li:not(:last-child) {
    border-right: 1px solid var(--secondary-color);
}

.banner_btn_box {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bbb {
    padding-top: 40px;
}

.bbb_btn {
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.bbb_btn i {
    color: var(--highlight-color);
    font-size: 20px;
    position: relative;
    right: 6px;
}

.banner_form {
    width: 100%;
    height: auto;
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.c_input {
    height: auto;
    padding: 10px;
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    font-size: 15px;
    letter-spacing: 0.15px;
}

.c_input::placeholder {
    font-family: 'Roboto', sans-serif;
    color: rgba(0, 0, 0, 0.7);
}

.banner_btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12.5px 40px;
    border-radius: 50px;
    display: block;
    margin: auto;
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.banner_bottom {
    width: 100%;
    height: auto;
    background: var(--highlight-color);
}

.banner_bottom_buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.bb_btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bb_box {
    padding: 40px 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.bb_box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.banner_bottom_btn {
    padding: 10px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    margin: auto;
    width: 235px;
    justify-content: center;
}

.banner_bottom_btn i {
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    right: 6px;
}


.wws_inner {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.wwsi {
    flex: 1;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    height: auto;
    padding: 20px 25px;
}

.wws_box i {
    min-width: 50px;
    min-height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.wwsb_btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.15px;
}

.wwsb_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 23px;
    padding-top: 15px !important;
}

.wwsb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.2px;
    padding-top: 5px !important;
}


.about {
    width: 100%;
    height: auto;
    padding: 80px 0;
}

.abt_sh {
    display: inline;
    font-family: 'Poppins', sans-serif;
    background: var(--primary-color);
    color: var(--sh-color);
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.15px;
    font-size: 14px;
}

.abt_h {
    font-family: 'Montserrat', sans-serif;
    line-height: inherit;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 30px;
    padding-top: 20px !important;
}

.abt_p {
    font-family: 'Poppins', sans-serif;
    line-height: 32px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}

.abt_hp {
    font-family: 'Poppins', sans-serif;
    line-height: 32px;
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}

.abt_ph {
    font-family: 'Poppins', sans-serif;
    line-height: 32px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}

.abt_li {
    padding: 0;
    margin: 0;
}

.abt_li li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    padding-top: 15px;
    color: var(--primary-color);
    font-size: 16px;
}

.abt_li i {
    color: var(--primary-color);
}

.abt_img_box {
    padding: 20px;
    margin-top: 0px;
}

.abt_img {
    position: relative;
}

.abt_img::before {
    content: '';
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 20px;
    transform: translate(-35%, 35%);
    z-index: -1;
}

.abt_img::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 150px;
    border: 2.5px solid var(--sh-color);
    border-radius: 20px;
    transform: translate(15%, -15%);
    z-index: -1;
}

.abt_img img {
    border-radius: 15px;
}

.abt_img_top_box {
    background: var(--secondary-color);
    top: -15px;
    left: -15px;
    display: flex;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    max-width: 275px;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    position: absolute;
}

.abt_img_top_box i {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.aitb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.15px;
    color: var(--primary-color);
}

.aitb_h span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.abt_img_bottom_box {
    background: var(--primary-color);
    bottom: -15px;
    right: -15px;
    display: flex;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    max-width: 275px;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    position: absolute;
}

.abt_img_bottom_box i {
    min-width: 45px;
    min-height: 45px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.aibb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.15px;
    color: var(--secondary-color);
}

.aibb_h span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.abt_t_i_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.abt_b_box {
    width: 100%;
    height: auto;
    display: flex;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.abt_b_box i {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt_b_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.35px;
    color: var(--text-color);
}

.mission_vission_story {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: var(--s_backgound-color);
}

.mvs_box {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 25px;
    padding-bottom: 30px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    text-align: center;
}

.mvs_box img {
    margin: auto;
    width: 85px;
}

.mvsb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: inherit;
    padding-top: 5px !important;
    letter-spacing: -0.15px;
    color: var(--primary-color);
}

.mvsb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}


.our_core_business {
    width: 100%;
    height: auto;
    padding: 80px 0;
}

.ocb_inner {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ocb_box {
    flex: 1;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    border-bottom: 20px solid var(--primary-color);
}

.ocbi_h {
    background: var(--primary-color);
    padding: 30px 20px !important;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: inherit;
    letter-spacing: -0.15px;
    font-size: 21px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    transform: scale(1.1);
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}

/* .ocbi_h::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 80px;
    background: var(--highlight-color);
    left: 0;
    top: 100%;
} */
.ocb_text {
    padding: 40px 20px;
    text-align: center;
}

.ocbi_p {
    font-family: 'Rubik', sans-serif;
    line-height: 32px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.15px;
    padding-bottom: 12px !important;
    display: flex;
    font-size: 18px;
    align-items: center;
    gap: 5px;
}

.ocbi_p i {
    font-size: 14px;
    font-weight: bolder;
}


.fo_inner {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.fo_box {
    flex: 1;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 20px;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(122, 196, 47, 0.0) 0%, rgba(4, 74, 37, 0.15) 100%);
    transition: all 0.3s ease-in;
}

.fo_box:hover {
    background: linear-gradient(to bottom, #7ac42f 0%, #044a25 100%);
    transition: all 0.3s ease-in;
}

.fob_h {
    padding-bottom: 15px !important;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
}

.fo_box:hover .fob_h {
    color: var(--secondary-color);
}

.fob_p {
    font-family: 'Rubik', sans-serif;
    line-height: 32px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.15px;
    padding-bottom: 12px !important;
    display: flex;
    font-size: 18px;
    align-items: center;
    gap: 5px;
}

.fob_p i {
    font-size: 10px;
    font-weight: bolder;
}

.fo_box:hover .fob_p {
    color: var(--secondary-color);
}

.fob_btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.15px;
}

.fo_box:hover .fob_btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}


.courses {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: -0.15px;
    color: var(--primary-color);
    text-align: center;
}

.heading_p {
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
    color: var(--p-color);
    font-weight: 400;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
    text-align: center;
}

.h_course_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 40px 25px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.h_course_box img {
    width: 115px;
    margin: auto;
}

.hcb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.15px;
    color: var(--highlight-color);
    text-align: center;
    padding-top: 15px !important;
}

.h_course_d_box {
    display: none;
    transition: all 0.3s ease;
}

.hcdb_inner {
    width: 100%;
    height: 100%;
    background: var(--highlight-color);
    top: 0;
    left: 0;
    padding: 0 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hcdb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.1px;
    text-align: center;
}

.hcdb_btn {
    padding: 7px 20px;
    font-family: 'Montserrat', sans-serif;
    background: var(--secondary-color);
    border: none;
    font-weight: 600;
    letter-spacing: -0.35px;
    margin-top: 15px;
}

.h_course_box:hover .h_course_d_box {
    display: block;
    transition: all 0.3s ease;
}

.training_approach {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.ta_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 25px;
    padding-bottom: 30px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.ta_box img {
    width: 100px;
    margin: auto;
}

.tab_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.35px;
    color: var(--primary-color);
    text-align: center;
    padding-top: 15px !important;
}

.why_choose_us {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.wcu_box {
    width: 100%;
    height: auto;
    padding: 15px;
    padding-bottom: 20px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    border-radius: 10px;
}

.wcu_box img {
    width: 52px;
}

.wcub_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0px;
    color: var(--primary-color);
}

.wcub_p {
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: -0.1px;
    padding-top: 2.5px !important;
}


.cta {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
}

.cta::before {
    position: absolute;
    content: "";
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    left: -50px;
    top: -50%;
}

.cta::after {
    position: absolute;
    content: "";
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    left: -50px;
    top: -30%;
}


.cta_box {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.cta_btn {
    flex: 1;
}

.cta_btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta_btn i {
    font-size: 20px;
}

.faqs {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.faq_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: -0.15px;
    color: var(--primary-color);
}

.panel-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.15px;
    color: var(--primary-color);
}

.panel-default {
    border: none;
    background: none;
}

.panel-default>.panel-heading {
    background: var(--secondary-color);
}

#faq .panel .panel-heading a .panel-title span {
    float: right;
    width: 40px;
}

#faq .panel .panel-heading a .panel-title span:after {
    content: "\2014";
    color: var(--highlight-color);
    font-size: 20px;
    color: var(--heaing-color) !important;
}

#faq .panel .panel-heading a.collapsed .panel-title span:after {
    content: "+";
}

#faq .panel {
    margin-bottom: 15px !important;
}

#faq .panel-heading {
    padding: 15px 15px;
    border-radius: 25px;
}

#faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
    padding: 15px 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--text-color);
    background: none;
    border-top: none !important;
}

.demo_form {
    width: 100%;
    height: auto;
    padding: 20px 20px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    margin-top: 40px;
}

.demo_form_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.35px;
    color: var(--primary-color);
    padding-top: 15px !important;
}

.demo_form_sh {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0px;
    padding-top: 5px !important;
}

.d_input {
    width: 100%;
    height: auto;
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    font-size: 15px;
    letter-spacing: 0.15px;
}

.d_input::placeholder {
    font-family: 'Roboto', sans-serif;
    color: rgba(0, 0, 0, 0.7);
}

.i_input {
    width: 100%;
    height: auto;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    font-size: 15px;
    letter-spacing: 0.15px;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
    line-height: inherit !important;
}

.demo_form label {
    margin-top: 20px;
    font-weight: 500;
    padding-left: 10px;
    font-family: 'Roboto', sans-serif;
    color: var(--p-color);
}

.i_input::placeholder {
    font-family: 'Roboto', sans-serif;
    color: rgba(0, 0, 0, 0.7);
}

.demo_btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12.5px 40px;
    border-radius: 10px;
    display: block;
    margin: auto;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 0px;
}

.footer {
    width: 100%;
    height: auto;
    padding: 80px 0;
    padding-bottom: 40px;
    background: url(../../images/footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer img {
    width: 165px;
    filter: drop-shadow(0px -1px 10px rgba(255, 255, 255));
}

.footer_p {
    font-family: 'Poppins', sans-serif;
    line-height: 29px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: -0.1px;
    padding-top: 10px !important;
}

.footer_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.15px;
    font-size: 20px;
    color: var(--secondary-color);
    padding-top: 25px !important;
}

.footer_links {
    padding: 0;
    margin: 0;
}

.footer_links li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--secondary-color);
    padding-top: 8px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.15px;
}

.footer_c_p {
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.15px;
    padding-top: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_social {
    padding: 0;
    margin: 0;
}

.footer_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 12px;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease-in;
}

.footer_social li :hover {
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.footer_copyrights {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    height: auto;
    margin-top: 25px;
}

.fc_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: center;
    padding-top: 40px !important;
    letter-spacing: 0.35px;
}


.bredcum {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: url(../../images/footer.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.bredcum_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: inherit;
    text-align: center;
}

.bredcum_li {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    margin-top: 10px !important;
}

.bredcum_li li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.35px;
    color: var(--secondary-color);
}

.bredcum_li li i {
    font-size: 12px;
}

.inner_pages {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact_d_box {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 40px 20px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.contact_d_box img {
    width: 90px;
}

.cdb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.15px;
    font-size: 20px;
    color: var(--highlight-color);
    padding-top: 25px !important;
}

.adb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 28px;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.1px;
    padding-top: 10px !important;
}

.map {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
}


.contact_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.contact_box i {
    width: 50px;
    height: 50px;
    background: var(--highlight-color);
    border-radius: 50px;
    color: var(--secondary-color);
    display: flex;
    font-size: 21px;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.cb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 17px;
    color: var(--highlight-color);
    padding-top: 25px !important;
}

.cb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0px;
    padding-top: 10px !important;
}

.hire_c_box i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50px;
    color: var(--highlight-color);
    display: flex;
    font-size: 21px;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.hire_c_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: var(--highlight-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.hcb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    font-size: 19px;
    color: var(--secondary-color);
    padding-top: 20px !important;
}

.hcb_p {
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    padding-top: 10px !important;
}

.bg_t {
    background: #ebf5fe;
}

.course_o_box {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    margin-top: 40px;
    background: var(--secondary-color);
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.course_c_box {
    width: 100%;
    height: auto;
    padding: 20px 20px;
    margin-top: 20px;
    background: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
}

.course_o_box i {
    font-size: 32px;
    color: var(--primary-color);
}

.cob_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 21px;
    color: var(--primary-color);
    padding-top: 20px !important;
    line-height: 26px;
}

.cob_sh {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    padding-top: 20px !important;
}

.cob_p {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 26px;
    font-size: 15px;
    padding-top: 15px !important;
}

.ccb_li {
    padding: 0;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 40px;
}

.pb_0 {
    padding-bottom: 0px !important;
}

.ccb_li li {
    list-style: none;
    padding-top: 10px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    font-weight: 400;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccb_li li i {
    color: var(--primary-color);
}

.ccb_op {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 26px;
    font-size: 15px;
    padding-top: 15px !important;
}

.ccb_op strong {
    font-family: 'Poppins', sans-serif;
    color: var(--highlight-color);
    line-height: 26px;
    font-size: 15px;
    padding-top: 15px !important;
}

.course_t_box {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.ctbib {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
}

.ctbib i {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: rgba(3, 56, 158, 0.15);
    border-radius: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ctbi_p {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 26px;
    font-size: 15px;
    letter-spacing: 0.15px;
}

.cb_btn {
    display: flex;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cb_btn i {
    margin-right: 10px !important;
}

.box_right {
    width: 100%;
    height: auto;
    padding: 20px;
    padding-bottom: 50px;
    background: rgba(3, 56, 158, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.br_box {
    width: 100%;
    height: auto;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 5px;
    margin-top: 30px;
    text-align: center;
    min-height: 250px;
}

.br_box i {
    font-size: 26px;
    color: var(--primary-color);
}

.brb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 17px;
    line-height: 26px;
    color: var(--primary-color);
    padding-top: 12px !important;
}

.brb_p {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 26px;
    font-size: 14px;
    padding-top: 10px !important;
    letter-spacing: 0px;
}

.ti_img {
    position: relative;
}

.ti_img::before {
    content: "";
    position: absolute;
    width: 55%;
    height: 225px;
    top: 0;
    right: 0px;
    background: var(--primary-color);
    transition: all 0.5s ease-in;
}

.ti_img::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 225px;
    bottom: 0;
    left: 0px;
    background: var(--highlight-color);
    transition: all 0.5s ease-in;
}

.ti_img img {
    position: relative;
    z-index: 999;
    width: 90%;
    margin: auto;
    transition: all 0.5s ease-in;
}

.ti_img:hover::after {
    bottom: 20%;
    transition: all 0.5s ease-in;
}

.ti_img:hover::before {
    top: 20%;
    transition: all 0.5s ease-in;
}

.ti_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 23px;
    padding-top: 10px !important;
    letter-spacing: 0.35px;
    font-weight: 600;
    line-height: 32px;
}

.ti_sh {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 17px;
    letter-spacing: 0.35px;
    color: var(--highlight-color);
    padding-top: 10px !important;
    line-height: 32px;
}

.ti_p {
    font-family: 'Poppins', sans-serif;
    line-height: 32px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.35px;
    padding-top: 10px !important;
}

.abt_ssh {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    color: var(--primary-color);
    padding-top: 10px !important;
    letter-spacing: 0.35px;
    font-weight: 600;
    line-height: 32px;
}

.java_h_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    flex-wrap: wrap;
}

.jhb {
    width: 18.5%;
}

.jhb i {
    padding-bottom: 10px !important;
}

.cob_ssh {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    text-align: center;
}

.pt-0 {
    padding: 0 !important;
}


@media (max-width: 767px) {

    .table-wrap table,
    .table-wrap thead,
    .table-wrap tbody,
    .table-wrap th,
    .table-wrap td,
    .table-wrap tr {
        display: block;
    }

    .table-wrap thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-wrap td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important;
        white-space: normal;
        text-align: left;
    }

    .table-wrap td:before {
        position: absolute;
        top: 8px;
        left: 15px;
        width: 45%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .table-wrap td:first-child {
        padding-top: 17px;
    }

    .table-wrap td:last-child {
        padding-bottom: 16px;
    }

    .table-wrap td:first-child:before {
        top: 17px;
    }

    .table-wrap td:before {
        content: attr(data-title);
    }

    .table tbody tr {
        border-top: 1px solid #ddd;
    }

    .table tbody tr td {
        border: none;
    }
}

.table tbody tr:nth-child(odd) {
    background: #eee;
}

@media (min-width: 768px) {

    .table thead tr th,
    .table tbody tr td {
        padding: 15px 20px;
    }
}

.table-head {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.resume a {
    background: var(--highlight-color);
    color: var(--secondary-color) !important;
    padding: 8px 10px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.table thead tr th,
.table tbody tr td {
    text-align: center;
    border: 1px solid #ddd;
}

.stc_box {
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding: 10px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.team_li {
    padding: 0;
    margin: 0;
}

.team_li li {
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
    margin-left: 20px;
}


.qu_fixed{
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-top: 60px;
}
.quick_menu_box {
    border: 1px solid rgba(20, 95, 48, 0.2);
    border-radius: 5px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.qmb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 20px !important;
    font-size: 19px;
    letter-spacing: 0.35px;
}

.quick_menu_li {
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick_menu_li li {
    display: flex;
    align-items: center;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0px;
    font-size: 15px;
    line-height: 30px;
}

.quick_menu_li li a i {
    font-size: 14px;
}

.quick_menu_li li a {
    display: flex;
    align-items: baseline;
    gap: 5px;
}


.services_inner_pages{
    padding-bottom: 80px;
}
.services_inner_box{
    margin-top: 20px;
    padding-top: 60px;
    border-top: 1px solid rgba(20, 95, 48, 0.2);
}
.b_n{
    border-top: none;
}