/*
*
*	Smarty Themes - Angelina Under Construction Page
*	Main Styles
*
*/

/*
*	Table Of Contents
*	
*	
	1. Body
	2. Animations
	3. Header
	4. Main Menu
	5. Content
	6. Contacts
	7. Subscribe
	8. Countdown
	9. Scroll Bar
	10. Background

*
*/

/*
***********************************************
	Body
*/

html {
	height: 100%;
}
body {
	height: 100%;
	padding: 0;
	position: relative;
	margin: 0;
	font-weight: 600;
	font-family: 'Titillium Web', sans-serif;
	background: #000;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
}
a {
	outline: none;
	color: #c2c2c2;
	text-decoration: none;
}
p {
	margin: 0 0 24px;
}
h3 {
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	margin: 0 0 10px;
	text-transform: uppercase;
	font-weight: 900;
}
::selection {
  background: #000; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #000; /* Gecko Browsers */
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #bcbcbc;
   opacity:  1;
   font-style: italic;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #bcbcbc;
   opacity:  1;
   font-style: italic;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #bcbcbc;
   opacity:  1;
   font-style: italic;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #bcbcbc;
   opacity:  1;
   font-style: italic;
}

/*
***********************************************
	Animations
*/

.anims {
	opacity: 0;
	-webkit-transition: all ease .6s;
	-moz-transition: all ease .6s;
	-ms-transition: all ease .6s;
	-o-transition: all ease .6s;
	transition: all ease .6s;
}
.anims.visible {opacity: 1;}

@-webkit-keyframes bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0,-4px,0);
		transform: translate3d(0,-4px,0);
	}
}

@keyframes bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0,-4px,0);
		transform: translate3d(0,-4px,0);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: center top 0;
      		transform-origin: center top 0;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: center top 0;
      		transform-origin: center top 0;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
		100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.error_block {
	color: red;
	padding: 20px 0;	
}
#primary {
	left: 0;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
	height: 100%;
	position: relative;
}
.menu-visible #primary {
	left: -50%;
}

/*
***********************************************
	Header
*/

#header {
	text-align: center;
	z-index: 100;
	padding: 5px 10px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
#site_logo {
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 17px;
}
#site_logo a {
	color: #000;
}
#site_logo a img {
	vertical-align: top;
}
#site_logo h1 {
	margin: 0;
}
.textrow_1 {
	font-weight: 900;
	display: block;
}

/*
***********************************************
	Subscribe
*/

#subscribe_form .form-descr {
	font-size: 18px;
	line-height: 24px;
	color: #191919;
	font-weight: 600;
}
#subscribe_form {
	background: #fff;
	width: 560px;
	margin: 55px auto 0;
	text-align: center;
}
#subscribe_form .form_wrap {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 440px;
	margin: 0 auto;
	padding: 18px 44px 0 43px;
}
button::-moz-focus-inner {
    border:0;
    padding:0;
}
#subscribe_form .success {
	color: #464646;
	font-size: 18px;
	line-height: 24px;
	padding: 10px;
}
#subscribe_form .form_row {
	overflow: hidden;
	border: 1px solid #191919;
}
#subscribe_form h4 {
	cursor: pointer;
	margin: 0;
	font-size: 15px;
	background: #e1e1e1;
	line-height: 18px;
	text-transform: uppercase;
	color: #464646;
	padding: 21px 0 22px;
}
#subscribe_form input {
	height: 48px;
	font-size: 14px;
	border: none;
	border-right: 1px solid #191919;
	background: none;
	text-align: left;
	color: #464646;
	font-family: 'Lato', sans-serif;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding: 12px 19px 13px;
}
#subscribe_form input.error {
	border: 1px solid red;
}
#subscribe_form button {
	text-align: center;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	border: none;
	background: none;
	line-height: 45px;
	color: #191919;
	font-size: 12px;
	line-height: 15px;
	padding: 15px 18px 17px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
	letter-spacing: 2px;
	text-align: center;
}
#subscribe_form button:hover {
	background: #ef2c06;
	color: #fff;
}
#subscribe_form button .icon-spin2 {
	display: none;
}
#subscribe_form button .icon-raquo {
	font-size: 13px;
	margin-left: 12px;
}
#subscribe_form button .icon-raquo:before {
	margin: 0;
}
#countdown_block {
	display: none;
	position: relative;
}
.style_4 #countdown_label {
	font-size: 20px;
	line-height: 36px;
	letter-spacing: 6px;
	padding: 0 0 15px;
}
.style_4 #site_subheading {
	margin-bottom: 18px;
}
#countdown_block .knob_progress .progress_count {
	display: inline-block;
	margin: 0 24px;
	position: relative;
}
#countdown_block .knob_progress .progress_count > div {
	display: block !important;
	position: relative;
}
#countdown_block .knob_progress .progress_count input {
	font-family: 'Titillium Web', sans-serif !important;
	font-weight: 900 !important;
	height: 62px !important;
	font-size: 52px !important;
	margin: 0 !important;
	text-align: center;
	position: absolute;
	height: 100% !important;
	left: 0;
	right: 0;
	width: 100% !important;
}
#countdown_block .knob_progress .progress_count .progress_label {
	display: block;
	font-weight: 400;
	padding-top: 19px;
	font-size: 25px;
	color: #fff;
	line-height: 29px;
}

#countdown_block #subscribe_form input::-webkit-input-placeholder { /* WebKit browsers */
	color:    #c2c2c2;
   opacity:  1;
}
#countdown_block #subscribe_form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #c2c2c2;
   opacity:  1;
}
#countdown_block #subscribe_form input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #c2c2c2;
   opacity:  1;
}
#countdown_block #subscribe_form input:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #c2c2c2;
   opacity:  1;
}

/*
***********************************************
	Countdown
*/

#countdown_label {
	padding: 75px 0 5px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	word-spacing: 1px;
	margin: 0;
}
#countdown_block.countown_style_1 {
	position: absolute;
	top: 78%;
	left: 50px;
	right: 50px;
	margin: 0 auto;
	text-align: center;
	z-index: 100;
	width: 100%;
	max-width: 1100px;
}
#percent_ready {
	color: rgba(255, 255, 255, .7);
	font-size: 50px;
	line-height: 50px;
	font-weight: 900;
	overflow: hidden;
}
#countdown_block.countown_style_1 #site_slogan {
	font-size: 20px;
	line-height: 2px;
	font-weight: 200;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 5px 5px 5px rgba(0,0,0,.27);
	margin: -6px 0 0 9px;
}
#countdown_block.countown_style_1 #site_slogan span {
	color: #13C5FF;
}

/* Style 2 */

#site_subheading {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 3px;
	margin-bottom: 80px;
}
#site_subheading:after {
	content: "";
	width: 85px;
	height: 1px;
	display: block;
	margin: 14px auto 0;
	background: url(../images/subheading_divider.png) 0 0 repeat-x;
}

.countdown-row {
	overflow: hidden;
}
.countdown-row .countdown-section {
	display: inline-block;
	color: #fff;
	margin: 0 22px;
}
.countdown-row .countdown-section .countdown-amount {
	font-size: 36px;
	line-height: 40px;
	font-weight: 900;
}
.countdown-row .countdown-section .countdown-period {
	font-size: 14px;
	line-height: 17px;
	padding-top: 0px;
}


/*
***********************************************
	Background
*/


.pattern_overlay:after,
#tubular-container:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url(../images/pattern_overlay.png) 0 0 repeat;
	display: block;
	content: "";
}
#gmap {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#snowflakes,
#rain_wrapper,
#rain_bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	max-width: 100%;
}
#rain_bg {
	width: 100%;
}

/* Single color background */

#single_color_bg {
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000; /* You can override background color here */
}

/* Slideshow 1 */

#bg_slideshow {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.flex-direction-nav li {
	position: fixed;
	top: 50%;
	margin-top: -50px;
	left: 0;
	width: 100px;
	height: 100px;
	display: block;
	z-index: 999;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 100% 50%;
	perspective-origin: 100% 50%;
}
.flex-direction-nav li span {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	left: 100%;
	-webkit-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	background-size: cover;
}
.flex-direction-nav li + li {
	left: auto;
	right: 0;
	-webkit-perspective-origin: 0% 50%;
	perspective-origin: 0% 50%;
}
.flex-direction-nav li a {
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/slider_controls.png) center 15px no-repeat;
}
.flex-direction-nav li + li a {
	background-position: center -97px;
}
.flex-direction-nav li:hover a {
	background-color: #FFF;
}
.flex-direction-nav li + li a {
	-webkit-perspective-origin: 100% 50%;
	perspective-origin: 100% 50%;
}
.flex-direction-nav li + li span {
	left: auto;
	right: 100%;
	-webkit-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}
.flex-direction-nav li:hover span {

	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}
#bg_slideshow .slides {
	margin: 0;
	padding: 0;
	position: absolute;
	height: 100%;
	width: 100%;
}
#bg_slideshow .slides li {
	height: 100%;
	position: relative;
	float: left;
	list-style: none;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 0;
}
#bg_slideshow .flex-direction-nav {
	position: absolute;
	z-index: 9999;
	top: 100px;
}

#bg_slideshow .slides li.bg_slide_1 {
	background-image: url(../images/bg1.png);
}

}

