@charset "utf-8";
/* CSS Document */
/*----------------
RESET CSS
-----------------*/
body {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background: #fff;
  color: #000000;
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
}
div,
ul,
h1,
h2,
h3,
h4,
h5,
li,
p,
img,
form,
input,
textarea {
  margin: 0;
  padding: 0;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}
table,
tr,
td {
  border: 0;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
}
img {
  border: none;
  height: auto;
}
li {
  list-style: none;
}
* {
  box-sizing: border-box;
}
.img-full {
  max-width: 100%;
}
.clearall {
  clear: both;
  font-size: 1px;
  line-height: 1px;
  height: 1px;
}

.overflow {
  overflow: hidden;
}

/*=====MAIN CSS START=====*/
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.container-header {
  padding: 0 15px;
  width: 1170px;
}

.container-main {
  padding: 0 10px;
}

.overflow {
  overflow: hidden;
}

/*====question-sec====*/
.quiz-sec {
  float: left;
  width: 100%;
  background: #e0eff6;
  /* min-height: calc(100vh - 200px); */
}

.quiz-inr-box {
  display: inline-block;
  vertical-align: middle;
  max-width: 700px;
  width: 100%;
  position: relative;
  background: #fff;
  padding: 30px 0 0;
  border-radius: 8px;
}

.progress-container {
  display: inline-block;
  vertical-align: top;
  max-width: 400px;
  width: 100%;
  position: relative;
}
ul.progress-list {
  float: left;
  width: 100%;
  position: relative;
  z-index: 11;
}
ul.progress-list li {
  float: left;
  width: 16.5%;
  padding: 0 8px;
  text-align: center;
  position: relative;
}
ul.progress-list li span {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 10px;
  background: #fff;
  border: 1px solid #acacac;
  border-radius: 50px;
  position: relative;
  z-index: 3;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
}
ul.progress-list li.active span {
  background: #29ace2;
  border: 1px solid #29ace2;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
}

.progressbar {
  display: inline-block;
  vertical-align: top;
  width: 83%;
  background: #acacac;
  height: 2px;
  position: relative;
  opacity: 0;
  display: none;
}
.prgress-1 {
  float: left;
  height: 100%;
  background: #29ace2;
  position: relative;
  transition: all ease 2s;
  -webkit-transition: all ease 2s;
}
.quiz_box {
  float: left;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  min-height: 30vh;
  padding: 0 5rem;
}
.question-Box {
  float: left;
  width: 100%;
  padding: 0 3rem;
}
.question-Box-title {
  float: left;
  width: 100%;
  padding: 0 1rem;
}
.step_heading {
  font-size: 36px;
  line-height: 42px;
  color: #003c5e;
  font-weight: bold;
  text-align: center;
}
.option-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}
.option-col {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 20px;
  border: 1px solid #bebdbe;
  border-radius: 7px;
}
.desc-opt {
  float: left;
  width: 100%;
  border-radius: 8px;
  position: relative;
  height: 65px;
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  padding: 5px 30px 5px;
  transition: all 0.15s ease-in-out;
  font-family: "Figtree";
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #fff;
}
.desc-opt.uppercase {
  text-transform: uppercase;
}
.option-col input[type="radio"],
.option-col input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.option-col input[type="radio"]:checked + .desc-opt {
  background-color: #28ce73;
  background: #28ce73;
  color: #fff;
  box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
  -webkit-box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
}
.option-col input[type="checkbox"]:checked + .desc-opt {
  background-color: #28ce73;
  background: #28ce73;
  color: #fff;
  box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
  -webkit-box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
}
.option-col:hover .desc-opt {
  background-color: #28ce73;
  background: #28ce73;
  color: #fff;
  box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
  -webkit-box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
}
.option-col-none input[type="radio"]:checked + .desc-opt {
  background-color: #fff;
  background: #fff;
  color: #fff;
  box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
  -webkit-box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
}
.option-col-none input[type="checkbox"]:checked + .desc-opt {
  background-color: #fff;
  background: #fff;
  color: #fff;
  box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
  -webkit-box-shadow: 0 0 12px 5px rgba(40, 206, 115, 0.5);
}
.option-col-none:hover .desc-opt {
  background-color: transparent;
  color: #000;
  box-shadow: none;
}
.option-col-none:active .desc-opt {
  background-color: transparent;
  color: #000;
  box-shadow: none;
}

/*====thankyou-sec====*/
.thankyou-sec {
  float: left;
  width: 100%;
  background: #e0eff6;
  padding: 65px 0 60px;
}
.thankyou-mid-box {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px 0;
  text-align: center;
}
.thankyou-hd-box {
  float: left;
  width: 100%;
  padding: 0 30px 30px;
}
.thank-heading {
  font-size: 27px;
  line-height: 35px;
  letter-spacing: 0.3px;
  color: #003c5e;
  font-weight: 700;
}
.thank-agent-row {
  float: left;
  width: 100%;
  background: #f3f7f9;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #000;
  padding: 20px 20px;
}
.thankyou-mid-btm {
  float: left;
  width: 100%;
  padding: 20px 25px 0;
}
.thank-btn {
  float: left;
  width: 100%;
  height: 140px;
  background: #013b5e;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 0.3px;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 25px 0 25px 150px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.thank-btn span {
  display: block;
  font-size: 32px;
  line-height: 53px;
  letter-spacing: 0.3px;
  font-weight: 800;
}
.thank-btn-icn {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 90px;
  transform: translateY(-50%);
  border-radius: 10px;
}
.thank-day-txt {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.2px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}
.thank-day-txt span {
  color: #27abe3;
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.99);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.99);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.99);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.99);
  }
}

@media only screen and (max-width: 767px) {
  .container,
  .container-header,
  .container-main {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .container-main {
    padding: 0 10px;
  }

  .quiz_box {
    padding: 0 15px;
    margin-top: 25px;
    margin-bottom: 25px;
    min-height: 35vh;
  }
  .question-Box {
    float: left;
    width: 100%;
    padding: 0 2rem;
  }
  ul.progress-list li {
    padding: 0 5px;
  }
  .quiz-inr-box {
    padding: 25px 0 0;
  }
  .step_heading {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.3px;
  }
  .option-box {
    margin-top: 10px;
  }
  .option-col {
    margin-top: 15px;
  }
  .desc-opt {
    height: 60px;
    font-size: 19px;
    line-height: 25px;
  }

  /*====thankyou====*/
  .thankyou-sec {
    padding: 35px 0 40px;
  }
  .thankyou-mid-box {
    padding: 20px 0 40px !important;
  }
  .thankyou-hd-box {
    padding: 0 15px 20px;
  }
  .thank-heading {
    font-size: 21px;
    line-height: 28px;
  }
  .thank-agent-row {
    font-size: 16px;
    line-height: 22px;
    padding: 17px 15px;
  }

  .thankyou-mid-btm {
    padding: 25px 20px 0;
  }
  .thank-btn {
    height: 90px;
    font-size: 18px;
    line-height: 26px;
    padding: 18px 0 18px 75px;
  }
  .thank-btn span {
    font-size: 16px;
    line-height: 31px;
  }
  .thank-btn-icn {
    width: 45px;
    left: 15px;
  }
  .thank-day-txt {
    font-size: 17px;
    line-height: 23px;
  }
}
</rewritten_file>
