:root {
    --primary: #0d6efd;
    --dark: #0b0f19;
}

body {
    font-family: "Google Sans", system-ui, sans-serif;
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #0a3b8f;
}
a:hover {
color: #000 ;
}


/* =========================
   PAGE LOADER
========================= */
.page-loader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* critical fix: never show loader if already visited */
.skip-preloader .page-loader{
  display: none !important;
}

.page-loader__inner{
  width: min(320px, 82vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-loader__logo-wrap{
  width: clamp(110px, 16vw, 180px);
}

.page-loader__logo{
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 50% 50%;
}

.page-loader__bar{
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 60, 151, 0.12);
  overflow: hidden;
}

.page-loader__bar-fill{
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #003C97;
  transition: width .25s ease;
}

body.is-loading{
  overflow: hidden;
}







.navbar {
    transition: all .3s ease;
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero {
    height: 50vh;
    /*background:linear-gradient(120deg,#f8f9fa,#eef2ff);*/
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-weight: 700;
    font-size: 76px;
    line-height: 80px;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.hero-title span {
    color: #003c97;
}

/* Home hero / video heights (typography follows .hero-title + responsive.css) */
@media (max-width: 1199.98px) {
    #home.hero {
        height: 50vh;
    }

    #hero-video.hero-vid {
        height: 65vh !important;
    }
    .hero-title {
        font-size: 64px;
    }
}

@media (max-width: 767.98px) {
    #home.hero {
        height: 35vh;
    }

    #hero-video.hero-vid {
        height: 60vh !important;
    }
}

@media (max-width: 575.98px) {
    #home.hero {
        height: 35vh;
    }

    #hero-video.hero-vid {
        height: 60vh !important;
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .5;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #0d6efd;
    top: 10%;
    left: 5%
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #6610f2;
    bottom: 10%;
    right: 10%
}

.section {
    padding: 120px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.parallax-overlay {
    background: rgba(11, 15, 25, .6);
    color: #fff;
    padding: 120px 0;
}

.service-card {
    border: none;
    border-radius: 16px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}


.site-header {
    /*background:#f5f6f8;*/
    padding: 14px 0;
}

.logo img {
    display: block;
    max-height: 80px;
}

.main-nav .nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #1f3b7a;
    transition: .2s;
    font-size: 19px;
    transition: all .3s, opacity .4s;
}

.main-nav a:hover {
    opacity: .7;
    text-decoration: underline;
}

.main-nav .active a {
/*text-decoration: underline;*/
color: #66BF51;
margin-left: 8px;
border: 1px solid #66BF51;
padding: 10px 20px;
border-radius: 30px;
}
.main-nav .active-login a {
/*text-decoration: underline;*/
color: #fff;
margin-left: 8px;
border: 1px solid #66BF51;
background-color: #66BF51;
padding: 10px 20px;
border-radius: 30px;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons a {
    color: #1f3b7a;
    font-size: 16px;
    margin-right: 6px;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #003c97;
    border-radius: 16px;
    text-align: center;
    transition: background-color .3s, opacity .4s;
}

.social-icons a:hover {
    background-color: #1f3b7a;
    color: #fff;
}

.btn-demo {
    background: #0b3a82;
    color: #fff;
    padding: 10px 18px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /*background:#f5f6f8;*/
    transition: all .3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .85);
    /*box-shadow:0 10px 30px rgba(0,0,0,.08);*/
    backdrop-filter: blur(10px);
}

/* Navbar: flex shell + collapse; hamburger only below lg (992px) */
.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    position: relative;
}

a.logo.site-header__brand {
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

a.logo.site-header__brand img {
    display: block;
}

.site-header__panel {
    flex: 1 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .site-header__inner {
        flex-wrap: nowrap;
        gap: 0.75rem 1rem;
    }

    .site-header__panel {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: auto;
        align-items: center;
    }
}

/* Tablet (992–1199px): smaller type, tighter gaps, wrapping labels — full menu visible */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header__panel {
        gap: 10px 12px;
    }

    .main-nav {
        min-width: 0;
        flex: 1 1 auto;
    }

    .main-nav .nav-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        /* gap: 6px 10px; */
        row-gap: 6px;
    }

    .main-nav li {
        flex: 0 1 auto;
        max-width: min(100%, 8rem);
    }

    .main-nav a {
        font-size: 19px;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
        display: inline-block;
        width: 100%;
        /* overflow-wrap: break-word;
        word-wrap: break-word; */
    }

    .main-nav .active a {
        margin-left: 0;
        padding: 6px 12px;
        font-size: 19px;
        white-space: nowrap;
        width: auto;
        max-width: none;
    }

    .main-nav li.active {
        max-width: none;
        flex: 0 0 auto;
    }

    .header-actions {
        gap: 10px;
        flex-shrink: 0;
    }

    .site-header .btn-primary.btn--light {
        height: 48px;
        padding: 0 22px 0 44px;
    }

    .site-header .btn__text {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .site-header__inner {
        gap: 1rem 1.5rem;
    }

    .main-nav .nav-list {
        flex-wrap: wrap;
        /* gap: 16px; */
    }

    .main-nav li {
        max-width: none;
    }

    .main-nav a {
        white-space: pre-wrap;
        font-size: 19px;
        line-height: normal;
        width: auto;
        display: inline;
        text-align: left;
        overflow-wrap: normal;
    }

    .main-nav .active a {
        margin-left: 8px;
        padding: 10px 20px;
        font-size: inherit;
    }
}

.btn-primary {
/*    border: none;
    border-radius: 90px;
    cursor: pointer;
    display: inline-flex;
    height: 65px;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    text-align: center;
    transition: background-color .3s, opacity .4s;
    white-space: nowrap;
    padding: 0 48px 0 67px;
    background-color: #003c97;*/


    border: none;
    border-radius: 90px;
    cursor: pointer;
    display: inline-flex;
    height: 56px;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    text-align: center;
    transition: background-color .3s, opacity .4s;
    white-space: nowrap;
    padding: 0 30px 0 55px;
    background-color: #003c97;
}

.btn--light .btn--point__c {
    background-color: #fff;
}

.btn--point__c {
    border-radius: 50%;
    display: block;
    height: 11px;
    left: 32px;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width .2s ease-out, height .2s ease-out, transform .2s ease-out, left .2s ease-out;
    width: 11px;
}

.btn--point__a {
    display: block;
    height: 16px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
}

.btn--point__a svg {
    display: block;
    height: 100%;
    width: 100%;
}

.btn--light .btn__text {
    color: #fff;
}

.btn__text {
    align-self: center;
    font-family: 'Google Sans';
    /*font-size: 22px;*/
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}



@media (hover: hover) and (pointer: fine) {

.btn--point:hover .btn--point__c {
/*    height: 49px;
    left: 8px;
    width: 49px;*/

    height: 40px;
    left: 7px;
    width: 39px;

}

.btn--point:hover .btn--point__a {
    opacity: 1;
}



}











.hero-vid {
    position: relative;
    overflow: hidden;
}

/* Same default height as #home.hero; narrowed with shared breakpoints above */
#hero-video.hero-vid {
    height: 85vh;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-award-banner-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 24px);
    pointer-events: none;
}

.hero-award-banner {
    display: block;
    width: min(72vw, 920px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}


.home-top__buttons {
    gap: 0 64px;
    margin-top: 10px;

}

.login__button {
    gap: 0 64px;
    margin-top: 46px;

}

.link-point {
    padding-left: 24px;
    color: #003C97;
    position: relative;
}

.link-point--blue-1:before {
    background-color: #003c97;
}

.link-point:before {
    border-radius: 50%;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 10px;
}

.link-point__animation {
    display: block;
    height: 22px;
    transform-style: preserve-3d;
    transition: transform .25s ease-out;
}


.link-point__text-a {
    transform: translateZ(11px);
}

.link-point__text-a,
.link-point__text-b {
    display: flex;
    flex-direction: column;
    height: 22px;
    justify-content: center;
}

.link-point__text {
    font-family: 'Google Sans';
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.link-point__text-b {
    transform: rotateX(-90deg) translateZ(-11px);
}

.link-point__text-a,
.link-point__text-b {
    display: flex;
    flex-direction: column;
    height: 22px;
    justify-content: center;
}

.link-point__text {
    font-family: 'Google Sans';
    font-size: 22px;
    white-space: nowrap;
}

.fx-a-center {
    align-self: center;
}

.link-point__animation {
    display: block;
    height: 22px;
    transform-style: preserve-3d;
    transition: transform .25s ease-out;
}

@media (hover: hover) and (pointer: fine) {

.link-point:hover .link-point__animation {
    transform: rotateX(90deg);
}

}
#everything {
    height: 100vh;
}

.everything {
    z-index: 9;
}


.hero-section {
    background: #FEFEFE;
    min-height: 100vh;
    display: flex;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.text-wrapper {
    /*max-width:650px;*/
}

.hero-title {
    font-weight: 600;
    color: #6c7280;
    line-height: 1.2;
}

.hero-title span {
    color: #0f3f8f;
}
#login{
overflow: hidden;
/*position: relative;*/
height: 100%;
}

.login-hero-title {
    font-weight: 600;
    color: #6c7280;
    line-height: 1.2;
    font-size: 36px;
    text-align: left;
    margin-top: 30px;
}

.login-hero-title span {
    color: #0f3f8f;
}
.icons-login{
height: 55vh;
width: 100%;
}
.img-login-icon-wrapper{
  flex-shrink: 0;
}

.hero-login {
/*min-height: 60vh;
overflow: hidden;
z-index: -1*/

min-height: 30vh;
    /* position: relative; */
    overflow: hidden;
    z-index: -1;
    position: absolute;
    bottom: 0;
    width: 100%;

}


.login-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.box-grey{
background: #f5f5f5;
border-radius: 30px;
padding: 60px;
min-height: 44vh;
margin-top: 80px;
}
.login-h3{
font-size: 40px;
line-height: 1.2;
color: #898995;
text-align: left;
margin-bottom: 40px;
}
.hero-sub {
    margin-top: 30px;
    color: #003C97;
    font-size: 22px;
    line-height: 1.3;
    /*max-width:520px;*/
    max-width: 50%;
    margin-bottom: 25px;
}
.txt-btn{
font-size: 16px;
font-weight: 500;
color: #898995;
}

.login-step {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.4s ease;
  position: absolute;   /* KEY FIX */
  width: 100%;
  pointer-events: none;
}

.login-step.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;   /* bring it back */
  pointer-events: auto;
}


/* BUTTON */
.btn-know {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid #0f3f8f;
    color: #0f3f8f;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}

@media (hover: hover) and (pointer: fine) {
.btn-know:hover {
    background: #0f3f8f;
    color: #fff;
}
}

/* RIGHT SVG */
.img-icon-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.icons {
    /*max-width:100%;*/
    height: auto;
    width: 100vh;
    position: absolute;
}



.btn--border {
    border: none;
    border-radius: 90px;
    cursor: pointer;
    display: inline-flex;
    height: 65px;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    text-align: center;
    transition: background-color .3s, opacity .4s;
    white-space: nowrap;
    padding: 0 48px 0 67px;
    background-color: #003c97;
    background-color: #fff;
    border: 1px solid #003c97;
}

.btn--border .btn--border-point__c {
    background-color: #003c97;
}

.btn--border-point__c {
    border-radius: 50%;
    display: block;
    height: 11px;
    left: 32px;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width .2s ease-out, height .2s ease-out, transform .2s ease-out, left .2s ease-out;
    width: 11px;
}

.btn--border-point__a {
    display: block;
    height: 16px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
}

.btn--border-point__a svg {
    display: block;
    height: 100%;
    width: 100%;
}

.btn--border .btn__border-text {
    color: #003c97;
}

.btn__border-text {
    align-self: center;
    font-family: 'Google Sans';
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
.btn--border:hover .btn--border-point__c {
    height: 49px;
    left: 8px;
    width: 49px;
}

.btn--border:hover .btn--border-point__a {
    opacity: 1;
}

}

.p-learn {
    min-height: 100vh;
    padding: 120px 0;
    background: #fff;
    display: flex;
}

.learn-text-wrapper {
    /*display: flex;*/
    width: 50%;
    position: relative;
}

.h2-hero {
    font-weight: 700;
    font-size: 76px;
    line-height: 80px;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.h2-hero span {
    color: #003c97;
}


.ele1 {
    max-width: 200px;
    position: absolute;
    right: 200px;
    top: 250px;
}

.wd200 {
    width: 200px;
}

/*.panel{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
}*/

.panel-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* keeps overlay look */
}

.panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding-top: 180px;
}

.img-learn {
    margin-top: -100px;
}

.p-assignment {
    background: #003C97;
    min-height: 100vh;
    /*padding: 120px 0 0;*/
    display: flex;
    padding-top: 180px;
    box-sizing: border-box;
}

.h2-hero-wt {
    font-weight: 700;
    font-size: 74px;
    line-height: 82px;
    letter-spacing: -2px;
    text-align: left;
    color: #fff;
}

.ele2 {
    max-width: 140px;
    float: right;
    position: absolute;
    right: -100px;
    top: -100px;
}

.assignment-text {
    position: relative;
}

.img-assignment {}

.assignment-section {
    height: 100%;
}

.assignment-img-wrapper {
    display: flex;
    align-items: flex-end;
}

.parallax {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.ele3 {
    max-width: 60px;
    position: absolute;
    right: 200px;
    bottom: -180px;
}




.btn--border2 {
    border: none;
    border-radius: 90px;
    cursor: pointer;
    display: inline-flex;
    height: 65px;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    text-align: center;
    transition: background-color .3s, opacity .4s;
    white-space: nowrap;
    padding: 0 48px 0 67px;
    background-color: transparent;
    border: 1px solid #fff;

}

.btn--border2 .btn--border2-point__c {
    background-color: #fff;
}

.btn--border2-point__c {
    border-radius: 50%;
    display: block;
    height: 11px;
    left: 32px;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width .2s ease-out, height .2s ease-out, transform .2s ease-out, left .2s ease-out;
    width: 11px;
}

.btn--border2-point__a {
    display: block;
    height: 16px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
}

.btn--border2-point__a svg {
    display: block;
    height: 100%;
    width: 100%;
}

.btn--border2 .btn__border-text {
    color: #fff;
}

.btn__border2-text {
    align-self: center;
    font-family: 'Google Sans';
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
.btn--border2:hover .btn--border2-point__c {
    height: 49px;
    left: 8px;
    width: 49px;
}

.btn--border2:hover .btn--border2-point__a {
    opacity: 1;
}
}

/* SECTION */
.lesson-plan {
    position: relative;
    padding: 140px 0 120px;
    min-height: 100vh;

}

/* HEADING */
.h2-lesson-plan {
    text-align: center;
    font-size: 74px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 auto 60px;
    color: #0b3d91;
    letter-spacing: -0.02em;
}

.h2-lesson-plan span {
    color: #8e8e93;
}

/* CENTER ICONS */
.center-icons {
    position: relative;
    width: 760px;
    max-width: 90%;
    margin: 70px auto 0;
}

.center-icons svg {
    width: 100%;
    height: auto;
}

/* HEX BASE */
.top-left-hex,
.bottom-left-hex,
.bottom-right-hex {
    position: absolute;
    pointer-events: none;
}

/* BIG CLUSTER LEFT */
.top-left-hex {
    right: 80px;
    top: 80px;
    width: 160px;
}

/* SMALL CLUSTER LEFT BOTTOM */
.bottom-left-hex {
    left: 120px;
    bottom: 150px;
    width: 150px;
}

/* RIGHT HEX */
.bottom-right-hex {
    right: 120px;
    bottom: 120px;
    width: 70px;
}

/* make svg responsive */
.top-left-hex svg,
.bottom-left-hex svg,
.bottom-right-hex svg {
    width: 100%;
    height: auto;
    display: block;
}

.new-parallax {
    transition: none !important;
    will-change: transform;
}


.analytics {
    position: relative;
    padding: 140px 0 120px;
    min-height: 100vh;
}

.h2-analytics {
    text-align: left;
    font-size: 74px;
    line-height: 1.15;
    /*font-weight: 500;*/
    font-weight: 700;
    color: #8e8e93;
    /*margin-left: 30px;*/
    letter-spacing: -0.02em;
}

.h2-analytics span {
    color: #0b3d91;
}

.an-top-left-hex,
.an-bottom-left-hex,
.an-bottom-right-hex2,
.an-bottom-right-hex {
    position: absolute;
    pointer-events: none;
}

.video-analytics {
    width: 100%;
    border-radius: 30px;
}

.an-top-left-hex {
    left: 10px;
    top: -60px;
    width: 40px;
}

.an-bottom-left-hex {
    right: 10px;
    top: -120px;
    width: 100px;
}

.an-bottom-right-hex {
    right: 320px;
    bottom: 70px;
    width: 35px;
}

.an-bottom-right-hex2 {
    left: 120px;
    bottom: -50px;
    width: 30px;
}

.an-top-left-hex svg,
.an-bottom-left-hex svg,
.an-bottom-right-hex2 svg,
.an-bottom-right-hex svg {
    width: 100%;
    height: auto;
    display: block;
}



.reach-vid {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.reach-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.reach-vid {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #e4f0ff;
    justify-content: center;
}



.reach-bg-svg {
    position: absolute;
    pointer-events: none;
    right: 50px;
    bottom: 20px;
    width: 100px;
}


.reach-bg-svg svg {
    width: 100%;
    height: auto;
    display: block;
}


.reach-card {
    position: relative;
    z-index: 3;
    background: #003C97;
    padding: 70px 70px;
    text-align: center;
}

.reach-title {
    text-align: center;
    font-size: 74px;
    line-height: 1.15;
    /*font-weight: 500;*/
    font-weight: 700;
    color: #fff;
    margin: 0 auto 60px;
    letter-spacing: -0.02em;
}




.infinity-vid {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.infinity-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.infinity-vid {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 50px;
    justify-content: space-between;
    background-color: #000;

}

.infinity-card {
    position: relative;
    z-index: 3;
    text-align: center;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.cntr-infinity-txt {
    position: relative;
    z-index: 3;
    text-align: center;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.infinity-title {
    text-align: center;
    font-size: 70px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
    margin: 0 auto 0px;
    letter-spacing: -0.02em;
}

.infinity-title span {
    color: #3291CF;
}


/*#stakeholder {
  height: 100vh;
}

.stakeholder{
  position: relative;
}
.rw-sh {
  display: flex;
  height: 100%;
}

.dv-sh {
  flex: 1; 
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.dv-sh img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}*/

#stakeholder {
    position: relative;
    height: 105vh;
    overflow: hidden;
}

.stakeholder {
    position: relative;
}

#stakeholder .container-fluid {
    height: 100%;
}

.rw-sh {
    display: flex;
    height: 100%;
}

.dv-sh {
    flex: 1;
    padding: 0px;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* 🔥 important */
}

.dv-sh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* acts like background */
}


.h2_stakeholder {
    position: absolute;
    color: white;
    font-size: 76px;
    margin: 0;
    color: #003C97;
}

.h3-stakeholder span {
    color: #4EC2F0;
}


.h3-stakeholder-mb{
    text-align: center;
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
}
.h3-stakeholder-mb span {
    color: #4EC2F0;
}



.align-tp {
    top: 120px;
    left: 20px;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-100%, 0);
}

.align-bt {
    position: absolute;
    bottom: 80px;
    right: 20px;

    transform: rotate(-90deg) translate(100%, 0);
    transform-origin: bottom right;
}

.round-section {
    width: 300px;
    height: 300px;
    background: #003C97;
    border-radius: 50%;
    text-align: center;
    padding: 30px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 🔥 TRUE CENTER */

    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bg-blue-mb{
  background: #003C97;
}

.h3-stakeholder {
    text-align: center;
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
}

.sh-svg {
    max-width: 50px;
    text-align: center;
}

.sh-svg svg {
    width: 100%;
}

.stake-overlay {
    position: absolute;
    inset: 0;
    background: #003C97;
    z-index: 8;
    border-radius: 0;
}

/* round stays above overlay */
.round-section {
    z-index: 9;
}

/* images initially hidden */
.dv-sh {
    opacity: 0;
    transform: scale(1.08);
}

.round-section .h3-stakeholder,
.round-section .sh-svg {
    opacity: 0;
    transform: translateY(20px);
}

/* panels hidden initially */
.dv-sh {
    opacity: 0;
    transform: scale(1.06);
}

.round-section {
    position: fixed;
    top: 50%;
    left: 50%;

    width: 300px;
    height: 300px;

    transform: translate(-50%, -50%) scale(8);
    transform-origin: center;

    border-radius: 50%;
    z-index: 20;
}

.round-section2 {
    position: fixed;
    top: 50%;
    left: 50%;

    width: 300px;
    height: 300px;

    transform: translate(-50%, -50%) scale(2);
    transform-origin: center;

    border-radius: 50%;
    z-index: 21;
    /*opacity: 0;*/
}


.round-section .h3-stakeholder,
.round-section .sh-svg,
.dv-sh {
    opacity: 0;
    transform: translateY(40px);
}


.journey {
    position: relative;
    padding: 140px 0 120px;
    min-height: 100vh;
}


.h2-journey {
    text-align: center;
    font-size: 74px;
    line-height: 1.15;
    /*font-weight: 500;*/
    font-weight: 700;
    margin: 0 auto 0px;
    letter-spacing: -0.02em;
    color: #8e8e93;
}

.h2-journey span {
    color: #0b3d91;
}

.journey-lead {
    text-align: center;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 auto 60px;
    color: #0b3d91;
    letter-spacing: -0.02em;
}

.journey-lead span {
    color: #8e8e93;
}

.journey-top-left-hex,
.journey-top-right-hex,
.journey-bottom-left-hex,
.journey-bottom-right-hex {
    position: absolute;
    pointer-events: none;
}

.journey-top-left-hex svg,
.journey-top-right-hex svg,
.journey-bottom-left-hex svg,
.journey-bottom-right-hex svg {
    width: 100%;
    height: auto;
    display: block;
}

.journey-top-left-hex {
    right: 80px;
    top: 80px;
    width: 160px;
}

.journey-bottom-left-hex {
    left: 120px;
    bottom: 150px;
    width: 150px;
}

.journey-bottom-right-hex {
    right: 120px;
    bottom: 120px;
    width: 70px;
}

.testimonial {
    position: relative;
    padding: 140px 0 120px;
    min-height: 100vh;
}

/*.testimonial{
  padding: 120px 0;
  position: relative;
}*/

.testimonial-slider-wrap {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-swiper {
    width: 70%;
}

.testimonial-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-swiper img {
    max-width: 100%;
    height: auto;
}

/* HEX ARROWS */
.hex-arrow {
    width: 120px;
    height: 120px;
    background: #003C97;
    border: none;
    cursor: pointer;
    clip-path: polygon(25% 6.7%, 75% 6.7%,
        100% 50%, 75% 93.3%,
        25% 93.3%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-prev {
    margin-right: 25px;
}

.hex-next {
    margin-left: 25px;
}









.testimonial-slider-wrap-mobile {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-swiper-mobile {
  width: 100%;
}

.testimonial-swiper-mobile .swiper-slide {
  width: 150px;   /* each logo width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-swiper-mobile img {
  width: 100%;
  height: auto;
  object-fit: contain;
}



.logo-ticker {
  overflow: hidden;
  width: 100%;
  margin-top: 60px;
}

.logo-track {
  display: flex;
  gap: 5px;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}

.logo-track img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.logo-ticker:hover .logo-track {
  animation-play-state: paused;
}



.principle-testimonial {
    position: relative;
    padding: 120px 0 140px;
}

/* ⭐ STAGE — main alignment container */
.p-test-stage {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* SLIDER */
.principle-slider {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

/* CENTER CARD */
.p-test-card {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* ⭐ BIGGER HEX IMAGE */
.p-test-img {
    width: 240px;
    height: 260px;
    margin: 40px auto 20px;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    overflow: hidden;
}

.p-test-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.p-test-name {
    color: #003C97;
    font-weight: 600;
}

.p-test-role {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.p-test-text {
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

/* ⭐ HEX CLUSTERS — now relative to stage */
.p-test-left-top-hex {
    position: absolute;
    top: 20px;
    left: -120px;
    width: 120px;
}

.p-test-right-bottom-hex {
    position: absolute;
    top: 40px;
    right: -120px;
    width: 120px;
}

/* ARROWS close to image */
.arrow-left-slide,
.arrow-right-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .6;
    transition: .3s;
    z-index: 3;
}

.arrow-left-slide:hover,
.arrow-right-slide:hover {
    opacity: 1;
}

.arrow-left-slide {
    left: -80px;
}

.arrow-right-slide {
    right: -80px;
}

.arrow-left-slide svg,
.arrow-right-slide svg {
    width: 50px;
}

.quote-svg {
    text-align: center;
}

.quote-svg svg {
    max-width: 20px;
}



/* =============================
   VIDEO TESTIMONIAL SECTION
============================= */

.video-testimonial {
    position: relative;
    padding: 120px 0 140px;
    min-height: 100vh;

    display: flex;
    /* ✅ enables vertical centering */
    align-items: center;
    /* ✅ centers content */
}

/* HEX DECORATIONS */
.institute-left-top-hex,
.institute-right-bottom-hex {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.institute-left-top-hex svg,
.institute-right-bottom-hex svg {
    width: 100%;
    height: auto;
    display: block;
}

.institute-left-top-hex {
    left: 80px;
    top: 80px;
    width: 120px;
}

.institute-right-bottom-hex {
    right: 80px;
    bottom: 80px;
    width: 120px;
}


/* =============================
   SLIDER WRAPPER
============================= */

.video-carousel-wrap {
    position: relative;
    max-width: 1300px;
    margin: 120px auto 60px;
    z-index: 2;
}

/* add space so arrows don’t overlap videos */
.video-carousel {
    padding: 0 120px;
}


/* =============================
   VIDEO CARD
============================= */

.video-card {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =============================
   ARROWS
============================= */

.video-arrow-left-slide,
.video-arrow-right-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: all .3s ease;
    opacity: 0.9;
}

/* PUSH OUTSIDE VIDEO TRACK */
.video-arrow-left-slide {
    left: -60px;
}

.video-arrow-right-slide {
    right: -60px;
}

.video-arrow-left-slide svg,
.video-arrow-right-slide svg {
    width: 40px;
}

/* HOVER EFFECT */
.video-arrow-left-slide:hover,
.video-arrow-right-slide:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}






/* SECTION BASE */
.ceo-message {
    position: relative;
    /*padding: 120px 0 0;*/
    padding: 0px;
    background: #003C97;
    min-height: 90vh;
    overflow: hidden;
}

/* RIGHT IMAGE AS BACKGROUND */
.ceo-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54%;
    height: 100%;
    background: url("../images/mr-javid.jpg") no-repeat right bottom;
    background-size: cover;
    z-index: 1;
}
.ceo-bg-hex{
    /*background: url("../images/ceo-bg1.jpg") repeat-x center top;*/
    background: url("../images/ceo-bg1.jpg") repeat center top;
    background-attachment: fixed;
    width: 100%;
    height: 250px;
}
.ht-80vh{
min-height: 80vh
}


.ceo-message .container {
    position: relative;
    z-index: 2;
}

/* vertical center reference */
.ceo-message .row {
    min-height: calc(100vh - 240px);
    /* adjusts for your 120px top/bottom padding */
}

/* keep content centered nicely */
.ceo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* QUOTE ICON */
.ceo-quote {
    width: 60px;
    margin-bottom: 25px;
}

/* TEXT */
.ceo-text {
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    /*max-width: 420px;*/
    margin-bottom: 60px;
    font-weight: 400;
}
.ceo-text span{
    color: #4EC2F0;
}

/* NAME */
.ceo-name {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: normal;
    color: #fff;
    text-align: right;
}
.dash{
width: 20px;
height: 12px;
border-top: 1px solid #fff;
display: inline-block;
margin-right: 10px;
}
/* ROLE */
.ceo-role {
    color: #4EC2F0;
    font-size: 20px;
    font-weight: normal;
    text-align: right;
}

/* HEX DECOR */
.ceo-hex {
    position: absolute;
    width: 180px;
    pointer-events: none;
}

.ceo-hex-top {
    top: -40px;
    left: 10px;
}

.ceo-hex-bottom {
    bottom: -81px;
    right: 153px;
}

.ceo-hex-top {
    max-width: 120px;
}
.ceo-img-bt{
align-items: end;
display: flex;
}

.ceo-hex-bottom {
    max-width: 70px;
}

/* RESPONSIVE */
/*@media (max-width: 992px) {

    .ceo-bg {
        position: relative;
        width: 100%;
        height: 420px;
        margin-bottom: 40px;
    }

    .ceo-content {
        padding-left: 0;
        text-align: center;
    }

    .ceo-text {
        margin-left: auto;
        margin-right: auto;
    }

    .ceo-hex {
        display: none;
    }
}*/


.footer-vid {
    position: relative;
    height: 60vh;
    min-height: 320px;
    overflow: hidden;
}

.footer-vid__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0, 20, 50, 0.45) 0%, rgba(0, 30, 80, 0.55) 100%); */
    z-index: 1;
    pointer-events: none;
}

.footer-vid__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-vid__content .h2-footer-title {
    position: relative;
    bottom: auto;
    width: 100%;
    margin: 0 0 1.5rem;
    font-size: 10vw;
    line-height: 130px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.footer-connect-form {
    width: 100%;
    max-width: 960px;
}

.footer-connect-form__input {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.35);
}

.footer-connect-form .footer-connect-form__input.is-invalid {
    border-color: #f87171;
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.5);
}

.footer-connect-feedback {
    margin-bottom: 0.35rem;
}

.bg-form{
background: #f5f5f5;
padding-top: 50px;
padding-bottom: 50px;
}

/* Contact page — two distinct form panels (unique field ids: contact_demo_*, contact_support_*) */
.contact-form-panel {
    border-radius: 14px;
    padding: 1.25rem 1.35rem 1.75rem;
    border: 1px solid #e8eaef;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 60, 151, 0.06);
    height: 100%;
}

.contact-form-panel--demo {
    background: #fff;
}

.contact-form-panel--support {
    background: #fafbfd;
    border-color: #dfe3eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-panel__hr {
    margin-bottom: 2.5rem;
}

.contact-form-feedback {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

.contact-form-feedback--error {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.contact-form-feedback--success {
    color: #166534;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.contact-form-panel .form-control.input__item.is-invalid {
    border-color: #dc2626;
}

.contact-form-panel .form-control.input__item:focus.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
}
.footer-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Legacy hook if title used outside .footer-vid__content */
.h2-footer-title {
    font-weight: 600;
    color: #fff;
}



.footer-entrar {
    position: relative;
}

/* Light footer (white) */
.footer-entrar--light {
    background: #fff;
    color: #374151;
    overflow-x: hidden;
    border-top: 1px solid #e8eaef;
}

.footer-entrar__brand-img {
    max-height: 76px;
    width: auto;
    height: auto;
    display: block;
}

.footer-entrar--light .footer-entrar__tagline {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
    max-width: 18rem;
    margin: 1rem auto 0;
}

@media (min-width: 992px) {
    .footer-entrar--light .footer-entrar__tagline {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-entrar--light .footer-entrar__divider {
    height: 1px;
    background: rgba(0, 60, 151, 0.12);
    margin-bottom: 1.25rem;
}

.footer-entrar__list li {
    margin-bottom: 0.5rem;
}

.footer-entrar--light .footer-entrar__list a {
    color: #0a3b8f;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-entrar--light .footer-entrar__list a:hover {
    color: #003c97;
    text-decoration: underline;
}

.footer-entrar--light .footer-entrar__badge {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #3d9c42;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-entrar--light .footer-entrar__address {
    font-size: 1.1rem;
    line-height: 1.55;
    color: #4b5563;
    margin-bottom: 12px;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .footer-entrar--light .footer-entrar__address {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-entrar--light .footer-entrar__mailto {
    display: inline-block;
    color: #003c97;
    font-size: 0.9375rem;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-entrar--light .footer-entrar__mailto:hover {
    color: #002973;
    text-decoration: underline;
}

.footer-entrar--light .footer-entrar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #003c97;
    color: #003c97;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-entrar--light .footer-entrar__cta:hover {
    background: #003c97;
    border-color: #003c97;
    color: #fff;
}

.footer-entrar--light .footer-entrar__social-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
}

.footer-entrar__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 992px) {
    .footer-entrar__social {
        justify-content: flex-start;
    }
}

.footer-entrar--light .footer-entrar__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #003c97;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f3b7a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-entrar--light .footer-entrar__social a:hover {
    background: #1f3b7a;
    border-color: #1f3b7a;
    color: #fff;
}

.footer-entrar--light .footer-entrar__copy {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ===== FORM STYLE ===== */
.form-pill {
    height: 44px;
    border-radius: 25px;
    border: 1px solid #c9ccd1;
    padding: 0 16px;
    background: #f8f8f8;
}

.btn-submit-pill {
    height: 44px;
    border-radius: 25px;
    background: #b9bcc1;
    color: #0a3b8f;
    border: none;
    font-weight: 500;
    transition: .25s;
}
@media (hover: hover) and (pointer: fine) {
.btn-submit-pill:hover {
    background: #aeb2b7;
}
}
/* ===== ADDRESS ===== */
.footer-address {
    font-size: 16px;
    color: #0a3b8f;
    line-height: 1.4;
}

/* ===== EMAIL ===== */
.footer-email {
    font-size: 20px;
    color: #0a3b8f;
}

/* ===== DEMO BUTTON ===== */
.btn-demo-pill {
    background: #0a3b8f;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 14px;
    transition: .25s;
}

@media (hover: hover) and (pointer: fine) {
.btn-demo-pill:hover {
    background: #082f73;
}
}


.logo-placeholder {
    width: 100px;
    margin-bottom: 8px;
    margin-right: 15px;
}

.logo-placeholder img {
    max-width: 100%;
}


.site-header {
    /*position: relative;*/
}


.menu-toggle {
    margin-left: auto;
    /* pushes to right */
}


/* BUTTON RESET */
.menu-toggle {
    width: 34px;
    height: 26px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* BARS */
.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0f3f8f;
    /* your brand color */
    transition: transform 0.4s cubic-bezier(0.9, 0, 0, 0.2),
        opacity 0.4s cubic-bezier(0.9, 0, 0, 0.2);
}

/* BAR POSITIONS */
.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 12px;
}

.menu-toggle span:nth-child(3) {
    top: 24px;
}

/* ACTIVE STATE (CROSS) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}




#inner-header {}

.inner-header {
    position: relative;
    /*height: 600px;*/
    height: 300px;
    overflow: hidden;
    background: #003C97;
}

.h1page {
    font-size: 92px;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding-bottom: 20px;
    z-index: 9;
    position: relative;
}

.inner-bg-video {
    /*    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;*/

    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background-position: top center;
    transform: translate(-50%, -50%);
    pointer-events: none;

}


.h2-insd {
    font-size: 76px;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    bottom: 0px;
}


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

.mt-n-30 {
    margin-top: -30px;
}

.mt-n-40 {
    margin-top: -40px;
}

.mt-n-50 {
    margin-top: -50px;
}

.mt-n-60 {
    margin-top: -60px;
}

.mt-n-70 {
    margin-top: -70px;
}

.mt-n-80 {
    margin-top: -70px;
}

.mt-n-90 {
    margin-top: -90px;
}

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

.mt-n-110 {
    margin-top: -110px;
}

.mt-n-120 {
    margin-top: -120px;
}

.mt-n-130 {
    margin-top: -130px;
}

.mt-n-140 {
    margin-top: -140px;
}

.mt-n-150 {
    margin-top: -150px;
}

.mt-n-160 {
    margin-top: -160px;
}

.mt-n-170 {
    margin-top: -170px;
}

.mt-n-180 {
    margin-top: -180px;
}

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

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

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

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

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

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

.mt-80 {
    margin-top: 70px;
}

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

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

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

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

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

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

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

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


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

.mb-n-30 {
    margin-bottom: -30px;
}

.mb-n-40 {
    margin-bottom: -40px;
}

.mb-n-50 {
    margin-bottom: -50px;
}

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

.mb-n-70 {
    margin-bottom: -70px;
}

.mb-n-80 {
    margin-bottom: -70px;
}

.mb-n-90 {
    margin-bottom: -90px;
}

.mb-n-100 {
    margin-bottom: -100px;
}

.mb-n-110 {
    margin-bottom: -110px;
}

.mb-n-120 {
    margin-bottom: -120px;
}

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

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

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

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

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

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

.mb-80 {
    margin-bottom: 70px;
}

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

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

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

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

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

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

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

#inner-main-container {}

.inner-main-container {
    padding: 120px 0px 0;
}

.h2-sub {
    font-size: 76px;
    /*line-height: 70px;*/
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
    margin-bottom: 40px;
}

.h2-sub span {
    color: #003C97;
}

.h2-sub2 {
    font-size: 74px;
    /* line-height: 70px; */
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
    margin-bottom: 40px;
}

.h2-sub2 span {
    color: #003C97;
}

.institutions-video {
    width: 100%;
    border-radius: 30px;
}

.container-blue {
    background: #003C97;
    padding: 120px 0;
}

.h2-sub-wt {
    font-size: 66px;
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: left;
    color: #fff;
    padding-top: 60px;
}

.h2-sub-wt span {
    color: #3291CF;
}

.h2-sub-wt2 {
    font-size: 68px;
    line-height: 1.3;
    letter-spacing: -2px;
    color: #fff;
}

.h2-sub-wt2 span {
    color: #3291CF;
}

.h3-sub-wt2 {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: center;
    color: #fff;
}

.h3-sub-wt2 span {
    color: #3291CF;
}



.h3-sub-wt3 {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: center;
    color: #fff;
}

.h3-sub-wt3 span {
    color: #3291CF;
}
.ldnsd-lg3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.ldnsd-lg3 span {
    color: #4EC2F0;
}



#inner-sub-container {}

.inner-sub-container {
    padding: 120px 0px;
}

.ldnsd {
    font-size: 26px;
    line-height: 1.3;
    text-align: left;
    color: #003C97;
}

.h3-sub {
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.h3-sub span {
    color: #003C97;
}


.right-hex-insd {
    width: 60px
}

.lr-content {}

.left-cont-pd-30 {
    padding-right: 80px;
}

.right-cont-pd-30 {
    padding: 30px 60px;
}

.right-cont-pd-l30 {
    padding: 0px 30px;
}



.custom-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    transform: translateX(-50%);
}

.cdv {
    border-left: 2px solid #D9DADA;
    background-color: transparent;

}

.h3-lr {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.h3-lr span {
    color: #003C97;
}

.h3-lr-lg {
    font-size: 66px;
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.h3-lr-lg span {
    color: #003C97;
}

.h3-lr-lg2 {
    font-size: 55px;
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.h3-lr-lg2 span {
    color: #003C97;
}

.ldlr {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
    color: #898995;
    font-weight: 400;
}
.ldlr span{
    color: #003C97;
}

.ldlr-grey {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
    color: #898995;
    font-weight: 400;
}

.ldlr-grey span {
    color: #003C97;
}

.right-hex-insd {
    text-align: right;
    width: 100%;
}

.right-hex-insd svg {
    max-width: 60px;
}

.right-hex-insd-100 {
    text-align: right;
    width: 100%;
}

.right-hex-insd-100 svg {
    max-width: 100px;
}

.right-hex-insd-120 {
    text-align: right;
    width: 100%;
}

.right-hex-insd-120 svg {
    max-width: 120px;
}

.center-hex-insd-120 {
    text-align: center;
    width: 100%;
}

.center-hex-insd-120 svg {
    max-width: 120px;
}

.left-img-pd-30 {
    padding: 30px 100px;
    padding-left: 0px;
}

.left-img-pd-r30 {
    padding: 0px 30px;
    padding-left: 0px;
}

.img-insd-bdrs {
    border-radius: 30px;
}

.right-cont-pd-30 {
    padding-left: 60px;
    padding-right: 60px;
}

.hex-right-title {
    margin-bottom: -30px;
}

.ldlr-blue {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
    color: #003C97;
    font-weight: 400;
}

.ldlr-wt {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    font-weight: 400;
}

.max-w400 {
    max-width: 400px;
}

.h3insd2 {
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
    color: #003C97;
}
.h3insd3 {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    color: #003C97;
}

.hex-wt-nw {
    width: 100px;
}

.hex-wt-nw svg {
    width: 100px;
}

.hex-wt-nw60 {
    width: 60px;
}

.hex-wt-nw60 svg {
    width: 60px;
}

.inner-video-rounded {
    max-width: 100%;
    border-radius: 30px;
}

.pd-r30 {
    padding-right: 30px;
}

.right-cont-pd-20 {
    padding-left: 60px;
    padding-right: 60px;
}



.tutoring-video {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.h2videotx {
    font-size: 96px;
    line-height: 1.1;
    margin: 0;
    color: #003C97;
    width: 100%;
    font-weight: 600;
    z-index: 9;
    position: relative;
}

.ld-humanct {
    z-index: 9;
    position: relative;

}

.h2videotx span {
    color: #4EC2F0;
}

.tutoring-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: rgba(0, 60, 151, .70);
    z-index: 2;
}

.ldnsd-lg {
    font-size: 40px;
    line-height: 1.2;
    text-align: justify;
    font-weight: 400;
    color: #898995;
}

.ldnsd-lg-wt {
    font-size: 40px;
    line-height: 1.2;
    text-align: justify;
    font-weight: 400;
    color: #fff;
}



.focus-video {
    max-width: 400px;
}

.ldnsd-lg span {
    color: #003C97;
}


.focus-section {
    /*padding: 80px 0;*/
}

/* Main Row */
.focus-container {
    gap: 20px;
    flex-wrap: nowrap;
}

/* SVG Letters */
.focus-letter {
    height: 220px;
    width: auto;
    display: block;
}

/* HEXAGON */
.hexagon-wrapper {
    width: 240px;
    height: 240px;
    position: relative;
    clip-path: polygon(25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0% 50%);
    overflow: hidden;
}

/* VIDEO FITS INSIDE HEX */
.hex-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h3focus {
    font-size: 56px;
    line-height: 1.2;
    color: #898995;
}

.h3focus span {
    color: #003C97;
}





.why-video {
    position: relative;
    min-height: 1400px;
    overflow: hidden;
    background: #000;
}

.h1why {
    font-size: 96px;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    width: 100%;
    font-weight: 600;
    z-index: 9;
    text-align: center;
    position: relative;
}

.h1why span {
    color: #4EC2F0;
}

.why-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.01%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: rgba(0, 60, 151, .70);
    z-index: 2;
}

.bg-blue-dark {
    background: #000123;
    overflow: initial;
    height: auto;
}

.ldwh {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.ldwh span {
    color: #4EC2F0;
}

.pbt-30 {
    padding-bottom: 30px;
}

.pd-t-60 {
    padding-top: 60px;
}

.zn-9 {
    z-index: 9;
}

.text-left {
    text-align: left;
}


.why-erp-vid {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 0;
}


.why-bx-title {
    text-align: center;
    font-size: 66px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
    margin: 50px auto;
    letter-spacing: -0.02em;
}

.why-bx-title span {
    color: #4EC2F0;
}


.fast-title {
    text-align: center;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
    margin: 50px auto;
    letter-spacing: -0.02em;
}

.fast-title span {
    color: #4EC2F0;
}

.spacer-div {
    padding-top: 120px;
}

.blue-vid-sc {
    background: #003C97;
}

.vid-left-rounded {
    border-radius: 30px;
    width: 100%;
}


.ldnsd-lg2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.ldnsd-lg2 span {
    color: #4EC2F0;
}

.pr-60 {
    padding-right: 60px;
    padding-bottom: 15px;
}

.pr-50 {
    padding-right: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.open-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.alumni-video {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.bg-grey {
    background: #D9DADA;
}

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

.address-col:not(:last-child)::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #D9DADA;
}
.address-row {
  align-items: stretch;
}

.address-row > [class*="col-"] {
  position: relative;
  display: flex;
}


.address-row > [class*="col-"] > div {
  width: 100%;
}

/*@media (min-width: 992px) {

  .address-row > [class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: #dcdcdc;
  }

}*/


.input__item {
    background: none;
    border: none;
    color: #003c97;
    font-size: 22px;
    height: 47px;
    padding: 0;
    font-weight: 500;
    border-radius: 0;
    text-transform: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.input__item:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #d5d5d5;   
}

.input__item::placeholder {
    color: #003c97;
    opacity: 1;
}

.input__item::-webkit-input-placeholder {
    color: #003c97;
}

.input__item::-moz-placeholder {
    color: #003c97;
    opacity: 1;
}

.input__item:-ms-input-placeholder {
    color: #003c97;
}

.input__item:focus::-webkit-input-placeholder {
    opacity: .5 
}

.input__item:focus:-moz-placeholder,.input__item:focus::-moz-placeholder {
    opacity: .5
}

.input__item:focus:-ms-input-placeholder {
    opacity: .5
}



.h3nsd1{
font-size: 30px;
line-height: 1.2;
color: #003c97;
margin-bottom: 25px;
}
.ldnsd2{
font-size: 16px;
line-height: 1.7;
color: #898995;
margin-bottom: 25px;
}

.easy-section .col-4 img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

.form-title1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 66px;
    letter-spacing: -2px;
    text-align: left;
    color: #898995;
}

.form-title1 span {
    color: #003c97;
}


.h3-form-sub {
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    text-align: left;
    color: #898995;
}

.h4-number {
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.5px;
    text-align: left;
    color: #003c97;
    margin-top: 10px;
}
.h4-number a{
    color: #003c97;
}
@media (hover: hover) and (pointer: fine) {
.h4-number a:hover{
color: #898995;
}
}
.hr-grey{
border-top: 2px solid #D9DADA;
border-bottom: none;
margin-top: 30px;
margin-bottom: 60px;
}

.form-heading {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: #898995;
}

.gx-6{
    --bs-gutter-x: 10rem;
}
.mrt-15{
/*margin-left: 46px;*/
}


select {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  appearance: menulist !important;
  background-image: initial !important;
  background-color: initial !important;
  background-repeat: initial !important;
  background-position: initial !important;
}
.privacy-policy h1, h2, h3{
font-size: 18px;
font-weight: 500;
margin-bottom: 10px;
}
.privacy-policy p{
font-size: 14px;
font-weight: normal;
margin-bottom: 10px;
}
.privacy-policy ol, ul{
font-size: 14px;
font-weight: normal;
}
.privacy-policy .privacy-policy__lead {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003c97;
}
.privacy-policy h2.privacy-policy__h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    color: #1f3b7a;
    line-height: 1.35;
}
.privacy-policy .privacy-policy__list {
    margin-bottom: 1rem;
    padding-left: 1.35rem;
}
.privacy-policy .privacy-policy__list li {
    margin-bottom: 0.45rem;
}
.privacy-policy .privacy-policy__contact {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #f5f7fb;
    border-radius: 10px;
    border: 1px solid #e8eaef;
}
.privacy-policy .privacy-policy__contact p {
    margin-bottom: 0.65rem;
}
.privacy-policy .privacy-policy__contact p:last-child {
    margin-bottom: 0;
}