:root{
	--blue:#006fa5;
}
@font-face {
  font-family: "Montserrat";
  src:
    local("Trickster"),
    url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");

}
*{
	padding:0;
	margin:0;
}
body{
	font-family: 'Montserrat';
    font-weight: 500;
    line-height: 1.6;
	color:white;
}
h1{
	font-size:clamp(2rem, 5vw, 3.5rem);
	font-weight:600;
	line-height:1.4;
	max-width:640px;
	margin-bottom:1em;
}
a{
	color:inherit;
	text-underline-offset:2px;
}
a:hover{
	text-decoration:none;
}
.button{
	display:block;
	width:max-content;
    padding: 1em 2.5em;
    border-radius: 1.75em;
    line-height: 1;
    font-weight: 500;
	border:1px solid white;
    transition-duration: .3s;
    gap: 0px;
    position: relative;
	background:transparent;
	font-size:1rem;
	font-family:inherit;
	color:inherit;
	text-decoration:none;
	margin-top:2em;
}
.button:hover{
	border-color:transparent;
	background-color:rgba(255,255,255,.25);
}
.txt-block{
	max-width:400px;
	position:relative;
}
section{
	width:100%;
	overflow:hidden;
}
.section-inner{
	max-width:1200px;
	padding:80px 16px;
	margin:auto;
	
}
a.credit{
	position:absolute;
	right:4px;
	bottom:4px;
	font-size:.8em;
	opacity:.4;
	text-decoration:none;
}
a.credit:hover{
	opacity:1;
}
#hero{
	background:rgba(0,111,165,.8);
	position:relative;
	background-image:url('assets/images/mdp_bg.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}
#hero .section-inner{
	min-height:100vh;
	box-sizing:border-box;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	position:relative;
	
	
}
#hero::before{
	content:"";
	position:absolute;
	inset:0;
	background:var(--blue);
	opacity:.85;
}
#mdp-bg{
	position:absolute;
	object-fit:cover;
	
	opacity:.3;
	right:0;
	top:0;
	bottom:0;
	height:100%;
	min-width:70%;
	left:40%
}
footer{
	background:var(--blue);
	color:white;
	.section-inner{
		padding-top:0;
		padding-bottom:0;
	}
	p, a{
		margin:0;
	}
}
.footer-top{		
	display: flex;
	flex-direction:column;
	text-align: left;
	justify-content:space-between;
	padding:40px 0;
	gap:24px;
	
	.logo{
		max-width:250px;
	}
	.social-icon-container{
		display: flex;
		flex-direction:row;
		
		text-align: left;
		gap:24px;
		
		.social-icon > svg{
			width:32px;
			height:32px;
			fill:currentColor;
		}
		.social-icon:hover{
			opacity:.85;
		}
	}
}


.footer-bottom{
	border-top: 1px solid white;
	display: flex;
	flex-direction:column;
	justify-content:space-between;
	padding: 24px 0;
	gap: 24px;
}
@media screen and (min-width:992px){
	h1{
		margin-bottom:0;
	}
	#hero .section-inner{
		flex-direction:row;
		gap:40px;
		align-items: flex-end;
		justify-content: space-between;
		gap:24px;
		padding-bottom:30vh;
	}
	.section-inner{
		padding:80px 40px;
	}
	.footer-top{		
		flex-direction: row;
		gap: 80px;
		
	}
	.social-icon-container{
		
	}
	.footer-bottom{
		flex-direction: row;
		
	}
	.social-icon-container{
		align-self: flex-end;
	}
}