/*
Theme Name: Big Video
Theme URI: https://press75.com/
Author: Press75.com
Author URI: https://press75.com/
Description: Perfectly fluid full-screen video splash pages.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: big-video
*/

/*******************************************************************************

Normalization: No need to edit this.

********************************************************************************/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}


/***********************************************************************************

Setup

************************************************************************************/

html,
body {
	width: 100%;
	height: 100%;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

/***********************************************************************************

Typography

************************************************************************************/

body {
	font-family: 'montserrat', sans-serif;
	font-display: swap;
	font-size: 16px;
	line-height: 1.5;
}

h1, h2 {
	font-size: 32px;
	line-height: 1.3;
	letter-spacing: -1px;
}

a {
	text-decoration: none;

	transition-duration: 0.25s;
}

strong {
    font-weight: bold;
}

/***********************************************************************************

Icons

************************************************************************************/

@font-face {
    font-family: "ionicons";
    src: url("assets/icons/ionicons.eot?v=1.4.1");
    src: url("assets/icons/ionicons.eot?v=1.4.1#iefix") format("embedded-opentype"),
    url("assets/icons/ionicons.ttf?v=1.4.1") format("truetype"),
    url("assets/icons/ionicons.woff?v=1.4.1") format("woff"),
    url("assets/icons/ionicons.svg?v=1.4.1#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

.icon {
	font-family: 'ionicons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon.love:before {
	content: '\f443';
}

.icon.play:before {
	content: '\f488';
}

.icon.twitter:before {
	content: '\f243';
}

.icon.facebook:before {
	content: '\f231';
}

.icon.instagram:before {
	content: '\f350';
}

.icon.email:before {
	content: '\f10f';
}

.icon.close:before,
.icon.error:before {
	content: '\f404';
}

.icon.submit:before,
.icon.success:before {
	content: '\f3fd';
}

/***********************************************************************************

Loading Overlay

************************************************************************************/

#loading {
	background-color: #ffffff;

	width: 100%;
	height: 100%;

	position: fixed;
	top: 0;
	left: 0;

	z-index: 1000;
}

#loading .logo {
	width: 150px;

	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	z-index: 1010;
}

#loading .logo img {
	width: 100%;
}

/***********************************************************************************

Header & Nav

************************************************************************************/

header {
	width: -webkit-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: calc(100% - 80px);

	height: 40px;

	position: absolute;
	top: 40px;
	left: 40px;

	z-index: 120;
}

header,
header a {
	font-size: 12px;
	line-height: 40px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

header img {
	height: 100%;

	float: left;

	margin-right: 20px;
}

header nav {
	height: 40px;

	float: left;

	margin-bottom: 31px;
}

header nav a {
	float: left;

	margin-right: 20px;
}

header nav a:last-of-type {
	margin-right: 0;
}

header nav a:hover {
	color: #ffffff;
}

header .loved {
	height: 40px;

	float: right;
}

header .loved .love {
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.75);

	font-size: 18px;
	line-height: 39px;
	color: rgba(255, 255, 255, 0.95);
	text-align: center;

	width: 40px;
	height: 40px;

	float: right;

	margin-left: 10px;

	cursor: pointer;
}

header .loved .love:hover {
	border-color: rgba(255, 255, 255, 0.95);
}

header .loved .love.done {
	cursor: default;
}

/***********************************************************************************

The Big Video

************************************************************************************/

#video {
	width: 100%;
	height: 100%;

	float: left;

	position: relative;

	overflow: hidden;
}

#video video {
	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 0;

	z-index: 100;
}

/* Aspect Ratio Media Queries */

@media (min-aspect-ratio: 16/9) {
	#video video {
		width: 100%;
		height: auto;

		height: 300%;
		top: -100%;
	}
}

@media (max-aspect-ratio: 16/9) {
	#video video {
		width: auto;
		height: 100%;

		width: 300%;
		left: -100%;
	}
}

/* The Video Poster */

#video .poster {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;

	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 0;

	z-index: 110;
}

/* The Play Button */

#video .intro {
	text-align: center;

	width: -webkit-calc(80% - 80px);
	width: -moz-calc(80% - 80px);
	width: calc(80% - 80px);

	max-width: 550px;

	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	z-index: 120;
}

#video .intro h1 {
	color: rgba(255, 255, 255, 0.85);

	margin-bottom: 30px;
}

#video .intro .play {
	border-radius: 50%;

	border: 1px solid rgba(255, 255, 255, 0.85);

	font-size: 48px;
	line-height: 78px;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;

	width: 80px;
	height: 80px;

	display: inline-block;

	padding-left: 5px;
}

#video .intro .play:hover {
	border-color: #ffffff;

	color: #ffffff;
}

/* The Pause Button */

#video .pause {
	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 0;

	z-index: 0;

	cursor: pointer;
}

#video .pause.playing {
	z-index: 130;
}

/***********************************************************************************

Footer Credits & Plays

************************************************************************************/

footer {
	width: -webkit-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: calc(100% - 80px);

	height: 60px;

	position: absolute;
	bottom: 25px;
	left: 40px;

	z-index: 120;
}

footer h3 {
	margin-top: 8px;
}

footer h4 {
	font-size: 12px;
	text-transform: uppercase;
}

footer,
footer a {
	color: rgba(255, 255, 255, 0.85);
}

footer a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

footer a:hover {
	border-color: rgba(255, 255, 255, 0.85);
}

/* Video Credits */

footer .credits,
footer .credits .copy {
	float: left;
}

/* Video Plays */

footer .plays {
	text-align: right;
	right: 40px;
}

footer .plays span {
	float: right;

	padding-top: 8px;
}

/***********************************************************************************

Panels

************************************************************************************/

.panel {
	border-radius: 3px;

	background-color: #ffffff;

	width: -webkit-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: calc(100% - 80px);

	max-width: 720px;

	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 200;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

/* Panel States */

.panel.closed {
	display: none;
}

.panel.opened {
	display: block;
}

/* Close Button */

.panel .close {
	font-size: 34px;
	line-height: 70px;
	color: #555555;
	text-align: center;

	width: 70px;
	height: 70px;

	position: absolute;
	top: 0;
	right: 0;
	z-index: 220;
}

.panel .close:hover {
	color: #888888;
}

/* Form Status */

.panel .response {
	background-color: #ffffff;

	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 0;

	z-index: 210;

	display: none;
}

.panel .response .status {
	border-radius: 50%;

	background-color: #ebebeb;

	font-size: 32px;
	line-height: 58px;
	color: #ffffff;
	text-align: center;

	width: 60px;
	height: 60px;

	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.panel .response .status.error {
	background-color: #e05d39;
}

.panel .response .status.success {
	background-color: #49b266;
}

/* Panel Content - I changed width from -120 to -100 - Anthony*/

.panel .content {
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: calc(100% - 100px);

	margin: 0px auto;
	padding: 47px 0 30px;
}

.panel .content h2 {
	color: #555555;

	margin-bottom: 11px;
}

.panel .content p {
	color: #555555;

	margin-bottom: 23px;
}

.panel .content p a {
	border-bottom: 1px solid #cccccc;

	color: #555555;
}

.panel .content p a:hover {
	border-color: #555555;
}

/* Subscription Form */

.panel .content form {
	width: 100%;

	float: left;

	margin-bottom: 60px;
}

.panel .content form input {
	background-color: rgba(255, 255, 255, 0.0);

	border-radius: 20px;
	border: 1px solid #555555;

	outline: none;
	resize: none;

	font-family: 'montserrat', sans-serif;
	font-size: 14px;
	color: #555555;

	width: 50%;
	height: 40px;

	float: left;

	padding: 0 20px;
	margin: 0;

	-webkit-appearance: none;
}

.panel .content form input::-webkit-input-placeholder {
	color: #555555;
}

.panel .content form input:-moz-placeholder {
	color: #555555;
}

.panel .content form input::-moz-placeholder {
	color: #555555;
}

.panel .content form input:-ms-input-placeholder {
	color: #555555;
}

.panel .content form .button {
	border-radius: 50%;
	border: none;

	background-color: #333333;

	font-size: 30px;
	line-height: 38px;
	color: #ffffff;
	text-align: center;
	-webkit-font-smoothing: subpixel-antialiased;

	width: 40px;
	height: 40px;

	float: left;

	margin-left: -40px;
	padding: 0;

	cursor: pointer;

	-webkit-transition-duration: 0.1s;
	transition-duration: 0.1s;

	-webkit-appearance: none;
}

.panel .content form .button:hover {
	background-color: #49b266;
}

.panel .content form .button:focus {
	outline: none;
}

/* Panel Actions */

.panel .content .actions {
	width: 100%;

	float: left;

	margin-bottom: 60px;
}

.panel .content .actions a {
	border-radius: 50%;

	border: 1px solid #555555;

	font-size: 16px;
	line-height: 38px;
	text-align: center;
	color: #555555;

	width: 40px;
	height: 40px;

	float: left;

	margin-right: 5px;
}

.panel .content .actions a:hover {
	border-color: #888888;

	color: #888888rd;
}



/***********************************************************************************

Typography

************************************************************************************/

@media (max-width: 480px) {
	body {
		font-size: 14px;
	}

	h1, h2 {
		font-size: 22px;
	}
}

/***********************************************************************************

Header & Nav

************************************************************************************/

@media (max-width: 480px) {
	header {
		width: -webkit-calc(100% - 40px);
		width: -moz-calc(100% - 40px);
		width: calc(100% - 40px);

		top: 20px;
		left: 20px;
	}
}

@media (max-width: 380px) {
	header .loves {
		display: none;
	}
}

/***********************************************************************************

The Big Video

************************************************************************************/

@media (max-width: 480px) {
	#video .intro h1 {
		margin-bottom: 23px;
	}

	#video .intro .play {
		font-size: 32px;
		line-height: 58px;

		width: 60px;
		height: 60px;

		padding-left: 5px;
	}
}

/***********************************************************************************

Footer Credits & Plays

************************************************************************************/

@media (max-width: 480px) {
	footer {
		width: -webkit-calc(100% - 40px);
		width: -moz-calc(100% - 40px);
		width: calc(100% - 40px);

		bottom: 5px;
		left: 20px;
	}
}

/***********************************************************************************

Panels

************************************************************************************/

@media (max-width: 680px) {
	.panel .content form input {
		width: 80%;
	}
}

@media (max-width: 480px) {
	.panel {
		border-radius: 0;

		width: 100%;
		height: 100%;
	}

	.panel .content {
		width: -webkit-calc(100% - 80px);
		width: -moz-calc(100% - 80px);
		width: calc(100% - 80px);

		position: absolute;
		top: 50%;
		left: 50%;

		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.panel .content h2 {
		margin-bottom: 18px;
	}

	.panel .content form input {
		width: 100%;
	}
}


/***********************************************************************************

Animations

************************************************************************************/

.animated {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.fast {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
}

.animated.slow {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

/* Pulse */

.pulse {
	-webkit-animation: pulse ease infinite;
	animation: pulse ease infinite;
}

@-webkit-keyframes pulse{from{-webkit-transform:scale(.95)}50%{-webkit-transform:scale(1)}to{-webkit-transform:scale(.95)}}
@-moz-keyframes pulse{from{-moz-transform:scale(.95)}50%{-moz-transform:scale(1)}to{-moz-transform:scale(.95)}}
@keyframes pulse{from{transform:scale(.95)}50%{transform:scale(1)}to{transform:scale(.95)}}

/* Fade In */

.fade-in {
	-webkit-animation-name: fade-in;
	animation-name: fade-in;
}

@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}
@-moz-keyframes fade-in{from{opacity:0}to{opacity:1}}
@keyframes fade-in{from{opacity:0}to{opacity:1}}

/* Fade Out */

.fade-out {
	-webkit-animation-name: fade-out;
	animation-name: fade-out;
}

@-webkit-keyframes fade-out{0%{opacity:1}100%{opacity:0}}
@-moz-keyframes fade-out{0%{opacity:1}100%{opacity:0}}
@keyframes fade-out{0%{opacity:1}100%{opacity:0}}

/* Slide In */

.slide-in {
	-webkit-animation-name: slide-in;
	animation-name: slide-in;
}

@-webkit-keyframes slide-in{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
@-moz-keyframes slide-in{0%{-moz-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
@keyframes slide-in{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}

/* Slide Out */

.slide-out {
	-webkit-animation-name: slide-out;
	animation-name: slide-out;
}

@-webkit-keyframes slide-out{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}
@-moz-keyframes slide-out{0%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-moz-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}
@keyframes slide-out{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}
