* {
  box-sizing: border-box;
}
body {
	margin: 0px;
	padding: 0px;
	color: #FFF;
	background-color: #000;
	font-family: Ringside Regular A,Ringside Regular B,Rubik,Lato,Lucida Grande,Lucida Sans Unicode,Tahoma,Sans-Serif;
	max-width: 100vw;
	overflow-x: hidden;
}
/* ------------------------------- header ------------------------------- */
.header{
	position: fixed;
	top:0px;
	height: 3.5em;
	background-color: #000;
	width: 100%;
}
.logo {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	text-align: center;
	height: 3em;
	left: 0.5em;
}
.logo i{
	font-size: 3em;
	opacity: 0.2;
}
.logo h1{
	font-size: 1.2em;
	position: relative;
	top: -1.5em;
	margin: 0px;
}
.openbtn{
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	font-size: 1.5em;
	cursor: pointer;
}
.menu {
	width: 100%;
	display: none;
	justify-content: space-evenly;
}

.menulinks a {
	text-decoration: none;
	display: block;
	position: relative;
	line-height: 1rem;
	font-size: 1rem;
	color: #FFF;
}
.menulinks a::before {
	content: "";
	position: absolute;
	height: 0.25em;
	margin: 1.1em 0px;
	width: 0px;
	opacity: 0;
	background-color: #FFF8;
	transition: all 0.3s ease-in-out;
}
.menulinks a:hover::before {
	width: 100%;
	opacity: 1;
}

/* -------------------------------- main -------------------------------- */

.section, .main{
	background-attachment: fixed;
	background-size: cover;
	background-position-y: 3em;
	background-position-x: 50%;
}
.main{
	margin:3.5em 0em 2em 0em;
	background-image: url('../images/imp_1.png');
}
.section {
	padding: 2em;
}
.section:nth-child(even) {
	background-image: url('../images/imp_2.png');
}
.fullbox {
	display: inline-block;
	padding: 3em;
	background-color: #000A;
}
.fullbox h1 {
	margin: 0px;
	text-align: center;
}
.fullbox p{
	font-size: 1.1em;
	margin: 0px;
}
.fullbox img{
	max-width: 100%;
	height: auto;
}
.stars{
	margin: 0px 0px 0.5rem 0px;
	border: 0;
	color: gold;
	text-align: center;
}
.stars::after{
	content: "★";
	font-size: 1em;
	text-shadow: -2em 0, -1em 0, 1em 0, 2em 0;
}
.corner1{
	background-color: #0008;
	background-position: top 10px left 10px, bottom 10px right 10px;
	background-image: url("../images/corner1b.png"), url("../images/corner1b2.png");
	background-repeat: no-repeat;
}
.corner2{
	background-color: #0008;
	background-position: top 10px left 10px, bottom 10px right 10px;
	background-image: url("../images/corner2b.png"), url("../images/corner2b2.png");
	background-repeat: no-repeat;
}
.corner3{
	background-color: #0008;
	background-position: top 10px left 10px, bottom 10px right 10px;
	background-image: url("../images/corner3b.png"), url("../images/corner3b2.png");
	background-repeat: no-repeat;
}
.boxlink {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.boxlink a {
	width: 12em;
	padding: 0.5em;
	margin: 0.5em;
	border: 1px solid #FFF;
	border-radius: 0.25em;
	background-color: #FFFB;
	color: #000;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	font-size: 1.2em;
}
.boxlink a:hover{
	background-color: #000;
	color: #FFF;
}
.columns {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.columns img {
	max-width: 100% !important;
	height: auto;
}
.columns p {
	font-size: 0.9em;
	padding: 0em 4em;
	margin: 0px 0px 2em 0px;
	text-align: center;
}
.columns div{
	background-color: #000C;
	align-items: center;
	display: flex;
	flex-direction: column;
}
.col25 {
	width: 80%;
	margin: 1em 0em;
}

/* ------------------------------- footer ------------------------------- */

.footer {
	background-color: #000;
	z-index: 100;
	position: fixed;
	width: 100%;
	bottom: 0px;
	text-align: center;
}
.footer a {
	color: #FFF;
	text-decoration: none;
}
.footer i {
	font-size: 1.5em;
	padding: 0.25em 0.5em;;
}

/* --------------------------- screen display --------------------------- */

@media only screen and (orientation: landscape) and (min-width: 1000px) {
	.header{height: 6em;}
	.logo i{font-size: 4em;}
	.logo h1{font-size: 2em;}
	.menu {display: flex;}
	.main{margin: 6em 0em 2.7em 0em;}
	.section, .main{background-position-y: 5em;}
	.openbtn {display: none;}
	.section {padding: 4em;}
	.fullbox {padding: 4em;}
	.boxlink {flex-direction: row;}
	.boxlink a {margin: 1em 0.5em;}
	.columns {flex-direction: row;align-items: stretch}
	.col25 {width: 25%;margin: 2em 0em;}
	.footer i {font-size: 2em;padding: 0.35em 0.5em;}
}
@media only screen and (min-width: 500px) {
	.fullbox img{
		max-width: 50%;
		max-height: 15rem;
		width: auto;
		height: auto;
	}
}

/* ----------------------------- phone menu ----------------------------- */
.sidenav {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 11;
	top: 0;
	right: -100%;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 2em;
	z-index: 10;
	background-color: #000;
	display: flex;
	justify-content: center;
}

.sidenav .closebtn {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	font-size: 1.5em;
	color: #FFF;
	text-decoration: none;
}

.sidenav .menulinks {
	display: flex;
	flex-flow: column;
}
.sidenav .menulinks div{text-align: center;}

.sidenav .menulinks a {
	font-size: 1.5em;
	line-height: 1.5em;
	display: inline;
	margin: 1em;
}
.sidenav .menulinks a::before {
	height: 0.125em;
	margin: 1.5em 0px;
}