/*-----loader-------------*/
      #spiner-loading {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 999999;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.9);

        /* background: #202127; */
      }

      .spiner-container {
        position: relative;
      }

      .loader-spnr {
        width: 3em;
        height: 3em;
        border: 0.3em solid #272e97;
        border-left-color: #ddc3c3;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /*-----loader-------------*/

.quize-first-screen{
    height: 90svh;
    width: 100%;
    background-color: #e8f1fb;
     font-family: 'KhandSemiBold';
         overflow: hidden;
}


.top-mr{
  /* padding-top: 0; */
}

 .ht-100{
        height: 100% !important;   
    }
.banner-left{
    /* padding-left: 50px; */
}

.banner-left h1{   
    color: #0e33a8;
    font-size: 4rem;
}

.banner-left h3{
    font-weight: normal;
    color: #0e33a8;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.banner-left p{
    color: #515151;
      font-family: 'KhandRegular';
      font-size: 1.5rem;
}

.start-quiz{
background-color: #0E33A8;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.5s;
    width: fit-content;
    font-family: 'KhandRegular';
}
.slide-img{
     /* transition: 10s;  */
}

/* .slide-img img {
        transition: all 0.3s ease;
      } */


/* Optional: Custom smooth zoom animation */



.start-quiz:hover{
    background: #101010;
}

.slider-ht{
    height: 90svh;
}
.quiz-bgblue{
    background-color: #E8F1FB;
}

.quiz-bgorange{
    background-color: #FFE6CF;
}

.quiz-bggreen{
    background-color: #EBF6E9;
}
.quiz-bgpink{
    background-color: #FFE1D9;
}

.quiz-right{
    padding-left: 30px;
}

.tick-no-tick{}

.tick-no-tick ul{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 0;
}

.tick-no-tick ul li{
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.correct-ans{
    background-image: url('../images/correct-answer.svg');
    background-size:contain;
    background-repeat: no-repeat;
}

.wrong-ans{
    background-image: url('../images/wrong-answer.svg');
    background-size:contain;
    background-repeat: no-repeat;
}

.quiz-right h2{
    font-family: 'KhandSemiBold';
    font-size: 2rem;
    text-align: left;
    margin: 25px 0;
}
.answer-btn-div{
    margin-bottom: 0;
}
.select-btn {
    margin: 20px 0;
    display: grid;
   
    column-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}
    .select-btn input[type="radio"] {
        display:none;
    }

    .select-btn label {
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        border: 2px solid #101010;
        cursor: pointer;
        color: #101010;;     
        margin-right: 10px;
        font-size: 18px;
        font-family: 'KhandSemiBold';
        width: 100%;
    }
    
    .select-btn .blank-label {
        display: none;
    }

    
    /* .select-btn input[type="radio"]:checked + label {
        background: #14A44D;
        color: #fff;
        border: none;
    } */

    .answer-text{
        text-align: left;
    }

    .answer-text h3{
          color: #101010;
          font-size: 1.5rem;
          font-family: 'KhandSemiBold';
    }
    .answer-text p{
        color: #101010;
        margin-bottom: 0;
    }


    .quize-next-btn{
        float: left;
        margin-top: 30px;
    }

    label.wrong{
        background-color: #FF2C2C;
        color: #ffffff;
        border: 0;
    }

     label.correct{
        background: #14A44D;
         color: #ffffff;
        border: 0;
    }

    .ht-2-100{
        height: 90svh !important;   
    }

    /*---amination*/

    .swiper-pagination.quiz-pagination {
        top: 6rem !important;
        height: 20px;
        width: fit-content !important;
        left: 52.2% !important;
    }
    .swiper-pagination.quiz-pagination .swiper-pagination-bullet{
        width: 25px;
        height: 25px;
        background-color: #ffffff;
        opacity:1;
        pointer-events: none;
    }
    .swiper-pagination.quiz-pagination .swiper-pagination-bulletswiper-pagination-bullet.swiper-pagination-bullet-active{
        background-color: #ffffff;
    }
    /* Smooth zoom in */

/*     
@keyframes smoothZoomIn {
  0% {
    transform: scale(1.2);
    opacity: 0;
    transition: .5s;
  }
  100% {
    transform: scale(1);
    opacity: 1;
     transition: .5s;
  }
  
}
 
/* Smooth zoom out */
@keyframes smoothZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
     transition: .5s;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
     transition: .5s;
  }
}

@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes zoomOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0; }
}
.zoom-in-transition {
  animation: zoomIn 0.6s ease-out forwards;
}
.zoom-out-transition {
  animation: zoomOut 0.6s ease-out forwards;
} */


 
/* Common styles */
.smooth-zoom-in {
  animation: smoothZoomIn 0.6s ease-out forwards;
  z-index: 2;
   transition: .5s;
}
 
.smooth-zoom-out {
  animation: smoothZoomOut 0.6s ease-out forwards;
  z-index: 1;
   transition: .5s; 
}
 
/* Ensure slides stack for overlapping effect */ 
.swiper-slide .container-fluid {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
    /*---amination*/

/*--popup-*/

#resultpop{
    backdrop-filter: blur(13px);
}
   .quiz-pop .modal-content{
        border-radius: 20px;        
    }

    .r-pop-body{
    padding: 15px;
    }
    
    .back-to-home{
        color: #0E33A8;
        font-weight: 600;
    }

    .back-to-home a{
        color: #0E33A8;
        font-size: 20px;
    }

    .back-to-home a img{
        width: 10px;
    }
.score-box{
    background-color: #F9F9F9;
    border-radius: 10px;
    margin: 15px 0;
    padding: 15px 0;
}

.score-Achived{
     background-color: #E5F1F9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}


.score-Achived p{
    font-size: 3.5rem;
    font-family: 'KhandSemiBold';
     color: #0E33A8;
     line-height: 0;
     padding: 0;
     margin: 0;
}
.retake-quiz{
    margin-left: 20px;
}

.title-popup{
   font-family: 'KhandSemiBold';
    font-size: 2rem;
}

.title-popup-2 {
    font-family: 'KhandSemiBold';
    font-size: 20px;
   text-align: center;
    margin-bottom: 0;
}
.retake-quiz a{
    font-family: 'KhandSemiBold';
     color: #0E33A8;
     font-size: 20px;
     position: relative;
}


.retake-quiz a:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 3px;
    margin: 0 auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #0e33a8;
    transition: 0.5s;
}

.retake-quiz a:hover::after{
    width: 100%;
}

.pop-sec-2{
}

.pop-up-icon{
    display: flex;
    list-style: none;
   justify-content: space-evenly;
    width: 80%;
    margin: 0 auto;
    border-bottom: 2px solid #E7E7E7;
    padding-left: 0;
}

.pop-up-icon li{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pop-up-icon li a h4{
   color: #101010;
   font-family: 'KhandSemiBold';
   margin: 10px 0;
   font-size: 18px;
   text-align: center;
}

.blog-bottom-btn{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.pop-up-bottom{
    margin: 20px 0 0 0;
}

.pop-up-btn {
    background-color: #0E33A8;
    color: #ffffff;
    padding: 5px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.5s;
    width: fit-content;
    font-family: 'KhandRegular';
}

.pop-up-btn:hover{
    background: #101010;
}
.pop-up-btn.btn-pop-2{
    background: #ffffff;
    color: #0E33A8;
    border: 2px solid #0E33A8;
    border-radius: 10px;
}

.pop-up-btn.btn-pop-2:hover{
  background: #101010;
    color: #ffffff;
    border: 2px solid #101010;
}

.share-wrapper {
        position: relative;
        display: inline-block;
      }

      .share-button {
        background-color: #007bff;
        color: white;
        padding: 10px 18px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }

.share-icons {
  position: absolute;
    top: -45px;
    left: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    /* transform: translateY(10px); */
    transition: all 0.3s ease;
    width: 200px;
    align-items: center;
    /* height: 50px; */
    padding: 10px 0 3px 0;
    background-color: #ffffff;
    border: 2px solid #0E33A8;
    border-radius: 10px;
}

      .share-icons .icon img {
        width: 20px !important;
        height: 20px;
        transition: transform 0.2s ease; 
      }

      .share-wrapper:hover .share-icons {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      

.share-icons a.icon .fa{
       color: #212529;
       font-size: 22px;
      }

      .copied{
        position: relative;
      }
    .copy-link{
        background-color: #101010;
        color: #fff;
        text-align: center;
        padding: 5px 10px;
        position: absolute;
        top: -50px;
        border-radius: 5px;
        right: -10px;
    }

@media (min-width:1200px) and  (min-resolution: 125dpi) {
.swiper-pagination.quiz-pagination {
    top: 35px !important;
}

.banner-left h1 {
    font-size: 3rem;
}
 
.banner-left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    
}
.quiz-right h2 {
    
    font-size: 1.5rem;
    
}
}

@media (min-width:992px) {
.quiz-pop{
    max-width: 600px;
}
}

@media (max-width:992px) {

    .top-mr {
    padding-top: 30px;
}
.ht-2-100 {
        height: 58svh !important;
    }

.banner-left{   
   text-align: center;
}

    .banner-left h1{   
    font-size: 3rem;
}

   .banner-left h3{   
    font-size: 2rem;
    margin-bottom: 2rem;
}

.banner-left p {
    font-size: 1rem;
}

.quizSwiper {
    overflow-y: visible; 
}

.quizSwiper .swiper-slide{
    height: auto;
}
.slide-pd{
    padding: 50px 0;
}
.slider-ht {
    height: auto;
}

.start-quiz {
    margin: 0 auto;
    margin-bottom: 30px;
}

.qz-banner-img img{
    margin: 0 auto;
}

.quiz-right{
    padding-left: 0;
}

.quiz-right h2 {
    font-size: 1.5rem;
    
}

.slide-img{
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto;
}

.tick-no-tick ul {
   justify-content: center;
   margin-top: 20px;
   margin-bottom: 0;
}

.pop-up-btn {
    padding: 5px 15px;
}

.swiper-pagination.quiz-pagination {
    top: 30px !important;
    left: 50% !important;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    transform: translate(-50%);
}

.ht-100 {
    height: 100svh !important;
}
}

@media (max-width:767px) {
    .pop-up-icon {
        width: 100%;
    }

.slide-img{
        width: 100%;
        text-align: center;
    }
.slide-img img{
        width: 70%;
    }

    .pop-sec-2 img{
        width: 70%;
    }

    .pop-sec-2 img:first-child{
        width: 60%;
    }

    .pop-up-bottom {
    margin: 10px 0 0 0;
}

.pop-up-btn.btn-pop-2 {
    width: 164px;
}
.copy-link{
    display: none !important;
}

.share-icons {
    left: -21px;
}

}

@media (max-width:420px) {

    .select-btn {
        column-gap: 0.5rem;
    }
    
    .tick-no-tick ul li {
    width: 20px;
    height: 20px;
    }

    .banner-left h1{   
    font-size: 2rem;
}

   .banner-left h3{   
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.select-btn label {
    padding: 10px 2px; 
    font-size: 13px;
}

.r-pop-body {
    padding: 5px;
}

.title-popup {
    font-size: 1.2rem;
    padding: 0 10px;
}

.retake-quiz {
    margin-left:0;
    text-align: center;
}

.score-Achived {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.score-Achived p {
    font-size: 2.5rem;
} 
}
@media (max-width:375px) {
    .select-btn label {
        font-size: 14px;
    }

}
@media (max-width:360px) {
    .select-btn label {
        font-size: 13px;
    }

}