@charset "UTF-8";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat", sans-serif;
  scroll-behavior: smooth;
}

html {
  background-color: #000000;
  scroll-behavior: smooth;
}


.bg-area-solid {
  background-image: url(assets/bg-solid.webp);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.home,
.home .navbar,
.home .navbar a,
.home .sidebar,
.home .sidebar a,
.home .jigisha,
.about .container,
.about .container .heading,
.about .content .text-section,
.contactus,
.contactus .contact,
.contactus .socials,
.contactus .contact .numbers,
.contactus .socials .socwrap,
.contactus .socials .socwrap a,
.contactus .socials .socwrap i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home {
  padding-top: 12vh;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  background-color: transparent;

  background-size: auto;

  background-position: center center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.home .whitefade {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 50%;
  aspect-ratio: 2/1;
  border-radius: 50%;
  background-image: radial-gradient(ellipse, rgba(255, 255, 255, 0.29), transparent 60%);
}

.home::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  mix-blend-mode: hue;
  opacity: 0.4;
}

.home .ham {
  z-index: 13;
  position: fixed;
  top: 0.1rem;
  right: 0.1rem;
  height: max-content;
  display: none;

  /* Additions */

  padding: 2.5rem;
  /* optional: for inner spacing */
  background-color: rgba(31, 22, 22, 0.242);
  /* translucent bg */
  backdrop-filter: blur(8px);
  /* blur effect */
  -webkit-backdrop-filter: blur(8px);
  /* Safari support */
  border-radius: 30%;
  /* optional: to soften the corners */
}

.home .ham #nav-icon3 {
  width: 45px;
  height: 35px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.home .ham #nav-icon3 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.home .ham #nav-icon3 span:nth-child(1) {
  top: 0px;
}

.home .ham #nav-icon3 span:nth-child(2),
.home .ham #nav-icon3 span:nth-child(3) {
  top: 18px;
}

.home .ham #nav-icon3 span:nth-child(4) {
  top: 36px;
}

.home .ham #nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.home .ham #nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

.home .ham #nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.home .ham #nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.home .navbar {
  top: 20px;
  position: fixed;
  z-index: 99;
  width: 80%;
  height: 12vh;
  justify-content: space-between;
  background: linear-gradient(181.94deg, rgba(90, 49, 116, 0.297) 1.64%, rgba(133, 133, 133, 0.286) 57.9%, rgba(169, 169, 169, 0.184) 98.36%);
  box-shadow: 8px 0px 70px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 5%;
  border-radius: 4vh;
}

.home .navbar a .item {
  color: white;
  font-weight: 600;
  font-size: 22px;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

.home .navbar a .item:hover {
  color: rgb(255, 179, 26);
}

.home .navbar a {
  height: 100%;
}

.home .navbar a img {
  height: 100%;
}

.home .sidebar {
  font-family: "Inter", sans-serif;
  position: fixed;
  max-width: 400px;
  width: 80%;
  flex-direction: column;
  background: linear-gradient(181.94deg, rgba(80, 18, 104, 0.799) 1.64%, rgba(44, 6, 61, 0.814) 57.9%, rgba(30, 0, 41, 0.847) 98.36%);
  box-shadow: 8px 0px 70px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  height: 100vh;
  z-index: 100;
  top: 0;
  left: 0;
  border-radius: 0 20px 20px 0;
  display: none;
  color: white;
  font-size: 24px;
  gap: 20px;
  font-weight: 600;
  transform: translateX(-100%);
  transition: 0.3s ease-in;
}

.home .sidebar a img {
  height: 120px;
  width: 120px;
  position: absolute;
  margin-bottom: 20rem;
  z-index: 130;

}

.home .sidebar .item.sp {
  color: rgb(255, 179, 26);
}

.home .sidebar.active {
  transform: translateX(0);
}

.home .jigisha {
  z-index: 13;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 5rem;
}

.home .jigisha h2 {
  color: white;
  text-align: center;
  font-size: 35px;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s;
}

.home .jigisha img {
  width: 90%;
  max-width: 400px;
}





@media (max-width:1150px) {

  .home {
    min-height: 70vh;
  }

  .home .jigisha {
    margin-top: 2rem;

  }

  .home .qsn {
    display: none;
  }



}

@media (max-width:820px) {

  .btns-innerdiv {

    flex-direction: column;
    row-gap: 2rem;

  }

}



@media (max-width:720px) {

  .home .jigisha {
    margin-top: 10rem;

  }

  .home {
    min-height: 60vh;
  }

  

}



@media (max-width: 380px) {}

@media (max-width: 380px) or (max-height:750px) {

  .home .sidebar a img {
    top: 5%;
    margin-bottom: auto;
  }

}




@media (min-width: 736.5px) and (max-width: 790px) {
  .heading {
    transform: scale(0.5);
  }

  .heading h2 {
    font-size: 60px;
  }


}

@media (min-width: 600px) and (max-width: 736.5px) {
  .heading {
    display: flex;
    justify-content: center;
  }

  .heading span {
    font-size: 4rem;
  }

  .heading h2 {
    font-size: 120px;
    letter-spacing: 10px;
  }


}

@media (max-width: 600px) {
  .heading {
    display: flex;
    justify-content: center;
  }

  .heading span {
    font-size: 53px;
  }

  .heading h2 {
    font-size: 83px;
    letter-spacing: 10px;
  }


}

.contactus {
  background-image: url("./assets/bg-solid.webp");
  background-size: 120%;
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
  min-height: max-content;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  justify-content: center;
  gap: 10rem;
  align-items: center;
  padding: 2rem;
  padding-bottom: 12rem;
}

.contactus .fade {
  height: 80%;
  width: 100%;
  background: linear-gradient(to bottom, #640b5f, #630a5d, rgba(61, 13, 72, 0));
  z-index: 12;
  position: absolute;
  top: 0;
}

.contactus .chess {
  position: absolute;
  
  bottom: 2%;
  aspect-ratio: 4/1;
  
  object-fit: cover;
  object-position: 0% 0%;
  align-self:center;
  max-width: 500px;
  z-index: 13;
  width: 100%;
  opacity: 0.7;
  
}
@media (max-width:600px) {
  .contactus .chess {
    position: relative;
  }
}


.contactus::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.contactus .contact,
.contactus .socials {
  flex-direction: column;
  color: white;
  z-index: 13;
  gap: 20px;
  align-items: start;
}

.contactus .contact h2,
.contactus .socials h2 {
  color: #ffea31;
  border-bottom: 3px solid #ffea31;
  text-align: left;
  font-size: 1.5em;
}

.contactus .contact .numbers {
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

.contactus .contact .numbers .num {
  font-size: 19px;
  letter-spacing: 2px;
}

.contactus .contact .numbers .num span {
  font-weight: 500;
}

.contactus .contact .numbers .num a {
  color: white;
  font-weight: 500;
  text-decoration: none;
}

.contactus .contact .numbers .num a:hover {
  color: rgb(244, 191, 0);
}

.contactus .contact .numbers .num:hover {
  color: rgb(235, 176, 0);
}

.contactus .contact .numbers .num:hover a {
  color: rgb(235, 188, 0);
}

.contactus .socials .socwrap {
  gap: 15px;
  font-size: 19px;
  flex-direction: column;
  align-items: start;
}

.contactus .socials .socwrap a {
  color: unset;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  gap: 20px;
}

.contactus .socials .socwrap a:hover {
  color: rgb(244, 191, 0);
}

.contactus .socials .socwrap i {
  font-size: 24px;
}

/* Responsive Design */


@media (max-width: 1100px) {
  .home .navbar {
    height: 8vh;
  }

  .home .navbar a .item {
    font-size: 18px;
  }

  .event-section .events {
    max-width: 100%;
    margin: 2rem;
  }

  .event-section .event {
    scale: 200%;
    margin: 10rem;
  }

  .event-section .events .first-div-events {
    display: flex;
    flex-direction: column;

    margin-top: 2rem;
    row-gap: 2rem;


  }

  .event-section .events .second-div-events {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;

    row-gap: 2rem;

  }


}

@media (max-width: 890px) {



  .home .navbar {
    height: 6vh;
  }

  .home .navbar a .item {
    font-size: 15px;
  }

}

@media (max-width: 950px) {
  .contactus {
    gap: 5rem;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10rem;
  }

  .contactus .socials {
    align-items: center;
  }

  .contactus .contact {
    align-items: center;
  }

  .contactus .contact .numbers {
    align-items: center;
  }

  .contactus .contact .numbers .num {
    font-size: 16px;
  }

  .contactus .socials .socwrap {
    font-size: 16px;
    display: flex;
    flex-direction: row;

  }

  .contactus .socials .socwrap i {
    font-size: 18px;
  }


  .contactus .socials .socwrap a span {
    display: none;
  }

  .contactus .socials .socwrap a:hover {
    color: rgb(235, 172, 0);
  }

  .formerpartners .heading {
    transform: scale(0.7);
  }

}

@media screen and (max-width: 720px) {
  .home {
    padding-top: 0;
  }

  .home .whitefade {
    display: none;
  }

  .home .sidebar {
    display: flex;
  }

  .home .ham {
    display: flex;
    transform: scale(0.6);
  }

  .home .navbar {
    display: none;
  }

  .event-section .event {
    scale: 120%;
    margin: 3rem;
  }
}

@media (max-width: 600px) {


  .home .ham {
    top: 0.1rem;
    right: 0.1rem;
  }

  .home .dates-info {
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }

  .home .dates-info .dates {
    font-size: 30px;
    text-align: center;

  }

  .loc .address1 {
    flex-direction: column;
  }

  .loc .address1 .gmap {
    padding-bottom: 20px;
  }

  .loc .address1 .gmap .loctext h2 {
    font-size: 18px;
  }

  .loc .address1 .gmap .loctext span {
    font-size: 16px;
  }

  .loc .reachus {
    width: 75%;
  }

  .event-section .events {
    max-width: 100%;
    display: flex;

  }

  .event-section .heading {
    transform: scale(0.7);
  }

  .contactus {
    gap: 2rem;

    background-size: cover;
    background-position: center center;
    padding-bottom: 100px;
  }

  .contactus .contact {
    align-items: center;
  }

  .contactus .contact .numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contactus .contact .numbers .num {
    font-size: 16px;
  }

  .contactus .socials {
    align-items: center;
  }

  .contactus .socials .socwrap {
    flex-direction: row;
  }

  .contactus .socials .socwrap i {
    font-size: 18px;
  }

  .contactus .socials .socwrap a span {
    display: none;
  }

  .contactus .socials .socwrap a:hover {
    color: rgb(235, 172, 0);
  }

  .formerpartners .heading {
    transform: scale(0.7);
  }
}

@media screen and (max-width: 400px) {
  .contactus {
    padding-bottom: 75px;
  }
}

@media screen and (max-width: 530px) {
  .formerpartners .mobile {
    display: flex;
  }

  .first,
  .second,
  .third,
  .fourth {
    display: none;
  }

  .about .content .text-section p {
    text-align: left;
  }
}

@media screen and (max-width: 400px) {
  .tp-img img {
    transform: scale(1);
  }
}

@media screen and (max-width: 320px) {
  .home .ham {
    top: 1rem;
    right: 1rem;
    transform: scale(0.5);
  }

  .home .jigisha h2 {
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .about .content {
    flex-direction: column;
  }

  .about .content .text-section {
    width: 100%;
  }

  .about .content .text-section .sts {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .about .content .text-section .sts .highlight {
    font-size: 1.5em;
  }

  .about .content .text-section .sts .nums {
    text-align: center;
  }

  .about .content .text-section .stats-title {
    text-align: center;
  }

  .image-section {
    height: auto;
  }
}

@media (min-width: 768px) {
  .image-section {
    height: auto;
    /* Dynamically adjust based on content */
  }

  .text-section {
    height: auto;
    /* Dynamically adjust based on content */
  }
}

@media screen and (min-width: 1400px) {
  .home {
    padding-top: 15vh;
    background-size: 120%;
    background-position: right center;
  }

  .home .jigisha img {
    max-width: 32rem;
  }

  .home .jigisha h2 {
    font-size: 2.5rem;
  }

  .home .dates-info .btns button {
    max-width: 300px;
    font-size: 22px;

  }

  .home .dates-info .dates {
    font-size: 42px;
  }

  .contactus .chess {
    max-width: 40rem;
  }

  .contactus .contact .numbers .num {
    font-size: 1.375em;
  }

  .contactus .socials .socwrap {
    font-size: 1.375em;
  }
}

@media screen and (min-width: 1700px) {
  .home .dates-info .btns button {
    max-width: 400px;
    font-size: 24px;
  }

  .home .dates-info .dates {
    font-size: 45px;
  }

  .home .navbar a .item {
    font-size: 24px;
  }

  .home .qsn {
    transform: scale(1.2);
    right: 0;
  }

  .container1 .countdown {
    font-size: 120%;
  }

  .container1 .countdown .time {
    width: 4em;
    height: 4em;
  }

  .loc .heading,
  .event-section .heading,
  .formerpartners .heading {
    transform: scale(1.2);
  }

  .event-section .heading,
  .formerpartners .heading {
    margin: 20px 0;
  }
}

@media screen and (min-width: 1800px) {
  .home .jigisha img {
    max-width: 34em;
  }

  .home .jigisha h2 {
    font-size: 2.8em;
  }

  .home .dates-info .btns button {
    max-width: 300px;
    font-size: 22px;
  }

  .home .dates-info .dates {
    font-size: 42px;
  }



  .contactus .chess {
    max-width: 50rem;
  }
}

@media screen and (min-width: 1900px) {
  .loc {
    font-size: 120%;
  }

  .event-section {
    font-size: 120%;
  }

  .contactus {
    font-size: 120%;
  }
}


.swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
  height: 100%;
}

.swiper-slide {
  aspect-ratio: 16/9;
  height: 100%;
  margin-right: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  object-fit: cover;
}


/* Tablet styles */


/* Mobile styles */


/* Very small mobile styles */

/*# sourceMappingURL=index.css.map */



.swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
  height: 100%;
}

.swiper-slide {
  aspect-ratio: 16/9;
  height: 100%;
  margin-right: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  object-fit: cover;
}

.quiz-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 25%, #9333EA 50%, #7C3AED 75%, #6D28D9 100%);
  min-height: 100vh;
}

.quiz-container {
  max-width: 1400px;
  margin: 0 auto;
}

.quiz-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 60px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.quiz-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  min-height: 300px;
  margin-left: 2rem;
  margin-right: 2rem;
}

.quiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-poster {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  background-size: cover;
  background-position: 0% 0%;
  
}

.card-poster i {
  font-size: 3rem;
  margin-bottom: 10px;
}
.card-info {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.card-info-top {
  flex: 1;
}

.quiz-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #6D28D9;
}

.quiz-description {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.quiz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.tag {
  background: linear-gradient(45deg, #7549da, #9c49e9);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 500;
}

.quiz-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 1.1rem;
}

.detail-item i {
  width: 18px;
  margin-right: 8px;
  color: #8B5CF6;
}

.card-info-bottom {
  margin-top: auto;
}

.quiz-masters {
  background: linear-gradient(45deg, #F3E8FF, #E9D5FF);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.quiz-masters h4 {
  color: #6D28D9;
  margin-bottom: 8px;
  font-size: 1rem;
}

.masters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.master-name {
  background: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #8B5CF6;
  font-weight: 500;
  border: 1px solid #E9D5FF;
}

.contact-info {
  background: linear-gradient(45deg, #7444e4, #8233cc);
  color: white;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.contact-info h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-item i {
  width: 18px;
  margin-right: 6px;
}

.contact-item a {
  color: white;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.event-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  align-self: center;
}


.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(45deg, #8B5CF6, #A855F7);
  color: white;

}

.btn-primary:hover {
  transform: scale(1.015);
  background: linear-gradient(45deg, #6339c6, #4d1681);

}

.event-cards {
  display: flex;
  flex-direction: column;
  margin: 4rem;
  row-gap: 4rem;

}

.headingofevents {
  color: white;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 4px;
}
@media (max-width: 1300px) {
  .quiz-card {
    margin-left: 0rem;
    margin-right: 0rem;
  }

}

.janaojana-cp {
  background-image: url('./assets/site-poster/janaojana.webp');
  background-position: 50% 0%;
}

.fnb-cp {
  background-image: url('./assets/site-poster/fnb.webp');
  background-position: 50% 0%;
}
.quruk-cp {
  background-image: url('./assets/site-poster/quruk.webp');
  background-position: 50% 0%;
}
.hth-cp {
  background-image: url('./assets/site-poster/hth.webp');
  background-position: 50% 0%;
}
.conv-cp {
  background-image: url('./assets/site-poster/conv.webp');
}
.fando-cp {
  background-image: url('./assets/site-poster/fando.webp');
}
.p6s-cp {
  background-image: url('./assets/site-poster/p6s.webp');
}


@media (max-width: 1000px) {
  .quiz-card {

    flex-direction: column;
    min-height: auto;
  }

  .janaojana-cp {
    background-image: url('./assets/site-poster/janaojana-mobile.webp');
    background-size: cover;
    background-size: cover;
    background-position: 50% 50%;

  }

  .fnb-cp {
    background-image: url('./assets/site-poster/fnb-mobile.webp');
    background-size: cover;
    background-position: 50% 50%;

  }

  .quruk-cp {
    background-image: url('./assets/site-poster/quruk-mobile.webp');
    background-size: cover;
    background-position: 50% 0%;
  }

  .hth-cp {
    background-image: url('./assets/site-poster/hth-mobile.webp');
    background-size: cover;
    background-position: 0% 0%;
  }

  .conv-cp {
    background-image: url('./assets/site-poster/convergence-mobile.webp');
    background-size: cover;
    background-position: 50% 50%;
  }

  .fando-cp {
    background-image: url('./assets/site-poster/fando-mobile.webp');
    background-size: cover;
    background-position: 50% 50%;
  }

  .p6s-cp {
    background-image: url('./assets/site-poster/p6s-mobile.webp');
    background-size: cover;
    background-position: 50% 50%;
  }
}

@media (max-width: 768px) {
  .event-cards {
    margin-top: 6rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }


  .janaojana-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 50% 0%;

  }

  .fnb-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 50% 0%;
  }

  .quruk-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 0% 85%;
  }

  .hth-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 0% 0%;
  }

  .conv-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 50% 0%;
  }

  .fando-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 50% 0%;
  }

  .p6s-cp {
    flex: 0 0 200px;
    width: 100%;
    background-size: cover;
    background-position: 50% 0%;
  }


  .card-info {
    padding: 20px;
  }

  .quiz-details {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quiz-section h2 {
    font-size: 2.5rem;
  }

  .quiz-section {
    padding: 60px 15px;
  }
}

.event-action-parent {
  display: flex;

  column-gap: 3rem;

}

@media (max-width: 1000px) {
  .event-action-parent {
    flex-direction: column;
    row-gap: 1rem;
  }
}