body.front-page {
	background-color: #000
}

.front-page .war_soundy_audio_control {
	width: 20px;
	filter: none;
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    -ms-filter:     grayscale(100%);
    -o-filter:      grayscale(100%);
}

.front-page .site-inner {
	padding: 0;
	margin: 0;
	max-width: 100%;
}

.front-page .bg-primary {
	background-color: #000;
}

/* Pagination
--------------------------------------------- */

.front-page .pagination {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4em;
	z-index: 10;
	padding: 0;
	margin: 0;
	clear: none;
	display: none;
}

.front-page .pagination a {
	display: block;
	height: 20px;
	margin-bottom: 5px;
	color: white;
	position: relative;
	padding: 4px;
	outline-color: transparent;
}

.front-page .pagination a .hover-text {
	position: absolute;
	right: 15px;
	top: 2px;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
	line-height: 1;
	font-size: 12px;
}

.front-page .pagination a:hover .hover-text {
	opacity: 1;
}

.front-page .pagination a::after {
	-webkit-transition: box-shadow 0.5s ease;
	transition: box-shadow 0.5s ease;
	width: 10px;
	height: 10px;
	display: block;
	border: 1px solid;
	border-radius: 50%;
	content: '';
	position: absolute;
	margin: auto;
	top: 0;
	right: 4px;
	bottom: 0;
}

.front-page .pagination a.active::after {
	box-shadow: inset 0 0 0 5px;
}


/* Front Page Sections
---------------------------------------------------------------------------------------------------- */

.front-page-section .inner {
	overflow: hidden;
	position: relative;
}

.front-page-section .wrap {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

/* Home Section
--------------------------------------------- */

.front-page-section.home-section {
	display: table;
	overflow: hidden;
	table-layout: fixed;
	width: 100%;
	height: 100vh;
}

.front-page-section.home-section .inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.home-section .bg-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home-section .bg-image {
	animation: move 20s ease;
	-ms-animation: move 20s ease;
	-webkit-animation: move 20s ease;
	-0-animation: move 20s ease;
	-moz-animation: move 20s ease;
	animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

@-webkit-keyframes move {

	0% {
		-webkit-transform-origin: center center;
		-moz-transform-origin: center center;
		-ms-transform-origin: center center;
		-o-transform-origin: center center;
		transform-origin: center center;
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

	50% {
		transform: scale(1.2);
		-ms-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-o-transform: scale(1.2);
		-moz-transform: scale(1.2);
	}

	100% {
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

}

@-moz-keyframes move {

	0% {
		-webkit-transform-origin: center center;
		-moz-transform-origin: center center;
		-ms-transform-origin: center center;
		-o-transform-origin: center center;
		transform-origin: center center;
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

	50% {
		transform: scale(1.2);
		-ms-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-o-transform: scale(1.2);
		-moz-transform: scale(1.2);
	}

	100% {
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

}

@-o-keyframes move {

	0% {
		-webkit-transform-origin: center center;
		-moz-transform-origin: center center;
		-ms-transform-origin: center center;
		-o-transform-origin: center center;
		transform-origin: center center;
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

	50% {
		transform: scale(1.2);
		-ms-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-o-transform: scale(1.2);
		-moz-transform: scale(1.2);
	}

	100% {
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

}

@keyframes move {

	0% {
		-webkit-transform-origin: center center;
		-moz-transform-origin: center center;
		-ms-transform-origin: center center;
		-o-transform-origin: center center;
		transform-origin: center center;
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

	50% {
		transform: scale(1.2);
		-ms-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-o-transform: scale(1.2);
		-moz-transform: scale(1.2);
	}

	100% {
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-o-transform: scale(1.0);
		-moz-transform: scale(1.0);
	}

}




/*.home-section .bg-image {
	animation-name: ken-burns;
	animation-duration: 20s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	-moz-transition: ease 2s all;
	-o-transition: ease 2s all;
	-webkit-transition: ease 2s all;
	transition: ease 2s all;
}

@-webkit-keyframes ken-burns {

	0% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;

	}

	50% {
	-moz-background-size: 130%;
	-o-background-size: 130%;
	-webkit-background-size: 130%;
	background-size: 130%;
	}

	100% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;
	}

}

@-moz-keyframes ken-burns {

	0% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;

	}

	50% {
	-moz-background-size: 130%;
	-o-background-size: 130%;
	-webkit-background-size: 130%;
	background-size: 130%;
	}

	100% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;
	}

}

@-o-keyframes ken-burns {

	0% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;

	}

	50% {
	-moz-background-size: 130%;
	-o-background-size: 130%;
	-webkit-background-size: 130%;
	background-size: 130%;
	}

	100% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;
	}

}

@keyframes ken-burns {

	0% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;

	}

	50% {
	-moz-background-size: 130%;
	-o-background-size: 130%;
	-webkit-background-size: 130%;
	background-size: 130%;
	}

	100% {
	-moz-background-size: 100%;
	-o-background-size: 100%;
	-webkit-background-size: 100%;
	background-size: 100%;
	}

}*/

.home-section .home-title,
.home-section .home-description {
	text-transform: uppercase;
}

.home-section .home-title {
	font-weight: 100;
}

.home-section .home-title {
	font-size: 46px;
	font-size: 4.6rem;
}

.home-section .home-description {
	font-size: 20px;
	font-size: 2rem;
}

.home-section .home-title span,
.home-section .home-description span {
	color: darkorange;
}

.home-section .home-title,
.home-section .home-description {
	-webkit-animation: reveal 1s cubic-bezier(0, 1, 1, 1) 1 normal forwards;
	   -moz-animation: reveal 1s ease-in 1 normal forwards;
	     -o-animation: reveal 1s cubic-bezier(0, 1, 1, 1) 1 normal forwards;
	        animation: reveal 1s cubic-bezier(0, 1, 1, 1) 1 normal forwards;
}

@-webkit-keyframes reveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-moz-keyframes reveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes reveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}



/* Film Section
--------------------------------------------- */

.film-section {

}

.film-section .left {
	margin-bottom: 60px;
}

.film-section .embed-container { 
	position: relative; 
	padding-bottom: 64.67803%;
	background-image: url(https://tigercubmedia.com/device-mockups/SamsungTV/portrait_black.png);
	background-size: cover;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.film-section .embed-container iframe {
	position: absolute;
	top: 2.19619%;
	left: 1.32576%;
	width: 97.25379%;
	height: 85.2123%;
}

.film-section h2 {
	font-family: "3rd Man";
	font-size: 36px;
	font-size: 3.6rem;
}

.film-section p {
	font-size: 15px;
	font-size: 1.5rem;
}

/* Services Section
--------------------------------------------- */

.services-section {

}

.services-section h2 {
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: 100;
	color: darkorange !important;
}

.services-section p {
	font-size: 15px;
	font-size: 1.5rem;
}

.services-section ul {
	margin-bottom: 30px;
	margin-left: 10px;
}

/* Contact Section
--------------------------------------------- */

.contact-section {

}

.contact-section .left {
	margin-bottom: 60px;
}

.contact-section .inner::before {
	background: linear-gradient(120deg, rgba(255, 140, 0, 0.6) 50%, rgba(0, 0, 0, 0.6) 50%);
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.contact-section h2 {
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: 300;
	text-transform: uppercase;
}

.contact-section p {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 20px;
}

.contact-section input, 
.contact-section textarea {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
}

.contact-section input::-moz-placeholder,
.contact-section textarea::-moz-placeholder {
	color: #fff;
	opacity: 1;
}

.contact-section input::-webkit-input-placeholder,
.contact-section textarea::-webkit-input-placeholder {
	color: #fff;
}

.contact-section input[type="submit"] {
	border-color: darkorange;
	background-color: transparent;
	color: darkorange;
}

.contact-section input:hover[type="submit"],
.contact-section input:focus[type="submit"] {
	border-color: darkorange;
	background-color: darkorange;
	color: #fff;	
}

.contact-section p.phone {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
}

.contact-section .phone .svg {
	width: 20px;
	vertical-align: middle;
}

.contact-section .social li {
	display: inline-block;
	margin-right: 12px;
}

.contact-section .social .svg {
	width: 30px;
}


/* Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 960px) {

	.front-page .pagination {
		display: block;
	}

	.front-page-section {
		display: table;
		overflow: hidden;
		table-layout: fixed;
		width: 100%;
	}

	.front-page-section .inner {
		display: table-cell;
		vertical-align: middle;
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	.front-page-section {
		height: 100vh;
	}

	.front-page-section .left {
		float: left;
		width: 45%;
	}

	.front-page-section .right {
		float: right;
		width: 45%;
	}

	.film-section .left,
	.contact-section .left {
		margin-bottom: 0;
	}

	/* Home Section
	--------------------------------------------- */

	.home-section {

	}

	.home-section .home-title {
		font-size: 110px;
		font-size: 11rem;
	}

	.home-section .home-description {
		font-size: 50px;
		font-size: 5rem;
		font-weight: 100;
	}

	/* Film Section
	--------------------------------------------- */

	.film-section {

	}

	.film-section h2 {
		font-size: 62px;
		font-size: 6.2rem;
	}

	.services-section ul {
		font-size: 32px;
		font-size: 3.2rem;
		line-height: 1.2;
	}

	/* Services Section
	--------------------------------------------- */

	.services-section {

	}

	.services-section h2 {
		font-size: 56px;
		font-size: 5.6rem;
	}

	/* Contact Section
	--------------------------------------------- */

	.contact-section {
		
	}

	.contact-section .wrap {
		padding-bottom: 0;
	}

	.contact-section h2 {
		font-size: 56px;
		font-size: 5.6rem;
	}

	.contact-section p {
		font-size: 24px;
		font-size: 2.4rem;
	}


}
