@charset "UTF-8";
/* CSS Document */

/* UNIVERSAL */

* {
	margin:0;
	padding:0;
	transition:.3s ease;
	line-height:1.2;
	box-sizing:border-box;
}

body {
	background: #b2302f;
	font-family: 'Oswald', sans-serif;
}

.clear {
	clear:both;
}

h1 {
	font-size:26px;
	text-transform:uppercase;
}

h2 {
	font-size:26px;
	text-transform:uppercase;
}


h3 {
	font-size:21px;
}


p {
	font-size: 20px;
	font-weight:200;
	line-height:1.5;
}

a {
	border:0;
	text-decoration:none;
}

@media only screen and (min-width: 667px) {
	h1 {
		font-size:31px;
	}

	h2 {
		font-size:31px;
	}


	h3 {
		font-size:28px;
	}


	p {
		font-size: 22px;
	}
	
}

/* BUTTONS */

.button {
	border-radius:12px;
	padding:2px 22px;
	display:inline-block;
	margin:22px auto 0;
	text-align:center;
	text-transform:uppercase;
	font-size:25px;
	box-shadow: 0px 0px 8px rgb(0 0 0 / 40%);
}

.button.red {
	background:#d00c09;
	color:#f4c000;
	margin:13px auto 0;
}

.button.gray {
	margin: 11px 22px;
	border-radius:0;
	width: calc(100% - 44px);
	padding: 11px 44px;
	box-shadow: 0px 0px 22px rgb(255 255 255 / 0%);
	transition:0s;
	
	
	color:#000000;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#bcbcbc+0,fdfdfd+35,ffffff+35,fdfdfd+65,cdcbcb+99 */
	backgroud:#FFFFFF;
	background: rgb(188,188,188); /* Old browsers */
	background: -moz-linear-gradient(45deg,  rgba(188,188,188,1) 0%, rgba(253,253,253,1) 35%, rgba(255,255,255,1) 35%, rgba(253,253,253,1) 65%, rgba(205,203,203,1) 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  rgba(188,188,188,1) 0%,rgba(253,253,253,1) 35%,rgba(255,255,255,1) 35%,rgba(253,253,253,1) 65%,rgba(205,203,203,1) 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  rgba(188,188,188,1) 0%,rgba(253,253,253,1) 35%,rgba(255,255,255,1) 35%,rgba(253,253,253,1) 65%,rgba(205,203,203,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bcbcbc', endColorstr='#cdcbcb',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.button.gray:hover {
	background:#FFFFFF;
	box-shadow: 0px 0px 22px rgb(255 255 255 / 50%);
}

@media only screen and (min-width: 667px) {
	.button {
		font-size:30px;
	}
	
}

@media only screen and (min-width: 1100px) {
	.button.gray {
		width: calc(25% - 55px);
		padding: 22px 44px;
	}
}


/* SNIPE */

#snipe {
	display:block;
	position:fixed;
	z-index:100;
	top:0;
	right:0;
	left:0;
	text-align:center;
	padding:13px 22px;
	box-shadow: 0px 0px 17px rgb(0 0 0 / 70%);
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cdcbcb+0,fdfdfd+35,ffffff+35,fdfdfd+65,cdcbcb+99 */
	background: rgb(205,203,203); /* Old browsers */
	background: -moz-linear-gradient(45deg,  rgba(205,203,203,1) 0%, rgba(253,253,253,1) 35%, rgba(255,255,255,1) 35%, rgba(253,253,253,1) 65%, rgba(205,203,203,1) 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  rgba(205,203,203,1) 0%,rgba(253,253,253,1) 35%,rgba(255,255,255,1) 35%,rgba(253,253,253,1) 65%,rgba(205,203,203,1) 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  rgba(205,203,203,1) 0%,rgba(253,253,253,1) 35%,rgba(255,255,255,1) 35%,rgba(253,253,253,1) 65%,rgba(205,203,203,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcbcb', endColorstr='#cdcbcb',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

#snipe h1 {
	display:block;
}

#dropdown {
	position: relative;
	display: inline-block;
}


#dropdown-content {
	display: none;
	position: absolute;
	background:rgba(0,0,0,.7);
	width: 100%;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	padding:7px 0 7px;

}

#dropdown-content a {
	padding: 8px 16px;
	text-decoration: none;
	text-transform:uppercase;
	font-size:22px;
	display: block;
	color:#FFFFFF;
}

#dropdown-content a:hover {
	background-color: rgba(0,0,0,.7);
	color:#f4c000
}

#dropdown:hover #dropdown-content {
	display: block;
}

#dropdown:hover #dropdown-button {
	background-color: #000000;
	border-radius: 12px 12px 0px 0px;
}

@media only screen and (min-width: 1240px) {
	#snipe h1 {
		display:inline-block;
	}
	#snipe .button {
		margin:0 auto 0;
	}
	#dropdown{
		margin: 0 0 0 22px;
	}
}

@media only screen and (min-width: 1300px) {
	#dropdown{
		margin: 0 0 0 55px;
	}
}

/* WRAPPER */

#wrapper {
	overflow-x: hidden
}


/* ART */

#art {
	transform: scale(1);
	z-index:-1;
	position:relative;
	padding-top:22px;
	min-height:430px;
}

#art img {
    width: 100%;
	margin: 0 auto 0;
	max-width: 1600px;
}

#art img.mobile {
	display:block;
}

#art img.desktop {
	display:none;
}

@media only screen and (min-width: 427px) {
	#art {
	min-height:auto;
}
	
}

@media only screen and (min-width: 667px) {
	
	#art {
		transform: scale(1.06);
		padding-top:0;
	}
	
	#art img {
		margin: 0 auto 0;
	}
	#art img.mobile {
		display:none;
	}
	#art img.desktop {
		display:block;
	}
}

/* CONTENT */

#content {
	background:#000000;
	color:#FFFFFF;
	text-align:center;
	padding:77px 22px;
	box-shadow:0px 0px 12px rgb(0 0 0 / 40%);
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,2b1515+100 */
	background: rgb(0,0,0); /* Old browsers */
	background: -moz-linear-gradient(45deg,  rgba(0,0,0,1) 0%, rgba(43,21,21,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  rgba(0,0,0,1) 0%,rgba(43,21,21,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  rgba(0,0,0,1) 0%,rgba(43,21,21,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#2b1515',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

#content-productions h2 {
	margin:0 auto 44px;
}

#content-about {
	padding: 44px 0 44px;
}

#content-about-left {
	width:100%;
	padding:22px;
	position:relative;
	margin:0 auto 33px;
	display:block;
}

#content-about-left img {
	
	width:100%;
	border:2px solid #b2302f;
	border-bottom:none;
}

#content-about-left:hover img {
	border:2px solid #f4c000;
	border-bottom:none;
}

#video-caption {
	color:#FFFFFF;
	position: absolute;
    z-index: 11;
    left: 22px;
    right: 22px;
    font-size: 22px;
    text-transform: uppercase;
    background: rgba(0,0,0,.7);
    padding: 11px;
    bottom: 0;
    text-align: center;
    display: block;
    margin: 0 auto 0;
	border: 2px solid #b2302f;
	border-top:none;
}

#content-about-left:hover #video-caption {
	border: 2px solid #f4c000;
	border-top:none;
	color:#f4c000;
}


#content-about-left i {
	position: absolute;
    top: 42%;
	left:48%;
	z-index: 1;
	font-size: 44px;
	opacity: .8;
	color: #FFFFFF;
	text-shadow: 0 0 12px rgb(0 0 0 / 50%);
}

#content-about-left:hover i {
	color: #f4c000;
}

#content-about-right {
	width:calc(100%);
	padding:22px;
}

#content-about-right h3 {
	margin: 0 auto 22px;
	line-height:1.4;
}

@media only screen and (min-width: 667px) {
	#content {
		padding:77px 44px;
	}

}

@media only screen and (min-width: 1100px) {
	#content-about-left {
		width:45%;
		float:left;
		padding: 0 0 0 39px;
	}
	
	#video-caption {
		left: 39px;
		right:0;
		font-size:31px;
	}

	#content-about-right {
		width:calc(55% - 44px);
		float:right;
		padding:44px 22px;
	}
}

/* FOOTER */

#footer {
	color:#FFFFFF;
	text-align:center;
	padding:44px;
}

.social {
	margin: 0 11px 0;
	display:inline-block;
}

.social i {
	color: #FFFFFF;
    font-size: 22px;
}

.social i:hover {
	color:#f4c000;
}

#footer-privacy {
	text-decoration: underline;
    color: #FFFFFF;
    margin: 22px auto 0;
    display: block;
    opacity: .5;
}


/* ANIMATION */

/* Copyright (c) 2021 by Bennett Feely (https://codepen.io/bennettfeely/pen/gbKIc) */

.left, .right {
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
	opacity:.3;
}

.left {
  -webkit-animation: left 7s ease-in-out infinite;
          animation: left 7s ease-in-out infinite;
  background: radial-gradient(at bottom left, rgba(255, 255, 255, 0.25), transparent);
}

.right {
  -webkit-animation: right 9s ease-in-out alternate infinite;
          animation: right 9s ease-in-out alternate infinite;
  background: radial-gradient(at bottom right, rgba(255, 255, 255, 0.25), transparent);
}

@-webkit-keyframes left {
  from, to {
    -webkit-clip-path: polygon(20% 0, 5% 100%, 0 100%, 0 95%, 0 0);
    clip-path: polygon(20% 0, 5% 100%, 0 100%, 0 95%, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 5% 100%, 0 100%, 0 95%, 80% 0);
    clip-path: polygon(100% 0, 5% 100%, 0 100%, 0 95%, 80% 0);
  }
}

@keyframes left {
  from, to {
    -webkit-clip-path: polygon(20% 0, 5% 100%, 0 100%, 0 95%, 0 0);
    clip-path: polygon(20% 0, 5% 100%, 0 100%, 0 95%, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 5% 100%, 0 100%, 0 95%, 80% 0);
    clip-path: polygon(100% 0, 5% 100%, 0 100%, 0 95%, 80% 0);
  }
}
@-webkit-keyframes right {
  from, to {
    -webkit-clip-path: polygon(100% 0, 100% 95%, 100% 100%, 95% 100%, 80% 0);
    clip-path: polygon(100% 0, 100% 95%, 100% 100%, 95% 100%, 80% 0);
  }
  50% {
    -webkit-clip-path: polygon(20% 0, 100% 95%, 100% 100%, 95% 100%, 0 0);
    clip-path: polygon(20% 0, 100% 95%, 100% 100%, 95% 100%, 0 0);
  }
}
@keyframes right {
  from, to {
    -webkit-clip-path: polygon(100% 0, 100% 95%, 100% 100%, 95% 100%, 80% 0);
    clip-path: polygon(100% 0, 100% 95%, 100% 100%, 95% 100%, 80% 0);
  }
  50% {
    -webkit-clip-path: polygon(20% 0, 100% 95%, 100% 100%, 95% 100%, 0 0);
    clip-path: polygon(20% 0, 100% 95%, 100% 100%, 95% 100%, 0 0);
  }
}