:root {
    --primary: black;
    --secondary: white;
    --primaryfont: "Poppins", sans-serif;   
    --secondaryfont: "AR One Sans", sans-serif;
    --tertiaryfont: "ABeeZee", sans-serif;
    --tertiary: #330000;
    --complementary: #ffcacc;
    --lightgrey: rgba(215, 215, 215, 0.42);
    --lightergrey: #D9D9D9;
    --quizheaderfont: "Anton", sans-serif;
    --green: #168200;
    --lightgreen: #1a9a00;
    --lightergreen: #e0ffda;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

* {
    font-family: var(--primaryfont);
    color: var(--secondary);
}

body {
    background: linear-gradient(157.27deg, var(--primary) 28.96%, var(--tertiary) 109.33%);
    color: var(--secondary);
    font-family: var(--primaryfont);
    min-height: 100vh; 
    margin: 0px;
    padding: 0px;
}

h1, h2, h3 {
    font-family: var(--secondaryfont);
}

/* NAVIGATION STYLES */

.nav-content {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    transition: transform 0.3s ease-in, color 0.3s ease-in;
    cursor: pointer;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.nav-right, .nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}   

.nav-right, .nav-links {
    width: 100%;
}

.nav-list {
    justify-content: flex-end;
    list-style-type: none;
}

.nav-item {
    padding: 1% 2%;
}

.nav-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: var(--secondary);
    transition: transform 0.2s ease-in, color 0.2s ease-in;
    transform-origin: center;
}

.nav-link:hover {
    color: var(--complementary);
    font-weight: bolder;
    transform: scale(1.1);
    transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.nav-link.active {
    font-weight: bold;
}

#navScores {
    padding-right: 5%;
}

.menu-box-icon {
    width: 1.5em;
    transition: transform 0.2s ease-in, color 0.2s ease-in;
}

.menu-box-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-out, color 0.3s ease-out;
    cursor: pointer;
}

.menu-box {
    display: flex;
}

/*hamburger*/

nav {
    position: relative; 
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 6px;
    background: #ffffff;
    margin: 5px 0;
    margin-top: -2px;
    transition: 0.3s;
}

.hamburger:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-out, color 0.3s ease-out;
    cursor: pointer;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
        order: 1;
    }

    .menu-box {
        order: 2;
        margin-left: 10px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        padding: 5% 0
    }

    .nav-links {
        display: block; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        padding-left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9);
        opacity: 0;
        visibility: hidden; 
        transition: opacity 0.3s ease, visibility 0.3s ease; 
        transform: translateY(-10px); 
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
      }

      .nav-links.active {
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0); 
    }
   
    .nav-list {
        flex-direction: column;
        padding-left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    #navScores {
        padding: 0;
    }
}

/* INDEX */
/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 5% 0;
}

.hero-main {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.hero-img {
    width: 100%;
}

.hero-desc {
    background: linear-gradient(126.37deg, #222120 59.14%, #323232 114.48%);
    border-radius: 80px;
    text-align: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-desc-container {
    font-size: 1.5em;
    padding: 2% 5% 0 5%;
}

.hero-desc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-button {
    background-color: var(--lightgrey);
    padding: 1% 2%;
    border-radius: 30px;
    width: 30%;
    height: 50;
    font-size: 1.5em;
    transition: transform 0.3s ease-out, background-color 0.3s ease-out, box-shadow 0.3s ease-out, color 0.3s ease-out, font-weight 0.3s ease-out;
    text-decoration: none;
    list-style-type: none;

    &:hover {
        transform: scale(1.1);
        color: var(--primary);
        cursor: pointer;
        background-color: var(--tertiary);
        box-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
        
        .start-btn {
            color: var(--secondary);
            font-weight: bold;
            text-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
            transition: font-weight 0.3s ease-out;
        }
    }
}

.mushroom-hero {
    display: none;
}

footer {
    background-color: var(--lightergrey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
    border-radius: 100px;
    margin: 2% 5%;
    text-align: center;

    p {
        color: black;
    }

    .contact-logo {
        width: 3em;
    }
    
    .contact-logo, .soliquiz-logo {
        transition: transform 0.3s ease-in, color 0.3s ease-in;
        cursor: pointer;
    }
    
    .contact-logo:hover, .soliquiz-logo:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease-out, color 0.3s ease-out;
    }
}

.nav-logo-img {
    transition: transform 0.3s ease-in, color 0.3s ease-in;
    cursor: pointer;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1100px) {
    .hero-desc {
        p {
            font-size: 0.75em;
        }

        .hero-button {
            width: 40%;
        }
    }
}

@media screen and (max-width: 900px) {
    .hero-desc {
        .plant1 {
            display: none;
        }

        .hero-desc-bottom {
            flex-direction: column;
        }

        .hero-desc-container {
            padding: 5% 10% 0 10%;
        }

        .hero-button {
            font-size: 1.25em;
            margin: 5% 0;
        }   
    }

    footer {
        flex-direction: column;
    }
}

@media screen and (max-width: 650px) {
    .hero-desc {
        .hero-button {
            font-size: 1.15em;
            padding: 3% 8%;
        }
    }
}

@media screen and (max-width: 460px) {
    .hero-desc {
        border-radius: 50px;

        .plant2 {
            display: none;
        }

        .mushroom-hero {
            display: block;
            width: 20%;
            margin-top: 5%;
        }

        .hero-button {
            padding: 3% 5%;
            font-size: 1em;
        }
    }

    footer {
        border-radius: 50px;
    }
}


/* QUIZ MAIN PAGE */

.quiz-main {
    background: url(images/quiz-choice-bg.png) no-repeat;
    padding: 5% 0;
    width: 100%;
    background-size: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 7%;
    padding: 0 5%;
}

.quiz-logo {
    transition: transform 0.3s ease-in, color 0.3s ease-in;
    cursor: pointer;
    text-align: center;
    width: 20%;
}

.quiz-logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.section-header-heading-container {
    margin-top: 5%;
}

.section-header-heading {
    font-size: 5em;
    margin: 0;
    line-height: 90%;
}

.section-header-subheading {
    font-size: 2em;
    font-weight: 200;
    opacity: 0.7;
}

.quiz-selection {
    padding: 0 0 2% 5%;
}

.quiz-selector-header {
    font-size: 1.5em;
}

.quizzes-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; 
    gap: 1.5rem; 
}

.quiz-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;  
    text-align: center;

    label {
        font-size: 1.25em;
        font-weight: 500;
        padding-top: 5%;
    }
}

.quiz-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-container:hover {
    opacity: 1;
}

.quiz-controls {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.previous-container, .next-container {
    display: flex;
    padding: 0 5%;
    align-items: center;
}

.previous, .next {
    padding: 0 20%;
    margin: 0;
}

.subject-img {
    border-radius: 25px;
    aspect-ratio: 1 / 1;    
    object-fit: cover;
    width: 25em;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1450px) {
    .subject-img {
        width: 20em;
    }
}

@media screen and (max-width: 1000px) {
    .subject-img {
        width: 15em;
    }
}

@media screen and (max-width: 650px) {
    .section-header-heading2 {
        padding-top: 5%;
    }

    .subject-img {
        width: 12em;
    }

    .quiz-link {
        label {
            font-size: 1em;
        }
    }
}

@media screen and (max-width: 450px) {
    .subject-img {
        width: 10em;
    }

    .quiz-link {
        label {
            font-size: 0.9em;
        }
    }
}

/* ABOUT US */
.abt-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.abt-card-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.abt {
    margin-top: 30%;
}

.abt-card {
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: absolute;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.abt-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.abt-text {
    z-index: 2;     
    padding: 30px 20px 20px;
}

.abt-name, .abt-role {
    font-family: var(--tertiaryfont);
    margin: 0;
}

.abt-name {
    font-weight: bold;
    font-size: 1.8em;
}

.abt-role {
    font-weight: 300;
    font-size: 1.1em;
}

.abt-img {
    height: 320px;
    align-self: center;
    z-index: 1;
}

#leiCard {
    background: linear-gradient(180deg, #26C9F3 0%, #187891 100%);
    width: 250px;
    left: 20%;
    transform: rotate(-6deg) translateY(20px);
    z-index: 1;
    height: 400px;
}

#roxCard {
    background: linear-gradient(180deg, #00BA9B 0%, #009E83 100%);
    width: 250px;
    left: 32%;
    transform: rotate(-3deg) translateY(10px);
    z-index: 2;
    height: 450px;
}

#mikaCard {
    background: linear-gradient(180deg, #E7809B 0%, #F33E6D 100%);
    width: 250px;
    z-index: 5;
    height: 500px;
}

#bryllCard {
    background: linear-gradient(180deg, #DC281E 0%, #981912 100%);
    width: 250px;
    left: 55%;
    transform: rotate(3deg) translateY(10px);
    z-index: 2;
    height: 450px;
}

#kurtCard {
    background: linear-gradient(180deg, #215621 0%, #0A1A0A 100%);
    width: 250px;
    left: 67%;
    transform: rotate(6deg) translateY(20px);
    z-index: 1;
    height: 400px;
}

#roxCard:hover, #kurtCard:hover, #bryllCard:hover, #leiCard:hover, #mikaCard:hover {
    transform: scale(1.2);
    z-index: 9;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 6500px) {
    .abt {
        margin-top: 10%;
    }

    #leiCard {
        left: 42%;
    }
    
    #roxCard {
        left: 45%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 51%;
    }
    
    #kurtCard {
        left: 54%;
    }
}

@media screen and (min-width: 5500px) and (max-width: 6500px) {
    .abt {
        margin-top: 15%;
    }

    #leiCard {
        left: 41%;
    }
    
    #roxCard {
        left: 44%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 51%;
    }
    
    #kurtCard {
        left: 54%;
    }
}

@media screen and (min-width: 5100px) and (max-width: 5500px) {
    .abt {
        margin-top: 15%;
    }

    #leiCard {
        left: 39%;
    }
    
    #roxCard {
        left: 43%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 52%;
    }
    
    #kurtCard {
        left: 54%;
    }
}

@media screen and (min-width: 4700px) and (max-width: 5100px) {
    .abt {
        margin-top: 15%;
    }

    #leiCard {
        left: 38%;
    }
    
    #roxCard {
        left: 43%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 52%;
    }
    
    #kurtCard {
        left: 56%;
    }
}

@media screen and (min-width: 3700px) and (max-width: 4700px) {
    .abt {
        margin-top: 15%;
    }

    #leiCard {
        left: 37%;
    }
    
    #roxCard {
        left: 42%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 52%;
    }
    
    #kurtCard {
        left: 57%;
    }
}

@media screen and (min-width: 3300px) and (max-width: 3700px) {
    .abt {
        margin-top: 15%;
    }

    #leiCard {
        left: 35%;
    }
    
    #roxCard {
        left: 40%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 53%;
    }
    
    #kurtCard {
        left: 59%;
    }
}

@media screen and (min-width: 3000px) and (max-width: 3300px) {
    .abt {
        margin-top: 20%;
    }

    #leiCard {
        left: 33%;
    }
    
    #roxCard {
        left: 39%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 53%;
    }
    
    #kurtCard {
        left: 59%;
    }
}

@media screen and (min-width: 2700px) and (max-width: 3000px) {
    .abt {
        margin-top: 20%;
    }

    #leiCard {
        left: 30%;
    }
    
    #roxCard {
        left: 38%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 54%;
    }
    
    #kurtCard {
        left: 62%;
    }
}

@media screen and (min-width: 2400px) and (max-width: 2700px) {
    .abt {
        margin-top: 20%;
    }

    #leiCard {
        left: 28%;
    }
    
    #roxCard {
        left: 37%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 54%;
    }
    
    #kurtCard {
        left: 63%;
    }
}

@media screen and (min-width: 2050px) and (max-width: 2400px) {
    .abt {
        margin-top: 25%;
    }

    #leiCard {
        left: 25%;
    }
    
    #roxCard {
        left: 35%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 55%;
    }
    
    #kurtCard {
        left: 65%;
    }
}

@media screen and (min-width: 2000px) and (max-width: 2050px) {
    .abt {
        margin-top: 25%;
    }

    #leiCard {
        left: 22%;
    }
    
    #roxCard {
        left: 32%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 55%;
    }
    
    #kurtCard {
        left: 65%;
    }
}

@media screen and (max-width: 1600px) {
    .abt {
        margin-top: 40%;
    }

    #leiCard {
        left: 20%;
    }
    
    #roxCard {
        left: 30%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 55%;
    }
    
    #kurtCard {
        left: 65%;
    }
}

@media screen and (max-width: 1350px) {
    .abt {
        margin-top: 45%;
    }
    
    #leiCard {
        left: 10%;
    }
    
    #roxCard {
        left: 25%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 55%;
    }
    
    #kurtCard {
        left: 70%;
    }
}

@media screen and (max-width: 1000px) {
    .abt {
        margin-top: 60%;
    }

    #leiCard {
        left: 5%;
    }
    
    #roxCard {
        left: 20%;
    }
    
    #mikaCard {
        z-index: 5;
    }
    
    #bryllCard {
        left: 55%;
    }
    
    #kurtCard {
        left: 70%;
    }
}

@media screen and (max-width: 870px) {
    .abt-card-container {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        width: 90%;
        gap: 30px;
        margin: 5%;
    }

    .abt-card {
        position: static;
        transform: none !important;
        width: 90%;
        max-width: 300px;
        rotate: 0deg !important;
    }

    #leiCard, #roxCard, #mikaCard, #bryllCard, #kurtCard {
        left: auto !important;
        z-index: auto;
        rotate: 0deg;
        height: 500px;
    }

    .abt {
        margin-top: 0;
    }
}

@media screen and (max-width: 750px) {
    .abt-main {
        .section-header-heading {
            font-size: 3em;
        }

        .section-header-subheading {
            font-size: 1.5em;
        }
    }
}

@media screen and (max-width: 450px) {
    .abt-main {
        .section-header-heading {
            font-size: 2,5em;
        }

        .section-header-subheading {
            font-size: 1em;
        }
    }
}

/* SCORE PAGE */
.score-main {
    min-height: 100vh;
}

.score-header .section-header-heading {
    padding-bottom: 5%;
}

.score-container {
    background: linear-gradient(109.93deg, #212020 15.7%, #575757 99.8%);
    border-radius: 30px;
    padding: 2% 2%;
}

.total-pts {
    text-align: end;
    margin: 0;
}

#totalScore {
    font-weight: bold;
}

.score-table {
    margin-top: 2%;
    width: 100%;
    border-collapse: separate;

    td {
        border-bottom: 1px solid #878787;
        padding: 12px 0;
    }

    tbody tr:last-child td {
        border-bottom: none;
    }
}

.quiz-name, .table-subject-header {
    text-align: start;
}

.quiz-score, .table-score-header {
    text-align: end;
}

.quiz-name, .quiz-score {
    font-size: 1.5em;
}

.table-subject-header, .table-score-header, .quiz-score {
    font-weight: 200;
    opacity: 0.7;
}

.score-row {
    padding: 1% 0;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1000px) {
    .score-container {
        padding: 5% 5%;
    }
}

@media screen and (max-width: 700px) {
    .total-pts {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 500px) {
    .total-pts {
        padding-bottom: 5%;
    }

    .score-container {
        padding: 7%;
        margin-top: 5%;
    }

    .section-header-heading {
        font-size: 3.75em;
    }
    
    .quiz-name, .quiz-score {
        font-size: 1.25em;
    }
}

/* QUIZ PAGES */

#startScreen {
    transition: opacity 1s ease;
}

.game-logo {
    padding: 2% 0 0 2%;
    margin: 0;
    text-align: start;
}

.v2-header {
    text-align: center;
    
    .section-header-heading-container  {
        margin: 2% 0;
    }

    .quiz-header-subheading {
        margin: 0;
    }

    .quiz-header-heading {
        margin: 0 0 1% 0;
    }
}

.quiz-header-subheading {
    font-family: var(--tertiaryfont);
    font-size: 3.2em;
    font-weight: 200;
}

.quiz-header-heading {
    font-family: var(--quizheaderfont);
    font-size: 5em;
    font-weight: 200;
}

.v2-instructions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.v2-instruction-container {
    padding: 5%;
    border-radius: 250px 0 0 50px;
    display: flex;
}

.instructions {
    padding-right: 5%;
}

.iai-instruction-container {
    background: linear-gradient(234.94deg, #737D58 4.79%, #215621 56.06%);
}

.se-instruction-container {
    background: linear-gradient(234.94deg, rgba(220, 40, 30, 0.29) 4.79%, rgba(220, 40, 30, 0.645) 40.01%, #FF726A 102.63%);
}

.quiz-subject-photo {
    width: 350px;
    border-radius: 25px;
    height: auto;
}

.instruction-heading {
    font-size: 2.25em;
    font-weight: lighter;
    font-family: var(--tertiaryfont);
    opacity: 0.8;
    margin: 0 0 5% 0;
    text-align: center;
}

.instruction-list {
    font-size: 1.5em;
    font-weight: 300;
    font-family: var(--tertiaryfont);
    opacity: 0.5;
    text-align: justify;
}

.v2-instruction-img2 {
    display: none;
}

.quiz-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.start-quiz-btn {
    background-color: white;
    border-radius: 25px;
    border: none;
    width: 100%;
    color: black;
    padding: 5% 10%;
    font-weight: bold;
    font-family: var(--tertiaryfont);
    font-size: 1em;
    margin-top: 5%;
    cursor: pointer;
    transition: transform 0.3s ease-out, background-color 0.3s ease-out, box-shadow 0.3s ease-out, color 0.3s ease-out, font-weight 0.3s ease-out;
}

.iai-main {
    .start-quiz-btn {
        &:hover {
            transform: scale(1.1);
            color: var(--green);
            cursor: pointer;
            box-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
            font-weight: bolder;
            text-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
        }
    }
}

.se-main {
    .start-quiz-btn {
        &:hover {
            transform: scale(1.1);
            color: red;
            cursor: pointer;
            box-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
            font-weight: bolder;
            text-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
        }
    }
}


.start-quiz-btn2, .start-quiz-btn3 {
    &:hover {
        color: var(--white);
        cursor: pointer;
        box-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
        font-weight: bolder;
        text-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
    }
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    padding: 2%;
    align-items: center;
}

.quiz-item-logo1 {
    display: none;
}

.home-link {
    display: flex;
    align-items: center;

    .menu-box-icon {
        padding-right: 20%;
    }
}

.timer {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.timer-text {
    font-size: 1.5em;
}

.question-container {
    background: rgba(105, 140, 105, 0.6);
    border-radius: 2em;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 5% 5% 5%;
    padding: 2%;
    justify-content: center;
    min-height: 20em;
}

.question-container2 {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2em;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 0 5% 5% 5%;
    padding: 2% 0;
    justify-content: flex-start;
    min-height: 20em;
}

.result-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2em;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 5% 5% 5%;
    padding: 2% 0;
    justify-content: flex-start;
    min-height: 20em;
}

.subjects-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2em;
    align-items: baseline;
    margin: 0 5% 5% 20%;
    padding: 2% 0;
    justify-content: center;
    min-height: 20em;
}

.questions-images{
    width: 100%;
}

.left-question{
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.submit-btn2 {
    display: none;
}

.question-number {
    margin: 0;
    font-size: 2em;
}

.question-number2 {
    background: linear-gradient(to right, gray, black);
    margin: 0;
    text-align: center;
    font-size: 2em;
}

.question {
    font-size: 1.5em    ;
}

.question2 {
    font-size: 1.5em;
    text-align: center;
}

.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    width: 80%;
}

.choices2 {
    gap: 2%;
    width: 100%;
}

.choice-container {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease-out, color 0.3s ease-out, font-weight 0.3s ease-out;
}

.iai-main {
    .choice-container:hover {
        color: var(--green);
        cursor: pointer;
        box-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
        font-weight: bolder;
        text-shadow: 0 0 15px var(--lightergreen), 0 0 40px var(--lightergreen);
    }
}

.se-main {
    .choice-container:hover {
        color: red;
        cursor: pointer;
        box-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
        font-weight: bolder;
        text-shadow: 0 0 15px var(--complementary), 0 0 40px var(--complementary);
    }
}

.questions-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; 
    gap: 1rem; 
    margin-left: 5%;
    cursor: pointer;
}

.images-container{
    display: flex;
    flex: 0 0 10%; 
    flex-direction: row;
    align-items: center;
    opacity: 1;
    width: 30px;
    transition: opacity 0.3s ease;  
    text-align: center;
    cursor: pointer;
}

.image-container{
    display: flex;
    flex: 0 0 10%; 
    flex-direction: row;
    align-items: center;
    opacity: 1;
    width: 30px;
    transition: opacity 0.3s ease;  
    text-align: center;
    cursor: pointer;
}

.question-item {
    display: flex;
    flex: 0 0 10%; 
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;  
    text-align: center;
    transform: scale(0.95);
}

.question-item2 {
    display: flex;
    flex: 0 0 10%; 
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;  
    text-align: center;
    transform: scale(0.95);
}

.question-item:hover {
    opacity: 1;
}

.question-img {
    width: 20em;
    border-radius: 1em;
}

.question2-img {
    width: 10em;
    height: 12em;
    border-radius: 1em;
}

.subjects-img{
    width: 15em;
    height: 15em;
    border-radius: 1em;
}

.question-controls {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.previous-container, .next-container {
    display: flex;
    padding: 0 5%;
    align-items: center;
}

.game-item {
    background-image: url(images/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: none;
}

.game-item2 {
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: none;
}

.fade-out {
    opacity: 0;
}

.se-main {
    .question-container {
        background: rgba(220, 40, 30, 0.6);
    }
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1350px) {
    .v2-instructions {
        flex-direction: column;
        align-items: center;
    }

    .v2-instruction-img {
        display: none;
    }

    .v2-instruction-img2 {
        display: block;
        margin-bottom: 15%;
    }
    
    .v2-img-container {
        overflow: visible;
    }

    #lakitu2 {
        filter: drop-shadow(0px 15px 15px rgba(0, 97, 26, 1));
    }

    #pikachu {
        filter: drop-shadow(-20px 20px 20px rgba(255, 0, 0, 1));
    }
}

@media screen and (max-width: 1000px) {
    .instruction-list {
        font-size: 1.25em;
    }

    .instructions {
        padding-left: 8%;
    }

    .question-container {
        padding: 5%;
    }
}

@media screen and (max-width: 850px) {
    .v2-instruction-container {
        flex-direction: column;
    }
    
    .instructions {
        padding: 8% 10%;
    }
    
    .start-quiz-btn {
        width: 60%;
    }
}


@media screen and (max-width: 750px) {
    .section-header-heading-container {
        padding: 0 10%;
    }

    .quiz-header-heading {
        font-size: 3.5em;
    }

    .quiz-header-subheading {
        font-size: 2em;
    }
    
    .quiz-subject-photo {
        width: 300px;
    }

    .quiz-nav {
        flex-direction: column;

        div {
            padding: 2%;
        }
    }

    .quiz-item-logo1 {
        display: block;
    }

    .quiz-item-logo2 {
        display: none;
    }

    .question {
        text-align: center;
    }

    .question-container {
        padding: 5%;
    }
    
    .choices {
        width: 100%;
    }

    .choice-container {
        text-align: center;
    }

    .question-img {
        width: 15em;
    }
}

@media screen and (max-width: 500px) {
    .instruction-heading {
        font-size: 1.75em;
    }

    .instruction-list {
        font-size: 1em;
    }

    .v2-instruction-container {
        border-radius: 200px 0 0 50px;
    }

    .game-logo {
        text-align: center;
        padding: 5% 0;
    }
    
    .start-quiz-btn {
        width: 80%;
    }

    .choices {
        grid-template-columns: 1fr;
        padding-bottom: 15%;
    }

    .choice-container {
        text-align: left;
    }

    .quiz-header-subheading {
        font-size: 1.5em;
    }

    .v2-img-container {
        display: flex;
        justify-content: center;
    }
    
    .v2-instruction-img2 {
        width: 75%;
    }
}

@media screen and (max-width: 400px) {
    .quiz-header-heading {
        font-size: 2.5em;
    }

    .v2-instruction-container {
        border-radius: 150px 0 0 50px;
    }
    
    .quiz-subject-photo {
        width: 250px;
    }

    .question-number {
        font-size: 1.5em;
    }

    .question {
        font-size: 1.25em;
    }

    .question-container {
        padding: 10%;
    }
}



#startScreenV2 {
    transition: opacity 1s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    background-color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

.game-logoV2 {
    padding: 1rem 2rem;
    margin-bottom: -40px;
    text-align: left;
    background: transparent;
}

.soliquiz-logoV2 img,
.nav-logo-imgV2 {
    height: 3rem;
    width: auto;
}

.main-content-rowV2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
}

.wd-header {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.section-header-heading-containerV2 {
    margin: 2% 0;
}

.quiz-header-subheadingV2 {
    font-family: var(--tertiaryfont);
    font-size: 3em;
    font-weight: 200;
    color: white;
    margin: 0;
}

.quiz-header-headingV2 {
    font-family: var(--quizheaderfont);
    font-size: 5.5em;
    font-weight: bold;
    color: white;
    margin: 0;
}

.quiz-header-headingV3 {
    font-family: var(--quizheaderfont);
    font-size: 9.5em;
    font-weight: bold;
    color: white;
    margin: 0;
}

.wd-v2-instructions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    height: 100%;
    background: #212020;
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    max-width: 710px;
}

.wd-instruction-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 600px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: visible;
}

.wd-instructions {
    max-width: 700px;
}

.wd-instruction-heading {
    font-size: 2.5em;
    font-weight: lighter;
    font-family: var(--tertiaryfont);
    margin-bottom: 1rem;
    text-align: center;
    opacity: 1;
}

.wd-instruction-list {
    font-size: 1.2em;
    font-weight: 300;
    font-family: var(--tertiaryfont);
    text-align: justify;
    opacity: 0.85;
    line-height: 1.5;
    padding-left: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.wd-ready {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
    font-size: 1.2em;
    font-family: var(--tertiaryfont);
    opacity: 0.9;
}

.ready-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ready-text-container-trivia {
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:left;
    transform: translate(-28%, -23%);
}

.ready-text {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
}

.start-prompt {
    font-size: 1em;
    opacity: 0.9;
}

.v2-instruction-img-wd {
    position: absolute;
    top: -91px;
    bottom: 0;
    right: 7px;
    width: 250px;
    transform: translate(25%, 11%);
    z-index: 2;
}

.v2-instruction-img-ias {
    position: absolute;
    top: -91px;
    bottom: 0;
    right: 7px;
    width: 650px;
    transform: translate(38%, -23%);
    z-index: 2;
}

.v2-instruction-img-trivia {
    position: absolute;
    top: -91px;
    bottom: 0;
    right: 7px;
    width: 650px;
    transform: translate(28%, -23%);
    z-index: 2;
}

.quiz-start-container-wd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.quiz-start-wd {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quiz-start-ias {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quiz-start-trivia {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}


.v2-header-img-wd {
    position: absolute;
    width: 980px;
    top: -290px;
    z-index: 1;
    transform: translate(10%, 0%);
}

.v2-header-img-ias {
    position: absolute;
    width: 930px;
    top: -290px;
    z-index: 1;
    transform: translate(60%, 30%);
}

.v2-header-img-trivia {
    position: absolute;
    width: 930px;
    top: -290px;
    z-index: 1;
    transform: translate(40%, 22%);
}

.v2-header-img2-wd {
    position: absolute;
    width: 150px;
    top: -290px;
    z-index: 1;
    transform: translate(0%, 500%);
}

.v2-header-img2-ias {
    position: absolute;
    width: 150px;
    top: -290px;
    z-index: 1;
    transform: translate(36%, 540%);
}

.v2-header-img2-trivia {
    position: absolute;
    width: 150px;
    top: -290px;
    z-index: 1;
    transform: translate(-86%, 540%);
}

.quiz-start-wd p {
    position: absolute;
    font-size: 1em;
    font-weight: 200;
    font-family: var(--tertiaryfont);
    color: white;
    transform: translate(10%, 2070%);
    white-space: nowrap;
}

.quiz-start-ias p {
    position: absolute;
    font-size: 1em;
    font-weight: 200;
    font-family: var(--tertiaryfont);
    color: white;
    transform: translate(60%, 2320%);
    white-space: nowrap;
}

.quiz-start-trivia p {
    position: absolute;
    font-size: 1em;
    font-weight: 200;
    font-family: var(--tertiaryfont);
    color: white;
    transform: translate(-110%, 2320%);
    white-space: nowrap;
}

.quiz-subject-photo-wd {
    position: absolute;
    width: 250px;
    top: 0px;
    bottom: 0;
    left: 7px;
    border-radius: 10px;
    transform: translate(115%, -5%);
}

.quiz-subject-photo-ias {
    position: absolute;
    width: 180px;
    top: 0px;
    bottom: 0;
    left: 7px;
    border-radius: 10px;
    transform: translate(5%, -5%);
}

.quiz-subject-photo-trivia {
    position: absolute;
    width: 280px;
    top: 0px;
    bottom: 0;
    left: 7px;
    border-radius: 10px;
    transform: translate(-60%, -5%);
}

.start-quiz-btn2 {
    position: absolute;
    width: 200px;
    height: 70px;
    background-color: rgb(63, 63, 63);
    border-radius: 25px;
    border: none;
    color: rgb(255, 254, 254);
    padding: 1rem 2rem;
    font-weight: bold;
    font-family: var(--tertiaryfont);
    font-size: 1em;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-left: 2rem;
    transform: translate(-10%, 400%);
    z-index: 3;
}

.start-quiz-btn3 {
    position: absolute;
    width: 200px;
    height: 70px;
    background-color: rgb(63, 63, 63);
    border-radius: 25px;
    border: none;
    color: rgb(255, 254, 254);
    padding: 1rem 2rem;
    font-weight: bold;
    font-family: var(--tertiaryfont);
    font-size: 1em;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-left: 2rem;
    transform: translate(-180%, 420%);
    z-index: 3;
}

@media (max-width: 1450px) {
      .v2-header-img-ias{
          width: 80%;
          position: relative;
          transform: translate(35%, 60%);
      }
  
      .v2-header-img-trivia{
          width: 110%;
          position: relative;
          transform: translate(15%, 35%);
      }
  
      .v2-header-img2-ias {
          width: 100px;
          position: relative;
          transform: translate(-215%, -295%);
      }
    
      .v2-header-img2-trivia {
          width: 100px;
          position: relative;
          transform: translate(-85%, -175%);
      }
  
      .quiz-subject-photo-ias{
          width: 180px;
          transform: translate(-120%, -175%);
          position: relative;
          margin: 1rem auto;
      }
  
      .quiz-subject-photo-trivia {
          width: 200px;
          transform: translate(-125%, -245%);
          position: relative;
          margin: 1rem auto;
        }
    
      .quiz-start-ias p {
        position: relative;
        transform: translate(-165%, -2525%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }

      .trivia-btn{
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 395%);
      }

      .ias-btn{
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 145%);
      }
  
      .quiz-start-trivia p {
          position: relative;
          transform: translate(-85%, -2700%);
          font-size: 0.9rem;
          text-align: center;
          margin-top: 1rem;
        }

       .quiz-start-ias p {
            position: relative;
            transform: translate(-195%, -3200%);
            font-size: 0.9rem;
            text-align: center;
            margin-top: 1rem;
          }
    
      .soliquiz-logoV2 img,
      .nav-logo-imgV2 {
        height: 2rem;
      }
  
      .question2-img {
          width: 8em;
          height: 10em;
          border-radius: 1em;
      }
  
      .question-container2 {
          background: rgba(0, 0, 0, 0.6);
          border-radius: 2em;
          display: flex;
          align-items: center;
          flex-direction: row;
          margin: 0 5% 5% 5%;
          padding: 2% 0;
          justify-content: flex-start;
      }
  
      .left-question{
          width: 800px;
          margin-top: 30px ;
       }
  
       .questions-images{
          width: 100%;
      }
  
      .question-number2 {
          background: linear-gradient(to right, gray, black);
          margin: 0;
          text-align: center;
          font-size: 2em;
      }
  
      .choices2 {
          gap: 2%;
          width: 100%;
          font-size: 1.2em;
      }

      .v2-instruction-img-ias {
        position: absolute;
        top: -91px;
        bottom: 0;
        right: 7px;
        width: 550px;
        transform: translate(41%, -13%);
        z-index: 2;
    }
  }

  @media (max-width: 1350px) {
    .v2-header-img-ias{
        width: 80%;
        position: relative;
        transform: translate(35%, 35%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(15%, 35%);
    }

    .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-215%, -325%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-85%, -175%);
    }

    .quiz-subject-photo-ias{
        width: 180px;
        transform: translate(-120%, -195%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 200px;
        transform: translate(-125%, -245%);
        position: relative;
        margin: 1rem auto;
      }
  
    .quiz-start-ias p {
      position: relative;
      transform: translate(-165%, -2525%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .trivia-btn{
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 395%);
    }

    .ias-btn{
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 145%);
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-85%, -2700%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }

      .quiz-start-ias p {
          position: relative;
          transform: translate(-195%, -3400%);
          font-size: 0.9rem;
          text-align: center;
          margin-top: 1rem;
        }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }

    .question2-img {
        width: 8em;
        height: 10em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: row;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
    }

    .left-question{
        width: 800px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 2em;
    }

    .choices2 {
        gap: 2%;
        width: 100%;
        font-size: 1.2em;
    }

    .v2-instruction-img-ias {
      position: absolute;
      top: -91px;
      bottom: 0;
      right: 7px;
      width: 550px;
      transform: translate(41%, -13%);
      z-index: 2;
  }
}

  @media (max-width: 1250px) {
    .v2-header-img-ias{
        width: 80%;
        position: relative;
        transform: translate(35%, 55%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(15%, 35%);
    }

    .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-175%, -335%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-85%, -125%);
    }

    .quiz-subject-photo-ias{
        width: 180px;
        transform: translate(-120%, -195%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 200px;
        transform: translate(-85%, -225%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 25%);
      }
    
    .quiz-start-ias p {
      position: relative;
      transform: translate(-165%, -3425%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .wd-btn{
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 495%);
    }

    .trivia-btn{
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 355%);
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-85%, -2500%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }

    .question2-img {
        width: 8em;
        height: 10em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
    }

    .left-question{
        width: 800px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        margin-left: 300px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 2em;
    }

    .choices2 {
        gap: 2%;
        width: 100%;
        font-size: 1.2em;
    }

    .v2-instruction-img-ias {
      position: absolute;
      top: -91px;
      bottom: 0;
      right: 7px;
      width: 550px;
      transform: translate(41%, -13%);
      z-index: 2;
  }
}

@media (max-width: 1100px) {
    .main-content-rowV2 {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
      }
    
      .quiz-header-headingV2 {
        font-size: 2.2em;
        text-align: center;
      }
    
      .quiz-header-headingV3 {
        font-size: 3.2em;
        text-align: center;
      }
    
      .quiz-header-subheadingV2 {
        font-size: 1.3em;
        text-align: center;
      }
    
      .wd-v2-instructions {
        max-width: 100%;
        padding: 1rem;
        height: auto;
        flex-direction: column;
      }
    
      .wd-instruction-heading {
        font-size: 1.8em;
      }
    
      .wd-instruction-list {
        font-size: 0.95em;
        line-height: 1.4;
        padding-left: 1rem;
      }
    
      .ready-text {
        font-size: 2rem;
      }
    
      .start-prompt {
        font-size: 0.9rem;
      }
    
      .v2-instruction-img-wd,
      .v2-instruction-img-ias,
      .v2-instruction-img-trivia {
        position: relative;
        top: 0;
        right: 0;
        width: 160px;
        transform: none;
        margin: 1rem auto;
      }
  
      .v2-header-img-wd{
          width: 100%;
          position: relative;
          transform: translate(-55%, 25%);
      }
  
      .v2-header-img-ias{
          width: 80%;
          position: relative;
          transform: translate(15%, 55%);
      }
  
      .v2-header-img-trivia{
          width: 110%;
          position: relative;
          transform: translate(15%, 15%);
      }
  
      .v2-header-img2-wd, .v2-header-img2-ias {
          width: 100px;
          position: relative;
          transform: translate(-175%, -325%);
      }
    
      .v2-header-img2-trivia {
          width: 100px;
          position: relative;
          transform: translate(-215%, -435%);
      }
  
      .quiz-subject-photo-wd{
        width: 140px;
        transform: translate(-10%, -385%);
        position: relative;
        margin: 1rem auto;
      }
  
      .quiz-subject-photo-ias{
          width: 120px;
          transform: translate(-290%, -245%);
          position: relative;
          margin: 1rem auto;
      }
  
      .quiz-subject-photo-trivia {
          width: 200px;
          transform: translate(-245%, -305%);
          position: relative;
          margin: 1rem auto;
        }
    
      .start-quiz-btn2,
      .start-quiz-btn3 {
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 25%);
      }
    
      .quiz-start-wd p,
      .quiz-start-ias p {
        position: relative;
        transform: translate(-165%, -3325%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
      .quiz-start-trivia p {
          position: relative;
          transform: translate(-195%, -3825%);
          font-size: 0.9rem;
          text-align: center;
          margin-top: 1rem;
        }
    
      .soliquiz-logoV2 img,
      .nav-logo-imgV2 {
        height: 2rem;
      }
    
      .wd-instruction-container {
        padding: 1rem;
        height: auto;
      }
    
      .wd-ready {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        font-size: 1em;
        margin-top: 1.5rem;
      }
  
      .question2-img {
          width: 4em;
          height: 6em;
          border-radius: 1em;
      }
  
      .question-container2 {
          background: rgba(0, 0, 0, 0.6);
          border-radius: 2em;
          display: flex;
          align-items: center;
          flex-direction: column;
          margin: 0 5% 5% 5%;
          padding: 2% 0;
          justify-content: flex-start;
          min-height: 20em;
      }
  
      .left-question{
          width: 700px;
          margin-top: 30px ;
       }
  
       .questions-images{
          width: 100%;
          align-items: center;
          margin-left: 500px;
      }
  
      .question-number2 {
          background: linear-gradient(to right, gray, black);
          margin: 0;
          text-align: center;
          font-size: 2em;
      }
  
      .choices2 {
          gap: 2%;
          width: 100%;
          font-size: 1.2em;
      }
  }

  @media (max-width: 950px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-55%, 45%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(20%, 25%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(15%, 25%);
    }

    .v2-header-img2-wd {
        width: 100px;
        position: relative;
        transform: translate(-105%, -195%);
    }

    .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-125%, -395%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-135%, -235%);
    }

    .quiz-subject-photo-wd{
      width: 140px;
      transform: translate(15%, -315%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 120px;
        transform: translate(-260%, -265%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 140px;
        transform: translate(-275%, -345%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(10%, 25%);
    }
  
    .quiz-start-wd p {
      position: relative;
      transform: translate(-95%, -2725%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-ias p {
        position: relative;
        transform: translate(-115%, -3625%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-125%, -2925%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 4em;
        height: 6em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 700px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 350px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 2em;
    }

    .choices2 {
        gap: 2%;
        width: 100%;
        font-size: 1.2em;
    }
    
  }  
  
  @media (max-width: 850px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-55%, 45%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(15%, 55%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(15%, 25%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-105%, -195%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-135%, -235%);
    }

    .quiz-subject-photo-wd{
      width: 140px;
      transform: translate(35%, -295%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 120px;
        transform: translate(-250%, -255%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 140px;
        transform: translate(-245%, -345%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 25%);
    }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-95%, -2725%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-125%, -2925%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 4em;
        height: 6em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 700px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 350px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 2em;
    }

    .choices2 {
        gap: 2%;
        width: 100%;
        font-size: 1.2em;
    }
    
  }  

  @media (max-width: 750px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-55%, 45%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(15%, 65%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(15%, 25%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-105%, -195%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-135%, -235%);
    }

    .quiz-subject-photo-wd{
      width: 140px;
      transform: translate(35%, -295%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 120px;
        transform: translate(-210%, -235%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 140px;
        transform: translate(-245%, -345%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 25%);
    }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-95%, -2725%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-125%, -2925%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 4em;
        height: 6em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 600px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 300px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 1em;
    }
    
  }  

  @media (max-width: 550px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-55%, 62%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(35%, 60%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(25%, 55%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-35%, 5%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-95%, 25%);
    }

    .quiz-subject-photo-wd{
      width: 120px;
      transform: translate(55%, -295%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 60px;
        transform: translate(-90%, -425%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 90px;
        transform: translate(-110%, -375%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 145%);
    }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-35%, -1925%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-95%, -1825%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 3em;
        height: 5em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 300px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 100px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 1em;
    }
    
  } 

  @media (max-width: 500px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-45%, 62%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(40%, 90%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(35%, 85%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-35%, 5%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-55%, 25%);
    }

    .quiz-subject-photo-wd{
      width: 120px;
      transform: translate(55%, -295%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 60px;
        transform: translate(-50%, -365%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 90px;
        transform: translate(-75%, -315%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 145%);
    }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-35%, -1925%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-55%, -1825%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 3em;
        height: 5em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 300px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 100px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 1em;
    }
    
  } 
  
  
  @media (max-width: 400px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-35%, 75%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(45%, 95%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(35%, 85%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-35%, 5%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-55%, 25%);
    }

    .quiz-subject-photo-wd{
      width: 120px;
      transform: translate(55%, -275%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 60px;
        transform: translate(-50%, -355%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 90px;
        transform: translate(-75%, -315%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 145%);
    }

    .trivia-btn{
        position: relative;
        width: 150px;
        height: 55px;
        font-size: 0.9rem;
        margin: 1.5rem auto;
        transform: translate(1%, 125%);
      }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-35%, -1925%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-55%, -1825%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 3em;
        height: 5em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 300px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 100px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 1em;
    }
    
  } 
  
  @media (max-width: 350px) {
    .main-content-rowV2 {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }
  
    .quiz-header-headingV2 {
      font-size: 2.2em;
      text-align: center;
    }
  
    .quiz-header-headingV3 {
      font-size: 3.2em;
      text-align: center;
    }
  
    .quiz-header-subheadingV2 {
      font-size: 1.3em;
      text-align: center;
    }
  
    .wd-v2-instructions {
      max-width: 100%;
      padding: 1rem;
      height: auto;
      flex-direction: column;
    }
  
    .wd-instruction-heading {
      font-size: 1.8em;
    }
  
    .wd-instruction-list {
      font-size: 0.95em;
      line-height: 1.4;
      padding-left: 1rem;
    }
  
    .ready-text {
      font-size: 2rem;
    }
  
    .start-prompt {
      font-size: 0.9rem;
    }
  
    .v2-instruction-img-wd,
    .v2-instruction-img-ias,
    .v2-instruction-img-trivia {
      position: relative;
      top: 0;
      right: 0;
      width: 160px;
      transform: none;
      margin: 1rem auto;
    }

    .v2-header-img-wd{
        width: 100%;
        position: relative;
        transform: translate(-35%, 75%);
    }

    .v2-header-img-ias{
        width: 100%;
        position: relative;
        transform: translate(45%, 95%);
    }

    .v2-header-img-trivia{
        width: 110%;
        position: relative;
        transform: translate(35%, 85%);
    }

    .v2-header-img2-wd, .v2-header-img2-ias {
        width: 100px;
        position: relative;
        transform: translate(-35%, 5%);
    }
  
    .v2-header-img2-trivia {
        width: 100px;
        position: relative;
        transform: translate(-55%, 65%);
    }

    .quiz-subject-photo-wd{
      width: 120px;
      transform: translate(55%, -275%);
      position: relative;
      margin: 1rem auto;
    }

    .quiz-subject-photo-ias{
        width: 60px;
        transform: translate(-20%, -325%);
        position: relative;
        margin: 1rem auto;
    }

    .quiz-subject-photo-trivia {
        width: 90px;
        transform: translate(-55%, -285%);
        position: relative;
        margin: 1rem auto;
      }
  
    .start-quiz-btn2,
    .start-quiz-btn3 {
      position: relative;
      width: 150px;
      height: 55px;
      font-size: 0.9rem;
      margin: 1.5rem auto;
      transform: translate(1%, 145%);
    }
  
    .quiz-start-wd p,
    .quiz-start-ias p {
      position: relative;
      transform: translate(-35%, -1925%);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
    }

    .quiz-start-trivia p {
        position: relative;
        transform: translate(-55%, -1625%);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1rem;
      }
  
    .soliquiz-logoV2 img,
    .nav-logo-imgV2 {
      height: 2rem;
    }
  
    .wd-instruction-container {
      padding: 1rem;
      height: auto;
    }
  
    .wd-ready {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 1em;
      margin-top: 1.5rem;
    }

    .question2-img {
        width: 3em;
        height: 5em;
        border-radius: 1em;
    }

    .question-container2 {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0 5% 5% 5%;
        padding: 2% 0;
        justify-content: flex-start;
        min-height: 20em;
    }

    .left-question{
        width: 300px;
        margin-top: 30px ;
     }

     .questions-images{
        width: 100%;
        align-items: center;
        margin-left: 100px;
    }

    .question-number2 {
        background: linear-gradient(to right, gray, black);
        margin: 0;
        text-align: center;
        font-size: 1em;
    }
    
  } 

/* Base styling for choice containers */
.choice-container {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 35px;
    border-left: 4px solid transparent;
}

/* Normal hover state */
.choice-container:hover {
    background-color: #f0f0f04b;
    transform: translateX(5px);
}

/* Active (clicked) state */
.choice-container.active {
    background-color: #c42b05b0;
    /* border-left: 4px solid #d6dce0; */
}

/* Active hover state (when hovering over a selected choice) */
.choice-container.active:hover {
    background-color: #c42b05b0;
}

/* Clicking state (when mouse button is held down) */
.choice-container.clicking {
    background-color: #ffb399;
    transform: scale(0.98);
}

/* Selected state */
.choice-container.selected {
    background-color: #c42b05b0;
}

/* Answered question indication in navigation */
.answered {
    opacity: 0.7;
}

/* Results section styling */
.results-heading {
    font-size: 3rem;
    padding: 0;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.results-score {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.score-progress {
    width: 50%;
    height: 50px;
    background-color: #a0a0a0;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 5% 5%;
    border: 10px #a0a0a0 solid;
}

.score-progress-bar {
    height: 100%;
    background: linear-gradient(180deg, #E7809B 0%, #F3CAD5 100%);
    width: 0%;
    transition: width 0.5s ease-in-out;
    border-radius: 50px;
}

.restart-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: #c42b05b0;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.anskey-btn {
    display: block;
    width: 200px;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #c42b05b0;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.restart-btn:hover {
    background-color: var(--green);
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1000px) {
    .score-progress {
        width: 80%;
    }    

    .results-score {
        font-size: 1rem;
        margin: 1rem 0;
        text-align: center;
    }
}

.quizzes-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
}
  
.quiz-container {
    flex: 0 0 auto;
    width: calc(90% / 3); 
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
  
.quiz-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.next-container{
    margin-right: 10%;
}
  
.previous-container,
.next-container {
    display: flex;
    align-items: center;

    a {
        cursor: pointer;
    }
}
  
.previous-container p,
.next-container p {
    margin: 0 20px;
}
  
.previous.round{
    display: inline-block;
    width: 10px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.next.round {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}
  
.previous.round:hover,
.next.round:hover {
    background-color: #ddd;
}
  

@media (max-width: 1024px) {
    .quiz-container {
      width: 35%; 
    }
}
  
@media (max-width: 768px) {
    .quiz-container {
      width: 50%; 
    }
}

.clear-btn-container {
    text-align: right;
    margin-top: 10px;
}

.clear-btn {
    padding: 8px 16px;
    background-color: lightgrey;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.clear-btn:hover {
    background-color: rgb(255, 255, 255);
}

/* CONFIRMATION POPUP */

.confirm {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    align-items: center;
    justify-content: center;

    .confirmation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: black;
        width: 80%;;
        border-radius: 50px;

        .left-confirmation {
            padding-left: 5%;

            .confirmation-heading {
                font-family: var(--tertiaryfont);
                margin: 0;
                font-size: 3em;
            }

            .confirmation-subheading {
                font-family: var(--tertiaryfont);
                font-size: 2em;
                margin: 0;
            }

            .confirmation-reminder {
                font-style: italic;
            }

            .return-btn, .confirm-btn {
                font-size: 1em;
                border: none;
                border-radius: 25px;
                width: 40%;
                cursor: pointer;
                font-weight: bold;
            }

            .confirm-btn-container {
                button {
                    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
                }

                button:hover {
                    transform: scale(1.1);
                    box-shadow: 0 0 15px var(--secondary), 0 0 40px var(--secondary);
                }

                .return-btn {
                    padding: 3%;
                    margin-right: 5%;
                    background-color: white;
                    color: black;
                }
    
                .confirm-btn {
                    padding: 3%;
                    background-color: var(--green);
                }
            }

        }

        .right-confirmation {
            display: flex;

            img {
                border-radius: 0 0 50px 0;
            }
        }
    }
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1050px) {
    .confirm {
        & .confirmation {
            & .left-confirmation {
                .confirmation-heading {
                    font-size: 2.5em;
                }

                .confirmation-subheading {
                    font-size: 1.5em;
                }

                .confirm-btn-container {
                    display: flex;
                    flex-direction: column;
            
                    .return-btn, .confirm-btn {
                        width: 80%;
                    }

                    .return-btn {
                        margin-bottom: 5%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 800px) {
    .confirm {
        .confirmation {
            .left-confirmation {
                padding: 10%;
                display: flex;
                flex-direction: column;
                
                .confirmation-heading {
                    font-size: 2.5em;
                }

                .confirmation-subheading {
                    font-size: 1.5em;
                }

                .confirm-btn-container {
                    display: flex;
                    flex-direction: column;
            
                    .return-btn, .confirm-btn {
                        width: 100%;
                        margin-right: 0;
                    }

                    .return-btn {
                        margin-bottom: 5%;
                    }
                }
            }

            .right-confirmation {
                display: none;
            }
        }
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 1.2s ease-out forwards;
  }

  .fade-in-delay-1 {
    animation-delay: 0.3s;
  }
  
  @keyframes fadeInAnimation {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .zoom-in {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomInAnimation 1.2s ease-out forwards;
  }

  .zoom-in-1 {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomInAnimation 0.6s ease-out forwards;
  }

  @keyframes zoomInAnimation {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }



 