:root {
    --headerHeight: 71px;
    --footerColor: #13487a;
    --headingColor: #A72830;
    --headingColor1: #DA7E28;
    --subHeadingColor: #13487a;
    --lightBackground: rgba(232, 126, 34, 0.25);
    --input-border-color: rgba(162, 160, 161, 0.5);
    --input-color: #414042;
    --input-border-hovered-color: rgb(162, 160, 161);
    --input-label-color: #DA7E28;
    --button-background: #A72830;
    --error-text-color: #ff0000;
}

@font-face {
    font-family: "zurich";
    src: url("./fonts/zurchn-webfont.woff"), url('./fonts/zurchn-webfont.woff2'), url("./fonts/ZURCHN.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "zurich";
    src: url("./fonts/zurchl-webfont.woff"), url('./fonts/zurchl-webfont.woff2'), url("./fonts/ZURCHL.TTF") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "zurich";
    src: url("./fonts/zurichb-webfont.woff"), url('./fonts/zurichb-webfont.woff2'), url("./fonts/ZURICHB.TTF") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "zurich-condensed";
    src: url('./fonts/Zurich-Condensed.woff2') format('woff2'), url("./fonts/Zurich-Condensed.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "zurich-condensed";
    src: url("./fonts/Zurich-Light-Extra-Condensed.woff2") format('woff2'), url("./fonts/Zurich-Light-Extra-Condensed.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "zurich-condensed";
    src: url('./fonts/Zurich-Bold-Extra-Condensed.woff2') format('woff2'), url("./fonts/Zurich-Bold-Extra-Condensed.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

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

html {
    /* font-family: 'zurich-condensed', 'zurich'; */
    font-family: "Mulish";
    font-weight: 400;
    font-size: 1rem;
}

.container {}

.header {
    display: flex;
    background-color: #fff;
    align-items: center;
    height: var(--headerHeight);
    justify-content: flex-start;
}

.logo {
    height: 51px;
    width: auto;
    object-fit: contain;
    margin-left: 20px;
}

.main-content {
    min-height: calc(100vh - var(--headerHeight));
    display: grid;
    grid-template-rows: auto auto;
    overflow-x: hidden;
}

.footer {
    display: grid;
    background-color: var(--footerColor);
    padding: 5px 10px;
    color: #fff;
    grid-template-rows: 1fr 1fr;
}

.footer .footer-flexed-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer span {
    font-size: 0.65rem;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

.footer a:hover {
    text-decoration: underline;
}

.banner {
    height: 50%;
}

.banner-grid {
    display: grid;
    background-color: var(--lightBackground);
    grid-template-columns: 2fr 1fr;
}

.card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading-wrapper {
    text-align: center;
    margin-top: 20px;
}

.large-heading {
    color: var(--headingColor);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
}

.large-heading span {
    font-weight: 400;
}

.image-container {
    width: 70%;
    background-image: url('./images/1.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -5%;
}

.image-wrapper {
    width: 70%;
    position: relative;
    padding-top: 25%;
    margin-left: -6%;
}

.img-shopping-man {
    position: absolute;
    bottom: 66.2%;
    left: 20px;
    width: 75%;
    object-fit: contain;
}

.img-small-cloud {
    position: absolute;
    top: 25%;
    right: -34%;
    width: 20%;
    object-fit: contain;
    animation: move-disappear 2s linear 220ms infinite normal both;
    animation-fill-mode: none;
}

.img-big-cloud {
    position: absolute;
    top: 15%;
    right: -55%;
    width: 35%;
    object-fit: contain;
    z-index: 2;
    animation: move-disappear-lowdistance 2.5s linear 200ms infinite normal both;
    animation-fill-mode: none;
}

@keyframes move-disappear-lowdistance {
    0% {
        transform: translateX(-15%);
        opacity: 0;
    }

    20% {
        transform: translateX(-30%);
        opacity: 0.5;
    }

    40% {
        transform: translateX(-45%);
        opacity: 0.75;
    }

    60% {
        transform: translateX(-60%);
        opacity: 1;
    }

    80% {
        transform: translateX(-75%);
        opacity: 0.75;
    }

    100% {
        transform: translateX(-90%);
        opacity: 0.5;
    }
}

@keyframes move-disappear {
    0% {
        transform: translateX(-25%);
        opacity: 0;
    }

    20% {
        transform: translateX(-40%);
        opacity: 0.5;
    }

    40% {
        transform: translateX(-55%);
        opacity: 0.75;
    }

    60% {
        transform: translateX(-70%);
        opacity: 1;
    }

    80% {
        transform: translateX(-85%);
        opacity: 0.75;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0.5;
    }
}

.img-arrow {
    position: absolute;
    width: 17%;
    bottom: 22%;
    right: -25%;
    z-index: 1;
}

@keyframes scaleup {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.img-lines {
    position: absolute;
    width: 32%;
    bottom: 45%;
    right: -45%;
}

.img-offer-man {
    position: absolute;
    width: 37%;
    bottom: 7%;
    right: -20%;
}

.img-card-offer {
    width: 100%;
    object-fit: contain;
}

.form-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 10px 0px;
    z-index: 1;
}

.form-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-box-wrapper .heading {
    margin-bottom: 10px;
    text-align: center;
    padding-top: 30px;
}

.form-box-wrapper .heading h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--headingColor1);
}

.form-box-wrapper form {
    margin: 10px 0px;
    width: 70%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.form-box-wrapper form .error {
    text-align: center;
    font-size: 0.8rem;
    color: var(--error-text-color);
    font-style: italic;
    margin: 5px 0px;
}

.form-box-wrapper form input {
    width: 100%;
    padding: 15px 30px;
    margin: 5px 0px;
    border-radius: 30px;
    outline: none;
    border: 1px solid;
    border-color: var(--input-border-color);
    font-style: italic;
    color: var(--input-color);
    background: none;
    font-size: 1.1rem;
    transition: opacity 200ms ease;
}

.form-box-wrapper form input:hover,
.form-box-wrapper form input:focus {
    border-color: var(--input-border-hovered-color);
}

.form-box-wrapper form input::-webkit-input-placeholder {
    /* Edge */
    font-style: italic;
    color: var(--input-border-color)
}

.form-box-wrapper form input:-ms-input-placeholder {
    /* Internet Explorer */
    font-style: italic;
    color: var(--input-border-color)
}

.form-box-wrapper form input::placeholder {
    font-style: italic;
    color: var(--input-border-color)
}

input[type=submit],
input[type=button] {
    -webkit-appearance: button;
}

.link-container {
    margin-top: 20px;
}

.link-button {
    width: 100%;
    padding: 15px 30px;
    margin: 5px 0px;
    border-radius: 30px;
    outline: none;
    border: 1px solid;
    border-color: var(--input-border-color);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--button-background) !important;
    color: #fff;
    opacity: 0.9;
    transition: opacity 250ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.link-button:hover,
.link-button:focus {
    opacity: 1;
    text-decoration: none;
}

.form-box-wrapper form label {
    margin: 5px 0px;
    font-size: 1rem;
    font-weight: 200;
    /* font-family: 'zurich'; */
    font-family: "Mulish";
    color: var(--input-label-color);
}

.form-box-wrapper form .OTP-Boxex {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.form-box-wrapper form .OTP-Boxex input {
    width: 45px;
    height: 45px;
    padding: 12px 16px;
    border-radius: 50%;
    text-align: center;
}

.form-box-wrapper form input[type='submit'] {
    background: var(--button-background);
    color: #fff;
    font-weight: bold;
    font-style: normal;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 250ms ease;
}

.form-box-wrapper form input[type='button'] {
    width: auto;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-style: normal;
    background: var(--button-background);
    color: #fff;
    opacity: 0.9;
    transition: opacity 250ms ease;
}

.form-box-wrapper form input[type='submit']:hover,
.form-box-wrapper form input[type='submit']:focus,
.form-box-wrapper form input[type='button']:hover,
.form-box-wrapper form input[type='button']:focus {
    opacity: 1;
}

.toggle-content {
    display: none;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
}

.toggle-content.is-visible {
    display: block;
    height: auto;
    opacity: 1;
}

.show-fast {
    transition: height 100ms ease-in-out, opacity 300ms ease-in-out;
}

.form-background-image {
    position: absolute;
    left: -31%;
    top: 0;
    width: 135%;
    object-fit: contain;
    z-index: -1
}

.form-box .form-box-wrapper {
    z-index: 1;
    width: 75%;
}

.muted-text {
    font-size: 0.7rem;
    opacity: 0.9;
    color: var(--input-label-color)
}

.offer {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
}

.img-joy-couple1 {
    position: absolute;
    left: -1.5%;
    top: 5%;
    width: 25%;
}

.img-joy-couple2 {
    position: absolute;
    top: 8%;
    right: 5.5%;
    width: 14.5%;
}

.img-offer-lines {
    position: absolute;
    top: 45%;
    right: -3%;
    width: 12%;
}

.img-offer-cloud {
    position: absolute;
    bottom: 0;
    right: -11%;
    width: 17%;
}

.offer-heading {
    margin-top: 35px;
    margin-bottom: 10px;
    text-align: center;
    width: 65%;
}

.offer-heading h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--headingColor1);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.offer-heading h3::before {
    content: '';
    position: absolute;
    width: 34%;
    height: 0.5px;
    background-color: var(--headingColor1);
    left: 10%;
    top: 50%;
    z-index: -1;
}

.offer-heading h3::after {
    content: '';
    position: absolute;
    width: 34%;
    height: 0.5px;
    background-color: var(--headingColor1);
    right: 10%;
    top: 50%;
    z-index: -1;
}

.offer-heading p {
    color: var(--subHeadingColor);
}

.offer-heading p span {
    padding-left: 10px;
    padding-right: 10px;
    color: var(--subHeadingColor);
    position: relative;
    font-size: 1.7rem;
    font-weight: 400;
}

.offer-heading p span::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--subHeadingColor);
    top: 0;
    right: 0;
}

.offer-heading p span:first-child {
    padding-left: 0px;
}

.offer-heading p span:last-child {
    padding-right: 0px;
}

.offer-heading p span:last-child::after {
    content: none;
}

.subheading {
    margin: 35px 0px;
}

.subheading h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--headingColor1);
}

.offer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 35px 0px;
}

.offer-container .offer-box {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 25%;
}

.offer-box-heading {
    width: 80px;
    height: 80px;
    color: var(--headingColor1);
    background-color: var(--lightBackground);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-box-heading h3 {
    font-size: 4.3rem;
    font-weight: 800;
}

.offer-box-heading h3:hover,
.offer-box-heading h3:focus {
    cursor: context-menu;
    animation: vibrate 0.8s ease-in-out 0ms 1 normal forwards;
}

@keyframes vibrate {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0px);
    }
}

.offer-box-heading h3 span {
    font-size: 1.2rem;
    font-weight: 800;
}

.offer-container .offer-box::after {
    content: '';
    position: absolute;
    top: -10%;
    right: 0;
    height: 135%;
    width: 1px;
    background-color: var(--lightBackground);
}

.offer-container .offer-box:last-child:after {
    content: none;
}

.offer-description {
    margin-top: 15px;
}

.offer-description p {
    font-size: 1.12rem;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}


/* Small devices (landscape phones, less than 768px) */

@media (max-width: 768px) {
    html {
        font-size: 1.2rem;
    }

    .logo {
        width: 170px;
    }

    .footer {
        flex-direction: column;
    }

    .footer span {
        font-size: 0.5rem;
    }

    .banner-grid {
        grid-template-rows: 1fr auto;
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .image-container {
        width: 100%;
        overflow: hidden;
    }

    .image-wrapper {
        z-index: 2;
    }

    .card-box {
        width: 100%;
    }

    .large-heading {
        font-size: 1.5rem;
    }

    .form-box .form-box-wrapper {
        width: 60%;
    }

    .form-box {
        width: 100%;
        height: 370px;
        margin: 0px 0px;
        justify-content: space-between;
    }

    .form-background-image {
        position: absolute;
        left: -20%;
        top: -36px;
        width: 143%;
        object-fit: contain;
        transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        z-index: -2;
        opacity: 0.7;
    }

    .form-box-wrapper .heading {
        padding: 0;
        margin-top: -20px;
    }

    .form-box-wrapper .heading h2 {
        font-size: 2.125rem;
    }

    .form-box-wrapper form .OTP-Boxex input {
        width: 55px;
        height: 55px;
        padding: 25px 15px;
    }

    .img-joy-woman {
        position: absolute;
        left: 5%;
        top: 5%;
        width: 12%;
    }

    .img-joy-man {
        position: absolute;
        top: 3%;
        right: 5%;
        width: 15%;
    }

    .img-offer-lines {
        position: absolute;
        top: 15%;
        right: -5.5%;
        width: 20%;
    }

    .offer {
        margin-top: -200px;
        z-index: 100;
    }

    .offer-heading {
        width: 70%;
        margin-top: 60px;
    }

    .offer-container {
        width: 100%
    }

    .offer-container .offer-box {
        width: 48%;
        height: 180px;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .offer-container .offer-box::before {
        content: none;
    }

    .offer-container .offer-box::after {
        content: none;
    }

    .offer-container .offer-box:first-child::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15%;
        width: 75%;
        height: 2px;
        background-color: var(--headingColor1);
    }

    .offer-container .offer-box:first-child::after {
        content: '';
        position: absolute;
        right: 0;
        top: 5%;
        height: 90%;
        width: 2px;
        background-color: var(--headingColor1);
    }

    .offer-container .offer-box:last-child::before {
        content: '';
        position: absolute;
        top: 5%;
        left: -2px;
        height: 90%;
        width: 2px;
        background-color: var(--headingColor1);
    }

    .offer-container .offer-box:last-child::after {
        content: '';
        position: absolute;
        right: 15%;
        top: -2px;
        height: 2px;
        width: 75%;
        background-color: var(--headingColor1);
    }

    .offer-box-heading {
        padding-top: 15px;
    }

    .offer-box-heading h3 {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .offer-description p {
        font-size: 0.6rem;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}


/* Medium devices (tablets, less than 992px) */

@media (max-width: 1024px) {
    html {
        font-size: 1.4rem;
    }

    .offer-container {
        width: 100%;
    }

    .offer-box-heading h3 {
        font-size: 2.2rem;
        font-weight: bold;
    }
}

@media (min-width: 787px) and (max-width: 1024px) {
    html {
        font-size: 1rem;
    }

    .large-heading {
        font-size: 1.3rem;
    }

    .offer-container {
        width: 100%;
    }

    .offer-box-heading h3 {
        font-size: 3rem;
        font-weight: bold;
    }

    .form-background-image {
        width: 132%;
    }

    .form-box .form-box-wrapper {
        width: 125%;
    }

    .form-box-wrapper .heading h2 {
        font-size: 1.1rem;
    }

    .form-box-wrapper form {
        width: 80%
    }

    .form-box-wrapper form input,
    .link-button {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .form-box-wrapper form .OTP-Boxex input {
        width: 35px;
        height: 35px;
        padding: 10px 15px;
    }

    .form-box-wrapper form label {
        font-size: 0.8rem;
    }

    .subheading h3 {
        font-size: 1.6rem;
    }

    .offer-heading h3 {
        font-size: 1.7rem;
    }

    .offer-heading p span {
        font-size: 1.5rem;
    }

    .offer-description p {
        font-size: 0.65rem;
    }
}


/* Large devices (desktops, less than 1200px) */

@media (max-width: 1199.98px) {
    html {
        font-size: 1.4rem;
    }
}


/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {
    .logo {
        width: 170px;
    }

    .footer {
        text-align: center;
        grid-template-rows: auto auto;
    }

    .footer .footer-flexed-row {
        flex-direction: column;
    }

    .footer span {
        font-size: 0.5rem;
    }

    .large-heading {
        font-size: 1.2rem;
        line-height: 1;
    }

    .form-box-wrapper .heading {
        margin-top: -10px;
    }

    .subheading {
        margin: 30px 0px 10px 0px;
    }

    .subheading h3 {
        font-size: 1.1rem;
    }

    .image-container {
        width: 100%;
        overflow: visible;
    }

    .card-box {
        width: 100%;
        padding: 0px 20px;
    }

    .form-box {
        width: 100%;
        height: 275px;
    }

    .form-background-image {
        position: absolute;
        left: -20%;
        top: -36px;
        width: 143%;
        object-fit: contain;
        transform: rotate(90deg);
        z-index: -2;
        opacity: 0.7;
    }

    .form-box .form-box-wrapper {
        width: 70%;
    }

    .form-box-wrapper .heading h2 {
        font-size: 1.4rem;
    }

    .form-box-wrapper form {
        width: 100%
    }

    .form-box-wrapper form input {
        padding: 10px 20px;
        font-size: 0.6rem;
    }

    .link-button {
        padding: 15px 30px;
        font-size: 0.7rem;
    }

    .form-box-wrapper form label {
        font-size: 0.7rem;
    }

    .form-box-wrapper form .OTP-Boxex input {
        width: 36px;
        height: 36px;
        padding: 10px 5px;
    }

    .img-joy-woman {
        top: 30px;
        width: 15%;
    }

    .img-joy-man {
        top: 5%;
        right: 3%;
        width: 18%;
    }

    .img-offer-lines {
        top: 11%
    }

    .offer {
        margin-top: -170px;
        z-index: 100;
    }

    .offer-container {
        margin-top: 5px;
    }

    .offer-container .offer-box {
        width: 130px;
    }

    .offer-heading {
        width: 100%;
        margin-top: 40px;
    }

    .offer-heading h3 {
        font-size: 1.4rem;
    }

    .offer-heading h3::before {
        left: 20%;
        width: 20%;
    }

    .offer-heading h3::after {
        width: 20%;
        right: 20%;
    }

    .offer-container .offer-box {
        /* width: 150px !important; */
        width: 50%;
        height: 150px;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .offer-box-heading {
        width: 75px;
        height: 75px;
    }

    .offer-box-heading h3 {
        font-size: 2.4rem;
        font-weight: bold;
    }

    .offer-container .offer-box::before {
        content: none;
    }

    .offer-container .offer-box::after {
        content: none;
    }

    .offer-container .offer-box:first-child::before {
        width: 75%;
    }

    .offer-container .offer-box:first-child::after {
        height: 85%;
    }

    .offer-container .offer-box:last-child::before {
        height: calc(85% + 10px);
    }

    .offer-container .offer-box:last-child::after {
        width: 75%;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

@media (min-width: 1441px) {
    html {
        font-size: 2rem;
    }

    .form-box-wrapper form input,
    .link-button {
        padding: 25px 30px;
    }

    .form-box-wrapper form .OTP-Boxex input {
        width: 65px;
        height: 65px;
        padding: 27px 16px;
    }

    .offer-box-heading {
        width: 140px;
        height: 140px;
    }

    .img-joy-couple1 {
        width: 20%;
    }

    .img-joy-couple2 {
        width: 11.5%;
    }

    .img-offer-cloud {
        right: -8%;
        width: 15%;
    }

    .offer-heading {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .subheading {
        margin: 70px 0px;
    }

    .img-offer-lines {
        right: -2%;
        width: 10%;
    }

    .offer-container {
        margin: 60px 0px;
    }

    .offer-container .offer-box::after {
        width: 3px;
    }
}