@font-face {
    font-family: 'geo';
    src: url('../assets/fonts/geometos-webfont.woff2') format('woff2'),
        url('../assets/fonts/geometos-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'vag-bold';
    src: url('../assets/fonts/vagroundednext-bold.woff2') format('woff2'),
        url('../assets/fonts/vagroundednext-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'vag-light';
    src: url('../assets/fonts/vagroundednext-light.woff2') format('woff2'),
        url('../assets/fonts/vagroundednext-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'vag-medium';
    src: url('../assets/fonts/vagroundednext-medium.woff2') format('woff2'),
        url('../assets/fonts/vagroundednext-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'vag-regular';
    src: url('../assets/fonts/vagroundednext-regular.woff2') format('woff2'),
        url('../assets/fonts/vagroundednext-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'vag-semibold';
    src: url('../assets/fonts/vagroundednext-semibold.woff2') format('woff2'),
        url('../assets/fonts/vagroundednext-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter-bold';
    src: url('../assets/fonts/inter-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter-extra';
    src: url('../assets/fonts/inter-extrabold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter-semi';
    src: url('../assets/fonts/inter-semibold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter-reg';
    src: url('../assets/fonts/inter-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter-med';
    src: url('../assets/fonts/inter-medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-blue: #05559E;
    --linen: #FCF2E7;
    --linen2: #FFF6EB;
    --almond: #F8E5D3;
    --antique-white: #FDEDD6;
    --seasalt: #F7FCFC;
    --alice-blue: #E6EDF3;
    --alice-blue2: #EAEEF6;
    --ghost-white: #EDF0F6;
    --powder-blue: #A7C3EA;
    --brand-orange: #F8A51D;
    --desert-sand: #F4CCB0;


    --ff-geo: 'geo';
    --ff-vag-bold: 'vag-bold';
    --ff-vag-light: 'vag-light';
    --ff-vag-med: 'vag-medium';
    --ff-vag-reg: 'vag-regular';
    --ff-vag-semi: 'vag-semibold';

    --ff-inter-bold: 'inter-bold';
    --ff-inter-extra: 'inter-extra';
    --ff-inter-med: 'inter-med';
    --ff-inter-reg: 'inter-reg';
    --ff-inter-semi: 'inter-semi';

    --border-color: 1px solid lightgrey;
}

.font-geo {
    font-family: var(--ff-geo);
}
.font-vag-bold {
    font-family: var(--ff-vag-bold);
}
.font-vag-light {
    font-family: var(--ff-vag-light);
}
.font-vag-med {
    font-family: var(--ff-vag-med);
}
.font-vag-reg {
    font-family: var(--ff-vag-reg);
}
.font-vag-semi {
    font-family: var(--ff-vag-semi);
}
.font-inter-bold {
    font-family: var(--ff-inter-bold);
}
.font-inter-extra {
    font-family: var(--ff-inter-extra);
}
.font-inter-med {
    font-family: var(--ff-inter-med);
}
.font-inter-reg {
    font-family: var(--ff-inter-reg);
}
.font-inter-semi {
    font-family: var(--ff-inter-semi);
}

.bg-brand-blue {
    background-color: var(--brand-blue);
}
.bg-linen{
    background-color: var(--linen);
}
.bg-linen2 {
    background-color: var(--linen2);
}
.bg-almond {
    background-color: var(--almond);
}
.bg-antique-white {
    background-color: var(--antique-white);
}
.bg-seasalt {
    background-color: var(--seasalt);
}
.bg-alice-blue {
    background-color: var(--alice-blue);
}
.bg-alice-blue2 {
    background-color: var(--alice-blue2);
}
.bg-ghost-white {
    background-color: var(--ghost-white);
}
.bg-powder-blue {
    background-color: var(--powder-blue);
}
.bg-brand-orange {
    background-color: var(--brand-orange);
}

.text-brand-blue {
    color: var(--brand-blue);
}

.border-grey{
    border: var(--border-color);
}
.border-blue {
    border-color: var(--brand-blue) !important;
}
.font-sm {
    font-size: 12px;
    line-height: 1.3;
}
.font-md {
    font-size: 14px;
    line-height: 1;
}

nav img {
    width: 200px;
}
.hero-section {
    background-color: var(--linen);
    background-image: url(../assets/images/bg-hero-img.webp);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}
.single-check {
    font-size: .6rem;
}

.btn-submit {
    background-color: var(--brand-orange);
    color: var(--brand-blue);
    border: none;
    border-radius: 5px;
    padding: 4px 20px;
}

.highlights-container {
    color: white;
    background-image: linear-gradient(var(--brand-blue) 40%, #1776cf);
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 15px;
    align-self: flex-start;
}
.highlights-title {
    background-image: linear-gradient(-90deg, var(--brand-orange), #f4b044);
    width: 90%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%) translateY(-31%);
    border-radius: 15px;
    order: 1;
}
.highlights-container div:not(:last-of-type) {
    position: relative;
}
.highlights-container div:not(:last-of-type)::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 40%;
    bottom: 0;
    left:50%;
    transform: translateX(-50%);
    background-color: var(--brand-orange);
}
.highlights-container div img {
    height: 32px;
    width: 32px;
}

.nav-tabs .nav-link {
    --tab-border-radius: 15px;

    color: black;
    white-space: nowrap;
    font-size: 14px;
    border-radius: var(--tab-border-radius) var(--tab-border-radius) 0 0;
    position: relative;
}
.nav-tabs .tab1 .nav-link.active::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    left: -15px;
    background-image: url(../assets/images/asset-1.svg);
    transition: .15s ease-in-out;
}
.nav-tabs .tab2 .nav-link.active::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    left: -15px;
    background-image: url(../assets/images/asset-3.svg);
    transition: .15s ease-in-out;
}
.nav-tabs .tab1 .nav-link.active::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    right: -15px;
    background-image: url(../assets/images/asset-2.svg);
    transition: .15s ease-in-out;
}
.nav-tabs .tab2 .nav-link.active::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    right: -15px;
    background-image: url(../assets/images/asset-4.svg);
    transition: .15s ease-in-out;
}
.nav-link:hover {
    color: black;
}
#insta-variant:active {
    background-color: var(--almond);
}
#insta-variant.active {
    background-color: var(--almond);
}
#early-variant:active {
    background-color: var(--seasalt);
}
#early-variant.active {
    background-color: var(--seasalt);
}

.eligibility {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}
.eligibility td {
    padding: 8px 16px;
    line-height: 1.3;
}
.eligibility th {
    min-width: 160px;
    padding: 8px 16px;
    line-height: 1.3;
}
.left-th-top {
    border-top-left-radius: 15px;
}
.right-td-top {
    border-top-right-radius: 15px;
}
.left-th-bottom {
    border-bottom-left-radius: 15px;
}
.right-td-bottom {
    border-bottom-right-radius: 15px;
}
.eligibility p {
    font-size: 12px;
}

.accordion {
    border: 0;
}
.accordion-item {
    position: relative;
    border: 0;
}
.accordion-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 100%;
    background-color: lightgray;
}
.accordion-button {
    padding-inline: 0;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../assets/images/down.svg);
}

.accordion-button::after {
    background-position: center;
    background-size: 16px;
    background-image: url(../assets/images/down.svg);
}
.accordion-body {
    padding-inline: 0;
    padding-top: 4px;
    line-height: 1.3;
    color: #000000a0;
}
.accordion-button,
.accordion-button:active,
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:not(.collapsed) {
    border: 0;
    box-shadow: none;
    color: black;
}
.max-content-width {
    max-width: 1170px;
    margin-inline: auto;
}
.disclaimer p {
    color: #000000a0;
}
.content-wrapper {
    display: grid;
    gap: 24px;
}
.main-form {
   order: 3;
}
.gain-img {
    order: 1;
    max-width: 280px;
    margin-inline: auto;
}
.highlights-container {
    order: 2;
    display: grid;
}

.form-check-input:checked,
.was-validated .form-check-input:valid:checked {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}
.form-check-input:checked[type=checkbox] {
    background-image: url(../assets/images/tick.svg);
}
.example {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.tabular p {
    line-height: 1.3;
    padding: 8px 14px;
    font-size: 14px;
}
.rightp {
    display: flex;
    align-items: center;
    border-radius: 10px 13px 13px 10px ;
}
.leftp {
    border-radius: 13px 10px 10px 13px;
}
.tabular {
    display: grid;
    grid-template-columns:  1.5fr 1fr;
    align-items: stretch;
    gap: 5px;
    width: 100%;
    overflow-x: auto;
}
.form-control,
.form-select,
.form-control:focus,
.form-control:focus-visible,
.form-select:focus,
.form-select:focus-visible {
    background-color: #ECECEC;
}

.form-control::placeholder,
.form-select::placeholder,
.form-select:invalid {
    color: var(--brand-blue);
}
.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: var(--brand-blue);
}
.form-control.isvalid,
.was-validated .form-control:valid,
.form-select.isvalid,
.was-validated .form-select:valid {
    background-image: none;
}
.border-radius {
    border-radius: 15px;
}

@media screen and (min-width: 992px) {
    .hero-section {
        background-size: 750px;
    }
    .font-sm {
        font-size: 14px;
        line-height: 1.3;
    }
    .font-md {
        font-size: 16px;
    }
    .tab-content,
    .tab-content h6 {
        font-size: 18px;
    }
    .content-wrapper {
        display: grid;
        grid-template-areas: 
        'hero gain main'
        'highlights highlights main';
        /* 'highlights highlights .'; */
        grid-template-columns: 1fr .5fr .8fr;
        gap: 0 24px;
    }
    .eligibility td {
        padding: 12px 24px;
    }
    .eligibility th {
        min-width: none;
        padding: 12px 24px;
        white-space: nowrap;
    }
    .eligibility-title {
        margin-bottom: 12px;
    }
    nav img {
        width: 300px;
    }
    .main-form {
        grid-area: main;
        min-width: 100px;
        align-self: flex-start;
    }
    .hero-img {
        grid-area: hero;
        margin-bottom: -1px;
    }
    .gain-img {
        grid-area: gain;
        min-width: 280px;
        margin-top: 20px;
        margin-left: -30px;
    }
    .highlights-container {
        grid-area: highlights;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: stretch;
    }
    .highlights-container div:not(:nth-of-type(3))::after {
        height: 40px;
        width: 1px;
        left: 100%;
        top: 50%;
        transform: translateY(-50%)
    }
    .highlights-container div:nth-of-type(3)::after{
        height: 0;
    }
    .example {
        grid-template-columns: 1fr 1fr;
    }
    .tabular p {
        padding: 12px 20px;
        font-size: 16px;
        white-space: nowrap;
    }
    .rightp {
        border-radius: 10px 18px 18px 10px ;
    }
    .leftp {
        border-radius: 18px 10px 10px 18px;
    }
    .table-mw {
        max-width: 992px;
    }
    .nav-tabs .nav-link {
        font-size: 24px;
        padding-inline: 24px;
    }
    .faq-sec {
        font-size: 18px;
    }
    .accordion-button {
        font-size: 18px;
    }
    .left-th-top {
        border-top-left-radius: 20px;
    }
    .right-td-top {
        border-top-right-radius: 20px;
    }
    .left-th-bottom {
        border-bottom-left-radius: 20px;
    }
    .right-td-bottom {
        border-bottom-right-radius: 20px;
    }
    .highlights-container div img {
        height: 40px;
        width: 40px;
    }
    .border-radius {
        border-radius: 24px;
    }
}

@media screen and (min-width: 1600px) {
    .hero-section {
        background-size: contain;
        background-position: top center;
    }
}

.imgs-of-illustration {
  max-width: 100%;  
  margin-inline: auto;
}
.floating-download-brochure {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    background-color: var(--brand-blue);
    z-index: 100;
    border-radius: 2rem 2rem 0 0;
    letter-spacing: .5px;
    right: -77px;
    transform: rotate(-90deg);
    overflow: hidden;
}

.download-brochure-link {
    padding: .5rem 1.5rem;
    cursor: pointer;
}