.logo-banner {
	background-color: rgba(255,255,255,0.0);
	display: inline-block;
	padding: 1em 5em;
	width: 45%;
	height: auto;
	margin:1%;
	border-radius: 10px;
}

@media screen and (max-width: 1030px) {
	.logo-banner {
		width:55%;
	}
}

@media screen and (max-width: 940px) {
	.logo-banner {
		width:65%;
	}
}

@media screen and (max-width: 820px) {
	.logo-banner {
		width:75%;
	}
}

@media screen and (max-width: 610px) {
	.logo-banner {
		width:85%;
	}
}

@media screen and (max-width: 540px) {
	.logo-banner {
		width:95%;
	}
}

.logo-banner img {
	width: 100%;
	height: auto;
}

.logo-banner > :is(h1, h2, h3, h4, h5, h6) {
	margin:1%;
}

@media screen and (max-width: 480px) {
	#bg:after {
		background-image: url("../../images/Airflow-Alt.png");
	}
}

.image.main:before{
	display:none;
}

.award {
	display:grid;
	grid-template-columns:9em auto;
	text-align:left;
	margin-bottom:2.5%;
}

.award .info {
	justify-self:start;
	display: flex;
	flex-flow: column;
	justify-content: center;
	margin:2.5%;
}

.car-stats{
	display:grid;
	grid-template-columns:50% 50%;
	text-align:center;
	margin-bottom:2.5%;
}

.car-stats .image.main{
	display:block;
	width:100%;
	margin:2.5%;
}

.car-stats .info {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	margin:2.5%;
}

.car-stats .info h1 {
	color:#FF9D0A;
}	

@media screen and (max-width: 480px){
	.car-stats h1{
		font-size: 1.0rem;
	}
	
	.car-stats h2{
		font-size: 0.6rem;
	}
}

.fas {
	text-align:center;
    position: relative;
    display: inline-block;
    background-color: #FF9D0A;
	color:#FFFFFF;
    width: 9em;
    padding: 1.75em 0 0.75em 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0em 1em 2.5em 1em;
    cursor: default;
	font-size: 80%;
}

.fas:before{
	font-size:4.5em;
}

.fas:after {
    content: '';
    position: absolute;
    bottom: -1.95em;
    left: 0;
    border-top: solid 2em #FF9D0A;
    border-left: solid 4.5em transparent;
    border-right: solid 4.5em transparent;
}

@keyframes VideoFadeIn {
	0%{
		opacity:0.0;
	}
	
	100%{
		opacity:1.0;
	}
}

#bg{
  display:none;
}
  
#videobg {
	display:block;
	position: fixed;
	left: 0;
	top: 0;
	min-width:100%;
	min-height:100%;
	background-color:#000000;
}

#videobg.mobile {
	display:none;
}

#videobg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
	min-width:100%;
	min-height:100%;
    background-image: linear-gradient(to top, rgba(19, 21, 25, 0.5), rgba(19, 21, 25, 0.5));
    z-index: 2;
}

#videobg video{
	position: absolute;
	opacity:0.0;
	width:100%;
	min-height:100%;
	animation: 2s ease-in-out 0.75s 1 VideoFadeIn;
	animation-fill-mode: forwards;  
	z-index:1;
}

body.is-article-visible #videobg video {
	-moz-filter: blur(0.2rem);
	-webkit-filter: blur(0.2rem);
	-ms-filter: blur(0.2rem);
	filter: blur(0.2rem);
}

@media (max-aspect-ratio: 1/1) {
	#videobg {
		display:none;
	}
	
	#videobg.mobile {
		display:block;
	}
}

