* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

.layer{
	position: absolute;
	background-color: rgba(0, 0, 0, .4);
	z-index: 2;
	top:0;
	left:0;
	right:0;
	bottom:0;
}

.news-single h2{
	font-size: 1.7em;
}
.news-single p{
	font-size: 1.4em;
	line-height: 1.6em;
	font-weight: 300;
}

.divider{
	width: 100%;
	border-top: 1px solid #ccc;
	margin-bottom:60px;
}

header {
	position: absolute;
	left:0;
	right:0;
	top: 0;
	padding: 20px;
	z-index: 4;
	transition: all 200ms ease;
}

header path,
header polygon {
	transition: all 200ms ease;
}

header .nav {
	display: flex;
	list-style-type: none;
	column-gap: 50px;
	padding:0;
}

header .nav li a {
	color: #444;
	text-decoration: none;
	font-size: 1.3em;
	transition: all 200ms ease;
	font-weight: 300;
}

header.color {
	background-color: transparent;
}

header.color path,
header.color polygon {
	fill: white;
}

header.color .nav li a {
	color: white;
}

.level {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}


body>section {
	position: relative;
}

body>section.section {
	min-height: 100vh;
}

.section-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 30px;
}

.fullpage {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.caption {
	position: absolute;
	z-index: 2;
	bottom: 30px;
	left: 0;
	right: 0;
}

.caption h1 {
	font-size: 10vh;
	color: white;
	text-transform: uppercase;
	margin: 0;
}
.caption p {
	font-size: 2em;
	color: white;
	font-weight: 300;
	line-height: 2em;
	width: 70%;
}

.hamburger{
	display:none;
}

.tabset{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.tabset>input[type="radio"] {
	position: absolute;
	left: -200vw;
}

.tabset .tab-panel {
	display: none;
	flex: none;
    width: 100%;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
	display: block;
}

.tabset>label {
	position: relative;
	display: inline-block;
	padding: 20px 0;
	border: 1px solid transparent;
	border-bottom: 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.4em;
	color: #999;
}

.tabset>label:hover,
.tabset>input:focus+label,
.tabset>input:checked+label {
	color: #E50004;
}

#philosophy p{
	margin-top: 20vh;
	margin-left: 20vw;
}

#principles>div{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
#principles>div>div{
	width:45%;
}
#principles>div>div>h3{
	font-size: 1.4em;
	border-bottom: 1px solid #ccc;
	padding-bottom:20px;
}
#principles>div>div>p{
	font-size: 1.2em;
}

.batset{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.batset>input[type="radio"] {
	position: absolute;
	left: -200vw;
}

.tab-panels{
	flex: none;
    width: 100%;
}

.batset .tab-panel {
	display: none;
}

.batset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.batset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.batset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.batset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.batset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.batset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
	display: block;
}

.batset>label {
	position: relative;
	display: inline-block;
	padding: 20px 20px 20px 0;
	border: 1px solid transparent;
	border-bottom: 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.4em;
	padding: 20px 0;
	color: #999;
}

.batset>label:hover,
.batset>input:focus+label,
.batset>input:checked+label {
	color: #E50004;
}

.tab-panel {
	padding: 30px 0;
	border-top: 1px solid #ccc;
}
.tab-panel h2{
	font-size: 3.2em;
}
.tab-panel p{
	font-size: 1.6em;
	line-height: 2em;
	font-weight: 300;
}
.tab-panel a{
	font-size: 1.6em;
	color: #E50004;
}

.section-grey{
	background-color: #F7F7F7;
	color:#FF121A;
}
.section-grey p{
	font-size: 3.2em;
	text-transform: uppercase;
	letter-spacing: .4em;
	line-height: 1.6em;
	font-weight: bold;
}

.subtitle{
	font-size: 4em;
}

.section .container>.columns:not(:last-child){
	margin-bottom: 40px;
}

.columns{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.columns .column{
	max-width: 30%;
}

.columns .column img{
	width: 100%;
	display: block;
	opacity: .4;
}

.stat h3{
	color: #635D5D;
	font-size: 2em;
}
.stat h2{
	color: #F70000;
	font-size: 3.4em;
}

.section-footer{
	padding:40px 0;
}

.section-footer .slogan{
	font-size: 1.4em;
	line-height: 2em;
	font-weight: 300;
	letter-spacing: .4em;
}

.section-footer .contact{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	list-style-type: none;
	font-size: 1.2em;
	line-height: 2em;
	font-weight: 300;
	margin:0;
	padding:0;
}

.section-footer footer{
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid #444;
}

.brand-list{
	display: flex;
	justify-content: space-between;
}

.brand-list .brand-each a{
	text-decoration: none;
	color: #444;
	font-size: 1.6em;
	font-weight: bold;
}
.brand-list .brand-each a:hover{
	color: #E50004;
}

.brand{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.brand>div:first-child{
	width: 70%;
}
.brand>div:last-child{
	padding:4vh;
}
.brand img{
	max-width:30vh;
	max-height: 16vh;
}

.contact{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}
.contact>div:first-child{
	width: 0;
	text-align: right;
    direction: rtl;
}
.contact>div:last-child{
	width: 40%;
}

.contact h2{
	font-size: 5em;
}

.contact .form{
	width: 100%;
}
.contact .form div{
	margin-top:30px;
}
.contact .form input{
	width: 100%;
	border: none;
	outline: none;
	padding:20px;
	font-size: 1.1em;
	border-bottom: 1px solid #eee;
}
.contact .form .button{
	border: none;
	outline: none;
	padding:14px 30px;
	background:black;
	color: white;
	font-size: 1.3em;
}

.contact .form .helper{
	font-size: .8em;
    margin: 0.8em 0;
    color: crimson;
}