/*
SYTLES ADDED 5/28/2024
*/


/* REVIEWS BANNER */
.desktop-reviews {
	display: none;
}

.mobile-reviews {
	padding: .625em 0;
	margin-bottom: 1.625rem;
}

.mobile-reviews img {
	max-width: 100%;
	height: auto;
}

@media (min-width: 992px) {
	.mobile-reviews {
		display: none !important;
	}
	
	.desktop-reviews {
		display: block;
		background-color: #000;
    	padding: .25em 0;
    	margin-top: -.625em;
    	margin-bottom: .9375em;
	}
	
	.desktop-reviews img {
		width: 275px;
		max-width: 100%;
    	height: auto;
		margin-left: 10px;
	}
}


/* HOMEPAGE "AVAILABLE WORK" SECTION */
#avilable-work {
	display: block;
	width: 100%;
	margin-bottom: 51px;
}

#avilable-work h2 {
	font-size: 2rem;
	color: #666666;
	font-weight: 500;
	font-family: interstate-condensed,sans-serif;
    text-transform: uppercase;
	margin-bottom: 2rem;
}

#avilable-work iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
}

#avilable-work a {
	margin-top: 1em;
	color: #e1251b;
    display: inline-block;
    border-bottom: 1px solid #e1251b;
	font-size: 2rem;
	text-transform: uppercase;
    font-family: interstate-condensed, sans-serif;
    font-weight: 500;
}


/* NEW DOCUMENTARY SECTION */
.documentary-cols {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin-right: -10px;
	margin-left: -10px;
}

.documentary-cols > div {
	position: relative;
	width: 100%; 
	adding-right: 10px;
	padding-left: 10px;
	margin-bottom: 3rem;
}

.documentary-cols > .left {
	flex: 0 0 100%;
	max-width: 100%;
}

.documentary-cols > .right {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (max-width: 599px) {
	.documentary-cols > .right {
		display: none !important;
	}
}

@media (min-width: 600px) {
	.documentary-cols > .left {
		flex: 0 0 72%;
		max-width: 72%;
	}

	.documentary-cols > .right {
		flex: 0 0 28%;
		max-width: 28%;
	}
}

@media (min-width: 800px) and (max-width: 1399px) {
	.documentary-cols > .left {
		background: #000;
	}
	
	.vid-container {
		height: 100%;
	}
}

@media (min-width: 1400px) {
	.documentary-cols > .right img {
		height: 500px;
	}
}


/* RESPONSIVE EMBED */
.vid-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

.vid-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 0;
}