@import "contactform.css";
@import "privacypolicy.css";
@import "thankyoupage.css";

body{
	background-color: #183A1D;
	overflow-x: hidden;
}

* {
  box-sizing: none;
  margin: 0;
  padding: 0;
}

h1{
	font-weight: 800;
	font-size: 46px;
	padding: 1rem 0;
}

h2{
	font-weight: 800;
	padding: 1rem 0;
}

a{
	text-decoration: none;
	font-weight: 800;
	color:#c47b2e;
	cursor: pointer;
}

.main-container{
	margin: auto;
	background-color: #FEFBE9;
}

.section-1{
	margin-top: 5rem;
	margin-bottom: 2rem;
	padding: 0;
}

.s1-rec{
	background-color: #E1EEDD;
	border-left: 6px solid #183A1D;
	padding: 1rem;
	margin: 1rem 0;
}

.form{
	border: 2px solid #183A1D;
	background-color: #E1EEDD;
	width: 100%;
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

.form>h4{
	padding-bottom: 2rem;
	text-align: center;
	width: 80%;
}
.bttn{
	background-color: #F0A04B;
	padding: 1rem;
	margin: 0.5rem;
	width: 20rem;
	border: 0;
	border-radius: 10px;
	transition: 1s all;
}

.bttn:hover{
	background-color: #c47b2e;
}

.section-btn{
	width: 100%;
	background-color: #F0A04B;
	color:#FEFBE9;
	text-align: center;
	padding: 1rem 3rem;
	border-radius: 10px;
	cursor: pointer;
	margin: 1rem 0;
	transition: 1s all;
}

.section-btn:hover{
	background-color: #c47b2e;
}

.section-side{
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.side-img{
	max-width: 300px;
	width: 100%;
	margin-top: 5rem;
	box-sizing: border-box;
}

.navbar{
	background-color: #183A1D;
	height: 4.5rem;
	position: fixed;
	width: 100%;
	padding: 0.5rem;
}
.btn-container{
	text-align: center;
}
.btn-cont{
		width: 50%;
}
.nav-btn{
	background-color: #F0A04B;
	color: #FEFBE9;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	margin-right: 1rem;
	transition: 1s all;
}

.nav-btn:hover{
	background-color: #c47b2e;
}

.footer{
	width: 100vw;
	padding: 1rem;
	background-color: #183A1D;
	color: #FEFBE9;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 10;
	position: absolute;
}

/* ------------------------ FORM -------------------------- */


/* ----- RADIO TO BUTTON -------- */

.answer-holder input[type="radio"] {
	opacity: 0;
	position: fixed;
	width: 0;
  }
  
  .answer-holder {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:10px;
	cursor: pointer;
	align-items: center;
	color: #12263a;
	margin: 0.1rem;
	background-color: #ffbc75;
	box-shadow: rgba(139, 58, 0, 0.208) 0px 2px 4px, rgba(0, 0, 0, 0) 0px 7px 13px -3px, rgba(139, 58, 0, 0.208) 0px -3px 0px inset;
	/*box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.1) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.02) 0px 2px 1px, rgba(0, 0, 0, 0.02) 0px 4px 2px, rgba(0, 0, 0, 0.02) 0px 8px 4px, rgba(0, 0, 0, 0.02) 0px 16px 8px, rgba(0, 0, 0, 0.02) 0px 32px 16px;*/
	padding: 10px 20px;
	font-family: sans-serif, Arial;
	font-size: 16px;
	border-radius: 4px;
	width: 60%;
	transition: 1s;
  }
  
  .answer-holder[type="radio"]:checked + label {
	background-color: #7fbfcc;
  }
  
  .answer-holder[type="radio"]:focus + label {
	border: 2px dashed #444;
  }
  
  .answer-holder:hover {
	background-color: #c47b2e;
  }
  
  /* ----- FORM ------ */
  
  .form-horizontal {
	background-color: #E1EEDD;
	border: 2px solid #183A1D;
	margin: 2rem;
	color: #183A1D;
	height: 52rem;
	padding: 2rem;
	padding-top: 4rem;
	border-radius: 5px;
  }
  
  .form-h2 {
	font-weight: 800;
	font-size: 38px;
	text-align: center;
  }
  
  .form-h3 {
	font-size: 13px;
	font-style: italic;
	text-align: center;
	margin-bottom: -0.5rem;
  }
  
  .step-title {
	font-weight: 600;
	margin-bottom: 2.5rem;
  }
  
  .form-title {
	font-weight: 800;
	font-size: 40px;
	text-align: center;
  }
  
  .form-subtitle {
	font-size: 16px;
	text-align: center;
	font-weight: 600;
  }
  
  #form-text {
	display: block;
  }
  
  #form-text-mobile{
	display: none;
  }
  
  .form-group {
	margin: 0.4rem;
  }
  
  .form-control {
	margin: 0.2rem;
	background-color: #FEFBE9;
	width: 95%;
  }
  
  .form-control::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #232f3f47;
	opacity: 1; /* Firefox */
  }
  
  .form-control:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #232f3f47;
  }
  
  .form-control::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #232f3f47;
  }
  
  .check {
	padding-left: 1rem;
	margin-top: 0.5rem;
  }
  
  .return {
	color: #12263a46;
	font-weight: 600;
	cursor: pointer;
	width: fit-content;
	padding: 1rem 2rem;
	border-radius: 13px;
	margin-top: 1rem;
	transition: 1s;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
  }
  
  .termstext {
	font-size: 4px;
	text-align: justify;
  }
  
  .options {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap:20px;
  }
  
  .form-btn {
	background-color: #F0A04B;
	border-bottom: 3px solid #c47b2e;
	color: black;
	border: 0;
	border-radius: 10px;
	padding: 0.5rem;
	cursor: pointer;
	transition: 1s;
	margin-top: 1rem;
  }

  .fieldpp{
	margin-top: 1rem;
  }
  
  .form-btn:hover {
	background-color: #c47c2ede;
  }
  
  .progress {
	border-radius: 100px;
	background-color: #21342495;
	margin: auto;
	height: 0.8rem;
	margin-bottom: 1rem;
	width: 85%;
  }
  
  .progress-bar {
	background-color: #F0A04B;
  }
  
  .progress-bar-striped {
	background-image: linear-gradient(
	  45deg,
	  rgba(255, 255, 255, 0.15) 25%,
	  transparent 25%,
	  transparent 50%,
	  rgba(255, 255, 255, 0.15) 50%,
	  rgba(255, 255, 255, 0.15) 75%,
	  transparent 75%,
	  transparent
	);
	background-size: 1rem 1rem;
	border-radius: 100px;
  }
  
  .p-txt{
	text-align: center;
  }
  
  .p-txt > h3 {
	font-size: 16px;
	font-weight: 800;
  }
  
  .progress-text1 {
	width: 100%;
	text-align: left;
  }
  
  .progress-text2 {
	width: 100%;
	text-align: center;
  }
  
  .progress-text3 {
	width: 100%;
	text-align: right;
  }
  
  .errormsg {
	color: rgb(255, 94, 94);
	background-color: rgba(237, 170, 181, 0.325);
	margin: 0.5rem;
	border-radius: 20px;
	width: fit-content;
  }
  
  #termstext > label {
	font-size: 10px;
	color: #12263ab1;
	padding-top: 0.5rem;
  }
  
  #termstext > label > a {
	color: #12263a;
	font-weight: 650;
  }
  
  .title4{
	margin-bottom: -1rem;
  }
  
  .st-4{
	margin-top: -1rem;
  }
  
  #fieldbirthdate{
	display: flex;
	align-items: center;
	width: 96%;
  }
  
  .birthdate{
	padding-left: 0.3rem;
	font-size: 1rem;
  }
  
  .conditions{
	font-size: 13px;
  }
  
  .pp-link{
	color:#12263a;
	font-weight: 600;
  }
  
  .pp-link:hover{
	color:#12263a;
  }
  
  
  .next-btn{
	background-color: #183A1D;
	color: #FEFBE9;
	padding: 0.5rem 2rem;
	border-radius: 10px;
	cursor:pointer;
	text-align: center;
	margin-top: 1rem;
	transition: 1s all;
  }
  
  .next-btn:hover{
  background-color:#091b0c ;}

  /* ------------ MEDIA QUERYS ---------------- */

@media (max-width: 1200px) {
	.side1{
		display: none;
	}

	.section-1{
		width: 70%;
padding: 1rem;
margin-left: 3rem;
margin-top: 3rem;
	}

	.side-img{
		padding: 1rem;
	}
}

@media (max-width: 959px) {
	.section-1{
		width: 100%;
		width: 100%;
margin-left: 0;
margin-top: 1rem;
padding: 3rem;
	}
}

@media (max-width: 767px) {
	.section-side{
		display: none;
	}

	.form-horizontal{
		margin: 2rem 0;
		padding: 0.5rem;
		height: fit-content;
	}
}

@media (max-width: 500px) {

	.section-1{
		padding: 1rem;
		padding-top: 3rem;
	}

	.nav-btn{
	  margin-right: 0;
	  font-size: 15px;
	  padding: 0.3rem 0.8rem;
	}
	
	.img-logo{
		width: 120px;
	}

	h1{
		font-size: 35px;
	}

	.bttn{
		width: 15rem;
	}

	.form>h4{
		padding-bottom: 2rem;
		text-align: center;
		width: 80%;
	}

	.form-h2{
	font-size: 25px;
    padding: 0;
	}

	.form-title{
		font-size: 30px;
		padding: 0.5rem;
	}

	.form-subtitle{
		font-size: 12px;
	}

	.step-title {
		margin-bottom: 1.5rem;
		padding: 0;
		text-align: center;
	}

	.options{
		flex-direction: column;
	}

	.answer-holder>img{
		width: 50px;
	}

	.step-title{
		margin-bottom: 0.5rem;
	}

	.form-btn{
		width: 95%;
		
	}

	.fieldpp{
		margin: 0.7rem 0;
	}

	.form-check-label{
		font-size: 12px;
	}

	.errormsg{
		font-size: 13px;
		padding: 0.5rem 0;
	}
}