@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Figtree", sans-serif;
}

html {
    scroll-behavior: smooth !important;
}

/* navbar styling start */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    width: 90%;
    margin: auto;
}

.navbar {
    position: fixed !important;
    width: 100%;
    z-index: 100;
    top: 0;
    background-color: #021d3b;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0px;
}

.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 2.3rem;
    height: 93px;
    width: auto;
    position: relative;
    cursor: pointer;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-items li {
    list-style: none;
    margin-left: 6rem;
    font-size: 1.3rem;
}

.navbar a {
    color: #FFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease-in-out;
    font-size: 21px;
}

.navbar p {
    font-size: 21px;
    color: #FFF;
    cursor: pointer;
}

.navbar a:hover,
.navbar p:hover {
    color: #c9c9c9;
}

/* navbar styling end */

/* header styling start */
header {
    padding-top: 150px;
    background-color: #021d3b;
}

.header-container {
    position: relative;
    margin: 0px auto;
    margin-top: 2rem;
    width: 96vw;
    overflow: hidden;
}

.header-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13.5px;
}

.header-content {
    position: absolute;
    bottom: 2.56rem;
    left: 3.25rem;
    width: 40%;
    color: #FFF;
}

.header-content p {
    font-size: 3rem !important;
    color: #FFF;
    font-weight: 400 !important;
}

/* header styling end */

/* About us styling start */
section.about {
    background-color: #021d3b;
    padding-top: 10rem;
    padding-bottom: 7rem;
}

.about-container {
    display: flex;
    margin: 0 5vw;
    color: #FFF;
}

.about-container .title {
    width: 50%;
}

.about-container .title p {
    font-size: 3rem;
}

.about-container .content {
    width: 50%;
    display: flex;
    justify-content: flex-end;

}

.about-container .content p {
    width: 70%;
    font-size: 27px;
    position: relative;
    margin-right: 3rem;
}

.about-container .content p img {
    position: absolute;
    top: -50px;
    left: -60px;
}

/* About us styling end */

/* ecosystem styling start */
section.ecosystem {
    background-color: #021d3b;
    color: #FFF;
}

.ecosystem-header .scroll-for-more {
    display: none;
}

.ecosystem .title {
    font-size: 3rem;
    margin-left: 5vw;
    margin-bottom: 4rem;
}

.ecosystem-container {
    width: 96vw;
    margin: 0px auto;
    padding-bottom: 1.5vw;
    overflow: hidden;
}

.ecosystem-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ecosytem-item {
    width: 23.08vw;
    height: 20.5vw;
    position: relative;
    overflow: hidden;
    border-radius: 13.5px;
}

.ecosystem-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ecosystem-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.ecosystem-content p {
    font-size: 1.375rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ecosystem-content p.p-title {
    font-size: 2.625rem;
}

/* ecosystem styling end */

/* culture styling start */
.culture-container {
    position: relative;
    margin: 0px auto;
    margin-top: 2rem;
    width: 96vw;
    overflow: hidden;
    color: #FFF;
}

.culture-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13.5px;
}

.culture-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.culture-content-title {
    width: 50%;
    height: 100%;
}

.culture-content-title p {
    margin-top: 5rem;
    margin-left: 3.25rem;
    font-size: 4rem;
}

.culture-content-text {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.culture-content-text p {
    font-size: 1.6875rem;
    width: 70%;
    margin-right: 3.25rem;
    margin-bottom: 6.5rem;
}

/* culture styling end */

/* program and sectors styling start */
section.program-sectors {
    background: #F1F2F2;
    padding: 3rem 0;
    width: 96vw;
    margin: 2rem auto;
    border-radius: 13.5px;
}

/* programs styling start */
.programs {
    width: 95%;
    margin: 0 auto;
}

.programs-title {
    font-size: 3.375rem;
    color: #021D3B;
}

.programs-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.programs-item {
    /* how to make all div fill remaining width */
    flex: 1 0 calc(45% - 10px);
    margin: 5px;

    padding: 3rem;
    background-color: #FFF;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.programs-item p {
    font-size: 1.3125rem;
}

.programs-item p.title {
    color: #021D3B;
    font-size: 2.5rem;
}

/* programs styling end */

/* sectors styling start */
.sectors {
    width: 95%;
    margin: 0 auto;
    margin-top: 3.875rem;
}

.sectors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sectors-title {
    font-size: 3.375rem;
    color: #021D3B;
}

.scroll-for-more {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.scroll-for-more p {
    font-size: 1.3125rem;
}

.sector-items {
    margin-top: 3.75rem;
}

.sector-items .item {
    /* width: 428px;
    height: 560px; */
    width: 100%;
    height: 50%;
    border-radius: 13.5px;
    position: relative;
    overflow: hidden;
}

.sector-items .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-items .item p {
    font-size: 2.5rem;
    position: absolute;
    top: 0;
    color: #FFF;
    padding: 2.5rem;
}

/* sectors styling end */

/* program and sectors styling end */

/* Queote styling start */
.quote-container {
    width: 96vw;
    padding: 6.875rem 0;
    background: linear-gradient(to right top, #044EB7, #827556, #D68F16);
    margin: 0 auto;
    border-radius: 13.5px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 137px;
}

.quote-container p {
    font-size: 2.5rem;
    text-align: center;
}

.quote-container p.quote-text {
    font-size: 4.375rem;
    width: 80%;
    text-align: center;
}

/* Queote styling end */

/* register styling start */
.register-container {
    width: 96vw;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.register-item {
    flex: 1 0 calc(45% - 10px);
    height: 19.53vw;
    background-color: #FFF;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.register-item .register-item-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 3.25rem;
}

.register-item .register-item-container p {
    color: #FFF;
    font-size: 1.6875rem;
    width: 90%;
}

.register-item .register-item-container p.title {
    color: #FFF;
    font-size: 2.5rem;
}

.register-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13.5px;
}

.register-item-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.arrow-btn {
    width: 3.3125rem;
    height: 3.3125rem;
    position: relative;
    cursor: pointer;

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
}

.arrow-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.register-item-content.second p {
    width: 100%;
    font-size: 1.6875rem;
}

.arrow-btn.second {
    position: absolute;
    bottom: 52px;
    right: 52px;
}

.register-item-content.second .mobile {
    display: none;
}

/* register styling end */

/* footer styling start */
footer {
    width: 96vw;
    margin: 3.75rem auto;
    margin-bottom: 5rem;
    padding: 0 5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-top-logo {
    width: 31.82%;
    height: auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.footer-top-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.footer-nav a {
    color: #021D3B;
    font-size: 1.3125rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.footer-nav p {
    color: #021D3B;
    font-size: 1.3125rem;
    cursor: pointer;
}

.footer-nav a:hover,
.footer-nav p:hover {
    color: #8b8b8b;
}

.footer-bottom {
    margin-top: 3rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.copyright {
    color: #021D3B;
    font-size: 1.3125rem;
}

.partners {
    display: flex;
    align-items: baseline;
    gap: 8rem;
}

.partner {
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.partner p {
    color: #021D3B;
    font-size: 1.0625rem;
}

.partner-logo {
    width: 200px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* footer styling stop */

.owl-nav,
.navbar-mobile {
    display: none;
}

/* alert styling start */
.errors-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.error-item p {
    color: red;
    font-size: 1rem;
}

/* alert styling end */

/* input number styling */
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* input number styling */

.error {
    color: red;
    font-size: 13px;
    margin: 0;
}


@media (max-width: 1440px) {
    .register-item .register-item-container p {
        font-size: 1.5rem;
    }

    .register-item .register-item-container p.title {
        font-size: 2rem !important;
    }

    .register-item .register-item-container .register-item-content {
        align-items: flex-end;
    }

    .quote-container p {
        font-size: 1.75rem;
    }

    .quote-container p.quote-text {
        font-size: 2.5rem;
    }

    .sector-items .item {
        width: 100%;
        height: 50%;
    }

    .culture-content-title p {
        font-size: 3rem;
    }

    .culture-content-text p {
        font-size: 1.35rem;
    }

}

@media (max-width: 1280px) {

    /* navbar styling start */
    .navbar-container {
        padding: 1.5rem 0px;
    }

    .menu-items {
        order: 2;
        display: flex;
    }

    .logo {
        height: 50px;
    }

    .menu-items li {
        margin-left: 2.5rem;
    }

    .navbar a,
    .navbar p {
        font-size: 18px !important;
        margin: 0;
    }

    .navbar p {
        margin-top: 3px;
    }

    /* navbar styling end */

    /* header styling start */
    header {
        padding-top: 98px;
    }

    .header-container {
        margin-top: 0rem;
        width: 95%;
        height: 370px;
    }

    .header-container img {
        object-fit: cover;
    }

    .header-content {
        bottom: 2rem;
        left: 2rem;
        width: 50%;
    }

    .header-content p {
        font-size: 1.5rem !important;
    }

    /* header styling end */

    /* About us styling start */
    section.about {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .about-container {
        flex-direction: row;
    }

    .about-container .title {
        width: 20%;
    }

    .about-container .title p {
        font-size: 2rem;
    }

    .about-container .content {
        padding-top: 0.6rem;
        width: 80%;
    }

    .about-container .content p {
        font-size: 20px;
    }

    .about-container .content p img {
        top: -20px;
        left: -30px;
        width: 50px;
    }

    /* About us styling end */

    /* ecosystem styling start */
    .ecosystem-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 5vw;
        margin-bottom: 2rem;
    }

    .ecosystem-header .scroll-for-more {
        display: flex;
        align-items: center;
    }

    .ecosystem .title {
        font-size: 2rem;
        margin-left: 0vw;
        margin-bottom: 0;
    }

    .ecosystem-header .scroll-for-more p {
        font-size: 14px;
    }

    .ecosystem-header .scroll-for-more .arrow-btn {
        width: 25px !important;
        height: 25px !important;
    }

    .ecosystem-container {
        width: 95%;
        padding-bottom: 5vw;
    }

    .ecosytem-item {
        width: 100%;
        height: 50%;
    }

    .ecosystem-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ecosystem-content {
        padding: 1rem 1rem;
    }

    .ecosystem-content p {
        font-size: 1.2rem;
    }

    .ecosystem-content p.p-title {
        font-size: 1.5rem;
    }

    /* ecosystem styling end */

    /* culture styling start */
    .culture-container {
        width: 95%;
        height: max-content;
    }

    .culture-content {
        height: max-content;
        padding-bottom: 2rem;
    }

    .culture-content-title p {
        margin-top: 2rem;
        margin-left: 2rem;
        font-size: 2.5rem;
    }

    .culture-content-text {
        align-items: start;
    }

    .culture-content-text p {
        font-size: 1rem;
        margin-right: 2rem;
        margin-top: 2rem;
        margin-bottom: 0rem;
    }

    /* culture styling end */

    section.program-sectors {
        padding: 1rem 0;
        width: 95%;
    }

    /* programs styling start */
    .programs {
        width: 95%;
        margin: 0 auto;
    }

    .programs-title {
        font-size: 2rem;
    }

    .programs-item {
        flex: 1 0 calc(100%);
        margin: 0px;
        padding: 2rem;
        gap: 2rem;
    }

    .programs-item p {
        font-size: 1rem;
    }

    .programs-item p.title {
        font-size: 1.75rem;
    }

    /* programs styling end */

    /* sectors styling start */
    .sectors-title {
        font-size: 2rem;
    }

    .scroll-for-more {
        gap: 1.5rem;
    }

    .scroll-for-more p {
        font-size: 14px;
    }

    .scroll-for-more .arrow-btn {
        width: 25px !important;
        height: 25px !important;
    }

    .sector-items {
        margin-top: 2rem;
    }

    .sector-items .item {
        width: 100%;
        height: 50%;
    }

    .sector-items .item p {
        font-size: 1.75rem;
        padding: 1.5rem;
    }

    /* sectors styling end */

    /* Queote styling start */
    .quote-container {
        width: 95%;
        padding: 3rem 0;
        gap: 70px;
    }

    .quote-container p {
        font-size: 1.5rem;
    }

    .quote-container p.quote-text {
        font-size: 2rem;
    }

    /* Queote styling end */

    /* register styling start */
    .register-container {
        width: 95%;
        margin-top: 1rem;
    }

    .register-item {
        flex: 1 0 calc(45% - 10px);
        height: 50%;
    }

    .register-item .register-item-container {
        padding: 1rem;
    }

    .register-item .register-item-container p {
        font-size: 14px;
    }

    .register-item .register-item-container p.title {
        font-size: 1.3rem;
    }

    .register-item-content {
        align-items: flex-end;
    }

    .arrow-btn {
        width: 30px !important;
        height: 30px !important;
    }

    .register-item-content.second p {
        font-size: 14px;
    }

    .arrow-btn.second {
        bottom: 16px;
        right: 16px;
    }

    .register-item-content.second .desktop {
        display: none;
    }

    .register-item-content.second .mobile {
        display: block;
    }

    /* register styling end */

    /* footer styling start */
    footer {
        width: 95%;
        padding: 0;
        margin-bottom: 1.75rem;
    }

    .footer-top {
        padding: 0 1.2rem;
    }

    .footer-nav {
        gap: 2rem;
    }

    .footer-nav a {
        font-size: 1rem;
    }

    .footer-nav p {
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .copyright {
        font-size: 14px;
    }

    .partners {
        gap: 5rem;
    }

    .partner {
        display: flex;
        align-items: baseline;
        gap: 2rem;
    }

    .partner p {
        color: #021D3B;
        font-size: 1.0625rem;
    }

    .partner-logo {
        width: 140px;
    }

    /* footer styling stop */

}

@media (max-width: 767px) {

    /* navbar styling start */
    .navbar-mobile {
        display: block;
        position: fixed;
        top: 0;
        background-color: #021D3B;
        height: fit-content;
        width: 100vw;
        padding: 0 6vw;
    }

    .navbar-mobile-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-bottom: 1rem;
    }

    .navbar-mobile .logo {
        position: relative;
        width: 150px;
        overflow: hidden;
    }

    .navbar-mobile-container .burger-menu {
        position: relative;
        width: 30px;
        overflow: hidden;
        margin-top: 1rem;
    }

    .navbar-mobile .logo img,
    .navbar-mobile .burger-menu img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .navbar-mobile-menu {
        position: absolute;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background-color: #FFF;
        padding: 0rem 2rem;
        transition: all 0.5s ease-in-out;
    }

    .navbar-mobile-menu-header {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        width: 100% !important;
    }

    .navbar-mobile-menu .close {
        width: 30px;
        height: 30px;
        position: relative;
        overflow: hidden;
        margin-top: 14px;
    }

    .navbar-mobile-menu .close img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .navbar-mobile-menu .menus {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 6rem;
    }

    .navbar-mobile-menu .menus a,
    .navbar-mobile-menu .menus p {
        font-size: 1.5rem !important;
        color: #021D3B !important;
    }

    .navbar-mobile-menu-footer {
        margin-top: 5rem;
    }

    .navbar-mobile-menu-footer .logo {
        width: 170px;
        height: auto;
        position: relative;
        overflow: hidden;
        margin-left: 1rem;
    }

    .navbar-mobile-menu-footer .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .navbar-mobile-menu-footer .partners {
        display: flex;
        flex-direction: row;
        margin-top: 1.5rem;
    }

    .navbar-mobile-menu-footer .partners .partner .partner-logo.heritage {
        width: 110px;
    }

    .navbar-mobile-menu-footer .partners .partner .partner-logo {
        width: 80px;
    }

    /* mobile navbar end */
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
        display: none;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        /* font-size: 2.5rem; */
        height: 70px;
        width: 100px;
    }

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    /* navbar styling end */

    /* header styling start */
    header {
        padding-top: 64px;
    }

    .header-container {
        position: relative;
        margin: 0px auto;
        margin-top: 2rem;
        width: 96vw;
        height: 138.89vw;
        overflow: hidden;
    }

    .header-container img {
        object-fit: cover;
        object-position: 50%;
    }

    .header-content {
        bottom: 2.35rem;
        padding: 0 1.2rem;
        left: 0rem;
        width: 100%;
    }

    .header-content p {
        font-size: 1.35rem !important;
    }

    /* header styling end */

    /* About us styling start */
    section.about {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .about-container {
        flex-direction: column;
        color: #FFF;
    }

    .about-container .title {
        width: 100%;
    }

    .about-container .title p {
        font-size: 1.5rem;
    }

    .about-container .content {
        width: 100%;
        margin-top: 1rem;
    }

    .about-container .content p {
        width: 100%;
        font-size: 1rem;
        position: relative;
        margin-right: 3rem;
    }

    .about-container .content p img {
        display: none;
    }

    /* About us styling end */

    /* ecosystem styling start */
    section.ecosystem {
        background-color: #021d3b;
        color: #FFF;
    }

    .ecosystem-header {
        display: flex;
        margin-bottom: 1rem;
        justify-content: space-between;
    }

    .ecosystem-header .scroll-for-more {
        display: flex;
        margin-right: 5vw;
        gap: 14px;
    }

    .ecosystem-header .scroll-for-more p {
        font-size: 10px;
    }

    .ecosystem-header .scroll-for-more .arrow-btn {
        width: 25px !important;
        height: 25px !important;
    }

    .ecosystem .title {
        font-size: 1.5rem;
        margin-left: 5vw;
        margin-bottom: 0rem;
    }

    .ecosystem-container {
        width: 96vw;
        margin: 0px auto;
        padding-bottom: 1.5vw;
        overflow: hidden;
    }

    .ecosystem-items {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ecosytem-item {
        width: 46vw;
        height: 44vw;
        position: relative;
        overflow: hidden;
        border-radius: 13.5px;
    }

    .ecosystem-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ecosystem-content {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }

    .ecosystem-content p {
        font-size: 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }

    .ecosystem-content p.p-title {
        font-size: 1.35rem;
        margin-bottom: 0px;
    }

    /* ecosystem styling end */

    /* culture styling start */
    .culture-container {
        margin-top: 1rem;
        height: 93.52vw;
    }

    .culture-content {
        flex-direction: column;
        justify-content: space-between;
        padding: 1.2rem;
    }

    .culture-content-title {
        width: 70%;
        height: fit-content;
    }

    .culture-content-title p {
        margin-top: 0rem;
        margin-left: 0rem;
        font-size: 1.35rem;
    }

    .culture-content-text {
        width: 100%;
        height: fit-content;
        align-items: end;
        margin: 0;
    }

    .culture-content-text p {
        font-size: 1rem;
        width: fit-content;
        margin-right: 1.2rem;
        margin-bottom: 0rem;
    }

    /* culture styling end */

    /* programs styling start */
    section.program-sectors {
        padding: 1.5rem 0;
        padding-bottom: 0rem;
        margin: 1rem auto;
    }

    .programs {
        width: 90%;
    }

    .programs-title {
        font-size: 1.75rem;
    }

    .programs-items {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .programs-item {
        flex: 1 0 calc(100%);
        margin: 0px;
        padding: 1.2rem;
        gap: 2rem;
    }

    .programs-item p {
        font-size: 16px;
    }

    .programs-item p.title {
        font-size: 1.35rem;
    }

    /* programs styling end */

    /* sectors styling start */
    .sectors {
        width: 95%;
        margin: 0 auto;
        margin-top: 2rem;
    }

    .sectors-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sectors-title {
        font-size: 1.5rem;
        color: #021D3B;
    }

    .scroll-for-more {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .scroll-for-more p {
        font-size: 14px;
    }

    .sector-items {
        margin-top: 1.35rem;
    }

    .sector-items .item {
        width: 44vw;
        height: 230px;
        border-radius: 13.5px;
        position: relative;
        overflow: hidden;
    }

    .sector-items .item p {
        font-size: 1.4rem;
        padding: 1.2rem;
    }

    .sectors-header .scroll-for-more .arrow-btn {
        width: 25px;
        height: 25px;
    }

    .arrow-btn:hover {
        animation-name: none;
        -moz-animation-name: none;
    }

    /* sectors styling end */


    /* Queote styling start */
    .quote-container {
        padding: 3rem 0;

        gap: 70px;
    }

    .quote-container p {
        font-size: 1.2rem;
        text-align: center;
    }

    .quote-container p.quote-text {
        font-size: 1.5rem;
        width: 80%;
        text-align: center;
    }

    /* Queote styling end */

    /* register styling start */
    .register-container {
        flex-direction: column;
    }

    .register-item {
        width: 100%;
        height: 50vw;
    }

    .register-item .register-item-container {
        padding: 1.2rem;
    }

    .register-item .register-item-container p {
        font-size: 14px;
    }

    .register-item .register-item-container p.title {
        font-size: 1.35rem;
    }

    .register-item-content {
        align-items: end;
    }

    .arrow-btn {
        width: 1.75rem;
        height: 1.75rem;
    }

    .register-item-content.second .desktop {
        display: none;
    }

    .register-item-content.second .mobile {
        display: block;
    }

    .register-item-content.second p {
        font-size: 14px;
    }

    .arrow-btn.second {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    /* register styling end */

    /* footer styling start */
    footer {
        margin: 2.5rem auto;
        margin-bottom: 3rem;
        padding: 0;
    }

    .footer-top {
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .footer-top-logo {
        width: 250px;
    }

    .footer-nav {
        width: 100%;
        padding: 0 5vw;
        align-items: center;
        justify-content: space-between;
        gap: 0rem;
        margin-top: 2rem;
    }

    .footer-nav a {
        font-size: 1rem;
    }

    .footer-nav a:hover {
        color: #8b8b8b;
    }

    .footer-bottom {
        margin-top: 2rem;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        font-size: 12px;
        margin-top: 1.5rem;
    }

    .partners {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .partner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .partner p {
        color: #021D3B;
        font-size: 1.0625rem;
    }

    .partner-logo {
        width: 120px;
    }

    .partner-logo.heritage {
        width: 150px;
    }

    /* footer styling stop */
}

@media (max-width: 500px) {

    /* navbar styling start */
    .navbar-container input[type="checkbox"]:checked~.logo {
        display: none;
    }

    /* navbar styling end */
}

.button-group {
    align-content: center;
    justify-self: center;
}

.button-group .button { 
    padding: 10px 20px; 
    border: 1px solid black; 
    text-align: center; 
    text-decoration: none; 
    font-size: 24px; 
    cursor: pointer; 
    float: left; 
} 

.button-group .button:not(:last-child) { 
    border-right: none; 
} 

.button:hover { 
    box-shadow: 0px 4px 4px 0px #00000040;

}

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsible:hover {
    background-color: #555;
}

.column {
    width: 681px;
    height: 276px;
    padding: 10px;
}

.btn-accordion-list {
    border-radius: 0px 0px 14px 14px !important;
}

.btn-accordion-list:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    position: absolute;
}

/* #carousel-1 .owl-stage, #carousel-2 .owl-stage, */ #carousel-3 .owl-stage{
    padding-left:0px !important;
}

/* Start custom tooltip */
.tooltip-inner, .tooltip.top .tooltip-arrow {
    background: #F1F1F1;
    color: #474747;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #F1F1F1;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13.5px;
}
.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #044EB7;
  opacity: 1;
  transform: scale(1.3);
}

/* End custom tooltip */