
        body {
            padding: 0;
            margin: 0;
            font-family: sans-serif;
        }

        header {
            box-shadow: 0px 4px 12px 0px #0000000f;
            padding: 10px;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            margin: auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .logo a {
            font-size: 30px;
            text-decoration: none;
            color: #000;
            font-weight: 700;
        }

        .quiz_wrp {
            text-align: center;
            max-width: 800px;
            width: 100%;
            margin: 20px auto 50px;
        }

        .quiz_wrp h2 {
            font-size: 64px;
            font-weight: 700;
            color: #0B784E;
            margin: 0 0 20px;
        }

        .quiz_wrp img {
            max-width: 500px;
            width: 100%;
        }

        .quiz_wrp h3 {
            font-size: 32px;
            font-weight: 600;
            -webkit-text-stroke-color: #000;
            stroke: #000;
            color: #072638;
        }

        .quiz_wrp span {
            background-color: #D6ECE4;
            padding: 6px 12px 6px 12px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 400;
            color: #072638;
            display: inline-block;
        }

        .quiz_sectn {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .quiz_box {
            position: relative;
            cursor: pointer;
        }

        .quiz_box img {
            max-width: 161px;
            width: 100%;
        }

        .quiz_box p {
            position: absolute;
            top: 16px;
            left: 8px;
            color: #0b784e;
            font-size: 15px;
            font-weight: 600;
        }

        footer {
            background: #FCF7F5;
            padding: 50px 0px;
        }

        .ftr_sec {
            padding-top: 50px;
            border-top: 1px solid #dadada;
        }

        .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        ul.ftr_link {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 10px;
            flex-wrap: wrap;
        }

        ul.ftr_link a {
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            color: #54595f;
        }

        .copy_ritgh {
            color: #7a7a7a;
            font-size: 14px;
        }

        .questn_img_sec h3 {
            text-align: left;
            color: #0b784e;
            font-weight: 500;
            margin: 0;
            margin-left: 1.5rem;
            font-size: 24px;
        }

        .box_quiz_change {
            max-width: 400px;
            width: 100%;
            margin: 50px auto 0;
            padding: 0 20px;
            position: relative;
            box-sizing: border-box;
        }

        .ansr_box_sec h3 {
            font-size: 18px;
        }

        .answr_img {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }

        .answr_img img {
            cursor: pointer;
        }

        .back-to-bottom img {
            width: 14px;
            cursor: pointer;
        }

        .back-to-bottom {
            text-align: left;
            position: absolute;
            left: -5px;
            top: -10px;
            display: none;
        }

        .back-to-bottom.active{
             display: block;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }
    


    .loading_sec{
        padding: 20px 0px;
    }

     .progress-container {
        width: 100%;
        height: 5px;
        background-color: #eee;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 5px;
        display: none;
    }
    .progress-container.active{
        display: block;
    }

    .progress-bar {
      width: 20%;
      height: 100%;
      background-color: #efccc1;
      transition: width 0.2s ease;
    }


    @media(max-width:768px){
        .quiz_wrp h2{
            font-size: 45px;
        }
         .row{
             flex-direction: column;
         }  
         
         
         .quiz_wrp img{

         }
    }


    
    @media(max-width:576px){
        .quiz_wrp img{
            max-width: 350px;
        }
    }