@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,500');
/* ==================================================
   Base
================================================== */
body, html {
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	height: 100%;
}
body {
	position: relative;
	overflow-x: hidden;
}
section {
	position: relative;
	background-color: #FFF;
	z-index: 99;
}
img, object {
	display: block;
	width: 100%;
	height: auto;
}
p, ul {
	font-size: 1.1em;
}
p {
	clear: both;
}
a {
	color: #00A651;
	outline: none;
}
a:hover {
	color: #00A651;
	text-decoration: underline;
}
ul {
	list-style: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	color: #00A651;
	margin-top: 0;
}
hr {
	clear: both;
	display: block;
	width: 100%;
}
iframe {
	width: 100%;
	border: none;
}
/* ==================================================
   Margins, Paddings, Borders and Alignments
================================================== */
/* Margins */
.no-margin {
	margin: 0!important;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}
.no-margin {
	margin: 0;
}
.margin-20 {
	margin-bottom: 20px;
}
.margin-30 {
	margin-bottom: 30px;
}
.margin-40 {
	margin-bottom: 40px;
}
.margin-50 {
	margin-bottom: 50px;
}
.margin-70 {
	margin-bottom: 70px;
}
.margin-100 {
	margin-bottom: 100px;
}
/* Paddings */
.no-padding {
	padding: 0!important;
}
.no-left-padding {
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.padding-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}
.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
/* Borders */
.border {
	border: 1px solid #DDD;
}
.no-border {
	border: none;
}
.border-right {
	border-right: 1px solid #DDD;
}
.border-page-top:before {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	content: "";
	width: 50%;
	height: 5px;
	background-color: #00A651;
}
/* Alignments */
.vertical-align {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.float-center {
	float: right;
	position: relative;
	text-align: left;
	left: -50%;
}
.float-center > .child {
	position: relative;
	left: 50%;
}
.clear {
	clear: both;
}
/* ==================================================
   Animations
================================================== */
.anim, .btn, .top-nav-collapse .navbar-nav > li > a {
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
/*Page Loading Fade Effect: https://codepen.io/jmelgoza/pen/jEaGYg */
.fade-in {
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}
@-webkit-keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
@-moz-keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
@keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
/* Slideshow zoom animation */
.zoomImage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/uploads/slider/slide-01.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	/*-webkit-animation: 30s linear 1s normal none infinite zoominout;
	-moz-animation: 30s linear 1s normal none infinite zoominout;
	-ms-animation: 30s linear 1s normal none infinite zoominout;
	-o-animation: 30s linear 1s normal none infinite zoominout;
	animation: 30s linear 1s normal none infinite zoominout;*/
	transform-style: preserve-3d;
}
.zoomImage:after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.65) 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
 @keyframes zoominout {
 0% {
-webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 25% {
 -webkit-transform: scale(1.15);
 -moz-transform: scale(1.15);
 -ms-transform: scale(1.15);
 -o-transform: scale(1.15);
 transform: scale(1.15);
}
 50% {
 -webkit-transform: scale(1.25);
 -moz-transform: scale(1.25);
 -ms-transform: scale(1.25);
 -o-transform: scale(1.25);
 transform: scale(1.25);
}
 75% {
 -webkit-transform: scale(1.15);
 -moz-transform: scale(1.15);
 -ms-transform: scale(1.15);
 -o-transform: scale(1.15);
 transform: scale(1.15);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
/* Icons flipping */
a.icon-block .flip {
	position: relative;
	width: 100%;
	height: 7em;
	perspective: 1000;
	z-index: 1;
}
a.icon-block .card {
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: all 0.25s linear;
}
a.icon-block:hover .flip .card {
	transform: rotateY(180deg);
}
a.icon-block .face {
	backface-visibility: hidden;
	background-color: #FFF;
	width: 100%;
	height: 100%;
}
a.icon-block .face img {
	display: block;
	max-width: 60px;
	height: auto;
	margin: 0 auto;
}
a.icon-block .face.front, a.icon-block .face.back {
	position: absolute;
}
a.icon-block .face.back {
	display: block;
	background-color: #FFF;
	color: #FBBE15;
	transform: rotateY(180deg);
	box-sizing: border-box;
}
/* ==================================================
   Navigation
================================================== */
.navbar-default {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	background-color: transparent;
	border: none;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
	-o-transition: all ease 1s;
	-ms-transition: all ease 1s;
	transition: all ease 1s;
}
.navbar-default .navbar-nav > li > a .caret {
	text-shadow: 0 1px 1px rgba(0,0,0,.6);
}
.navbar-default .navbar-nav > li > a {
	text-transform: uppercase;
	font-size: 1.2em;
	color: #00A651;
	padding-top: 70px;
	outline: none;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a.current, .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
	text-shadow: none;
	background-color: #008A43;
	color: #FFF;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
	text-shadow: none;
	background-color: #00A651;
	color: #FFF;
}
.navbar-default .navbar-nav > .open > a:after {
	position: absolute;
	bottom: -1px;
	left: 50%;
	display: block;
	content: "";
	width: 0;
	height: 0;
	margin-left: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #FFF;
	z-index: 9999;
}
.navbar-default .navbar-nav > li > a .icon {
	margin-left: 5px;
}
.navbar-default .navbar-nav > li > a .icon:hover {
	background-color: #FBBE15;
	border-color: #FBBE15;
}
.navbar-default .navbar-right > li > a:hover {
	background: linear-gradient(transparent, transparent);
}
.navbar-brand {
	margin-right: 50px;
	padding: 0 15px;
	width: 280px;
}
.navbar-brand img {
	width: 100%;
	height: auto;
}
.navbar-brand .logo-alt {
	display: none;
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
	max-height: none;
}
.navbar-nav.navbar-right > li > a {
	padding-top: 60px;
	padding-bottom: 0;
}
.top-nav-collapse .navbar-nav.navbar-right > li > a {
	padding-top: 15px;
	padding-bottom: 10px;
	text-shadow: none;
}
.dropdown-menu > li > a {
    font-size: 1.3em;
}
/* Collapse the navbar on scroll */
.top-nav-collapse {
	background-color: rgba(255,255,255,0.9);
	background-color: #00A651;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.top-nav-collapse .navbar-nav > li > a {
	padding-top: 25px;
	text-shadow: none;
	color: #FFF;
}
.top-nav-collapse .navbar-brand img {
	background-color: #FFF;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
	width: auto;
	height: 120px;
	padding: 15px 20px;
	margin-top: -15px;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
	-o-transition: all ease 1s;
	-ms-transition: all ease 1s;
	transition: all ease 1s;
}
.top-nav-collapse .navbar-brand .logo {
	display: none;
}
.top-nav-collapse .navbar-brand .logo-alt {
	display: block;
}
.top-nav-collapse .navbar-nav > li > a .icon {
	background-color: rgba(255,255,255,0);
}
.top-nav-collapse .navbar-nav > li > a .icon:hover {
	background-color: #FFF;
	border-color: #FFF;
	color: #00A651;
}
/*Mega Menu: http://jsfiddle.net/apougher/ydcMQ/ */
.menu-large {
	position: static !important;
}
.megamenu {
	padding: 20px;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
}
.megamenu .section-title {
	margin-bottom: 20px;
}
.megamenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.megamenu ul li span, .megamenu p span {
	font-size: 1.2em;
	color: #00A651;
}
.megamenu > li > ul {
	padding: 0;
	margin: 0;
}
.megamenu > li > ul > li {
	list-style: none;
}
.megamenu > li > ul > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.428571429;
	color: #333;
	white-space: normal;
}
.megamenu> li ul > li > a:hover, .megamenu> li ul > li > a:focus {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
}
.megamenu.disabled > a, .megamenu.disabled > a:hover, .megamenu.disabled > a:focus {
	color: #999;
}
.megamenu.disabled > a:hover, .megamenu.disabled > a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	cursor: not-allowed;
}
.dropdown-menu {
	top: auto;
	left: 50%;
	border: none;
	border-top-left-radius: 4px!important;
	border-top-right-radius: 4px!important;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.megamenu.dropdown-header {
	color: #428bca;
	font-size: 18px;
}

@media (max-width: 768px) {
.megamenu {
	margin-left: 0;
	margin-right: 0;
}
.megamenu> li {
	margin-bottom: 30px;
}
.megamenu> li:last-child {
	margin-bottom: 0;
}
.megamenu.dropdown-header {
	padding: 3px 15px !important;
}
.navbar-nav .open .dropdown-menu .dropdown-header {
	color: #FFF;
}
}
/* Mega Menu blocks */
.megamenu h3, .megamenu h4 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: #00A651;
	margin: 0;
}
.megamenu h4 {
	font-size: 1em;
	margin: 10px 0;
	letter-spacing: normal;
}
.megamenu a {
	display: block;
	text-decoration: none;
}
.megamenu p {
	margin-bottom: 0;
}
.megamenu .btn-default {
	display: block;
	border: 2px solid #00A651;
	width: 90%;
	max-width: 200px;
	margin: 20px auto 10px;
}
.megamenu .btn-default:hover {
	border: 2px solid #00A651;
	background-color: #00A651;
	color: #FFF;
}
/* Mega Menu panels */
.panel {
	float: left;
	width: 100%;
	margin: 0;
}
/* Highlights */
.highlights {
	margin-top: 0;
}
.highlight p {
	display: inline-block;
	font-size: 2em;
	text-transform: uppercase;
	padding: 5px 15px;
	background-color: #008A43;
}
/* Contacts */
.contacts {
	font-size: 1.2em;
}
.contacts div > .row div:nth-child(n) {
	text-align: center;
}
.contacts div > .row div:nth-child(n) p {
	font-size: 0.9em;
}
.contacts .icon {
	display: inline-block;
	font-size: 2em;
	text-align: center;
	color: #00A651;
	width: 50px;
	height: 50px;
}
/* Toggle navigation */
.navbar-default .navbar-toggle {
	border: none;
	background-color: #00A651;
	color: #FFF;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #00A651;
}
.navbar-default .navbar-toggle .icon {
	font-size: 2em;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
	position: relative;
	border: none;
	z-index: 999;
}
/* ==================================================
   Footer
================================================== */
.large-footer .section-title {
	font-size: 1.8em;
}
.large-footer .footer-col-right {
	position: relative;
}
.large-footer .footer-col-right:after {
	content: "";
	display: block;
	background-color: #333638;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 200%;
}
.large-footer h4 {
	font-weight: 400;
	margin-bottom: 40px;
}
.large-footer ul {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	list-style: none;
}
.large-footer .footer-col-left .time {
	width: 40%;
	display: inline-block;
	margin-bottom: 20px;
}
.large-footer .icon {
	display: inline-block;
	font-size: 1.8em;
	text-align: center;
	color: #00A651;
	background-color: #24272A;
	border: 2px solid rgba(255,255,255,0.09);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
}
.large-footer a .icon:hover {
	background-color: #f2f2f2;
}
.large-footer .social-icons {
	display: block;
	width: 100%;
	text-align: center;
}
.large-footer .social-icons li {
	display: inline;
}
.large-footer .social-icons .icon {
	display: inline-block;
	margin: 10px;
	float: none;
}
.large-footer .logo {
	max-width: 150px;
	height: auto;
	margin-bottom: 20px;
}
.footer {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	background-color: #24272A;
	border-bottom: 3px solid #00A651;
	padding: 25px 0;
	text-align: center;
}
.footer .privacy {
	text-align: left;
}
.footer .copyright {
	text-align: right;
}
.footer p {
	color: #FFF;
	margin: 0;
}
.footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer ul li {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}
.footer a {
	color: #b1b3b6;
}
.footer a:hover {
	color: #00A651;
}
.footer .back-top {
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
}
.footer .back-top a {
	display: block;
	background-color:  #00A651;
	line-height: 60px;
	text-align: center;
	outline: none;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-o-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.footer .back-top .icon {
	font-size: 2em;
	color: #FFF;
}
/* ==================================================
   Carousel
================================================== */
.carousel-indicators {
	right: 100px;
	left: auto;
	top: 0;
	bottom: 0;
	width: auto;
	height: 100px;
	margin: auto;
	z-index: 9999;
}
.carousel-indicators li {
	background-color: rgba(255, 255, 225, 0.5);
	border: 0 solid #00A651;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	margin: 15px 0;
	display: block;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.carousel-indicators li:hover {
	border: 4px solid #FBBE15;
	background-color: rgba(255, 255, 225, 0.5);
}
.carousel-indicators .active {
	border: 4px solid #FBBE15;
	background-color: #FBBE15;
	height: 25px;
	width: 25px;
	margin: 15px 0;
}
/* Fade Effect */
.carousel-fade .carousel-inner .item {
	transition-property: opacity;
	opacity: 0;
}
.carousel-fade .carousel-inner .active {
	opacity: 1;
}
.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-fade .carousel-inner > .item.next, .carousel-fade .carousel-inner > .item.active.right {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.prev, .carousel-fade .carousel-inner > .item.active.left {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.next.left, .carousel-fade .carousel-inner > .item.prev.right, .carousel-fade .carousel-inner > .item.active {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
/* Hero */
.hero {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
}
.hero .item .container {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
}
.hero .blurb {
	position: absolute;
	bottom: 2%;
	text-align: center;
	color: #FFF;
	width: 100%;
}
.hero .blurb h1 {
	font-size: 4em;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
	color: #FFF;
	margin: 0;
}
.hero .blurb h1 span, .hero .blurb h2 span {
	font-weight: 700;
	color: #00A651;
	position: relative;
}
.hero .blurb h2 {
	font-size: 3em;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
	margin: 0 0 20px 0;
}
.hero .blurb p {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 1.5em;
	text-shadow: 0 1px 1px rgba(0,0,0,.6);
	margin: 0 auto;
	-webkit-animation: hero-p 1s ease-in-out;
	-moz-animation: hero-p 1s ease-in-out;
	-o-animation: hero-p 1s ease-in-out;
	animation: hero-p 1s ease-in-out;
}
.hero .blurb p:first-of-type {
	font-size: 1.8em;
}
.hero .blurb .logo {
	opacity: 0.95;
}
.hero .btn-default, .hero .btn-default:active, .hero .btn-default:focus {
	margin-bottom: 0;
}
.hero .preview {
	margin-top: 60px;
}
.hero, .hero .carousel, .hero .carousel-inner, .hero .item {
	height: 100vh;
}
.hero .credits {
	font-size: 0.9em;
	font-weight: normal;
	position: absolute;
	right: 2%;
	bottom: 5%;
	color: #FFF;
	opacity: 0.9;
	z-index: 999;
}
.hero.page-hero {
	height: 160px;
	overflow: hidden;
}
/* ==================================================
   Section pages
================================================== */
/* Page headings */
.page-header {
	background-color: #00A651;
	color: #FFF;
	margin: -20px 0 0;
	border: none;
}
.page-sub-header h2 {
	color: #00A651;
}
.page-sub-header h3 {
	color: #2c2f32;
}
/* Clock */
.clock {
	background-color: #EAEAEA;
	padding-top: 50px;
	padding-bottom: 50px;
}
.clock .btn-default {
	border-color: #FFF;
	color: #FFF;
	background-color: transparent;
}
.clock .btn-default:hover {
	border-color: #00A651;
	color: #FFF;
	background-color: #00A651;
}
.clock .section-title {
	color: #FFF;
}
/* Promo banners */
#promo-banner {
	border-top: 5px solid #00A651;
	min-height: 500px;
	color: #FFF;
}
#promo-banner:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(../img/uploads/slider/slide-02.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	min-height: 500px;
	color: #FFF;
}
.promo-banner .section-title {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	margin-bottom: 15px;
}
.promo-banner .section-title span {
	display: block;
}
.promo-banner p {
	font-size: 1.3em;
}
.promo-banner p strong {
	text-transform: uppercase;
}
.promo-banner ul {
	padding-left: 15px;
}
.promo-banner-left {
	padding-top: 70px;
	padding-left: 5%;
	padding-right: 5%;
}
.promo-banner-center {
	padding-top: 70px;
	padding-left: 5%;
	padding-right: 5%;
}
.promo-banner-right {
	padding-top: 70px;
	padding-left: 5%;
	padding-right: 5%;
}
@-webkit-keyframes backgroundScroll {
 from {
 background-position: bottom 0;
}
 to {
 background-position: -400px 0;
}
}
@-moz-keyframes backgroundScroll {
 from {
 background-position: bottom 0;
}
 to {
 background-position: -400px 0;
}
}
 @keyframes backgroundScroll {
 from {
 background-position: 0 bottom;
}
 to {
 background-position: -400px bottom;
}
}
.promo-banner#banner-vilagale .section-title {
	color: #FFF;
}
.promo-banner#banner-vilagale .banner-right {
	position: relative;
	background-image: url("../img/logos/logo-vilagale-wht.svg");
	background-position: center 35px;
	background-repeat: no-repeat;
	background-size: auto 50%;
}
.promo-banner#banner-vilagale .banner-right .btn {
	position: absolute;
	left: 50%;
	bottom: 50px;
	border-color: #FFF;
	background-color: transparent;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}
.promo-banner#banner-vilagale .banner-right .btn:hover {
	background-color: #FFF;
	color: #539A34;
}
/* Titles */
.page-title {
	position: relative;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	text-align: center;
	color: #FFF;
	margin-top: -15px;
}
.page-title {
	position: relative;
	display: block;
	font-size: 2em;
	font-weight: normal;
	color: #FFF;
	background-color: #00A651;
	padding: 10px 20px;
	margin-top: 0;
	float: left;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-o-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
.section-title {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 2em;
	font-weight: 500;
	margin-bottom: 40px;
}
/* CTA */
.cta {
	background-color: #00A651;
	color: #FFF;
}
.cta .btn {
	background-color: #FFF;
	color: #00A651;
}
.cta .btn:hover, .cta .btn:focus {
	background-color: #E1E1E1;
	color: #00A651;
}
.cta h5 {
	font-weight: 700;
	font-size: 3em;
	color: #FFF;
	margin-bottom: 10px;
}
.cta h5 span {
	display: block;
}
.cta p {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 1.5em;
	margin-bottom: 0;
}
.cta p:last-child {
	margin-bottom: 0;
}
.cta a.btn-primary {
	border-color: #FFF;
}
.cta a.btn-primary:hover {
	color: #00A651;
	background-color: #FFF;
	border-collapse: #00A651;
}
/* Color sections */
.grey {
	background-color: #f2f2f2;
}
.dark {
	background-color: #2c2f32;
	color: #b1b3b6;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #FFF;
}
/* Icon cards */
.cards {
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;
}
.icon-block {
	text-align: center;
}
.icon-block:hover {
	text-decoration: none;
}
.icon-block h4 {
	font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: normal;
	color: #3f4e5d;
	margin: 0;
}
.icon-block .icon {
	display: block;
	font-size: 5em;
}
.icon-block p:last-child {
	margin: 0;
}
/* Blocks */
.block {
	position: relative;
}
.block > div.link {
	text-align: center;
}
.block > div.link .icon {
	font-size: 2em;
}
.block h3, .block h4, .block h5 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.block h3 span, .block h4 span, .block h5 span {
	display: block;
	font-weight: 700;
}
.block figure {
	max-width: 100px;
	margin: 0 auto 20px;
}
.block img, .block object {
	opacity: 0.5;
}
.block:hover img, .block:hover object {
	opacity: 1;
}
/* Title blocks */
.title-block {
	background-color: #00A651;
	padding: 0;
}
.title-block * {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.title-block img {
	width: 100%;
}
.title-block header {
	position: relative;
	cursor: default;
}
.title-block header:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.title-block:nth-child(2) header:after {
	background-color: rgba(0, 0, 0, .1);
}
.title-block:nth-child(3) header:after {
	background-color: rgba(0, 0, 0, .2);
}
.title-block:nth-child(4) header:after {
	background-color: rgba(0, 0, 0, .3);
}
.title-block h2 {
	font-size: 1.2em;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #FFF;
	margin: 0;
	padding: 20px 0;
	position: relative;
	z-index: 1;
}
.title-block h2 a {
	color: #FFF;
}
.title-block aside {
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	height: 75%;
	padding: 5% 60px;
	text-align: center;
	z-index: 10;
	opacity: 0;
	cursor: default;
}
.title-block aside p {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 1.5em;
	color: #FFF;
	padding-top: 15%;
}
.title-block aside .btn:before {
	content: "";
	display: block;
	height: 2px;
	width: 20px;
	margin: 0 auto 20px auto;
	background-color: #FFF;
}
.title-block aside .btn {
	color: #2c2f32;
	font-weight: 700;
	padding: 0;
	margin: 0;
}
.title-block aside .btn:hover {
	color: #FFF;
}
.title-block:hover header {
	background-color: #2c2f32;
}
.title-block:hover img {
	opacity: 0.2;
}
.title-block:hover aside {
	opacity: 1;
}
/* Timetable */
.timetable .first, .timetable .second, .timetable .third {
	margin-bottom: 20px;
}
.timetable h5 {
	font-size: 1.8em;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.timetable h6 {
	font-size: 1.2em;
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-top: 7px;
}
.timetable .info {
	padding: 0 10px;
	color: #FFF;
}
.timetable .date {
	text-align: right;
	min-height: 110px;
	padding: 15px;
	padding-right: 2.5%;
	-webkit-transform: skew(-30deg, 0deg);
	-moz-transform: skew(-30deg, 0deg);
	-o-transform: skew(-30deg, 0deg);
	-ms-transform: skew(-30deg, 0deg);
	transform: skew(-30deg, 0deg);
}
.timetable .date h5 {
	-webkit-transform: skew(30deg, 0deg);
	-moz-transform: skew(30deg, 0deg);
	-o-transform: skew(30deg, 0deg);
	-ms-transform: skew(30deg, 0deg);
	transform: skew(30deg, 0deg);
}
.timetable .date:before {
	position: absolute;
	top: 0;
	left: -25px;
	display: block;
	content: "";
	border-style: solid;
	border-width: 40px;
	-webkit-transform: skew(30deg, 0deg);
	-moz-transform: skew(30deg, 0deg);
	-o-transform: skew(30deg, 0deg);
	-ms-transform: skew(30deg, 0deg);
	transform: skew(30deg, 0deg);
}
.timetable .date:after {
	position: absolute;
	top: 0;
	right: -39px;
	display: block;
	content: "";
	width: 0;
	height: 100%;
	border-style: solid;
	border-width: 40px 0 70px 40px;
	border-color: transparent transparent transparent #3573be;
	z-index: 9;
}
.timetable .time {
	font-size: 1.5em;
	font-weight: 700;
}
.timetable .first .date:nth-child(2n+1) {
	background-color: #215088;
}
.timetable .second .date:nth-child(2n+1) {
	background-color: #255a99;
}
.timetable .third .date:nth-child(2n+1) {
	background-color: #00A651;
}
.timetable .first .date:nth-child(2n+1):before {
	border-color: #215088;
}
.timetable .second .date:nth-child(2n+1):before {
	border-color: #255a99;
}
.timetable .third .date:nth-child(2n+1):before {
	border-color: #00A651;
}
/* Info sections */
.ft-courses-time-line .courses-timeline-wrap {
	padding-left: 0;
	padding-right: 0;
}
.ft-courses-time-line .courses-timeline-wrap figure {
	position: relative;
	margin-top: 20px;
}
.ft-courses-time-line .courses-timeline-wrap figure figcaption {
	position: absolute;
	right: 5%;
	bottom: 5%;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1) {
	background-color: #E1E4E4;
	text-align: center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1):after {
	position: absolute;
	top: 50%;
	right: -10px;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 20px;
	border-color: transparent transparent transparent #E1E4E4;
	margin-top: -15px;
}
.ft-courses-time-line .courses-timeline-wrap.down:after {
	position: absolute;
	left: 50%;
	bottom: -50%;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 10px 0 10px;
	border-color: #E1E4E4 transparent transparent;
	margin-top: 28px;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1) .courses-timeline {
	padding: 20px;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1) .courses-timeline h4 {
	font-size: 1.5em;
	margin-bottom: 0;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1) .courses-timeline p {
}
.ft-courses-time-line .courses-timeline {
	width: 100%;
	padding-left: 40px;
}
.ft-courses-time-line .courses-timeline p {
	margin-bottom: 10px;
}
.ft-courses-time-line .courses-timeline .icon {
	font-size: 3em;
	color: #666;
	margin-right: 20px;
}
.ft-courses-time-line .courses-timeline h4, .ft-courses-time-line .courses-timeline h5 {
	font-weight: 700;
}
.ft-courses-time-line .courses-timeline h4 {
	text-transform: uppercase;
}
.privacy .ft-courses-time-line .courses-timeline h4 {
	font-size: 1.1em!important;
	text-align: left;
	text-transform: none;
}
.courses-timeline-wrap .course-timeline-title#vilagale {
	background-image: url("../img/logos/logo-vilagale.svg");
	background-position: center 75px;
	background-size: 50%;
	background-repeat: no-repeat;
}
.courses-timeline-wrap .course-timeline-title#hyundai {
	background-image: url("../img/logos/logo-hyundai.svg");
	background-position: center 40px;
	background-size: 50%;
	background-repeat: no-repeat;
}
/* ==================================================
   Modals
================================================== */
.modal.fade .modal-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 9999;
}
.modal-dialog {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow-x: hidden;
	z-index: 9999;
}
.modal-header .close {
	font-size: 36px;
	color: #00A651;
	opacity: 0.5;
}
.modal-header .close:hover {
	opacity: 1;
}
.modal-header .logo-alt {
	width: 80%;
}
.modal-title {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}
.modal-content {
	border-radius: 0;
	height: 100%;
	overflow: hidden;
}
.modal-body {
	position: absolute;
	bottom: 0;
	top: 100px;
	width: 100%;
	padding: 0;
}
.modal-body iframe {
	height: 100%;
}
.modal-open .modal {
	padding-right: 0!important;
}
.modal-backdrop.in {
	opacity: .9;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
.modal-title {
	margin-top: 0;
	padding-bottom: 0;
	font-size: 1.2em;
	line-height: 2.2;
}
.modal-body {
	top: 65px;
}
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
.modal-body {
	top: 65px;
}
}
/* ==================================================
   Tabs
================================================== */
.tab-wrap {
	-webkit-box-shadow: inset 0 45px 0 0 #FFF;
	-moz-box-shadow: inset 0 45px 0 0 #FFF;
	box-shadow: inset 0 45px 0 0 #FFF;
}
#tabs ul {
	padding: 0;
	margin-bottom: 0;
}
#tabs ul li {
	background-color: #FFF;
	border-top: 2px solid #FFF;
	border-bottom: 1px solid #DEDEDE;
	list-style: none;
	display: inline-block;
}
#tabs ul li.ui-state-active {
	background-color: #f2f2f2;
	border-top: 2px solid #00A651;
	border-left: 1px solid #DEDEDE;
	border-right: 1px solid #DEDEDE;
	border-bottom: none;
}
#tabs h5 {
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}
#tabs h5 a {
	color: #3f4e5d;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	outline: none;
}
#tabs .indv-tab {
	background-color: #f2f2f2;
	padding: 50px 30px 0;
	margin-top: -1px;
	border-left: 1px solid #DEDEDE;
	border-right: 1px solid #DEDEDE;
	border-bottom: 2px solid #00A651;
}
#tabs .indv-tab .row {
	border-bottom: 1px solid #DEDEDE;
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
#tabs .indv-tab .row:last-child {
	border-bottom: none;
}
#tabs .indv-tab .row >div {
	padding: 20px 0;
}
#tabs.timetable .indv-tab p, #tabs .indv-tab .btn {
	margin: 0;
}
#tabs .indv-tab span {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	margin-bottom: 5px;
}
#tabs .indv-tab .time {
	display: block;
	color: #00A651;
	width: 100%;
	text-align: center;
	margin: 0;
}
#tabs.timetable .indv-tab p {
	color: #898e93;
}
#tabs.main ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	margin: 0;
}
#tabs.main ul li {
	flex: 1;
	text-align: center;
	padding: 10px;
	background-color: #00A651;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
#tabs.main ul li.ui-tabs-active {
	background-color: #FFF;
}
#tabs.main ul li.ui-tabs-active:hover {
	background-color: #FFF;
}
#tabs.main ul li.ui-tabs-active a {
	color: #3f4e5d;
}
#tabs.main ul li.ui-tabs-active a:before {
	color: #00A651;
}
#tabs.main ul li a:before {
	font-size: 20px;
	color: #FFF;
	margin-right: 10px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	transform: translateY(2px);
}
#tabs.main ul li a {
	font-size: 14px;
	color: #FFF;
}
#tabs.main ul li:hover {
	background-color: #71983f;
}
#tabs.main .indv-tab {
	background-color: #FFF;
	overflow: hidden;
	padding: 60px;
}
#tabs.main .indv-tab div {
	position: relative;
}
#tabs.main .indv-tab p {
	color: #616569;
}
#tabs.main .indv-tab blockquote {
	color: #71983f;
}
#tabs.main .indv-tab img.absolute {
	position: absolute;
	left: -60px;
	bottom: -60px;
}
/* ==================================================
   Tables
================================================== */
.flat-table {
	margin-bottom: 20px;
	border-collapse: collapse;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.flat-table th, .flat-table td {
	border: 1px solid #CCC;
}
.flat-table th {
	background-color: #F1F1F1;
	font-weight: normal;
	padding: 1em;
	font-size: 1.5em;
	text-align: center;
}
.flat-table td, .flat-table th {
	padding: 0.7em 1em;
}
.flat-table td, .flat-table th h3 {
	margin-top: 0;
	margin-bottom: 0;
}
.flat-table tr {
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}
.flat-table-neutral {
	background: #FFF;
}
.flat-table-neutral th {
	background: #F2F3F5;
}
.flat-table-neutral tr:hover {
	background: #F7F8F9;
}
.flat-table-red tr:hover {
	background: rgba(0,0,0,0.1);
}
.flat-table-red {
	background: #F06060;
}
.flat-table-green {
	background: #52BE7F;
}
.flat-table-green tr:hover {
	background: rgba(0,0,0,0.1);
}
/* ==================================================
   Collapsable Panels
================================================== */
.panel-group {
	margin-bottom: 0;
}
.panel-default > .panel-heading {
	color: inherit;
	background-color: inherit;
}
.panel-default:hover > .panel-heading, .panel-default:focus > .panel-heading {
	color: inherit;
}
.panel-default h4, .panel-default h5, .panel-default h6 {
	font-weight: inherit;
	color: #00A651;
	clear: both;
}
.panel-default h5, .panel-default h6 {
	font-weight: inherit;
	color: #00A651;
	margin: 20px 45px 10px;
}
.panel-default h4 {
	font-size: 1.3em;
	font-weight: 700;
	text-transform: uppercase;
	margin: 30px 45px 10px;
}
.panel-default h5 {
	font-size: 1.2em;
}
.panel-default h6 {
	font-size: 1.1em;
}
.panel-default p {
	margin: 0 45px 5px;
	clear: both;
}
.panel-default p.note {
	margin: 15px 45px 20px;
}
.panel-default ul li ul, .panel-default ul li ul li {
	margin: 0 0 10px 0;
}
.panel-default ul {
	margin: 20px 45px;
	padding-left: 30px;
}
.panel-default li {
	margin: 0 0 10px 0;
}
.panel-default li .icon {
	margin-left: -20px;
	margin-right: 10px;
}
.panel-default li span {
	display: inline-block;
	width: 14px;
	margin-left: -23px;
	margin-right: 5px;
}
.panel-default blockquote {
	border: none;
	font-size: inherit;
}
.panel-heading {
	padding: 0;
}
.panel-heading a {
	padding: 15px 45px;
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	background-color: rgba(0,0,0,0.1);
}
.panel-heading:hover a, .panel-heading a:active, .panel-heading:focus {
	text-decoration: none;
	background-color: #00A651;
	border-color: #00A651;
	color: #FFF;
}
.panel-heading a:focus {
	text-decoration: none;
	background-color: #00A651;
	border-color: #00A651;
	color: #FFF;
}
.panel-heading span {
	margin-left: -33px;
}
.panel-heading:hover span, .panel-heading:focus span {
	color: #FFF;
}
.panel-heading h4 {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 1.3em;
	font-weight: 700;
	margin: 0;
	padding: 0;
	width: 100%;
	color: #666;
}
.panel-heading .icon {
	float: right;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 0;
	margin-right: -25px;
	text-align: center;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.panel-heading .collapsed .icon {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.panel-group .panel {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.clickable {
	cursor: pointer;
}
/* ==================================================
   Supports Stream
================================================== */
.supports {
	padding-left: 5%;
	padding-right: 5%;
}
.supports span {
	display: block;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: #00A651;
	width: 100%;
	height: 16px;
	margin: 30px 0;
}
.supports a {
	display: block;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	border-bottom: none;
}
.supports object, .supports img {
	position: relative;
	max-width: 180px;
	margin-left: auto;
	margin-right: auto;
}
.supports figcaption {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size:12px;
	padding-top: 10px;
}
.supports > div > .row > div {
	margin-top: 15px;
	margin-bottom: 15px;
}
.supports .section-title {
	font-size: 1.5em;
	color: #2c2f32;
}
.logos > div {
	float: left;
	margin-bottom: 50px;
}
.logos > div:last-child {
	margin-bottom: 0;
}
/* ==================================================
   Buttons
================================================== */
.btn {
	position: relative;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}
.btn, .btn:hover {
	text-transform: uppercase;
	letter-spacing: 2px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
}
.btn:hover span {
	color: #FFF;
}
.btn-default, .btn:focus, .btn-default, .btn:active {
	padding: 15px 30px;
	border: none;
	background-color:  #00A651;
	color: #FFF;
	outline: none;
}
.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-secondary, .btn-secondary:focus, .btn-secondary:active {
	border: none;
	background-color: #00A651;
	color: #FFF;
}
.btn-primary:hover, .btn-secondary:hover, .btn-default:hover {
	border: none;
	background-color: #FFF;
	color: #00A651;
}
/* ==================================================
   Tree Menu: http://cssdeck.com/labs/pure-css-tree-menu-framework
================================================== */
.tree, .tree ul {
	margin: 0 0 0 1em;
	padding: 0;
	list-style: none;
	position: relative;
}
.tree ul {
	margin-left: 22px;
}
.tree:before, .tree ul:before {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	top: -15px;
	bottom: 19px;
	left: 0;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.tree li.parent_li:last-child:after {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	top: 20px;
	bottom: 19px;
	left: 0;
	border-left: 1px solid #FFF;
}
.tree li {
	margin: 15px 0;
	padding: 0 1.5em;
	line-height: 2em!important;
	position: relative;
}
.tree li span {
	background-color: #f2f2f2;
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	margin-right: 15px;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	min-width: 50px;
}
.tree li span .icon {
	margin: 0;
	width: auto;
	padding: 0 5px;
	font-size: 1.5em;
	color: #00A651;
}
.tree li span img {
	width: 22px;
	height: auto;
}
.tree li:before {
	content: "";
	display: block;
	width: 22px;
	height: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	margin-top: -1px;
	position: absolute;
	top: 20px;
	left: 0;
}
.tree li:last-child:before {
	height: auto;
}
/* ==================================================
   Simple CSS tooltip by Chris Bracco - http://cbracco.me/a-simple-css-tooltip/
================================================== */
/* Base styles for the element that has a tooltip */
[data-tooltip], .tooltip {
	position: relative;
	cursor: pointer;
}
/* Base styles for the entire tooltip */
[data-tooltip]:before, [data-tooltip]:after, .tooltip:before, .tooltip:after {
	position: absolute;
	visibility: hidden;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	-moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	pointer-events: none;
}
/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after, .tooltip:hover:before, .tooltip:hover:after, .tooltip:focus:before, .tooltip:focus:after {
	visibility: visible;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}
/* Base styles for the tooltip's directional arrow */
.tooltip:before, [data-tooltip]:before {
	z-index: 1001;
	border: 6px solid transparent;
	background-color: transparent;
	content: "";
}
/* Base styles for the tooltip's content area */
.tooltip:after, [data-tooltip]:after {
	z-index: 1000;
	padding: 8px;
	width: 100px;
	background-color: #000;
	background-color: hsla(0, 0%, 20%, 0.9);
	color: #FFF;
	content: attr(data-tooltip);
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}
/* Directions */
/* Top */
[data-tooltip]:before, [data-tooltip]:after, .tooltip:before, .tooltip:after, .tooltip-top:before, .tooltip-top:after {
	bottom: 100%;
	left: 50%;
}
[data-tooltip]:before, .tooltip:before, .tooltip-top:before {
	margin-left: -6px;
	margin-bottom: -12px;
	border-top-color: #000;
	border-top-color: hsla(0, 0%, 20%, 0.9);
}
/* Horizontally align top/bottom tooltips */
[data-tooltip]:after, .tooltip:after, .tooltip-top:after {
	margin-left: -50px;
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after, .tooltip:hover:before, .tooltip:hover:after, .tooltip:focus:before, .tooltip:focus:after, .tooltip-top:hover:before, .tooltip-top:hover:after, .tooltip-top:focus:before, .tooltip-top:focus:after {
	-webkit-transform: translateY(-12px);
	-moz-transform: translateY(-12px);
	transform: translateY(-12px);
}
/* Left */
.tooltip-left:before, .tooltip-left:after {
	right: 100%;
	bottom: 50%;
	left: auto;
}
.tooltip-left:before {
	margin-left: 0;
	margin-right: -12px;
	margin-bottom: 0;
	border-top-color: transparent;
	border-left-color: #000;
	border-left-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-left:hover:before, .tooltip-left:hover:after, .tooltip-left:focus:before, .tooltip-left:focus:after {
	-webkit-transform: translateX(-12px);
	-moz-transform: translateX(-12px);
	transform: translateX(-12px);
}
/* Bottom */
.tooltip-bottom:before, .tooltip-bottom:after {
	top: 100%;
	bottom: auto;
	left: 50%;
}
.tooltip-bottom:before {
	margin-top: -12px;
	margin-bottom: 0;
	border-top-color: transparent;
	border-bottom-color: #000;
	border-bottom-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-bottom:hover:before, .tooltip-bottom:hover:after, .tooltip-bottom:focus:before, .tooltip-bottom:focus:after {
	-webkit-transform: translateY(12px);
	-moz-transform: translateY(12px);
	transform: translateY(12px);
}
/* Right */
.tooltip-right:before, .tooltip-right:after {
	bottom: 50%;
	left: 100%;
}
.tooltip-right:before {
	margin-bottom: 0;
	margin-left: -12px;
	border-top-color: transparent;
	border-right-color: #000;
	border-right-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-right:hover:before, .tooltip-right:hover:after, .tooltip-right:focus:before, .tooltip-right:focus:after {
	-webkit-transform: translateX(12px);
	-moz-transform: translateX(12px);
	transform: translateX(12px);
}
/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before, .tooltip-right:before {
	top: 5px;
}
/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after, .tooltip-right:after {
	margin-left: 0;
	margin-bottom: -16px;
}
/* ==================================================
   Other elements
================================================== */
/* Infos */
.infos {
	overflow-x: hidden;
}
.infos .row > div:first-child {
	background-color: #24272A;
}
/* Circular count down */
.circular-countdown * {
	margin: 0;
	padding: 0
}
.circular-countdown .time {
	position: relative;
	display: inline-block;
	vertical-align: middle
}

@media (max-width:1100px) {
.circular-countdown .time {
	float: none
}
}
.circular-countdown canvas.bg {
	position: absolute;
	z-index: 1
}
.circular-countdown canvas.circle {
	position: relative;
	z-index: 2
}
.circular-countdown .count {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	text-align: center;
	color: #333;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-weight: 700;
}
.circular-countdown .text {
	position: absolute;
	z-index: 4;
	top: 5px;
	left: 0;
	text-align: center;
	color: #5f5f5f;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-weight: 700;
}
.circular-countdown.multicolor .time {
	background: transparent url("../img/layout/bg-circle.png") no-repeat top left;
	background-size: cover;
}
.circular-countdown.multicolor .time canvas.bg {
	display: none
}
/* SVG links */
a.svg {
	position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
}
a.svg:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
/* Back button */
.back-button {
	margin-top: 40px;
}
/* Round objects */
.round {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
/* Horizontal rules */
hr.main-hr {
	border-top: none;
	padding: 20px 0 40px;
}
hr.main-hr:before {
	display: block;
	content: "";
	border-top: 3px solid #00A651;
}
/* Icons */
.main-icon {
	font-size: 4em;
	color: #00A651;
}
.page-icon {
	position: absolute;
	top: 0;
	left: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	z-index: 99;
}
.round-icon {
	width: 60px;
	height: 60px;
	margin: 0;
	position: relative;
	float: left;
}
.round-icon .inner-round-icon {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
}
.round-icon .fullie, .round-icon .halfie {
	display: block;
	margin: 0 auto;
	position: absolute;
}
.round-icon .fullie {
    background-color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 20em;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}
.round-icon .halfie {
	height: 30px;
	width: 60px;
	z-index: 1;
}
.round-icon .halfie.top {
	border-radius: 20em 20em 0 0;
	background: rgba(0,0,0,0.25);
}
.round-icon .halfie.bottom {
	top: 30px;
	border-radius: 0 0 19em 19em;
	background: #00A651;
}
.round-icon .icon {
	display: block;
	font-size: 2.5em;
	text-align: center;
	width: 50px;
	line-height: 50px;
	color: #00A651;
	border-radius: 50%;
}
.round-icon img {
	display: block;
	width: 55px;
	line-height: 55px;
	padding: 15px 0 0 15px;
}
/* Listings */
.special-list li:before {
	display: inline-block;
	font-family: "Ionicons";
	content: "\f122";
	color: #00A651;
	padding-right: 10px;
}
/* Notes */
.note {
	position: relative;
	float: left;
	font-weight: 700;
	font-style: italic;
	padding: 20px 20px 20px 70px;
	margin: 20px 0;
	color: #00A651;
	background-color: #FBBE15;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	max-width: 75%;
}
.note:before {
	position: absolute;
	top: 10px;
	left: 20px;
	font-family: "Ionicons";
	font-style: normal;
	font-size: 2.5em;
	margin-top: -5px;
	content: "\f100";
	color: #00A651;
}
/* Widgets */
.widget {
	padding-top: 50px;
	padding-bottom: 15px;
}
/* ==================================================
   Display content based on date and time: http://jsfiddle.net/eN6Sg/5/
================================================== */
.timedContent, .DateRange {
	display: none;
}

/* ==================================================
   Media Queries
================================================== */
@media only screen and (min-width: 0px) and (max-width: 479px) {
ol, ul {
	padding-left: 15px;
}
.nav {
	margin: 0 auto auto auto;
	width: 100%;
}
.navbar-nav .open .dropdown-menu {
	background-color: #FFF;
}
.navbar-default .navbar-nav > li > a {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
	background-color: #00A651;
}
.navbar-default .icon-block {
	padding-top: 10px;
	padding-bottom: 10px;
}
.navbar-default .icon-block .vertical-align {
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.navbar-default .caret {
	display: none;
}
.navbar-default .navbar-nav > li > a {
	color: #FFF;
}
.navbar-fixed-bottom, .navbar-fixed-top {
	position: absolute;
}
.navbar-brand {
	width: 160px;
	margin-right: 0;
}
.megamenu h4 {
	font-size: 0.8em;
}
.megamenu .btn-default {
	width: 100%;
}
.dropdown-menu {
	left: 0;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.dropdown-menu > li > a {
	text-align: center;
}
.carousel-indicators {
	display: none;
}
.hero {
    position: absolute;
}
.hero .blurb {
    padding-bottom: 0;
}
.hero .blurb h1 {
	font-size: 1.5em;
	margin-bottom: 10px;
}
.hero .blurb h1 span, .hero .blurb h2 span {
    color: #FFF;
}
.hero .blurb h2 {
	font-size: 1.4em;
}
.hero .blurb p {
	font-size: 1em;
	line-height: 1em;
}
.hero .blurb p:first-of-type {
    font-size: 1.2em;
}
.hero .blurb p span {
	display: block;
}
.hero .btn-default, .hero .btn-default:active, .hero .btn-default:focus {
    margin-top: 20px;
	min-width: 210px;
}
.hero .blurb .logo {
	display: block;
	height: 150px;
}
.hero .blurb .logo img {
	position: relative;
	width: auto;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
.hero .credits {
	width: 100%;
	text-align: center;
}
.hero.page-hero {
    height: 115px;
}
.zoomImage {
	background-image: url("../img/uploads/slider/slide-01-sm.jpg");
	background-attachment: scroll;
	-webkit-background-size: auto 120%;
	-moz-background-size: auto 120%;
	-o-background-size: auto 120%;
	background-size: auto 120%;
}
#promo-banner {
	min-height: inherit;
}
#promo-banner:before {
	-webkit-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-o-background-size: auto 100%;
	background-size: auto 100%;
}
.title-block aside p {
	font-size: 1.2em;
}
.large-footer .footer-col-right:after {
	width: 100%;
}
.cta {
	text-align: center;
}
.btn span {
	display: none;
}
.block {
	margin-bottom: 50px;
}
.block figure {
	max-width: 50px;
	margin: 0 auto;
}
.page-title {
    font-size: 1.2em;
}
.icon-block h4 {
	font-size: 1em;
}
.icon-block .icon {
	font-size: 3em;
}
a.icon-block .flip {
	height: 5em;
}
a.icon-block .face img {
	max-width: 50px;
}
.panel-heading a {
    padding: 15px 15px;
}
.tab-wrap {
	-webkit-box-shadow: inset 0 310px 0 0 #FFF;
	-moz-box-shadow: inset 0 310px 0 0 #FFF;
	box-shadow: inset 0 310px 0 0 #FFF;
}
#tabs h5 {
	font-size: 1em;
}
#tabs .indv-tab {
	padding: 0 30px;
}
.ft-courses-time-line .courses-timeline {
	padding-left: 20px!important;
	padding-right: 20px;
}
.logos > div > .logo:last-child {
	margin-bottom: 0;
}
.widget {
	padding-left: 10%;
	padding-right: 10%;
}
.widget:after {
	display: block;
	content: "";
	width: 75%;
	margin: 25px auto 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.widget:last-child:after {
	border-bottom: none;
}
.large-footer .section-title {
	font-size: 1.5em;
	text-align: left;
}
.large-footer p {
	margin-bottom: 15px;
}
.footer .privacy, .footer .copyright {
	text-align: center;
}
.footer .copyright {
	margin-bottom: 20px;
}
.border-right {
	border: none;
}
.scrollme {
	overflow-x: hidden;
}
.nicescroll-rails {
	display: none!important;
}
.vertical-align {
	top: 0;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}
.timetable {
	overflow-x: hidden;
}
.timetable h6 {
	margin-top: 5px;
	margin-bottom: 15px;
	font-size: 0.95em;
}
.timetable .time {
	font-size: 1em;
}
.timetable .time span {
	display: none;
}
.timetable .row > .date h5 {
	padding-right: 20px;
}
.timetable .row > div > div.info {
	padding: 10px 10px 20px;
	margin-bottom: 20px;
}
.timetable .row > div > div.info:after {
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	content: "";
	border-bottom: 3px solid #00A651;
	width: 66.66666667%;
}
.timetable .row > div > div.info:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.timetable .row > div > div:before, .timetable .row > div > div:after {
	border: none;
	text-align: center!important;
}
.timetable .third .time {
	text-align: left;
}
.ft-courses-time-line .courses-timeline-wrap:nth-child(1):after {
	display: none;
}
.section-title {
	font-size: 2em;
	text-align: center;
}
.footer {
	padding-bottom: 75px;
}
.ccounter > div {
	margin-bottom: 60px;
}
.page-icon {
	left: 80%;
}
.border-page-top::before {
	width: 85%;
}
.note {
    max-width: 100%;
}
.supports .section-title {
    font-size: 1.2em;
}
.supports div > a {
    margin-bottom: 40px;
}
.supports div:last-child > a {
    margin-bottom: 0;
}
.supports object, .supports img {
    max-width: 120px;
}
.padding-50 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.cta h5 {
    font-size: 2em;
}
.cta p {
    font-size: 1em;
}
.zoomImage:after {
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
}
}

@media only screen and (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
.navbar-brand {
    width: 175px;
}
.dropdown-menu {
	left: 0;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.dropdown-menu > li > a {
	text-align: center;
}
.hero .blurb {
    padding-bottom: 0;
}
.hero .blurb .logo img {
	position: relative;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.hero .blurb .col-xs-12.col-sm-3 {
	width: 25%;
}
.hero .blurb .col-xs-12.col-sm-9 {
	width: 75%;
}
.hero .blurb h1 {
    font-size: 3em;
}
.hero .blurb p {
	font-size: 1.2em;
	line-height: 1em;
}
.hero .blurb p:first-of-type {
    font-size: 1.5em;
}
.hero .blurb p span {
	display: block;
}
.zoomImage:after {
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
body {
	padding: 0 !important;
}
.dropdown-menu {
	left: 0;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.dropdown-menu > li > a {
	text-align: center;
}
.hero {
	position: static;
}
.large-footer .footer-col-right:after {
	width: 100%;
}
.hero .item img {
	height: auto;
	width: auto;
	max-width: 300%;
}
.hero .credits {
	width: 100%;
	text-align: center;
}
.carousel-indicators, .scroll-down {
	display: none;
}
.icon-block:nth-child(even), .icon-block:nth-child(odd) {
	border: 1px solid #DDD;
	border-top: none;
	border-left: none;
	border-right: none;
}
.tab-wrap {
	-webkit-box-shadow: inset 0 205px 0 0 #FFF;
	-moz-box-shadow: inset 0 205px 0 0 #FFF;
	box-shadow: inset 0 205px 0 0 #FFF;
}
#tabs.main .indv-tab img.absolute {
	position: static;
}
#tabs.main ul {
	display: block;
}
#tabs.main ul li a {
	text-align: left;
}
#tabs.main ul li a:before {
	display: inline-block;
	margin: 0 10px 0 0;
}
#tabs ul li {
	width: 100%;
}
#tabs.main .indv-tab {
	padding: 30px;
}
.promo-banner .banner-left {
	text-align: center;
}
.promo-banner p {
	float: none;
	width: 80%;
	margin: 15px auto;
}
#banner-vilagale.promo-banner .banner-right .btn {
	position: relative;
	bottom: 0;
	margin-top: 150px;
}
section {
	overflow-x: hidden;
}
.footer {
	text-align: center;
	padding-bottom: 75px;
	font-size: 0.8em;
}
.footer ul {
	padding-top: 25px;
	text-align: center;
}
.footer ul li {
	margin: 0 5px;
}
.ccounter > div {
	margin-bottom: 60px;
}
.nicescroll-rails {
	display: none!important;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.hero, .hero .carousel, .hero .carousel-inner, .hero .item {
	min-height: auto;
	max-height: 65vh;
}
.hero .item img {
	height: auto;
	width: auto;
	max-width: 150%;
}
.hero .blurb h1, .hero .blurb h1 span {
	font-size: 46px;
}
.hero .blurb p {
	max-width: 80%;
}
.hero .credits {
	bottom: 5%;
}
.carousel-indicators {
	display: none;
}
.large-footer .footer-col-left i {
	float: none;
	margin-right: 0;
	background-color: none;
}
.large-footer .footer-col-left .day {
	text-align: center;
}
#tabs.main ul li a:before {
	display: block;
	margin: 0 0 15px 0;
}
.promo-banner .banner-left {
	text-align: center;
}
.promo-banner p {
	float: none;
	width: 80%;
	margin: 15px auto;
}
#banner-cp.promo-banner .banner-right {
	background-position: bottom right;
}
#banner-vilagale.promo-banner .banner-right .btn {
	position: relative;
	bottom: 0;
	margin-top: 260px;
}
#banner-vilagale.promo-banner .banner-right {
	background-position: center 0;
	background-size: auto 75%;
}
.timetable .time span {
	display: none;
}
.timetable h6 {
	margin-top: 5px;
}
.footer {
	text-align: center;
	padding-bottom: 75px;
	font-size: 0.8em;
}
.vertical-align {
	position: relative;
	top: inherit;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}
.no-border {
	border: none!important;
}
.border-right {
	border-right: 1px solid #CCC;
}
.h4, h4 {
	font-size: 15px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1999px) {
.icon-block h4 {
	font-size: 1em;
}
}
/* ==================================================
   Bootstrap additional 5 columns layout: http://www.wearesicc.com/quick-tips-5-column-layout-with-twitter-bootstrap/
================================================== */
.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
	position: relative;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}
.col-xs-15 {
	width: 20%;
	float: left;
}

@media (min-width: 768px) {
.col-sm-15 {
	width: 20%;
	float: left;
}
}

@media (min-width: 992px) {
.col-md-15 {
	width: 20%;
	float: left;
}
}

@media (min-width: 1200px) {
.col-lg-15 {
	width: 20%;
	float: left;
}
}
