@charset "UTF-8";
/* ==================================================
	[Master Stylesheet]
	Template Name : Omid
	Version    :  1.0 
	Author     :  Amin khademian
	Author URI :  http://themeforest.net/user/delfantheme
=====================================================
   TOC:
   ====
	0. Web Fonts & Global style
	1. Background slideshow
	2. Home page
	3. About page
	4. Rounded slide
	5. Color
	6. Responsive
	
===================================================== */

/* ---------------------------------
	0. Web Fonts & Global style
--------------------------------- */
@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Poiret+One';
body {
	font-family: open Sans Condensed;
	background-color:#1a1c1f;
	z-index: -3;
}
#preloader{ 
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:9999999;
	background-color: #333;
}
#preloader .loader {
	background: url("../images/puff.svg") no-repeat scroll center center rgba(0, 0, 0, 0);
	height: 50px;
	width: 50px;
	position: absolute;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
}
.container-fluid{
    padding: 0;
    background-color: rgba(0,0,0,0);
}
.bg-anim{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
#section0{
	overflow: hidden;
}
button,a{outline: none;}
/*!
 * IE10 viewport hack for Surface/desktop Windows 8 bug
 * Copyright 2014-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *
 * See the Getting Started docs for more information:
 * http://getbootstrap.com/getting-started/#support-ie10-width
 */
@-webkit-viewport { width: device-width; }
@-moz-viewport    { width: device-width; }
@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }
/* ---------------------------------
	1. Background slideshow
--------------------------------- */
/* Effect A */
.bg-slideshow-a,
.bg-slideshow-a:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -2; 
}
.bg-slideshow-a li { 
    list-style: none;
}
.bg-slideshow-a li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation-a 36s linear infinite 0s;
    -moz-animation: imageAnimation-a 36s linear infinite 0s;
    -o-animation: imageAnimation-a 36s linear infinite 0s;
    -ms-animation: imageAnimation-a 36s linear infinite 0s;
    animation: imageAnimation-a 36s linear infinite 0s; 
}
.bg-slideshow-a li:nth-child(1) span { 
    background-image: url(../images/1.jpg) 
}
.bg-slideshow-a li:nth-child(2) span { 
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s; 
}
.bg-slideshow-a li:nth-child(3) span { 
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s; 
}
.bg-slideshow-a li:nth-child(4) span { 
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}
.bg-slideshow-a li:nth-child(5) span { 
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s; 
}
.bg-slideshow-a li:nth-child(6) span { 
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s; 
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation-a { 
    0% { opacity: 0;
    -webkit-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes imageAnimation-a { 
    0% { opacity: 0;
    -moz-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -moz-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes imageAnimation-a { 
    0% { opacity: 0;
    -o-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -o-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes imageAnimation-a { 
    0% { opacity: 0;
    -ms-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -ms-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes imageAnimation-a { 
    0% { opacity: 0;
    animation-timing-function: ease-in; }
    8% { opacity: 1;
         animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
/* Effect B */
.bg-slideshow-b,
.bg-slideshow-b:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -2;
}
.bg-slideshow-b li { 
    list-style: none;
}
.bg-slideshow-b li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation-b 36s linear infinite 0s;
    -moz-animation: imageAnimation-b 36s linear infinite 0s;
    -o-animation: imageAnimation-b 36s linear infinite 0s;
    -ms-animation: imageAnimation-b 36s linear infinite 0s;
    animation: imageAnimation-b 36s linear infinite 0s;
}
.bg-slideshow-b li:nth-child(1) span { background-image: url(../images/1.jpg) }
.bg-slideshow-b li:nth-child(2) span {
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.bg-slideshow-b li:nth-child(3) span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.bg-slideshow-b li:nth-child(4) span {
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.bg-slideshow-b li:nth-child(5) span {
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.bg-slideshow-b li:nth-child(6) span {
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation-b { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation-b { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation-b { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation-b { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1) rotate(3deg);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation-b { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    transform: scale(1.1) rotate(3deg);
	}
	100% { opacity: 0 }
}
/* Effect C */
.bg-slideshow-c,
.bg-slideshow-c::after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -2;
}
.bg-slideshow-c li { 
    list-style: none;
}
.bg-slideshow-c li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation-c 36s linear infinite 0s;
    -moz-animation: imageAnimation-c 36s linear infinite 0s;
    -o-animation: imageAnimation-c 36s linear infinite 0s;
    -ms-animation: imageAnimation-c 36s linear infinite 0s;
    animation: imageAnimation-c 36s linear infinite 0s;
}
.bg-slideshow-c li:nth-child(1) span { background-image: url(../images/1.jpg) }
.bg-slideshow-c li:nth-child(2) span {
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.bg-slideshow-c li:nth-child(3) span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.bg-slideshow-c li:nth-child(4) span {
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.bg-slideshow-c li:nth-child(5) span {
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.bg-slideshow-c li:nth-child(6) span {
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation-c { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation-c { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation-c { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation-c { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation-c { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
/* Single background */
.bg-slideshow-d,
.bg-slideshow-d::after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -2;
}
.bg-slideshow-d li { 
    list-style: none;
}
.bg-slideshow-d li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 1;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    -ms-animation: none;
    animation: none;
}
.bg-slideshow-d li:nth-child(1) span {
	background-image: url(../images/1.jpg)
}
.bg-slideshow-d li:nth-child(2) span,
.bg-slideshow-d li:nth-child(3) span,
.bg-slideshow-d li:nth-child(4) span,
.bg-slideshow-d li:nth-child(5) span,
.bg-slideshow-d li:nth-child(6) span {
	display: none;
}
/* Show at least something when animations not supported */
.no-cssanimations .bg-slideshow-a li span,
.no-cssanimations .bg-slideshow-b li span,
.no-cssanimations .bg-slideshow-c li span{
	opacity: 1;
}
/* ---------------------------------
	2. Home page ( Contdown - Hgroup - Subscribe )
--------------------------------- */
.homepage{
    position: relative;
    width: 100%;
    height: 160px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
    -webkit-box-shadow: 0 0 3px 0 #000,0 2px 1px 0 #fff inset,0 -2px 1px 0 #fff inset;
    -moz-box-shadow: 0 0 3px 0 #000,0 2px 1px 0 #fff inset,0 -2px 1px 0 #fff inset;
	box-shadow: 0 0 3px 0 #000,0 2px 1px 0 #fff inset,0 -2px 1px 0 #fff inset;
    border-bottom: 5px solid;
}
/* Contdown */
.countdown-box{
	width: 120px;
    height: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-radius: 80px;
    margin: 0 10px 0 0;
    overflow: hidden;
}
ul#countdown{
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    padding: 30px 4px;
    position: relative;
}
ul#countdown li{
    position: relative;
    margin: 10px 20px;
    font: 100 30px Open Sans Condensed;
    color: #fff;
    -webkit-transform:translateX(0%);
	-moz-transform:translateX(0%);
	transform:translateX(0%);
    -webkit-transition: opacity 0.3s 0.1s,-webkit-transform 0.3s 0.1s;
    -moz-transition: opacity 0.3s 0.1s,-moz-transform 0.3s 0.1s;
    -o-transition: opacity 0.3s 0.1s,-o-transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s,transform 0.3s 0.1s;
}
ul#countdown li:nth-child(1){
	font-size: 60px;
	margin-top: 0;
}
ul#countdown li:nth-child(2){
	-webkit-transition-delay: 0.14s;
	-moz-transition-delay: 0.14s;
	-o-transition-delay: 0.14s;
	transition-delay: 0.14s;
}
ul#countdown li:nth-child(3){
	-webkit-transition-delay: 0.18s;
	-moz-transition-delay: 0.18s;
	-o-transition-delay: 0.18s;
	transition-delay: 0.18s;
}
ul#countdown li:nth-child(4){
	font-size: 50px;
    position: absolute;
    top: calc(50% - 52px);
    right: 0;
    -webkit-transform:translateX(30%);
	-moz-transform:translateX(30%);
	transform:translateX(30%);
    -webkit-transition: opacity 0.3s 0.0s,-webkit-transform 0.3s 0.0s, visibility 0.3s 0.0s;
    -moz-transition: opacity 0.3s 0.0s,-moz-transform 0.3s 0.0s, visibility 0.3s 0.0s;
    -o-transition: opacity 0.3s 0.0s,-o-transform 0.3s 0.0s, visibility 0.3s 0.0s;
    transition: opacity 0.3s 0.0s,transform 0.3s 0.0s, visibility 0.3s 0.0s;
    opacity: 0;
    visibility: hidden;
}
ul#countdown:hover li{
    -webkit-transform:translateX(-90%);
	-moz-transform:translateX(-90%);
	transform:translateX(-90%);
	opacity: 0
}
ul#countdown:hover li:nth-child(4){
	-webkit-transform:translateX(-45%);
	-moz-transform:translateX(-45%);
	transform:translateX(-45%);
	-webkit-transition-delay: 0.22s;
	-moz-transition-delay: 0.22s;
	-o-transition-delay: 0.22s;
	transition-delay: 0.22s;
    opacity: 1;
    visibility: visible;
}
ul#countdown li span:last-child{
    font:100 12px poiret one;
    padding: 2px 5px;
    position: absolute;
	left: 50%;
	bottom: 0;
    -webkit-transform:translateY(70%) translateX(-50%);
	-moz-transform:translateY(70%) translateX(-50%);
	transform:translateY(70%) translateX(-50%);
	letter-spacing: 1px;
	opacity: .8; 
}
/* Hgroup */
.homepage .hgroup{
    margin:0 10px;
}
.homepage .hgroup h2{
    font: 100 50px poiret one;
    margin: 10px;
    color: #333;
}
.homepage .hgroup h3{
    font: 100 17px open sans Condensed;
    margin: 0 0 0 20px;
    color: #333;
}
/* Subscribe */
.subscribe{
    position: relative;
    width: 380px;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin: 0 0 0 100px;
}
.open-notify{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: auto;
    font: 100 18px Open Sans Condensed;
    letter-spacing: 1px;
    padding: 15px 50px;
    color: #0a253c;
    -webkit-transform: translateX(-50%) translateY(-45%);
    transform: translateX(-50%) translateY(-45%);
    -webkit-transition: opacity 0.4s 0s, visibility 0.4s 0s, letter-spacing 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0.4s 0s, letter-spacing 0.4s;
    -o-transition: opacity 0.4s 0s, visibility 0.4s 0s, letter-spacing 0.4s;
	transition: opacity 0.4s 0s, visibility 0.4s 0s, letter-spacing 0.4s;
    background-color: transparent;
    border-radius: 30px;
    border: none;
    z-index: 999;
}
.open-notify:hover{
	letter-spacing:3px;
}
.open-notify:focus{
	outline: none !important;
}
.open-notify i{
	opacity: 0.6;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.open-notify:hover i{
	opacity: 1;
}
.notify-menu .open-notify{
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.simform{
    position: relative;
    width: 90%;
    text-align: left;
    font-size: 1.5em;
    -webkit-transition: opacity 0.4s 0s,-webkit-transform 0.4s 0s, visibility 0.4s 0s;
    -moz-transition: opacity 0.4s 0s,-moz-transform 0.4s 0s, visibility 0.4s 0s;
    -o-transition: opacity 0.4s 0s,-o-transform 0.4s 0s, visibility 0.4s 0s;
	transition: opacity 0.4s 0s,transform 0.4s 0s, visibility 0.4s 0s;
}
.notify-menu .simform{
	width: 90%;
	opacity: 1;
	-webkit-transform:scale(1) translateY(10%);
	-moz-transform:scale(1) translateY(10%);
	transform:scale(1) translateY(10%);
	visibility: visible;
}
.simform .submit {
	display: none;
}
/* Question list style */
.simform ol {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	-webkit-transition: height 0.4s;
	-moz-transition: height 0.4s;
	-o-transition: height 0.4s;
	transition: height 0.4s;
}

.simform ol:before {
	content: '';
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2.35em;
	border-radius: 30px;
}

.questions li {
	z-index: 100;
	position: relative;
	visibility: hidden;
	height: 0;
	-webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
	-moz-transition: visibility 0s 0.4s, height 0s 0.4s;
	-o-transition: visibility 0s 0.4s, height 0s 0.4s;
	transition: visibility 0s 0.4s, height 0s 0.4s;
}

.questions li.current,
.no-js .questions li {
	visibility: visible;
	height: auto;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}
.questions li.current{
	visibility: hidden;
}
.notify-menu .questions li.current{
	visibility: visible;
}

/* Labels */
.questions li > span {
	display: block;
	overflow: hidden;
	padding: 0.1em;
	color: #333;
	-webkit-transform: translateY(-80%);
	transform: translateY(-80%);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s, visibility 0.3s;
	-o-transition: -o-transform 0.3s, opacity 0.3s, visibility 0.3s;
	transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	opacity: 0;
}
.notify-menu .questions li > span {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	visibility: visible;
	opacity: 1;
}
.questions li > span label {
	display: block;
	font: 100 18px poiret one;
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -webkit-transform 0.4s;
	-o-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.questions li.current > span label,
.no-js .questions li > span label {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.show-next .questions li.current > span label {
	-webkit-animation: moveUpFromDown 0.4s both;
	animation: moveUpFromDown 0.4s both;
}

@-webkit-keyframes moveUpFromDown {
	from { -webkit-transform: translateY(100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes moveUpFromDown {
	from { -webkit-transform: translateY(100%); transform: translateY(100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

/* Input field */
.questions input {
    margin: 0.2em;
    padding: 0.5em 1em 0.7em 0.7em;
    width: calc(100% - 2em);
    border: none;
    background: transparent;
    color: rgba(0,0,0,0.8);
    font: 100 18px open sans Condensed;
    line-height: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.questions .current input,
.no-js .questions input {
	opacity: 1;
}

.questions input:focus,
.simform button:focus {
	outline: none;
}

/* Next question button */
.next {
	position: absolute;
	right: 10px;
	bottom: 1.25em; /* padding-bottom of form plus progress bar height */
	display: block;
	padding: 0;
	width: 2em;
	height: 2em;
	border: none;
	background: none;
	text-align: center;
	opacity: 0;
	z-index: 100;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, color 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s, color 0.3s;
	-o-transition: -o-transform 0.3s, opacity 0.3s, color 0.3s;
	transition: transform 0.3s, opacity 0.3s, color 0.3s;
	-webkit-transform: translateX(-20%);
	transform: translateX(-20%);
	pointer-events: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.next.show {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	pointer-events: auto;
}

/* Progress bar */
.controls {
    width: 88%;
    margin-left: 6%;
}
.simform .progress {
	width: 0%;
	height: 0.15em;
	background: rgba(0,0,0,0.3);
	-webkit-transition: width 0.4s ease-in-out;
	-moz-transition: width 0.4s ease-in-out;
	-o-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
}

.simform .progress::before {
	position: absolute;
	top: auto;
	left:6%;
	width: 88%;
	height: inherit;
	background: rgba(0,0,0,0.05);
	content: '';
	border-radius: 5px;
}

/* Number indicator */
.simform .number {
    position: absolute;
    overflow: hidden;
    margin: 0.2em 0;
    width: 3em;
    font-weight: 700;
    font-size: 0.5em;
    right: 0;
    top: 8px;
    color: #333;
    -webkit-transform: translateY(-170%);
	transform: translateY(-170%);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s, visibility 0.3s;
	-o-transition: -o-transform 0.3s, opacity 0.3s, visibility 0.3s;
	transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	opacity: 0;
}
.notify-menu .simform .number {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	visibility: visible;
	opacity: 1;
}
.simform .number:after {
	position: absolute;
	left: 50%;
	content: '/';
	opacity: 0.4;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.simform .number span {
	float: right;
	width: 40%;
	text-align: center;
	color: #888;
}

.simform .number .number-current {
	float: left;
}

.simform .number-next {
	position: absolute;
	left: 0;
}

.simform.show-next .number-current {
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	-o-transition: -o-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.simform.show-next .number-next {
	-webkit-animation: moveUpFromDown 0.4s both;
	animation: moveUpFromDown 0.4s both;
}

/* Error and final message */
.simform .fa-refresh,
.simform .error-message,
.simform .final-message {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.simform .error-message {
	padding: 0.4em 3.5em 0 0;
	width: 100%;
	color:#f03939;
	font-style: italic;
	font-size: 0.6em;
	bottom: -8px;
}
.simform .fa-refresh{
    font-size: 24px;
	color: #555;
	top: calc(50% - 12px);
	left: calc(50% - 10px);
    -webkit-animation: loadingform 1s linear infinite 0s;
    -moz-animation: loadingform 1s linear infinite 0s;
    -o-animation: loadingform 1s linear infinite 0s;
    -ms-animation: loadingform 1s linear infinite 0s;
    animation: loadingform 1s linear infinite 0s;
}
@-webkit-keyframes loadingform { 
	0% {-webkit-transform:rotate(0deg);}
	100% {-webkit-transform:rotate(360deg);}
}
@-moz-keyframes loadingform { 
	0% {-moz-transform:rotate(0deg);}
	100% {-moz-transform:rotate(360deg);}
}
@-o-keyframes loadingform { 
	0% {-o-transform:rotate(0deg);}
	100% {-o-transform:rotate(360deg);}
}
@-ms-keyframes loadingform { 
	0% {-ms-transform:rotate(0deg);}
	100% {-ms-transform:rotate(360deg);}
}
@keyframes loadingform { 
	0% {transform:rotate(0deg);}
	100% {transform:rotate(360deg);}
}
.final-message {
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: transparent;
	color: #fff;
}
.final-message span{
    background-color: #0a253c;
    padding: 0.5em 1.5em;
    border-radius: 40px;
    width: 100px;
}
.simform .fa-refresh.show,
.error-message.show,
.final-message.show {
	visibility: visible;
	opacity: 1;
}

.final-message.show {
	-webkit-transition-delay: 1s;
	-moz-transition-delay: 1s;
	-o-transition-delay: 1s;
	transition-delay: 1s;
}

/* Final hiding of form / showing message */
.simform-inner.hide {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s, visibility 0s 0.3s;
	-moz-transition: opacity 0.3s, visibility 0s 0.3s;
	-o-transition: opacity 0.3s, visibility 0s 0.3s;
	transition: opacity 0.3s, visibility 0s 0.3s;
}

/* No JS Fallback */
.no-js .simform {
	font-size: 1.75em;
}

.no-js .questions li {
	padding: 0 0 2em;
}

.no-js .simform .submit {
	display: block;
	float: right;
	padding: 10px 20px;
	border: none;
	background: rgba(0,0,0,0.3);
	color: rgba(0,0,0,0.4);
}

.no-js .simform .controls {
	display: none;
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}
/* ------------------------------------------------------------------
	3. About page ( Company - Over team - My services - Contact us )
------------------------------------------------------------------ */
#section1{
	background-color: rgba(0,0,0,0.65);
}
.slide{
	position: relative;
}
.aboutcompany,
.overteam,
.myservices,
.contactus{
    width: 100%;
    height: auto;
    padding:0 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.headp{
    position: absolute;
    top: 25px;
    left: 25px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #fff;
    background-color: rgba(0,0,0,.2);
    padding: 2px 30px 2px 2px;
    border-radius: 40px;
}
.headp h2 {
    font: 100 18px Open sans Condensed;
    margin: 0 0 0 5px;
}
.headp i{
    font-size: 15px;
    margin: 0 6px 0 0;
    background-color: rgba(0,0,0,0.2);
    padding: 12px;
    border-radius: 30px;
}
.moveSlideLeft,
.moveSlideRight{
	cursor: pointer;
}
.fp-controlArrow{display: none;}
/* About company*/
.company{
	width: 100%;
	height: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin: 10px 0 30px;
    color: #fff;
}
.company img{
	width: 60px;
	height: 60px;
	margin: 0 7px 0 0;
}
.company h1{
	font:100 40px open sans Condensed;
	color: #fff;
	margin: 0 0 0 7px;
}
.aboutcompany > p{
	width: 70%;
	font-size: 20px;
	color: #d5d5d5;
	line-height: 1.5;
	text-align: center;
}
.info-contact{
	position:relative;
	padding:20px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    overflow: hidden;
}
.info-contact .mail,
.info-contact .phone,
.info-contact .address{
	position: relative;
    margin: 10px 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s, visibility 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s, visibility 0.3s;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.social-menu .mail,
.social-menu .phone,
.social-menu .address{
	opacity: 0;
	visibility: hidden;
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
}
.info-contact .mail::before,
.info-contact .phone::before,
.info-contact .address::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    left: calc(50% - 25px);
    top: -5px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.45);
}
.info-contact .mail i,
.info-contact .phone i,
.info-contact .address i{
    font-size: 30px;
    margin: 5px 0 25px;
    z-index: 1;
}
.info-contact .mail span,
.info-contact .phone span,
.info-contact .address span{
	color: #d5d5d5;
	font-size:18px
}
.info-contact .mail {
    -webkit-tran-delay: 0.02s;
    -moz-transition-delay: 0.02s;
    -o-transition-delay: 0.02s;
    -ms-transition-delay: 0.02s;
    transition-delay: 0.02s; 
}
.info-contact .phone {
    -webkit-transition-delay: 0.04s;
    -moz-transition-delay: 0.04s;
    -o-transition-delay: 0.04s;
    -ms-transition-delay: 0.04s;
    transition-delay: 0.04s; 
}
.info-contact .address {
    -webkit-transition-delay: 0.08s;
    -moz-transition-delay: 0.08s;
    -o-transition-delay: 0.08s;
    -ms-transition-delay: 0.08s;
    transition-delay: 0.08s; 
}
/* Social icons*/
.open-social,
.close-social{
	position: absolute;
    color: rgb(231, 231, 231);
    font-size: 18px;
    cursor: pointer;
    bottom: -30px;
    left: 50%;
    padding: 0;
    margin: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s, visibility 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s, visibility 0.3s;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.social-menu .open-social{
	opacity: 0;
	visibility: hidden;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
}
.close-social{
	opacity: 0;
	visibility: hidden;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}
.social-menu .close-social{
	opacity: 1;
	visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
ul.social{
    margin: 0;
	padding: 0;
	width: 310px;
	height: 52px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: absolute;
    top:calc(50% - 26px);
    left:calc(50% - 155px); 
}
ul.social li{
    opacity: 0;
    width: 52px;
    height: 52px;
    margin: 0 5px;
    list-style: none;
    position: relative;
    visibility: hidden;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
ul.social li:nth-child(2)  {
    -webkit-transition-delay: 0.02s;
    -moz-transition-delay: 0.02s;
    -o-transition-delay: 0.02s;
    -ms-transition-delay: 0.02s;
    transition-delay: 0.02s; 
}
ul.social li:nth-child(3)  {
    -webkit-transition-delay: 0.04s;
    -moz-transition-delay: 0.04s;
    -o-transition-delay: 0.04s;
    -ms-transition-delay: 0.04s;
    transition-delay: 0.04s; 
}
ul.social li:nth-child(4)  {
    -webkit-transition-delay: 0.08s;
    -moz-transition-delay: 0.08s;
    -o-transition-delay: 0.08s;
    -ms-transition-delay: 0.08s;
    transition-delay: 0.08s; 
}
ul.social li:nth-child(5)  {
    -webkit-transition-delay: 0.12s;
    -moz-transition-delay: 0.12s;
    -o-transition-delay: 0.12s;
    -ms-transition-delay: 0.12s;
    transition-delay: 0.12s; 
}

.social-menu ul.social li{
	opacity: 1;
	visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
ul.social li a{
    color: #FFF;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border:2px #fff solid;
    background-color: transparent;
    -webkit-transition: background-color 0.3s 0s, color 0.3s 0s;
    transition: background-color 0.3s 0s, color 0.3s 0s;
      
}
ul.social li a:hover{
    color: #777;
    background-color: #fff;
}
ul.social li a:focus{
    outline: none;
}
ul.social li a i{
    position: absolute;
    font-size: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform:translateY(-50%) translateX(-50%);
    -moz-transform:translateY(-50%) translateX(-50%);
    transform:translateY(-50%) translateX(-50%);
}
/* Over teams */
.team{
	width: 100%;
	height: auto;
	padding: 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
.team-member{
	position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	-webkit-flex-flow: column wrap;
    -moz-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;

}
.team-member .avatar {
	width: 160px;
	height: 160px;
	margin: 0px auto;
	transition: 0.5s;
	border-radius: 80px;
	background-color: #333333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15);
	-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15);
}
.team-member .avatar > img {
	width: 160px;
	height: 160px;
	border-radius: 80px;
}
.team-member .info{
	margin-top: 7px;
	text-align: center;
}
.team-member .info h3 {
	color: #fff;
	margin: 20px 0px 5px;
	letter-spacing: 1.5px;
	font:100 20px poiret one;
	text-transform: uppercase;
}
.team-member .info span {
	font-size: 14px;
	color: #c5c5c5;
	margin: 0px;
	letter-spacing: 1px;
	line-height: 18px;
}
.team-member .social {
	margin: 15px auto 0px;
	font-size: 16px;
	color: #fff;
	text-align: center;
}
.team-member .social a {
	margin: 0px 3px;
	color: #818181;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.team-member .social a:active,
.team-member .social a:hover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
/* My services */

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
  	animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
/* Owl Carousel - Auto Height Plugin */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
  	-moz-transition: height 500ms ease-in-out;
  	-ms-transition: height 500ms ease-in-out;
  	-o-transition: height 500ms ease-in-out;
  	transition: height 500ms ease-in-out;
}

/* Core Owl Carousel CSS File */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-controls .owl-nav .owl-prev{
	border-radius: 20px 0 0 20px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.owl-carousel .owl-controls .owl-nav .owl-next{
	border-radius: 0 20px 20px 0;
}
.owl-carousel .owl-controls .owl-nav .owl-next:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
    display: none;
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    padding: 20px 0;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}
/* controls */
.owl-carousel .owl-controls .owl-nav{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next{
    color: rgb(225, 226, 227);
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 5px 20px;
    margin: 20px 1px;
}
/* No Js */
.no-js .owl-carousel {
    display: block;
}
.services{
	text-align: center;
}
.services .hser{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
	margin: 10px auto;
}
.services .hser i{
	font-size: 25px;
	margin:0 10px;
	color: #fff;
}
.services .hser h4 {
	font:100 25px poiret one;
	color: #fff;
	margin:0 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.services p{
	width: 70%;
	font-size: 20px;
	color: #d5d5d5;
	line-height: 1.5;
	margin: 5px auto;
}
/* Contact us */
.fs-form-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
}

.overview .fs-form-wrap {
	height: auto;
}

/* Title */
.fs-title {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 40px;
	width: 100%;
}

.fs-title h1 {
	margin: 0;
}

/* Form */
.fs-form {
	position: relative;
	text-align: left;
	font-size: 2.5em;
}

.no-js .fs-form {
	padding: 0 0 6em 0;
}

/* Views (fullscreen and overview)*/
.fs-form-full {
	top: 32%;
	margin: 0 auto;
	width: 70%;
}

.fs-form-full,
.fs-message-error {
	max-width: 960px;
}

.fs-form-overview {
	padding: 1em;
	width: 100%;
	height: 100%;
	background: transparent;
	color: #e1e2e3;
	font-size: 1.2em;
}

/* Switch view animation (we hide the current view, switch the view class and show it again) */
.fs-form.fs-show {
	-webkit-animation: animFadeIn 0.5s;
	animation: animFadeIn 0.5s;
}

@-webkit-keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.fs-form.fs-show .fs-fields {
	-webkit-animation: animMove 0.5s;
	animation: animMove 0.5s;
}

@-webkit-keyframes animMove {
	from { top: 100px; }
}

@keyframes animMove {
	from { top: 100px; }
} /* we need to use top here because otherwise all our fixed elements will become absolute */

/* Visibility control of elements */
.fs-form-full .fs-fields > li,
.fs-nav-dots, 
.fs-progress,
.fs-numbers,
button.fs-continue,
.fs-message-error,
.fs-message-final {
	visibility: hidden;
}

.no-js .fs-form-full .fs-fields > li {
	visibility: visible;
}

.fs-show {
	visibility: visible !important;
}

/* Some general styles */
.fs-form-wrap button {
	border: none;
	background: none;
}

.fs-form-wrap button[disabled] {
	opacity: 0.3;
	pointer-events: none;
}

.fs-form-wrap input:focus,
.fs-form-wrap button:focus {
	outline: none;
}

/* Hide the submit button */
.fs-form .fs-submit,
.fs-form span i.fa-refresh {
	display: none;
}
.fs-form span i.fa-refresh{
	float: left;
	padding: 15px;
	font-size: 16px;
    -webkit-animation: loadingform 1s linear infinite 0s;
    -moz-animation: loadingform 1s linear infinite 0s;
    -o-animation: loadingform 1s linear infinite 0s;
    -ms-animation: loadingform 1s linear infinite 0s;
    animation: loadingform 1s linear infinite 0s;
}

/* Fields */
.fs-fields {
	position: relative;
	margin: 0 auto;
	padding: 0;
	top: 0;
	list-style: none;
}

.fs-form-overview ol {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.fs-fields > li {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
}

.fs-fields > li:hover {
	z-index: 999;
}

.js .fs-form-full .fs-fields > li {
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-60%);
	transform: translateY(-60%);
}
.fs-form-overview .fs-fields > li {
    width: 48%;
}
.fs-form-overview .fs-fields > li,
.no-js .fs-form .fs-fields > li {
	margin-bottom: 1.5em;
	padding: 0;
	border-bottom:none;
}

/* Labels & info */
.fs-fields > li label {
	position: relative;
}

.fs-fields > li label.fs-field-label {
	display: inline-block;
	padding: 0 5px 5px 15px;
	font: 100 30px poiret one;
	pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]::after {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	margin-top: 10px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	content: 'i';
	border:2px solid;
	vertical-align: top;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	cursor: pointer;
	pointer-events: auto;
}

.fs-form-full .fs-fields > li label[data-info]::before {
    position: absolute;
    bottom: 100%;
   	left: 0;
    padding: 0 0 10px;
    min-width: 500px;
	content: attr(data-info);
	font-size: 18px;
	color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
    pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.fs-form-full .fs-fields > li label:hover ~ .fs-info,
.fs-form-full .fs-fields > li .fs-info:hover {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	pointer-events: auto;
}
/* Inputs */
.fs-fields input{
    margin: 0;
    width: 100%;
    border: none;
    color: #e7e7e3;
    display: block;
    font-size: 40px;
    font-weight: 100;
    padding: 10px 30px;
    border-radius: 50px;
    text-overflow: ellipsis;
    background-color: rgba(255,255,255,0.2);
}
.fs-fields input:invalid {/* removes red shadow in FF*/
	-moz-box-shadow: none; 
	box-shadow: none;
}
.fs-form-overview .fs-fields input {
	color: #e1e2e3;
	border-bottom-color: transparent;
}

.fs-fields [required] {
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: 95% center;
	background-image: url(../images/abacusstar.svg);
}

.fs-fields input:focus {
	background-color: rgba(255,255,255,0.3); /* Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input:focus {
	background-color: rgba(255,255,255,0.3); /* Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input {
	font-size: 1.2em;
}
.fs-form-overview .fs-fields label{
	font-size: 20px !important;
	position: absolute;
	padding-left: 15px;
	bottom: 3px;
	left: 0;
}
.fs-form-overview .fs-fields li:nth-child(1) input{
	padding-left:85px;
}
.fs-form-overview .fs-fields li:nth-child(2) input{
	padding-left:85px;
}
.fs-form-overview .fs-fields li:nth-child(3) input{
	padding-left:55px;
}
.fs-form-overview .fs-fields li:nth-child(4) input{
	padding-left:95px;
}
.fs-form-overview .fs-fields li:nth-child(5) label{
	display: none;
}
.fs-fields textarea {
	padding: 0.25em;
	width: 100%;
	height: 200px;
	border: none;
	background-color: rgba(255,255,255,0.2);
	color: #e7e7e3;
	font-weight: 100;
	font-size: 0.85em;
	border-radius: 3px;
	resize: none;
}

.fs-form-overview .fs-fields textarea {
	height: 100px;
	color:#a8b6b9;
}
.fs-form-overview .fs-fields li:last-child {
	width: 100%;
}
.fs-fields textarea:focus {
	background-color: rgba(255,255,255,0.3);
	outline: none;
}

.fs-form-overview .fs-fields textarea {
	padding: 10px;
	border-color: transparent;
}

.fs-form-overview .fs-fields textarea:focus {
	background: rgba(255,255,255,0.3);
}
/* placeholder */
.fs-fields input::-webkit-input-placeholder,
.fs-fields textarea::-webkit-input-placeholder {
	color: rgba(180,180,180,0.3);
}

.fs-fields input:-moz-placeholder,
.fs-fields textarea:-moz-placeholder {
	color: rgba(180,180,180,0.3);
}

.fs-fields input::-moz-placeholder,
.fs-fields textarea::-moz-placeholder {
	color: rgba(180,180,180,0.3);
}

.fs-fields input:-ms-input-placeholder,
.fs-fields textarea:-ms-input-placeholder {
	color: rgba(180,180,180,0.3);
}

/* Hide placeholder when focused in Webkit browsers */
.fs-fields input:focus::-webkit-input-placeholder {
	color: transparent;
}

/* Dot navigation */
.fs-nav-dots {
	display: none;
}
/* Progress bar */
.fs-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 0.5em;
	background: #232529;
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
}

/* Number indicator */
.fs-numbers {
    position: absolute;
    top: 25px;
    right: 25px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.4);
    width: 2em;
    font: 100 30px open sans Condensed;
    cursor: default;
}

.fs-numbers:after {
	position: absolute;
	width: 100%;
	text-align: center;
	content: '/';
	font-weight: 300;
	opacity: 0.4;
	left: 0;
}

.fs-numbers span {
	float: right;
	width: 40%;
	text-align: center;
}

.fs-numbers .fs-number-current {
	float: left;
}

.fs-numbers .fs-number-new {
	position: absolute;
	left: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

/* Animations for numbers */
/* Show next number */
.fs-numbers.fs-show-next .fs-number-new {
	-webkit-animation: animMoveUpFromDown 0.4s both;
	animation: animMoveUpFromDown 0.4s both;
}

@-webkit-keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); transform: translateY(100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-next .fs-number-current {
	-webkit-animation: animMoveUp 0.4s both;
	animation: animMoveUp 0.4s both;
}

@-webkit-keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); }
}

@keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

/* Show previous number */
.fs-numbers.fs-show-prev .fs-number-new {
	-webkit-animation: animMoveDownFromUp 0.4s both;
	animation: animMoveDownFromUp 0.4s both;
}

@-webkit-keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-prev .fs-number-current {
	-webkit-animation: animMoveDown 0.4s both;
	animation: animMoveDown 0.4s both;
}

@-webkit-keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); }
}

@keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* Continue button and submit button */
button.fs-submit,
button.fs-continue {
	padding: 0.6em 1.5em;
	border: 2px solid #232529;
	border-radius: 40px;
	font-weight: 700;
	color: rgba(0,0,0,0.4);
}

.fs-form-overview .fs-submit,
.no-js .fs-form .fs-submit{
	display: block;
	float: left;
}

.fs-form-overview .fs-submit {
	border-color: #fff;
	color: #fff;
}

button.fs-continue{
    position: absolute;
    left: 25px;
    top: 80px;
    margin: 0;
    font: 100 18px Open sans Condensed;
    border: none;
    color: #fff;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
    background-color: rgba(0,0,0,.2);
    padding: 9px 29px 8px 53px;
}

button.fs-submit:hover,
button.fs-submit:focus,
button.fs-continue:hover {
	background: #232529;
}
.fs-continue::before{
	position: absolute;
	top:calc(50% - 15px);
	left: 8px;
	width: 30px;
	height: 30px;
	content: '';
	border-radius: 50%;
    -webkit-animation: btncontinue 1s 1.5s ease-in infinite alternate forwards;
    animation: btncontinue 1s 1.5s ease-in infinite alternate forwards;
}
@-webkit-keyframes btncontinue {
	from {opacity: 1;}
	to {opacity: 0.1;}
}

@keyframes btncontinue {
	from {opacity: 1;}
	to {opacity: 0.1;}
}
.fs-continue::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	line-height: 3;
	text-align: center;
	background: transparent;
	color: #e1e2e3;
	content: 'or press ENTER';
	font-size: 13px;
	pointer-events: none;
}

/* Error message */
.fs-message-error{
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 800;
    max-width: 960px;
    width: 70%;
    color: #eb7e7f;
    font-weight: 700;
    font-size: 1em;
    opacity: 0;
    text-align: center;
    -webkit-transition: bottom 0.3s, opacity 0.3s;
	transition: bottom 0.3s, opacity 0.3s;
}
.fs-message-error.fs-show {
	opacity: 1;
	bottom: 30px;
}

/* Animation classes & animations */
.fs-form li.fs-current {
	visibility: visible;
}

.fs-form li.fs-hide,
.fs-form li.fs-show {
	pointer-events: none;
}

/* Hide current li when navigating to next question */
.fs-form .fs-display-next .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower,
.fs-form .fs-display-next .fs-hide .fs-anim-upper {
	-webkit-animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Show new li when navigating to next question */
.fs-form .fs-display-next .fs-show .fs-anim-lower,
.fs-form .fs-display-next .fs-show .fs-anim-upper {
	-webkit-animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-next .fs-show .fs-anim-lower {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Hide current li when navigating to previous question */
.fs-form .fs-display-prev .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-lower,
.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Show new li when navigating to previous question */
.fs-form .fs-display-prev .fs-show .fs-anim-lower,
.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}
/* show rezult */
.result-contact{
	position: absolute;
	top: 25px;
	right: 25px;
	width: 250px;
	height: auto;
}
#message-success,
#message-warning{
	display: none;
	width: calc(100% - 10px);
	height: 100%;
	text-align: center;
	padding: 10px;
	border-radius: 40px;
	font-size: 18px;
	margin: 5px;
}
#message-success{
	color: #194D33;
	background-color: #297A52;
}
#message-warning{
	color: #7A2929;
	background-color: #B83D3D;
}
/* ---------------------------------
	4. Rounded slide
--------------------------------- */

.nav-roundslide {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 25px;
    border-radius: 40px;
    background: none;
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    flex-flow: column nowrap;
    bottom: 20px;
    overflow: hidden;
    -webkit-transition: height 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
    -moz-transition: height 0.3s, background-color 0.3s, -moz-box-shadow 0.3s;
    -o-transition: height 0.3s, background-color 0.3s, box-shadow 0.3s;
    transition: height 0.3s, background-color 0.3s, box-shadow 0.3s;
    z-index: 999;
}
.nav-roundslide:hover{
    height: 100px;
	-webkit-box-shadow: 0px 2px 2px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 0px 2px 2px 1px rgba(0,0,0,.2);
	box-shadow: 0px 2px 2px 1px rgba(0,0,0,.2);
}

.nav-roundslide button {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	border:0;
	background: none;
	left: 0;
	top: 0;
}
@-webkit-keyframes movedown {
	from {transform: translate3d(0,-10px,0);}
	to {transform: translate3d(0,0,0);}
}
@keyframes movedown {
	from {transform: translate3d(0,-10px,0);}
	to {transform: translate3d(0,0,0);}
}
.nav-roundslide i:nth-child(1){
    position: absolute;
    font-size: 30px;
    color: #fff;
    bottom: 5px;
    right: calc(50% - 10px);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-animation: movedown 0.6s 0.1s ease-in infinite alternate forwards;
    animation: movedown 0.6s 0.1s ease-in infinite alternate forwards;
}
.nav-roundslide:hover i:nth-child(1) {
	opacity: 0.5;
    -webkit-animation: none;
	animation: none;
}
.nav-roundslide i:nth-child(2) {
    position: absolute;
    bottom: 25px;
    right: calc(50% - 12px);
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.6em;
    line-height: 4;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
    -webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    -moz-transition: opacity 0.3s,-moz-transform 0.3s;
    -o-transition: opacity 0.3s,-o-transform 0.3s;
    transition: opacity 0.3s,transform 0.3s;
}
.nav-roundslide i.fa-home:nth-child(2) {
	font-size: 1.9em;
	line-height: 3.4;
	right: calc(50% - 13px);
}
.nav-roundslide:hover i:nth-child(2) {
    opacity: 1;
    visibility: visible;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
/* Slide nav */
.fp-slidesNav ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.fp-slidesNav ul li {
    width: 28px;
    height: 28px;
}
.fp-slidesNav ul li a {
	z-index: 1;
}
.fp-slidesNav ul li a:focus{
	outline: none;
}
.fp-slidesNav ul li a i{
	position: absolute;
	font-size: 0;
	top: 50%;
	left: 50%;
	z-index: 1;
	opacity: 0;
	font-size:5px;
    -webkit-transition: opacity 0.3s, font-size 0.3s;
    -moz-transition: opacity 0.3s, font-size 0.3s;
    -o-transition: opacity 0.3s, font-size 0.3s;
    transition: opacity 0.3s, font-size 0.3s;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.fp-slidesNav ul li a.active i,
.fp-slidesNav ul li:hover a i{
	font-size: 14px;
	opacity: 1;
}
.fp-slidesNav ul li a span{
	height: 14px;
	width: 14px;
	margin: -7px 0 0 -7px;
}
.fp-slidesNav ul li a.active span,
.fp-slidesNav ul li:hover a span,
.fp-slidesNav ul li:hover a.active span {
    height: 28px;
    width: 28px;
    margin: -14px 0 0 -14px;
}
/* -------------------------------------
	3. Color ( A - B - C - D - E - F )
------------------------------------- */

/* Color A */
.color-a .homepage {
    border-bottom-color: #297a52;
}
.color-a .countdown-box,
.color-a .nav-roundslide:hover,
.color-a .fp-slidesNav ul li a span,
.color-a .fs-continue::before{
    background-color: #297A52;
}
.color-a .open-notify i,
.color-a .next,
.color-a .team-member .social a:active,
.color-a .team-member .social a:hover {
    color: #297A52;
}
.color-a .next:hover,
.color-a .nav-roundslide i:nth-child(2),
.color-a .fp-slidesNav ul li a i,
.color-a .info-contact .mail i,
.color-a .info-contact .phone i,
.color-a .info-contact .address i{
    color: #194d33;
}
.color-a .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(41, 122, 82, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(41, 122, 82, 0.2);
    box-shadow: 0 0 0 15px rgba(41, 122, 82, 0.2);
}
.color-a .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(41, 122, 82, 0.6);
    color: rgba(41, 122, 82, 0.6);
}
/* Color B */
.color-b .homepage {
    border-bottom-color: #B83D3D;
}
.color-b .countdown-box,
.color-b .nav-roundslide:hover,
.color-b .fp-slidesNav ul li a span,
.color-b .fs-continue::before{
    background-color: #B83D3D;
}
.color-b .open-notify i,
.color-b .next,
.color-b .team-member .social a:active,
.color-b .team-member .social a:hover {
    color: #B83D3D;
}
.color-b .next:hover,
.color-b .nav-roundslide i:nth-child(2),
.color-b .fp-slidesNav ul li a i,
.color-b .info-contact .mail i,
.color-b .info-contact .phone i,
.color-b .info-contact .address i{
    color: #7A2929;
}
.color-b .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(122, 41, 41, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(122, 41, 41, 0.2);
    box-shadow: 0 0 0 15px rgba(122, 41, 41, 0.2);
}
.color-b .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(122, 41, 41, 0.6);
    color: rgba(122, 41, 41, 0.6);
}
/* Color C */
.color-c .homepage {
    border-bottom-color: #624162;
}
.color-c .countdown-box,
.color-c .nav-roundslide:hover,
.color-c .fp-slidesNav ul li a span,
.color-c .fs-continue::before{
    background-color: #624162;
}
.color-c .open-notify i,
.color-c .next,
.color-c .team-member .social a:active,
.color-c .team-member .social a:hover {
    color: #624162;
}
.color-c .next:hover,
.color-c .nav-roundslide i:nth-child(2),
.color-c .fp-slidesNav ul li a i,
.color-c .info-contact .mail i,
.color-c .info-contact .phone i,
.color-c .info-contact .address i{
    color: #493149;
}
.color-c .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(98, 65, 98, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(98, 65, 98, 0.2);
    box-shadow: 0 0 0 15px rgba(98, 65, 98, 0.2);
}
.color-c .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(98, 65, 98, 0.6);
    color: rgba(98, 65, 98, 0.6);
}
/* Color D */
.color-d .homepage {
    border-bottom-color: #2D87B4;
}
.color-d .countdown-box,
.color-d .nav-roundslide:hover,
.color-d .fp-slidesNav ul li a span,
.color-d .fs-continue::before{
    background-color: #2D87B4;
}
.color-d .open-notify i,
.color-d .next,
.color-d .team-member .social a:active,
.color-d .team-member .social a:hover {
    color: #2D87B4;
}
.color-d .next:hover,
.color-d .nav-roundslide i:nth-child(2),
.color-d .fp-slidesNav ul li a i,
.color-d .info-contact .mail i,
.color-d .info-contact .phone i,
.color-d .info-contact .address i{
    color: #1D5672;
}
.color-d .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(45, 135, 180, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(45, 135, 180, 0.2);
    box-shadow: 0 0 0 15px rgba(45, 135, 180, 0.2);
}
.color-d .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(45, 135, 180, 0.6);
    color: rgba(45, 135, 180, 0.6);
}
/* Color E */
.color-e .homepage {
    border-bottom-color: #29A3A3;
}
.color-e .countdown-box,
.color-e .nav-roundslide:hover,
.color-e .fp-slidesNav ul li a span,
.color-e .fs-continue::before{
    background-color: #29A3A3;
}
.color-e .open-notify i,
.color-e .next,
.color-e .team-member .social a:active,
.color-e .team-member .social a:hover {
    color: #29A3A3;
}
.color-e .next:hover,
.color-e .nav-roundslide i:nth-child(2),
.color-e .fp-slidesNav ul li a i,
.color-e .info-contact .mail i,
.color-e .info-contact .phone i,
.color-e .info-contact .address i{
    color: #1D7272;
}
.color-e .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(41, 163, 163, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(41, 163, 163, 0.2);
    box-shadow: 0 0 0 15px rgba(41, 163, 163, 0.2);
}
.color-e .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(41, 163, 163, 0.6);
    color: rgba(41, 163, 163, 0.6);
}
/* Color F */
.color-f .homepage {
    border-bottom-color: #E05C3E;
}
.color-f .countdown-box,
.color-f .nav-roundslide:hover,
.color-f .fp-slidesNav ul li a span,
.color-f .fs-continue::before{
    background-color: #E05C3E;
}
.color-f .open-notify i,
.color-f .next,
.color-f .team-member .social a:active,
.color-f .team-member .social a:hover {
    color: #E05C3E;
}
.color-f .next:hover,
.color-f .nav-roundslide i:nth-child(2),
.color-f .fp-slidesNav ul li a i,
.color-f .info-contact .mail i,
.color-f .info-contact .phone i,
.color-f .info-contact .address i{
    color: #AF371D;
}
.color-f .team-member:hover .avatar{
    -webkit-box-shadow: 0 0 0 15px rgba(224, 92, 62, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(224, 92, 62, 0.2);
    box-shadow: 0 0 0 15px rgba(224, 92, 62, 0.2);
}
.color-f .fs-form-full .fs-fields > li label[data-info]::after{
    border-color:rgba(224, 92, 62, 0.6);
    color: rgba(224, 92, 62, 0.6);
}
/* ---------------------------------
	6. Responsive design ( Tablets - Phones )
--------------------------------- */
/* Tablets */
/*(min-width: 768px) and*/
@media (max-width: 991px) {
	.container-fluid{
	    background-color: rgba(0,0,0,.6);
	}
   .homepage{
   		height: 140px;
   }
   .homepage .hgroup h2{
		font-size: 30px;
   }
   .homepage .hgroup h3{
   		font-size: 14px;
   }
   .countdown-box{
   		width: 100px;
   }
   ul#countdown::after {
    	content: "";
	    width: 6px;
    	height: 6px;
    	bottom: 0;
    	border-radius: 50%;
	    left: calc(50% - 3px);
    	position: absolute !important;
	    background-color: #e1e2e3 !important;
    	-webkit-animation: btncontinue 1s 1.5s ease-in infinite alternate forwards;
    	animation: btncontinue 1s 1.5s ease-in infinite alternate forwards;
	}
   ul#countdown li:nth-child(1){
   		font-size: 40px;
   }
   ul#countdown li:nth-child(4){
		top: calc(50% - 47px);
   }
   ul#countdown:hover li:nth-child(4) {
   		font-size: 40px;
    	-webkit-transform: translateX(-35%);
    	-moz-transform: translateX(-35%);
    	transform: translateX(-35%);
    }
    .subscribe{
    	margin-left: 50px;
    	width: 300px;
    }
    .questions li > span label,
    .open-notify,.next{
    	font-size: 16px;
    }
    .simform ol::before{
    	height: 1.85em;
    }
    .questions input{
    	padding-bottom: 0.5em;
    	font-size: 16px;
    }
    .next{
    	right: 7px;
    	width: 1.85em;
    	height: 1.85em;
    	bottom: 1.7em;
    }
    .nav-roundslide {
	    width: 32px;
	    height: 32px;
	}
	.nav-roundslide.hidden-md button{
		left: 1px;
		top: -2px;
	}
	.nav-roundslide i:nth-child(1){
		font-size: 20px;
		right: calc(50% - 6px);
	}
    .nav-roundslide:hover i:nth-child(2) {
    	opacity: 0;
    	visibility: hidden;
	}
	.nav-roundslide:hover i:nth-child(1) {
		opacity: 1;
	}
	.nav-roundslide:hover{
    	height: 32px;
	}
	#section1{
		background-color: rgba(0,0,0,0.65);
	}
	.aboutcompany{
		-webkit-transform:translateY(-20%);
		transform:translateY(-20%);
	}
	.company{
		margin: 10px 0 10px;
	}
	.company img{
		width: 35px;
		height: 35px;
	}
	.company h1{
		font-size: 25px;
	}
	.aboutcompany > p{
		width: 85%;
		font-size: 18px;
	}
	.info-contact{
		padding: 10px 0;
	}
	.info-contact .mail,
	.info-contact .phone,
	.info-contact .address{
		margin: 0 10px;
	}
	.info-contact .mail::before,
	.info-contact .phone::before,
	.info-contact .address::before{
		width: 36px;
		height: 36px;
		left: calc(50% - 18px);
		top: -3px;
	}
	.info-contact .mail i,
	.info-contact .phone i,
	.info-contact .address i{
    	font-size: 20px;
    	margin: 5px 0 15px;
	}
	.info-contact .mail span,
	.info-contact .phone span,
	.info-contact .address span {
	    font-size: 15px;
	}
	ul.social {
	    width: 260px;
	    height: 42px;
	    top: calc(50% - 21px);
	    left: calc(50% - 130px);
	}
	ul.social li{
		width: 42px;
		height: 42px;
	}
	.headp{
		top: 10px;
		left: 10px;
	}
	.headp i{
		font-size: 15px;
		padding: 10px;
	}
	.headp h2{
		font-size: 16px;
	}
	.team{
		padding: 0;
	}
	.team-member .avatar{
		width: 110px;
		height: 110px;
		-webkit-box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
	   -moz-box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
		box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
	}
	.team-member .avatar > img {
	    width: 110px;
	    height: 110px;
	}
	.team-member .info h3{
		font-size: 14px;
	}
	.team-member .info span{
		font-size: 13px;
	}
	.team-member .social{
		margin-top: 8px;
	}
	button.fs-continue {
	    left: 10px;
	    top: 59px;
	    font-size: 16px;
	    padding: 8px 27px 8px 51px;
	}
	.fs-continue::after {
		display: none;
	}
	.fs-numbers {
	    top: 10px;
	    right: 10px;
	    font-size: 25px;
	}
	.js .fs-form-full .fs-fields > li {
	    -webkit-transform: translateY(-80%);
	    transform: translateY(-80%);
	}
	.fs-fields > li label.fs-field-label{
		font-size: 20px;
	}
	.fs-fields input{
		font-size: 25px;
	}
	.fs-message-error.fs-show {
		bottom: 42px;
	}
	.fs-form-full .fs-fields > li label[data-info]::after {
		margin-top: 0;
	}
	.js .fs-form-full .fs-fields > li:last-child {
	    -webkit-transform: translateY(-60%);
	    transform: translateY(-60%);
	}
	.fs-fields textarea {
		font-size: 0.6em;
	}
	.fs-form-overview .fs-fields textarea {
		font-size: 0.85em;
	}
	.fs-form-overview .fs-fields > li,
	.no-js .fs-form .fs-fields > li{
		margin-bottom: 0.5em;
	}
	.result-contact{
		top: 10px;
		right: 10px;
	}
	#message-success,
	#message-warning {
	    padding: 5px;
	    font-size: 14px;
	}
}
/* Phone */
@media (max-width: 767px) {
	.row.mobsi,
	.row.mobsi .col-xs-12{
		height: 100%
	}
 	.homepage{
 		height: 100%;
 		border: none;
 		-webkit-box-shadow: none;
 		-moz-box-shadow: none;
 		box-shadow: none;
    	-webkit-flex-flow: column nowrap;
    	-moz-flex-flow: column nowrap;
    	flex-flow: column nowrap;
 		background-color: transparent;
 	}
 	.countdown-box{
	    margin: 0;
	    width: 100%;
	    border-radius: 0;
	    padding: 25px 10px;
	    background-color: rgba(0,0,0,0.2) !important;
	}
	ul#countdown{
		padding: 0;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		flex-direction: row;
	}
	ul#countdown::after{
		display: none;
	}
	ul#countdown:hover li{
		opacity: 1;
	    -webkit-transform:translateX(0%);
	   -moz-transform:translateX(0%);
		transform:translateX(0%);
	}
	ul#countdown:hover li:nth-child(4){
		font-size: 30px;
		-webkit-transform:translateX(0%);
	   -moz-transform:translateX(0%);
		transform:translateX(0%);
	}
	ul#countdown li:nth-child(1){
		font-size: 30px;
		margin-top: 10px;
	}
	ul#countdown li:nth-child(4){
		opacity: 1;
	    font-size: 30px;
	    position: relative;
	    visibility: visible;
	    -webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.homepage .hgroup {
	    width: 100%;
	    padding: 10px;
	    text-align: center;
	}
	.homepage .hgroup h2 {
	    font-size: 30px;
	    color: #fff;
	    margin: 20px 0 10px;
	}
	.homepage .hgroup h3 {
	    font-size: 15px;
	    color: #e1e2e3;
	    margin: 10px 0;
	}
	.subscribe {
	    margin: 0;
	    width: 100%;
	    background-color: rgba(0,0,0,0.2);
	}
    .questions li.current{
		visibility: visible;
	}
    .simform{
		opacity: 1;
		visibility: visible;
		margin-bottom: 35px;
		-webkit-transform:scale(1);
	   -moz-transform:scale(1);
		transform:scale(1);
	}
	.simform .fa-refresh{
		color: #e1e2e3;
	}
	.simform ol:before {
		display: none;
	}
	.questions li{
		height: auto;
		visibility: visible;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	.questions li > span {
		opacity: 1;
		bottom: 7px;
		position: absolute;
		visibility: visible;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
	.questions li > span label{
		margin: 0;
		color: #e1e2e3;
		font-size: 15px;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	.show-next .questions li.current > span label {
		-webkit-animation:none;
		animation:none;
	}
	.questions input{
		opacity: 1;
		color: #a9a9a9;
		font-size: 16px;
		padding-left: 4.9em;
	}
	.questions li:nth-child(3) input{
		padding-left: 3em;
	}
	.questions input:focus,
	.simform button:focus {
		outline: none;
	}
	.next {
		left: 0px;
		opacity: 1;
		width: 100%;
		bottom: 0px;
		margin: 0px;
		height: 2.4em;
		position: relative;
		border-radius: 40px;
		pointer-events: auto;
		border: 1px solid #e1e2e3;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.simform .number {
		opacity: 1;
		color: #e1e2e3;
		visibility: visible;
		top:calc(100% - 53px);
		right: calc(100% - 45px);
		font: 100 12px poiret one;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
	.controls {
	    width: 100%;
	    margin: 15px auto;
	}
	.simform .progress{
		opacity: 0;
		visibility: hidden;
	}
	.nav-roundslide{
		right: calc(50% - 16px);
	}
	.headp {
		top: 0;
		left: 0;
		width: 100%;
		padding:16px 10px;
		border-radius: 0;
	}
	.headp h2{
		margin: 0;
	}
	.headp i {
	    bottom: 0;
	    padding: 17px;
	    font-size: 20px;
	    position: absolute;
	    background-color: transparent;
	}
	.headp i.moveSlideRight{
		right: 0;
	}
	.headp i.moveSlideLeft{
		left: 0;
	}
	.aboutcompany {
	    -webkit-transform: translateY(0%);
	    transform: translateY(0%);
	}
	.aboutcompany > p {
	    width: 100%;
	}
	.info-contact {
		width: 100%;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
	    flex-direction: column;
	}
	.info-contact .mail,
	.info-contact .phone,
	.info-contact .address{
		width: 100%;
		padding: 10px;
		margin: 5px auto;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		flex-direction: row;
		border-radius: 40px;
		background-color: rgba(0,0,0,0.2);
	}
	.info-contact .mail i,
	.info-contact .phone i,
	.info-contact .address i {
		margin: 0 10px;
	    color: #a9a9a9 !important;
	}
	.info-contact .mail::before,
	.info-contact .phone::before,
	.info-contact .address::before {
	 	display: none;
	}
	.open-social,
	.close-social{
		bottom: -50px;
		padding: 9px;
		left: calc(50% - 16px);
		border-radius: 50%;
	}
	.fp-slidesNav{
		display: none;
	}
	.team {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
	    flex-direction: column;
	    -webkit-align-items: flex-start;
	    -moz-align-items: flex-start;
	    align-items: flex-start;
	}
	.team-member {
	    width: 100%;
	    margin: 5px 0;
	    padding: 5px 6px;
	    border-radius: 50px;
		-webkit-align-items: center;
		-moz-align-items: center;
		align-items: center;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
	    flex-direction: row;
    	-webkit-justify-content: flex-start;
    	-moz-justify-content: flex-start;
    	justify-content: flex-start;
	    background-color: rgba(0,0,0,0.2);
	}
	.team-member .avatar {
		margin: 0;
		width: 70px;
		height: 70px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.team-member .avatar > img {
	    width: 70px;
	    height: 70px;
	}
	.team-member .info {
		margin-top: 0;
		width: calc(100% - 110px);
	}
	.team-member .info h3 {
	    margin: 5px 10px;
	}
	.team-member .social {
	    top: 0;
	    right: 16px;
	    margin: 5px 8px;
	    position: absolute;
	}
	.team-member .social a{
		display: block;
	}
	.services p,
	.services .hser i,
	.services .hser h4{
		font-size: 18px;
	}
	.fs-form-full{
		width: 100%;
	}
	.fs-message-error.fs-show {
	    bottom: -52px;
	    left: 0;
	}
	button.fs-continue{
		width: 200px;
		left: calc(50% - 100px);
		top: calc(100% - 50px);
	}
	.fs-form-full .fs-fields > li label[data-info]::before {
		font-size: 16px;
	}
	.fs-form-overview{
		padding: 5px;
	}
	.fs-form-overview ol{
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		flex-direction: row;
	}
	.fs-form-overview .fs-fields > li{
		width: 100%;
	}
	.fs-form-overview .fs-fields input{
		font-size: 16px;
	}
	.fs-form-overview .fs-fields li:nth-child(1) input {
	    padding-left: 72px;
	}
	.fs-form-overview .fs-fields li:nth-child(2) input {
	    padding-left: 65px;
	}
	.fs-form-overview .fs-fields li:nth-child(3) input {
	    padding-left: 47px;
	}
	.fs-form-overview .fs-fields li:nth-child(4) input {
	    padding-left: 78px;
	}
	button.fs-submit{
	    width: 100%;
	    color:#a9a9a9;
	    font-weight: 100;
	    margin-top: 10px;
	    border: 1px solid #e1e2e3;
	}
	.fs-form span i.fa-refresh{
		left: 10%;
		bottom: 0;
		position: absolute;
	}
	.result-contact{
		top: calc(100% - 45px);
		width: calc(100% - 20px);
	}
}