@media not all and (min-resolution: 0.001dpcm) {
	body>section.section {
		min-height: -webkit-fill-available;
	}
}

.hamburger{
	height: 15px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	z-index: 11;
}
.hamburger.init-black div {
	background: #000;
}
.hamburger div {
    background: #fff;
    width: 100%;
    height: 1px;
    opacity: .6;
    transition: all .4s ease;
    transform-origin: left center;
}
header.is-active .hamburger div{
	background-color: #c20403;
}
header.is-active .hamburger div:first-child{
	transform: rotate(45deg);
}
header.is-active .hamburger div:nth-child(2) {
    width: 0;
}
header.is-active .hamburger div:nth-child(3) {
    transform: rotate(-45deg);
}


.level .level-right{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.level .logo{
	width:120px;
	display: block;
	z-index: 12;
	position: relative;
}
.level .logo svg{
	width: 100%;
}
header {
	position: absolute;
	padding: 12px 20px;
}
header .container{
	padding:0;
}
header .nav li a{
	font-size: 1.3em;
	white-space: nowrap;
	padding:20px;
	display: block;
}
header .nav>li:not(:last-child){
	border-bottom: 1px solid rgba(0,0,0,.1);
}
header .nav{
	opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 10;
	margin:0;
    background: #fff;
}
header.is-active .nav {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.caption h1{
	font-size: 3em;
}
.caption p{
	font-size: 1.6em;
	width: 100%;
}
.section-center{
	padding: 130px 0;
}
.tabset>label,.batset>label{
	font-size: .9em;
	padding: 12px 0;
}

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

#principles>div>div{
	width: 100%;
}

.tab-panel h2{
	font-size: 2em;
}
.tab-panel p{
	font-size: 1.2em;
}

.section-grey p{
	font-size: 1.6em;
    letter-spacing: .2em;
}
.subtitle{
	font-size: 2em;
}

.stat h3{
	font-size: 1em;
}
.stat h2{
	font-size: 1.4em;
}

.section-footer .slogan{
	font-size: 1.4em;
}

.section-footer .contact{
	align-items: flex-start;
	font-size: 1em;
}

.section-footer footer{
	font-size: .7em;
}

.columns::-webkit-scrollbar {
    display: none;
}
.columns{
	flex-flow: nowrap;
	overflow-x: auto;
	-ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
}
.columns .column{
	flex-grow: 1;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	scroll-snap-align: start;
}

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

.divider{
	margin-bottom:30px;
}

.brand-list{
	margin-top: 40px;
	flex-direction: column;
}
.brand-list .brand-each{
	border-bottom: 1px solid #eee;
}
.brand-list .brand-each a{
	font-size: 1.3em;
	padding: 20px 0;
	display: block;
}

.tab-panel a{
	font-size: 1.2em;
}

.brand{
	flex-direction: column-reverse;
}
.brand>div:first-child{
	width: 100%;
}

.contact{
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.contact>div:last-child{
	width: 100%;
}
.contact>div:first-child{
	width: 100%;
}

.contact h2{
	font-size: 3em;
	text-align: left;
}

.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;
}