/* Self-hosted to avoid blocked Google Fonts requests */
@font-face {
    font-family: "Host Grotesk";
    src: url("../fonts/HostGrotesk-Variable.ttf") format("truetype");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Host Grotesk";
    src: url("../fonts/HostGrotesk-VariableItalic.ttf") format("truetype");
    font-weight: 300 800;
    font-style: italic;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

:focus,
:focus-visible {
    outline: none;
    box-shadow: none;
}

a {
    text-decoration: none;
}

.footer-navigation {
    display: none !important;
}

html, body {
  overscroll-behavior: none; 
}


body {
    background-color: #000059;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../images/web-landing-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Host Grotesk", sans-serif;
}

#container {
    background: transparent;
    height: 100% !important;
    position: relative;
    inset: inherit;
    display: block;
}

#container:not(.no-nav) {
    height: 100% !important;
    inset: inherit;
}

.landing-page {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-wrp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 48px;
}

.content-wrp {
    position: relative;
    padding: 72px 48px;
}

.heading h1 {
    color: #FDE3E3;
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
   font-family:"freight-neo-pro";
}

.store-info {
    width: 100%;
    max-width: 309px;
    margin-left: auto;
}

.store-info p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
}

.store-info .store {
    display: flex;
    align-items: center;
    gap: 19px;
}

.footer-wrp {
    position: relative;
    width: 100%;
    padding: 29px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-container {
    border: 1px solid #FDE3E3;
    border-radius: 52px;
    padding: 3px;
    display: flex;
    align-items: center;
}

.change-language {
    background: transparent;
    color: #FDE3E3;
    border-radius: 50px;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    width: 44px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-language:hover {
    color: #FDE3E3;
}

.change-language.active {
    background: #FDE3E3;
    color: #010059;
}

.menu-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-navigation a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
}

.outline-link {
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 7px 12px;
}

.menu-navigation a.fill-link {
    background: #fff;
    border-radius: 40px;
    padding: 8px 12px;
    color: #010159;
}

.center-content .store-info {
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
}

/* About Page CSS */
.about-page .content-wrp {
    padding: 60px 155px 35px;
}

.about-content .title h2 {
    color: #FDE3E3;
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
    text-align: center;
    margin-bottom: 25px;
   font-family:"freight-neo-pro";
}

.about-box {
    text-align: center;
}

.about-content h3 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin: 12px 0 4px 0;
    text-align: left;
   font-family:"freight-neo-pro";
}

.about-content p {
    color: #FFFFFF80;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
}

/* FAQ Page CSS */
.faq-page {
    width: 100%;
    max-width: 366px;
    margin: 0 auto;
}

.faq-page .title h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 21px;
}

.faq-page .accordion-item {
    background-color: #000159;
    border: 1px solid #5A496D;
    border-radius: 12px !important;
    margin-bottom: 12px;
}

.faq-page .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-page .accordion-button {
    background: #5A496D !important;
    color: #fff !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 14px 24px;
    gap: 12px;
    border-radius: 8px !important;
    min-height: 68px;
    transition: none !important;
   font-family:"freight-neo-pro";
}

.faq-page .accordion-button:not(.collapsed) {
    border-radius: 8px 8px 0 0 !important;
}

.faq-page .accordion-body {
    padding: 24px;
}

.faq-page .accordion-body p {
    color: #FFFFFF80;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

.faq-page .accordion-button::after {
    background-image: url('../images/add-circle-white.svg') !important;
}

.faq-page .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.application-wrp {
    position: relative;
    width: 100%;
    max-width: 558px;
    margin: 0 auto;
}

.application-wrp .title {
    text-align: center;
    margin-bottom: 24px;
}

.application-wrp .title h2 {
   font-family:"freight-neo-pro";
    color: #FDE3E3;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    margin: 0;

}

.application-from form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.application-from form .form-row {
    display: block;
    width: 100%;
}

.application-from form .form-row-lable {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.application-from form .form-col {
    display: flex;
    gap: 10px;
    width: 100%;
}

.application-from form .form-col-field {
    position: relative;
    width: 100%;
}

.application-from form .form-row .form-col-field input,
.application-from form .form-row .form-col-field select,
.application-from form .form-row .form-col-field input[type="radio"]+label {
    position: relative;
    background-color: rgb(239 239 239 / 24%);
    border-radius: 12px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 22px 20px;
    margin: 0;
    width: 100%;
    display: block;
    max-width: 100% !important;
    border: 2px solid transparent;
}
.application-from form .form-row .form-col-field input::placeholder{
color: #fff;
}

.application-from form .form-col-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background-image: url('../images/down-arrow.svg');
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 23px;
}
.application-from form .form-col-field select option{
    background: #000059;
}
.application-from form .form-row .form-col-field input[type="radio"] {
    display: none;
}
.application-from form .form-row .form-col-field input[type="radio"]:checked + label {
    border-color: #fff;
}
.step-btn-wrp {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: space-between;
}

.step-btn-wrp button {
    border: 0;
    width: 50%;
    border-radius: 16px;
    padding: 20px;
    color: #100F08;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
.step-btn-wrp button.step-back-btn{
    background: #EFEFEF3D;
    color: #FFFFFF;
    font-weight: 400;
}
.step-btn-wrp button.step-next-btn{
    margin-left: auto;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.application-from form .form-row .form-col-field input[type="radio"]+label{
    text-align: center;
    padding: 22px 8px;
}

.term-condition p{
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.mockup-photo .phone-mockup{
    height: 400px;
     width: 200px;
}

/* Media Query CSS */
@media only screen and (max-width: 1199px) {
    .about-box img {
        width: 100%;
    }

    .about-page .content-wrp {
        padding: 60px 80px 35px;
    }
}

@media only screen and (max-width: 991px) {
    body {
        background-image: url('../images/mobile-landing-bg.png') !important;
        height: 100%;
    }
    .header-wrp {
        padding: 23px 40px;
    }

    .content-wrp {
        padding: 40px;
    }

    .mockup-photo {
        margin: 24px 0;
    }

    .store-info .store img,
    .mockup-photo img {
        width: auto;
    }

    .heading h1 {
        font-size: 48px;
        line-height: 48px;
        text-align: center;
    }

    .store-info {
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .store-info p {
        margin-bottom: 24px;
    }

    .center-content .store-info {
        margin-top: 24px;
    }

    .footer-wrp {
        padding: 24px 48px;
        flex-direction: column-reverse;
    }

    .menu-navigation {
        gap: 16px;
        flex-wrap: wrap;
    }

    .menu-navigation {
        gap: 16px;
        flex-wrap: wrap;
        border-bottom: 1px solid #fff;
        padding-bottom: 22px;
        margin-bottom: 12px;
        justify-content: center;
    }

    .outline-link,
    .menu-navigation a.fill-link {
        padding: 8px 12px;
    }

    .menu-navigation a.fill-link {
        display: none;
    }

    .about-page .content-wrp {
        padding: 45px 24px 70px;
    }

    .faq-page .title h2 {
        font-size: 36px;
        line-height: 36px;
    }

    .faqs-page .content-wrp {
        padding: 21px 24px 18px;
    }
    .about-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
   

    .about-content .row {
        gap: 24px;
    }

    :has(.no-mobile-bg) body {
        background-image: none !important;
    }
}