@charset "UTF-8";

/* ====== Table of content End =====*/
/* Default transition start*/
/*Default transition end*/
.wrapper {
  width: 100%;
  background-image: url("../images/background/bg_1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.m-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF9F10;
  z-index: 9;
}

.form_logo {
  top: 87px;
  left: 20px;
  z-index: 2;
}

.steps_area {
  position: relative;
}

.image_holder img {
  width: 100%;
  height: 76vh;
  background-repeat: no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 25% 50%;
  object-position: 25% 50%;
}

.step_items {
  top: 0%;
  right: -40px;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-grid;
  display: grid;
  padding: 35% 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
}

.step_items:before {
  content: "";
  width: 3px;
  height: 310px;
  top: 0%;
  right: 18px;
  position: absolute;
  background-color: #FF9F10;
  z-index: 5;
}

.step {
  width: 2.5rem;
  height: 2.5rem;
  color: #e9e9e9;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 3rem;
  z-index: 10;
}

.step:after {
  content: "";
  width: 55px;
  height: 55px;
  top: 50%;
  left: -8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-radius: 100%;
  border: 10px solid #e9e9e9;
}

.step:before {
  content: "";
  width: 3px;
  height: 90px;
  top: 230%;
  left: 19px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  background-color: white;
}

.step:last-child:before {
  display: none;
}

.step.active {
  color: #FF9F10;
}

.step.active:after {
  border-color: #FF9F10;
}

.step.active:before {
  background-color: #FF9F10;
}

.step.finish {
  color: #FF9F10;
}

.step.finish:after {
  border-color: #FF9F10;
}

.step.finish:before {
  background-color: #FF9F10;
}

.multisteps_form_panel {
  display:none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  height: 0;
}

.multisteps_form_panel.active {
  display:block;
  overflow: visible;
  height: auto;
}

.multisteps_form_panel[data-animation=scaleOut] {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.multisteps_form_panel[data-animation=scaleOut].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.multisteps_form_panel[data-animation=slideHorz] {
  left: -50px;
}

.multisteps_form_panel[data-animation=slideHorz].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  left: 0;
}

.multisteps_form_panel[data-animation=slideVert] {
  top: 30px;
}

.multisteps_form_panel[data-animation=slideVert].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  top: 0;
}

.multisteps_form_panel[data-animation=fadeIn].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.multisteps_form_panel[data-animation=scaleIn] {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.multisteps_form_panel[data-animation=scaleIn].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form_content {
  display: none;
}

.multisteps_form_panel.active .form_content {
  display: block;
}

.step_content h4 {
  color: #000a38;
  font-size: 2.22rem;
  font-weight: 800;
}

.step_content span {
  color: #ff9f10;
  font-size: 1.426875rem;
  font-weight: 700;
}

.step_progress_bar {
  width: 100%;
}

.progress {
  background-color: #e9e9e9;
}

.progress-bar {
  background: -webkit-gradient(linear, left top, right top, from(#FF9F10), to(#FF9F10));
  background: linear-gradient(to right, #FF9F10, #FF9F10);
}

.question_title h1 {
  font-size: 2rem;
  font-weight: 600;
}

.step_1 img,
.step_2 img,
.step_3 img,
.step_4 img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
}

.step_1.active img,
.step_2.active img,
.step_3.active img,
.step_4.active img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

input:checked+span.checked:after {
  content: "";
  top: 22px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 99;
  color: #FF9F10;
  font-size: 1.3125rem;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.multisteps_form_panel .progress {
    height: 0.5rem !important;
}
.form_items label {
  padding: 1rem;
  padding-bottom:0!important;
  border: 3px solid #efefef;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.form_items label:after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  top: 20.6px;
  right: 16.4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-radius: 100%;
  border: 2px solid #e2e2e2;
}


.form_items label.active {
  border: 3px solid #FF9F10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form_items label.active:before {
  display: block;
}

.form_items input {
  opacity: 0;
  visibility: hidden;
  min-height:0.1px;
}

.form_items .error+.error {
  width: 300px;
  height: 50px;
  color: red;
  top: -50px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: transparent;
  text-transform: capitalize;
  border: none;
  display: block;
  font-weight: 600;
  z-index: 999999;
}

.form_items .error+.error::after {
  display: none;
}

.form_items .error+.error::before {
  display: none;
}

.check-list.form_items label:after {
  border-radius: 0;
}

.step_box_icon img {
  padding-top: 2rem;
  width: 100%;
}

.step_box_text {
  color: #000a38;
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1.3;
}

.step_box_desc {
  color: #a9a9a9;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

.conditional {
  display: none;
}

.form-inner-area input {
  width: 100%;
  height: 52px;
  padding-left: 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  border: 2px solid #FF9F10;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 999999;
}

.form_btn a {
  color: #ffffff !important;
}

.form_btn a:hover {
  color: #000000 !important;
}

.prev_btn {
  color: #7c7878;
  font-size: 1.125rem;
  padding: 1rem;
  font-weight: 800;
  border-radius: 0.525rem;
  border: 1px solid #e1e1e1;
}

.prev_btn:hover {
  color: #ffffff;
  background: linear-gradient(to right, #FF9F10, #FF9F10);
}

.next_btn {
  font-size: 1.125rem;
  padding: 1rem;
  font-weight: 800;
  border-radius: 0.525rem;
  border: 1px solid #e1e1e1;
  background: #FF9F10 ;
}

.next_btn:hover {
  color: #000000 !important;
}

body {
  line-height: 1.65;
  font-display: swap;
  font-family: "Jost", sans-serif;
}

a,
button,
input {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
button:hover,
input:hover {
  text-decoration: none;
}

a:focus,
button:focus,
input:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

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

.in-err{
    border:1px solid rgb(217, 83, 79) !important;
}
label.error{
    color: rgb(217, 83, 79)!important;
}
/* transition - start ============================= */
a,
button {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* transition - end ============================= */
.step_area_fixed {
  position: fixed;
}

.animate_25ms {
  -webkit-animation-delay: 25ms;
  animation-delay: 25ms;
}

.animate_50ms {
  -webkit-animation-delay: 50ms;
  animation-delay: 50ms;
}

.animate_100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.animate_150ms {
  -webkit-animation-delay: 150ms;
  animation-delay: 150ms;
}

.animate_200ms {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.tick {
    position: relative;
}
.done-tick {
    width: 150px;
    height: 150px;
    border: solid 5px transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-left-color: rgb(34,208,136);
    animation: rotate-circle 0.9s linear forwards;
    animation-delay: 0.1s;
    border-radius: 50%;
    background-color: transparent;
}
.tick i {
    font-weight: 900;
    font-size: 60px;
    color: rgb(34,208,136);
    position: absolute;
    animation: tick-icon 0.8s linear forwards;
    animation-delay: 0.8s;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation-delay: 0.5s;
}


/*tick animation*/
@keyframes rotate-circle
{
  25% 
  {

  		border-left-color: rgb(34,208,136);
  }
  50% 
  {

  		border-left-color: rgb(34,208,136);
  		border-top-color: rgb(34,208,136);
  }
  75% 
  {

  		border-left-color: rgb(34,208,136);
  		border-top-color: rgb(34,208,136);
  		border-right-color: rgb(34,208,136);
  }
  100% 
  {
  		transform: rotate(360deg);
  		border-color: rgb(34,208,136);
  }
}

@keyframes tick-icon
{
  0%
  {
    font-size: 0;
    opacity: 1;
    top: 50%;
  }
  20%
  {
    font-size: 10px;
    top: 45%;
  }
  40%
  {
    font-size: 20px;
    top: 40%;
  }
  70%
  {
    font-size: 650px;
    top: 0;
  }
  100%
  {
    font-size: 70px;
    opacity: 1;
    top: 30%;
  }
}


@media screen and (max-width: 1499.98px) {
  .step_items:before {
    height: 250px;
  }
}

@media screen and (max-width: 1299.98px) {

  .step_content {
    padding-top: 0rem !important;
  }

}

@media screen and (max-width: 1199.98px) {
  .form_logo {
    margin-top: 3rem;
    position: inherit !important;
    text-align: center;
  }


  .step_content {
    padding-top: 0rem !important;
  }

  .question_title h1 {
    font-size: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 991.98px) {
  .question_title h1 {
    font-size: 1.2rem;
  }
  
  .form_items .error+.error {
    width: 300px;
    height: 50px;
    color: red;
    top: -70px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: transparent;
    text-transform: capitalize;
    border: none;
    display: block;
    font-weight: 600;
    z-index: 999999;
  }

  .step_box_text {
    font-size: 1.1rem;
    padding: 0;
  }

  .step_box_desc {
    font-size: 0.9rem;
  }

  .form_items label {
    height: auto;
  }

  label {
    margin-top: 1rem;
  }

  .step_box_icon img {
    padding-top: 0rem;
  }
}

@media screen and (max-width: 575.98px) {
  .step_content h4 {
    font-size: 1.3rem;
  }

  .step_content span {
    font-size: 0.8rem;
  }

  .question_title {
    padding: 2rem 0rem !important;
  }

  .prev_btn {
    font-size: 0.7rem;
    padding: 0.7rem;
    font-weight: 500;
  }

  .next_btn {
    font-size: 0.7rem;
    padding: 0.7rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 379.98px) {
  .prev_btn {
    font-size: 0.5rem;
    padding: 0.6rem;
  }

  .next_btn {
    font-size: 0.5rem;
    padding: 0.6rem;
  }
}