@charset "utf-8";

:root{
	--dark-blue: #2B237A;
	--lighter-lighter-blue: #F0EFF2;
	--yellow : #efbf61;
	
	--slight-shadow: 0px 4px 40px 0px rgba(43, 35, 122, 0.04);
	--shadow: 0px 8px 80px 0px rgba(43, 35, 122, 0.08);
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: var(--dark-blue);
}

html{
	scroll-behavior: smooth;
}

/*All pages components (small assests)*/
.container{
	width: 88%;
	max-width: 1120px;
	margin: 0 auto;
}

.row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.banner{
	background: url("../img/svg/banniere-otherpages.svg");
	background-size: cover;
	background-repeat: no-repeat;
	height: 692px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.banner h1{
	margin-bottom: 16px
}
.banner h3{
	margin-bottom: 40px;
}

.banner-thin{
	background: url("../img/svg/banniere-thin.svg");
	background-size: cover;
	background-repeat: no-repeat;
	height: 554px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.banner-thin h1{
	margin-bottom: 16px
}
.banner-thin h3{
	margin-bottom: 40px;
}
.CTA{
	padding: 16px 24px;
	background-color: var(--dark-blue);
	border-radius: 8px;
	text-transform: uppercase;
	color: white !important;
	transition: all .2s ease-in-out;
	display: inline-block;
}
.CTA:hover{
	background-color: white;
	color: var(--dark-blue)!important;
	box-shadow: var(--slight-shadow);
}
.CTA-light{
	padding: 16px 24px;
	border-radius: 8px;
	border: 1px solid var(--yellow);
	color: var(--dark-blue);
	transition: all .2s ease-in-out;
	display: none;
}
.CTA-form{
	border: 1px solid var(--yellow);
	border-radius: 0 8px 8px 0;
	padding: 16px 24px;
	text-transform: uppercase;
	background-color: transparent;
	transition: all .2s ease-in-out;
}

.menu-btn{
	display: none;
}

/*Header style*/
header{
	position: fixed;
	width: 100%;
	z-index: 3;
	transition: all .2s ease-in-out;
	top: 0;
}
header *{
	transition: all .2s ease-in-out;
}
nav{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 28px 0;
}

nav a img{
	height: 48px;
	width: auto;
	display: block;
}

nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 24px;
}

nav ul a {
	color: white;
}
.go-faq{
	display: none;
}
.header-solid {
	background-color: white;
	box-shadow: var(--slight-shadow);
}
.header-solid a{
	color: var(--dark-blue);
}
.header-solid .CTA{
	color: white;
}
.header-solid .CTA:hover{
	color: var(--dark-blue);
}

/*footer*/
footer{
	background: url("../img/svg/footer-xl.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 640px;
	display: flex;
	align-items: center;
}
footer *{
	color: white;
}
footer div{
	width: 48%;
}
footer .row{
	align-items: flex-start;
}
.links ul{
	display: flex;
	column-gap: 24px;
}
.links .row{
	justify-content: flex-start;
	column-gap: 24px;
}
footer img{
	width: 40px;
}

/*Responsive*/
@media screen and (max-width: 1050px){

/*Header*/
	nav ul{
		display: none;
		width: 100%;
	}
	.menu-btn{
		width: 24px;
		height: 24px;
		position: relative;
		display: block;
		cursor: pointer;
	}
	.menu-btn img{
		width: 24px;
		height: 24px;
		position: absolute;
		top: 0;
		left: 0;
	}
	#cross{
		display: none
	}
	.go-faq{
		display: block;
	}
	#header.active{
		position: fixed;
		width: 100%;
		height: 100vh;
		display: block;
		background-color: white;
	}
	#header.active nav{
		flex-wrap: wrap;
	}
	#header.active ul{
		width: 100%;
		margin: 0 auto;
		order: 2;
		display: block;
	}
	#header.active ul li{
		text-align: center;
		margin-bottom: 24px;
	}
	#header.active ul li a{
		color: var(--dark-blue);
	}
	#header.active .CTA{
		width: auto;
		color: white;
	}
	#header.active  .CTA:hover{
		color: var(--dark-blue);
	}
	.menu-btn.active #burger-dark{
		display: none;
	}
	.menu-btn.active #cross{
		display: block;
	}
	
	
/*Footer*/
	footer{
		padding: 160px 0 80px;
		height: auto;
	}
	footer .container > .row{
		flex-wrap: wrap-reverse;
		justify-content: center;
	}
	footer .links ul{
		flex-wrap: wrap;
	}
	footer .row > div{
		width: 100%;
	}
	footer .row .links{
		margin-top: 40px;
	}
	footer *{
		width: 80%;
		margin: 0 auto;
		text-align: center;
	}
}
