@font-face {
  font-family: "Zawi-Bold";
  src: url(../fonts/Zawi-Bold.otf);
}
@font-face {
  font-family: "Zawi-Medium";
  src: url(../fonts/Zawi-Medium.otf);
}
@font-face {
  font-family: "Zawi-Light";
  src: url(../fonts/Zawi-Light.otf);
}
@font-face {
  font-family: "Larken-Bold";
  src: url(../fonts/Larken-Bold.otf);
}
@font-face {
  font-family: "Larken-Medium";
  src: url(../fonts/Larken-Medium.otf);
}
@font-face {
  font-family: "Larken-Light";
  src: url(../fonts/Larken-Light.otf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #B99558;
  --subColor: #00263E;
  --cr-blue: #0445AF;
  --cr-green: #75AB03;
  --cr-red: #BF4D4E;
}

.main-color {
  color: var(--main-color) !important;
}

.main-back {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

.cr-blue {
  color: var(--cr-blue) !important;
}

.back-blue {
  background-color: var(--cr-blue) !important;
  border-color: var(--cr-blue) !important;
}

.cr-green {
  color: var(--cr-green) !important;
}

.back-green {
  background-color: var(--cr-green) !important;
  border-color: var(--cr-green) !important;
}

.cr-red {
  color: var(--cr-red) !important;
}

.back-red {
  background-color: var(--cr-red) !important;
  border-color: var(--cr-red) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Zawi-Medium";
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-image: url(../images/body_bg.png);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  color: #627883;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zawi-Bold";
  margin: 0;
  line-height: 1.6;
  color: #00263E;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  position: relative;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: var(--main-color);
  color: #fff;
}
.butn:hover {
  background-color: var(--subColor);
}
.butn.butn-line {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.butn.butn-line:hover {
  background-color: var(--main-color);
}
.butn.butn-line:hover * {
  color: #fff;
}
.butn.butn-blue {
  color: #fff;
  background-color: var(--subColor);
}
.butn.butn-blue:hover {
  background-color: var(--main-color);
}
.butn.disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* --------------- page-content --------------- */
.page-content {
  position: relative;
  padding: 80px 0;
  border-top: 5px solid var(--main-color);
}

.main-title {
  font-size: 34px;
}

.dash-line {
  position: relative;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 149, 88, 0.2666666667);
}
.dash-line::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 35px;
  height: 4px;
  background-color: var(--main-color);
}

.challenge-det {
  position: relative;
  padding-top: 100px;
}
.challenge-det .circle-timer {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 30px;
}
.challenge-det .circle-timer.done {
  background-color: #fff;
  border-radius: 50%;
  border: 5px solid var(--main-color);
}
.challenge-det .circle-timer.done svg {
  display: none;
}
.challenge-det .circle-timer svg {
  max-width: 100%;
}
.challenge-det .circle-timer .timer-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  bottom: 10%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #B99558;
}
.challenge-det .circle-timer #remaining {
  font-size: 25px;
  color: #B99558;
  transition: color 3s linear;
}
.challenge-det .circle-timer #stop1,
.challenge-det .circle-timer #stop2 {
  transition: all 3s linear;
}
.challenge-det .circle-timer #ticker {
  transition: all 1s linear;
}

.icon-list {
  position: relative;
}
.icon-list li {
  display: flex;
  margin-bottom: 20px;
  font-size: 16px;
  color: #00263E;
}
.icon-list li .icon {
  width: 20px;
  height: 20px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}

.congrat-card {
  position: relative;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: -4px 12px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.congrat-card .happy-img {
  height: 100%;
}
.congrat-card .happy-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.congrat-card .bars .progress-bar-half {
  margin-top: 30px;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(1) .progress-bar-half .bar {
  border-bottom-color: #8D5DA7;
  border-right-color: #8D5DA7;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(1) .progress-bar-half .small {
  color: #8D5DA7;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(2) .progress-bar-half .bar {
  border-bottom-color: #4B6073;
  border-right-color: #4B6073;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(2) .progress-bar-half .small {
  color: #4B6073;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(3) .progress-bar-half .bar {
  border-bottom-color: #75AB03;
  border-right-color: #75AB03;
}
.congrat-card .bars .row .col-lg-4:nth-of-type(3) .progress-bar-half .small {
  color: #75AB03;
}

/* --------------- logo-menu --------------- */
.logo-menu {
  position: relative;
}
.logo-menu .logo {
  height: 80px;
}

/* --------------- challenge-wrapper --------------- */
.challenge-wrapper {
  position: relative;
  padding-top: 30px;
}
.challenge-wrapper .start-wrapper {
  margin-top: 100px;
}
.challenge-wrapper .start-wrapper .top-cont {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 4px solid rgba(185, 149, 88, 0.2274509804);
}
.challenge-wrapper .start-wrapper .progress-circls {
  display: flex;
  justify-content: space-between;
}
.challenge-wrapper .start-wrapper .progress-circls .progress-card {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.challenge-wrapper .start-wrapper .progress-circls .progress-card h6 {
  margin-bottom: 15px;
}

.progress-bar-half {
  position: relative;
  text-align: center;
}
.progress-bar-half .small {
  font-size: 12px;
  margin-top: 10px;
}
.progress-bar-half .barOverflow {
  position: relative;
  overflow: hidden;
  width: 90px;
  height: 45px;
  margin: 0 auto -20px;
}
.progress-bar-half .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 5px solid #eee;
  border-bottom-color: rgba(0, 38, 62, 0.7882352941);
  border-right-color: rgba(0, 38, 62, 0.7882352941);
}
.progress-bar-half.no-progress .bar {
  border-bottom-color: #eee;
  border-right-color: #eee;
}
.progress-bar-half.purple-progress .bar {
  border-bottom-color: #8D5DA7;
  border-right-color: #8D5DA7;
}
.progress-bar-half.purple-progress .small,
.progress-bar-half.purple-progress .text {
  color: #8D5DA7;
}
.progress-bar-half.green-progress .bar {
  border-bottom-color: #75AB03;
  border-right-color: #75AB03;
}
.progress-bar-half.green-progress .small,
.progress-bar-half.green-progress .text {
  color: #75AB03;
}

.ques-number {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.ques-number .num {
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px -8px -10px;
  color: var(--main-color);
}
.ques-number .point {
  position: relative;
  padding: 7px 15px;
  background-color: #EEE6DA;
  color: var(--main-color);
  flex-shrink: 0;
  white-space: nowrap;
  margin-bottom: 14px;
}
.ques-number .point::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -14px;
  width: 10px;
  height: 14px;
  border-top: 7px solid #EEE6DA;
  border-left: 7px solid #EEE6DA;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.question-card {
  position: relative;
  margin-top: 30px;
}
.question-card.disabled {
  pointer-events: none;
}
.question-card .question {
  position: relative;
  font-size: 24px;
  margin: 15px 0 20px;
}
.question-card .answers {
  position: relative;
}
.question-card .answers .form-check {
  position: relative;
  padding: 0;
}
.question-card .answers .form-check .form-check-label {
  position: relative;
  background-color: rgba(4, 69, 175, 0.0196078431);
  padding: 14px 10px 10px 44px;
  border-radius: 50px;
  border: 1px solid rgba(4, 69, 175, 0.2666666667);
  margin-top: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  color: var(--cr-blue);
}
.question-card .answers .form-check .form-check-input {
  float: none;
  margin: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid rgba(4, 69, 175, 0.6);
  position: absolute;
  left: 10px;
  top: calc(50% - 12px);
  box-shadow: none;
}
.question-card .answers .form-check .form-check-input:checked {
  background-color: var(--cr-blue);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.question-card .answers .form-check .form-check-input:checked ~ .form-check-label {
  background-color: rgba(4, 69, 175, 0.0666666667);
  border-color: var(--cr-blue);
}
.question-card .answers .form-check.correct .form-check-input {
  background-color: var(--cr-green) !important;
}
.question-card .answers .form-check.correct .form-check-label {
  background-color: rgba(117, 171, 3, 0.0666666667) !important;
  border-color: var(--cr-green) !important;
  color: var(--cr-green) !important;
}
.question-card .answers .form-check.incorrect .form-check-input {
  background-color: var(--cr-red) !important;
}
.question-card .answers .form-check.incorrect .form-check-label {
  background-color: rgba(191, 77, 78, 0.0666666667) !important;
  border-color: var(--cr-red) !important;
  color: var(--cr-red) !important;
}

.incorrect-card {
  position: relative;
  padding: 10px 10px 10px 30px;
  background-color: #FFEAEB;
  border-radius: 10px;
  color: var(--cr-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.incorrect-card::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  border-radius: 5px;
  width: 5px;
  height: calc(100% - 20px);
  background-color: var(--cr-red);
}
.incorrect-card .text {
  padding: 10px 0;
  font-size: 16px;
}
.incorrect-card .text .txt {
  font-style: italic;
}
.incorrect-card .icon {
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.incorrect-card.show {
  display: flex;
}

.correct-card {
  position: relative;
  padding: 10px 10px 10px 30px;
  background-color: #DEF4F0;
  border-radius: 10px;
  color: #479F8D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.correct-card::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  border-radius: 5px;
  width: 5px;
  height: calc(100% - 20px);
  background-color: #479F8D;
}
.correct-card .text {
  padding: 10px 0;
  font-size: 16px;
}
.correct-card .text .txt {
  font-style: italic;
}
.correct-card .icon {
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.correct-card.show {
  display: flex;
}

.fsz-16 {
  font-size: 16px;
}

.disable {
  pointer-events: none;
  opacity: 0.5;
}

/* Preloader
-----------------------------------------------------------------*/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#loading-wrapper {
  transition: all 1s ease;
}

#preloader .top-half,
#preloader .btm-half {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: #f9f9f9;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader .top-half {
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

#preloader .btm-half {
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

#preloader.isdone {
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 1.5s;
}

#loading-wrapper {
  transition-delay: 0.5s;
}

#preloader.isdone .top-half {
  transform: translateY(-100%);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}

#preloader.isdone .btm-half {
  transform: translateY(100%);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}

.loader {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  background-image: url(../images/body_bg.png);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  transition: all 1s ease;
  pointer-events: none;
}
.loader .video-wrapper {
  position: relative;
  -webkit-mask: url(../images/fav_lg.png);
          mask: url(../images/fav_lg.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  height: 40vh;
  width: 40vh;
  left: calc(50% - 20vh);
  top: 30vh;
  animation: rotate-center 20s linear infinite both;
}
.loader .video-wrapper .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: rotate-center 20s linear infinite reverse both;
}
.loader.loaded {
  opacity: 0;
  transform: scale(1.3);
  visibility: hidden;
}

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .question-card .answers .form-check .form-check-label {
    font-size: 13px;
  }
  .question-card .question {
    font-size: 20px;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */