@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
input[type=radio] {
    --active: #275EFE;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after,
input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked,
input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=checkbox]:disabled,
input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:disabled:checked,
input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled),
input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
input[type=radio]:not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.switch):after,
input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label,
input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }

  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: .5;
  }
}

body {
	margin: 0;
	padding: 0;
	background: white;
	font-family: Lato;
	padding-top: 60px;
	/* 

	display: flex;
	align-items: center;
 */
}

html {
	margin: 0;
	padding: 0;
	height: 100%;
}

section {
	max-width: 1600px;
	width: calc(100% - 50px);
	margin: 0 auto;
}

header {
	padding: 55px 0px;
}

header section {
	display: flex;
  	align-items: center;
  	justify-content: left;
}

header img {
	width: 100%;
	max-width: 272px;
}

header #text {
	font-size: 12px;
	color: #9aa5c1;
	font-weight: 200;
	padding-left: 50px;
	line-height: 17px;
}

header #right {
	margin-left: auto;
	display: flex;
  	align-items: center;
  	justify-content: left;
}

header #cta {
	background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    color: white;
    font-size: 27px;
    padding: 23px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
}

header i {
	padding-right: 6px;
	font-size: 20px;
}

header #email {
	font-size: 17px;
	color: #0b1247;
	margin-right: 50px;
}

header #email i {
	font-size: 14px;
}

#main {
	width: 100%;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	animation: 0.2s ease-out 0s 1 showedIn;
}

@keyframes showedIn {
  0% {
    transform: scale(0.8); 
    opacity: 0.2;
  }
  100% {
    transform: scale(1); 
    opacity: 1;
  }
}

#main h1 {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	text-align: center;

	color: #0C0055;
}

#main h2 {
	font-size: 22px; 
	color: #0b1247;
	text-align: center;
	margin: 0;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.input {
	border: 0px;
	outline: 0px;
	margin: 0px;
	padding: 10px 15px;
	background: none;	
	position: relative;
	margin-top: 25px;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    
    font-weight: 300;
    font-family: 'Lato';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;

	color: rgba(12, 0, 85, 0.4);

    border: 2px solid rgba(12, 0, 85, 0.4);
	border-radius: 10px;
}

#form {
	display: flex;
	justify-content: space-between;
}

.input.full {
	width: calc(100% - 34px);
}

.input.full2 {
	width: calc(100% - 1px);
	margin-top: 5px;
}

.form2 {
	padding-top: 10px;
	text-align: left !important;
}

.input.half {
	width: calc(50% - 46px);
}

::placeholder {
    color: rgba(12, 0, 85, 90%);
}

.input:focus {
	outline: none;
	border: 2px solid #0b1247;
	color: #0b1247!important;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.input:focus::placeholder {
	color: #000000!important;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.or {
	width: 65px;
	text-align: center;
	font-size: 11px;
	color: #9aa5c1;
	display: inline-block;
}

#options2 {
	display: flex;
	justify-content: center;
  	flex-direction: column;
	padding-top: 30px;
	text-align: left;
  	gap: 40px;
}

#options2 .option {
	width: calc(100% - 39px);
	background: #EAF3FA;
	border-radius: 7px;
	padding: 20px 25px;
	padding-top: 30px;
	text-align: left;
	display: flex;
	
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    cursor: pointer;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

#options2 .option .text {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	color: rgba(12, 0, 85, 0.4);
	width: calc(100% - 50px);
	font-family: 'Lato';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
}

#options2 img {
	width: 50px;
	margin-right: 50px;
}

#options2 .option.active {
	border-radius: 40px;
	outline: 2px solid #26be3f;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

#options2 .option.active:before {
	position: absolute;
	left: calc(50% - 12px);
	top: -15px;
	background: #26be3f;
	border-radius: 20px;
	padding: 4px 5px;
	color: white;
    font-weight: 900;
    content: "✔";
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

#options {
	display: flex;
	justify-content: center;
	padding-top: 30px;
	text-align: left;
  	gap: 40px;
}

#options .option {
	width: calc(50% - 39px);
	background: #EAF3FA;
	border-radius: 7px;
	padding: 20px 25px;
	text-align: center;
	display: flex;
	align-items: center;
  	flex-direction: column;
	
	
	
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    cursor: pointer;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

#options .option .text {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
    height: 100%;
    display: flex;
    align-items: center;

	color: rgba(12, 0, 85, 90%);
}

#options img {
	width: 50px;
}

#options .option.active {
	border-radius: 40px;
	outline: 2px solid #26be3f;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

#options .option.active:before {
	position: absolute;
	left: calc(50% - 12px);
	top: -15px;
	background: #26be3f;
	border-radius: 20px;
	padding: 4px 5px;
	color: white;
    font-weight: 900;
    content: "✔";
    line-height: 15px;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

input[type=submit] {
    color: #fff!important;
    box-shadow: 0 3px 6px 0 rgb(45 122 241 / 30%);
    background-color: #2d7af1;
    border-color: #2d7af1;
	margin-top: 35px;
	cursor: pointer;
	padding: 15px 25px;
	border-radius: 5px;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 22px;
	text-transform: uppercase;
}

input[type=submit]:hover {
    background-color: #1861d1;
    border-color: #1861d1;
}

.text2 {
	text-align: justify;
	padding-top: 20px;
} 

.text2 label {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	font-size: 10px !important;
	line-height: 14px !important;
	display: flex;
	align-items: center;

	color: rgba(12, 0, 85, 0.4);
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

footer {
	width: 100%;
	position: relative;
	height: 630px;
}

footer #left {
	width: 50%;
	height: 630px;
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: -1;
}

footer #right {
	width: 50%;
	background-color: #0039e4;
    background-image: -moz-linear-gradient(90deg, #0141b8, #04acec);
    background-image: -webkit-linear-gradient(90deg, #0141b8, #04acec);
    background-image: linear-gradient(90deg, #0141b8, #04acec);
	height: 630px;
	top: 0px;
	right: 0px;
	position: absolute;
	z-index: -1;
}

footer .colright {
	width: calc(50% - 180px);
	padding: 70px;
	float: right;
	font-weight: 700;
	color: white;
	position: relative;
}

footer .colright h3 {
	font-size: 26px;
}

footer .colright p {
	font-size: 15px;
	font-weight: 300;
	text-align: justify;
	line-height: 25px;
}

footer .colright #box {
	background: white;
	margin-left: -150px;
	margin-right: -40px;
	border-radius: 20px;
	padding: 30px;
	color: #0b1247;
	height: 140px;
	text-align: justify;
	font-size: 12px;
	color: #9aa5c1;
	line-height: 13px;
	font-weight: 300;
}

footer .colright #box h3 {
	 margin: 0;
	 color: #0b1247 !important;
	 font-weight: 300;
	 padding: 20px 0px;
}

footer .colright #box .cta {
	color: #0279d3;
	text-decoration: underline;
	text-transform: uppercase;
	padding: 10px 0px;
	font-weight: 400;
}

#google {
	background: #f7faff url(google2.png) 40px center no-repeat;
	width: 335px;
	height: 200px;
	margin: -30px;
	float: right;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	margin-left: 20px;
}

#google .txt {
	padding-top: 95px;
	padding-left: 142px;
	color: #0b1247;
	font-size: 11px;
}

a {
	color: inherit;
	text-decoration: none;
}

.lds-facebook {
    position: absolute;
    display: none;
    width: 80px;
    height: 80px;
   	bottom: 18px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0.9;
}

.lds-facebook div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 16px;
	background: #313740;
	animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
	left: 8px;
	animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
	left: 32px;
	animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
	left: 56px;
	animation-delay: 0;
} 

@keyframes lds-facebook {
	0% {
		top: 8px;
		height: 64px;
	}
	50%,
	100% {
		top: 24px;
		height: 32px;
	}
}

@media (max-width: 800px) {
	header #text, header #email {
		display: none;
		position: absolute;
	}
	footer #left {
    	width: 100%;
	    height: 630px;
	    position: relative;
	    display: none;
	}
	footer #right {
    	display: none;
	}
	footer .colright {
		background-image: -moz-linear-gradient(90deg, #0141b8, #04acec);
		background-image: -webkit-linear-gradient(90deg, #0141b8, #04acec);
		background-image: linear-gradient(90deg, #0141b8, #04acec);
		width: calc(100% - 60px);
		padding: 20px 30px;
	}
	footer .colright #box {
		margin-left: -20px;
		margin-right: -20px;
	}
	footer section {
		width: 100%;
	}
	#options {
		display: inline-block !important;
		width: 100%;
		max-width: 300px;
		padding-bottom: 0px;
		padding-top: 0px;
	}
	#options .option {
		width: calc(100% - 50px) !important;
		margin: 0px;
		margin-bottom: 20px;
		padding: 20px 25px !important; 
	}
	#options2 {
		display: inline-block !important;
		width: 100%;
		max-width: none !important;
		padding-bottom: 0px;
		
	}
	#options2 .option {
		width: calc(100% - 50px) !important;
		margin: 0px;
		margin-bottom: 20px;
		display: block !important;
		padding-top: 20px !Important;
	}
	#options2 .text {
		width: 100% !important;
	}
	#options2 img {
		display: none;
	}
	#form {
		display: inline-block !important;
		width: 100%;
	}
	#main {
		padding-top: 0px;
	}
	#switch {
		max-width: 302px;
		padding-top: 10px;
		margin: 0 auto
	}
	#switch label {
		font-size: 10px !important;
	}	
	#main h2 {
		padding: 25px 0px;
		padding-top: 40px; 
	}
	#main h1 {
		padding-bottom: 0px;
	}
	.input.half {
    	width: calc(100% - 34px) !important;
	}
	.input {
		font-size: 15px;
	}
	.or {
		width: 100%;
		padding-top: 25px;
		font-size: 15px;
	}
	footer {
		height: inherit;
	}
	section {
		width: calc(100% - 20px);
	}
	#google {
		display: none;
	}
	#switch label {
		padding-top: 5px;
	}
	#switch {
		margin-top: -20px !important;
		max-width: 100%;
	}
	body {
		display: block !important;
	}
	#options {
		padding-top: 0 !important;
		max-width: 100%;
	}
	h3 {
		padding-bottom: 15px !important;
	}
	#input_phone {
		margin-bottom: 15px;
	}
}

@media (max-width: 800px) {
	header #cta {
		display: none;
		position: absolute;
	}
	header section{
		display: block;
		text-align: center;
	}
	header img {
		width: 70%;
		max-width: 272px;
	}
	.text2 label {
   		font-size: 8px !important;
   	}
}