/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://use.typekit.net/xvx6bec.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css");
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  margin-right: 10px; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff; }

.hamburger-box {
  width: 36px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 36px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font-size: 1rem; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../Sass/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*Sass prepping*/
.fBold, .h1front, .bottomTxt, .topTxt, .topTxtnoshadow {
  font-family: eurostile, sans-serif;
  font-weight: 700;
  font-style: normal; }

.fRegular, p, .breadtxt {
  font-family: eurostile, sans-serif;
  font-weight: 400;
  font-style: normal; }

.fmedium {
  font-family: eurostile, sans-serif;
  font-weight: 500;
  font-style: normal; }

.bggrey {
  background-color: #f9f9f9; }

.bglightblue {
  background-color: #8aa6b0; }

.bgdarkblue {
  background-color: #204453; }

.lightblue {
  color: #8aa6b0; }

.darkblue {
  color: #204453; }

/*General*/
body {
  margin: 0px;
  font-family: eurostile, sans-serif !important;
  overflow-x: hidden;
  font-size: 1rem; }

a {
  text-decoration: none !important;
  color: #204453 !important; }

a:hover {
  text-decoration: none !important;
  color: #8aa6b0 !important; }

.no-js #loader {
  display: none; }

::selection {
  background: #8aa6b0; }

::-moz-selection {
  background: #8aa6b0; }

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0; }

.se-pre-con {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  z-index: 9999;
  background-color: #204453; }

.loadLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -70px;
  margin-left: -46px; }

.logocontainer {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0; }

.logoimg {
  /*##Device = Tablets, Ipads (portrait)*/
  /*##Device = Tablets, Ipads (landscape)*/
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 768px) and (max-width: 1024px) {
    .logoimg {
      width: 300px; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .logoimg {
      width: 300px; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .logoimg {
      width: 300px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .logoimg {
      width: 300px; } }

.frontbagg {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  text-align: center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat; }
  @media screen and (min-height: 688px) {
    .frontbagg {
      min-height: 100vh; } }

.frontcontainer {
  padding-top: 8%; }

.h1front {
  color: white;
  font-size: 3.4rem;
  text-shadow: 2px 2px 4px #111;
  line-height: 5.4rem;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .h1front {
      font-size: 3rem;
      line-height: 3rem; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .h1front {
      font-size: 3rem;
      line-height: 3rem; } }

.txtcon {
  display: inline-block; }

.divider {
  width: 100%;
  height: 1px;
  background-color: #808080; }

.subtxt p {
  font-size: 2rem;
  line-height: 2rem;
  color: white; }

.bottomTxt {
  position: absolute;
  bottom: 14px;
  font-size: 1.8rem;
  color: #808080;
  width: 100%;
  height: 40px;
  text-align: center;
  text-shadow: 2px 2px 4px #111;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .bottomTxt {
      display: none; } }

.topTxt {
  position: absolute;
  z-index: 2;
  top: 124px;
  right: 30px;
  font-size: 1.6rem;
  text-shadow: 2px 2px 4px #111;
  /*##Device = Tablets, Ipads (portrait)*/
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 768px) and (max-width: 1024px) {
    .topTxt {
      font-size: 1.3rem; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .topTxt {
      font-size: 1.2rem; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .topTxt {
      top: 100px;
      font-size: 1.5rem; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .topTxt {
      margin-left: 20px;
      top: 200px;
      font-size: 1.5rem; } }

.topTxtnoshadow {
  position: absolute;
  z-index: 2;
  top: 124px;
  right: 30px;
  font-size: 1.6rem;
  color: #204453;
  /*##Device = Tablets, Ipads (landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .topTxtnoshadow {
      font-size: 1.2rem; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .topTxtnoshadow {
      display: none; } }

a .nextBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid white;
  padding: 15px 20px 20px 20px;
  cursor: pointer;
  background: url("/Media/images/fadedblue.png") repeat;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

a .nextBtn:hover {
  background-color: #8aa6b0; }

.topcontainer {
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100px;
  background-color: #204453;
  width: 100%; }

#myCarousel {
  width: 100%;
  height: 100vh;
  min-height: 700px; }

#myCarouselpage {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 320px) and (max-width: 480px) {
    #myCarouselpage {
      height: 60vh;
      min-height: unset; } }

#myCarouselcert {
  width: 100%;
  height: 150px; }

.carouselimg {
  height: 100vh;
  background-size: cover;
  background-position: top center;
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 320px) and (max-width: 480px) {
    .carouselimg {
      height: 60vh;
      min-height: unset; } }

.carouselimgfull {
  height: 100vh;
  background-size: cover;
  background-position: top center; }

.leftArrow, .leftArrowcon {
  position: absolute;
  z-index: 3;
  right: 40px;
  top: 450px;
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 320px) and (max-width: 480px) {
    .leftArrow, .leftArrowcon {
      right: 30px; } }

.rightArrow, .rightArrowcon {
  position: absolute;
  z-index: 3;
  left: 30px;
  top: 450px; }

.leftArrowcon {
  right: -75px !important;
  top: 450px !important;
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 320px) and (max-width: 480px) {
    .leftArrowcon {
      right: -48px !important;
      top: 10% !important; } }

.rightArrowcon {
  left: -85px !important;
  top: 450px !important;
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 320px) and (max-width: 480px) {
    .rightArrowcon {
      left: -48px !important;
      top: 10% !important; } }

.infoboxpage {
  position: absolute;
  background-color: #204453;
  width: 55%;
  height: 160px;
  overflow: hidden;
  padding: 20px;
  margin-right: 60px;
  bottom: 40px;
  left: 40px;
  /*##Device = Tablets, Ipads (landscape)*/
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .infoboxpage {
      width: 85%; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .infoboxpage {
      display: none; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .infoboxpage {
      display: none; } }

.owl-dots {
  position: absolute;
  left: 60%;
  bottom: 210px;
  float: right;
  /*##Device = Tablets, Ipads (landscape)*/ }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .owl-dots {
      display: none; } }

.infobox {
  position: absolute;
  background-color: #8aa6b0;
  width: 38%;
  height: 160px;
  overflow: hidden;
  padding: 20px;
  margin-right: 60px;
  bottom: 40px;
  right: -20px;
  /*##Device = Tablets, Ipads (portrait)*/
  /*##Device = Tablets, Ipads (landscape)*/
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 768px) and (max-width: 1024px) {
    .infobox {
      width: 75%; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .infobox {
      width: 55%; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .infobox {
      display: none; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .infobox {
      width: 100%;
      margin-right: 0px;
      right: 0px;
      bottom: 0; } }

.owl-dots {
  position: absolute;
  left: 60%;
  bottom: 210px;
  float: right;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .owl-dots {
      display: none; } }

button.owl-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  border: 1px solid #999 !important;
  background-color: white !important;
  margin-right: 7px;
  margin-left: 1px; }

.owl-dot.active {
  background-color: #8aa6b0 !important; }

#myCarouselcert div.owl-dots {
  margin-top: 100px;
  margin: 0 auto;
  position: relative !important;
  float: unset;
  left: 48%;
  bottom: 0; }

.content {
  text-align: left;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 220px;
  /*##Device = Tablets, Ipads (landscape)*/
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media screen and (min-height: 713px) {
    .content {
      padding-left: 15%;
      padding-right: 15%;
      margin-top: 240px; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .content {
      padding-left: 10%;
      padding-right: 10%;
      margin-top: 200px; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .content {
      margin-top: 60px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .content {
      margin-top: 60px; } }

.breadtxt {
  color: #8aa6b0;
  text-transform: uppercase; }

.certcontainer {
  height: 150px;
  background-color: #8aa6b0;
  padding-top: 20px;
  text-align: center; }

.topimg {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: top center; }

.marginXL {
  padding-left: 15%;
  padding-right: 15%; }

.employeecontainer {
  text-align: left;
  width: 100%;
  color: white;
  background-color: #204453; }

.companycontainer {
  text-align: left;
  width: 100%;
  background-color: #f9f9f9; }

.linkedin {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px; }

.mail {
  width: 25px;
  margin-top: -10px; }

.contactcontainer {
  width: 100%;
  position: relative; }

/*******************************************************************************************Navigation*/
.navitem:first-child {
  padding: 10px 5px 60px 0px;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media screen and (min-width: 1625px) {
    .navitem:first-child {
      padding: 10px 20px 60px 0px; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .navitem:first-child {
      float: unset !important;
      border-bottom: 1px solid white;
      padding: 5px 20px 10px 20px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .navitem:first-child {
      float: unset !important;
      border-bottom: 1px solid white;
      padding: 5px 20px 10px 20px; } }

.navitem {
  padding: 10px 5px 60px 5px;
  position: relative;
  float: left;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media screen and (min-width: 1625px) {
    .navitem {
      padding: 10px 10px 60px 10px; } }
  @media (min-width: 481px) and (max-width: 767px) {
    .navitem {
      float: unset !important;
      border-bottom: 1px solid white;
      padding: 5px 20px 10px 20px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .navitem {
      float: unset !important;
      border-bottom: 1px solid white;
      padding: 5px 20px 10px 20px; } }

.navitem a {
  font-family: eurostile, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 200;
  text-transform: uppercase;
  color: white !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  @media screen and (min-width: 1406px) {
    .navitem a {
      font-size: 1rem; } }

.navitem a:hover {
  font-family: eurostile, sans-serif;
  font-weight: 200;
  color: #8aa6b0;
  text-decoration: none; }

.navitem.active {
  background-color: #204453;
  font-family: eurostile, sans-serif;
  font-weight: 600;
  color: white; }

.dropbox a:hover {
  font-family: eurostile, sans-serif;
  font-weight: 400;
  color: #204453;
  text-decoration: none; }

.mobilesub {
  display: none;
  cursor: pointer;
  margin-bottom: 2px;
  text-align: left;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .mobilesub {
      float: right;
      display: block;
      width: 30px;
      height: 30px;
      padding: 2px 4px 5px 6px;
      background-color: #8aa6b0; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .mobilesub {
      float: right;
      display: block;
      width: 30px;
      height: 30px;
      padding: 2px 4px 5px 6px;
      background-color: #8aa6b0; } }

.goup {
  display: none; }

.dropbox {
  position: absolute;
  top: 76px;
  background-color: #8aa6b0;
  padding: 20px;
  z-index: 8 !important;
  min-width: 300px;
  display: none;
  text-align: left;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .dropbox {
      position: unset !important; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .dropbox {
      position: unset !important; } }

.subitem {
  font-family: eurostile, sans-serif !important;
  font-weight: 200 !important;
  font-size: 0.8rem !important;
  text-transform: none !important; }

.language {
  margin-right: 32px; }

.lang {
  color: #8aa6b0 !important;
  font-size: 0.7rem; }
  @media screen and (min-width: 1406px) {
    .lang {
      font-size: 1rem; } }

.picked {
  color: white !important; }

.navimobileswitch {
  display: block;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .navimobileswitch {
      display: none;
      min-height: 100vh;
      background-color: #8aa6b0;
      margin-top: 76px;
      padding-top: 70px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .navimobileswitch {
      display: none;
      min-height: 100vh;
      background-color: #8aa6b0;
      margin-top: 76px;
      padding-top: 100px; } }

.hamburger {
  display: none;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .hamburger {
      display: inline-block; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .hamburger {
      display: inline-block; } }

.mobilenavi {
  display: none;
  /*##Device = Low Resolution Tablets, Mobiles (Landscape)*/
  /*##Device = Most of the Smartphones Mobiles (Portrait)*/ }
  @media (min-width: 481px) and (max-width: 767px) {
    .mobilenavi {
      display: block;
      padding: 13px; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .mobilenavi {
      display: block;
      padding: 13px; } }
