:root {
    /* --uk-blue: #2c366a; */
    --uk-blue: #012169;

    /* --uk-red: #C8102E; */
    --uk-red: #C8102E;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

/* Header Styling */
.navbar-brand img {
    height: 50px;
}

.brand-logo {
    max-height: 60px;
    width: auto;
}

@media (max-width: 576px) {
    .brand-logo {
        max-height: 45px;
    }
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--uk-red);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons i {
    font-size: 22px;
    color: white;
}

@media (max-width: 576px) {
    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .social-icons i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        width: 24px;
        height: 24px;
    }

    .social-icons i {
        font-size: 14px;
    }
}

.social-icons a:hover {
    background-color: var(--uk-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(214, 33, 40, 0.3);
}



/* .btn-auth {
        border-radius: 20px;
        padding: 2px 20px;
        border: 1px solid #ccc;
        font-size: 0.9rem;
        color: #555;
        text-decoration: none;
      } */

/* Updated Auth Button Styling */
.btn-auth {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    /* Makes it pill-shaped */
    padding: 6px 12px 6px 16px;
    /* Extra padding on the left for text */
    border: 1px solid rgba(88, 89, 91, 1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s ease;
    font-family: 'Mulish', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .btn-auth {
        font-size: 0.85rem;
        padding: 5px 10px 5px 14px;
    }
}

/* Mobile menu button styling */
#authMenuToggle {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

#authMenuToggle:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Mobile menu dropdown styling */
#authMenuDropdown .btn-auth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border: 1px solid rgba(88, 89, 91, 1);
    border-radius: 50px;
}

#authMenuDropdown .btn-auth:hover {
    background-color: #f9f9f9;
}

#authMenuDropdown .icon-circle {
    margin-left: auto;
    margin-right: 0;
}

.btn-auth:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* The circular background for the chevron */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    /* Space between text and icon */
    color: white;
    font-size: 15px;
}

.icon-circle i {
    font-size: 12px;
}

.bg-uk-blue {
    background-color: var(--uk-blue);
}

.bg-uk-red {
    background-color: var(--uk-red);
}

/* Image Grid Styling */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.photo-grid .box {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.box.blue {
    background-color: var(--uk-blue);
}

.box.red {
    background-color: var(--uk-red);
}

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

/* Form Styling */
.hero-text h1 {
    font-size: 6.4rem;
    font-weight: bold;
    color: var(--uk-blue);
    line-height: 1;
}

.hero-text p {
    font-size: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        margin-top: 1rem;
        font-size: 1rem;
    }
}

.hero-text h1 img {
    width: 75px;
    height: auto;
}

@media (max-width: 768px) {
    .hero-text h1 img {
        width: 24px;
    }
}

.form-control {
    border-radius: 20px;
    border: 1px solid #000;
    color: #C8102E;
}

.form-control::placeholder {
    color: #C8102E;
    opacity: 1;
}

.otp-section {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.btn-submit {
    background-color: #012169;
    color: #fff;
    border-radius: 20px;
    padding: 5px 30px;
}

.btn-submit:hover {
    background-color: #fff;
    color: #012169;
    border: 1px solid #012169;
}

/* Footer properties */
footer p {
    margin-bottom: 0 !important;
}

.footer-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    cursor: pointer;
}

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

footer .social-icons {
    gap: 10px;
    justify-content: center;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #C8102E;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .social-icons i {
    font-size: 22px;
    color: white;
}

@media screen and (min-width:1162px) and (max-width:1227px) {
    .footer-link {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 0.7rem;
        font-family: "Mulish", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        cursor: pointer;
    }
}

/* Footer properties */

/* made section */
#made-section {
    background-image: url('../image/background-image-1.svg');
    background-size: cover;
    background-position: center center;
}

#made-section .para-text {
    color: rgb(255, 255, 255);
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;

}

#made-section hr {
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    margin: 10px 0px;
    opacity: 1;
}

#made-section a.join-btn:hover {
    text-decoration: none;
}

#made-section a.join-btn {
    text-decoration: none;
    cursor: pointer;
    background-color: #012169;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 4px 8px 4px 12px;
    border-radius: 24px;
}

#made-section a.join-btn img {
    width: 30px;
}

#made-section div.appstore-options {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#made-section div.appstore-options a {
    text-decoration: none;
    cursor: pointer;
}

#made-section div.appstore-options a img {
    height: 50px;
}

#made-section div.flag-container img {
    width: 75%;
}

@media screen and (min-width:992px) {
    #made-section div.flag-container {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: none;
    }

    #made-section div.flag-container img {
        width: 100%;
    }
}

/* made section */


/* redemption section */
#redemption-section p#heading {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #012169;
    font-size: 1.5rem;
    margin: 0 -4px 0 0;
}

#redemption-section #heading-container {
    border: 2px solid #C8102E;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 4px 4px 4px 20px;
}

#redemption-section img {
    width: 75%;
    margin-bottom: 20px;
}

#redemption-section #heading-container img {
    height: 35px;
    width: auto;
    margin-bottom: 0px;
}

@media screen and (max-width:575px) {
    #redemption-section p#heading {
        font-size: 1rem;
    }

    #redemption-section img {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (min-width:576px) and (max-width:1200px) {
    #redemption-section p#heading {
        font-size: 2rem;
    }

    #redemption-section img {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* redemption section */

/* activities section */
#activity-container #heading {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 -4px 0 0;
}

#activity-container #heading-container {
    border: 2px solid #C8102E;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 4px 4px 4px 20px;
}

/* #redemption-section img{
    width: 75%;
    margin-bottom: 20px;
} */
#activity-container {
    background-color: #012169;
}

#activity-container #heading-container img {
    height: 35px;
    width: auto;
    margin-bottom: 0px;
}

#activity-container div.activity-option {
    min-height: 80px;
    border-radius: 10px;
    margin: 0px 5px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#activity-container div.activity-option div.image-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#activity-container div.activity-option.left {
    padding-left: 45px !important;
    justify-content: start;
}

#activity-container div.activity-option div.image-container.left img,
#activity-container div.activity-option div.image-container.right img {
    width: 80px;
}

#activity-container div.activity-option div.image-container.left {
    left: -40px;
    top: 0;
}

#activity-container div.activity-option.right {
    padding-right: 45px !important;
    justify-content: end;
}

#activity-container div.activity-option div.image-container.right {
    right: -45px;
    top: 0;
    height: 100%;
}

#activity-container div.activity-option.red {
    background-color: #C8102E;
}

#activity-container div.activity-option.red h3,
#activity-container div.activity-option.red p {
    color: rgb(255, 255, 255);
}

#activity-container div.activity-option.white {
    background-color: rgb(255, 255, 255);
}

#activity-container div.activity-option.white h3,
#activity-container div.activity-option.white p {
    color: rgb(94, 100, 115);
}

#activity-container div.activity-option h3 {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
}

#activity-container div.activity-option p {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
}

@media screen and (max-width:575px) {
    #activity-container h2#heading {
        font-size: 1rem;
    }

    #activity-container div.activity-option.left {
        margin-left: 35px !important;
        padding-left: 45px !important;
        max-height: 150px;
    }

    #activity-container div.activity-option div.image-container.left {
        left: -32px;
        transform: translate(-13%);
    }

    #activity-container div.activity-option.right {
        padding-right: 55px !important;
        margin-right: 35px !important;
    }

    #activity-container div.activity-option div.image-container.right {
        right: -45px;
        transform: translate(-14%);
    }
}

@media screen and (min-width:576px) and (max-width:1200px) {
    #activity-container h2#heading {
        font-size: 2rem;
    }

    /* #redemption-section img{
        width: 100%;
        margin-bottom: 20px;
    } */
}

@media screen and (min-width:1200px) {
    #activity-container div.container {
        max-width: 68% !important;
    }
}


/* earning section */
#earning-container #heading {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 -4px 0 0;
}

#earning-container #heading-container {
    border: 2px solid #ffffff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 4px 4px 4px 20px;
    justify-content: center;
}

#earning-container {
    background-color: #C8102E;
}

#earning-container #heading-container img {
    height: 35px;
    width: auto;
    margin-bottom: 0px;
}

#earning-container div.earning-option img {
    width: 100%;
}

#earning-container div.earning-option h3,
#earning-container div.earning-option p {
    color: rgb(255, 255, 255);
}

#earning-container div.earning-option h3 {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
}

#earning-container div.earning-option p {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
}

@media screen and (max-width:575px) {
    #earning-container h2#heading {
        font-size: 1rem;
    }
}

@media screen and (min-width:576px) and (max-width:1200px) {
    #earning-container h2#heading {
        font-size: 2rem;
    }
}

/* benefit container */
#benefit-container #heading {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 -4px 0 0;
}

#benefit-container #heading-container {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50px;
    background-color: #012169;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 4px 0px 4px 20px;
    justify-content: center;
}

#benefit-container {
    background-image: url('../image/benefit-images/benefit-background.svg');
    background-size: cover;
    background-position: center;
}

#benefit-container #heading-container img {
    height: 35px;
    width: auto;
    margin-bottom: 0px;
}

#benefit-container div.benefit-option img {
    width: 70%;
}

#benefit-container div.benefit-option p {
    color: rgb(255, 255, 255);
}

#benefit-container div.benefit-option p {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
}

#benefit-container a#join-now-btn {
    text-decoration: none;
    cursor: pointer;
    background-color: #012169;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 4px 8px 4px 12px;
    border-radius: 24px;
}

#benefit-container a#join-now-btn img {
    width: 30px;
}

#benefit-container a#join-now-btn:hover {
    text-decoration: none;
}

@media screen and (max-width:575px) {
    #benefit-container h2#heading {
        font-size: 1rem;
    }
}

@media screen and (min-width:576px) and (max-width:1200px) {
    #benefit-container h2#heading {
        font-size: 1rem;
    }
}

/* steps container */
#steps-container #heading {

    font-optical-sizing: auto;
    font-style: normal;
    color: #C8102E;
    font-size: 1.5rem;
    margin: 0 -4px 0 0;
}

#steps-container #heading-container {
    border: 2px solid #C8102E;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-family: "Expletus Sans", sans-serif;
    gap: 0px;
    padding: 4px 0px 4px 20px;
    justify-content: center;
}

#steps-container #heading-container img {
    height: 35px;
    width: auto;
    margin-bottom: 0px;
}

#steps-container div.step-content-container {
    text-align: center;
}

#steps-container div.step-content-container h3 {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
    color: #012169;
}

#steps-container div.step-content-container p {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    color: rgba(88, 89, 91, 1);
}

#steps-container #steps-container-desktop {
    position: relative;
}

#steps-container #steps-container-desktop img {
    width: 100%;
}

#steps-container #steps-container-desktop div.step-content-container {
    position: absolute;
    width: 18%;
}

#steps-container #steps-container-desktop div#step-container-1 {
    top: -11%;
    left: 10%;
}

#steps-container #steps-container-desktop div#step-container-2 {
    bottom: -18%;
    left: 41%;
}

#steps-container #steps-container-desktop div#step-container-3 {
    top: -11%;
    right: 12%;
}

@media screen and (max-width:575px) {
    #steps-container h2#heading {
        font-size: 1rem;
    }
}

@media screen and (min-width:576px) and (max-width:1200px) {
    #steps-container h2#heading {
        font-size: 2rem;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    #steps-container #heading-container {
        margin-bottom: 1rem;
    }

    #steps-container #steps-container-desktop div.step-content-container {
        position: absolute;
        width: 30%;
    }

    #steps-container #steps-container-desktop div#step-container-1 {
        top: -28%;
        left: 5%;
    }

    #steps-container #steps-container-desktop div#step-container-2 {
        bottom: -37%;
        left: 36%;
    }

    #steps-container #steps-container-desktop div#step-container-3 {
        top: -28%;
        right: 5%;
    }

}

@media screen and (min-width:991px) and (max-width:1200px) {
    #steps-container #steps-container-desktop div.step-content-container {
        position: absolute;
        width: 30%;
    }

    #steps-container #steps-container-desktop div#step-container-1 {
        top: -20%;
        left: 5%;
    }

    #steps-container #steps-container-desktop div#step-container-2 {
        bottom: -24%;
        left: 35%;
    }

    #steps-container #steps-container-desktop div#step-container-3 {
        top: -20%;
        right: 5%;
    }

}

/* terms and conditions */
#tc-container * {
    font-family: 'Mulish', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
}

#tc-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

#tc-container h2,
#tc-container h3 {
    font-weight: 700;
}


/* quiz container */
#quiz-container {
    /* background: url('../image/quiz-images/background-image-1.svg') top 85% left -1% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') top 90% left 50% / 50px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -2% left 70% / 10% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -3% / 6% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 15% / 3% no-repeat; */
    background: url('../image/quiz-images/background-image-1.svg') top 85% left -4% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 75% left 53% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -6% left 60% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;

    background-color: #012169;
}

#quiz-container #quiz-banner {
    position: relative;

}

#quiz-container #quiz-logo {
    width: 42%;
    position: absolute;
    left: 22%;
    top: -19%;
    transform: translate(15%);
}

#quiz-container #banner-content {
    position: absolute;
    width: 100%;
    top: 27%;
}

#quiz-container #banner-content h2 {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2rem;
    text-align: center;
}

#quiz-container #banner-content h2 span {
    font-size: 3.5rem;
}

#quiz-container #quiz-banner p {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.3rem;
    color: rgb(255, 255, 255);
    margin-top: 1.5rem;
}

#quiz-container #quiz-banner p span {
    font-size: 1.75rem;
}

#quiz-container #quiz-block {
    position: relative;
    left: 13%;
    top: 10%;
}

#quiz-container #quiz-block form p {
    font-size: 1.25rem;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: rgb(255, 255, 255);
}

#quiz-container #quiz-block form div {
    margin: 10px;
}

.custom-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

/* Hide default radio */
.custom-radio input[type="radio"] {
    display: none;
}

/* Outer circle */
.radio-mark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #012169;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(255, 255, 255);
}

/* Inner red dot */
.radio-mark::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C8102E;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Checked state */
.custom-radio input[type="radio"]:checked+.radio-mark::after {
    opacity: 1;
}

/* Label text */
.radio-label {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
}

/* Optional: hover feedback */
.custom-radio:hover .radio-mark {
    box-shadow: 0 0 0 3px rgba(213, 0, 0, 0.15);
}

#quiz-container button {
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    background-color: #C8102E;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    gap: 10px;
    padding: 5px 8px 5px 18px;
    border: none;
    font-size: 21px;
}

#quiz-container button span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    background-color: #012169;
    border-radius: 50%;
}

#quiz-container button img {
    width: 18px;
}

#quiz-container button:hover {
    text-decoration: none;
}

@media screen and (max-width:576px) {
    #quiz-container {
        /* background: url('../image/quiz-images/background-image-1.svg') top 85% left -10% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') bottom 2% left 50% / 50px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -2% left 70% / 50px no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -3% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') top 2% right 10% / 40px no-repeat; */
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -10% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') bottom 2% left 50% / 50px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -2% left 70% / 50px no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -3% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') top 2% right 10% / 40px no-repeat;

        background-color: #012169;
    }

    #quiz-container #quiz-logo {
        width: 22%;
        left: 36%;
        top: -14%;
        transform: translate(15%);
    }

    #quiz-container #quiz-block {
        position: relative;
        left: 0;
        top: 2%;
    }

    #quiz-container #banner-content {
        width: 100%;
        top: 100px;
        transform: translate(0px, -40px);
    }

    #quiz-container #banner-content h2 {
        font-size: 1rem;
    }

    #quiz-container #banner-content h2 span {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -10% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') bottom 2% left 50% / 50px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -2% left 70% / 50px no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -3% / 50px no-repeat, url('../image/quiz-images/background-image-2.svg') top 2% right 10% / 40px no-repeat;
        background-color: #012169;
        /* background: url('../image/quiz-images/bgImage-mobile.png') ; */
    }
}

@media screen and (min-width: 991px) and (max-width: 1100px) {
    .hero-text h1 {
        font-size: 5.4rem;
        font-weight: bold;
        /* color: var(--uk-blue); */
        line-height: 1;
    }

    #quiz-container #quiz-block form p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 991px) and (max-width: 1220px) {
    #quiz-container #banner-content h2 span {
        font-size: 3rem;
    }

    #quiz-container #quiz-block form p {
        font-size: 1rem;
        font-family: "Mulish", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        color: rgb(255, 255, 255);
    }

    .radio-label {
        font-family: "Mulish", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 1rem;
        color: rgb(255, 255, 255);
    }

    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -4% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 75% left 52% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -6% left 58% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 1% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {

        position: relative;
        left: 8%;
        top: 0%;
    }
}

@media screen and (min-width: 1220px) and (max-width: 1440px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 75% left 52% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 58% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 85%;
        position: relative;
        left: 12%;
        top: 4%;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1600px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 75% left 52% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 58% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 85%;
        position: relative;
        left: 22%;
        top: 6%;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1800px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 74% left 50% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 55% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 85%;
        position: relative;
        left: 27%;
        top: 4%;
    }

    #quiz-container #quiz-banner {
        position: relative;
        top: 8%;
        left: -10%;
    }
}

@media screen and (min-width: 1800px) and (max-width: 2000px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 75% left 52% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 58% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 85%;
        position: relative;
        left: 40%;
        top: 6%;
    }

    #quiz-container #quiz-banner {
        position: relative;
        top: 8%;
        left: -10%;
    }
}

@media screen and (min-width: 2000px) and (max-width: 2200px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 70% left 52% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 57% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 90%;
        position: relative;
        left: 52%;
        top: 4%;
    }

    #quiz-container #quiz-banner {
        position: relative;
        top: 8%;
        left: -15%;
    }
}

@media screen and (min-width: 2200px) and (max-width: 2400px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 70% left 50% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 55% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 90%;
        position: relative;
        left: 55%;
        top: 4%;
    }

    #quiz-container #quiz-banner {
        position: relative;
        top: 8%;
        left: -25%;
    }
}

@media screen and (min-width: 2400px) and (max-width: 2560px) {
    #quiz-container {
        background: url('../image/quiz-images/background-image-1.svg') top 85% left -2% / 90px no-repeat, url('../image/quiz-images/background-image-2.svg') top 62% left 50% / 55px no-repeat, url('../image/quiz-images/background-image-3.svg') bottom -8% left 55% / 15% no-repeat, url('../image/quiz-images/background-image-4.svg') top 50% right -2% / 5% no-repeat, url('../image/quiz-images/background-image-2.svg') top 3% right 5% / 50px no-repeat;
        background-color: #012169;
    }

    #quiz-container #quiz-block {
        width: 90%;
        position: relative;
        left: 65%;
        top: 4%;
    }

    #quiz-container #quiz-banner {
        position: relative;
        top: 8%;
        left: -30%;
    }
}

@media (max-width: 992px) {
    #quiz-container #quiz-block {
        position: relative;
        left: 0;
        top: 2%;
    }
}

/* quiz container */

/* header properties */
header {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* header properties */

/* about page properties */

#about-us-container p {
    font-family: 'Mulish', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
}

#about-us-container h1 {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2rem;
    font-weight: 700;
}

#about-us-container div.heading-container {
    border: 2px solid #C8102E;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem;
}

#about-us-container div.heading-container h2 {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #012169;
    font-size: 1.2rem;
    margin: 0;
}

#about-us-container div.heading-container img {
    height: 25px;
    width: auto;
    margin-bottom: 0px;
}