/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Titillium Web", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #00b8f0; }
a:hover {
  color: #00b8f0; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }



















/* Custom styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1 {

}

h2 {
  font-size: 30px;
  font-weight: 600;
}

#header {
  height: 95px;
  position: relative;

  background: #ffffff; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2M5YzciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  #ffffff 0%, #ccc9c7 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(100%,#ccc9c7)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left,  #ffffff 0%,#ccc9c7 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left,  #ffffff 0%,#ccc9c7 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left,  #ffffff 0%,#ccc9c7 100%); /* IE10+ */
  background: linear-gradient(to right,  #ffffff 0%,#ccc9c7 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ccc9c7',GradientType=1 ); /* IE6-8 */
}

#logo {
  position: relative;
  top: 20px;
  left: 50%;
  margin-left: -25px;
  height: 50px;
  overflow: hidden;
  width: 50px;
}

#logo img {
  height: 50px;
}

#langSelect {
  font-size: 80%;
  position: absolute;
  top: 30px;
  left: 10px;
  z-index: 5;
}

#langSelect ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: url('../../assets/images/langarrow.png') right 17px no-repeat;
}

#langSelect li {
  display: block;
  margin: 0;
  margin-left: 0;
  padding: 0 10px 0 10px;
  height: 1px;
  overflow: hidden;
  box-sizing: border-box;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

#langSelect .active, .mobileOpenLangs li {
  height: auto !important;
  margin: 0;
  padding: 10px 10px;
}

.mobileOpenLangs li {
  height: auto !important;
  padding: 10px !important;
  background: white;
}

#langSelect a {
  text-decoration: none;
  color: #808285;
  text-transform: uppercase;
}

#langSelect .active a {
  color: #00b8f0;
  font-weight: 600;
}

#langSelect li:first-child {
  border-left: 0 none !important;
}

#menu {
  position: absolute;
  right: 0px;
  top: 40px;
  font-size: 90%;
  font-weight: 600;
  opacity: 0;

  top: 95px;
  width: 100vw;
  left: calc(-50vw + 50%);
  background: white;
  z-index: 1000;
  display: none;

  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

#menu.mobileOpenMenu {
  display: block;
  height: auto;
  opacity: 1;
}

#menu ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

#menu li {
  display: inline-block;
  margin-left: 0px;
  text-transform: uppercase;

  display: block;
  text-align: center;

  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
}

#menu a {
  font-weight: 600;
  text-decoration: none;
  color: #221f1f;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;

  font-size: 180%;
  width: 100%;
  display: block;
}

#menu .active, #menu a:hover {
  color: #00b8f0;
}

#responsiveMenuButton {
  position: absolute;
  right: 20px;
  top: 50%;
}

#responsiveMenuButton img {
  height: 40px;
}

#homeSlider {
  position: relative;
}

.slideshow {
  height: 42.5vw;
  width: 100vw;
  background: center center no-repeat;
  background-size: cover;
}

.slideshow .gradient {
  width: 100%;
  height: 100%;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 49%, rgba(0,0,0,0.8) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(49%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.8))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.8) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.8) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.8) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.8) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-8 */

  position: relative;
  z-index: 3;
  pointer-events: none;
}

#homeSlider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

#homeSlider .swiper-slide {
  background: center center no-repeat;
  background-size: cover;
}

#homeSlider .swiper-slide a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
  line-height: 180%;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  padding-bottom: 40px;
}

#homeSlider .swiper-slide span {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 140%;
  text-shadow: 0 2px 4px rgba(0,0,0,.4);
  position: relative;
  z-index: 10;
}

#homeSlider .playButton {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;

  pointer-events: none;
}

#homeSlider .videoContainer {
  background: rgba(0,0,0,.7);
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

#homeSlider video {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 960px;
  max-height: 500px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: black;
  z-index: 11;
}

#homeSlider .close {
  background-image: url("../../assets/images/icons.png");
  background-position: 15px 12px;
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  top: 5px;
  right: 5px;
  position: absolute;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 1024px) {
  #homeSlider video {
    top: 34%;
    max-height: 408px;
  }
}

#homeSlider .swiper-slide span.title {
  font-weight: 600;
}

#homeSlider .swiper-slide {
  position: relative;
}

#homeSlider .introVid {
  width: 100%;
  height: 100%;
  /*
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
  */
}

#homeBody {
  background-color: black;
}

#homeMosaic {
  position: relative;
  bottom: 0;
  z-index: 3;
  max-width: 930px;
  margin: 0 auto;
  padding-top: 20px;
}

#homeMosaic .mosaic {
  width: 457px;
  max-width: 100%;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

#homeMosaic .mosaic:nth-child(even) {
  float: right;
}

#homeMosaic .mosaic img {
  width: 100%;
  vertical-align: baseline;
}

#homeMosaic .mosaic a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;

  text-align: center;
  color: white;
  font-size: 130%;
  text-decoration: none;
  line-height: 1em;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

#homeMosaic .mosaic a span {
  background: rgba(0,0,0,.7);
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

#homeMosaic .mosaic a:hover {
  opacity: 1;
}

#footer {
  background: #1a1a1a;
  padding: 40px;
  color: white;
  text-transform: uppercase;
  font-size: 80%;
  line-height: 20px;
  text-align: center;
}

#footer .socialLinks {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #888;
  padding: 10px;
  text-align: center;
  position: relative;
  margin-left: 20px;
}

#footer .socialLinks .label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  padding: 0 5px;
  white-space: nowrap;
}

#footer .socialLinks img {
  margin: 0 5px;
}

.facebookIcon {
  height: 30px;
  vertical-align: middle;
  margin: 10px auto 0;
}

#footer canvas {
  float: right;
  position: relative;
  top: 10px;
}

#submenuRow {
  position: relative;
}

#submenuRow > div {
  height: 100%;
}

#submenuRow .submenu {
  background: #00b8f0;
  box-sizing: border-box;
  padding: 30px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  width: 36%;
}

#submenuRow .headIllustration {
  background: center center no-repeat;
  background-size: cover;
  margin: 0;
  width: 64%;
}

#submenuRow .submenu a {
  text-decoration: none;
  color: white;
}

#submenuRow .submenu ul {
  list-style: none;
  margin-bottom: 0px;
}

#submenuRow .submenu li {
  text-align: center;
}

#submenuRow .submenu li:last-child {
  margin-bottom: 0px;
}

#submenuRow .submenu .active a, #submenuRow .submenu a:hover {
  color: black;
}

#genericContent .contentLeft {
  width: 36%;
  margin: 0;
  box-sizing: border-box;

  background: rgb(25,25,25); /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  rgba(25,25,25,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(25,25,25,1)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(25,25,25,1) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(25,25,25,1) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(25,25,25,1) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(25,25,25,1) 0%,rgba(0,0,0,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#000000',GradientType=0 ); /* IE6-8 */

}

#genericContent .content {
  width: 64%;
  background: white;
  margin: 0;
  box-sizing: border-box;
  padding: 30px 20px 60px 20px;
}

.fullwidth {
  width: 97% !important;
  max-width: none !important;
  margin: 0 20px 0 0;
  padding: 0 30px;
}

.vehiclesList {

}

.vehiclesList .top {
  height: 175px;
  background: center center no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  .vehiclesList .top {
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .vehiclesList .top {
    height: 275px;
  }
}

@media (min-width: 1200px) {
  .vehiclesList .top {
    height: 315px;
  }
}

.vehiclesList .tall {
  height: 450px;
}

.vehiclesList .submenu {
  background: #00b8f0;
}

.vehiclesList .submenu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

.vehiclesList .submenu li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 30px;
}

.vehiclesList .submenu li:last-child {
  margin-right: 0;
}

.vehiclesList .submenu a {
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  border-bottom: 4px solid #00b8f0;
  padding: 22px 0;
  text-decoration: none;
  color: white;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.vehiclesList .submenu .active a, .vehiclesList .submenu a:hover {
  border-bottom-color: white;
}

.vehicleMosaic {
  padding: 10px 30px;
  text-align: center;
}

.vehicleMosaic a {
  display: inline-block;
  width: 263px;
  margin: 0 16px 25px;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.vehicleMosaic a:hover {
  color: #00b8f0;
}

.vehicleMosaic span {
  display: block;
  text-align: center;
}

.vehicleTitle {
  font-size: 25px;
  color: #a3e2f5;
  padding: 20px 40px;
}

.vehicleTitle strong {
  color: white;
  font-weight: normal;
  margin-right: 20px;
}

.vehiclePage {
  padding: 50px 40px;
}

.vehiclePage .description {
  color: #808285;
  margin-left: 0;
}

.vehiclePage .description b, .vehiclePage .description strong {
  color: black;
}

button {
  border: 0 none;
  color: white;
  background: #00b8f0;
  font-weight: 600;
  font-size: 14px;
}

.infoButton {
  margin-top: 20px;
}

.infoButton.hide {
  display: none;
}

.infoRequest {
  display: none;
  max-width: 600px;
  margin-top: 60px;
}

form input, form textarea {
  width: 100% !important;
  border: 0 none !important;
  background: #e2e2e2 !important;
}

.linksMosaic {
  padding: 50px 0px 20px;
  text-align: center;
  background: black;
}

.linksMosaic a {
  display: inline-block;
  width: 263px;
  margin: 0 16px 25px;
  color: black;
  text-decoration: none;
  font-weight: 600;
  position: relative;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.linksMosaic a:hover {
  color: #00b8f0;
}

.linksMosaic img {
  vertical-align: bottom;
}

.linksMosaic span {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  color: white;
  background: rgba(0,0,0,.3);
  text-align: center;
  padding: 5px 0;
  text-transform: uppercase;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.linksMosaic a:hover span {
  background: #00b8f0;
}

.someMarginBotton {
  margin-bottom: 60px;
}

.littleMarginBottom {
  margin-bottom: 20px;
}

.inlineIcon {
  vertical-align: middle;
  margin-right: 10px;
}

#media, #mediaList {
  position: relative;
  bottom: 0;
  z-index: 3;
  margin: 0 auto;
  background: black;
  padding: 30px 0;
}

#media .mosaic, #mediaList .mosaic {
  width: 457px;
  max-width: 100%;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

#media .mosaic:nth-child(even) {
  float: right;
}

#media .mosaic img, #mediaList .mosaic img {
  width: 100%;
  vertical-align: baseline;
}

#media .mosaic a, #mediaList .mosaic a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;

  text-align: center;
  color: white;
  font-size: 130%;
  text-decoration: none;
  line-height: 1em;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

#media .mosaic a span, #mediaList .mosaic a span {
  background: rgba(0,0,0,.7);
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

#media .mosaic a:hover, #mediaList .mosaic a:hover {
  opacity: 1;
}

#mediaList .mosaic {
  width: 360px;
}

#mediaList img.playButton
{
  text-align: center;
  width: 25%;
}

#mediaList .container {
  text-align: center;
}

.dark {
  background: black;
  color: white;
}

.dark a {
  color: white;
  text-decoration: none;
}

.dark .image a {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  display: block;
  float: left;
  max-width: 100%;
}

.dark .image a img {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  display: block;
  max-width: 100%;
}

.dark .image a {
  border: 10px solid black;
}

.dark .image a:hover {
  border: 10px solid white;
}

.dark .image a img:hover {
  opacity: .7;
}























/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  #homeMosaic .mosaic, #media .mosaic {
    width: 49%;
    max-width: 457px;
  }
}

@media (min-width: 700px) {
  #submenuRow .submenu li {
    text-align: left;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {

  #footer {
    text-align: left;
  }

  #footer .socialLinks {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
  }

  .facebookIcon {
    height: 30px;
    vertical-align: middle;
    display: inline-block;
    margin-top: 0;
  }

  #footer canvas {
    float: right;
    position: relative;
    top: 10px;
  }

  #genericContent .content {
    padding: 30px 30px 60px 30px;
  }
}

/* Custom breakpoint */
@media (min-width: 900px) {

  #langSelect {
    font-size: 70%;
    position: absolute;
    top: 0px;
    right: 0px;
    left: auto;
    width: 200px;
    text-align: right;
  }

  #langSelect ul {
    list-style: none;
    background: none;
    padding: 0;
    margin: 0;
  }

  #langSelect li {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
    padding: 0;
    padding-left: 10px;

    height: auto;
    padding-right: 0;
    border-left: 1px solid #9fa0a0;
  }

  #langSelect .active
  {
    padding: 0;
    padding-left: 10px;
    margin-left: 10px;
  }

  #langSelect a {
    text-decoration: none;
    color: #808285;

  }

  #langSelect .active {
    color: #00b8f0;
    font-weight: 600;
    padding-right: 0;
  }

  #langSelect li:first-child {
    border-left: 0 none !important;
  }

  #logo {
    left: 0px;
    margin-left: 0;
    overflow: visible;
    width: auto;
  }

  #responsiveMenuButton {
    display: none;
  }

  #menu {
    position: absolute;
    right: 0px;
    top: 40px;
    -webkit-top: 30px;
    font-size: 90%;
    font-weight: 600;
    display: block;

    width: auto;
    left: auto;
    opacity: 1;
    background: transparent;

    -webkit-transition: all 0ms ease;
    -moz-transition: all 0ms ease;
    -ms-transition: all 0ms ease;
    -o-transition: all 0ms ease;
    transition: all 0ms ease;
  }

  @media screen and (-webkit-min-device-pixel-ratio:0) { /* HACK FOR CHROME */
    #menu {
      top: 30px;
    }
  }

  #menu ul {
    padding: 0;
  }

  #menu li {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    text-transform: uppercase;
  }

  #menu a {
    font-size: inherit;
  }

  .slideshow {
    max-height: 90vh;
  }

  #homeSlider .swiper-slide a {
    padding-bottom: 150px;
  }

  #homeMosaic {
    bottom: 70px;
    padding-top: 0;
  }

  #homeMosaic .mosaic a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    background: rgba(0,0,0,.5);
    border: 10px solid white;
    text-align: center;
    color: white;
    font-size: 130%;
    text-decoration: none;
    opacity: 0;
    line-height: 1em;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  #homeMosaic .mosaic a span {
    background: transparent;
    padding: 10px 20px;
    position: static;
    bottom: auto;
    left: auto;
  }

  #media a {
    vertical-align: bottom;
  }

  #media span {
    bottom: 5px !important;
  }

  #media img {
    vertical-align: bottom;
  }

  #homeSlider .swiper-slide span {
    font-size: 170%;
  }

  #genericContent .content {
    padding: 30px 50px 60px 30px;
  }

  #mediaList .mosaic {
    margin: 12px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {

  #menu li {
    margin-left: 20px;
    padding-left: 20px;
  }

  #genericContent .content {
    padding: 50px 130px 60px 30px;
  }
}

/* Custom breakpoint */
@media (min-width: 1170px) {
  #mediaList .container {
    width: 1170px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .slideshow {
    min-height: 560px;
  }

  #homeSlider .swiper-slide a {
    padding-bottom: 105px;
  }
}

@media (min-width: 1500px) {
  #homeSlider .swiper-slide a {
    padding-bottom: 145px;
  }
}


/* Custom breakpoint - Mobile-last */
@media (max-width: 700px) {

  #submenuRow .submenu, #submenuRow .headIllustration {
    display: block;
    width: 100%;
  }

  #genericContent .contentLeft {
    display: none;
  }

  #genericContent .content {
    width: 100%;
  }

  .vehiclesList .top {
    display: none;
  }

  .keepVisible {
    display: block !important;
  }

  .vehiclesList .submenu {
    padding-bottom: 20px;
  }

  .vehiclesList .submenu ul {
    display: block;
    margin-bottom: 20px;
  }

  .vehiclesList .submenu li {
    display: block !important;
  }

  .vehiclesList .submenu a {
    padding-bottom: 0;
    text-align: center;
    display: block !important;
  }
}





/* MAP HEIGHT OVERRIDE
---------------------------------- */

.mapOverride {
  height: auto !important;
}




/* THUMBS GALERIA VIATURAS
---------------------------------- */

.gallery-thumbs {
  height: 40px;
  margin-top: 10px;
  background: #eee;
}

.gallery-thumbs .swiper-slide {
  background-repeat: no-repeat;
  width: 60px;
  float: left;
  opacity: .5;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.swiper-button-disabled {
  display: none;
}





/* LIGHTWINDOW ALTERNATIVA VÍDEO
---------------------------------- */

.videoOverlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 1000000;
  display: none;
}

.videoOverlay.on {
  display: block;
}

.videoOverlay .container {
  width: 100%;
  height: 100%;
}

.videoOverlay .close {
  background-image: url("../../assets/images/icons.png");
  background-position: 15px 12px;
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
}

@media screen and (min-width: 800px) {
  .videoOverlay .close {
    right: 10px;
  }
}
