*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/*  Navbar  */

.navbar-custom {
  background: #231f20;
  padding: 1.5rem 0;
}

.logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*  Hero Section  */

.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 6rem 0 2rem 0;
}
.hero-content {
  order: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.55rem);
  margin-bottom: 2rem;
}

.hero-content a {
  background: #e96423;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 2.3rem;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-decoration: none;
}

.hero-content h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-top: 22px;
}

.hero-content-border {
  display: flex;
  max-width: 100%;
  /* height: 150px; */
  /* gap: 0px; */
  align-items: center;
  /* justify-content: center; */
  /* margin-top: 50px; */
}

.hero-content-border img {
  width: 100px;
  height: 130px;
  object-fit: contain;
}
.last-hero-content-border {
  gap: 20px;
  justify-content: center;
}

.border-head {
  font-size: 20px;
}

.hero-image {
  order: 2;
}

.hero-image img {
  width: clamp(280px, 100%, 420px);
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .head-content {
    order: 2;
  }
  .why-quiz {
    /* text-align: center; */
    padding: 3rem 0;
  }
  .hero-content-border {
    justify-content: center;
  }

  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .why-quiz h2 {
    /* text-align: center; */
  }
  .why-quiz h3 {
    margin-bottom: 2rem;
    /* text-align: center; */
  }
}
@media screen and (max-width: 450px) {
  .hero-content-border {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-border-main-container {
    margin-bottom: 20px;
  }

  .hero-image img {
    width: 200px;
  }
}
/*  Why Quiz  */

.why-quiz {
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 6rem 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.why-quiz-inner {
  max-width: 880px;
}

.why-quiz h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why-quiz h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4.5rem;
}

.why-quiz p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
}

/*  Why Participate  */

.why-participate {
  background: #fff;
  color: #000;
  padding: 6rem 0;
}
.why-participate h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 600;
  padding-bottom: 4rem;
}
.why-participate-grid-box-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px;
}
.why-participate-box-container {
  width: clamp(280px, 100%, 480px);
  /* height: 400px; */
  padding: 20px;
  border: 2px solid #656263;
  border-radius: 20px;
}
.why-participate-box-container .header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  height: 125px;
}

.why-participate-box-container .header::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #656263;
}
.why-participate-box-container .header .head-image {
  width: 50%;
}

.why-participate-box-container .header .head-image img {
  width: 120px;
  height: 140px;
  object-fit: contain;
}
.why-participate-box-container .header .head-content h6 {
  width: 100%;
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 700;
  /* padding-top: 15px; */
}
.why-participate-box-container .content p {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
  margin-top: 20px;
}

.faq-item-container .container .faq-content {
  font-size: clamp(0.9rem, 3vw, 1.4rem);
  /* padding-bottom: 1rem; */
  color: gray;
}

.hero-sub-container {
  display: flex;
}
@media screen and (max-width: 786px) {
  .hero-sub-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1024px) {
  .why-participate-grid-box-container {
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 768px) {
  .why-participate h2 {
    text-align: center;
  }
  .why-participate-grid-box-container {
    grid-template-columns: auto auto;
    gap: 50px;
  }
  .hero-content h1 {
    line-height: 1.3;
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .why-participate-grid-box-container {
    grid-template-columns: auto;
    gap: 30px;
  }
}
@media screen and (max-width: 350px) {
  .why-participate h2 {
    text-align: center;
  }
  .why-participate-grid-box-container {
    grid-template-columns: auto;
    gap: 30px;
  }
  /* .why-participate-box-container {
    height: 350px;
  } */
  .about-museo-camera-content-container {
    padding: 70px 14px 0px 0px;
  }
}

/*  About Museo Camera  */

.about-museo-camera {
  background-color: #e96423;
  display: flex;
  width: 100%;
  overflow-x: hidden;
}

.about-museo-camera-content-container {
  /* padding: 70px 0;
  width: 100%;
  max-width: 737px; */
  flex: 1;
  /* width: 60%; */
  padding: 70px 14px 70px 0;
}

.about-museo-camera-sub-container {
  display: flex;
  flex-wrap: wrap;
  /* gap: 120px; */
}
.about-museo-camera h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: -0.5rem;
}

.about-museo-camera h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.about-museo-camera p {
  font-size: clamp(1rem, 2vw, 1.45rem);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-museo-camera-image-container {
  /* width: 40%; */
  flex: 1;
}
.about-museo-camera-image-container img {
  /* width: clamp(200px, 100%, 800px); */
  /* width: 100%; */
  height: 100%;
  width: calc(100% + var(--white-space));
  object-fit: cover;
  margin-left: 90px;
  object-position: right;
}

@media screen and (max-width: 1024px) {
  .about-museo-camera {
    flex-wrap: wrap-reverse;
    padding: 20px;
  }
  .about-museo-camera-content-container {
    flex: 1;
  }
  .about-museo-camera-image-container {
    /* display: flex; */
    justify-content: center;
    flex: 1;
    /* padding: 50px 0; */
    width: 100%;
  }
}
/* About the Quiz */

.about-the-quiz {
  background-color: #3e3e3f;
  display: flex;
  color: white;
  padding: 100px 0 70px 0;
}
.about-the-quiz h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-the-quiz h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.about-the-quiz p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.about-the-quiz ul,
.about-the-quiz span {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  /* .about-the-quiz h2,
  .about-the-quiz h3 {
    text-align: center;
  } */

  .about-museo-camera-sub-container {
    flex-direction: column;
  }
  .about-museo-camera-image-container img {
    margin-left: 0;
  }
}

/* the-challenge-and-the-cause styles */

.the-challenge-and-the-cause {
  /* background-color: #e96423; */
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.the-challenge-and-the-cause h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 2.3rem;
}

.the-challenge-and-the-cause p {
  font-size: clamp(1rem, 3vw, 1.8rem);
  margin-bottom: 2.3rem;
  font-weight: 700;
}

/* how-to-participate styles */
.how-to-participate h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 2.3rem;
  margin-top: 6rem;
  color: #e96423;
}
.how-to-participate .participation-process-container {
  padding: 0 50px;
}

.how-to-participate-box-info-container {
  position: relative;
  border: 2px solid #e96423;
  /* padding: 30px 81px 30px 100px; */
  margin-bottom: 70px;
}
.how-to-participate-box-info-container:last-child {
  position: relative;
  background-color: #fbdbc5;
  border: 2px solid #e96423;
  /* padding: 70px 120px; */
  margin-bottom: 70px;
}
.how-to-participate-box-info-container:last-child .content p {
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.45rem);
}
.how-to-participate-box-info-container .serial-number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -6%;
  transform: translateY(-50%);
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 100px;
  font-weight: 700;
  background-color: #e96423;
  color: #fff;
}
.how-to-participate-box-info-container .content {
  /* display: grid;
  grid-template-columns: 1fr 2fr; */
  padding: 45px 120px 45px 110px;
  width: 100%;
  display: flex;
  gap: 50px;
}
.how-to-participate-box-info-container .first-content {
  /* display: grid;
  grid-template-columns: 1fr 2fr; */
  padding: 45px 120px 45px 100px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: end;
}
.how-to-participate-box-info-container .content h3 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.3;
  font-weight: 600;
  color: #e96423;
  margin-bottom: 20px;
}
.how-to-participate-box-info-container .content .header {
  width: 36%;
}
.how-to-participate-box-info-container .content .header p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.3;
  font-weight: 500;
  width: 100%;
}
.how-to-participate-box-info-container .content p {
  font-size: clamp(1rem, 3vw, 1.45rem);
  line-height: 1.7;
  font-weight: 400;
  width: 64%;
}
.prices-amount-container {
  margin-bottom: 3rem;
}
.prices-amount-container p {
  font-size: clamp(1rem, 3vw, 1.8rem);
  line-height: 1;
  font-weight: 700;
}
.attendence-and-audience-info-container {
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .how-to-participate .participation-process-container {
    padding: 0 15px;
  }
  .how-to-participate h2 {
    margin-bottom: 6.3rem;
    /* text-align: center; */
  }
  .how-to-participate-box-info-container .serial-number {
    top: -50px;
    left: 50%;
    transform: translate(-50%, -14%);
  }
  .how-to-participate-box-info-container .content {
    /* flex-wrap: wrap; */
    flex-direction: column;
    padding: 0;
    gap: 15px;
    margin-top: 55px;
    align-items: center;
  }
  .how-to-participate-box-info-container {
    padding: 40px 15px;
    margin-bottom: 95px;
    text-align: center;
  }
  .how-to-participate-box-info-container .content p {
    width: 100%;
  }
  .how-to-participate-box-info-container .content .header {
    width: 100%;
  }
}

/* faq-main-container styles */
.faq-main-container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.3;
  font-weight: 600;
  color: #e96423;
  margin-top: 6rem;
  margin-bottom: 20px;
}
.faq-item-container {
  background-color: #e1e2e4;
  padding: 15px 0;
  margin-bottom: 1rem;
}
.faq-item-container .container h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
}
.faq-item-container .container .faq-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 3vw, 1.3rem);
  line-height: 1.3;
  font-weight: 400;
  display: none;
  /* max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease; */
}
.faq-item-container .container .faq-content-show {
  display: block;
  /* max-height: 500px; 
  opacity: 1; */
}
.faq-item-container .container h4 span:last-child {
  font-weight: 700;
  font-size: 3rem;
  color: #e96423;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-content-show {
  max-height: 500px; /* larger than your tallest answer */
  opacity: 1;
}

/* terms and condition styles */

.terms-and-condition-container h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 2.3rem;
  margin-top: 6rem;
  color: #e96423;
}
.terms-and-condition-container .terms-and-condition-sub-container strong {
  font-size: clamp(1rem, 3vw, 1.6rem);
  line-height: 1;
  font-weight: 700;
}
.terms-and-condition-container
  .terms-and-condition-sub-container
  .terms-and-condition-first-para {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.terms-and-condition-sub-container:last-child {
  margin-bottom: 10rem;
}

/* contact us styles */

.contact-us-container h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  /* margin-bottom: 2.3rem; */
  /* margin-top: 6rem; */
  color: #a1a3a6;
}
.contact-us-container .contact-us-content-container {
  font-size: clamp(1rem, 2vw, 1.5rem);
  /* margin-bottom: 2.5rem; */
  line-height: 1.1;
  font-weight: 400;
  color: #a1a3a6;
}

/* footer styles */
.footer-container {
  background-color: #000;
  /* text-align: center; */
  color: white;
  padding: 35px 0 70px 0;
}

.footer-container img {
  width: 100%;
  height: 100%;
  max-height: 170px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .footer-container img {
    margin-bottom: 15px;
  }
  .contact-us-container {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem 0;
  }
  .hero-content h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
  }
  .why-quiz {
    padding: 5rem 0;
  }
  .why-quiz h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .why-quiz h3 {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .why-quiz p {
    margin-bottom: 1rem;
  }
  .why-participate {
    padding: 5rem 0;
  }
  .why-participate h2 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    padding-bottom: 1rem;
  }
  .about-museo-camera {
    padding: 0;
  }
  .about-museo-camera-content-container {
    padding: 5rem 0;
  }
  .about-museo-camera h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
  }
  .about-museo-camera h3 {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
  }
  .about-museo-camera p {
    margin-bottom: 1rem;
  }
  .about-museo-camera h3 {
    margin-bottom: 2rem;
  }
  .about-museo-camera-image-container img {
    width: calc(120% + var(--white-space));
    margin-left: -60px;
  }
  .about-the-quiz {
    padding: 5rem 0;
  }
  .about-the-quiz h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .about-the-quiz h3 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
  }
  .about-the-quiz p {
    margin-bottom: 1rem;
  }
  .about-the-quiz ul,
  .about-the-quiz span {
    margin-bottom: 1rem;
  }
  .the-challenge-and-the-cause {
    padding: 5rem 0;
  }
  .the-challenge-and-the-cause h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
  }
  .the-challenge-and-the-cause p {
    margin-bottom: 1rem;
  }
  .how-to-participate h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 6.3rem;
    margin-top: 5rem;
  }
  .how-to-participate-box-info-container .serial-number {
    transform: translate(-50%, -1%);
    width: 91px;
    font-size: 56px;
  }
  .how-to-participate-box-info-container .content h3 {
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .how-to-participate-box-info-container {
    padding: 0px 15px;
    margin-bottom: 66px;
  }
  .how-to-participate-box-info-container .content .header p {
    line-height: 1.4;
  }
  .how-to-participate-box-info-container .content {
    gap: 0px;
  }
  .how-to-participate h2 {
    margin-bottom: 1.3rem;
    margin-top: 5rem;
    /* text-align: center; */
  }
  .prices-amount-container p {
    line-height: 1.3;
  }
  .prices-amount-container {
    margin-bottom: 0rem;
  }
  .faq-main-container h2 {
    margin-top: 5rem;
  }
  .faq-item-container {
    background-color: #e1e2e4;
    padding: 0;
    margin-bottom: 1rem;
  }
  .faq-item-container .container h4 span:last-child {
    font-weight: 700;
    font-size: 2rem;
    color: #e96423;
  }
  .terms-and-condition-container h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.3rem;
    margin-top: 5rem;
  }
  .faq-item-container .container .faq-content {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    padding-bottom: 1rem;
    color: gray;
  }
  .terms-and-condition-container
    .terms-and-condition-sub-container
    .terms-and-condition-first-para {
    margin-bottom: 1rem;
  }
  .terms-and-condition-sub-container:last-child {
    margin-bottom: 5rem;
  }
  .footer-container {
    padding: 5rem 0;
  }
  .footer-container img {
    max-height: 100px;
  }
  .how-to-participate h2:first-child {
    margin-bottom: 4.3rem;
  }
  .faq-item-container {
    background-color: #e1e2e4;
    padding: 10px 0;
    margin-bottom: 0.5rem;
  }
  .navbar-custom {
    padding: 1rem 0;
  }
  .logo img {
    max-width: 107px;
  }
  .hero-content-border img {
    /* width: 106px; */
    height: 80px;
    /* object-fit: contain; */
  }
  .price-amount-header,
  .prices-amount-container {
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  .last-hero-content-border {
    gap: 0px;
  }
  .why-participate-box-container {
    padding: 14px;
  }
}

.footer-mail-link {
  color: #a1a3a6;
  text-decoration: none;
}

.box-mail-link {
  color: black;
  text-decoration: none;
}
