
/*-------------------------------------------------------------------------*/
/*  1. General style
/*-------------------------------------------------------------------------*/

html {
	font-size: 62.5%;
}

body {
    font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	font-size: 1.6rem;
}

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

a {
    color: #212121;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p , h1 , h2 , h3 , h4 , h5 , span , a {
    margin: 0;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
	font-weight: 400;
}

h2 {
    font-size: 30px;
    color: #212121;
}

.btn-danger {
	background: #CC171D;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-transform: uppercase;
	padding: 10px 20px;
	-webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

.btn-danger:hover {
	background: #830408;
}

.btn-success {
	background: #4D818C;
	border: none;
	display: inline-block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-transform: uppercase;
	padding: 10px 20px;
	-webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

.btn-success:hover {
	background: #215661;
}

input {
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
    border: none;
    border-bottom: 2px solid #00585f;
    font-size: 14px;
    outline: none;
	-webkit-transition: all 300ms ease 0s;
	-moz-transition: all 300ms ease 0s;
	-o-transition: all 300ms ease 0s;
	transition: all 300ms ease 0s;
}
.search_bar input:focus, .search_bar input:active {
	transform: scale(1.05);
}

textarea {
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

ul li {
   display: inline-block;
}

@font-face {
    font-family: 'MyriadPro';
    src: url(../fonts/MyriadPro-Regular.otf) format('truetype');
}

/*-------------------------------------------------------------------------*/
/*  2. Header style
/*-------------------------------------------------------------------------*/


/*COMING SOON PAGE*/
.coming_soon_section
{

	padding-bottom: 240px;
	background: url(../images/coming_soon_bg_white.png) no-repeat top center;
	background-color: #00585f;
	height: 100vh;
}

/*.coming_soon_section .lightbulb_image img
{
	filter: grayscale(100%);
}*/

.coming_soon_section .lightbulb_image img,
.coming_soon_section .logo_image img
{
	margin: 0 auto;
}

.lightbulb_image
{
	padding-bottom: 75px;
}

.coming_soon_section .image_switch
{
	width: 450px;
	margin: 0 auto;
	position: relative;
}

.coming_soon_section .image_switch .border_image
{
	position: absolute;
	left: 0;
	max-height: 320px;
}

.coming_soon_section .image_switch .point_image
{
	position: absolute;
	top: 310px;
	left: -5px;
}

.coming_sign_up
{
    padding-bottom: 30px;
    font-size: 18px;
    color: white;
}

.coming_soon_section .logo_image
{
	padding-bottom: 90px;
}

.coming_soon_section .coming_heading
{
	padding-bottom: 110px;
}

.coming_soon_section .coming_heading h1
{
	color: white;
	font-weight: bold;
	font-size: 50px;
	text-transform: uppercase;
}

.coming_soon_section .coming_text
{
	padding: 0 100px 65px 100px;

}

.coming_soon_section .coming_text h2
{
	font-size: 30px;
	font-weight: 400;
	padding-bottom: 30px;
	color: white;
}

.coming_soon_section .coming_text p
{
	font-size: 18px;
	font-weight: 400px;
	color: white;
}

.coming_soon_section .notify_container .email_form #inputEmail
{
	width: 370px;
	font-size: 16px;
	color: #bebebe;
	background-color: #efefec;
	padding-left: 45px;
}

.coming_soon_section .notify_container .no_span
{
	padding-top: 28px;
}

.coming_soon_section .notify_container .no_span span
{
	color: white;
	font-size: 18px;
	font-weight: 400;
}

.coming_soon_section .notify_container .email_form .form-group
{
	position: relative;
}


.coming_soon_section .notify_container .email_form i
{
	position: absolute;
	left: 15px;
	top: 7px;
	color: #bebebe;
	padding-top: 4px;
	font-size: 19px;
}

.coming_soon_section .notify_container .email_form .btn_notify
{
	width: 120px;
	margin-left: -5px;
	border-radius: 0;
	background-color: #009393;
	padding-top: .5em;
	padding-bottom: .5em;
	font-size: 16px;
	color: white;
	max-height: 40px;
}
.form-control {
	border: none;
	height: 40px;
}
/*COMING SOON PAGE*/


/*IMAGE SWING*/
@-webkit-keyframes swinging{
    0%{-webkit-transform: rotate(10deg);}
    50%{-webkit-transform: rotate(-5deg)}
    100%{-webkit-transform: rotate(10deg);}
}

@keyframes swinging{
    0%{transform: rotate(10deg);}
    50%{transform: rotate(-5deg)}
    100%{transform: rotate(10deg);}
}

.swingimage{
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
}
/*END OF IMAGE SWING*/
