/* ======================================== General ========================================*/
@font-face {
	font-family:"cocogoose";
	src:url("fonts/cocogoose-webfont.woff");
	font-weight:900;
}
@font-face {
	font-family:"cocogoose";
	src:url("fonts/cocogoose-Italic.ttf");
	font-style:italic;
}
body {
	font-family:"lato",sans-serif;
}
ul {
	line-height: 3rem;
}
/* ======================================== Navigation ========================================*/
.nav__btn-icon {
	margin-top:0.5rem;
	margin-bottom:0.5rem;
	margin-left:1rem;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
}
.nav__mobile-menu {
	display:flex;
	z-index:100;
	position:fixed;
	top:0;
	left:-100%;
	flex-direction:column;
	align-items:flex-end;
	width:100%;
	height:100vh;
	backdrop-filter:blur(0.25rem);
	background-color:#25282fe5;
	color:#f0f0f0;
	transition:500ms ease-in;
}
.nav__mobile-list {
	margin-bottom:1rem;
}
.nav__mobile-links {
	color:#f0f0f0;
	text-decoration:none;
}
.nav__btn-mobile {
	margin-top:0.5rem;
	margin-right:1.5rem;
	border:none;
	background:none;
	color:#f0f0f0;
	cursor:pointer;
}
.nav__mobile {
	align-self:flex-start;
	padding-left:1rem;
	text-decoration:none;
}
@media screen and (max-width:850px) {
	.nav-top,.nav__container {
			display:none;
	}
}
@media screen and (min-width:850px) {
	.nav__mobile-menu {
			display:none;
	}
	.nav__btn-icon {
			display: none;
	}
	.nav-top {
			margin-top:0;
			/* background-color:#3b3e45;*/
		background-color:#ee523c;
	}
	.nav-top__ul {
			display:flex;
			justify-content:flex-end;
			margin:0;
			margin-right:5rem;
			/* padding:0.37rem 0;*/
		padding:0.07rem 0;
			gap:1.5rem;
	}
	.nav__container {
			display:flex;
			align-items:center;
			justify-content:space-between;
			box-shadow:0 1px 5px 1px rgba(0,0,0,0.15);
	}
	.nav__container>a {
			text-decoration:none;
			width:auto;
			margin-top:1rem;
			margin-right:1rem;
			margin-bottom:1rem;
			margin-left:5rem;
	}
	.nav__ul {
			display:flex;
			align-items:center;
			margin-right:5rem;
			margin-left:5rem;
			gap:2rem;
	}
	.nav__a {
			color:#3b3e45;
			text-decoration:none;
			white-space:nowrap;
			font-size:large;
			font-weight: bold;
	}
}
/* ======================================== Hero ========================================*/
.hero-about--img {
	display:flex;
	z-index:-2;
	position:relative;
	flex-direction:column;
	justify-content:center;
	padding:6rem 0.25rem;
	padding-bottom:2.5rem;
	background-image:linear-gradient(-10deg,white 0%,rgba(255,255,255,0.5)),url("../img/knu/main_building.jpg");
	background-position:50% 40%;
	background-size:cover;
}
.hero-about__container-img {
	top:0;
	left:0;
	width:100%;
	min-height:100%;
	background:linear-gradient(-10deg,white 75%,rgba(255,255,255,0.75));
	content:"";
}
.hero-about__container {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	margin:0 1.5rem;
}
.hero-about__hgroup {
	display:flex;
	flex-direction:column;
	justify-content: center;
}
.hero__h5 {
	display:flex;
	margin-top:0;
	margin-bottom:0;
	color:#ee523c;
	font-size:1.1rem;
	/* font-size:1vh;*/
	font-weight:bolder;
	width:9rem;
}
.hero__h1 {
	margin-top:0.25rem;
	margin-bottom:1.5rem;
	color:rgb(238,82,60);
	font-size:2rem;
	font-weight:bolder;
	line-height:2rem;
}
@media screen and (min-width:850px) {
	.hero__h1 {
			margin-top:0.25rem;
			margin-bottom:1.5rem;
			color:rgb(238,82,60);
			font-size:3.5rem;
			line-height: 3.5rem;
	}
}
/* ======================================== Logo Info ========================================*/
.logo__container {
	display:flex;
	flex-direction:column;
	margin:2rem 1rem;
}
.logo__h3 {
	margin-top:1.5rem;
	font-size:1.5rem;
}
.logo__decoration {
	width:2.5rem;
	height:0.15rem;
	background:#ee523c;
}
.logo__p {
	margin-top:0rem;
	margin-bottom:2rem;
	text-align:center;
}
@media screen and (min-width:850px) {
	.logo {
			margin-left:20%;
			margin-right:20%;
	}
	.logo__h3 {
			margin-top: 0.75rem;
	}
}
/* ======================================== Footer ========================================*/
.footer__container {
	display:block;
	position:relative;
	line-height:1.5;
	align-items:center;
	justify-content:center;
	margin:10px 0 10px 0;
}
.footer__img {
	height:50px;
	padding-left:30px;
}
.footer__address {
	font:inherit;
	font-size:small;
	text-align:center;
}
.footer__copyright {
	margin:10px 0 10px 0;
	text-align:center;
	font-size:10px;
}
.footer__divline {
	margin:0 7px;
}
.footer__p {
	font-size:12px;
	display:block;
	margin:0 0 0 0;
}
br.break-t {
	display:none;
}
@media screen and (max-width:850px) {
	br.break-t {
		display: inline;
	}
}
