@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

html, body{
	padding: 0;
	margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 320px;
    line-height: 134%;
    color: #2C3C5D;
    scroll-padding: 50px 0;

    font-family: "Inria Sans", arial, sans-serif;
    font-size: 18px;
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

a[href*="mailto:"], a[href*="tel:"], footer a{
	text-decoration: none;
	color: inherit;
	font-weight: 700;
}

a[href*="mailto:"]:hover, a[href*="tel:"]:hover, footer a:hover{
	text-decoration: underline;
}

@media (min-width: 601px){
	h2{
		font-size: 30px;
	}
}

img.logo{
	width: 100%;
	max-width: 855px;
	height: auto;
}

footer{
	padding: 20px 15px;
	background-color: #001641;
	color: #fff;
	font-weight: 700;
}

@media (max-width: 525px){
	.hide-mobile{
		display: block;
		text-align: left;
		text-indent: -9999px;
		overflow: hidden;
		height: 5px;
	}

	footer{
		text-align: center;
	}
}

@media (max-width: 1101px){

	body{
		font-size: 16px;
	}
}

@media (max-width: 900px){
	h1.hide-mobile{
		display: none;
	}
}

@media (min-width: 901px){
	footer{
		padding: 20px 30px;
		height: 65px;
	}
}

/*************/

.top{
	position: relative;
	overflow: hidden;
	max-height: 900px;
}

.top:after{
	content: '';
	display: block;
	padding-bottom: 70%;
}

.top h1, .top video, .top video source{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.top h1{
	width: calc(100% - 30px);
	max-width: calc(855px + 30px);
	background-color: rgba(255,255,255,.75);
	text-align: center;
	padding: 15px;
	z-index: 2;
	margin: 0;
}

.top h1 img{
	display: block;
}

.top video{
	z-index: 1;
	width: auto;
	height: 100%;
}

@media (min-width: 801px){

	.top:after{		
		padding-bottom: 45%;
	}

	.top video{
		width: 100%;
		height: auto;
	}

	.top h1{
		max-width: calc(855px + 60px);
		padding: 30px;
	}
}

/*************/

.bottom .width-limiter{
	max-width: 1600px;
	margin: 0 auto;
}

.bottom .width-limiter > div:not(:first-of-type){
	margin-top: 50px;
}

.bottom .width-limiter > div > .image > img{
	width: 100%;
	height: auto;
	max-width: 800px;
}

.bottom .width-limiter > div > .image{
	text-align: center;
}

@media (min-width: 901px){

	.bottom .width-limiter > div.has-image{
		display: -ms-flex;
		display: -webkit-flex;
    	display: flex;
    	justify-content: space-between;
    	align-items: center;
	}

	.bottom .width-limiter > div.has-image.right{
    	flex-direction: row-reverse;
	}

	.bottom .width-limiter > div.has-image > div{
		flex-grow: 1;
	    flex-shrink: 0;
	    flex-basis: 100%;
	    max-width: calc(100% - 530px);
	}

	.bottom .width-limiter > div.has-image > div.image{
		max-width: 500px;
	}
}

@media (min-width: 1151px){
	.bottom .width-limiter > div.has-image > div{
	    max-width: calc(100% - 630px);
	}

	.bottom .width-limiter > div.has-image > div.image{
		max-width: 600px;
	}
}

/*************/

.video-container{
	max-width: 1000px;
	margin: 0 auto;

	iframe{
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 560 / 315;
	}
}


.grey-bg, .white-bg{
	padding: 50px 15px;
}

.grey-bg{
	background-color: #eee;
}

/*.color-bg a{
	color: #fff;
	text-decoration: underline;
}*/


/*************/

.visually-hidden{
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    padding: 0;
    border: 0;
    width: 1px;
    height: 1px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.visually-hidden.focusable:focus{
    position: fixed;
    top: 0;
    left: 0;
    background: #0078BD;
    color: #fff;
    overflow: visible;
    clip: auto;
    margin: 0;
    width: 100%;
    height: auto;
    border: 1px dashed #fff;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    z-index: 100
}

header{
	background-color: #0a2240;
	padding: 0 15px;
}

header ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

header nav a{
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	display: block;
	padding: 15px 15px;
}

@media (max-width: 860px){
	header{
		height: 60px;
		position: relative;
	}

	nav{
		display: none;
	}

	nav.hover{
		display: block;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		background-color: #0078BD;
		padding: 15px 0;
		z-index: 2000;
	}

	.nav-toggle{
		position: absolute;
		right: 15px;
		top: 10px;
		width: 40px;
		height: 40px;
		display: block;
		text-align: left;
		text-indent: -9999px;
		overflow: hidden;
		background-image: url(../images/menu.svg);
		background-size: contain;
	    background-position: center;
	    background-repeat: no-repeat;
	}
}

@media (min-width: 861px){
	.nav-toggle{
		display: none;
	}

	header nav{
		text-align: center;
	}

	header li{
		display: inline-block;
		vertical-align: middle;
		max-width: 140px;
		text-align: center;
	}

	header a{
		padding: 25px 15px;
	}

	@media (min-width: 1076px){
		header li{
			max-width: 175px;
		}

		header a{
			padding: 25px 30px;
		}
	}
}

/****/

.bottom .boxes .width-limiter > div:not(:first-of-type){
	margin: 0;
}

.boxes .width-limiter > div{
	padding: 15px;
	color: #fff;
	position: relative;
}

.boxes .width-limiter > div:nth-child(1){
	background-color: #0a2240;
}

.boxes .width-limiter > div:nth-child(2){
	background-color: #055082;
}

.boxes .width-limiter > div:nth-child(3){
	background-color: #007dc3;
}

.boxes .width-limiter iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.boxes table{
	width: 100%;
	border-collapse: collapse;
}

.boxes table th{
	text-align: left;
	font-weight: 400;
}

.boxes table td{
	text-align: right;
}

.boxes table th, .boxes table td{
	padding: 30px 0;
}

.boxes table tr:first-of-type th,
.boxes table tr:first-of-type td{
	padding-top: 15px;
}

.boxes table tr:not(:last-of-type) th,
.boxes table tr:not(:last-of-type) td{
	border-bottom: 1px solid rgba(255,255,255,.5);
}

@media (max-width: 950px){
	.boxes .width-limiter > div:nth-child(2):after{
		content: '';
		display: block;
		padding-bottom: 70%;
		display: block;
	}

	.boxes{
		padding: 0;
	}
}

@media (min-width: 951px){
	.boxes .width-limiter{
		display: -ms-flex;
		display: -webkit-flex;
    	display: flex;
	}

	.boxes .width-limiter > div{
		padding: 30px;
		flex-grow: 1;
	    flex-shrink: 0;
	    flex-basis: 100%;
	    max-width: calc(100%/3);
	}

	.boxes a{
		white-space: nowrap;
	}
}
