/*-----------------------------------------------------------------
[Legal Notice]

Copyright (c) HighHay/Mivfx
Before using this template, you should agree with themeforest licenses terms.
http://themeforest.net/licenses
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
/** CSS Reference
    0. Base Style
        0.button Buttons
        0.color Color bg-XX text-XX
	1. Link and logo at top / .header-top
	2. Page footer / .page-footer
	3. Page cover / .page-cover
		3.1. page cover background image,color (overriden by data-bgcolor or data-image-src atributes) / .page-cover .cover-bg
		3.2 Page cover  background mask (overriden by data-bgcolor or data-image-src atributes) / .page-cover .cover-bg-mask
	4. Main page / .page-main
		4.0 Page footer with scroll down button / .p-footer
		4.1 Page general params / .page-cent, .page
        4.2 Click to another slide button / .page-click
        4.3 Home panel / .page-home
            4.3.1 Clock countdown / .page .clock
        4.4 Registration form panel / .page-register
        4.5 Message panel / .form.message
        4.6 Social network panel / .page-social
        4.7 Contact information panel / .page-contact
	5. Video background / .video-container

	Hooks for responsiveness (mobile friendly) can be found in "main_responsive.css" file

**/
/*---------- 
[Colors]
    text color : #FFFFFF, #FFF
    black : #222222
    transluscent white : rgba(255, 255, 255, 0.15) / #fff;
*/

/* 0. Base Style  */
/* initialization */
html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
	background: #626262;
}

::-moz-selection {
    background: #fff;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
svg,
video {
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

body, html, h1, h2, h3, h4, h5, h6, a, ul, li{
    
}
body{
    font-family: 'OpenSans';
    background: #fff;
    
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none outside none;
    margin: 0;
}
iframe{
    border: none;   
}
.pos-rel{
    position: relative;
}
.pos-abs{
    position: absolute;
}
.pos-fix{
    position: fixed;
}
.full-width{
    width: 100%;
    max-width: 1440px;
}
.full-height{
    height: 100%;   
}
.full-size{
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}

.my-button {
    text-transform: uppercase; 
    font-size: 1rem;
    padding: 1em;
    /* padding-top: 0.8rem; */
    padding-bottom: 0.8rem;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
}

.center-vh{
/*
    height: 100%;
    width: 100%; 
*/
    /* width needed for Firefox */

    /* old flexbox - Webkit and Firefox. For backwards compatibility */
    display: -webkit-box; display: -moz-box;
    /* middle-aged flexbox. Needed for IE 10 */
    display: -ms-flexbox;
    /* new flexbox. Chrome (prefix), Opera, upcoming browsers without */
    display: -webkit-flex;
    display: flex;

    /* old flexbox: box-* */
    -webkit-box-align: center; -moz-box-align: center;
    /* middle flexbox: flex-* */
    -ms-flex-align: center;
    /* new flexbox: various property names */
    -webkit-align-items: center;
    align-items: center;


    -webkit-box-pack: center; -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;    
}
.pos-top{
    top:0;
}
.pos-left{
    left: 0;
}
.pos-right{
    right: 0;
}
.pos-bottom{
    bottom: 0;   
}
.relh100{
    position:relative; height: 100%;   
}
/* Make page full width so reset foundation restriction on max-width*/
.row{
/*    width: 100%;*/
    max-width: 100%;
}


ul, li{
    list-style: none outside none;
    margin: 0;
}

.full-width{
    width: 100%;
    max-width: 100%;
    
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.fullscreen-width{
    width: 100%;
    max-width: 100%;
}
.table{
    display: table;
    height: inherit;
    margin: auto;
}
.table-cell{
    display: table-cell;
/*    height: inherit;*/
    vertical-align: middle;
}
.align-center{
    text-align: center;   
}
.align-left{    
    text-align: left;
}
.align-right{
    text-align: right;   
}
.align-justify{
    text-align: justify;   
}
/*
.mask{
    position: relative;
}
*/

/** 0. color Color */
.mask:before
{
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    opacity: 0.8;
/*    z-index: 10;*/
}
.title.bg-red,
.bg-red,
.mask-red:before{    
    background: #e51c23;
}
.title.bg-yellow,
.bg-yellow,
.mask-yellow:before{    
    background: #ffeb3b;
}
.title.bg-blue,
.bg-blue,
.mask-blue:before{    
    background: #5677fc;
}
.title.bg-pink,
.bg-pink,
.mask-pink:before{    
    background: #e91e63;
}
.title.bg-green,
.bg-green,
.mask-green:before{    
    background: #259b24;
}
.title.bg-white,
.bg-white,
.mask-white:before{    
    background: #fff;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #1f1f1f;
}
.title.bg-orange,
.bg-orange,
.mask-orange:before{    
    background: #ff9800;
/*    background: #ef6c00;*/
}
.title.bg-purple,
.bg-purple,
.mask-purple:before{    
    background: #9c27b0;
}
.title.bg-lime,
.bg-lime,
.mask-lime:before{    
    background: #cddc39;
}
.title.bg-bluegrey,
.bg-bluegrey,
.mask-bluegrey:before{    
    background: #607d8b;
}

.title.bg-bluegreylight,
.bg-bluegreylight,
.mask-bluegreylight:before{    
    background: #f0f0f0;
}
.title.bg-bluegreydark,
.bg-bluegreydark,
.mask-bluegreydark:before{    
    background: #37474f;
}
.title.bg-indigo,
.bg-indigo,
.mask-indigo:before{    
    background: #3f51b5;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #000;
}
.title.bg-black1,
.bg-black1,
.mask-black1:before{    
    background: #333;
}
.title.bg-amber,
.bg-amber,
.mask-amber:before{    
    background: #ffc107;
}

.text-white{
    color: #fff;   
}
.text-black{
    color: #333333;   
}
.text-bold{
    font-weight: bold;   
}
.text-red{
    color: #e51c23;   
}
.text-blue{
    color: #455ede;   
}
.text-orange{
    color: #ff9800;   
}
.text-yellow{
    color: #ffd600;   
}
.text-amber{
    color: #ffc107;   
}
.text-pink{
    color: #e91e63;   
}
.text-lightblue{
    color: #03a9f4;   
}

.small-col-20{
    width: 20%;
}
.box-shadow {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
}





/* Viewport visibility animation  */
.hidden{
     opacity:0;
     -webkit-transition: 0.6s;
     -ms-transition: 0.6s;
     transition: 0.6s;
}
.visible{
     opacity:1;
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.invisible{
    display: none !important;  
}
.s-visible-medium-up{
    opacity:0;
}
strong,
.bold{
	font-weight: bold;
}
.column, .columns{
    padding: 0;   
}
.row .row{
    margin: 0;   
}

/* 1. Link and logo at top  */
.header-top{
    position: fixed;
    z-index: 20;
    top:0;
    left: 0px;
	height: 56px;
/*
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
*/
}
.header-top.material{
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}

	.header-top>div{
		display: inline-block;
		float: left;
	}
	.header-top .logo img{
		height: 48px;
		width: auto;
		padding: 4px 16px;
		padding-left: 48px;
	}
	.header-top .logo{
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.header-top .logo:hover{
		background: rgba(255, 255, 255, 0.15);
	}

	.header-top.material .menu{
		border-right: 1px solid #f5f5f5;
	}
	.header-top.material .menu:last-child{
		border-right: none;
	}
	.header-top.material .menu a,
	.header-top .menu a{
		height: 48px;
/*		display: inline-block;*/
		display: block;
		float: left;
		background: #fff;
		color: #5677fc;
		text-transform: capitalize;
		text-align: center;
		font-size:16px;
    	font-family: 'Asap';
		font-weight: normal;
		padding: 10px 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.header-top .menu a{
		background: transparent;
		font-weight: normal;
/*		font-weight: bold;*/
		color: #fff;
		position: relative;
	}
	.header-top.material .menu a:first-child:after{
		display: none;
	}
	.header-top .menu a:first-child:after{
		position: absolute;
		left: 0;
		top: 25%;
		height: 50%;
		width: 1px;
		background: #fff;
		content: "";
	}

	.header-top.material .menu a:hover{
		background: #5677fc;
	}
	.header-top .menu a:hover{
		background: rgba(255, 255, 255, 0.15);
		color: #fff;
	}

/* 2. Page footer */
.page-footer{
	z-index: 2;
	position: fixed;
	bottom: 5px;
	right: 48px;
	margin-right: -8px;
	color: #fff;
	font-size:16px;
	font-family: 'Asap';
	font-weight: normal;
}
.page-footer .text{
	vertical-align: middle;
	display: inline-block;
}
.page-footer a:first-child{
	margin-left: 8px;
}
.page-footer a{
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
	margin-top: 2px;
	vertical-align: middle;
	padding: 5px 8px;
}
.page-footer a .ion{
	font-size: 1.4em;
	display: inline-block;
}
.page-footer a:hover{
	opacity: 0.8;
}


/* 3. Page cover */
.page-cover{
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 0;
}
    /* 3.1. Page cover background image,color */
    .page-cover .cover-bg{
        background: url(../img/bg-default.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: -3;
    }
	.page-cover .cover-bg.bg-color{
        background-image: none;
        z-index: -3;
    }

    /* 3.2 Page cover  background mask */
    .page-cover .cover-bg.cover-bg-mask{
        background: rgba(0, 0, 0, 0.12);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed; 
        z-index: 0;
        -webkit-transition: 2s;
        -ms-transition: 2s;
        transition: 2s;
    }
	/* 3.3 background slide */
	.page-cover .vegas-timer {
		display: none;
	}
/* 4. Main Page */
.page-main{  
    position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	bottom: 48px;
}
.page-main .page-section{  
  position: relative;
  width: 100%;
  height: 100%;
}
.page-main .fp-controlArrow.fp-prev ,
.page-main .fp-controlArrow.fp-next ,
.page-main .fp-controlArrow {
    display: none !important;
}
.panel-container{
	width: 100%;
	height: 100%;
	margin: 0;
    padding-left: 32px;
    padding-right: 32px;
}
.panel-container .pane-slide{
	height: 100%;
/*	padding: 0 8px;*/
	padding: 0 16px;
}

/* 4.1 Page general params */
.slide-page{
	position: relative;
    width: 100%;
    height: 100%;
}
.slide-page .panel-container{
	position: relative;
	 height: 100%;
	padding: 0 16px;
}

.slide-page .panel-container:first-child{
	padding-left: 32px;
}
.slide-page .panel-container:last-child{
	padding-right: 32px;
}

.page{    
    position: relative;
    width: 100%;
    height: 100%;
	background: #222;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.page-main .owl-stage-outer{
	height: 100%;
}
.page-main .owl-stage{
	height: 100%;
}
.page-main .owl-item{
	height: 100%;
}

.page-cent{
    width: 100%;   
    position: relative;
    text-align: center;
}
.page-cent .content p{
}
.page-cent .content{
/*    width: auto;*/
	width: 100%;
    margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Asap';
	color: #fff;
}

.page-cent .p-title{
    display: block;
    margin-bottom: 0.5rem;
}
.page-cent .p-title h3{
/*    text-transform: capitalize;   */
    font-size: 40px;
    padding-left: 0px;
    text-align: center;
	font-weight: bold;
/*    display: inline-block;*/
	color: #fff;
    font-family: 'Asap';
/*	border-bottom: 8px solid #5677fc;*/
}
.page-cent .p-title h2{
    text-transform: uppercase;   
    font-size: 56px;
	line-height: 1.3em;
    text-align: left;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
    display: block;
	color: #fff;
    font-family: 'Asap';
}

/* Page general structure */
.page .p-title i{
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 0em;
	font-size: 0.8em;
}
.page-cent .text{	
    font-family: 'Asap';
	color: #fff;
	text-align: left;
}
.page p{    
    font-family: 'Asap';
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0.75rem;
}
.page p.small{
	font-size: 14px;
}
.page p.center{
	text-align: center;
}
.page p.upper{
    text-transform: uppercase;
}
.page p.light{
    font-family: 'OpenSans-Light';
}
.page h4{
	text-transform: uppercase;
	font-weight: bold;
    color: #ffffff;
    font-size: 20px;
	margin-bottom: 0;
	margin-top: 0;
}

.page h2,
.page h3,
.page h4{
    font-family: 'Asap';
    color: #ffffff;
}

/* 6.2 Page and slide animation */
/*.slide,
.page .content,
.page-home .logo-container ,
.page{
	-webkit-transition: 0.8s background , 0.6s transform, 0.6s opacity;
	transition: 0.8s background , 0.6s transform, 0.6s opacity;
	-webkit-transform: none;
	transform: none;
	background: transparent;
	border: none;
}
.page .content{
	z-index: 1;
}
.page:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	content: '';
	z-index: 0;
	-webkit-visibility: hidden;
	visibility: hidden;
	-webkit-transition: 0.8s background , 0.6s transform, 0.8s visibility;
	transition: 0.8s background , 0.6s transform, 0.8s visibility;
	-webkit-transform: none;
	transform: none;
}
.page.transition:before{
	-webkit-visibility: visible;
	visibility: visible;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
.page-home.transition .logo-container{
	-webkit-transform: translateY(20px) scale(0.1);
	transform: translateY(20px) scale(0.1);
	opacity: 0;
}
.page.transition .content{
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
}
.slide.transition{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}*/

/* 4.2 Click to another slide button */
.page-click{
	position: relative;
	height: 100%;
}
.page-click:after{
	position: absolute;
	left: 50%;
	margin-left: -1px;
	top: 50%;
	bottom: 0;
	right: auto;
	width: 2px;
	content: "";
	background: #fff;
}
.page-click.line-right:after{
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 50%;
    margin-left: 70px;
	right: -60px;
	bottom: auto;
	width: auto;
	height: 2px;
	content: "";
	background: #fff;
}
.page-click.line-left:after{
	position: absolute;
	top: 50%;
	margin-top: -1px;
	right: 50%;
    margin-right: 70px;
	left: -60px;
	bottom: auto;
	width: auto;
	height: 2px;
	content: "";
	background: #fff;
}
.page-click .p-button{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	margin-left: -70px;
	margin-top: -70px;
	width: 140px;
	height: 140px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.1);
	border: solid 2px #fff;
	z-index: 2;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.page-click .p-button:hover{
	background: rgba(255, 255, 255, 0.15);
}
.page-click .p-button:after{
	z-index: -1;
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	border: 0px solid #fff;
	border-radius: 100%;
	opacity: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.page-click .p-button:hover:after{
	top: -16px;
	left: -16px;
	right: -16px;
	bottom: -16px;
	
	opacity: 1;
	border-width: 6px;
}

.page-click .p-button .title{
	position: absolute;
	top: -48px;
	width: 100%;
}
.page-click .p-button .title h2{
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
}
.page-click .p-button .icon {
	padding: 22px;
}
.page-click .p-button .icon a{
	font-size: 96px;
	color: #fff;
	line-height: 1;
	display: block;
	width: 1em;
	height: 1em;
/*	background: #ff4;*/
}

/* 4.3 Home panel */
.page-home .content ,
.page-home.page-cent .content {
	position: relative;
	max-width: 1200px;
	width: 100%;
}
.page-home .logo-container{
	position: relative;
	text-align: center;
}

.page-home .logo-container img.h-logo{
	position: relative;
	display: inline-block;
	/* adjust below according t your llogo dimension */
	height: 306px;
	width: auto;
}

.page-home .content .header{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.page-home .content .header>div{
	display: inline-block;
	position: relative;
}

.page-home .content h2{
/*	text-transform: uppercase;*/
	font-size: 40px;
	text-align: center;
	line-height: 1em;
}

.page-home .content h3{
	text-align: center;
/*	text-transform: uppercase;*/
	font-size: 16px;
	line-height: 1em;
	font-weight: 100;
	padding-left: 10px;
}
.page-home .content p{
	text-align: center;
	font-size: 14px;
	margin-top: 32px;
	padding: 0 16px;
}
.page-home .content .subhead{
	text-align: center;
	font-size: 16px;
	font-weight: 100;
	text-transform: none;
	color: rgba(255,255,255,0.2);
	-webkit-transition: 0.3s;
	transition: 0.3s;
/*	width: 300px;*/
/*	border-top: 1px solid currentColor;*/
}

.page-home .content .subhead a{
	color: inherit;
}
/* 4.3.1 Clock countdown */
.page-when .content{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.page .content .clock{
	width: 150px;
	height: 150px;
	margin: 0 auto;
	border-radius: 100%;
/*	background: rgba(255,255,255,0.15);*/
	position: relative;
	margin-top: 24px;
}

/* Mask to disable click */

.page .content .clock:before{
	z-index: 3;
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
/*	box-shadow: 0px 0px 12px 1px rgba(7, 7, 7, 0.15);*/
}

.page .content .clock .header{
	position: absolute;
	top: -72px;
    font-family: 'Asap';
	font-weight: normal;
	font-size: 30px;
	text-align: center;
	width: 100%;
}
.page .clock .text{
    position: relative; 
    width: 100%;
    font-family: 'Asap';
	font-weight: normal;
    letter-spacing: 0;
    margin-top: 0.5em;
    display: block;
    text-transform: uppercase;
    color: #fff;
	text-align: center;
}
.page .clock .block:last-child .digit:after{
    display: none;
}
.page .clock .elem-center{
    display: inline-block;
    position: relative;
    text-align: center;
	width: 100%;
	top: 0;
	margin-top: 50%;
	height: 50%;
	bottom: 0;
}
.page .clock .elem-center .digit{
    position: relative; 
    font-size: 64px;
	margin-top: -0.5em;
	letter-spacing: -0.03em;
	line-height: 1em;
    font-family: 'Asap';
	font-weight: bold;
	width: 100%;
    color: #fff;
    display: block;
}
.page .clock .elem-center .text{
	position: absolute;
	bottom: 38%;
	font-size: 16px;
	margin-top: 0;
}
.page .clock .elem-center .text.top{
	bottom: 124%;
}
.page .clock .elem-center .text.top img{
	height: 65px;
	margin-bottom: 20px;
}
.page .clock .elem-right,
.page .clock .elem-left{
	position: absolute;
	width: 70px;
	top: 50%;
	bottom: 0;
	display: block;
}
.page .clock .elem-left{
	left: -72px;
}
.page .clock .elem-right{
	right: -72px;
}
.page .clock .elem-right .text,
.page .clock .elem-left .text{
	position: absolute;
	bottom: 58%;
	font-size: 12px;
	margin-top: 0;
}
.page .clock .elem-right .digit,
.page .clock .elem-left .digit{
    position: relative; 
	text-align: center;
    font-size: 40px;
	letter-spacing: -0.03em;
	margin-top: -0.5em;
	line-height: 1;
    font-family: 'Asap';
	font-weight: normal;
	width: 100%;
    color: #fff;
    display: block;
}
.page .clock .second{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	border: 0px solid #fff;
	border-radius: 100%;
	z-index: 2;
	-webkit-box-shadow: inset 0px 0px 0px 2px #fff;
	-moz-box-shadow: inset 0px 0px 0px 2px #fff;
	box-shadow: inset 0px 0px 0px 2px #fff;
}

/* 4.4 Registration form panel */
.page-register {
	position: relative;
}
.page-register .content{
	width: 100%;
/*    margin-top: -4rem;*/
/*
    padding-left: 1em;
    padding-right: 1em;
*/
	position: absolute;
	padding-top: 0;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: -140px;
}
.page.page-register .form input {
	left: 0;
}
.page .p-title .icon {
	text-align: center;
}
.page .p-title .icon i {
	font-size: 48px;
	margin: 0;
	margin-bottom: 16px;
}
.page-register h3{
	line-height: 1;
}
.page-register p{
	font-size: 16px;
	padding: 0 16px;
}
.page .form{  
}
.page .form input{ 
    background: transparent;
/*    background: #f4f;*/
    border: none;
    color: #fff;
    padding: 0em 1em;
	padding-bottom: 0.6em;
    font-family: 'Asap';
    font-size: 16px;
    box-shadow: none;
    display: inline-block;
/*    min-width: 400px;*/
	position: absolute;
    width: auto;
	width: 100%;
	bottom: 0;
/*	left: 80px;*/
	left: 0;
	right: 0;
	margin-bottom: 0;
}
/* 4.5 Message panel */
.page .form.message input{
	padding-left: 72px;
}
.page .form.send_email_form input{
	
}
.page .form.send_email_form .fields{
	margin-top: 72px;
	background: rgba(255, 255, 255, 0.10);
	padding-left: 16px;
	height: 46px;
	min-height: 36px;
}

.page .form.send_email_form .buttons,
.page .form.send_email_form .buttons button{
	height: 45px;
}
.page .form label{
	display: inline-block;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    color: #fff;
	text-transform: uppercase;
    display: inline-block;
	margin-top: -10px;
	top: 0;
	position: relative;
	padding-top: 0.40em;
}
.page .form.message .fields .input{
	position: relative;
	width: 100%;
}
.page .form.message .fields:not(.message) label{
	position: absolute;
	top: -36px;
}
.page .form .fields{
/*	margin-top: 24px;*/
	margin-top: 72px;
	position: relative;
    border-bottom: 1px solid #5677fc;
    border-bottom: 2px solid #fff;
}
.page .form .fields.no-border{
	border: none;
}
.page .form .fields.message{
	margin-top: 24px;
}
.page .form .fields>div{
	float: left;
}
.page .form .fields .buttons{ 
	position: absolute;
	bottom: 0;
	right: -.5px;
}
.page .form button{ 
    background: #5677fc;
    background: #111;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 0.5rem 1rem; 
    margin-bottom: 0;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 2;
}
.page .form button:after{
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	content: "";
	background: #fff;
	opacity: 0;
	border-radius: 120px;
	-webkit-transition: 0.3s;
	transition: 0.3s;	
}
.page .form button:hover:after{
	opacity: 1;
	border-radius: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.page .form button:hover{
	background: transparent;
	color: #222;
}
.page .form textarea{ 
    background: #fff;
    border: 1px solid currentColor;
    color: #626262;
    padding: 0.5em 1em;
    min-width: 200px;    
    font-size: 16px;
	font-family: "Asap";
    display: block;
    width: 100%;
    box-shadow: none;
    min-height: 108px;
	margin-top: 3px;
} 
.page .message-ok{
    margin-bottom: 0;
    position: absolute;
    font-size: 16px;
}

/* 4.6 Social network panel */
.page-social .content{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;	
	padding: 0;
	text-align: center;
}
.page-social .icon-list{
	display: inline-block;
/*	margin-left: -32px;*/
	padding: 0;
/*	background: #f4f;*/
}
.page-social .icon-list,
.page-social .icon-list.line-1{
	margin-top: -46px;
}
.page-social .icon-list.line-2{
	margin-top: -88px;
}
.page-social .icon-list.line-3{
	margin-top: -128px;
}
.page-social .icon-list li{
	width: 64px;
	height: 64px;
	margin: 8px;
	padding: 0;
	position: relative;
}
.page-social .icon-list li:after{
	position: absolute;
	top: -0;
	left: -0;
	right: -0;
	bottom: -0;
	content: "";
	border: 0px solid #fff;
	z-index: 1;
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.page-social .icon-list li:hover:after{
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	opacity: 1;
	border-width: 4px;
}
.page-social .icon-list a{
	z-index: 2;
	position: relative;
	text-align: center;
	color: #fff;
	font-weight: 100;
	background: rgba(255,255,255,0.15);
	font-size: 40px;
	width: 64px;
	height: 64px;
	line-height: 1.6;
	display: inline-block;
}

/* 4.7 Contact information panel */
.page-contact{  
/*    margin-top: -1rem;*/
}
.contact ul{
	margin-left: 0;
}
.page-contact .fp-controlArrow {
	display: none;
}
.page-contact .p-title{
	position: relative;
}
.page-contact .p-title .buttons{
	position: absolute;
	bottom: 8px;
	right: 0;
	background: rgba(255,255,255,0.15);
	display: inline-block;
}

.page-contact .p-title .buttons li{
	position: relative;
	display: block;
	width: 48px;
	float: left;
}
.page-contact .p-title .buttons a{
	text-align: center;
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	margin: 0;
}
.page-contact .p-title .buttons a i{
	margin: 0;
	font-size: 24px;
	padding-top: 0.5em;
}

.page-contact .p-title .buttons a:after{
	position: absolute;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.page-contact .p-title .buttons a:hover:after{
	border-radius: 0;
	background: rgba(255,255,255,0.15);
}
.page-contact .contact li{
	margin-top: 20px;
}
.page-contact .contact img{
	height: 56px;
	width: auto;
}
.page-contact a{
    color: #fff;
}
.page-contact .right{
	text-align: right;
}
	.page-contact .social-links .page-header .header-title{
        display: none;
    }
    .page-contact .socialnet{
		margin-right: -10px;
	}
    .page-contact .socialnet a{
        color: #fff;
		font-size: 24px;
        margin-bottom:  0.25rem;
        display: inline-block;
		width: 1.5em;
        border-radius: 1em;
        background: transparent; 
		position: relative;
		text-align: center;
    }
    .page-contact .socialnet a:after{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: transparent;
        -ms-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
		border-radius: 100%;
	}
    .page-contact .socialnet a:hover:after{
        border-radius: 0;
        background: rgba(255, 255, 255, 0.15); 
        color: #fff;       
    }
/* Form */

/* 5. Video background */
/* 5.1. static video background */
.video-container{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: -2;
}
.video-container video{
    height: 724px; 
    width: 1287px; 
    margin-top: -42px; 
    margin-left: 0px;   
}
.video-container iframe{    
    width: 100%;
    height: 100%;
}
.show-for-medium-up{
    display: none;   
}

