  @font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica'), url('../fonts/Helvetica.woff') format('woff');
 }
 :root{
 	--black:000;
 	--white:#FFF;
 	--darkbluie:#121b27;
 	--lightgolden:#e2caa2;
 	--bluesecondary:#1d2c40;
 	--bluetertiry:#283649;
}
img{
	max-width: 100%;
}
.up_down_Space{
	padding-top: 60px;
	padding-bottom: 60px;
}

.wos-multistep-form{
	background-color: var(--darkbluie);
	color: var(--white);
	padding: 40px;
	border-radius: 20px;
}

.form_borarea{
	background-color: var(--lightgolden);
	border-radius: 30px;
	width: 80%;
	display: table;
	margin: 0 auto;
	height: 6px;
}
.wos_form_multistep_area{
	padding: 30px 0;  
	position: relative;
	margin-top: 40px;
	left: -20px;
}
.wos_form_steps_area{
	position: absolute;
	width: 100%;
	top: -40px;
	left: 0;
}

.wos_form_steps_area ul{
	list-style-type: none;
	padding-left: 0;
	display: flex;
    gap: 0px;
}
.wos_form_steps_area ul li{
	display: inline-block;
    width: 25%;
    text-align: center;
}
.wos_form_steps_area ul li .wos_Step_circle{
	width: 85px;
	height: 85px;
	line-height: 85px;
	text-align: center;
	color: var(--white);
	background-color: var(--bluesecondary);
	font-size: 30px;
	font-weight: bold;
	border-radius: 100%;
	border: 1px solid var(--bluetertiry);
	display: table;
	margin: 0 auto;
}
.wos_form_steps_area ul li .steptitle{
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
}

.wos_activestep{
	
}
.wos_activestep .wos_Step_circle{
	background-color: var(--lightgolden) !important;
	color: var(--darkbluie) !important;
}
.wos_activestep .steptitle{
	color: var(--lightgolden) !important;
}

.wos_stepsform_fieldsarea form {}
.wos_stepsform_fieldsarea form .form-group{
	margin-bottom: 15px;
}
.wos_stepsform_fieldsarea form label{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}
.wos_stepsform_fieldsarea input, .wos_stepsform_fieldsarea select{
	color: var(--darkbluie);
	background-color: var(--white);
}

.wos_stepsform_fieldsarea input.form-control{}
.wos_buttonarea a{
	display: block;
	text-align: center;
	background-color: var(--lightgolden);
	color: var(--darkbluie);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 10px 0;
	transition: all ease-in-out 0.3s;
}
.wos_buttonarea a:hover{
	background-color: var(--bluesecondary);
	color: var(--lightgolden);
}
.wos_Steps_btn button{
	display: block;
	text-align: center;
	background-color: var(--lightgolden);
	color: var(--darkbluie);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 10px 0;
	transition: all ease-in-out 0.3s;
	width: 50%;
	border: 0;
}
.wos_Steps_btn button:hover{
	background-color: var(--bluesecondary);
	color: var(--lightgolden);
}
.wos_stepsform_fieldsarea {
	height: 100%;
	position: relative;
}
.wos_stepsform_fieldsarea .wos_buttonarea{
	position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.hide{
	display: none;
}
.wos_Steps_btn {
	display: flex;
	gap:10px;
}
.wos_Steps_btn a{
	width: calc(50% - 5px)
}


.radioarea [type="radio"]:checked,
.radioarea [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radioarea [type="radio"]:checked + label,
.radioarea [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--white);
}
.radioarea [type="radio"]:checked + label:before,
.radioarea [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--bluetertiry);
  border-radius: 100%;
  background: var(--bluesecondary);
}
.radioarea [type="radio"]:checked + label:after,
.radioarea [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--lightgolden);
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radioarea [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radioarea [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.radioarea label{
	margin-right: 10px;
}
.radioarea{
	border: 1px solid transparent;
}
.form-control:focus, .form-select:focus{
	box-shadow: unset;
	border-color: unset;
}
.error{
	border: 1px solid red;
}
.block{
	display: block;
}
.radioarea.error [type="radio"] + label:before {
  border-color: red !important;
}
.radioarea.error{
	border: unset;
}

#wos_form_thankyou_area{
	text-align: center;
	    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0px, -50%);
}
#wos_form_thankyou_area img{
	height: 80px;
}
#wos_form_thankyou_area .wos-thanks-msg{
	font-weight: bold;
	font-size: 28px;
	margin-top: 20px;
}
@media only screen and (max-width : 1024px) {}
@media only screen and (max-width : 768px) {
  .wos_form_steps_area ul li .steptitle{
  	display: none;
  }
  .wos_form_multistep_area{
  	left: unset;
  }
  .wos_form_steps_area{
  	top: -15px;
  }
  .wos_form_multistep_area{
  	margin-top: unset;
  }
  .wos_form_image{
  	height: 100%;
  }
  .wos_form_image img{
  	height: 100%;
  	object-fit: cover;
  }
  .wos_stepsform_fieldsarea .wos_buttonarea{
  	position: unset;
  }
  #wos_form_thankyou_area .wos-thanks-msg{
  	font-size: 22px
  }
}
@media only screen and (max-width : 767px) {
	.col-reverse{
		flex-direction: column-reverse;
	}
	.wos_form_image{
		margin-top: 30px;
	}
	.wos_form_steps_area ul li .wos_Step_circle{
		height: 65px;
		width: 65px;
		line-height: 65px;
		font-size: 25px;
	}
	.wos_form_steps_area ul{
		margin-bottom: 0;
	}
	.wos_form_steps_area {
        top: -5px;
    }
    .wos_form_multistep_area{
    	padding: 15px 0;
    }
    .wos_laststep_btn{
    	    flex-direction: column;
    }
    .wos_laststep_btn a, .wos_laststep_btn button{
    	width: unset;
    }
    #wos_form_thankyou_area{
    	position: unset;
    	transform: unset;
    }
     #wos_form_thankyou_area .wos-thanks-msg{
	  	font-size: 18px
	  }
}
@media only screen and (max-width : 480px) {
	.wos_form_steps_area ul li .wos_Step_circle{
		height: 45px;
		width: 45px;
		line-height: 45px;
		font-size: 18px;
	}
}