/*
\/\*tpa=.*?\*\/
===========================================================
	TABLE OF CONTENTS
===========================================================
	=Global
	=Preloader
	=Left Side
	=Countdown
	=Twitter
	=Subscribe
	=Footer
	=Variations
	=Media Queries
	*/

/*===========================================================*/
/*	=Global
/*===========================================================*/

body {
	/*font-family: 'Oxygen', sans-serif;*/
	font-weight: 300;
	background: #F9F9F9;
	color: #f1f1f1;
}

ul, li {
	padding: 0;
	margin: 0;
}

.ie7 body {
	overflow:hidden;
}

a {
	color: #222;
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: none;
	color: #777;
}

.wraper {
	position: relative;
}

a, a:visited, a:focus, a:active, a:hover{
	outline:0 none !important;
}

/*===========================================================*/
/*	=preloader
/*===========================================================*/

@keyframes bounce
{
	50%  {transform: translatey(-20px);}
	100% {transform: translatey( 20px);}
}

@-webkit-keyframes bounce
{
	50%  {
		-webkit-transform: translatey(-20px);}
	100% {
		-webkit-transform: translatey( 20px);}
}

@-ms-keyframes bounce
{
	50%  {
		-ms-transform: translatey(-20px);}
	100% {
		-ms-transform: translatey( 20px);}
}

.preloader {
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	z-index: 9999;
}

.bounce {
	position: absolute;
	top: 49.7%;
	left: 49.7%;
}

.bounce div {
	border-radius: 100%;
	height: 10px;
	width: 10px;
	background-color: #f98c0d;
	-webkit-animation: bounce 1s ease-in-out infinite;
	-ms-animation: bounce 1s ease-in-out infinite;
	animation: bounce 1s ease-in-out infinite;
	position: absolute;
	top: 0;
	-webkit-transform: translatey(20px);
	-ms-transform: translatey(20px);
	transform: translatey(20px);
}

.bounce div:first-of-type {
	left: -20px;
	-webkit-animation-delay: 0.20s;
	-ms-animation-delay: 0.20s;
	animation-delay: 0.20s;
}

.bounce div:nth-of-type(2) {
	-webkit-animation-delay: 0.10s;
	-ms-animation-delay: 0.10s;
	animation-delay: 0.10s;
}

.bounce div:last-of-type {
	left: 20px;
}


/*===========================================================*/
/*	=left side (title)
/*===========================================================*/

.slider {
	position: fixed;
	width: 50%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0; 
}

.bx-wrapper {
	position: relative;
}

.bx-viewport, .bx-wrapper, .slides, .slides li {
	height: 100% !important;
	z-index: 0;
}

.slides li {
	background-size: cover;
	background-position: center;
}

.bx-pager {
	position: absolute;
	top: 50%;
	left: 10px;
	top: 50%; left: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.bx-pager-link {
	display: inline-block;
	font: 0/0 serif;
	text-shadow: none;
	color: transparent;
	line-height: 11px;
	width: 11px;
	height: 11px;
	border: 2px solid #fff;
	margin-bottom: 5px;
	border-radius: 50%;
	transition: 0.3s;
}

.bx-pager-link.active {
	background-color: #fafafa;
}

.bx-pager-link:hover {
	background-color: #fafafa;
}

.slider .bx-prev, .slider .bx-next {
	display: none;
}

.title {
	color: #fff;
	margin-bottom: 80px;
	position: relative;
	text-align: center;
}

.title a {
	display: inline-block;
	margin: 100px 0 0;
	/*font-family: 'Romanesco', cursive;*/
	font-size: 64px;
	line-height: 44px;
	letter-spacing: 7px;
	color: #fff;
	text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
}

.title a:hover {
	color: #f1f1f1;
}

.highlight {
	color: #f98c0d;
}

.title-text {
	position: absolute;
	background: rgba(99, 99, 99, 0.2);
	color: #fff;
	font-size: 24px;
	text-align: center;
	border: 4px double #eee;
	width: 80%;
	margin: auto;
	padding: 30px;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}

/*===========================================================*/
/*	=right Side
/*===========================================================*/

.right {
	background: #f9f9f9; 
}

/*===========================================================*/
/*	=countdown
/*===========================================================*/

.title-soon {
	letter-spacing: 1px;
	font-size: 50px;
	font-weight: 300;
	text-transform: uppercase;
	display: inline-block;
	padding: 30px 0 120px;
	color: #222;
}

.countdown {
	position: relative;
	min-height: 320px;
	margin: 70px 0 140px;
	padding: 0 30px;
}

.countdown input {
	font-family: 'Oxygen', sans-serif !important;
	font-weight: 400 !important;
	font-size: 34px !important;
	color: #222 !important;
	top: 50% !important;
	left: 0 !important;
	right: 0 !important;
	width: 125px !important; 
	margin: -30px 0 0 15px !important;
	pointer-events: none;
}

.countdown canvas {
	border-radius: 50%;
	-webkit-transition: 0.4s;
	        transition: 0.4s;
}

.countdown-item {
	position: relative;
	height: 130px;
}

.countdown-text {
	color: #000;
	font-size: 11px;
	font-weight: 400;
	margin-top: -58px;
	width: 125px;
	display: block;
	text-align: center;
	text-transform: uppercase;
	pointer-events: none;
	position: relative;
	z-index: 100;
}

/*===========================================================*/
/*	=twitter
/*===========================================================*/

.twitter-wrap {
	position: relative;
	margin:  0 auto 140px;
	padding-left: 30px;
	text-align: left;
}

.twitter-wrap .twitter-icon {
	display: inline-block;
	line-height: 16px;
	float: left;
}

.twitter-wrap .fa-twitter {
	font-size: 36px;
	display: inline-block;
	margin-bottom: 5px;
	margin-top: 10px;
	color: #666;
	-webkit-transition: 0.3s;
	        transition: 0.3s;
}

.twitter-wrap .fa-twitter:hover {
	color: #888;
}

#ticker {
	height: 100px;
	overflow-y: hidden;
	position: relative;
}

#ticker .loading {
	padding-top: 15px;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #000;
}

#ticker ul.tweet_list {
	position: absolute;
	width: 100%;
	border-radius: 0.5em;
	list-style: none;
	margin: 0;
	padding: 0 40px;
	overflow-y: hidden;
}

#ticker ul.tweet_list li {
	height: 100px;
}

	
.tweet_list li {
	overflow-y: auto;
	overflow-x: hidden;
	list-style-type: none;
}

.tweet_avatar {
	display: inline-block;
	margin-bottom: 10px;
}

.tweet_text {
	font-size: 13px;
	line-height: 20px;
	color: #888;
}

.tweet_time {
	display: inline-block;
	width: 100%;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 5px;
}

.tweet_time a, .tweet_text a {
	color: #222;
	border-bottom: 1px dotted;
}

.tweet_time a:hover, .tweet_text a:hover {
	color: #000;
}

.tweet_list .tweet_time:after {
	content: "\A";
	white-space:pre;
}
		
.tweet_list .tweet_avatar img {
	vertical-align: top;
}

/*===========================================================*/
/*	=subscribe
/*===========================================================*/

.sub-text {
	letter-spacing: 1px;
	font-size: 48px;
	font-weight: 300;
	text-transform: uppercase;
	display: inline-block;
	padding-bottom: 50px;
	color: #222;
}

.subscribe {
	text-align: left;
	margin-bottom: 140px;
	color: #222;
	padding-left: 30px;
}

.subscribe input {
	height: 70px;
	font-size: 16px;
	font-weight: 300;
	outline: 0;
	border: 1px solid #222;
	color: #000;
}

.subscribe input[type=email] {
	width: 70%;
	padding-left: 10px;
	background: rgba(255, 255, 255, .8);
	color: #000;
}

.subscribe input[type=submit] {
	width: 25%;
	box-shadow: none;
	height: 70px;
	margin-left: -4px;
	line-height: 26px;
	font-weight: 400;
	border: 2px solid #222;
	background: transparent;
	color: #000;
	padding: 0px;
	-webkit-transition: 0.3s;
	        transition: 0.3s;
}

.subscribe input[type=submit]:hover {
	background: #f98c0d;
	color: #ffffff;
	border: 2px double #f98c0d;
}

.subscribe .message {
	font-size: 20px;
	line-height: 40px;
	margin: 20px auto 0;
}

.subscribe .response-success {
	color: #e4f5a1;
}

.subscribe .response-error {
	color: #ee0000;
}

/*===========================================================*/
/*	=footer
/*===========================================================*/

.social-links {
	list-style: none;
	font-size: 16px;
	text-align: left;
	margin-bottom: 30px;
	padding-left: 30px;
}

.social-links li {
	display: inline-block;
	border-radius: 50%;
	background: transparent;
	text-align: center;
	border: 1px solid #222;
	margin-right: 15px;
	-webkit-transition: 0.3s;
	        transition: 0.3s;
}

.social-links li a {
	color: #222;
	display: inline-block;
	line-height: 35px;
	width: 35px;
	height: 35px;
	-webkit-transition: 0.3s;
	        transition: 0.3s;
}

.social-links li a:hover {
	color: #fff;
}

.social-links li:nth-child(1):hover {
	background: rgba(59, 89, 152, 1);
	border: 1px solid rgba(59, 89, 152, 1);
}

.social-links li:nth-child(2):hover {
	background: rgba(198, 61, 45, 1);
	border: 1px solid rgba(198, 61, 45, 1);

}

.social-links li:nth-child(3):hover {
	background: rgba(51, 204, 255, 1);
	border: 1px solid rgba(51, 204, 255, 1);
}

.social-links li:nth-child(4):hover {
	background: rgba(145, 1, 1, 1);
	border: 1px solid rgba(145, 1, 1, 1);
}

.social-links li:nth-child(5):hover {
	background: rgba(72, 117, 180, 1);
	border: 1px solid rgba(72, 117, 180, 1);
}

.copyright {
	text-align: left;
	color: #222;
	font-size: 12px;
	margin-bottom: 30px;
	padding-left: 30px;
}


/*===========================================================*/
/*	=image background
/*===========================================================*/

.background-image {
	background: url("../images/6.jpg") no-repeat center center;
	background-size: cover;
	position: fixed;
	width: 50%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0; 

}

/*===========================================================*/
/*	=video background
/*===========================================================*/

.player {
	display: block;
	position: fixed;
	overflow: hidden;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
}

.player video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
}

/*===========================================================*/
/*	=color designs
/*===========================================================*/

.color-variation-1 .bounce div {
	background-color: #84d6c5;
}

.color-variation-1 .highlight {
	color: #91e0d0;
}

.color-variation-1 .right {
	background: #84d6c5;
}

.color-variation-1 .subscribe input[type=submit]:hover {
	background: #fff;
	color: #84d6c5;
	border: 2px double #fff;
}

.color-variation-2 .bounce div {
	background-color: #ba61a1;
}

.color-variation-2 .highlight {
	color: #f265ca;
}

.color-variation-2 .right {
	background: #ba61a1;
}

.color-variation-2 .subscribe input[type=submit]:hover {
	background: #fff;
	color: #ba61a1;
	border: 2px double #fff;
}

.color-variation-3 .bounce div {
	background-color: #a6c462;
}

.color-variation-3 .highlight {
	color: #bbdd6c;
}

.color-variation-3 .right {
	background: #a6c462;
}

.color-variation-3 .subscribe input[type=submit]:hover {
	background: #fff;
	color: #a6c462;
	border: 2px double #fff;
}

.color .title-soon {
	color: #fff;
}

.color .countdown input {
	color: #fff !important;
}

.color .countdown-text {
	color: #fff;  
}

.color #ticker .loading {
	color: #fff;
}

.color .twitter-wrap .fa-twitter {
	color: #eee;
}

.color .twitter-wrap .fa-twitter:hover {
	color: #e1e1e1;
}

.color .tweet_text {
	color: #fff;
}

.color .tweet_time a, .color .tweet_text a {
	color: #eee;
}

.color .tweet_time a:hover, .color .tweet_text a:hover {
	color: #e1e1e1;
}

.color .sub-text {
	color: #fff;
}

.color .subscribe {
	color: #fff;
}

.color .subscribe input {
	border: 1px solid #f1f1f1;
	color: #000;
}

.color .subscribe input[type=submit] {
	color: #fff;
}

.color .social-links li {
	border: 1px solid #fff;
}

.color .social-links li a {
	color: #fff;
}

.color .social-links li a:hover {
	color: #fff;
}

.color .copyright {
	color: #fff;
}


/*===========================================================*/
/*	=media queries
/*===========================================================*/

@media only screen and (min-width: 991px) and (max-width: 1199px) {

/*===========================================================*/
/*	=countdown
/*===========================================================*/

.countdown-item:first-child {
	margin-bottom: 70px;
}

.countdown-item:nth-child(2) {
	margin-bottom: 70px;
}

}


@media only screen and (max-width: 991px) {

/*===========================================================*/
/*	=countdown
/*===========================================================*/

.title-soon {
	font-size: 40px;
}

.countdown-item {
	margin-bottom: 40px;
}

.countdown-item:last-child {
	margin-bottom: 00px;
}

/*===========================================================*/
/*	=twitter
/*===========================================================*/

#ticker ul.tweet_list {
	padding: 0 20px;
}

#ticker {
	height: 120px;
}

#ticker ul.tweet_list li {
	height: 120px;
}

/*===========================================================*/
/*	=subscribe
/*===========================================================*/

.sub-text {
	font-size: 38px;
}

.subscribe input {
	font-size: 14px;
}

}


@media only screen and (max-width: 768px) {

/*===========================================================*/
/*	=left side
/*===========================================================*/

.left {
	padding: 0;
}

.bx-pager {
	top: 65%;
}

.title-text {
	top: 65%;
	font-size: 20px;
	padding: 20px;
}

.slider {
	height: 300px;
	width: 100%;
	position: relative;
}

.background-image {
	height: 300px;
	width: 100%;
	position: relative;
}

.player {
	height: 300px;
	width: 100%;
	position: relative;
	background-color: #f9f9f9;
}

.player .title a {
	color: #555;
}

.player .title-text {
	color: #222;
}

.player video {
	display: none;
}

/*===========================================================*/
/*	=countdown
/*===========================================================*/

.countdown {
	text-align: center;
	padding: 0;
	margin: 40px 0 70px;
}

.title-soon {
	padding: 30px 0 70px;
}

.countdown input {
	width: 100% !important;
	margin: -30px 0 0 !important; 
}

.countdown-text {
	width: 100%;
}

/*===========================================================*/
/*	=twitter
/*===========================================================*/

.twitter-wrap {
	padding-left: 0;
	width: 90%;
	margin: 0 auto 70px;
}

#ticker ul.tweet_list {
	padding: 0 20px;
}

#ticker {
	height: 130px;
}

#ticker ul.tweet_list li {
	height: 130px;
}

/*===========================================================*/
/*	=subscribe
/*===========================================================*/

.subscribe, .copyright, .social-links {
	text-align: center;
	padding-left: 0px;
}

.subscribe {
	margin-bottom: 100px;
}

.sub-text {
	padding-bottom: 40px; 
}

.subscribe input {
	font-size: 14px;
}

.subscribe input[type=email] {
	width: 80%;
}

.subscribe input[type=submit] {
	margin: 20px 0 0;
	width: 80%;
}

}

@media only screen and (max-width: 479px) {

.title-text {
	font-size: 16px;
}

.twitter-wrap {
	width: 100%;
}

#ticker ul.tweet_list {
	padding: 0 10px 0 15px;
}

.subscribe input[type=email] {
	width: 90%;
}

.subscribe input[type=submit] {
	width: 90%;
}



}