/*=========MOBILE LANDSCAPE STYLES============*/

@media screen and (min-width: 480px) {

	/*START BG VIDEO SECTION STYLES*/
		.background-video {
			position: relative;
			width: 100vw;
			height: calc(100vh*0.65);
		}

		.bg-video-poster {
			width: 100vw;
			height: auto;
			top: 0;
			left: 0;
			margin: 0;
		}

		.bg-video-poster-img {
			width: 100vw;
			height: auto;
			transform: translateY(calc(100vh*-0.275));
		}

		.bg-video-iframe {
			display: block;
			width: 100vw;
			height: calc(100vh*0.65);
			transform: translateY(calc(100vh*-0.275));
			z-index: 2;
			opacity: 1;
			transition: all 0.2s ease-out;
		}
	/*END BG VIDEO SECTION STYLES*/

	/*START LANDING SECTION STYLES*/
		.landing-text-container {
			position: relative;
			width: 85vw;
			height: auto;
			margin: 0 auto;
			margin-top: 50px;
			text-align: center;
			z-index: 9;
		}
	/*END LANDING SECTION STYLES*/

	/*START BRAND LOGOS SECTION STYLES*/
		.brand-logos-container {
			position: relative;
			width: 85vw;
			height: auto;
			margin: 0 auto;
			margin-top: 75px;
			text-align: center;
			z-index: 9;
		}

		.brand-logos-header {
			position: relative;
			text-align: center;
			font-family: 'cir', sans-serif;
			font-weight: 900;
			font-size: 2.3em;
			color: #f1f1f1;
		}

		.brand-logos-wrapper {
			position: relative;
			width: calc(100% - 2vw);
			height: auto;
			overflow-x: hidden;
			margin: 0 auto;
			margin-top: 65px;
			padding-left: 2vw;
		}

		.clear-brands {
			display: block;
			clear: both;
		}

		.brand-logo {
			position: relative;
			display: inline-block;
			/*float: left;*/
			width: calc(21.25vw - 27px);
			height: auto;
			margin-right: 9px;
			margin-bottom: 55px;
			user-select: none;
		}

		.brand-logo-img {
			width: calc(21.25vw - 27px);
			height: auto;
			user-select: none;
		}
	/*END BRAND LOGOS SECTION STYLES*/

	/*START FOOTER SECTION STYLES*/
		.landing-bg-invisible {
			position: absolute;
			width: 100vw;
			height: 100vh;
			background: transparent;
			overflow: hidden !important;
			top: 0;
			left: 0;
			z-index: 3;
			user-select: none;
		}

		.landing-bg-left {
			position: absolute;
			display: none;
			width: 105vw;
			height: auto;
			top: 190px;
			left: -67vw;
			z-index: 0;
			user-select: none;
		}


		.landing-bg-right {
			position: absolute;
			display: none;
			width: 105vw;
			height: auto;
			top: -231px;
			right: -54vw;
			z-index: 0;
			user-select: none;
		}
	/*END FOOTER SECTION STYLES*/

	/*START MODAL OVERLAY STYLES*/
		/*.modal-overlay {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			padding-top: 20px;
			z-index: 0;
			background: rgba(0,0,0,0.97);
			width: 100vw;
			height: 0;
			overflow: hidden;
			opacity: 0;
			transform-origin: center;
			transform: scale(0.75);
			transition: all 0.2s ease-out;
		}

		.modal-overlay.open {
			height: 100vh;
			opacity: 1;
			transform-origin: center;
			transform: scale(1);
			z-index: 500;
			transition: all 0.2s ease-out;
		}

		.close-overlay {
			position: absolute;
			width: 30px;
			height: auto;
			right: 30px;
			top: 30px;
			cursor: pointer;
			z-index: 950;
		}*/
	/*END MODAL OVERLAY STYLES*/

	/*START REEL VIDEO OVERLAY STYLES*/
		/*.video-iframe {
			position: absolute;
			display: block;
			width: 320px;
			height: 180px;
			top: 0;
			left: 0;
			right: 0;
			margin: 0 auto;
			margin-top: calc((100vh - 180px)/2);
			z-index: 1250;
			box-shadow: 0px 0px 60px 4px rgba(255, 255, 255, 0.15);
			transform: scale(1);
			transition: all 0.2s ease-out;
		}*/
	/*END REEL VIDEO OVERLAY STYLES*/

}