* {
    margin: 0;
    padding: 0;
}
:root{
    --primary:#201D59;
    --secondary: #2c67ff;
}
body {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-style: normal;
}
header{
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
}
.container{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (min-width:576px) {
    .container{
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container{
        max-width: 720px
    }
}
@media (min-width:992px) {
    .container{
        max-width: 960px
    }

}
@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px
    }
}

.Btn {
    font-family: Plus Jakarta Sans;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    border: none;
    text-align: center;
    border-radius: 40px;
    padding: 12px 20px;
    color: #fff;
}
.btn-Primary {
    background-color: var(--primary);
    a{
        color: #fff;
    }
}

.btn-Secondary {
    background-color: var(--secondary);
}

.d-block{
    display: block;
}
.d-flex {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.d-flex-c {
    display: flex;
    flex-direction: column;
}

.self-center {
    display: flex;
    align-items: center;
}

.display-flex {
    display: flex;
}

.t-center {
    text-align: center;
}

.a-center {
    align-items: center;
}

.a-end {
    align-items: end;
}

.gap-10 {
    gap: 10px;
}

.p-color {
    color: #545B6D !important;
    font-weight: 400 !important;
}

.mt-100 {
    margin-top: 100px;
}

.mt-20 {
    margin-top: 20px;
}

.py-70 {
    padding: 70px 0px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-5 {
    margin-bottom: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.p-tb {
    padding: 60px 0px;
}

.p-30 {
    padding: 30px;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fWeight4 {
    font-weight: 400;
}
.fWeight5 {
    font-weight: 500;
}
.fWeight6 {
    font-weight: 600;
}
.fWeight7 {
    font-weight: 700;
}

.my-60 {
    margin: 60px 0px
}

p {
    color: #545B6D;
    font-weight: 400;
}

h5{
    color: #545B6D !important;
}

.heroSection {
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #fff;
    height: calc(100vh - 80px);
    .container{
        position: relative;
    }
}
.heroSection::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #00000082;
}
.gap-20 {
    gap: 20px;
}


.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #d9dbe9;
    padding: 30px !important;
}

.site-footer {
    .gap-20 {
        gap: 12%;
    }
}

.footer-branding div {
    margin-bottom: 20px;
}
.footer-links{
    gap: 5px;
    a{
        cursor: pointer;
        color: #000;
        font-size: 16px;
        font-WEIGHT: 500;
    }
    a:hover{
        text-decoration:underline !important ;
    }
}
.footer-branding h4,
.footer-contact h4 {
    font-weight: 500 !important;
    font-size: 16px !important;
}

.footer-contact h4 {
    display: flex;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    font-weight: 700;
    font-size: 20px !important;
    margin-bottom: 20px;
}

.footer-contact svg {
    color: #170F49;
}

footer {
    background: linear-gradient(to bottom, #e8f0ff, #f7f9ff);
    padding-top: 60px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    height: 80px;

    h6{
        font-size: 16px;
    }
}

.footer-bottom span {
    text-decoration: underline;
    color: #4a3aff;
}

.br-12 {
    border-radius: 12px !important;
}

.b-white {
    background-color: #fff;
}

.w-100 {
    width: 100%;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.box-s {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blue-color {
    color: var(--secondary) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.header-links a {
    text-decoration: unset !important;
}

a {
    text-decoration: unset !important;
}
.mobile_hide{
    display: block;
}
.mobile_show{
    display: none;
}
@media screen and (max-width:768px) {
    .mobile_hide{
        display: none;
    }
    .mobile_show{
        display: block;
    }
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 26px !important;
        font-weight: 600 !important
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    h5 {
        font-size: 14px !important;
    }

    h6 {
        font-size: 14px !important;
    }

    .header {
        display: flex !important;
        justify-content: space-between !important;
    }

    .header-btn .button {
        display: none;
    }

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

    .section-image img {
        width: 100%;
    }

    .info-image img {
        width: 100%;
    }

    .info-section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        padding-bottom: 20px !important;
    }


     .info-icon svg {
      width: 26px !important;
    }
    .section2-info .display-flex {
        display: flex;
        flex-direction: column;
    }

    .section2 .section2-info {
        padding: 0px;
    }

    .faq-section-last-box {
        border-radius: 20px;
    }

    .partner-institution-section .display-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
    }

    .feature-card .card {
        width: auto !important;
        height: auto !important;
        background: white;
        padding: 20px !important;
        box-sizing: border-box;
    }

    .info-box .mt-100 {
        margin-top: 40px;
    }

    .self-center {
        display: flex;
        flex-direction: column;
    }

    .site-footer {
        display: grid;
        grid-template-columns: 1fr !important;
        border-bottom: 1px solid #d9dbe9;
            padding: 30px 0 !important;
    }

    footer .display-flex {
        margin-bottom: 20px;
    }

    .education-income-section h1 {
        font-size: 30px !important;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .info-box {
        z-index: 1;
        gap: 40px;
    }

    .service-card-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 50px 0px 70px !important;
     }

    .p-30 {
        padding: 20px !important;
    }

    .education-income-section h3 {
        font-size: 16px !important;
        line-height: 1.4;
    }

    .education-income-section div {
        height: 500px;
    }

    .section-btn button {
        width: 100% !important;
        margin: 0px auto 30px auto !important;
        height: 50px !important;
    }
    
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: auto !important;
    }


    .powered-by-infohybrid-btn,
    .section2-info-box,
    .service-card-header p,
    .faq-section h4 {
        width: unset !important;
    }

    .section2 {
        .section2-heading {
            margin-top: 0px;
            font-size: 32px;
        }

        .f-color {
            font-size: 28px;
        }
    }

    .educational-partnership {
        margin: 30px 0px 40px;
    }

    .educational-partnership::before,
    .educational-partnership::after {
        width: 100% !important;
    }

    .info-section-Pbox .d-flex {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .features-content {
        padding-bottom: 30px;
        .feature-card-d-f .card {
            width: unset;
        }
    }

    .py-70 {
        padding: 50px 0px !important;
    }

    .heroSection {
        height: 250px !important;
        padding-bottom: 50px !important;

    }

    .what-learn {
        .section-cards {
            width: unset !important;
            gap: 20px;
        }

        .cercle-card {
            display: none;
        }

        .card {
            border-radius: 15px !important;
        }
    }
    .service-card-box-flex h3{
        padding: 0px !important;
    }

    .Leaderhip-card .d-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .Leaderhip-card .card img {
        height: 80px;
        width: 80px;
    }

    .Leaderhip-card .card p {
        font-size: 14px;
    }

    .backend-section h4 {
        width: unset;
        line-height: 1.5;
    }

    .backend-section-card {
        width: 90%;
    }

    .section2 {
        .section2-info-box:first-child {
            border-right: unset;
        }

        .section2-info-box {
            border-right: unset;
            font-size: 20px;
        }

        .section2-info-box svg {
            width: 70px;
        }
    }

    .section2-info-box {
        border-top: 1px solid #e9e9e9 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-branding div {
        margin: 20px 0px !important;
    }

    .service-card {
        .service-card-box {
            text-align: center;
        }

        .service-card-header p {
            font-size: 16px !important;
        }
    }

    .service-card {
        .service-card-last-box {
            display: flex;
        }

        .service-card-d-flex {
            gap: 0px;
            display: flex;
            flex-direction: row;
        }

        .service-card-container h3 {
            padding: 20px 0px;
        }

        .service-card-box:nth-child(2) {
            display: flex;
            flex-direction: row !important;
        }
    }

    .faq-item {
        display: flex;
        flex-direction: row;
    }

    .d-d-flex {
        display: flex;
        flex-direction: column;
    }

    .d-d-flex .d-flex {
        display: flex;
        flex-direction: row;
    }

    .faq-section button {
        text-align: center;
        width: 100%;
    }

    .partner-institution-section p {
        font-size: 16px;
    }

    .interactivity-section {
        margin: 50px 0px;
        text-align: center;
    } 
    .my-20 {
        margin: 20px 0px;
    }
    .mt-10{
        margin-top: 10px;
    }
    .p-tb {
        padding: 30px 0px 0px 0px !important;
    }
    .faq-section h4 {
        padding-bottom: 30px;
    }
    .educational-partnership::before {
        top: -20px;
    }
    .educational-partnership::after {
        height: 11px;
        bottom: -1px;
    }
    .educational-partnership .d-flex {
        display: flex !important;
        flex-direction: row !important;
    }
    .partner-institution-header-section h1 {
        font-size: 28px !important;
        font-weight: 600;
        margin-bottom: 0 !important;
    }
    .service-card-container svg {
        width: 75px;
        height: 65px;
    }
    .info-text-content h3 {
        width: 100% !important;
        font-size: 16px !important;
    }
    .info-text-content h2 {
        text-align: center;
    }
    .powered-by-infohybrid-btn button {
        margin-top: 40px;
        font-size: 18px !important;
    }
    .backend-section-svg svg {
        width: 30px;
        height: 30px;
    }
    .backend-section-svg {
        left: -10px !important;
        top: -40px !important;
        padding: 15px !important;
    }
    .m-mt-10 {
        margin-top: 10px;
    }
    .info-icon {
        width: 45px !important;
        height: 45px !important;
    }
    .footer-bottom {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    footer{
       padding: 0px ;
    }
    .js-img img {
        height: 250px;
    }
    .interactivity-section .js-card {
        height: 150px !important;
    }
    .header {
        height: 70px !important;
    }
    .header-logo-img img {
        width: 160px;
    }
    .what-learn-section .card svg {
        width: 26px;
        height: 40px;
    }
    .faq-section-last-box h3 {
        font-size: 18px !important;
    }
    .feature-card-d-f svg {
        width: 30px;
        height: 30px;
    }
    .feature-card-d-f .d-flex {
        gap: unset !important;
    }
    .powered-by-infohybrid-btn button {
        height: 50px;
        font-size: 22px;
    }
    .f-col {
        flex-direction: column !important   ;
    }
    .Leaderhip-card .card {
        height: auto;
    }
    .header-links{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100vh - 100px);
        align-items: center;
        ul{
            flex-direction: column;
            gap: 0;
            width: 100%;
            li{
                padding: 0;
                a{
                    padding: 20px 0;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    font-weight: 600;
                }
            }
            li:not(:last-child){
                border-bottom: 1px solid #e9e9e9;
            }
        }
    }
    body{
        padding: 0 !important;
    }
    .arrow-left-img img,
    .feature-card-img img{
        display: none;
    }
    .offcanvas-button{
        padding: 0;
        border: 0;
        background: transparent;
        display: flex;
    }

    .modal-dialog{
     width: unset !important;
}
.modal-content{
    max-height: 660px !important;
    overflow: auto;
}
}
/* modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 101;
    background-color: #0000009d;
}
.modal-content{
    overflow: auto;
    max-height: 850px ;
}
.modal.show{
    display: block;
}
.modal-dialog{
    width: 800px;
    margin: 30px auto 30px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}
.modal-text{
    padding: 0px 30px 10px;
}
.avatar_head{
    display: flex;
    gap: 20px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    
        .avatar_name{
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        h3{
            line-height: 1;
        }
        h4{
            color: #545B6D !important;
            font-size: 16px;
        }
    }
}
button{
    cursor: pointer;
}
.modal-close{
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    border: 0;
    display: flex;
    z-index: 101;
}
/* offcanvas */
.offcanvas.show:not(.hiding){
    transform: none;
}
.offcanvas.show{
    visibility: visible;
}
.offcanvas {
    visibility: hidden;
    position: fixed;
    inset: 0 !important;
    z-index: 1045;
    transform: translateX(-100%);
    transition: transform 0.1s ease-in-out;
    background-color: #fff;
    width: -webkit-fill-available;
    padding: 0 15px;
    height: 100vh;
}
.offcanvas-header{
    height: 70px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}