/* PanEuro Book (use as 400 alt) */
@font-face {
  font-family: 'Sharp Grotesk PanEuro';
  src: url('./SharpGroteskPanEuro-Book20.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* PanEuro Medium 24 (medium alt — 500) */
@font-face {
  font-family: 'Sharp Grotesk PanEuro';
  src: url('./SharpGroteskPanEuro-Semi40020.otf') format('opentype');
  font-weight: 450;
  font-style: normal;
}

/* PanEuro Medium 24 (medium alt — 500) */
@font-face {
  font-family: 'Sharp Grotesk PanEuro';
  src: url('./SharpGroteskPanEuro-Medium24.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* PanEuro Book 24 (slightly heavier — use 450) */
@font-face {
  font-family: 'Sharp Grotesk PanEuro';
  src: url('./SharpGroteskPanEuro-Book24.otf') format('opentype');
  font-weight: 550;
  font-style: normal;
}
:root
{
	--bs-font-sans-serif:"Sharp Grotesk PanEuro";
	--bs-body-font-family:"Sharp Grotesk PanEuro";
	--bs-body-color:#01004c;
}

.image_container
{
	position: relative;
}

.text_container
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
}
.text h1
{
	font-size: 2vmax;
}
.text
{
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	bottom: 10%;
	text-align: center;
	color: white;
}
.text:before
{
	position: absolute;
    display: block;
    content: '';
    width: 100px;
    height: 100px;
    border-left: 1px solid white;
    border-top: 1px solid white;
    left: -30px;
    top: -30px;
}
.text:after
{
    position: absolute;
    display: block;
    content: '';
    width: 100px;
    height: 100px;
    right: -30px;
    bottom: -30px;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
}
.header_text
{
	text-align: center;
	font-weight: 550;
}

.content_text
{
	text-align: center;
	font-weight: 400;
}

#footer
{
	background-color: #01004c;
	color: white;
}
.footer_container .row
{
 	align-items: center;
}
.social_cont
{
	justify-content: flex-end;
}
.social
{
	margin: 10px;
	max-width: 25px;
}
.social a
{
	color: wihte;
	width: 100%;
}
.social a img
{
	width: 100%;
}
.contact_info a
{
	color: white;
	text-decoration: none;
	text-align: center;
}
.contact_info a:hover
{
    text-decoration: underline;
}
.logo_container
{
	text-align: end;
}
.first_half
{
	border-right: 1px solid white;
}

@media only screen and (max-width: 770px) 
{
	.first_half
	{
		border-right: none;
	}
	.logo_container {
	    text-align: center;
	}
	.social_cont
	{
		justify-content: center;
	}
	.contact_info .d-flex
	{
		justify-content: center;
	}

}
@media only screen and (max-width: 600px) {

	.text {
	    position: absolute;
	    transform: translate(-50%,-15%);
	    left: 50%;
	    bottom: 5%;
	    text-align: center;
	    color: white;
	}

	.text:before{
	    width: 50px;
	    height: 50px;
	    left: -10px;
	    top: -10px;
	}
	.text:after
	{
		width: 50px;
	    height: 50px;
	    right: -10px;
	    bottom: -10px;
	}
	.social_cont
	{
		justify-content: center;
	}
}