.container{
	padding: 0 20px;
	margin: auto;
}
@media (min-width: 475px){
	.container {
		max-width: 425px;
	}
}
@media (min-width: 576px){
	.container{
    	max-width: 570px;
		padding: 0 30px;
	}
}
@media (min-width: 768px){
	.container {
    	max-width: 720px;
	}
}
@media (min-width: 1024px){
	.container {
    	padding: 0 30px;
    	max-width: 1200px;
	}
}
img, svg{
	width: 100%;
	height: 100%;
}
html {
  scroll-behavior: smooth;
}
body{
	font-size: 14px;
	line-height: 24px;
	font-family: "Open Sans", "Verdana", "Roboto", sans-serif;
	font-weight: 400;
	color: #000;
	max-width: 100%;
	width: 100%;
	overflow-x: hidden;
}
section{
	margin-bottom: 70px;
	position: relative;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
}
.btn{
	padding: 10px 25px;
	color: #FFF;
	background: #175585;
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 28px;
	font-weight: 600;
}
@media(min-width:768px){
	body{
		font-size: 16px;
		line-height: 28px;
	}
	section{
		margin-bottom: 120px;
	}
	.btn{
		font-size: 18px;
		padding: 14px 30px;
	}

}



header{
	height: 70px;
}
.header-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0 15px;
}
.header-logo {
    position: relative;
    z-index: 10;
	width: auto;
	height: 40px;
}
@media(min-width: 1024px){
	header{
		height: 80px;
	}
	.header-logo{
		height: 50px;
	}
}
footer{
	background: #175585;
	color: #FFF;
}
.footer-content {
    padding: 50px 0 20px;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px;
}
.footer-top p{
    font-size: 12px;
    line-height: 18px;
}
.footer-bottom{
	padding-top: 20px;
	border-top: 1px solid #FFF;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.footer-bottom .legal-links{
	display: flex;
	grid-gap: 10px;
	justify-content: center;
}
.footer-bottom .legal-links a{
	color: #FFF;
	font-size: 12px;
	line-height: 18px;
	text-decoration: none;
}
.footer-bottom .legal-links a:nth-child(1){
	padding-right: 10px;
	border-right: 1px solid #FFF;
}
@media(min-width: 768px){
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}
@media(min-width: 1024px){
	.footer-top{
		grid-gap: 15px;
	}
}


.progress-bar{
    background: #919EA9;
}
.progress-bar span{
    display: block;
    transition: width 200ms ease;
    background: #175585;
    content: "";
    height: 3px;
}

.form {
    height: calc(100vh - 70px);
}
.form .container{
    padding-top: 50px;
}
.form-header{
    margin-bottom: 30px;
}
.form-header h1 {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #175585;
}
.form-options {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.form-footer .footer-notes p{
    text-align: center;
    color: #919EA9;
}
.form-options .loader {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
}
.input-radio{
    
}
.input-radio {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.input-radio input[type=radio]{
    height: 0;
    width: 0;
    position: absolute;
    visibility: hidden;
}
.input-radio input[type="radio"]:checked + label{
    box-shadow: 0px -5px 0px 0px #175585 inset;
}
.input-radio label {
    display: flex;
    height: 60px;
    width: 100%;
    border: 1px solid #175585;
    color: #175585;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}





.form-footer{
    
}
.form-footer .form-cta {
    position: fixed;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 15px 20px;
    background: #FFF;
    -webkit-box-shadow: 0px -5px 15px 5px rgba(0,0,0,0.1); 
    box-shadow: 0px -5px 15px 5px rgba(0,0,0,0.1);
}
.form-footer .form-cta button {
    all: unset;
    background: #175585;
    color: #FFF;
    display: flex;
    width: 100%;
    border-radius: 15px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}
.input-date,
.input-text{
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}
.input-date label,
.input-text label{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    grid-gap: 10px;
    padding: 0 10px;
}
.input-date label .error,
.input-text label .error{
    color: red;
}
.input-date input,
.input-text input{
    outline: none;
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 15px;
    border: 1px solid #175585;
    padding: 0 20px;
    color: #175585;
}
.text-input-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
@media(min-width: 768px){
    .form .container {
        padding-top: 80px;
    }
    .form-header {
        margin-bottom: 50px;
    }
    .form-header h1{
        font-size: 24px;
        line-height: 32px;
    }
    .form-options {
        min-height: 250px;
        max-width: 600px;
        margin: 0 auto 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
    }
    .input-radio{
        flex-direction: row;
        flex-wrap: wrap;
        grid-gap: 15px;
        width: 100%;
    }
    .input-radio .radio-option{
        flex-basis: calc(50% - 7.5px);
    }
    .input-radio.col-3 .radio-option {
        flex-basis: calc(33.33% - 10px);
    }
    .form-footer .form-cta {
        position: static;
        box-shadow: none;
        width: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .form-footer .form-cta button {
        max-width: 360px;
        margin: 0 auto;
        height: 60px;
        font-size: 20px;
    }
    .input-radio label {
        font-size: 18px;
        line-height: 26px;
        height: 70px;
    }
    .input-text {
        flex-basis: calc(50% - 10px);
    }
    .input-date,
    .input-text{
        max-width: 400px;
        width: 100%;
    }
    .input-date input,
    .input-text input{
        font-size: 18px;
        line-height: 26px;
        height: 70px;
    }
    .text-input-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media(min-width: 1024px){
    .form-header {
        max-width: 800px;
        margin: 0 auto 70px;
    }
    .form-header h1{
        font-size: 30px;
        line-height: 48px;
        min-height: 96px;
    }
    .form-options {
        max-width: 800px;
        flex-direction: row;
        justify-content: center;
        grid-gap: 20px;
    }
}
.form-cta button .loader {
    aspect-ratio: 1 / 1;
    height: 60px;
    width: auto;
}