/* FOOTER SECTION START FROM HERE */
.footer-section ul {
  padding: 0;
  margin: 0;
}
.footer-section {
  background: #fff;
  padding: 60px 0;
}
.footer-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.footer-area .footer-col ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 2.5;
}
li {
  list-style-type: none;
}
.footer-logo-box {
  background: #5567ff;
  border-radius: 5px;
  display: inline-block;
}
.footer-logo {
  width: 50px;
}
.social-icons-flex {
  display: flex;
  gap: 10px;
  padding: 15px 0;
}
.facebook-icon-box {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background: #eae5e5;
}
.instagram-icon-box {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background: #eae5e5;
}
.twitter-icon-box {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background: #eae5e5;
}
.youtube-icon-box {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background: #eae5e5;
}
.social-icons-flex i {
  font-size: 20px;
}
.fa-facebook {
  color: blue;
  transition: 0.3s;
}

.fa-instagram {
  color: #f60b57;
  transition: 0.3s;
}

.fa-twitter {
  color: #1c96e8;
  transition: 0.3s;
}

.fa-youtube {
  color: red;
  transition: 0.3s;
}

.fa-eye {
  margin-right: 5px;
}
.fa-star {
  font-size: 10px;
}
.fa-star-half-stroke {
  font-size: 10px;
}
.fa-video {
  font-size: 20px;
  color: #fff;
}
.custom-users {
  font-size: 20px;
  color: #fff;
}
.custom-icon-accessible {
  font-size: 20px;
  color: #fff;
}
.footer-input {
  width: 100%;
  padding: 5px 40px;
  border: 1px solid #dcd3d3;
}

.footer-input-relative {
  position: relative;
}
.send-icon-position {
  background: #ffb013;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  color: #fff;
  position: absolute;
  right: 0;
  top: -1px;
}

.fa-envelope-custom {
  position: absolute;
  left: 10px;
  top: 8px;
}

.quiz_details {
  background-color: #fff;
  border: 1px solid #e3d9d9;
  max-width: 700px;
  margin: 50px auto;
  padding: 40px 20px !important;
}

.main-quiz-round {
  background-color: #fff;
  border: 1px solid #e3d9d9;
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px !important;
  width: 100%;
}
.custom--question {
  font-size: 30px;
}
.option {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}

.correct {
  color: green;
  font-weight: bold;
  margin-left: 8px;
}
.wrong {
  color: red;
  font-weight: bold;
  margin-left: 8px;
}
.refer-custom-width {
  max-width: 700px !important;
  width: 100%;
}
.custom--input {
  height: 40px;
}
.custom-font-P_size {
  font-size: 30px;
  text-align: center;
  color: #5f5b5b;
}

/* FOOTER SECTION ENDS FROM HERE */
/* CUSTOM RESPONSIVE START FROM HERE */
@media (max-width: 1000px) {
  .footer-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
/* CUSTOM RESPONSIVE ENDS FROM HERE */
