.footnote-vat {
    visibility: hidden;
}

#header-top-bar, header {
    background-color: #fff;
    color: #000;
}

header a {
    text-decoration: none;
    color: #000;
	text-transform: uppercase;
}

.nav-scrollbar .navbar-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
}


#footer {
    margin-top: auto;
    padding: 4rem 0 0;
    background: url(https://kahwei.surf/media/image/footer-bg.jpg);
    background-position-x: center;
    background-size: cover;
}

h1.claim {
    text-transform: uppercase;
}

.divider {
    text-transform: uppercase;
}



/* TRANSITION */
*.transition {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;				
}
/* ROTATE */
*.rotate {
	-moz-transform:  scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	-o-transform: scale(1) rotate(0deg);
	-webkit-transform: scale(1) rotate(0deg);				
	transform: scale(1) rotate(0deg);
}
*.rotate:hover {
	-moz-transform: scale(1.9) rotate(15deg);
	-ms-transform: scale(1.9) rotate(15deg);
	-o-transform: scale(1.9) rotate(15deg);
	-webkit-transform: scale(1.9) rotate(15deg);				
	transform: scale(1.9) rotate(15deg);
}
article div.box-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	overflow: hidden;
}
article div.box-wrapper div.box {
	width: 33%;
	height: 150px;
	overflow: hidden;
	position: relative;
}
article div.box-wrapper div.box:hover {
	z-index: 999;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
article div.box img {
	width: 100%;
	height: auto;
}