/**
 *
 * -------------------------------------------
 * Basic template CSS file
 * -------------------------------------------
 *
 **/
 
/*
 *
 * 1. Global elements
 *
 *
------------------------------------ */
 
/* 1.1. Base document elements
==================================== */

* {
	outline: none!important;
}

html {
	border-bottom: 1px solid transparent; /* with min-height cause showing always the scrollbar */
	-webkit-font-smoothing: antialiased; /* Fixes Webkit GPU rendering */
	min-height: 100%;
}

body { 
	background: #fff;
	color: #555;
	font-size: 13px;
	line-height: 1.7;
	min-height: 100%;
	padding: 0 10px 20px 10px;
}

.gk-page + #gk-top,
.gk-page + .gk-page-wrap {
	margin-left: -10px!important;
	margin-right: -10px!important;
	padding-left: 10px!important;
	padding-right: 10px!important;
}

/* 1.2. Base typography elements
==================================== */

a {
	color: #333;
	text-decoration: none;
	-webkit-transition: color 0.3s ease-out;
	-moz-transition: color 0.3s ease-out;
	-ms-transition: color 0.3s ease-out;
	-o-transition: color 0.3s ease-out;
	transition: color 0.3s ease-out;
}

article section.content a,
article section.intro a {
	color: #5990de;
}

article section.content a:active,
article section.content a:focus,
article section.content a:hover,
article section.intro a:active,
article section.intro a:focus,
article section.intro a:hover {
	color: #111;
}

a:active,
a:focus,
a:hover {
	color: #5990de;
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #444;
	font-weight: normal;
	margin: 20px 0;
	-ms-word-wrap: break-word;
	    word-wrap: break-word;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

p {
	-ms-word-wrap: break-word;
	    word-wrap: break-word;
}

.page-title {
	font-size: 32px;
}

ul, 
ol {
	list-style-type: none;
	margin: 10px 0;
	padding: 0;
}

ul li,
ol li {
	line-height: 2.8;
}

img {
	height: auto;
	max-width: 100%;
}

.box ul li,
.box ol li {
	border-top: 1px solid #eee;
}

.box ul li:first-child,
.box ol li:first-child {
	border-top: none;
}

.box ul ul,
.box ol ol {
	border-top: 1px solid #eee;
	margin: 0;
	padding: 0 0 0 20px;
}

/* 1.3. Base form elements
==================================== */

/* buttons */
.btn,
button,
.readon,
a.gk-button,
input[type="button"],
input[type="submit"] {
	display: inline-block;
	padding: 4px 10px 4px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 18px;
	color: #333333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	cursor: pointer;
	background-color: #f5f5f5;
	background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border: 1px solid #cccccc;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	   -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled],
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:active,
input[type="button"]:active,
input[type="submit"]:active,
button.disabled,
input[type="button"].disabled,
input[type="submit"].disabled,
a.gk-button:hover,
a.gk-button:active,
a.gk-button.active,
a.gk-button.disabled,
a.gk-button[disabled],
.readon:hover,
.readon:active,
.readon:focus {
  background-color: #e6e6e6;
}

.btn:active,
.btn.active,
button:active,
a.gk-button:active,
a.gk-button.active
input[type="button"]:active,
input[type="submit"]:active {
  background-color: #cccccc;
}

.btn:first-child,
button:first-child,
a.gk-button:first-child,
input[type="button"]:first-child,
input[type="submit"]:first-child {
  margin-left: 0;
}

.btn:hover,
button:hover,
a.gk-button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
      -ms-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.btn:focus,
button:focus,
a.gk-button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active,
button:active,
a.gk-button:active,
input[type="button"]:active,
input[type="submit"]:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled],
button.disabled,
a.gk-button:disabled,
a.gk-button[disabled],
input[type="button"].disabled,
input[type="submit"].disabled {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

/* input fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="www"],
input[type="tel"]  {
	background: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	color: #333;
	font: normal 12px Arial, Helvetica, sans-serif;
	height: 32px;
	line-height: 32px;
	padding: 0 9px;
}

textarea {
	background: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	color: #333;
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
	line-height: 23px;
	padding: 10px;
	text-transform: none;
}

label {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	padding: 0 0 4px 0;
}

select {
	max-width: 100%;
}

/* 1.4. Base other elements
==================================== */

article {
	margin: 20px 0;
}

.tag-page article,
.category-page article,
.search-page article {
	margin: 20px 0 60px 0;
}

/* 1.5. Base CSS classes
==================================== */

/*
 *
 * 2. Template containers
 *
 *
------------------------------------ */

#gk-head + .gk-page-wrap,
#gk-head + #gk-top {
	border-top: 1px solid #e5e5e5;
	padding-top: 45px;
}

#gk-header + .gk-page-wrap {
	padding-top: 20px;
}

.gk-page {
	margin: 0 auto;
	width: 100%; 
}

#gk-mainbody-columns {
	display: block;
	/*overflow: hidden;*/
	width: 100%;
}

#gk-mainbody-columns > section {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	padding: 0;
}

#gk-mainbody-columns > aside {
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	padding: 0 0 0 20px;
}

#gk-mainbody-columns.gk-column-left > section {
	float: right;
}

#gk-mainbody-columns.gk-column-left > aside {
	float: left;
	padding: 0 20px 0 0;
}

/*
 *
 * 3. Template structure
 *
 *
------------------------------------ */
 
/* 3.1. Top
==================================== */

#gk-top {
	overflow: hidden;
	padding: 24px 14px;
}

/* 3.2. Header
==================================== */

#gk-head {
	position: relative;
}

#gk-head:after {
	clear: both;
	content: "";
	display: table;
}

#gk-head h1 {
	float: left;
	margin: 0;
}

#gk-head a.cssLogo {
	background: transparent url('../images/logo.png') no-repeat 0 0;
	display: block;
	height: 67px;
	width: 219px;
	text-indent: -9999px;
}

#gk-head a.textLogo {
	color: #5990de;
	display: block;
	font-size: 18px;
	line-height: 22px;
	padding: 7px 0 0 10px;
}

#gk-head a.textLogo small {
	color: #333;
	display: block;
	font-size: 12px;
	line-height: 12px;
}

#gk-head a.imageLogo,
#gk-head a.imageLogo img {
	display: block;
}

#main-menu-mobile {
	border: 1px solid #000;
	height: 48px;
	left: -9999px;
	position: absolute;
	top: 0px;
	width: 160px;
}

#gk-header {
	background: #f5f5f5;
	margin: 0 -10px;
	padding: 30px 0;
	
	-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

background: -moz-linear-gradient(top,  rgba(245,245,245,1) 0%, rgba(255,255,255,1) 50%, rgba(245,245,245,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,245,245,1)), color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(245,245,245,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 50%,rgba(245,245,245,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 50%,rgba(245,245,245,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 50%,rgba(245,245,245,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 50%,rgba(245,245,245,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f5f5f5',GradientType=0 ); /* IE6-9 */

	
}

#gk-header .header img {
	display: block;
	height: auto;
	width: 100%;
}

#gk-header .header {
	border: none;
	margin: 0;
	padding: 0;
}

/* 3.3. Content
==================================== */

section.intro {
	font-size: 110%;
	padding: 0;
}

.box::after,
#respond::after,
#gk-mainbody::after,
#gk-mainbody-columns::after {
    clear: both;
    content: "";
    display: table;
}

section.content::after {
    clear: both;
    content: "";
    display: table;
}

/* 3.4. Sidebar
==================================== */

/* 3.5. Bottom
==================================== */

#gk-bottom {
	border-top: 1px solid #e5e5e5;
	margin: 30px auto;
	overflow: hidden;
	padding: 45px 0 0 0;
}

#gk-bottom ul li,
#gk-bottom ol li {
	line-height: 2.0;
}

#gk-bottom .box ul li,
#gk-bottom .box ol li {
	border-top: none;
}

/* 3.6. Footer
==================================== */

#gk-footer {
	border-top: 1px solid #e5e5e5;
	clear: both;
	color: #777;
	font-size: 11px;
	margin: 20px auto 20px auto;
	padding: 10px 0;
}

#gk-footer a {
	color: #aaa;
}

#gk-footer a:active,
#gk-footer a:focus,
#gk-footer a:hover {
	color: #5990DE;
}

#footer-menu {
	float: left;
	line-height: 32px;
	margin: 0;
}

#footer-menu li {
	float: left;
	margin-right: 10px;
}

#footer-menu ul {
	display: none;
}

#gk-footer .gk-copyrights {
	float: right;
	line-height: 32px;
}

#gk-style-area {
	clear: both;
	margin: 20px 0;
	text-align: center;
}

#gk-footer .gk-framework-logo {
	clear: both;
	display: block;
	margin: 0 auto!important;
	padding: 96px 0 16px 0!important;
}

#gk-top-link {
	margin-left: 20px;
}

.gk-disclaimer {
	clear: both;
	margin: 0;
	text-align: center;
}

/*
 *
 * 4. Widget styles
 *
 *
------------------------------------ */
 
/* 4.1. Base style
==================================== */

.box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
}

.box-title {
	font-size: 20px;
	font-weight: 300;
	margin: 0 0 12px 0;
}

/* 4.2. Base style for other areas
==================================== */

#gk-top .box,
#gk-bottom .box {
	float: left;
}

.widget-area .col1 { width: 100%; }
.widget-area .col2 { width: 50%; }
.widget-area .col3 { width: 33.3%; }
.widget-area .col4 { width: 25%; }
.widget-area .col5 { width: 20%; }
.widget-area .col6 { width: 16.6%; }

.widget-area .box.last1 { width: 100%; }
.widget-area .box.last2 { width: 50%; }
.widget-area .box.last3 { width: 33.3%; }
.widget-area .box.last4 { width: 25%; }
.widget-area .box.last5 { width: 20%; }

.widget-area .nth1 {
	clear: both;
}

/* 4.3. Device classes
==================================== */

.onlyDesktop {
	display: block!important;
}

.onlyTablets {
	display: none!important;
}

.onlySmartphones {
	display: none!important;
}

.onlyTabltetsAndSmartphones {
	display: none!important;
}



/* 5 aditional
==================================== */
.stations {
	padding:30px 0 80px;
}
.stations .one_station{
	position:relative;
	margin-top:20px;
	padding:40px 0 30px;
	border:1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-left:-2px;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.stations .stations-image{
	text-align:center;
}
.stations .station-title{
	text-align:center;
}

.stations .station-description{
	position:absolute;
	/*display:none;*/
	opacity:0;
	background:white;
	padding:10px 5%;
	left:2.5%;
	border:1px solid #ccc;
	top:0;
	box-shadow:2px 5px 10px rgba(0, 0, 0, 0.5);
	width: 81%;
	top:100%;
	z-index:9999;
	-moz-transition:all .5s;
	transition:all .5s;
	transform-origin:top;
	
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg); /* Safari and Chrome */
}
.stations .one_station:hover .station-description{
	opacity:1;
	display:block;
	
	transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg); /* Safari and Chrome */
}
.visit-container{
	text-align:center;
}
.station-visit{
	min-width:100px;
	margin:auto;
	display:inline-block;
}



/***/

.customers{
	padding:30px 0;
}
.one_customer {
	margin:10px 0;
}
/***/


.features{
	padding:30px 0 80px;
}
.features .text-side{
	width:60%;
	float:right;
	position:relative;
}
.features .features-image {
	float:left;
	width:35%;
}
.features .features-image img {
	width:100%;
	-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
	-moz-box-shadow:1px 2px 3px rgba(0, 0, 0, 0.7);
	box-shadow:1px 2px 3px rgba(0, 0, 0, 0.7);
	margin-left:7px;
}
.features h3 {
	
}
.one_feature {
	margin-top:20px;
	margin-bottom:30px;
}

.features-description{
	
	opacity:0;
	-moz-transition:all .5s;
	transition:all .5s;
	position:absolute;
	top:100%;

	background:white;
	padding:10px 3%;
	left:2%;
	border:1px solid #ccc;
	box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	width: 89%;
	z-index:9999;
	transform-origin:top;
	
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg); /* Safari and Chrome */
	
}
.one_feature:hover  .features-description{

	opacity:1;
	transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg); /* Safari and Chrome */
	
}




.home-icon{
	transition:all .3s;
	font-size:90px;
	margin-top:50px;
	display:inline-block;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.home-icon.icon-microphone{
	color:#FBB450;
}
.home-icon.icon-road{
	color:#333333;
}
.home-icon.icon-film{
	color:#5990DE;
}
.gk-demo-content:hover .home-icon{
	transform: scale(1.2);
	-ms-transform: scale(1.2); /* IE 9 */
	-webkit-transform: scale(1.2); /* Safari and Chrome */
	text-shadow: 1px 5px 5px rgba(0, 0, 0, 0.2);
}
.gk-demo-content .btn {
	transition:all .3s;
}
.gk-demo-content:hover .btn {
  background: #5990DE;
    border-radius: 5px 5px 5px 5px;
    color: #FFFFFF;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.21);
    transition: all 0.3s ease-out 0s;
	transform: scale(1.2);
	-ms-transform: scale(1.2); /* IE 9 */
	-webkit-transform: scale(1.2); /* Safari and Chrome */
}
.gk-demo-content .btn:hover {
  background: #333;

}



#gk-header .textwidget img, .img-shadow{
	width:100%;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid #999;
}

.header-photo-text{
	display:block;
	position:absolute;
	top:40%;
	right:20px;
	padding-right:20px;
	text-align:right;
	font-size:40px;
	font-family: 'Colaborate';
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	color:#eee;
	
}


#gk-header .mejs-video .mejs-mediaelement{
	transition:all .3s;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7);
}
#gk-header .mejs-video:hover .mejs-mediaelement  {
	-webkit-box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
	transform: scale(1.1);
	-ms-transform: scale(1.1); /* IE 9 */
	-webkit-transform: scale(1.1); /* Safari and Chrome */
}
#gk-header .mejs-video.mejs-container-fullscreen:hover .mejs-mediaelement{
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow:  none;
	transform: scale(1);
	-ms-transform: scale(1); /* IE 9 */
	-webkit-transform: scale(1); /* Safari and Chrome */
}


.btn-submit-form{
	padding:10px 30px!important;
}


@media screen and (max-width: 600px){
	.header-photo-text{
		display:none;
		
	}
}