@charset "utf-8";
/* CSS Document */
body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;padding:0}
a{color:#172c45;text-decoration:none}
a:hover{color:#cd0200;text-decoration:underline}
em{font-style:normal}
li{list-style:none}
img{border:0;display:block;}
table{border-collapse:collapse;border-spacing:0} 
p{word-wrap:break-word;}
.ind{text-indent:2em}
.border0{border:0;}
input,textarea{outline:none;}
.left{float:left;}
.right{float:right;}
.clear:{zoom:1;}
.clear::after{content:"";clear:both;display:block;height:0;font-size:0;overflow:hidden;visibility:hidden;}
.clearx{clear:both;}
.over{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.cu{cursor:pointer;}
*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

@font-face {
	font-family: "Stratos Medium";
	src: url('./font/stratos-medium.otf');
}
html,body{
	font-family:"Stratos Medium", serif;
	color: #000;
	background-color: #fff;
	font-size: 16px;
	height: 100%;
}

body{
	display: -webkit-flex;
	display: flex;
}
.bannerbox{
	background-image: url('../images/banner.jpeg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 40%;
	flex: 0 0 auto;
}
.infobox{
	flex: 1;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 0.75rem;
}
.infobox .infobox-content{
	width: 600px;
}
.infobox .infobox-content h1{
	text-indent: 10000px;
	overflow: hidden;
	height: 106px;
	background-image: url('../images/logo.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 484px 106px;
}
.infobox .infobox-content h2{
	font-size: 48px;
	letter-spacing: 0.72px;
	line-height:1.2;
	font-weight: 400;
	font-style: normal;
	margin-top: 40px;
	margin-bottom: 30px;
}
.infobox .infobox-content p{
	font-size: 24px;
	line-height:1.2;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 25px;
}
.infobox .infobox-content > span{
	font-size: 20px;
	line-height:1.4;
	font-weight: 400;
	font-style: normal;
	color: rgb(45, 86, 167);
}
.infobox .infobox-content > span a{
	color: rgb(45, 86, 167);
	text-decoration: underline;
}


@media screen and (max-width: 1200px){
	body{
		flex-direction: column;
	}
	.bannerbox{
		background-image: url('../images/banner.jpeg');
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 300px;
	}
	.infobox{
		flex: 0 1 auto;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0px 0.75rem;
	}
	.infobox .infobox-content h1{
		margin-top:35px;
	}
}
@media screen and (max-width: 992px){

}
@media screen and (max-width: 768px){
	.bannerbox{
		height: 200px;
	}
}
@media screen and (max-width: 576px){
	.infobox .infobox-content{
		width: 100%;
	}
	.infobox .infobox-content .logo{
		width: 80%;
	}
	.infobox .infobox-content h1{
		height: 0;
		background-position: center center;
		background-size: cover;
		padding-top: 22%;
	}
	.infobox .infobox-content h2{
		margin-top: 30px;
		margin-bottom: 20px;
		font-size: 40px;
	}
	.infobox .infobox-content p{
		margin-bottom: 15px;
		font-size: 20px;
	}
	.infobox .infobox-content > span{
		font-size: 18px;
	}
}









