@charset "UTF-8";

/*
dark blue: #1d266f;
lightblue: #c9d4cf;
Orange: #c54b21;
Yellow: #fff81;
*/

html, body{
	-webkit-text-size-adjust:none;
	font-size:62.5%;	
}

body{
	font-family: "freight-big-pro", serif;
	font-weight: 400;
	font-style: normal;
	background:#304966;
	color:#fff;
	text-align: center;
	position: relative;
	height:100%;
	margin:0;
    line-height:1.4;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: clamp(1.5625rem, 1.2324rem + 1.0563vw, 2.5rem);
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	margin:0 auto;	
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.content{
	flex-grow: 1;
	padding: 0 0 10px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.content-inner{
	margin: auto;
	padding: 20px 0;
}

.main{
	padding: 0 20px;
}

.footer{
	background-image: url("../images/standing-woman.svg");
	background-position: top center;
	background-size: auto 100%;
    height: 20vh;
	max-height: 200px;
	background-repeat: no-repeat;
	flex-shrink: 0;
	display: block;
	width: 100%;	
}	

.h1{
	font-size: clamp(3.3125rem, 1.267rem + 6.5455vw, 7.8125rem);
	margin: 0 auto;
	line-height: 1.2;
	font-weight: normal;
}

.h2{
	font-size: clamp(2.5rem, 2.2917rem + 0.6667vw, 3.125rem);
	margin: 0 auto;
	line-height: 1.2;
	font-weight: normal;
}

.brand{
	width: 25%;
	max-width: 120px;
	margin:40px auto;
}

.services{
	padding: 0 30px;
}

.contact-details{
	margin-top: calc(clamp(3.125rem, 2.0246rem + 3.5211vw, 6.25rem)/4);
}
 

p{
	margin:0;
}

a{
	text-decoration: none;
	color:#fff;
	display:inline-block;
	margin: 0 5px;
	transition: opacity 0.3s;
}

a:hover{
	opacity: 0.5;
	transition: opacity 0.3s;
}


@media (min-width: 768px) {
	.footer{
		height: 22vh;
		max-height: 400px;
		margin-top: 30px;
	}
	.content{
		padding: 50px 0 1.8vh;
	}
}

@media (min-height: 800px){
	html, body{	
		overflow: hidden;
	}
	.wrapper{
		position: fixed;
		overflow: hidden;
	}
}

@media screen and (orientation:portrait) {
	html, body{	
		overflow: hidden;
	}
	.wrapper{
		position: fixed;
		overflow: hidden;
	}
}


