@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@font-face {
  font-family: "Oswald Regular";
  src: url('../fonts/oswald-regular-webfont.eot');
  src: url('../fonts/oswald-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/oswald-regular-webfont.woff2') format('woff2'), url('../fonts/oswald-regular-webfont.woff') format('woff'), url('../fonts/oswald-regular-webfont.ttf') format('truetype'), url('../fonts/oswald-regular-webfont.svg#oswaldregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova Regular";
  src: url("../fonts/proximanova-reg-webfont.eot");
  src: url("../fonts/proximanova-reg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-reg-webfont.woff2") format("woff2"), url("../fonts/proximanova-reg-webfont.woff") format("woff"), url("../fonts/proximanova-reg-webfont.ttf") format("truetype"), url("../fonts/proximanova-reg-webfont.svg#proxima_novaregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ==================================================
   Base
================================================== */
body, html {
  font-family: "Proxima Nova Regular", Helvetica, Arial, sans-serif;
  height: 100%;
}
body {
  background-color: #FFF;
  color: #4e575c;
  overflow-x: hidden;
  overflow-y: auto;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li ul li {
  font-size: 0.9em;
  line-height: 1.2em;
  text-indent: -8px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}
p {
  margin: 0 0 10px;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
a {
  text-decoration: none;
}
a, a:hover, a:focus {
  color: #06AADA;
  outline: none;
}
img, object {
  width: 100%;
  height: auto;
}
figcaption {
  font-size: 1.2em;
}
hr {
  display: block;
  clear: both;
  border-color: #C8CBCD;
  width: 75%;
}
.clearfix {
  display: block;
  width: 100%;
  float: left;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1; /* ie 6/7 */
}
/* ==================================================
   Margins, Paddings, Borders and Alignments
================================================== */
/* Margins */
.no-margin {
  margin: 0;
}
.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 rgba(0, 0, 0, 0.2);
}
.no-border {
  border: none;
}
.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.border-page-top:before {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 50%;
  height: 5px;
  background-color: #2964AA;
}
/* 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;
}
.text-justify {
  text-align: justify;
}
/* ==================================================
   Animations
================================================== */
a, .social .fa, .btn-default, .btn, .cd-top {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
/*Page Loading Fade Effect */
@-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;
  }
}
.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;
}
.fade-in {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
/* ==================================================
   Buttons
================================================== */
.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
}
.btn .fa {
  margin-left: 5px;
}
.btn span {
  display: block;
  font-size: 0.6em;
}
.btn-default {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 20px 0;
}
.btn-default:hover {
  background-color: rgba(36, 139, 82, 0.9);
  border-color: rgba(36, 139, 82, 0.9);
}
.btn-primary, .btn-secondary, .btn-primary:focus, .btn-secondary:focus {
  background-color: #fd4835;
  border: none;
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
}
.btn-primary {
  font-size: 2em;
  padding: 12px 30px 5px !important;
}
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
  background-color: #a4c407;
  border-color: #a4c407;
  text-decoration: none;
}
.inner-content .btn-secondary {
  font-size: 1.5em;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 95px;
  white-space: normal;
  text-align: center;
}
.btn-secondary:hover {
  background: #a4c406;
  color: #FFF;
}
.btn-info {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-size: 1em;
  background-color: #06AADA;
  padding-top: 10px;
}
.btn-info:hover {
  background-color: #A4C406;
  border-color: #A4C406;
}
/* Scroll to Top */
.bt-top {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  background-color: #FD4835;
  color: #FFF;
}
.bt-top:hover, .bt-top:focus {
  background-color: #A4C406;
  color: #FFF;
}
/* No link */
.no-link, .no-link:hover, .no-link:active, .no-link:focus {
  cursor: default;
}
/* ==================================================
   Navigation
================================================== */
.sidebar-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.sidebar-nav .navbar .navbar-collapse {
  max-height: none;
}
.sidebar-nav .navbar ul, .sidebar-nav .navbar li {
  float: none;
}
.sidebar-nav .navbar li {
  width: 260px;
  margin-left: 5px;
}
.sidebar-nav .navbar ul:not {
  display: block;
}
.sidebar-nav .navbar li a {
  padding: 10px 0 10px 30px;
}
.navbar {
  border: none;
}
.navbar-default {
  background-color: transparent;
}
.navbar-default .navbar-nav > li > a {
  color: #FFF;
  background-color: rgba(76, 85, 90, 0.9);
  text-transform: uppercase;
  font-size: 1.5em;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav a.current {
  background-color: #7fb92c;
}
.navbar-default .navbar-nav > li > a span {
  display: block;
  color: inherit;
  font-size: 0.6em;
  font-style: italic;
  text-transform: none;
}
.navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > li > a:hover {
  color: #FFF;
  background-color: #7e8f25;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none;
}
.navbar-toggle {
  margin-right: 0;
  padding: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-default .navbar-toggle {
  position: absolute;
  right: 15px;
  background-color: #FFF;
  border: none;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: #A4C900;
}
.navbar-default .navbar-toggle:focus span, .navbar-default .navbar-toggle:hover span {
  background-color: #FFF;
}
/* Navigation Tabs */
.nav-tabs {
  border-bottom: none;
  margin-top: 40px;
}
.info-tab ul li {
  margin-bottom: 10px;
}
.nav-tabs > li {
  position: relative;
  display: inline-block;
  padding: 0;
}
.nav-tabs > li:last-child {
  margin-right: 0;
}
.nav-tabs > li .fa {
  text-align: center;
  line-height: 25px;
  width: 25px;
  height: 25px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.nav-tabs > li.active .fa {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nav.nav-tabs > li > a {
  padding: inherit 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.nav-tabs > li > a .title {
  font-size: 1.8em;
}
.nav-tabs > li.active > a .title {
  background-color: #EE3533;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  border: none;
  background-color: #A4C406;
  color: #FFF;
}
/*.tab-content {
	padding-left: 60px;
	padding-right: 60px;
}
*/ .tab-content h3 {
  margin: 2em 0 0;
}
.tab-content h3 span {
  color: #06aada;
}
/* Back To Top */
.cd-top {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 60px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  color: #FFF;
  font-size: 2em;
  white-space: nowrap;
  background: #FD4835;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 9999;
}
.cd-top:hover {
  background: #A4C406;
  color: #FFF;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  opacity: 1;
}
.no-touch .cd-top:hover {
  background-color: #A4C406;
  opacity: 1;
}
.cd-top .fa {
  position: relative;
  top: 25%;
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  -o-transform: translateY(-25%);
  transform: translateY(-25%);
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
/* ==================================================
   Carousel
================================================== */
.banner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 50px 0 0;
  padding: 0;
  border: none;
  overflow: hidden;
  -webkit-transform: skew(0deg, -3deg);
  -moz-transform: skew(0deg, -3deg);
  -ms-transform: skew(0deg, -3deg);
  -o-transform: skew(0deg, -3deg);
  transform: skew(0deg, -3deg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9;
}
.banner:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-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);
}
.banner .bordered {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25vh;
  z-index: 9;
  opacity: 0.25;
}
.banner h1 {
  color: #FFF;
  font-size: 7em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.banner .container, .banner .container div {
  height: 100%;
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.home-banner {
  height: 77%;
  min-height: 530px;
}
.home-banner .main-banner {
  background-image: url("../img/slider/slide-01.jpg");
  background-position: 0 40%;
}
.page-banner {
  height: 25%;
  height: 25vh;
}
.page-banner .main-banner {
  background-image: url("../img/slider/slide-01.jpg");
  background-position: 0 60%;
}
.page-banner .children-banner {
  background-image: url("../img/parallax/parallax-02.jpg");
  background-position: 0 40%;
}
/* ==================================================
   Supports Stream
================================================== */
.partners-gallery {
  background-color: #FFF;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 20px;
  text-align: center;
  z-index: 9;
}
.partners-gallery div {
  display: inline-block;
}
/*.partners-gallery div:last-child {
	border-right: none;
}*/
.partners-gallery .row {
  width: 100%;
}
.partners-gallery h4 {
  font-family: inherit;
  font-size: 1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
}
.partners-gallery img, .partners-gallery object {
  display: block;
  margin: 20px 0;
  max-width: 150px;
}
/* ==================================================
   Header
================================================== */
.navbar-default .navbar-nav > li.logo {
  display: block;
  background-color: #FFF;
  position: relative;
  width: 300px;
  height: 190px;
  margin-top: -1px;
  margin-left: -15px;
}
.navbar-default .navbar-nav > li.logo a {
  background-color: #FFF;
  padding: 0 0 1px;
}
.navbar-default .navbar-nav > li.logo a:hover {
  background-color: #FFF !important;
}
.navbar-default .navbar-nav > li.logo a img, .navbar-default .navbar-nav > li.logo a object {
  display: block;
  width: 240px;
  height: auto;
  margin: 0 30px;
}
.nav > li > a:focus, .nav > li > a:hover, .nav > li > a:focus, .nav > li > a:focus, .nav > li > a:focus, .nav > li > a:active, .nav > li > a:focus, .nav > li > a:active:focus {
  background-color: #A4C406 !important;
  text-decoration: none;
}
/* ==================================================
   Content
================================================== */
.bordered {
  border-left: 20px solid #c8cbcd;
  border-right: 20px solid #c8cbcd;
}
.content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
}
.content h1 {
  font-size: 2.5em;
  margin: 5px 0 30px;
  line-height: 1.3em;
}
.inner-content {
  position: relative;
  display: block;
  padding: 50px 50px 0;
}
.inner-content h2 {
  display: block;
  margin-top: 3px;
  margin-bottom: 30px;
  padding-bottom: 7px;
  color: #fd4835;
  width: 90%;
}
.inner-content div {
  position: relative;
}
.media-content figure {
  position: relative;
  display: block;
  float: left;
  margin-bottom: 10px;
  width: 100%;
  /*max-height: 440px;*/
  overflow: hidden;
}
.media-content figure img {
  /*max-width: 695px;
	height: 100%;
	max-height: 440px;*/
}
.offer-feature object {
  width: 100%;
}
.offer-feature .offer-title {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #A4C406;
}
.inner-content .info .btn {
  margin: 0 5px 5px 0;
  font-size: 1.3em;
}
.inner-content h2 span, .modal-title span {
  color: #06aada;
}
.inner-content h3 {
  color: #06AADA;
  clear: both;
}
.inner-content p, .inner-content ul {
  position: relative;
  font-size: 1.2em;
  padding-right: 10%;
  clear: both;
}
.inner-content p strong.highlight {
  background-color: #FD4835;
  color: #FFF;
  padding: 0 5px;
}
.inner-content ul ul {
  font-size: 1em;
}
.page-margin .inner-content p, .page-margin .inner-content ul {
  padding-right: 8%;
}
.home-margin .content, .page-margin .content {
  margin-top: -40px;
}
.home-margin .content {
  padding-top: 50px;
}
.page-margin .content {
  padding-top: 35px;
}
.inner-content ul {
  margin-bottom: 20px;
}
.inner-content ul .fa {
  text-align: right;
}
.inner-content img.round, .inner-content img.square {
  width: 200px;
}
.container {
  position: relative;
}
.social {
  position: absolute;
  top: 35px;
  right: 10%;
  z-index: 9999;
}
.social li {
  display: inline-block;
  margin-left: 10px;
}
.social .fa {
  background-color: #4a545a;
  color: #FFF;
  font-size: 1.5em;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.social .fa#fb:hover {
  background-color: #3A5795;
}
.social .fa#in:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}
.social .fa#vimeo:hover {
  background-color: #1ab7ea;
}
.note {
  font-size: 1.2em !important;
  font-style: italic;
}
.date {
  position: absolute;
  top: 0;
  right: -280px;
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-size: 2.2em;
  text-transform: uppercase;
  color: #06aada;
  padding: 30px 30px 12px 0;
  background: #FFF;
}
.date .fa {
  color: #7fb92c;
}
.calendar time span {
  position: absolute;
  left: -35px;
  top: 8px;
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2em;
  color: #A4C406;
}
.calendar ul ul {
  margin-top: 10px;
}
.calendar li {
  margin-left: 10px;
}
.calendar ul ul li {
  margin-left: 0;
}
.calendar time strong {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  color: #06AADA;
}
.hero {
  position: relative;
  top: 50%;
  height: auto !important;
  -webkit-transform: skew(0deg, 3deg) translateY(-50%);
  -moz-transform: skew(0deg, 3deg) translateY(-50%);
  -ms-transform: skew(0deg, 3deg) translateY(-50%);
  -o-transform: skew(0deg, 3deg) translateY(-50%);
  transform: skew(0deg, 3deg) translateY(-50%);
  z-index: 9;
}
.hero h2, .hero h3 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  color: #FFF;
}
.hero h2 {
  font-size: 3.5em;
}
.hero h3 {
  font-size: 1.8em;
}
.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.tag {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: normal;
  background-color: #06aada;
  margin-right: 5px;
  padding: 10px 15px 5px;
  color: #FFF;
}
/* Countdown */
.countdown-container #countdown > div > .row {
  margin-bottom: 20px;
}
.countdown-container .circle {
  position: relative;
  left: 50%;
  display: block;
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-size: 50px;
  text-align: center;
  width: 90%;
  border-radius: 50%;
  border: 3px solid #FFF;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.countdown-container .circle:after, .countdown-container .text:after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.countdown-container .circle span, .countdown-container .text span {
  position: absolute;
  top: 60%;
  width: 100%;
  margin: 0;
  margin-top: -3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.countdown-container .circle span {
  left: 0;
}
.countdown-container .text span {
  left: 15px;
}
.countdown-container .text {
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-size: 36px;
  margin: 0;
}
#countdown > div:nth-child(1) .circle {
  background-color: rgba(237, 180, 39, 0.75);
}
#countdown > div:nth-child(2) .circle {
  background-color: rgba(175, 201, 14, 0.75);
}
#countdown > div:nth-child(3) .circle {
  background-color: rgba(6, 170, 218, 0.75);
}
#countdown > div:nth-child(4) .circle {
  background-color: rgba(253, 72, 53, 0.75);
}
/* Time change warning */
.timechange {
  display: block;
  margin-top: 20px;
  padding: 10px 5%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  text-align: center;
  border: 2px solid #FFF;
}
.timechange h2, .timechange p {
  color: #FFF;
}
.timechange p {
  font-size: 18px;
  margin: 0;
}
.timechange span {
  display: block;
}
/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
}
/* Titles */
.title-sm, .title-md, .title-xl {
  display: block;
  font-family: "Oswald Regular", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF;
  line-height: 1.2em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.title-md {
  font-size: 3.75em;
}
.title-xl {
  font-size: 5em;
}
/* Certification logo */
.certification {
  top: 15px;
}
/* Language select */
.language {
  position: absolute;
  top: 35px;
  right: 0;
  width: 80px;
}
.language .dropdown dd, .language .dropdown dt, .language .dropdown ul {
  margin: 0;
}
.language .dropdown {
  margin-bottom: 0;
}
.language .dropdown dd {
  position: relative;
  z-index: 9999;
}
.language .dropdown a, .language .dropdown a:visited {
  text-decoration: none;
  font-weight: normal;
  outline: none;
  color: #000;
  padding: 7px 10px;
}
.language .dropdown dt a:hover {}
.language .dropdown dt a {
  background: url("../img/layout/arrow.png") no-repeat scroll right center;
  display: block;
  width: 100%;
}
.language .dropdown dt a span {
  cursor: pointer;
  display: block;
}
.language .dropdown dd ul {
  display: none;
  width: 100%;
  list-style: none;
}
.language .dropdown span.value {
  display: none;
}
.language .dropdown dd ul li {
  text-indent: 0;
}
.language .dropdown dd ul li a {
  display: block;
  background-color: #FFF;
}
.language .dropdown dd ul li a span {
  display: block;
  width: 100%;
}
.language .dropdown img.flag {
  border: none;
  vertical-align: top;
  margin-left: -3px;
  width: auto;
  height: 13px;
  margin: 3px 7px 0 0;
  padding: 0;
}
.language.level-one li.flag-area {
  width: 100%;
  -webkit-transition: all ease 0.35s;
  -moz-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  -ms-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.language.level-one li.flag-area:hover {}
/* Video Frames */
.video {
  font-family: "Proxima Nova Regular", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
}
/* Google Maps iframe */
.gmaps {
  position: relative;
  background: #ccc url(file:../images/loading.gif) center no-repeat;
  border: none;
  width: 100%;
  height: 387px;
  min-height: 387px;
  overflow: hidden;
}
.gmaps iframe {
  width: 100%;
  height: 115%;
}
/* Collapsable Panels */
.panel-default {
  border-color: #C8CBCD;
}
.panel-default:hover, .panel-default:focus {
  border-color: #7E8F25;
}
.panel-default ul, .panel-default p, .panel-default h4, .panel-default h5, .panel-default h6 {
  margin: 0 40px 10px;
}
.panel-default ul {
  margin: 0 40px 40px;
}
.panel-default ul li ul, .panel-default ul li ul li {
  margin: 0 0 10px 0;
}
.panel-default h5 {
  font-size: 1.2em;
  margin-top: 15px;
  color: #7fb92c;
}
.panel-default h6 {
  font-size: 1.1em;
  margin-top: 15px;
  color: #7fb92c;
}
.panel-default li {
  margin: 0 0 10px 35px;
}
.panel-default li .fa {
  margin-left: -40px;
  margin-right: 5px;
  width: 25px;
}
.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;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel-heading a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}
.panel-heading a.collapsed, .panel-heading a.collapsed:hover, .panel-heading a.collapsed:focus {
  background-color: #FFF;
  color: #06AADA;
}
.panel-heading a, .panel-heading a:hover, .panel-heading a:focus {
  text-decoration: none;
  background-color: #7fb92c;
  border-color: #7fb92c;
  color: #FFF;
}
.panel-heading h4 {
  font-size: 1.2em;
  font-weight: normal;
  margin: 0;
  width: 100%;
}
.panel-heading .collapsed .fa, .panel-heading .fa {
  width: 30px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  text-align: center;
}
.panel-heading .collapsed .fa {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.panel-heading .fa {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.panel-group .panel {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.clickable {
  cursor: pointer;
}
/* SVG links */
a.svg {
  position: relative;
  display: inline-block;
}
a.svg:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* Claim */
.claim {
  display: block;
  height: 80px;
  z-index: 100;
}
.claim div {
  display: block;
  vertical-align: middle;
  width: 100%;
}
.claim h2, .claim img, .claim object {
  display: inline-block;
  vertical-align: middle;
}
.claim h2 {
  font-size: 2.3em;
  text-transform: none;
  border-bottom: none;
  margin: 0 20px;
  color: #06aada;
}
.claim h2 span, h1 span {
  color: #A4C406;
}
.credits {
  position: relative;
  margin-top: -4em;
  background-color: #4a545a;
  z-index: 1;
}
.credits .container {
  padding: 3em 1em;
}
.credits .container span {
  display: block;
}
.credits a {
  line-height: 1.5em;
  text-transform: none;
  color: #FFF;
  margin: 0 15px;
}
/* Background Patterns */
.stripes, .stripes-x1, .stripes-x2, .stripes-x3 {
  background: url(../img/layout/bg-stripes.svg) repeat-x 18px bottom;
  -webkit-background-size: 2.94em;
  -moz-background-size: 2.94em;
  -o-background-size: 2.94em;
  background-size: 2.94em;
}
.stripes-x1, .stripes-x2, .stripes-x3 {
  position: absolute;
  height: 50px;
}
.stripes-x2, .stripes-x3 {
  top: 65px;
}
.stripes-x1 {
  width: 40px;
  top: 60px;
}
.stripes-x2 {
  width: 80px;
}
.stripes-x1.left, .stripes-x2.left, .stripes-x3.left {
  left: 18px;
}
.stripes-x1.right, .stripes-x2.right, .stripes-x3.right {
  right: 35px;
}
.stripes-x3 {
  width: 120px;
}
.carousel-inner .bordered .stripes-x1 {
  opacity: 0.4;
}
/* Lists */
.list-info li {
  position: relative;
  margin: 0 0 20px 20px;
}
.list-info li ul {
  margin: 10px 0;
}
.list-info li li {
  margin: 0 0 5px 20px;
}
.list-info li .fa {
  position: relative;
  top: 0;
  left: 0;
  font-size: 1em;
  width: 25px;
  text-align: center;
}
/* Mapmyfitness */
.mapmyfitness {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: 25px;
}
.mapmyfitness iframe {
  margin-top: -53px;
}
/* Horizontal Rules Custom */
hr.dotted {
  border-style: dotted;
}
hr.dashed {
  border-style: dashed;
}
/* Modals */
.modal {
  z-index: 9999;
}
.modal-dialog {
  width: 95%;
  max-width: 960px;
  height: 100%;
  margin: 30px auto;
}
.modal-content {
  height: 100%;
}
.modal-content .btn-primary {
  width: 50px;
  max-width: 50px;
  padding: 0;
  text-align: center;
}
.modal-content .btn .fa {
  display: block;
  margin-left: 0;
  line-height: 50px;
}
.modal-logo img {
  display: block;
  width: auto;
  height: 50px;
}
.modal-title {
  text-align: center;
  line-height: 50px;
  margin: 0;
  padding: 0;
  border: none;
}
/* ==================================================
   Display content based on date and time: http://jsfiddle.net/eN6Sg/5/
================================================== */
.timedContent, .DateRange {
  display: none;
}
/* ==================================================
   Parallax Section
================================================== */
.parallax {
  height: 40%;
  height: 40vh;
  margin-top: 0;
  margin-left: 0%;
  margin-right: 0%;
  width: 100%;
  position: relative;
  z-index: 9;
}
.parallax#parallax-01 {
  background: url("../img/parallax/parallax-01.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.parallax#parallax-02 {
  background: url("../img/parallax/parallax-02.jpg") 50% 0 fixed;
}
.parallax .container {
  height: 100%;
  z-index: 99;
}
.parallax h1 {
  font-size: 3.5em;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  color: #FFF;
  width: 100%;
  margin-top: 0;
}
.parallax .overlay {
  height: 100%;
}
.parallax .nav-tabs li {
  float: none;
}
/* ==================================================
   Footer
================================================== */
footer {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
footer ul {
  margin: 1em 0;
  border-right: 1px solid #FFF;
}
footer ul li {
  font-size: 1em;
  display: inline-block;
}
footer ul li a {
  font-weight: bold;
  color: #FFF;
  padding: 5px 15px;
}
/* ==================================================
   Iframe Forms
================================================== */
#iframe-form {
  font-family: "Proxima Nova Regular", Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  display: block;
  margin-top: 50px;
}
/* ==================================================
   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;
  font-size: 1.5em;
  text-align: center;
  padding: 0.5em;
}
.flat-table td {
  padding: 0.7em 1em 0.7em 1.15em;
}
.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: #f7f8f9;
}
.flat-table-neutral tr:hover {
  background: #f2f3f5;
}
.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);
}
/* ==================================================
   Print
================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    margin: 0.5cm;
  }
  h2, h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  pre, blockquote {
    border: 1px solid #808080;
    page-break-inside: avoid;
  }
  abbr[title]:after {
    content: " ("attr(title) ")";
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " ("attr(href) ")";
  }
  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr {
    page-break-inside: avoid;
  }
}
/* ==================================================
   Responsive - Bootstrap 3 Media Queries
================================================== */
@media (max-width:30.062em) { /* smartphones, iPhone, portrait 480x320 phones */
  .sidebar-nav {
    width: 100%;
  }
  .navbar-header {
    height: 65px;
  }
  .navbar-default .navbar-nav > li.logo {
    display: none;
  }
  .social {
    display: none;
  }
  .language {
    top: 9px;
    right: 70px;
  }
  .home-banner {
    height: 95%;
    height: 95vh;
  }
  .banner {
    margin: 60px 0 0;
  }
  .banner h1 {
    font-size: 4em;
  }
  .page-banner {
    height: 20vh;
  }
  .banner .bordered {
    height: 10vh;
  }
  .hero {
    padding-left: 10%;
  }
  .hero h2 {
    font-size: 2.0em;
  }
  .countdown-container .circle {
    font-size: 40px;
    line-height: 40px;
  }
  .countdown-container .text {
    font-size: 24px;
  }
  .timechange p {
    font-size: 16px;
  }
  .timechange span {
    display: inline;
  }
  .content h1 {
    font-size: 2em;
    text-align: center;
  }
  .inner-content {
    padding: 70px 0 0;
  }
  .inner-content h2 {
    margin-left: 20px;
  }
  .inner-content ul {
    margin-left: 15px;
  }
  .inner-content img {
    margin: 30px auto;
  }
  .inner-content p, .inner-content ul {
    margin-left: 5%;
    margin-right: 5%;
    padding-right: 0;
  }
  .inner-content .btn-secondary {
    position: relative;
    float: right;
    margin-right: 20px;
  }
  .nav-tabs {
    margin-top: 20px;
  }
  ul li ul li {
    text-indent: inherit;
  }
  .list-info li li {
    margin: 0 0 10px 0px;
  }
  .parallax h1 {
    font-size: 2.2em;
  }
  .btn-primary {
    font-size: 1.8em;
    margin: 5px 0;
  }
  .stripes {
    -webkit-background-size: 2.69em;
    -moz-background-size: 2.69em;
    -o-background-size: 2.69em;
    background-size: 2.69em;
  }
  .stripes-x2, .stripes-x3 {
    top: 50px;
  }
  .cd-top {
    bottom: 10px;
    line-height: 33px;
  }
  .panel-heading h4 {
    font-size: 1em;
  }
  .panel-heading a {
    padding: 10px 30px 10px 15px;
  }
  .panel-heading .fa, .panel-heading .collapsed .fa {
    margin-right: -20px;
  }
  .supports object, .supports img {
    max-height: 50px;
  }
  .modal-title {
    font-size: 18px;
    text-align: left;
    padding-left: 10px;
  }
  .modal-content .btn-primary {
    width: 30px;
    height: 30px;
    max-width: 30px;
    position: absolute;
    right: 15px;
    bottom: 5px;
  }
  .modal-content .btn .fa {
    line-height: 30px;
  }
  .cd-top {
    display: none;
  }
  .credits .container {
    padding: 2em 1em;
  }
  .home-margin .content {
    padding-top: 50px;
  }
  .border-right {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
  }
  .claim {
    height: 100px;
  }
  .claim div {
    width: auto;
  }
  .claim h2 {
    font-size: 1.8em;
  }
}
@media (min-width:30.063em) and (max-width:40.062em) { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
  .page-banner {
    height: 60%;
    height: 60vh;
  }
  .inner-content img {
    width: 160px;
  }
  .countdown-container #clock div {
    display: block;
    height: 175px;
    text-align: center;
    margin: 20px 0;
  }
  .countdown-container #days, .countdown-container #hours, .countdown-container #minutes, .countdown-container #seconds {
    margin: 15px 5px 0;
  }
  .credits .container {
    padding: 2em 1em;
  }
  .home-margin .content {
    padding-top: 50px;
  }
}
@media (min-width:40.063em) and (min-width:60.062em) { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}
@media (min-width:60.063em) and (max-width:64.062em) { /* tablet, landscape iPad, lo-res laptops ands desktops */
}
@media (min-width:64.063em) and (max-width:80.062em) { /* big landscape tablets, laptops, and desktops */
  .home-banner {
    max-height: 600px;
  }
}
@media (min-width:80.063em) { /* hi-res laptops and desktops */
}
/* ==================================================================================================================
   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: 15px;
  padding-left: 15px;
}
.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;
  }
}
/* ==================================================
   Bootstrap additional 7 columns layout
================================================== */
.col-xs-17, .col-sm-17, .col-md-17, .col-lg-17 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-17 {
  width: 14.285714285714285714285714285714%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-17 {
    width: 14.285714285714285714285714285714%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-17 {
    width: 14.285714285714285714285714285714%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-17 {
    width: 14.285714285714285714285714285714%;
    float: left;
  }
}