@import url('variables.css');
html {
	font-size: 62.5%;
	min-height: 100%;
}
body {
	background: var(--black);	
}

body:before {
	background: url('../img/bws-logo.svg?v=000000') no-repeat center center #fff;
	background-size: calc(100% / 3);
	
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
	transition: all .5s;
	opacity: 1;
	overflow: hidden;
}

@media (min-width: 992px) {
	body:before {
		background-size: calc(100% / 5);
	}
}

body.fade-in:before {
	opacity: 0;
	overflow: auto;
	
}

.bws-back {
	filter: grayscale(100%);
	opacity: .05;
	background: url('../img/bws.jpg') no-repeat top center;
	background-size: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 0;
}

h1 {
	font-family: var(--didot-headline);
	color: var(--white);
	text-transform: uppercase;
	font-size: 8rem;
	margin: 0;
	line-height: 7rem;
}

h2 {
	color: var(--white);
	font-family: var(--neue);
	text-transform: uppercase;
	font-size: 2.2rem;
	position: relative;
	margin-bottom: 0;
	letter-spacing: 2px;
	max-width: 25rem !important;
}

.bar {
    width: calc(70% - 32rem);
    height: 1.6rem;
    background: var(--white);
    max-width: 41rem;
}


body > .container-fluid {
	height: 14.5rem;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
}

@media (max-width: 768px) {
	h1 {
		font-size: 7rem;
		line-height: 6rem;
		
	}
	
	.bar {
		max-width: 8rem;
	}
	
	.bws-back {
		opacity: .1;
	}
}

@media (min-width: 591px) and (max-width: 768px) {
	
	.bar {
		max-width: 33rem;
	}
}