/*
 *
 *
 *
 *
 *
 * Fonts
 *
 *
 *
 *
 *
 */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,700,500);
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700&subset=latin,greek-ext);
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,300,100&subset=latin,greek-ext);
/*
 *
 *
 *
 *
 *
 * Html Body
 *
 *
 *
 *
 *
 */
 html, body{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	overflow-x: hidden;
}
html{
	height: 100%;
}
@media screen and (max-width: 45em) {
body{
	height:100%;
	width: 100%;
	overflow: hidden;
}
}
/*
 *
 *
 *
 *
 *
 * Preloader
 *
 *
 *
 *
 *
 */
#preloader{
	background-color: #0079A7;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 6000;
}
#preloader h1{
	width: 100%;
	color: #00AEEF;
	font-size: 3.5em;
	text-align: center;
	line-height: 1em;
	padding-top: 1em;
}
.spinner {
	position:relative;
	margin: 25% auto 0;
	width: 30px;
	height: 30px;
	position: relative;
	text-align: center;
      
	-webkit-animation: rotate 2.0s infinite linear;
	-moz-animation: rotate 2.0s infinite linear;
	-o-animation: rotate 2.0s infinite linear;
	animation: rotate 2.0s infinite linear;
}
.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #00AEEF;
	border-radius: 100%;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	-moz-animation: bounce 2.0s infinite ease-in-out;
	-o-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	-moz-animation-delay:  -1.0s;
	-o-animation-delay:  -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes rotate { 100% { -webkit-transform: rotate(360deg) } }
@-moz-keyframes rotate  { 100% { -webkit-transform: rotate(360deg) } }
@-o-keyframes rotate  { 100% { -webkit-transform: rotate(360deg) } }
@keyframes rotate  { 100% { -webkit-transform: rotate(360deg) } }

@-webkit-keyframes bounce { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } }
@-moz-keyframes bounce  { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } }
@-o-keyframes bounce  { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } }
@keyframes bounce  { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } }


@media screen and (max-width: 60em) {
#preloader h1{
	font-size: 2.4em;
	line-height: 1em;
}
}
/*
 *
 *
 *
 *
 *
 * Site container
 *
 *
 *
 *
 *
 */
#site-container {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	background-color: #E3E8EB;
	
	-webkit-box-shadow: -1px 0px 4px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: -1px 0px 4px 0px rgba(0,0,0,0.5);
	box-shadow: -1px 0px 4px 0px rgba(0,0,0,0.5);
	
	z-index: 1;
	width: 100%;
	overflow:hidden;
	position: relative;
} 
#site-container-inner {
	margin-bottom:12em;
	background-color: #E3E8EB;
    
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.4);
	box-shadow: 0 3px 3px rgba(0,0,0,0.4);
}
.pre-footer {
	padding-bottom:3em;
}
@media screen and (max-width: 64em)  {
#site-container-inner{
	margin-bottom:0em;
    box-shadow: 0 3px 3px rgba(0,0,0,0.0);
}
.pre-footer {
	padding-bottom:0em;
}
}
@media screen and (max-width: 45em) {
#site-container{
	height:100%;
	width: 100%;
	overflow: hidden;
}
#site-container-inner{
	position:absolute;
	display:block;
	top:0;
	left:0;
	height:100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: #E3E8EB;
}
}
/*
 *
 *
 *
 *
 *
 * Header
 *
 *
 *
 *
 *
 */ 
.active {
	cursor: default;
	pointer-events: none;
	color: #00AEEF;
}
header {
	text-align: justify;
	height: 5.5em;
	padding: 1em 10%;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	background-color: #F1F1F1;
	z-index: 500;
	-webkit-backface-visibility:hidden; /* Chrome, Safari, Opera */
	backface-visibility:hidden;
}
 
header::after {
    content: '';
    display: inline-block;
    width: 100%;
}
header > div,
header > div::before,
header nav, header > #logo img  {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
header > div {
    height: 100%;
}
header > div::before {
    content: '';
    height: 100%;
}
header > #logo img{
	width: 200px;
}
header > #logo a{
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
	opacity: 1;
}
header > #logo a:hover {
	opacity: 0.5;
}
header nav a {
	padding: 0 0.6em;
	white-space: nowrap;
	color: #8A8E91;
	font-size: 1em;
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
header nav a:hover {
	color: #0079A7;
}
header nav a:last-child {
    padding-right: 0;
}
.shadow{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);	
	-webkit-animation: shadow .3s ease-in backwards;
	-moz-animation: shadow .3s ease-in backwards;
	-ms-animation: shadow .3s ease-in backwards;
	animation: shadow .3s ease-in backwards;
}
@-webkit-keyframes shadow {
	0%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);	}
	100%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2); }
}
@-moz-keyframes shadow {
	0%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);	}
	100%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2); }
}
@-o-keyframes shadow {
	0%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);	}
	100%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2); }
}
@keyframes shadow {
	0%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .0);	}
	100%{
	-webkit-box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 3px 5px 0px rgba(0, 0, 0, .2); }
}
@media screen and (max-width: 69.5em) {
header nav a {
	padding: 0 0.4em;
	font-size: 0.85em;
}
}
@media screen and (max-width: 64em) {
header {
	text-align: center;
	height: auto;
	padding:0;
	position: absolute;
    -webkit-transform: translateX(0);
    transform: translateX(0);

}
header > div,
header > div::before,
header nav, header > #logo img  {
	vertical-align: auto;
    text-align:center;
}
header > #logo {
	width:100%;
}
header > #logo img{
	padding-top:1.4em;
}
header nav {
	padding-top:1em;
}
header nav a {
	padding:0 0.4em;
	font-size: 0.85em;
}
}
@media screen and (max-width: 45em) {
header {
	text-align: center;
	height: 4em;
	padding: 1em;
	position:absolute;
}
header nav a {
	visibility:hidden;
}
header > #logo img{
	padding-top:0em;
	width: 170px;
}
}
/*
 *
 *
 *
 *
 *
 * Mobile Navigation
 *
 *
 *
 *
 *
 */ 
.sb-toggle-left {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 4em;
	height: 4em;
	cursor: pointer;
	outline: none;
	background-color: #fff;
	visibility: hidden;
	z-index: 300;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; /* For some Androids */
}
.sb-toggle-left span {
	position: absolute;
	top: 50%;
	left: 35%;
	display: block;
	width:30%;
	height: 1px;
	background-color: #424242;
	font-size: 0px;
}
.sb-toggle-left span:before, .sb-toggle-left span:after {
	content:'';
	position: inherit;
	left: 0;
	display: block;
	width:100%;
	height: 1px;
	background-color: #424242;
}
.sb-toggle-left span:before {
	top: 5px;
}
.sb-toggle-left span:after {
	top: -5px;
}
/* Side Bar*/ 
.sb-slidebar {
	overflow: hidden;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	visibility: hidden;
	background-color: #E3E8EB;
}
.sb-slidebar.sb-static{
	position: absolute;
}
.sb-slidebar.sb-active{
	visibility: visible;
}
.sb-slidebar{
	width: 60%;
}
.sb-slide,#site-container,.sb-slidebar {
	-webkit-transition: -webkit-transform 400ms ease;
	-moz-transition: -moz-transform 400ms ease;
	-o-transition: -o-transform 400ms ease;
	transition: transform 400ms ease;
	-webkit-transition-property: -webkit-transform,left,right;
}
.sb-hide{
	display: none;
}
.sb-close {
	width: 100%;
	height: 50px;
	display: block;
	position: relative;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.8em;
	text-transform: uppercase;
	color: #fff;
	text-align: left;
	line-height: 50px;
	letter-spacing: 1px;
	cursor: pointer;
	background-color: #0079A7;
}
.mobile-menu-button img{
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	left: 8;
}
.sb-close span{
	position: absolute;
	top:0;
	left:50px;
}
.mobile-menu-button {
	width: 100%;
	height: 50px;
	display: block;
	position: relative;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.8em;
	text-transform: uppercase;
	color: #808285;
	text-align: left;
	line-height: 50px;
	letter-spacing: 1px;
	background-color: #FFFFFF;
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; /* For some Androids */
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: rgba(128,130,133,0.3);
}
.mobile-menu-button:hover{
	background-color: #00AEEF;
	color:#fff;
}
.mobile-menu-button span {
	position: absolute;
	top:0;
	left:50px;
}
.mobile-menu-button img{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	left: 8px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background-color: #0079A7;
}
.mobile-menu-button:after {
	content:url(../assets/mobile-navigation/arrow-right.svg);
	position:absolute;
	display:block;
	width:30px;
	height:50px;
	top:0;
	right:0;
}
.no-svg .mobile-menu-button:after {
	content: url(../assets/mobile-navigation/arrow-right.png);
}
.mobile-menu-info {
	margin: 1em 0;
	font-size: 0.75em;
	line-height: 1em;
	padding-left: 10px;
	text-align: left;
	color: #58595B;
}
.mobile-menu-info a{
	color: #00AEEF;
}
.mobile-menu-info p{
	font-size: 1em;
	color: #808285;
	font-weight: 400;
	margin-bottom: 1em;
	line-height: 1.2em;
}
.mobile-menu-info span{
	color: #00AEEF;
}
@media screen and (max-width: 45em) {
.sb-toggle-left {
	visibility: visible;
}
.sb-slidebar {
	-webkit-overflow-scrolling: touch;
}
.mobile-menu-info p{
	font-size: 1em;
	color: #808285;
	font-weight: 400;
	margin-bottom: 1em;
	line-height: 1.2em;
}

}
/*
 *
 *
 *
 *
 *
 * Flexslider
 *
 *
 *
 *
 *
 */
.flexslider {
	margin: 0; 
	padding: 0;
}
.flexslider .slides > li {
	display: none; 
	-webkit-backface-visibility:hidden; /* Chrome, Safari, Opera */
	backface-visibility:hidden;
}
.flexslider .slides img {
	width: 100%; 
	display: block;
}
.flex-pauseplay span {
	text-transform: capitalize;
}
.slides:after {
	content: ""; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0;
}
html[xmlns] .slides {
	display: block;
}
* html .slides {
	height: 1%;
}
/* No JavaScript Fallback */
.no-js .slides > li:first-child {
	display: block;
	}

/* FlexSlider Default Theme
*********************************/
.flexslider {
	margin: 12em 10% 3em;
	position: relative;
	zoom: 1;
	background-color: #0079A7;
}
.flex-viewport { 
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease; 
}
.loading .flex-viewport { 
	max-height: 300px;
}
.flexslider .slides {
	zoom: 1;
}
.carousel li {
	margin-right: 5px;
}
/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a  {
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	margin: -20px 0 0;
	position: absolute;
	top: 50%;
	z-index: 10;
	overflow: hidden;
	opacity: 0;
	cursor: pointer;
	background-color: #00AEEF;
	text-indent: -10000px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.flex-direction-nav .flex-prev {
	left: 40px;
	background-image: url(../assets/index-gallery/prev-next-arrows.svg);
	background-repeat: no-repeat;
	background-position: left top;
}
.flex-direction-nav .flex-next {
	right: 40px;
	background-image: url(../assets/index-gallery/prev-next-arrows.svg);
	background-repeat: no-repeat;
	background-position: right top;
}
.no-svg .flex-prev {
  background-image:url(../assets/index-gallery/prev-next-arrows.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.no-svg .flex-next {
  background-image:url(../assets/index-gallery/prev-next-arrows.png);
	background-repeat: no-repeat;
	background-position: right top;
}
.flexslider:hover .flex-prev { 
	opacity: 0.7; left: 10px;
}
.flexslider:hover .flex-next {
	opacity: 0.7; right: 10px;
}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
	opacity: 1;
}
.flex-direction-nav .flex-disabled {
	opacity: 0!important;
	filter:alpha(opacity=0);
	cursor: default;
}

/* Control Nav */
.flex-control-nav {
	width: 100%; 
	position: absolute; 
	bottom: -40px; 
	text-align: center;
	z-index:100;
}
.flex-control-nav li {
	margin: 0 6px; 
	display: inline-block; 
	zoom: 1; 
	*display: inline;
}
.flex-control-paging li a {
	width: 8px;
	height: 8px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	background-color: rgba(0,174,239,0.4);
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}

.flex-control-paging li a:hover {
	background-color: rgba(0,121,167,1);
}

.flex-control-paging li a.flex-active {
	cursor: default;
	background-color: rgba(0,121,167,0.9);
}
/* Typography */
.touch-screen {
	position:absolute;
	top:10px;
	left:9px;
	display:block;
	width:50px;
	height:50px;
	z-index:200;
	visibility:hidden;
}
.gallery-moto {
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	font-size: 2.5em;
	font-weight: 400;
	color: #E3E8EB;
	line-height: 2em;
	position: absolute;
	bottom: 0px;
	width: 100%;
	background-color: #0079A7;
}
@media screen and (max-width: 69.5em) {
.flexslider {
	margin:10em 10% 3em;
}
.gallery-moto {
	text-align: center;
	font-size: 2em;
	color: #E3E8EB;
	line-height:2em;
	width: 100%;
}
}
@media screen and (max-width: 64em) {
.flexslider {
	margin:6.5em 0 4em;
}
.gallery-moto {
	text-align: center;
	font-size: 1.5em;
	color: #E3E8EB;
	line-height:2em;
	width: 100%;
}
/* Direction Nav */
.flex-direction-nav a  {
	opacity: 1;
}
.flex-direction-nav .flex-prev {
	left: 10px;
}
.flex-direction-nav .flex-next {
	right: 10px;
}
.flexslider:hover .flex-prev { 
	opacity: 1; left: 10px;
}
.flexslider:hover .flex-next {
	opacity: 1; right: 10px;
}
}
@media screen and (max-width: 45em) {
.flexslider {
	margin:3.5em 0%;
}
.gallery-moto {
	text-align: center;
	font-size: 0.85em;
	color: #E3E8EB;
	bottom:-40px;
	padding-left:1em;
	line-height:40px;
	height:40px;
}
.flex-direction-nav a  {
	visibility:hidden;
}
.flex-control-nav {
	visibility:hidden;
}
.touch-screen {
	visibility: visible;
}
}
/*
 *
 *
 *
 *
 *
 * Grid
 *
 *
 *
 *
 *
 */
.certifications h1{
	margin: 3em 0 1em;
	display:block;
	text-align:center;
	width:100%;
}
.certifications h2 {
	color:#00AEEF;
	font-size: 0.85em;
	line-height:1em;
	position: relative;
	margin: 45px 0 3px;
	text-align:center;
	width:100%;
}
.certifications h2:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 3px;
	top: 0px;
	left: 50%;
	margin: -10px 0 0 -20px;
	background-color: #0079A7;
}
.certifications p {
	width:100%;
	font-size: 0.6em;
	color: #BDC3C7;
	text-align:center;
}
.grid {
	text-align: center;
	width: 100%;
}
.grid:before, 
.grid:after { 
	content: " "; 
	display: table; 
}
.grid:after { 
	clear: both; 
}
.grid li {
	position:relative;
	display:inline-block;
}
.grid-1 li {
	width:140px;
	height: 140px;
	background-color: #fff;
	text-align: center;
	margin: 0.3em ;
	-moz-border-radius: 70px;
	-webkit-border-radius: 70px;
	-khtml-border-radius: 70px;
	border-radius: 70px;
	vertical-align: middle;
}


/*--- Grid-2 ---*/

.sister-companies h1 {
	display:block;
	text-align:center;
	width:100%;
}
.grid-2 {
	width:90%;
	margin:0 auto;
}
.grid-2 li{
	width:45%;
	margin:4em auto;
}
.grid-2 li span {
	display:block;
	width:100%;
	height:100%;
	margin:auto;
    overflow: hidden;
}
.grid-2 li span img {
    display:block;
    width: 100%;
	height: auto;
    transform:scale(1);
    -ms-transform:scale(1);
    -moz-transform:scale(1);
    -webkit-transform:scale(1);
    -o-transform:scale(1);
	-webkit-transition: all 2s ease;
  	-moz-transition: all 2s ease;
  	-o-transition: all 2s ease;
  	transition: all 2s ease;
}
.grid-2 li:hover > span img {    
	cursor: pointer;
    transform:scale(1.1);
    -ms-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -o-transform:scale(1.1);
}
/* title element */
.grid-2 .grid-title {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:100;
	opacity:0;
	-webkit-transition: all 2s ease;
  	-moz-transition: all 2s ease;
  	-o-transition: all 2s ease;
  	transition: all 2s ease;
	background:rgba(255,255,255,0.85);
}

.grid-2 li:hover > .grid-title {
	opacity:1;
}
.grid-title img{
	width:100%;
	height:auto;
	position:absolute;
	left:0;
	top:8%;
}
/*--- Grid-3 ---*/
.grid-3 {
	width:90%;
	margin:0 auto;
}
.grid-3 li{
	position:relative;
	width:20%;
	margin:10px 8px;
}
.grid-3 li img{
	width:100%;
	height:auto;
}
.grid-3 h1{
	position: absolute;
	display: block;
	top: 46%;
	width: 100%;
	font-size: 1em;
	text-align: center;
	text-transform: uppercase;
	color: #00AEEF;
}
.grid-3 h1 a {
	display:block;
	width:100%;
	font-size:0.85em;
	text-align:center;
	text-transform: lowercase;
	color:#fff;
}
@media screen and (max-width: 64em) {
.grid-3 {
	width:100%;
	margin:0 auto 1em;
}
.grid-3 li{
	position:relative;
	width:30%;
	margin:9px 9px;
}
.grid-2 .grid-title {
	opacity:1;
	background:rgba(255,255,255,0.75);
}
.grid-1 li {
	margin: 0.95em ;
}
}


@media screen and (max-width: 45em)  {
.grid-1 li {
	margin: 0.3em ;
}
.grid-1 li {
	width:90px;
	height: 90px;
}
.grid-1 li h2 {
	font-size: 0.64em;
	margin: 22px 0 3px;
}
.grid-1 li h2:before {
	height: 1px;
	width: 20px;
	margin: -10px 0 0 -10px;
}
.grid-1 li p {
	font-size: 0.50em;
}
.grid-2 {
	display:none;
	visibility:hidden;
}
.sister-companies h1 {
	margin-top:2em;
	text-align:left;
	padding-left:18px;
}
.grid-3 li{
	width:47%;
	margin:1px 1px;
}
.grid-3 h1{
	font-size:0.85em;

}
}
/*
 *
 *
 *
 *
 *
 * Typography
 *
 *
 *
 *
 *
 */
.responsive-width-typography, .responsive-width-typography-1 {
	padding:0 20%;
	width:100%;
	padding-bottom:3em;
}
.responsive-width-typography {
	padding-top:3%;
}
.responsive-width-typography-1 {
	padding-top:6em;
}
h1 {
	font-size: 1.9em;
	line-height:1.5em;
	font-weight: 300;
	text-align: left;
	color: #8B8F92;
}
h2 {
	font-size: 1.6em;
	line-height:1.5em;
	font-weight: 300;
	text-align: left;
	color: #8B8F92;
}

p {
	font-size: 1.1em;
	letter-spacing: 0.03em;
	color: #8B8F92;
	line-height: 1.6em;
	font-weight: 300;
	text-align: left;
}
p span{
	color: #0079A7;
}

h1 a, h2 a, p a{
	color: #00AEEF;
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
h1 a:hover, h2 a:hover, p a:hover{
	color: #0079A7;
}
@media screen and (max-width: 64em)  {
.responsive-width-typography {
	padding:30px 18px;
}
.responsive-width-typography-1 {
	padding:6em 18px 1em;
}
h1 {
	font-size: 1.5em;
	line-height:1.5em;
}
h2 {
	font-size: 1.3em;
	line-height:1.5em;
	font-weight: 300;
	text-align: left;
	color: #8B8F92;
}
}
@media screen and (max-width: 45em)  {
.responsive-width-typography {
	padding:30px 18px;
}
.responsive-width-typography-1 {
	padding:4em 18px 1em;
}
h1 {
	font-size: 1.4em;
	line-height:1.5em;
}
h2 {
	font-size: 1.2em;
	line-height:1.5em;
}
p {
	font-size: 0.85em;
	letter-spacing:.05em;
	line-height: 1.6em;
	text-align: left;
}
}
/*
 *
 *
 *
 *
 *
 * Buttons
 *
 *
 *
 *
 *
 */
.buttons-container {
	position:relative;
	display:block;
	width:80%;
	margin:0 auto;
	text-align:center;
}
.buttons-container li{
	display: inline-block;
	margin:0;
}
.button {
	position: relative;
	display: block;
	margin : 0 4px;
	outline: none;
	text-decoration: none;
	font-size: 0.85em;
	line-height: 44px;
	text-transform:uppercase;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	perspective: 1000px;
	text-align: center;
}
.button:hover,
.button:focus {
	outline: none;
}
.button span {
	position: relative;
	display: inline-block;
	padding: 0 18px;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	background-color: #8B8F92;
	color: #E3E8EB;
} 
.button span:after {
	content: url(../assets/buttons/arrow-right.svg);
	position:absolute;
	display:block;
	top:0;
	right:0;
	visibility:hidden;
} 
.csstransforms3d .button span::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0079A7;
	content: attr(data-hover);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-o-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	transform-origin: 50% 0;
	color: #E3E8EB;
}
.button:hover span,
.button:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	-o-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}
.csstransforms3d .button:hover span::before,
.csstransforms3d .button:focus span::before {
	background-color: #00AEEF;
	color: #E3E8EB;
}
@media screen and (max-width: 64em)  {
.buttons-container {
	width:100%;
	text-align:center;
}
.buttons-container li{
	display: block;
}
.button {
	margin : 0 0;
	font-size: 0.85em;
	line-height: 50px;
	text-transform: uppercase;
	-webkit-perspective: 0px;
	-moz-perspective: 0px;
	-o-perspective: 0px;
	perspective: 0px;
	text-align: left;
}
.button span {
	position: relative;
	width: 100%;
	height: 50px;
	display: inline-block;
	padding: 0 18px;
	-webkit-transition: -webkit-transform 0s;
	-moz-transition: -moz-transform 0s;
	transition: transform 0s;
	-webkit-transform-origin: 0% 0;
	-moz-transform-origin: 0% 0;
	-o-transform-origin: 0% 0;
	transform-origin: 0% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	border-top: 1px solid #E3E8EB;
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
	background-color: #00AEEF;
	color: #E3E8EB;
} 
.csstransforms3d .button span::before {
	visibility:hidden;
}
.button:hover span,
.button:focus span {
	-webkit-transform: rotateX(0deg) translateY(0px);
	-moz-transform: rotateX(0deg) translateY(0px);
	-o-transform: rotateX(0deg) translateY(0px);
	transform: rotateX(0deg) translateY(0px);
	background-color: #0079A7;
}
.button span:after {
	visibility: visible;
} 

}
/*
 *
 *
 *
 *
 *
 * Map-Canvas
 *
 *
 *
 *
 *
 */
#map-canvas {
	display: inline-block;
	height: 500px; 
	width: 80%; 
	margin: 1em auto;
}
@media screen and (max-width: 64em)  {
#map-canvas {
	height: 300px; 
	width: 100%; 
}
}
@media screen and (max-width: 45em)  {
#map-canvas {
	height: 200px; 
	width: 100%; 
}
}
/*
 *
 *
 *
 *
 *
 * Company
 *
 *
 *
 *
 *
 */
.company-cover {
	width: 100%;
	height: 600px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}
.cover-1 {
	background-image: url(../assets/company/food-and-trade-company-cover-1.jpg);
}
.cover-2 {
	background-image: url(../assets/company/food-and-trade-company-cover-2.jpg);
}
.cover-3 {
	background-image: url(../assets/company/food-and-trade-company-cover-3.jpg);
}
.cover-4 {
	background-image: url(../assets/products/food-and-trade-products-cover.jpg);
}
.company-inner {
	width:100%;
	padding:3em 20%;
}
.company-inner:before,
.company-inner:after {
	content: " ";
	display: table;
}
.company-inner:after {
	clear: both;
}
.inner-1 {
	background:#e3e8eb;
}
.inner-2 {
	background-color: #C4C6C8;
}
.inner-3 {
	background-color:#424242;
}
.company-inner h1{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	line-height: 4em;
	color: #00AEEF;
}
.company-inner h3{
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	line-height: 3em;
	margin-top: 1em;
	color: #00AEEF;
}
.company-inner p{
	line-height:1.6em;
	color:#424242;
	font-size:1em;
}
.inner-1 .buttons-container{
	margin-top:4em;
	margin-bottom:2em;
}
.inner-3 h2, .inner-3 p{
	color:#e3e8eb;
}
.inner-3 h2{
	text-align:center;
}
.section-animation {
	widt: 100%;
	margin: 0 auto;	
	overflow: hidden;
	-webkit-transition: -webkit-opacity 1s;
	-moz-transition: -moz-opacity 1s;
	-o-transition: -moz-opacity 1s;
	transition: opacity 1s;
}
.cbp-so-init .section-animation {
	opacity: 0;
}
.cbp-so-animate .section-animation{
	opacity: 1;
}

.tabs {
    position: relative;
	width: 100%;
	margin:1em auto;
}
.tabs input {
	position: absolute;
	z-index: 1000;
	width: 80px;
	height: 40px;
	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	left: 80px;
}
.tabs input#tab-3{
	left: 160px;
}
.tabs input#tab-4{
	left: 240px;
}
.tabs input#tab-5{
	left: 320px;
}
.tabs input#tab-6{
	left: 400px;
}
.tabs input#tab-7{
	left: 480px;
}
.tabs label {
	font-size: 15px;
	line-height: 40px;
	height: 40px;
	position: relative;
	padding: 0 20px;
	float: left;
	display: block;
	width: 80px;
	color: #E3E8EB;
	text-align: center;
	border-radius: 3px 3px 0 0;
	box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
	background-color: #0079A7;
}
.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	display: block;
}
.tabs input:hover + label {
	background-color: #00AEEF;
	color:#ECF0F1;
}
.tabs label:first-of-type {
    z-index: 4;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}
.tab-label-2 {z-index: 6;}
.tab-label-3 {z-index: 5;}
.tab-label-4 {z-index: 4;}
.tab-label-5 {z-index: 3;}
.tab-label-6 {z-index: 2;}
.tab-label-7 {z-index: 1;}

.tabs input:checked + label {
	background: #fff;
	z-index: 6;
	color: #00AEEF;
}
.clear-shadow {
	clear: both;
}
.tabs .content {
    background: #fff;
	position: relative;
    width: 100%;
	z-index: 5;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2), 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 0 3px 3px 3px;
}
.tabs .content div {
    position: absolute;
	top: 0;
	left: 0;
	padding: 40px;
	z-index: 1;
    opacity: 0;
	-webkit-transition: height 0.5s;
	-moz-transition: height 0.5s;
	-ms-transition: height 0.5s;
	-o-transition: height 0.5s;
	transition: height 0.5s;

    -webkit-transition: opacity linear 0.3s;
    -moz-transition: opacity linear 0.3s;
    -o-transition: opacity linear 0.3s;
    -ms-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
}
.tabs input.tab-selector-1:checked ~ .content .content-1,
.tabs input.tab-selector-2:checked ~ .content .content-2,
.tabs input.tab-selector-3:checked ~ .content .content-3,
.tabs input.tab-selector-4:checked ~ .content .content-4, 
.tabs input.tab-selector-5:checked ~ .content .content-5,
.tabs input.tab-selector-6:checked ~ .content .content-6,
.tabs input.tab-selector-7:checked ~ .content .content-7 {
	z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;

    -webkit-transition: opacity ease-out 0.4s 0.3s;
    -moz-transition: opacity ease-out 0.4s 0.3s;
    -o-transition: opacity ease-out 0.4s 0.3s;
    -ms-transition: opacity ease-out 0.4s 0.3s;
    transition: opacity ease-out 0.4s 0.3s;
}
.tabs input.tab-selector-1:checked ~ .content,
.tabs input.tab-selector-2:checked ~ .content,
.tabs input.tab-selector-3:checked ~ .content,
.tabs input.tab-selector-4:checked ~ .content,
.tabs input.tab-selector-5:checked ~ .content,
.tabs input.tab-selector-6:checked ~ .content,
.tabs input.tab-selector-7:checked ~ .content {
	-webkit-transition: height 0.5s;
	-moz-transition: height 0.5s;
	-ms-transition: height 0.5s;
	-mo-transition: height 0.5s;
	transition: height 0.5s;
}
.tabs input.tab-selector-1:checked ~ .content { height: 22em; }
.tabs input.tab-selector-2:checked ~ .content { height: 17em; }
.tabs input.tab-selector-3:checked ~ .content { height: 10em; }
.tabs input.tab-selector-4:checked ~ .content { height: 10em; }
.tabs input.tab-selector-5:checked ~ .content { height: 18em; }
.tabs input.tab-selector-6:checked ~ .content { height: 10em; }
.tabs input.tab-selector-7:checked ~ .content { height: 10em; }
.tabs .content div h2 {
	font-size: 1.5em;
	color: #0079A7;
	margin-bottom: 1em;
}
.tabs .content div p {
	line-height: 1.8em;
	text-align: left;
	margin: 0;
	color: #7F8C8D;
	padding-left: 15px;
	border-left: 8px solid #00AEEF;
}
.ch-item {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 125px;
	-moz-border-radius: 125px;
	-o-border-radius: 125px;
	border-radius: 125px;	
	position: relative;
	cursor: default;
}
.ch-grid h2{
	padding-top:2em;
}
.ch-grid li {
	width: 250px;
	height: 250px;
	text-align:center;
	display: inline-block;
	margin: 140px auto;
}
.ch-info, .ch-info1, .ch-info2, .ch-info3 {
	color: #BDC3C7;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	box-shadow: 
		inset 0 0 0 16px rgba(48,48,48,0.1),
		0 1px 2px rgba(0,0,0,0.1);
	position: absolute;
	width: inherit;
	height: inherit;
	-webkit-border-radius: 125px;
	-moz-border-radius: 125px;
	-o-border-radius: 125px;
	border-radius: 125px;
	background-color: rgba(90,100,101,0.8);
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.ch-info{padding: 95px 0 0 0;}
.ch-info1{padding: 85px 0 0 0;}
.ch-info2{padding: 60px 0 0 0;}
.ch-info3{padding: 90px 0 0 0;}
.ch-info1, .ch-info2, .ch-info3 {
	opacity: 0;
	margin-top: 0px;
	margin-left: 0px;
}
.ch-item:hover .ch-info {
	background-color: #FFF;
	margin-top: -100px;
}
.ch-item:hover .ch-info1 {
	opacity: 1;
	margin-left: -200px;
}
.ch-item:hover .ch-info2 {
	opacity: 1;
	margin-left: 200px;
}
.ch-item:hover .ch-info3 {
	opacity: 1;
	margin-top: 100px;
}


@media screen and (max-width: 64em)  {
.company-cover {
	height:300px;
	background-attachment: scroll;
}
.company-inner {
	width:100%;
	padding:3em 0 0;
}
.company-inner h2, .company-inner h3,.company-inner p{
	padding:0 18px;
}
.company-inner p{
	line-height:1.5em;
	font-size:0.85em;
}
.tabs {
    position: relative;
	width: 100%;
	margin:1em auto;
	padding:0 18px;
}
.inner-3 h2, inner-3 h1 {
	text-align:center;
}
.inner-1 .buttons-container{
	margin-top:2em;
	margin-bottom:0em;
}
.ch-grid h2{
	padding-top:4em;
}
}
@media screen and (max-width: 45em)  {
.company-cover {
	height:180px;
}
.company-inner {
	padding:2em 0 0;
}
.company-inner p{
	font-size:0.75em;
}
.cbp-so-init .section-animation {
	opacity: 1;
}
.tabs .content div {
	padding: 10px;
}
.tabs input.tab-selector-1:checked ~ .content { height: 13em; }
.tabs input.tab-selector-2:checked ~ .content { height: 16em; }
.tabs .content div h2 {
	font-size: 1.1em;
	line-height:1.4em;
	margin-bottom: 0.8em;
}
.tabs .content div p {
	line-height: 1.4em;
	border-left: 3px solid #00AEEF;
}
.ch-grid {
	height:1.4em;
	visibility:hidden;
}
}
/*
 *
 *
 *
 *
 *
 * News
 *
 *
 *
 *
 *
 */
 .news {
	width: 80%;
	margin: 8em auto 4em auto;
}
.timeline {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	position: relative;
} 
.timeline:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 10px;
	left: 20%;
	margin-left: -10px;
	background-color: #8B8F92;
}
.timeline > li .cbp_tmtime {
	display: block;
	width: 25%;
	padding-right: 100px;
	position: absolute;
}
.timeline > li .cbp_tmtime span {
	display: block;
	text-align: right;
}
.timeline > li .cbp_tmtime span:first-child {
	font-size: 1em;
	color: #00AEEF;
}
.timeline > li .cbp_tmlabel {
	margin: 0 0 15px 25%;
	text-align: left;
	padding: 1.3em 2em 2em 2em;
	position: relative;
	border-radius: 5px;
	background-color: #0079A7;
}
.timeline > li:nth-child(odd) .cbp_tmlabel {
	background-color: #00AEEF;
}
.timeline > li .cbp_tmlabel h2 {
	font-size: 1.6em;
	line-height: 1.4;
	color: #E3E8EB;
	margin-top: 0px;
	padding: 0 0 10px 0;
}
.timeline > li .cbp_tmlabel p {
	font-size: 1.2em;
	line-height: 1.8;
	color: #E3E8EB;
	margin-top: 0px;
	padding: 0 0 10px 0;
}
.timeline > li .cbp_tmlabel:after {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-right-color: #0079A7;
	border-width: 10px;
	top: 10px;
}
.timeline > li:nth-child(odd) .cbp_tmlabel:after {
	border-right-color: #00AEEF;
}
.timeline > li .cbp_tmicon {
	width: 30px;
	height: 30px;
	position: absolute;
	color: #E3E8EB;
	border-radius: 50%;
	box-shadow: 0 0 0 8px #E3E8EB;
	left: 20.4%;
	margin: 0 0 0 -25px;
	background-color: #00AEEF;
}
@media screen and (max-width: 47.2em) {
	.timeline:before {
		display: none;
	}
	.timeline > li .cbp_tmtime {
		font-size: 0.85em;
		width: 100%;
		position: relative;
		padding: 0 0 20px 0;
	}
	.timeline > li .cbp_tmtime span {
		text-align: left;
	}
	.timeline > li .cbp_tmlabel {
		margin: 0 0 30px 0;
		padding: 1em;
		font-weight: 400;
		font-size: 70%;
	}
	.timeline > li .cbp_tmlabel:after {
	right: auto;
	left: 20px;
	border-right-color: transparent;
	border-bottom-color: #0079A7;
	top: -20px;
	}
	.timeline > li:nth-child(odd) .cbp_tmlabel:after {
	border-right-color: transparent;
	border-bottom-color: #00AEEF;
	}
	.timeline > li .cbp_tmicon {
		display: none;
	}	
}
/*
 *
 *
 *
 *
 *
 * Products
 *
 *
 *
 *
 *
 */
.products-container {
	width:100%;
	background:#d4d6d8;
	margin:5em 0 0 0;
	padding: 2em 0 3em;
}

#products { 
	width:80%;
	margin:0 auto;
}
#products figure {
	float: left;
	width: 20%;
	margin-bottom:10px;
	position:relative;
	cursor:default;
	pointer-events: none;
}
#products figure img {
	width:100%;
	height:auto;
}
#products .item-w2 {
	width: 40%;
}
#products .item-w4 {
	width: 100%;
}
#products .item-h1 {
	height: 144px;
}
#products .item-h2 {
	height: 388px;
}
#products .item-h3 {
	height: 688px;
}
#products .item-h5 {
	height:400px;
}
#products .item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
	/* animation */
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-o-transition-property: -moz-transform, opacity;
	transition-property: transform, opacity;
}
#products .item span{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 0.75em;
	text-transform: uppercase;
	line-height: 30px;
	color: #fff;
	z-index: 100;
	background-color: #00AEEF;	
}
/*-- nav --*/

#options {
	width: 80%;
	margin: 2em auto 5em auto;
	text-align: center;
}
#options h2 {
	margin: 0 auto 2em;
	text-align:center;
	width:100%;
}
#options ul {
	display:block;
	position:relative;
 	margin:0 auto;
 	list-style: none;
}
#options li {
	display:inline-block;
 	margin: 1px 3px;
}
#options li a {
	font-size: 0.75em;
	text-transform: uppercase;
	color: #424242;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0,174,239,0);
}
#options li a:hover {
	color: #00AEEF;
}
#options li a:active {
	color: #0079A7;
}
#options li a.selected {
	color: #0079A7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0,174,239,1);
}
@media screen and (max-width: 65em)  {
#products { 
	width:100%;
	padding:0 18px;
	margin:0 auto;
}




}
/*
 *
 *
 *
 *
 *
 * Footer
 *
 *
 *
 *
 *
 */
footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12em;
	background-color: #0079A7;
	z-index: -1;
}
footer a {
	color: #E3E8EB;
	/* animation*/	
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-ms-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
footer a:hover{
	color: #00AEEF;
}
.footer-inner {
	display: inline-block;
	width: 80%;
	padding: 3em 0 2em;
	margin: 0 auto;
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0,121,167,0.5);
}
.footer-inner > div {
	color: #00AEEF;
	width: 33%;
	font-size: 14px;
	float: left;
	font-weight: 400;
}
.social-media {
	text-align: right;
	position:relative;
	width:80%;
	margin: 0 auto;
	padding:1em 0;
}
.social-media img {
	width:100%;
	height:auto;
}
.social-media a {
	display: inline-block;
	width:35px;
	height:35px;
	margin-right:1px;
}
footer h2 {
	position:absolute;
	left:10%;
	bottom:10px;
	display:inline-block;
	font-size: 0.75em;
	text-align:left;
	color: #E3E8EB;
	line-height: 3em;
}
/*-- Mobile-Footer --*/
.mobile-footer {
	position:relative;
	width:100%;
	background:#fff;
	visibility:hidden;
	text-align:left;
}
.mobile-footer h2{
	font-size:0.75em;
	line-height:50px;
	padding-left:18px;
	height:0px;
}

@media screen and (max-width: 64em)  {
footer{
	position: relative;
	height: auto;
	margin-top:1px;
}
.footer-inner {
	display: inline-block;
	width: 100%;
	padding: 1em 18px 0em;
	border-bottom: none;
}
.footer-inner > div {
	padding: 1em 0;
	width: 100%;
	float: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0,121,167,0.5);
}
.social-media {
	text-align: left;
	position:relative;
	width:100%;
	padding:1em 18px;
}
footer h2 {
	position: relative;
	width: 100%;
	padding: 0 18px;
	left: 0;
	bottom: 0;
	display: block;
	text-align: left;
	color: #00AEEF;
	line-height: 3em;
	background-color: #0079A7;
}
}
@media screen and (max-width: 45em)  {
footer{
	visibility:hidden;
}
.mobile-footer {
	visibility: visible;
	height: 50px;
}
}
