/*!
 *	WEBSITE DESIGNED AND DEVELOPED BY HUDSON K. GREEN (HUDSONGREEN.COM)
 *	ALL ASSETS/CODE ARE COPYRIGHT OF MCQUEEN RACING, LLC
 */


body {
	background: #eee;
	margin: 0px;
	font-family: Arial;
}

article, aside, footer, header, hgroup, main, nav, section, div {
	display: block;
}

a {
	text-decoration: none;
	color: #009ae6;
}

a:hover {
	color: #00669a;
}

.remove-bold {
	font-weight: normal;
}

.bold {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}


/**
	NAVIGATION BAR
**/

.nav-menu-items > .nav-button .fa {
	color: #00a2f3;
}

#navigation-bar {
	background: rgba(255, 255, 255, 0.25);
	background: linear-gradient(
					to bottom,
					rgba(0, 0, 0, 0.5) 0%,
					rgba(0, 0, 0, 0.0) 100%
				);
	position: fixed;
	z-index: 500;
	width: 100%;
	height: 70px;
	line-height: 68px;
	display: inline-block;
	top: 0px;
	color: #fff;
	font-size: 18px;
	transition: 0.5s background,
				0.5s color,
				0.5s height,
				0.5s line-height;
	overflow: hidden;
	overflow-x: auto;
	white-space: nowrap;
}

.navigation-bar-active {
	background: #fff !important;
	color: #111 !important;
	height: 50px !important;
	line-height: 48px !important;
	transition: 0.5s background,
				0.5s color,
				0.5s height,
				0.5s line-height;
}

.nav-menu-items {
	margin: 0px;
}

.nav-menu-items > .nav-button {
	display: inline-block;
	margin: 0 10px 0 10px;
	padding: 0 5px 0 5px;
	list-style: none;
	opacity: 0.75;
}

.nav-menu-items > .nav-logo {
	display: inline-block;
	margin: 0 10px 0 10px;
	padding: 0 5px 0 5px;
	list-style: none;
	opacity: 0.75;
	height: 50px;
}

.nav-menu-items > .nav-button:hover {
	opacity: 1;
}

.navigation-bar-active > .nav-menu-items > .nav-button:hover {
	border-bottom: 2px solid #00a2f3;
	height: 48px;
}

.nav-menu-items > .nav-button > a {
	display: block;
	text-decoration: none;
	color: inherit;
}


/**
	HEADER/SLIDESHOW
**/

#header {
	background: #bbb;
	width: 100%;
	overflow: hidden !important;
}

.header-text {
	position: absolute;
	z-index: 600;
}

.header-logo {
	position: absolute;
	width: 100%;
	z-index: 5;
	pointer-events: none;
	transition: 0.25s;
}

.header-logo.hidden {
	opacity: 0;
	transition: 0.75s;
}

.header-logo > img {
	position: relative;
	display: block;
	margin: auto;
	max-width:  	542px;
	max-height: 60%;
	top: 50%;
	transform: translateY(-50%);
}

.header-image {
	position: inherit;
}

.header-image > .img-wrapper {
	position: relative;
}

.header-image > div, .header-image > div > img {
	display: block;
	width: 100vw;
	max-height: 650px;
	object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	
	.header-image > div > img {
		max-height: none;
	}
	
}

.header-image > div > img {
	position: fixed;
	display: block;
	top: 0px;
	opacity: 0.0;
}

.slideshow-image {
	position: fixed;
	top: 0px;
	opacity: 0.0;
	z-index: -1;
	transition: opacity 0.5s ease-in-out;
}

.slideshow-image.header-img-active {
	display: inherit !important;
	opacity: 1.0;
	transition: opacity 0.5s ease-in-out;
}

.header-ctrl-wrapper {
	/*width: 300px;*/
	top: 0px;
	left: 0px;
	right: 0px;
	position: absolute;
	margin-top: 425px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.slideshow-page-btn {
	background: #fff;
	opacity: 0.25;
	width: 35px;
	height: 8px;
	margin: 5px;
	display: inline-block;
	cursor: pointer;
}

.slideshow-page-btn:hover {
	opacity: 0.65;
}

.slideshow-page-btn.slideshow-btn-active {
	opacity: 0.85;
}

.js-fixed-scroll {
	background-attachment: fixed;
}


/**
	BUTTONS
**/

.btn-rounded {
	background: #00669a;
	color: #fff;
	display: block;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 11px;
	padding-bottom: 11px;
	border-radius: 8px;
	text-align: center;
	font-family: Arial;
	font-size: 20px;
	transition: 0.25s;
}

.btn-rounded:hover {
	background: #009ae6;
	transition: 0.25s;
}

.btn-rounded.disabled, .btn-rounded.disabled:hover {
	background: #333;
	opacity: 0.5;
}


/**
	MAIN CONTENT
**/

.page-text-header {
	margin-top: 125px;
	margin-bottom: 100px;
	font-size: 45px;
	font-weight: bold;
	text-shadow: 2px 2px rgba(0, 0, 0, 0.35);
}

#main-content {
	margin-top: 450px;
}

body:not(.page-homepage, [disable-minheight]) > #main-content {
	background: #ddd;
	min-height: calc(100vh - 260px);	/* page height - (min footer height) */
}

.content-no-margin-top {
	margin-top: 0px !important;
}

.section-main {
	background: #ddd;
	padding: 25px;
	padding-left: 0px;
	padding-right: 0px;
	margin-left: auto;
	margin-right: auto;
}

.section-centered {
	text-align: center;
}

.info-wrapper {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
}

@media(min-width: 800px) {
	.info-wrapper {
		display: flex;
		margin-left: auto;
		margin-right: auto;
		max-width: 1100px;
		text-align: center;
		font-family: 'Roboto', sans-serif;
		justify-content: space-between;
	}
}

.section-info {
	display: inline-block;
	margin-top: 15px;
	width: 300px;
	text-align: center;
	vertical-align: top;
}

.section-info-icon {
	opacity: 0.75;
}

.section-info > h2 {
	color: #0089cd;
	font-size: 25px;
	font-weight: normal;
}

.section-info > p {
	font-size: 18px;
}

.section-alt {
	padding: 25px;
	margin-left: auto;
	margin-right: auto;
}

.section-about {
	background: url(../assets/background/about-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
}

.section-about-wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
}

.about-header {
	color: #0089cd;
	font-family: Arial;
}

.films-poster-wrapper {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	justify-content: space-between;
}

.films-poster-div {
	display: inline-block;
	margin-top: 15px;
	width: calc(100% / 3 - 50px);
	height: 100%;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	overflow: hidden;
	opacity: 0.75;
	transition: opacity 0.5s;
	-webkit-transform: translateZ(0);
}

.films-poster-div:hover {
	opacity: 1.0;
	transition: opacity 0.5s;
	-webkit-transform: translateZ(0);
}

.films-poster-img {
	width: 100%;
	height: 100%;
}

.films-readmore {
	background: #000;
	margin-top: -5px;
	padding: 8px 10px 8px 10px;
	text-align: left;
	opacity: 0.75;
}


.films-readmore:after {
	float: right;
	font-size: 14px;
	font-family: 'FontAwesome';
	line-height: 23px;
	content: '\f054';
}

article {
	margin: auto;
	/*margin-bottom: 300px;*/
	max-width: 1200px;
}

article > h1 {
	font-size: 2em;
}

.section-films-desc {
	padding-left: 75px;
	padding-right: 75px;
	font-size: 18px;
	font-family: 'Roboto';
}

.page-content-maxwidth {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 230px;
	max-width: 1400px;
}

@media(max-width: 664px) {
	
	.films-poster-wrapper {
		display: block;
	}
	
	.films-poster-div {
		display: block;
		margin-top: 15px;
		width: 100%;
		height: 50%;
		text-align: center;
		cursor: pointer;
		opacity: 0.75;
		transition: opacity 0.5s;
		-webkit-transform: translateZ(0);
	}
	
	.section-films-desc {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	.page-content-maxwidth {
		margin-bottom: auto;
	}
	
}


/**
	VEHICLES/MERCH
**/

.section-about.fullscreen {
	margin: 0px;
	padding: 1px;
	height: 100vh;
	line-height: 100vh;
}

.section-about.fullscreen > h1 {
	display: inline-block;
	margin: 0;
	line-height: normal;
}

.vehicle-page-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

.featured-item-card {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	display: inline-table;
	margin: 8.5px;
	width: calc(50% - 20px);
	height: 350px;
	vertical-align: top;
	border-radius: 8px;
	overflow: hidden;
	opacity: 0.85;
	transition: 0.5s;
}

.featured-item-card:hover {
	opacity: 1.0;
	transition: 0.5s;
}

.featured-item-card.full-width-card {
	width: calc(100% - 19px);
	height: 450px;
}

.featured-item-card > h1 {
	display: table-cell;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 100%;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 1.0);
	text-align: center;
	font-weight: normal;
	vertical-align: middle;
}
/*unused*/
.featured-item-card > h1 > .link-arrow {
	color: #009ae6;
}

.featured-item-card > h1 > .tag {
	background: #222;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	font-family: sans-serif;
	font-size: 75%;
	font-weight: normal;
	font-stretch: extra-condensed;
	border-radius: 10px;
}

.featured-item-card > h1 > .tag.new {
	background: #f33;
}

.featured-item-card > h1 > .tag.discontinued {
	background: #777;
}

.featured-item-card > .card-desc:before {
	display: block;
	float: left;
	padding-left: 12px;
	height: 51px;
	content: '';
}

.featured-item-card > .card-desc {
	background: rgba(0, 0, 0, 0.75);
	display: table-row;
	max-width: 100%;
	height: 50px;
	line-height: 50px;
	color: #fff;
}

.featured-item-card > .card-desc:after {
	float: right;
	padding-right: 12px;
	font-size: 18px;
	font-family: 'FontAwesome';
	content: '\f054';
}

.featured-item-card > .card-desc.external:after {
	float: right;
	padding-right: 12px;
	font-size: 18px;
	font-family: 'FontAwesome';
	content: '\f08e';
}


/**
	COMBO BLOCKS/QUOTE
**/

.quote-wrapper {
	
}

.quote-wrapper.center > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.main-quote {
	margin-bottom: 0px;
	margin-right: 108px;
	text-align: center;
	font-size: 45px;
	font-style: italic;
	font-family: Arial;
	opacity: 0.7;
}

.main-quote-author {
	margin-top: 0px;
	margin-bottom: 50px;
	margin-left: 108px;
	text-align: center;
	font-size: 28px;
	font-weight: normal;
	font-family: Arial;
	opacity: 0.5;
}

.image-text-combo-block {
	margin-top: 25px;
	/*margin-bottom: 25px;*/
}

.image-text-combo-block:after {
	display: block;
	content: '';
	clear: both;
}

.combo-block-lr {
	display: inline-block;
	width: calc(50% - 20px);
	vertical-align: top;
}

.combo-block-left {
	clear: left;
}

.combo-block-right {
	float: right;
}

img.combo-block-lr, iframe.combo-block-lr {
	border-radius: 8px;
}

.combo-block-lr > h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-family: Arial;
	font-weight: normal;
}
.combo-block-lr > p {
	margin-bottom: 50px;
	line-height: 24px;
	text-align: justify;
}

@media(min-width: 970.25px) {
	
	.combo-block-left > h1 {
		text-align: right;
	}
	
	.combo-block-force-align {
		margin-top: -7px;
	}
	
}

@media(max-width: 1200px) {
	.vehicle-page-content {
		margin-left: -10px;
		margin-right: -10px;
	}
}

@media(max-width: 970px) {
	
	.featured-item-card {
		display: table;
		margin: 8.5px 0px 8.5px 0px;
		width: 100%;
	}
	
	.featured-item-card.full-width-card {
		width: 100%;
	}
	
	.combo-block-lr {
		display: block;
		margin-top: 15px;
		width: 100%;
		float: none;
	}
	
}


/**
	FORMS
**/

form {
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	width: 50%;
}

.form-label-wrapper {
	display: inline-block;
	width: calc(50% - 10px);
}

.form-wrapper-first {
	margin-right: 15px;
}

input {
	background: transparent;
	padding: 8px;
	padding-left: 0px;
	padding-right: 0px;
	width: 100%;
	border: none;
	border-bottom: 2px solid rgba(0, 0, 0, 0.25);
	border-radius: 0px;
	font-size: 22px;
	transition: 0.25s;
}

input:focus {
	border-bottom: 2px solid rgba(0, 137, 205, 0.75);
	outline: none;
	transition: 0.25s;
}

input#submit {
	display: inline-block;
	background: #00669a;
	padding: 10px;
	width: 100%;
	/*border: 0px solid rgba(0, 137, 205, 0.75);*/
	border: 0px;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

input#submit:hover {
	background: #009ae6;
	cursor: pointer;
}

.g-recaptcha {
	
}

.form-message {
	background: transparent;
	padding: 8px;
	padding-left: 0px;
	padding-right: 0px;
	width: 100%;
	max-width: 100%;
	min-height: 100px;
	border: none;
	border-bottom: 2px solid rgba(0, 0, 0, 0.25);
	border-radius: 0px;
	font-size: 18px;
	font-family: Arial;
}

textarea:focus {
	border-bottom: 2px solid rgba(0, 137, 205, 0.75);
	outline: none;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
	-webkit-box-shadow: 0px 0px 0px 30px #ddd inset;
	transition: 0.0s;
}

.required-field {
	color: #bb0000;
}

.alert-success {
	color: #00cc00;
}

@media(max-width: 800px) {
	
	form {
		padding: 0px;
		width: 100%;
	}
	
	.form-label-wrapper {
		display: block;
		width: initial;
	}
	
	.form-wrapper-first {
		margin-bottom: 50px;
		margin-right: 0px;
	}
	
	input {
		width: 100%;
	}
	
	.form-message {
		width: 100%;
		max-width: 100%;
	}
	
	.section-form {
		padding: 10px;
	}
	
}

@media screen and (max-height: 575px) {
	#rc-imageselect, .g-recaptcha {
		transform: scale(0.77);
		-webkit-transform: scale(0.77);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
	}
}


/**
	FOOTER
**/

#footer {
	display: block;
	background: #111;
	width: 100%;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

.footer-top {
	display: flex;
	padding-top: 25px;
	padding-bottom: 25px;
	min-height: 150px;
	border-top: 0px solid #222;
	justify-content: space-between;
}


.footer-top > .footer-left > a {
	display: block;
	width: 245px;
	height: 122px;
	margin: 10px;
	margin-left: auto;
	margin-right: auto;
	background: url(../assets/logo/McQueenRacing-dark.svg);
	background-size: 245px 122px;
	background-repeat: no-repeat;
	background-position-x: center;
	opacity: 0.75;
	transition: 0.3s;
}

.footer-top > .footer-left > a:hover {
	/*background: url(../assets/logo/McQueenRacingHover.png);*/
	background-size: 245px 122.19px;
	filter: invert(1);
	opacity: 1;
	transition: 0.3s;
}

.footer-left {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	min-width: 255px;
	max-width: 375px;
	width: calc(40% - 1px);
}

.footer-divider {
	display: inline-block;
	width: 0px;
	border-right: 1px solid #222;
}

.footer-right {
	display: inline-block;
	margin: auto;
	width: calc(60% - 25px);
}

@media(max-width: 664px) {
	
	.footer-top {
		display: block;
		padding-right: 0px;
		justify-content: initial;
	}
	
	.footer-left {
		display: block;
		padding-right: 0px;
		padding-bottom: 25px;
		min-width: initial;
		max-width: initial;
		width: initial;
		border-bottom: 1px solid #222;
	}
	
	.footer-divider {
		display: none;
		border-right: 0px transparent;
	}
	
	.footer-right {
		display: block;
		margin-left: 0px;
		width: initial;
	}
	
	.media-buttons {
		margin-top: 25px !important;
	}
	
}

.footer-links {
	display: flex;
	justify-content: space-between;
}

.footer-col-right {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	max-width: 33.3%;
}

.footer-col-right > h2 {
	margin-left: 0px;
	margin-right: 0px;
	color: #777;
	text-align: left;
	font-weight: normal;
}

.footer-col-right > a {
	display: block;
	color: #0077b3;
	text-align: left;
}

.media-buttons {
	display: flex;
	justify-content: space-between;
}

.footer-media-link {
	display: inline-block;
	background: #222;
	width: 38px;
	height: 38px;
	line-height: 38px;
	margin: auto;
	padding: 5px;
	border-radius: 50%;
	font-size: 23px;
	transition: 0.5s;
}

.footer-media-link.media-twitter:hover {
	background: #1da1f2;
	color: #fff;
}

.footer-media-link.media-instagram:hover {
	background: #e95950;
	color: #fff;
}

.footer-media-link.media-facebook:hover {
	background: #3b5998;
	color: #fff;
}

.footer-media-link.media-youtube:hover {
	background: #ff0000;
	color: #fff;
}

.footer-bottom {
	display: block;
	background: #1c1c1c; /*#0089CD;*/
	color: #666;
	padding: 20px;
	height: 20px;
}

.footer-bottom > p {
	display: inline-block;
	float: left;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 25px;
	margin-right: 0px;
}

.footer-bottom > p.web-developer {
	float: right;
	margin-left: 0px !important;
	margin-right: 25px !important;
}

p.web-developer > a {
	color: #00669a;
}

p.web-developer > a:hover {
	color: #0089CD;
}

@media(max-width: 664px) {
	
	.footer-bottom > p {
		display: block;
		float: initial;
		margin-top: -8px;
		margin-bottom: 0px;
		margin-left: 0px;
		margin-right: 0px;
	}

	.footer-bottom > p.web-developer {
		float: initial;
		margin-top: 2px !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
	
}


/**
	BANNER NOTIFICATION
**/

#static-banner {
	display: block;
	height: 50px;
}

#static-banner.hidden {
	display: none;
}

.static-banner {
	background: #ff5555;
	color: #fff;
	position: fixed;
	display: block;
	bottom: 0;
	width: 100%;
	min-height: 60px;
	line-height: 60px;
	z-index: 8;
}

.banner-wrapper {
	padding-left: 20px;
}

.banner-wrapper > a {
	padding: 0 20px 0 20px;
	color: #fff;
}

.banner-wrapper > a:hover {
	color: #aaa;
}


/**
	ANIMATIONS
**/

.fade-in {
	-webkit-animation: fadein 1.0s;
    -moz-animation: fadein 1.0s;
    animation: fadein 1.0s;
}

.slide-in {
	animation: slide-in 1s forwards !important;
    -webkit-animation: slide-in 1s forwards !important;
}

.slide-out {
	animation: slide-out 1s forwards !important;
    -webkit-animation: slide-out 1s forwards !important;
}

@keyframes fadein {
	
    from {
		opacity: 0;
	}
	
    to {
		opacity: 1;
	}
	
}

/* Firefox < 16 */
@-moz-keyframes fadein {
	
    from {
		opacity: 0;
	}
	
    to {
		opacity: 1;
	}
	
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    
	from {
		opacity: 0;
	}
	
    to {
		opacity: 1;
	}
	
}

@keyframes slide-in {
    100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slide-in {
    100% {
		-webkit-transform: translateX(0%);
	}
}
    
@keyframes slide-out {
    0% {
		transform: translateX(0%);
	}
	
    100% {
		transform: translateX(200%);
	}
}

@-webkit-keyframes slide-out {
    0% {
		-webkit-transform: translateX(0%);
	}
	
    100% {
		-webkit-transform: translateX(200%);
	}
}
