@font-face{
	font-family: Eurostile-LT-Std-Demi;
	src: url("/uploads/Eurostile LT Std Demi.woff");
}

@font-face{
	font-family: Eurostile-LT-Std-Medium;
	src: url("/uploads/Eurostile LT Std Medium.woff");
}

body{
	margin: 0;
	padding: 0;
	background-image: linear-gradient(to right, rgba(174, 220, 34, 0.5), rgba(0, 40, 59, 0.5)), url("/uploads/bg-img.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
}

.angled-edges-outer{
	background: rgba(250, 250, 250, 0.5);
	width: 70%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 100%);
}

.angled-edges-inner{
	background: rgba(250, 250, 250, 1.0);
	width: 90%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-container{
	display: inline-grid;
}

.logo-container{
	margin-bottom: 50px;
	text-align: center;
}

.logo-container.right{
	margin-left: 20%;
}

.logo{
	height: 110px;
}

.link{
	font-size: 42px;
	font-family: Eurostile-LT-Std-Demi;
	color: #000;
}

.link:hover{
	color: #AEDC22;
}

/**
 * Modal
 * */

 .modal{
 	visibility: hidden;
 	opacity: 0;
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: 0;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	background: rgba(0, 40, 59, 0.7);
 	transition: all .4s;
 }

 .modal:target{
 	visibility: visible;
 	opacity: 1;
 }

 .modal__content{
 	border-radius: 5px;
 	position: relative;
 	width: 50%;
 	min-height: 50%;
 	min-width: 50%;
 	background: #fff;
 	padding: 50px;
 	overflow: auto;
 }

 .modal__close{
 	position: absolute;
 	top: 10px;
 	right: 10px;
 }

 .modal__close svg{
 	cursor: pointer;
 	height: 40px;
 	width: 40px;
 }

 .modal__close svg > circle{
 	stroke: #AEDC22;
 	fill: #fff;
 }

 .modal__close svg > path{
 	stroke: #AEDC22;
 }

 .modal__close svg:hover circle{
 	fill: #fff;
 }

 .modal__close svg:hover > path{
 	stroke: #00283B;
 }

 h1{
 	text-align: center;
 	font-family: Eurostile-LT-Std-Demi;
 	font-size: 42px;
 }

 h2{
 	font-family: Eurostile-LT-Std-Demi;
 	font-size: 25px;
 }

 h3{
 	font-family: Eurostile-LT-Std-Demi;
 	font-size: 18px;
 }

 p,
 a,
 span{
 	font-family: Eurostile-LT-Std-Medium;
 	font-size: 16px;
 }

 .title{
 	text-decoration: underline;
 }

 .two-col-container{
 	display: flex;
 }

 .adress-container.right{
 	margin-left: auto;
 }

/**
 * Responsive
 * */

@media (max-width: 1700px){
	.angled-edges-outer{
		width: 80%;
	}

	.angled-edges-inner{
		width: 91%;

	}
}

@media (max-width: 1400px){
	.logo{
		height: 85px;
	}
}

@media (max-width: 1024px){
	.angled-edges-outer{
		width: 100%;
	}
}

@media (max-width: 767px){

	.angled-edges-outer,
	.angled-edges-inner{
		clip-path: none;
	}

	.angled-edges-outer{
		width: 70%;
	}

	.logo-container.right{
		margin-left: 0;
	}

	.modal{
		align-items: normal;
	}

	.modal__content{
		padding: 10px;
		width: 100%;
	}

	.two-col-container{
	 	display: block;
	 }

	.adress-container.right{
 		margin-left: 0;
 	}
}

@media (max-width: 500px){

	.angled-edges-outer{
		width: 90%;
	}

	.angled-edges-inner{
		background: rgba(250, 250, 250, 0.5);
	}
}








