@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-Bold.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-Medium.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-Regular.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-MediumItalic.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-Italic.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-SemiBold.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-BoldItalic.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSansCondensed-SemiBoldItalic.woff2') format('woff2'), url('../fonts/InstrumentSansCondensed-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
:root {
    --bs-font-sans-serif: "Instrument Sans", sans-serif;
    --brand-core-navy: #003084;
    --brand-horizon-blue: #9AD5FF;
    --brand-white: #ffffff;
    --brand-vital-orange: #FF5943;
    --brand-nova-violet: #D4DEFF;
    --navbar-bg: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    --navbar-height: 80px;
    --bs-nav-link-padding-y: 0;
    --bs-nav-link-padding-x: 6px;
    --bs-nav-link-font-size: 15px;
    --bs-nav-link-font-weight: 600;
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
}

html {
    font-size: 14px;
    font-family: "Instrument Sans", sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  color: var(--brand-core-navy)
}

.icon-box {
    background: #e6ecfa;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.icon-img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #003087;
    margin-bottom: 2rem;
}

.icon-box h5 {
    font-weight: 700;
    color: #003087;
    margin-bottom: 0.5rem;
}

.icon-box p {
    color: #222;
    font-size: 1rem;
    margin-bottom: 0;
}

.future-scope {
    font-size: 0.95rem;
    color: #222;
    margin-top: 2rem;
    text-align: center;
}

.future-scope b {
    font-weight: 600;
}
/* Partner Box */
.partner-box {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.partner-box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.25s ease-in;
}

.partner-box:hover::after {
    opacity: 1;
    transition: all 0.5s ease-out;
}

.partner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--brand-white);
    z-index: 2;
}
.partner-title {
    margin-bottom: 0px;
}
.partner-box:hover .partner-title {
    margin-bottom: 30px;
}
.partner-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0px;
    transition: all 0.15s ease-out;
}

.partner-link {
    opacity: 0;
    display: none;
    color: var(--brand-white);
    display: inline-flex;
    padding: 8px 40px 8px 0px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: "Instrument Sans";
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    position: relative;
    transition: all 0.15s ease-out;
}

.partner-box:hover .partner-desc {
    opacity: 1;
    max-height: 400px;
    margin-bottom: 20px;
    transition: all 0.25s ease-in;
}

.partner-box:hover .partner-link {
    display: initial;
    opacity: 1;
    transition: all 0.5s ease-out;
}
.partner-image {
    max-width: 100%;
}

.partner-link::after, .partner-link::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    z-index: 0;
    background-image: url('../images/arrow-up-right-white.svg');
    width: 24px;
}

.partner-link::before {
    background-position: calc(50% - 20px) calc(50% + 20px);
    z-index: 1;
}

.partner-link:hover::after {
    animation-name: arrow-diagonal-exit;
    animation-duration: 0.8s;
}

.partner-link:hover::before {
    animation-name: arrow-diagonal-exit2;
    animation-duration: 0.8s;
}

/* Partner Box END */

/* Leadership Box */
.leadership-box {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.leadership-box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
    transition: all 0.25s ease-in;
}

.leadership-box:hover::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
    transition: all 0.5s ease-out;
}

.leadership-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--brand-white);
    z-index: 2;
}
.leadership-pos {
    font-size: 1.1rem;
}
.leadership-desc {
    font-size: 0.85rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0px;
    transition: all 0.15s ease-out;
}
.leadership-box:hover .leadership-desc {
    margin-top: 10px;
    opacity: 1;
    max-height: 400px;
    transition: all 0.25s ease-in;
}

.leadership-box:hover .leadership-link {
    display: initial;
    opacity: 1;
    transition: all 0.5s ease-out;
}

.leadership-image {
    width: 100%;
}
/* Leadership Box END */

/* NavBar */
.bxt-navbar {
    background: var(--navbar-bg);
    height: var(--navbar-height, 80px);
    transition: background-color 0.3s linear;
}

.bxt-navbar.bxt-navbar-white {
    background: var(--brand-white);
}

.bxt-navbar a.nav-link, .bxt-navbar a.nav-link.active {
    color: var(--brand-white);
    opacity: 0.6;
    transition: opacity 0.3s linear;
}
.bxt-navbar a.nav-link:hover, .bxt-navbar a.nav-link.active {
    opacity: 1;
}

.bxt-navbar-white a.nav-link, .bxt-navbar-white a.nav-link.active {
    color: var(--brand-core-navy);
}
.main-content {
    padding-top: calc(var(--navbar-height) + 20px);
}
.main-links a.nav-link {
    color: var(--brand-core-navy);
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.3s linear;
    padding: 5px 0;
}
.main-links a:hover.nav-link {
    opacity: 0.7;
}
footer .fhead {
    border-bottom: 1px solid var(--brand-nova-violet);
}
footer .fhead {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--brand-nova-violet);
}
footer .foperated {
    color: #BFCBE0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}
footer .ffoot {
    color: #BFCBE0;
    gap: 20px;
    display: flex;
    justify-content: center;
}
footer .ffoot a {
    color: var(--brand-core-navy);
    opacity: 0.35;
    text-decoration: none;
    transition: opacity 0.3s linear;
}
footer .ffoot a:hover {
    opacity: 1;
}
.primary-cta {
    display: inline-flex;
    padding: 8px 55px 8px 24px;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    background: var(--brand-white, #FFF);
    color: var(--brand-core-navy, #9AD5FF);
    text-decoration: none;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    position: relative;
    height: 50px;
}

.primary-cta::after {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    z-index: 0;
    border-radius: 50px;
    background-color: var(--brand-horizon-blue, #9AD5FF);
    background-image: url('../images/arrow-up-right.svg');
    width: 34px;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: calc(50% - 20px) calc(50% + 20px);
    z-index: 0;
    border-radius: 50px;
    background-image: url('../images/arrow-up-right.svg');
    width: 34px;
    z-index: 1;
}
.primary-cta:hover::after {
    background-color: #b7e0fd;
    animation-name: arrow-diagonal-exit;
    animation-duration: 0.8s;
}
.primary-cta:hover::before {
    animation-name: arrow-diagonal-exit2;
    animation-duration: 0.8s;
}
.primary-cta:hover {
    background: linear-gradient(0deg, rgba(154, 213, 255, 0.35) 0%, rgba(154, 213, 255, 0.35) 100%), #FFF;
}
.primary-btn {
    background-color: #DCF0FF;
    border: 0;
}
.primary-btn:hover {
    background-color: var(--brand-horizon-blue);
}
.primary-btn::after {
    background-color: var(--brand-horizon-blue);
}
.primary-btn:hover::after {
    background-color: var(--brand-white);
}

@keyframes arrow-diagonal-exit {
    0% {
        background-position: center;
    }
    33% {
        background-position: calc(50% + 8px) calc(50% - 8px);
    }
    66% {
        background-position: calc(50% + 16px) calc(50% - 16px);
    }
    100% {
        background-position: calc(50% + 24px) calc(50% - 24px);
    }
}
@keyframes arrow-diagonal-exit2 {
    0% {
        background-position: calc(50% - 24px) calc(50% + 24px);
    }
    33% {
        background-position: calc(50% - 16px) calc(50% + 16px);
    }
    66% {
        background-position: calc(50% - 8px) calc(50% + 8px);
    }
    100% {
        background-position: center;
    }
}
.secondary-cta {
    display: inline-flex;
    padding: 8px 8px 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--brand-white, #FFF);
}
.nav-secondary-cta {
    display: inline-flex;
    padding: 8px 35px 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    color: var(--brand-core-navy, #9AD5FF);
    text-decoration: none;
    font-family: "Instrument Sans";
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    position: relative;
    opacity: 1 !important;
}

.nav-secondary-cta::after, .nav-secondary-cta::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    z-index: 0;
    background-image: url('../images/arrow-up-right-white.svg');
    width: 24px;
}

.bxt-navbar-white .nav-secondary-cta::after, .bxt-navbar-white .nav-secondary-cta::before {
    background-image: url('../images/arrow-up-right.svg');
}

.nav-secondary-cta::before {
    background-position: calc(50% - 20px) calc(50% + 20px);
    z-index: 1;
}

.nav-secondary-cta:hover::after {
    animation-name: arrow-diagonal-exit;
    animation-duration: 0.8s;
}

.nav-secondary-cta:hover::before {
    animation-name: arrow-diagonal-exit2;
    animation-duration: 0.8s;
}


.h1 {
    font-family: "Instrument Sans Condensed";
    font-size: 112px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
}

.h2 {
    font-family: "Instrument Sans Condensed";
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
}

.h2-small {
    font-family: "Instrument Sans Condensed";
    font-size: 3rem; /* 48px */
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
}

.h3 {
    font-family: "Instrument Sans";
    font-size: 2.5rem; /* 40px */
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.h4 {
    font-family: "Instrument Sans";
    font-size: 1.5rem; /* 24px */
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.chapo {
    font-family: "Instrument Sans";
    font-size:  32px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.body {
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.CTA {
    font-family: "Instrument Sans";
    font-size: 1.15rem; /* 20px */
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.body-large {
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.chapo-small {
    font-family: "Instrument Sans";
    font-size: 1.5rem; /* 24px */
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.form-control {
    background-color: var(--brand-nova-violet);
    color: var(--brand-core-navy);
    border: none;
    border-radius: 10px;
    padding: 9px 12px;
    opacity: 0.8;
}
.form-control::placeholder {
    color: var(--brand-core-navy);
}
.form-control:focus, .form-check-input:focus {
    background-color: var(--brand-nova-violet);
    opacity: 1;
}
.form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

.form-check-input {
    background-color: #e6edff;
    border: none;
}

.bxt-section {
    position: relative;
    min-height: 100vh;
    background-size: 100vw 100vh;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: var(--navbar-height, 80px);
    animation: bg-zoom-out 1s ease-out forwards;
}

@keyframes bg-zoom-out {
    from {
        background-size: 120vw 120vh;
    }
    to {
        background-size: 100vw 100vh;
    }
}

.bxt-section::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-position-x: right;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.bxt-section:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.bxt-bg1 {
    background-color: #F1F4FD;
}

.bxt-bg1::after {
    content: '';
    background-image: url('../images/lines.svg');
}
.bxt-bg2 {

}

.bxt-bg2::after {
    content: '';
    background-image: url('../images/lines1.svg');
}
.bxt-bg2::before {
    content: '';
    background-image: url('../images/lines1-left.svg');
}
.bxt-bg3::before {
    content: '';
    background-image: url('../images/lines2-left.svg');
}
.bxt-bg3::after {
    content: '';
    background-image: url('../images/lines2.svg');
}
.bxt-bg4::before {
    content: '';
    background-image: url('../images/lines3.svg');
    background-size: cover;
}
.bxt-bg-index-10::after {
    z-index: 10;
}

.bxt-text-section {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44vw;
    right: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    align-items: flex-start;
    z-index: 2;
    gap: 50px;
}

.navbar-brand {
    background-image: url('../images/logo_white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 220px;
    height: var(--navbar-height);
}
.navbar-brand span {
    display: none;
}
.bxt-navbar-white .navbar-brand {
    background-image: url('../images/logo.svg');
}

.bxt-success {
    border-color: var(--bs-form-valid-border-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 32px 32px;
    padding-top: 39px;
    margin: 5rem;
    text-align: center;
}
@media (max-width: 1399px) {
    .icon-box {
        min-height: 310px;
    }
    .icon-box h5 {
        font-size: 1.1rem;
    }
    .h4 {
        font-size: 1.2rem;
    }
    .leadership-pos {
        font-size: 0.9rem;
    }
    .leadership-desc {
        font-size: 0.75rem;
    }

    .partner-link {
        font-size: 1rem;
    }
    .bxt-bg3::before {
        left: -10px;
        top: -30px;
        bottom: 90px
    }
}

@media (max-width: 480px) {
    .h1 {
        font-size: 80px;
    }

    .h2 {
        font-size: 70px;
    }
    .h3 {
        font-size: 2rem;
    }

    .chapo {
        font-size: 22px;
    }

    .bxt-section {
        min-height: 100vh;
        background-size: cover;
        background-position: right;
        padding-top: var(--navbar-height, 80px);
        animation: none;
    }
    .bg-sm-left-150 {
        background-position-x: -150px;
    }
    .bg-sm-left {
        background-position: left;
    }

    .bxt-bg1::after {
        background-image: url('../images/lines-sm.svg');
        background-position: bottom;
    }

    .bxt-bg2::after {
        background-size: cover;
        background-position: left;
    }

    .bxt-bg2::before {
        background-image: none;
    }

    .bxt-bg3::before {
        background-image: none;
    }

    .bxt-bg3::after {
        content: '';
        background-image: url('../images/lines2-sm.svg');
        background-size: cover;
    }

    .bxt-bg4::before {
        background-image: url('../images/lines3-sm.svg');
        background-size: cover;
    }

    .bxt-navbar {
        padding-top: 0px;
    }

    .bxt-navbar .container-fluid {
        padding-right: 10px !important;
        padding-left: 5px !important;
    }

    .bxt-navbar .navbar-toggler {
        border: 0;
    }

    .bxt-navbar .navbar-toggler:focus {
        box-shadow: none;
    }

    .bxt-navbar .navbar-toggler .navbar-toggler-icon {
        background-image: url('../images/close-white.svg');
        background-size: contain;
    }

    .bxt-navbar .navbar-toggler.collapsed .navbar-toggler-icon {
        background-image: url('../images/menu-white.svg');
        background-size: contain;
    }

    .bxt-navbar-white .navbar-toggler.collapsed .navbar-toggler-icon {
        background-image: url('../images/menu.svg');
        background-size: contain;
    }
    .bxt-navbar .navbar-nav {
        padding: 12px 24px;
    }

    .navbar-collapse {
        background-color: var(--brand-core-navy);
        padding-top: calc(var(--navbar-height) + 10px);
        height: 100vh;
        margin: -80px -10px 0px -5px;
        z-index: -1;
    }

    .navbar-collapse a.nav-link {
        font-size: 20px;
    }

    .navbar-collapse .nav-item {
        margin-bottom: 10px;
    }

    .bxt-navbar-white a.nav-link, .bxt-navbar-white a.nav-link.active {
        color: var(--brand-white);
    }

    .partner-info {
        padding: 20px;
        margin-bottom: 0;
    }
    .partner-link {
        font-size: 0.75rem;
    }
    .partner-desc {
        font-size: 0.8rem;
    }
   
    /*
.bxt-navbar-white .navbar-brand {
    background-image: url('../images/logo_white.svg');
}
*/

}
text-shadow-sm {
    text-shadow: 0px 1px 4px #000000;
}
.inner-page footer {
    background-color: #f5f7ff;
}

.inner-page nav {
    border-bottom: 1px solid #f5f7ff;
}