/* res_id: 6436370b9a38c3d22975afecf1bdb74b */

/* ---------------------------------------------------------------- */
/* -------------------------- Fonts ------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* --------------------- CamingoDosPro ---------------------------- */
/* ---------------------------------------------------------------- */
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: normal;
}

/* IE6-9 */
input[type="submit"]::-moz-focus-inner {
  border: 0;
}
input, textarea, select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  font-weight: normal;
  font-family: 'MerriweatherSans';
  line-height: inherit;
  background: transparent;
  outline: 0px;
  box-shadow: none !important;
}
html, body {
  min-height: 100%;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}
.clearer {
  clear: both;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.uppercase {
  text-transform: uppercase;
}
/* --------------------------------------------------------- */
/* ----------------------- Navbar -------------------------- */
/* --------------------------------------------------------- */
.navbar {
  background-color: #191970;
  color: #fff;
  width: 100%;
  position: fixed;
  z-index: 1000;
}
.navbar-top {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid #4B92D7;
}
.navbar-logo {
  width: 210px;
  height: 48px;
}
.navbar-right {
    display: flex;
    justify-items: center;
}
.nav-logo-wrap {
    display: flex;
    justify-items: center;
}
.navbar-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 32px;
}
.navbar-link {
  display: inline-block;
  font-size: 12px;
  padding: 2px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap; /* prevent breaking inside */
  transition: all 0.3s ease;
}
.navbar-link:hover {
  color: #4B92D7;
}
.navbar .module-info {
  position: absolute;
  top: 80px;
  right: 0;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  display: none;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.navbar .module.module-info.active {
  display: block;
  opacity: 1;
}
.navbar .module-info-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.module-info-close {
  width: 36px;
  height: 36px;
  background-image: url('icons/icon-close.svg');
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.module-info-content {
  color: #000;
}
.module-info-content a {
  color: #4B92D7;
  text-decoration: underline;
}
.navbar .quick-buttons {
  width: 200px;
}

@media (max-width: 1080px) {
  .navbar-top {
    padding: 8px 24px;
  }
  .navbar-logo {
    width: 160px;
    height: 48px;
  }
  .navbar-bottom {
    padding: 8px 24px;
  }
  .navbar-link {
    padding: 0px 10px;
  }
}


/* --------------------------------------------------------- */
/* ----------------------- Theme --------------------------- */
/* --------------------------------------------------------- */
/*yellow*/
/* blue */
/* perfect-scrollbar v0.6.5 */
.ps-container {
  -ms-touch-action: none;
  overflow: hidden !important;
}
.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
}
.ps-container.ps-in-scrolling {
  pointer-events: none;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999;
}
.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 3px;
  height: 8px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  bottom: 0;
  height: 8px;
}
.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 3px;
  width: 8px;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  right: 0;
  width: 8px;
}
.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-x-rail, .ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 0.6;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: #999;
}
* {
  /* font-family: 'camingodos_prolight'; */
  letter-spacing: 0.03rem;
  background-repeat: no-repeat;
  font-size: 14px;
}
h3 {
  font-family: "MerriweatherSans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #191970;
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 4rem;
}
h4 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #191970;
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 2.8rem;
}
a {
  text-decoration: none;
  color: inherit;
}
strong {
  font-weight: bold;
}
.no-padding-top {
  padding-top: 0px !important;
}
.background-blue {
  background-color: #4b92d8 !important;
}
.background-blue-grey {
  background-color: #8296aa !important;
}
.background-white {
  background-color: #fff !important;
}
article .mobile {
  display: none;
}
.preloading-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(255, 255, 255, .96);
  bottom: 0px;
  transition: 1s;
  z-index: 150;
}
.preloading-overlay .progress-bar {
  position: fixed;
  width: 300px;
  height: 110px;
  top: 50%;
  left: 50%;
  margin-top: -55px;
  margin-left: -150px;
  text-align: center;
}
.preloading-overlay .progress-bar img {
  display: inline-block;
  opacity: 0;
  transition: 0.5s;
  margin-bottom: 20px;
}
.preloading-overlay .progress-bar p {
  font-size: 1.5rem;
  color: #4b92d8;
  text-transform: uppercase;
  font-family: 'camingodos_prosemibold';
}
main {
  position: relative;
  z-index: 30;
}
.tablet main {
  width: 1300px;
}
main article > * {
  line-height: 1.7rem;
}
main article .mobile-nav-opener {
  display: none;
}
main article .header {
  z-index: 50;
  position: fixed;
  top: 0px;
  left: 0px;
  /* ----------------------------------------------------------------------------------- */
  /* ------------------------------------- Nav Lev1  ----------------------------------- */
  /* ----------------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------------- */
  /* ---------------------------------- full navigation  ------------------------------- */
  /* ----------------------------------------------------------------------------------- */
}
main article .header .scroll-top {
  cursor: pointer;
}
main article .header #logo {
  background-color: #fff;
  padding: 40px 30px;
  font-size: 0px;
  display: block;
  margin-bottom: 40px;
  box-shadow: -5px -5px 15px 0px #777;
}
main article .header.visible-menu-wrap {
  position: fixed;
  z-index: 80;
  text-align: right;
}
main article .header.visible-menu-wrap .nav-opener-wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  width: 250px;
  display: inline-block;
}
main article .header.visible-menu-wrap .nav-opener-wrap.white {
  border-bottom: 1px solid #fff;
}
main article .header.visible-menu-wrap .nav-opener-wrap.white .nav-opener {
  background-image: url('UNF-hb-menu-white.png');
}
main article .header.visible-menu-wrap .nav-opener-wrap.white .scroll-top {
  background-image: url('UNF-hb-arrow-up-white.png');
}
main article .header.visible-menu-wrap .nav-opener-wrap.hidden {
  border-bottom: 1px solid transparent;
}
main article .header.visible-menu-wrap .nav-opener-wrap.hidden .scroll-top {
  opacity: 0;
  pointer-events: none;
}
main article .header.visible-menu-wrap .nav-opener-wrap .nav-opener {
  width: 21px;
  height: 15px;
  float: left;
  background-image: url('UNF-hb-menu-black.png');
  background-position: left bottom;
  cursor: pointer;
}
main article .header.visible-menu-wrap .nav-opener-wrap .nav-opener:hover {
  background-image: url('UNF-hb-menu-blue.png');
}
main article .header.visible-menu-wrap .nav-opener-wrap .scroll-top {
  width: 27px;
  height: 16px;
  float: right;
  background-image: url('UNF-hb-arrow-up-black.png');
  background-position: right bottom;
  cursor: pointer;
}
main article .header.visible-menu-wrap .nav-opener-wrap .scroll-top:hover {
  background-image: url('UNF-hb-arrow-up-blue.png');
}
main article .header .search {
  background-image: url('UNF-hb-search-black.png');
}
main article .header .search:hover, main article .header .search.active {
  background-image: url('UNF-hb-search-blue.png') !important;
}
main article .header .search.active .quick-button-field {
  display: block;
}
main article .header .search .quick-button-field {
  line-height: 0px;
  cursor: default;
}
main article .header .search .quick-button-field > div {
  position: relative;
}
main article .header .search .quick-button-field > div input {
  line-height: 1rem;
  width: calc(100% - 40px);
  padding-top: 3px;
  padding-bottom: 0px;
  vertical-align: top;
  cursor: text;
}
main article .header .search .quick-button-field > div .submit-search {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
  background-image: url('UNF-hb-search_check-blue.png');
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}
main article .header .search .quick-button-field > div.search-result-wrap {
  padding-left: 0px;
}
main article .header .search .quick-button-field > div.search-result-wrap .result-slide {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  display: none;
  transition: 0.4s;
}
main article .header .search .quick-button-field > div.search-result-wrap .result-slide.inactive {
  opacity: 0.4;
  cursor: default;
}
main article .header .search .quick-button-field > div.search-result-wrap .result-slide.prev-result {
  background-image: url("index_files//UNF-hb-arrow-learnmore-blue-left.png");
  left: 10px;
  background-position: left center;
}
main article .header .search .quick-button-field > div.search-result-wrap .result-slide.next-result {
  background-image: url("index_files//UNF-hb-arrow-learnmore-blue.png");
  right: 10px;
}
main article .header .search .quick-button-field > div.search-result-wrap .result-slider-text {
  display: none;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
main article .header .share {
  background-image: url('UNF-hb-socialmedia-black.png');
}
main article .header .share:hover {
  background-image: url('UNF-hb-socialmedia-blue.png') !important;
}
main article .header .print p {
  cursor: pointer;
}
main article .header .print p:hover {
  color: #4b92d8;
}
main article .header.small-nav-wrap {
  padding-top: 215px;
  width: 320px;
  text-align: right;
}
main article .header.small-nav-wrap .nav-wrap {
  display: inline-block;
  right: 0px;
  width: 250px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller {
  margin-left: -5px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav {
  color: #000;
  position: relative;
  height: 395px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul {
  margin-bottom: 10px;
  line-height: 2.4rem;
  list-style: none;
  text-align: left;
  padding-top: 10px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li a {
  font-weight: bold;
  letter-spacing: 0.05rem;
  display: block;
  padding-right: 10px;
  border-left: 5px solid transparent;
  line-height: 1.4rem;
  padding: 5px 0px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li a.white {
  color: #fff;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li a.white .selected {
  color: #000;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li a.hidden {
  opacity: 0;
  pointer-events: none;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li.selected > a, main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li:hover > a {
  border-left: 5px solid #fff;
  margin-left: -10px;
  padding-left: 10px;
  background: #fff;
  color: #4b92d8;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li.selected > ul {
  display: block;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul {
  padding-top: 10px;
  box-sizing: border-box;
  padding-bottom: 10px;
  display: none;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li {
  line-height: 0px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li a {
  font-weight: normal;
  text-transform: none;
  line-height: 1.2rem;
  padding: 4px 10px 4px 15px;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li.selected, main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li:hover {
  background-color: #fff;
}
main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li.selected *, main article .header.small-nav-wrap .nav-wrap .nav-scroller nav > ul > li > ul > li:hover * {
  color: #000;
}
main article .header.small-nav-wrap .nav-wrap.white .nav-opener-wrap {
  border-color: #fff;
}
main article .header.small-nav-wrap .nav-wrap.white .nav-opener-wrap .scroll-top {
  background-image: url('UNF-hb-arrow-up-white.png');
}
main article .header.small-nav-wrap .quick-buttons {
  border-top: 1px solid #000;
}
main article .header.small-nav-wrap .quick-buttons > div:not(.clearer) {
  float: left;
}
main article .header.full-nav-wrap {
  -webkit-box-shadow: 0px 0px 30px 0px #333;
  -moz-box-shadow: 0px 0px 30px 0px #333;
  box-shadow: 0px 0px 30px 0px #333;
  left: -8000px;
  transition: left 1s;
  bottom: 0px;
  background-color: #fff;
  padding: 40px 20px 40px 120px;
  height: 100%;
  box-sizing: border-box;
  width: 640px;
  z-index: 100;
}
main article .header.full-nav-wrap .quick-buttons {
  border-top: none;
  border-bottom: 1px solid #000;
  line-height: 0px;
  width: auto;
  padding-top: 0px;
}
main article .header.full-nav-wrap .quick-buttons .quick-button-field {
  top: 41px;
  background: #4b92d8;
}
main article .header.full-nav-wrap .quick-buttons .quick-button-field * {
  color: #fff;
}
/* main article .header.full-nav-wrap .quick-buttons .search {
  background-image: url('UNF-hb-search-black.png');
}
main article .header.full-nav-wrap .quick-buttons .search:hover {
  background-image: url('UNF-hb-search-blue.png');
}
main article .header.full-nav-wrap .quick-buttons .search .submit-search {
  background-image: url('UNF-hb-search_check-white.png') !important;
}
main article .header.full-nav-wrap .quick-buttons .print {
  background-image: url('UNF-hb-print-black.png');
}
main article .header.full-nav-wrap .quick-buttons .print:hover {
  background-image: url('UNF-hb-print-blue.png');
} */
main article .header.full-nav-wrap .quick-buttons .print p {
  cursor: pointer;
}
main article .header.full-nav-wrap .quick-buttons .print p:hover {
  color: #000;
}
main article .header.full-nav-wrap .quick-buttons .mail {
  background-image: url('icon-mail.svgs');
  position: relative;
}
main article .header.full-nav-wrap .quick-buttons .mail a {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
/* main article .header.full-nav-wrap .quick-buttons .mail:hover {
  background-image: url('UNF-hb-kontakt-blue.png');
}
main article .header.full-nav-wrap .quick-buttons .share {
  background-image: url('UNF-hb-socialmedia-black.png');
}
main article .header.full-nav-wrap .quick-buttons .share:hover {
  background-image: url('UNF-hb-socialmedia-blue.png') !important;
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-fb {
  background-image: url('UNF-hb-sm-facebook-white.png');
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-fb:hover {
  background-image: url('UNF-hb-sm-facebook-black.png');
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-gplus {
  background-image: url('UNF-hb-sm-google+-white.png');
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-gplus:hover {
  background-image: url('UNF-hb-sm-google+-black.png');
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-twitter {
  background-image: url('UNF-hb-sm-twitter-white.png');
}
main article .header.full-nav-wrap .quick-buttons .share .button.button-twitter:hover {
  background-image: url('UNF-hb-sm-twitter-black.png');
}
main article .header.full-nav-wrap .quick-buttons .info {
  background-image: url('UNF-hb-impressum-black.png');
}
main article .header.full-nav-wrap .quick-buttons .info:hover {
  background-image: url('UNF-hb-impressum-blue.png');
} */
main article .header.full-nav-wrap .quick-buttons .close {
  width: 16px;
  float: right;
  background-image: url('UNF-hb-menu_close-blue.png');
}
main article .header.full-nav-wrap .nav-logo-wrap {
  font-size: 0px;
  display: flex;
  justify-items: center;
}
main article .header.full-nav-wrap .nav-logo-wrap img {
  display: inline-block;
}
main article .header.full-nav-wrap .nav-logo-wrap .nav-headline {
  vertical-align: top;
  padding: 20px;
  padding-left: 120px;
  font-size: 1.6rem;
  display: inline-block;
  margin-left: -120px;
  background-image: url('UNF-hb-main-logo2.png');
  background-position: 20px center;
}
main article .header.full-nav-wrap nav {
  width: 500px;
  position: absolute;
  top: 146px;
  bottom: 0px;
  overflow: scroll;
  left: 120px;
  padding-right: 17px;
}
main article .header.full-nav-wrap nav > ul {
  padding-bottom: 40px;
}
main article .header.full-nav-wrap nav > ul li {
  list-style: none;
}
main article .header.full-nav-wrap nav > ul > li {
  font-size: 0px;
  padding: 10px;
  padding-right: 0px;
  position: relative;
  min-height: 21px;
  line-height: 0px;
}
main article .header.full-nav-wrap nav > ul > li:not(:last-of-type) {
  border-bottom: 1px dotted #000;
}
main article .header.full-nav-wrap nav > ul > li > * {
  font-size: 1rem;
  line-height: 1.7rem;
}
main article .header.full-nav-wrap nav > ul > li:hover > .navigation-level-1 {
  background-color: #eaedf0;
}
main article .header.full-nav-wrap nav > ul > li > .navigation-level-1 {
  position: absolute;
  left: 0px;
  top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  bottom: 10px;
  width: 195px;
}
main article .header.full-nav-wrap nav > ul > li > .navigation-level-1 a {
  display: block;
  font-family: 'camingodos_prosemibold';
  color: #4b92d8;
}
main article .header.full-nav-wrap nav > ul > li > ul {
  margin-left: 190px;
  width: 300px;
  display: inline-block;
  list-style: none;
}
main article .header.full-nav-wrap nav > ul > li > ul li {
  padding: 2px 0px 2px 15px;
}
main article .header.full-nav-wrap nav > ul > li > ul li:hover {
  background-color: #eaedf0;
}
main article .header.full-nav-wrap nav > ul > li > ul li a {
  display: block;
  line-height: 1.3rem;
  padding: 3px 0px;
}
main article .header.full-nav-wrap .print-tool {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 640px;
  background-color: #fff;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  z-index: 5;
}
main article .header.full-nav-wrap .print-tool .print-tool-headline {
  vertical-align: top;
  padding: 20px;
  padding-left: 240px;
  font-size: 1.6rem;
  display: inline-block;
  margin-left: -120px;
  background-image: url('UNF-hb-main-logo2.png');
  background-position: 140px center;
  margin-bottom: 7px;
}
main article .header.full-nav-wrap .print-tool form fieldset {
  padding-left: 120px;
  padding-right: 20px;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection {
  background-color: #8296aa;
  position: absolute;
  top: 157px;
  bottom: 0px;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection * {
  color: #fff;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul {
  padding-bottom: 40px;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul li {
  list-style: none;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li {
  font-size: 0px;
  padding: 10px;
  padding-right: 0px;
  position: relative;
  min-height: 21px;
  line-height: 0px;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li:not(:last-of-type) {
  border-bottom: 1px dotted #000;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > * {
  font-size: 1rem;
  line-height: 1.7rem;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li.partial-active .navigation-level-1 .checkbox-alias {
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li.active .checkbox-alias {
  border-color: #fff !important;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > .navigation-level-1 {
  position: absolute;
  left: 0px;
  top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  bottom: 10px;
  width: 195px;
  cursor: pointer;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > .navigation-level-1 p {
  display: inline-block;
  width: 163px;
  font-family: 'camingodos_prosemibold';
  text-transform: uppercase;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li .checkbox-alias-wrap {
  border: 1px solid #fff;
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  margin-top: 6px;
  cursor: pointer;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li .checkbox-alias-wrap .checkbox-alias {
  border: 5px solid transparent;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > ul {
  margin-left: 190px;
  width: 300px;
  display: inline-block;
  list-style: none;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > ul li {
  padding: 2px 0px 2px 15px;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > ul li input[type="checkbox"] {
  display: none;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > ul li.active .checkbox-alias {
  border-color: #fff;
}
main article .header.full-nav-wrap .print-tool form fieldset.article-selection > ul > li > ul li p {
  cursor: pointer;
  display: inline-block;
  width: 260px;
}
main article .header.full-nav-wrap .print-tool form input[type="submit"] {
  padding-left: 30px;
  background-image: url('UNF-hb-save_pdf-blue.png');
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 10px;
}
main article .header.full-nav-wrap .print-tool form input[type="submit"], main article .header.full-nav-wrap .print-tool form .print-reset {
  float: left;
  text-transform: uppercase;
  color: #4b92d8;
  font-family: 'camingodos_prosemibold';
  cursor: pointer;
}
main article .header.full-nav-wrap .print-tool form .print-reset {
  margin-left: 17px;
}
main article .header.full-nav-wrap .print-tool form .close-print-tool {
  float: right;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-image: url('UNF-hb-menu_close-blue.png');
  background-position: right center;
  background-repeat: no-repeat;
  margin-top: 5px;
}
main article > div:nth-child(6) {
  background-color: #eff2f5;
}
main article > div:nth-child(6) .read-more {
  background-image: url('gradient-EFF2F5.png');
  background-repeat: repeat-x;
  background-position: left bottom 85%;
}
main article > div:nth-child(7) {
  background-color: #eff2f5;
}
main article > div:nth-child(7) .read-more {
  background-image: url('gradient-EFF2F5.png');
  background-repeat: repeat-x;
  background-position: left bottom 85%;
}
main article > div:nth-child(9) {
  background-color: #efebe7;
}
main article > div:nth-child(9) .read-more {
  background-image: url('gradient-efebe7.png');
}
main article > div:nth-child(10) {
  background-color: #fdefe6;
}
main article > div:nth-child(10) .read-more {
  background-image: url('gradient-fdefe6.png');
}
main article > div:nth-child(11) {
  background-color: #ebf5ec;
}
main article > div:nth-child(11) .read-more {
  background-image: url('gradient-fdefe6.png');
}
main article > div:nth-child(12) {
  background-color: #edebe8;
}
main article > div:nth-child(12) .read-more {
  background-image: url('gradient-edebe8.png');
}
main article > div:nth-child(13) {
  background-color: #fffde8;
}
main article > div:nth-child(13) .read-more {
  background-image: url('gradient-fffde8.png');
}
main article > div:nth-child(15) {
  background-color: #f2f8ff;
}
main article > div:nth-child(15) .read-more {
  background-image: url('gradient-f2f8ff.png');
}
main article > div:nth-child(16) {
  background-color: #fdeef8;
}
main article > div:nth-child(16) .read-more {
  background-image: url('gradient-fdeef8.png');
}
main article > div:nth-child(17) {
  background-color: #fbf5e5;
}
main article > div:nth-child(17) .read-more {
  background-image: url('gradient-fbf5e5.png');
}
main article > div:nth-child(6) > *:first-child {
  background: #8c9cb0;
  background: -moz-linear-gradient(top, rgba(140, 156, 176, 1) 0%, rgba(239, 242, 245, 1) 80%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(140, 156, 176, 1)), color-stop(80%, rgba(239, 242, 245, 1)));
  background: -webkit-linear-gradient(top, rgba(140, 156, 176, 1) 0%, rgba(239, 242, 245, 1) 80%);
  background: -o-linear-gradient(top, rgba(140, 156, 176, 1) 0%, rgba(239, 242, 245, 1) 80%);
  background: -ms-linear-gradient(top, rgba(140, 156, 176, 1) 0%, rgba(239, 242, 245, 1) 80%);
  background: linear-gradient(to bottom, rgba(140, 156, 176, 1) 0%, rgba(239, 242, 245, 1) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c9cb0', endColorstr='#eff2f5',GradientType=0);
}
main article > div:nth-child(6) > *:first-child h3 {
  border-bottom-color: #000;
  color: #fff;
}
main article > div:nth-child(6) > *:first-child .read-more {
  background-image: none;
}
main article > div:nth-child(6) > *:first-child .quick-buttons {
  display: none;
}
main article .shadow-wrap {
  position: absolute;
  bottom: -30px;
  left: 0px;
  right: 0px;
  height: 30px;
  -webkit-box-shadow: 0px 13px 10px -11px #b8b8b8 inset;
  -moz-box-shadow: 0px 13px 10px -11px #b8b8b8 inset;
  box-shadow: 0px 13px 10px -11px #b8b8b8 inset;
  z-index: 10;
  pointer-events: none;
}
main article .shadow-wrap.shadow-wrap-top {
  -webkit-box-shadow: 0px -13px 10px -11px #b8b8b8 inset;
  -moz-box-shadow: 0px -13px 10px -11px #b8b8b8 inset;
  box-shadow: 0px -13px 10px -11px #b8b8b8 inset;
  bottom: auto;
  top: -30px;
}
main article .white-button {
  display: inline-block;
  text-align: center;
  background-color: #fff;
  color: #4b92d8;
  font-weight: bold;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
main article .quick-buttons {
  position: relative;
  width: 100%;
  border-top: 1px solid #000;
  border-top: none;
  text-align: left;
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
}
main article .quick-buttons > * {
  cursor: pointer;
  display: inline-block;
  height: 41px;
  background-position: center;
}
main article .quick-buttons > * * {
  cursor: default;
}
main article .quick-buttons > * .button {
  cursor: pointer;
}
main article .quick-buttons .search {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
main article .quick-buttons .print {
  width: 50px;
}
main article .quick-buttons .mail {
  position: relative;
}
main article .quick-buttons .mail a {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  cursor: pointer;
}
main article .quick-buttons .navbar-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 8px;
  transition: all ease-in-out 0.3s;
}
main article .quick-buttons .print {
  background-image: url('UNF-hb-print-black.png');
}
main article .quick-buttons .print:hover {
  background-image: url('UNF-hb-print-blue.png');
}
main article .quick-buttons .search {
  background-image: url('icons/icon-search.svg');
}
main article .quick-buttons .search:hover {
  background-image: url('icons/icon-search-blue.svg');
}
main article .quick-buttons .share {
  background-image: url('icons/icon-share.svg');
}
main article .quick-buttons .share:hover {
  background-image: url('icons/icon-share-blue.svg');
}
main article .quick-buttons .mail {
  background-image: url('icons/icon-mail.svg');
}
main article .quick-buttons .mail:hover {
  background-image: url('icons/icon-mail-blue.svg');
}
main article .quick-buttons .info {
  background-image: url('icons/icon-info.svg');
}
main article .quick-buttons .info:hover {
  background-image: url('icons/icon-info-blue.svg');
}
main article .quick-buttons .share .quick-button-field .field-name {
  display: inline-block;
}
main article .quick-buttons .navbar-icon .quick-button-field .navbar-icons-share .button {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 8px;
  transition: all ease-in-out 0.3s;
}
main article .quick-buttons .navbar-icon .quick-button-field .navbar-icons-share {
  display: flex;
  align-items: center;
}
main article .quick-buttons .quick-button-field div {
  display: flex;
  align-items: center;
}
main article .quick-buttons .share .quick-button-field .button {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 8px;
  transition: all ease-in-out 0.3s;
}
main article .quick-buttons .share .quick-button-field .button.button-fb {
  background-image: url('icons/icon-facebook.svg');
  width: 24px;
  height: 24px;
  background-size: contain;
}
main article .quick-buttons .share .quick-button-field .button.button-fb:hover {
  background-image: url('icons/icon-facebook-blue.svg');
}
main article .quick-buttons .share .quick-button-field .button.button-gplus {
  background-image: url('icons/icon-google.svg');
}
main article .quick-buttons .share .quick-button-field .button.button-gplus:hover {
  background-image: url('icons/icon-google-blue.svg');
}
main article .quick-buttons .share .quick-button-field .button.button-twitter {
  background-image: url('icons/icon-twitter.svg');
}
main article .quick-buttons .share .quick-button-field .button.button-twitter:hover {
  background-image: url('icons/icon-twitter-blue.svg');
}
main article .quick-buttons .button {
  vertical-align: top;
  height: 41px;
}
main article .quick-buttons > *:hover > .quick-button-field {
  display: block;
}
main article .quick-buttons.white {
  border-top: 1px solid #fff !important;
}
/* main article .quick-buttons.white .search {
  background-image: url('icons/icon-search.svg');
}
main article .quick-buttons.white .print {
  background-image: url('UNF-hb-print-white.png');
}
main article .quick-buttons.white .mail {
  background-image: url('icons/icon-mail.svg');
}
main article .quick-buttons.white .share {
  background-image: url('icons/icon-share.svg');
}
main article .quick-buttons.white .info {
  background-image: url('UNF-hb-impressum-white.png');
} */
main article .quick-buttons.hidden {
  opacity: 0;
  pointer-events: none;
}
main article .quick-buttons .quick-button-field {
  position: absolute;
  display: none;
  right: 0;
  top: 30px;
  background: #191970;
  border: 1px solid #4B92D7;
  min-height: 41px;
  z-index: 100;
  width: 200px;
}
main article .quick-buttons .quick-button-field > * {
  padding: 10px;
  box-sizing: border-box;
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main article .quick-buttons .quick-button-field * {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}
main article .quick-buttons .quick-button-field p {
  line-height: 1.3rem;
}
main article .quick-buttons .quick-button-field > div:not(:first-of-type) {
  border-top: 1px solid #000;
}
main article .page-outer-wrapper {
  position: relative;
}
main article .page-outer-wrapper.parallax .module-large-headline {
  padding-bottom: 0px;
}
/* main article .page-outer-wrapper.parallax .tab {
  color: #fff;
} */
main article .page-outer-wrapper.parallax .tab-wrap .read-more {
  background: none;
}
main article .page-outer-wrapper.parallax .side-box .headline {
  color: #fff;
  border-bottom: 1px solid #fff;
  background-image: url('UNF-hb-learnmore-white.png');
}
.module-large-headline {
  height: 400px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main article .page-outer-wrapper.parallax .quick-buttons .button.print:hover {
  background-image: url('UNF-hb-print-blue.png');
}
main article .page-outer-wrapper.parallax .quick-buttons .button.mail:hover {
  background-image: url('icons/icon-mail-blue.svg');
}
main article .page-outer-wrapper.parallax .quick-buttons .button.share:hover {
  background-image: url('icons/icon-share-blue.svg');
}
main article .page-outer-wrapper .page-wrap-lev-1 {
  padding-top: 0px !important;
  position: relative;
}
main article .page-outer-wrapper .page-wrap-lev-1 > h2:first-child {
  position: absolute;
  top: 30px;
  z-index: 10;
}
main article .page-outer-wrapper .sub-page-wrapper {
  position: relative;
}
main article .page-outer-wrapper .page-wrap {
  min-height: 100px;
}
main article .page-outer-wrapper .page-wrap .centered.headline-lev1 {
  text-align: center;
  line-height: 0px;
  font-size: 0px;
  padding-top: 40px;
  font-family: "MerriweatherSans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #fff;
}
main article .page-outer-wrapper .page-wrap .module {
  background-color: #d8f0f0;
  padding: 60px 10%;
}
main article .page-outer-wrapper .page-wrap .module .module-timeline {
  background-color: #ffffff !important;
  padding-top: 80px;
}
main article .page-outer-wrapper .page-wrap .module-large-headline {
  width: 100%;
}
.content-first {
  padding: 80px 10%;
  line-height: 1.7rem;
  text-align: center;
}
.module-video {
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  main article .page-outer-wrapper .page-wrap .module {
      padding: 40px 5%;
  }
  .module-video {
    width: 96%;
  }
  .content-first {
    padding: 40px 5%;
  }
}
main article .page-outer-wrapper .page-wrap .centered.headline-lev1 span {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 5.7rem;
  padding: 24px;
  background-color: rgba(22, 65, 107, 0.8);
}
main article .page-outer-wrapper .page-wrap p:not(:last-child) {
  margin-bottom: 20px;
}
main article > .search-result-wrap {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100px;
  z-index: 100;
  background-color: #4b92d8;
  display: none;
}
main article > .search-result-wrap * {
  text-transform: uppercase;
  color: #fff;
}
main article > .search-result-wrap .result-slide {
  position: absolute;
  width: 23px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  display: none;
  transition: 0.4s;
}
main article > .search-result-wrap .result-slide.inactive {
  opacity: 0.4;
  cursor: default;
}
main article > .search-result-wrap .result-slide.prev-result {
  background-image: url("index_files//UNF-hb-arrow-learnmore-white-left.png");
  left: 20px;
  background-position: left center;
}
main article > .search-result-wrap .result-slide.next-result {
  background-image: url("index_files//UNF-hb-arrow-learnmore-white.png");
  right: 20px;
}
main article > .search-result-wrap .result-slider-text {
  padding-top: 31px;
  display: none;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
main article > .search-result-wrap .result-slider-text * {
  font-size: 1.1rem;
}
main article > .search-result-wrap .result-slider-text > span {
  display: inline-block;
  vertical-align: top;
}
main article > .search-result-wrap .result-slider-text > span:not(.close-search-result) {
  padding-top: 5px;
}
main article > .search-result-wrap .result-slider-text .close-search-result {
  width: 40px;
  height: 40px;
  background-image: url('UNF-hb-menu_close-white.png');
  background-repeat: no-repeat;
  background-position: center top;
  display: inline-block;
  margin-left: 20px;
  background-position: center;
  display: inline-block !important;
}
main .overlay {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #eff2f5;
  z-index: 200;
  display: none;
}
main .overlay * {
  color: #000;
}
main .overlay .overlay-content {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
}
main .overlay .overlay-content h3 {
  position: relative;
  padding-top: 0px !important;
}
main .overlay .overlay-content .overlay-close {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('UNF-hb-menu_close-blue.png');
  background-position: right top;
  right: 0px;
  bottom: 6px;
  cursor: pointer;
  z-index: 10;
}
main .overlay .overlay-content .border {
  display: none;
}
main .overlay .overlay-content .tab-wrap {
  display: block !important;
  margin-bottom: 20px;
}
.parallax-image-wrapper {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 2100px) {
  * {
    font-size: 16px;
  }
}
@media (min-width: 1740px) {
  .centered {
    width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .centered.centered-wide, .centered.headline-lev1 {
    width: 900px !important;
  }
  .centered.border-bottom {
    width: 720px !important;
  }
  .centered.module-video {
    padding: 0px 40px;
  }
  .has-background-image .headline-lev1 {
    left: 50% !important;
    margin-left: -450px !important;
  }
  .has-background-image .headline-lev1 span {
    font-size: 4.5rem !important;
  }
  .module-timeline h2 {
    width: 720px !important;
  }
}
@media (max-width: 1500px) {
  .headline-lev1 span, .module-window-slider h2 span {
    font-size: 2.8rem !important;
    line-height: 2.9rem !important;
  }
  .wide-element > p:first-of-type {
    width: 100% !important;
    margin-left: 0px !important;
  }
}
@media (max-width: 1230px) {
  .headline-lev1 span, .module-window-slider h2 span {
    font-size: 2.7rem !important;
    line-height: 3rem !important;
  }
}
@media (max-width: 1080px) {
  .headline-lev1 span, .module-window-slider h2 span {
    font-size: 2.8rem !important;
    line-height: 3rem !important;
  }
  .main-page h2 {
    line-height: 24px !important;
  }
  .side-box, .nav-scroller, .nav-wrap .quick-buttons {
    display: none;
  }
  .small-nav-wrap {
    text-align: left !important;
  }
  .small-nav-wrap .nav-wrap {
    width: auto !important;
    margin-left: 40px;
  }
  .small-nav-wrap .nav-wrap .nav-opener-wrap {
    border: none !important;
  }
  .small-nav-wrap .nav-wrap .scroll-top {
    display: none;
  }
  h3 {
    font-family: "MerriweatherSans", serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 700;
    color: #191970;
    margin-bottom: 10px;
  }
  .module-content-tabs .content-wrap .tab-wrap .tab p, .module-content-tabs .content-wrap .tab-wrap .tab p * {
    font-size: 14px !important;
  }
  .module-window-slider .slider-content * {
    font-size: 12px !important;
  }
  .module-window-slider .slider-content {
    padding: 10px!important;
    line-height: 1.6rem!important;
  }
  .border-bottom {
    width: 72% !important;
    margin-left: 14% !important;
  }
  main article .page-outer-wrapper .page-wrap p:not(:last-child) {
    margin-bottom: 10px;
  }
}


/* --------------------------------------------------------- *//* ----------------------- Theme --------------------------- *//* --------------------------------------------------------- *//*yellow*//* blue */.parallax {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: cover;
}
.parallax.scrollable {
  background-position: center bottom;
  background-attachment: scroll;
}
.main-page {
  text-align: center;
}
.main-page h2 {
  line-height: 60px;
  font-family: "MerriweatherSans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.main-page h2 span {
  padding-top: 0px;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
}
.headline-lev1 {
  font-family: "Lora", serif;
  font-weight: 700;
}
.scroll-down {
  position: absolute;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  bottom: 20px;
  width: 100px;
  left: 50%;
  margin-left: -50px;
  height: 80px;
  font-weight: bold;
  background-image: url('UNF-hb-arrow-scrolldown-white.png');
  background-position: center bottom;
  cursor: pointer;
}
.scroll-down:hover {
  background-image: url('UNF-hb-arrow-scrolldown-blue.png');
}
.module {
  position: relative;
}
.popped-out {
  z-index: 80;
}
.module-window-slider {
  box-sizing: border-box;
  height: 1000px !important;
}
.slider-content-wrap {
  height: 100%;
}
.module-window-slider .slider-content-wrap .slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 10% 40px;
}
.module-window-slider .slider-content-wrap .slide:not(:first-child) {
  display: none;
}
@media (max-width: 1080px) {
  .module-window-slider {
    height: 600px !important;
  }
  .module-window-slider .slider-content-wrap .slide {
    padding: 80px 5% 40px;
  }
}
@media (max-width: 680px) {
  .module-window-slider {
    height: 920px !important;
  }
  .module-window-slider .slider-content-wrap .slide {
    padding: 100px 5% 20px;
  }
}
.module-window-slider .slider-content {
  padding: 30px;
  margin-bottom: 40px;
  line-height: 1.9rem;
}
.module-window-slider .slider-content p:not(:last-of-type) {
  margin-bottom: 10px;
}
.module-window-slider .slider-content * {
  color: #fff;
  font-size: 1.32rem;
}
.module-window-slider .anchor-link {
  background: #fff;
  color: #4b92d8;
  font-weight: bold;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.module-window-slider .slider-navigation {
  position: absolute;
  bottom: 15%;
  width: 500px;
  left: 50%;
  margin-left: -250px;
  font-size: 0px;
  line-height: 0px;
}
.module-window-slider .slider-navigation li {
  padding: 6px;
  background-color: #fff;
  list-style: none;
  display: inline-block;
  cursor: pointer;
}
.module-window-slider .slider-navigation li:not(:last-of-type) {
  margin-right: 3px;
}
.module-window-slider .slider-navigation li.active, .module-window-slider .slider-navigation li:hover {
  background: #000;
}
.module-video {
  box-sizing: border-box;
}
.module-video h3 {
  padding: 50px 0px;
  text-align: center;
  margin-bottom: 0px;
  color: inherit;
}
.module-video h3 span {
  display: block;
}
.module-video h3 * {
  font-size: 1.7rem;
  font-style: italic;
  line-height: 2.5rem;
}
.module-video .video-wrap {
  border-bottom: none;
  position: relative;
}
.module-video .video-wrap .video-title {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 40px;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-family: 'camingodos_prosemibold';
  pointer-events: none;
}
.module-content-tabs .content-wrap {
  overflow: hidden;
}
.border {
  height: 1px;
  width: 100%;
  background-color: #191970;
}
.border-80 {
  width: 80%;
  margin: 0 auto;
}
.headline-spacer {
  height: 60px;
}
.module-content-tabs .content-wrap .tab-wrap {
  position: relative;
}
.module-content-tabs .content-wrap .tab-wrap .tab {
  position: relative;
  z-index: 5;
}
.module-content-tabs .content-wrap .tab-wrap .tab.has-overflow {
  padding-bottom: 30px;
  overflow: hidden;
}
.module-content-tabs .content-wrap .tab-wrap .tab.transition {
  transition: 1s;
}
.module-content-tabs .content-wrap .tab-wrap .tab.active {
  display: block;
}
.module-content-tabs .content-wrap .tab-wrap .tab p, .module-content-tabs .content-wrap .tab-wrap .tab p * {
  font-size: 15px;
}
.module-content-tabs .content-wrap .tab-wrap .tab a {
  color: #4b92d8;
}
.module-content-tabs .content-wrap .tab-wrap .tab > ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .wide-element {
  margin-bottom: 20px;
  text-align: center;
  padding: 0px !important;
  border: none !important;
  background: none !important;
}
.module-content-tabs .content-wrap .tab-wrap .tab hr {
  height: 0px;
  border-top: 1px dotted #000;
  margin: 30px 0px;
  margin-left: 10%;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.list-element-outer-wrap {
  background-color: #f4f8f8;
  padding: 24px;
}
.box-highlight {
  padding: 24px;
  border-radius: 8px;
  background: #c8e3e4;
  border: 1px solid #4B92D7;
}
.list-box {
  background-color: #f4f8f8;
  border-radius: 8px;
  padding: 24px;
  width: 100% !important;
  padding-left: 24px !important;
}
.list-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-arrow {
  transition: all ease-in-out 0.3s;
}
.dropdown-arrow.active {
  transform: rotate(180deg);
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list ul {
  list-style: none;
  width: 100%;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list ul li a {
  text-decoration: underline;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li {
  width: 34%;
  display: inline-block;
  vertical-align: top;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li:not(:first-child) {
  margin-left: -15px;
}
@media (max-width: 1500px) {
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li {
    position: relative;
    display: block;
    width: 300px;
    left: 50% !important;
    margin-left: -150px !important;
    text-align: center;
  }
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li:not(:first-child) {
    margin-top: -15px;
  }
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li .list-element-outer-wrap {
  box-sizing: border-box;
  border-radius: 400px;
  border: 1px solid #4b92d8;
  padding: 10px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 1080px) {
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list {
    flex-direction: column;
    gap: 10px;
  }
  .list-element-outer-wrap {
    padding: 16px;
  }
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li .list-element-outer-wrap .list-element-wrap {
  background: #4b92d8;
  background: -moz-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #144678), color-stop(100%, #4b92d8));
  background: -webkit-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -o-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -ms-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: linear-gradient(to bottom, #144678 0%, #4b92d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start', endColorstr='$end',GradientType=0);
  border-radius: 400px;
  font-weight: bold;
  padding: 30px;
  text-align: center;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles li .list-element-outer-wrap .list-element-wrap * {
  font-weight: bold;
  line-height: 1.5rem;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list > p:first-child strong {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px dotted #000;
  margin-bottom: 20px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-list {
  padding-top: 30px !important;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-list > p:first-child strong {
  display: block;
  border-bottom: none;
  border: none;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-list li {
  list-style: none;
  padding-bottom: 30px;
  line-height: 0px;
  font-family: 'camingodos_prosemibold';
  color: #4b92d8;
  line-height: 2.1rem;
  font-size: 1.7rem;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-list li:not(:last-child):after {
  content: " ";
  width: 20%;
  height: 0px;
  border-top: 1px solid #000;
  display: block;
  text-align: center;
  margin-left: 40%;
  margin-top: 30px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-boxes-list > ul > li {
  position: relative;
  padding: 20px 60px;
  background: #4b92d8;
  background: -moz-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #144678), color-stop(100%, #4b92d8));
  background: -webkit-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -o-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -ms-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: linear-gradient(to bottom, #144678 0%, #4b92d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start', endColorstr='$end',GradientType=0);
  margin-bottom: 10px;
  cursor: pointer;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-boxes-list > ul > li {
  background: #fff;
  border-radius: 8px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-boxes-list > ul > li.active > p {
  background-image: url('UNF-hb-textminus-black.png');
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-boxes-list > ul > li * {
  color: #fff;
  text-align: left;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-boxes-list > ul > li * {
  color: #191970;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-boxes-list > ul > li > p {
  margin-bottom: 0px;
  padding-bottom: 60px;
  text-align: center;
  font-family: 'camingodos_prosemibold';
  font-size: 1.4rem;
  background-image: url('UNF-hb-textplus-black.png');
  background-repeat: no-repeat;
  background-position: center bottom 12px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.blue-boxes-list > ul > li > ul {
  text-align: center;
  display: none;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > p {
  width: 100%;
  margin-left: 0%;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li {
  position: relative;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > p, .module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > ul {
  background: #fff;
  margin: 0px;
  padding: 10px 50px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > p {
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  font-family: 'camingodos_prosemibold';
  color: #4b92d8;
  font-size: 1.4rem;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > ul li img {
  display: none;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > ul li p {
  margin: 0px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li img {
  display: block;
  line-height: 0px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:first-child .arrow-top {
  background: #fff;
  height: 15px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:not(:first-child) {
  margin-top: -3%;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > .number-bubble {
  position: absolute;
  left: -35px;
  top: 50%;
  margin-top: -50px;
  border-radius: 200px;
  padding: 10px;
  text-align: center;
  border: 1px solid #4b92d8;
  padding: 5px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li > .number-bubble:after {
  display: block;
  width: 60px;
  padding-top: 10px;
  height: 50px;
  font-size: 4rem;
  background: #4b92d8;
  background: -moz-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #144678), color-stop(100%, #4b92d8));
  background: -webkit-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -o-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -ms-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: linear-gradient(to bottom, #144678 0%, #4b92d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start', endColorstr='$end',GradientType=0);
  color: #fff;
  font-family: 'camingodos_prosemibold';
  border-radius: 200px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(1) > .number-bubble:after {
  content: "1";
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(2) > .number-bubble:after {
  content: "2";
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(3) > .number-bubble:after {
  content: "3";
  padding-top: 6px;
  height: 54px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(4) > .number-bubble:after {
  content: "4";
  padding-top: 6px;
  height: 54px;
  width: 55px;
  padding-right: 5px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(5) > .number-bubble:after {
  content: "5";
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.white-arrows > ul > li:nth-of-type(6) > .number-bubble:after {
  content: "6";
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay {
  position: relative;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li {
  width: 34%;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li:not(:first-child) {
  margin-left: -15px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li.active {
  opacity: 1 !important;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li.active > .list-element-outer-wrap > .list-element-wrap > p {
  position: absolute;
  top: 20px;
  left: 0px;
  right: 0px;
  z-index: 50;
  margin-top: 0px !important;
  padding-bottom: 45px !important;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li.active > .list-element-outer-wrap > .list-element-wrap > p:first-of-type {
  background-image: url('UNF-hb-textminus-black.png');
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li.active ul {
  display: block !important;
}
@media (max-width: 1500px) {
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li {
    position: relative;
    display: block;
    width: 300px;
    left: 50% !important;
    margin-left: -150px !important;
    text-align: center;
  }
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li:not(:first-child) {
    margin-top: -15px;
  }
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li > .list-element-outer-wrap {
  box-sizing: border-box;
  border-radius: 400px;
  border: 1px solid #4b92d8;
  padding: 10px;
  color: #fff;
  display: inline-block;
  overflow: hidden;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li > .list-element-outer-wrap > .list-element-wrap {
  background: #4b92d8;
  background: -moz-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #144678), color-stop(100%, #4b92d8));
  background: -webkit-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -o-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -ms-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: linear-gradient(to bottom, #144678 0%, #4b92d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start', endColorstr='$end',GradientType=0);
  border-radius: 400px;
  font-weight: bold;
  padding: 30px;
  text-align: center;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li > .list-element-outer-wrap > .list-element-wrap > p:first-of-type {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0px;
  padding-bottom: 0px;
  background-image: url('UNF-hb-textplus-black.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 78px;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li ul {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  line-height: 0px;
  background: #4b92d8;
  background: -moz-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #144678), color-stop(100%, #4b92d8));
  background: -webkit-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -o-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: -ms-linear-gradient(top, #144678 0%, #4b92d8 100%);
  background: linear-gradient(to bottom, #144678 0%, #4b92d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start', endColorstr='$end',GradientType=0);
  z-index: 10;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li ul li {
  line-height: 1.2rem;
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li ul li .list-element-outer-wrap {
  padding: 0px 20px 0px 20px;
}
@media all and (max-width: 1180px) {
  .module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li ul li .list-element-outer-wrap {
    padding: 0px;
  }
}
.module-content-tabs .content-wrap .tab-wrap .tab .special-list.list-bubbles-overlay > ul > li ul * {
  font-size: 1.1rem;
  line-height: 1.4rem;
}
.module-content-tabs .content-wrap .tab-host {
  display: table;
  width: 90%;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.module-content-tabs .content-wrap .tab-host li {
  display: table-cell;
  border-bottom: 1px solid #4B92D7;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}
.module-content-tabs .content-wrap .tab-host li.active {
  background: #fff;
  border: 1px solid #4B92D7;
}
.module-content-tabs .content-wrap .tab-host li:hover {
  background: rgba(255, 255, 255, 0.6);
}
.module-content-tabs .content-wrap .tab-host ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
.module-content-tabs .read-more {
  position: relative;
  padding: 20px 10px;
  margin-top: -30px;
  z-index: 50;
  box-sizing: border-box;
}
.module-content-tabs .read-more.has-wide-element {
  width: 100%;
  margin-left: 0%;
}
.module-content-tabs .read-more .white-stripe {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 50%;
  border-top: 1px solid #fff;
}
.module-content-tabs .read-more p {
  position: relative;
  z-index: 10;
  text-align: center;
}
.module-content-tabs .read-more p .white-button {
  cursor: pointer;
  font-size: 0.9rem;
  padding-top: 7px;
  padding-bottom: 7px;
  display: inline;
}
.module-content-tabs .read-more p .less {
  display: none;
}
.module-content-tabs .pdf {
  border-top: 1px solid #000;
  padding-top: 30px;
  padding-left: 50px;
  background-image: url('UNF-hb-document-blue.png');
  background-position: left bottom;
  color: #4b92d8;
  font-weight: bold;
  display: block;
  margin-top: 20px;
  margin-left: 10%;
  font-size: 1.1rem;
  box-sizing: border-box;
}
.module-content-tabs .quick-buttons {
  width: 100%;
  margin-top: 48px;
}
.read-more {
  background-image: url('gradient-ebebe7.png');
  background-repeat: repeat-x;
  background-position: left bottom 85%;
}
.quick-buttons {
  font-size: 0px;
}
.quick-buttons .button {
  height: 21px;
  background-position: center;
  cursor: pointer;
  display: inline-block;
}
.quick-buttons .button.print {
  width: 41px;
  background-position: center;
  background-image: url('UNF-hb-print-grey.png');
}
.quick-buttons .button.print:hover {
  background-image: url('UNF-hb-print-black.png');
}
.quick-buttons .button.print p {
  cursor: pointer;
}
.quick-buttons .button.print p:hover {
  color: #4b92d8;
}
.quick-buttons .button.mail {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-image: url('icons/icon-mail-dark.svg');
  margin: 0 8px;
  transition: all ease-in-out 0.3s;
}
.quick-buttons .button.mail:hover {
  background-image: url('icons/icon-mail-blue.svg');
}
.quick-buttons .button.share {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-image: url('icons/icon-share-dark.svg');
  margin: 0 8px;
  transition: all ease-in-out 0.3s;
}
.quick-buttons .button.share:hover {
  background-image: url('icons/icon-share-blue.svg');
}
.quick-buttons .button .quick-button-field {
  margin-left: 11.11%;
}
.quick-buttons .button .quick-button-field p {
  margin: 0px !important;
}
@media (max-width: 1080px) {
  .module-content-tabs .quick-buttons {
    margin-top: 16px;
  }
}
.side-box {
  position: absolute;
  right: 0px;
  top: 44px;
  width: 320px;
  z-index: 5;
  display: none;
}
.side-box.fixed {
  position: fixed;
  top: 170px !important;
  bottom: auto !important;
}
.side-box.static {
  position: absolute;
  top: auto !important;
  bottom: 30px !important;
}
.side-box .headline {
  display: inline-block;
  padding: 10px 0px;
  padding-right: 100px;
  border-bottom: 1px solid #000;
  background-image: url('UNF-hb-learnmore-black.png');
  background-position: right center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.side-box ul {
  list-style: none;
}
.side-box ul li {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  padding-right: 70px;
  background-image: url('UNF-hb-arrow-learnmore-blue.png');
  background-position: right 30px center;
  cursor: pointer;
}
.side-box ul li .keyword {
  color: #4b92d8;
  margin: 0px !important;
  font-weight: bold;
  font-size: 0.9rem;
}
.side-box ul li .description {
  display: none;
}
.module-large-headline {
  padding: 30px 0px !important;
  margin: 0px !important;
  position: relative;
}
.module-large-headline.has-background-image {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.module-large-headline.js-active {
  height: 500px;
}
/* .module-large-headline.js-active h2 {
  position: absolute;
  top: 50%;
} */
.module-large-headline h2 {
  padding: 0px !important;
  font-family: "MerriweatherSans", serif;
  font-weight: 700;
}
.module-large-headline h2 span {
  display: inline-block;
  line-height: 6rem;
}
.module-large-headline h2 span:last-child {
  margin-bottom: 10px;
}
.module-special-element {
  position: relative;
  z-index: 50;
  text-align: center;
  line-height: 0px;
  padding: 0 10%;
}
.module-special-element .content-before {
  padding-top: 80px;
  line-height: 1.7rem;
}
.module-special-element .content-before .graphic-navigation {
  display: table;
  list-style: none;
  margin-bottom: 30px;
  width: 100%;
}
.module-special-element .content-before .graphic-navigation.hide {
  display: none;
}
.module-special-element .content-before .graphic-navigation li {
  display: table-cell;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'camingodos_prosemibold';
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  border-bottom: 1px solid #4B92D7;
  border-radius: 8px 8px 0 0;
}
.module-special-element .content-before .graphic-navigation li.active {
  background: #d8f0f0;
  border: 1px solid #4B92D7;
}
.module-special-element .content-before .graphic-navigation li:hover {
  background: #d8f0f093;
}
.module-special-element .iframe-wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  min-height: 600px;
  overflow: hidden;
}
.module-special-element .iframe-wrap iframe {
  position: absolute;
  top: 80px;
  left: 0px;
  bottom: 20px;
  width: 10px;
  min-width: 100%;
  height: calc(100% - 100px);
}
.module-special-element .iframe-wrap iframe.full-width {
  top: 0px;
  bottom: 0px;
  height: 100%;
}
.module-media-outer-wrap {
  text-align: center;
  padding-top: 80px !important;
}
.module-media-outer-wrap h2 {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  box-sizing: border-box;
}
@media (max-width: 1080px) {
  .module-media-outer-wrap {
    padding-top: 20px !important;
  }
}
.media-slider {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
}
.media-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.media-slides img {
  width: 100%;
  display: block;
}
.media-image-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}
.media-image {
  width: 100%;
  text-align: center;
}
.media-image img {
  width: 100%;
  max-width: 800px;
}
.media-image-long img {
  max-width: 100%;
}
.video-wrapper {
  position: relative;
  padding-bottom: 35%;
  height: 0;
  overflow: hidden;
  width: 800px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1080px) {
  .video-wrapper {
    width: 100%;
    padding-bottom: 60%;
  }
}
@media (max-width: 680px) {
  .media-image-wrapper {
    flex-direction: column;
  }
}
/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border: none;
  font-size: 32px;
}
.prev { left: 0; }
.next { right: 0; }
.module-timeline {
  background: #fff !important;
  padding-top: 80px !important;
  position: relative;
  padding-bottom: 0px !important;
}
.module-timeline .module-timeline-outer-wrap {
  position: relative;
  text-align: center;
}
.module-timeline .module-timeline-outer-wrap h2 {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  box-sizing: border-box;
}
/* .module-timeline .module-timeline-outer-wrap h3 {
  color: #000;
  font-size: 1.4rem;
} */
.module-timeline .module-timeline-outer-wrap .timeline-entries {
  position: relative;
  width: 100%;
  height: 510px;
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 650px;
  margin-left: -325px;
  transition: 0.6s;
  text-align: left;
  line-height: 0px;
  opacity: 0;
}
@media (max-width: 1280px) {
  .module-large-headline, .module-large-headline.js-active {
    height: 240px;
  }
  .module-special-element {
    padding: 0 5%;
  }
  .module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry {
    width: 300px;
    margin-left: -150px;
  }
}
@media (max-width: 1080px) {
  .module-timeline .module-timeline-outer-wrap .timeline-entries {
    height: 270px;
  }
  .module-special-element .content-before {
    padding-top: 40px;
  }
}
@media (max-width: 680px) {
  .module-large-headline {
    height: 160px !important;
  }
  .headline-lev1 span, .module-window-slider h2 span {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
  .header-wrap .headline-lev1 span, .module-window-slider h2 span {
    font-size: 2.8rem !important;
    line-height: 3rem !important;
  }
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry.active {
  opacity: 1;
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry .info {
  padding-bottom: 30px;
  line-height: 1.7rem;
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry .info .date {
  font-size: 0.9rem;
  margin-bottom: 0px;
  transition: 0.6s;
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry .info .title {
  color: #4b92d8;
  transition: 0.6s;
  font-size: 1.3rem;
  font-family: 'camingodos_prosemibold';
}
.module-timeline .module-timeline-outer-wrap .timeline-entries .timeline-entry img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 5px solid #fff;
  cursor: pointer;
}
.module-timeline .timeline-stripe-wrap {
  background-color: #d8f0f0;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.module-timeline .timeline-stripe {
  position: relative;
  z-index: 1;
}
.timeline-path {
  position: absolute;
  z-index: 0;
  top: 37px;
  width: 100%;
  height: 20px;
  background-image: url('icons/timeline-path.svg');
  background-size: contain;
  background-repeat: repeat-x;
}
.module-timeline .timeline-stripe-wrap .timeline-link {
  cursor: pointer;
  color: #4b92d8;
  text-align: center;
  font-size: 1.3rem;
  font-family: 'camingodos_prosemibold';
  transition: all ease-in-out 0.3s;
}
.module-timeline .timeline-stripe-wrap .timeline-link:hover {
  color: #191970;
}
.module-timeline .timeline-stripe-wrap .timeline-stripe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.module-timeline .timeline-stripe-wrap .timeline-stripe .timeline-date {
  background-color: #fff;
  border: 0.01rem solid #000;
  border-radius: 8px;
  padding: 4px 16px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.module-timeline .timeline-stripe-wrap .timeline-stripe .timeline-date.active {
  background-color: #000;
  color: #fff;
}
.module-timeline .timeline-stripe-wrap .timeline-stripe .timeline-date:hover {
  background-color: #000;
  color: #fff;
}

/* Footer */
.footer {
  background-color: #191970;
  color: #fff;
  padding: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}
.footer .container {
    width: 100%;
    padding: 0px;
}
.footer .footer-menus ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 160px;
  align-content: space-between;
  list-style: none;
  padding: 0;
}
.footer .footer-menus ul li {
  padding-right: 24px;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  max-width: 50%;
  overflow: hidden;
}
.footer .footer-menus ul li a {
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.footer .footer-menus ul li a:hover {
  color: #4B92D7;
}
.footer .footer-social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer .footer-social-media a {
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all ease-in-out 0.3s;
}
.footer .footer-social-media a:hover {
  border: 1px solid #4B92D7;
}
.footer .footer-social-media .social-media-links.twitter {
  background-image: url('icons/icon-twitter.svg');
}
.footer .footer-social-media .social-media-links.twitter:hover {
  background-image: url('icons/icon-twitter-blue.svg');
}
.footer .footer-social-media .social-media-links.facebook {
  background-image: url('icons/icon-facebook.svg');
}
.footer .footer-social-media .social-media-links.facebook:hover {
  background-image: url('icons/icon-facebook-blue.svg');
}
.footer .footer-social-media .social-media-links.linkedin {
  background-image: url('icons/icon-linkedin.svg');
}
.footer .footer-social-media .social-media-links.linkedin:hover {
  background-image: url('icons/icon-linkedin-blue.svg');
}
.footer .footer-social-media .social-media-links.instagram {
  background-image: url('icons/icon-instagram.svg');
}
.footer .footer-social-media .social-media-links.instagram:hover {
  background-image: url('icons/icon-instagram-blue.svg');
}
.footer .footer-social-media .social-media-links.flicker {
  background-image: url('icons/icon-flicker.svg');
}
.footer .footer-social-media .social-media-links.flicker:hover {
  background-image: url('icons/icon-flicker-blue.svg');
}
.footer .footer-social-media .social-media-links.youtube {
  background-image: url('icons/icon-youtube.svg');
}
.footer .footer-social-media .social-media-links.youtube:hover {
  background-image: url('icons/icon-youtube-blue.svg');
}

@media (max-width: 1080px) {
  .footer {
    padding: 24px;
    flex-direction: column;
    gap: 32px;
  }
}


.vjs-default-skin {
  color: #cccccc;
}
/* ---------------------------------------------------------------- */
/* -------------------------- Fonts ------------------------------- */
/* ---------------------------------------------------------------- */
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'MerriweatherSans';
  src: url('fonts/MerriweatherSans/MerriweatherSans-Light.ttf');
  font-weight: normal;
  font-style: normal;
}
/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/
@font-face {
  font-family: 'VideoJS';
  src: url('fonts/vjs/vjs.eot');
  src: url('fonts/vjs/vjs.eot?#iefix') format('embedded-opentype'), url('fonts/vjs/vjs.woff') format('woff'), url('fonts/vjs/vjs.ttf') format('truetype'), url('fonts/vjs/vjs.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus highlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0;
}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.2);
}
/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.1);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
	position:absolute;
	width:80px;
	height:82px;
	top:50%;
	left:50%;
	margin-top:-40px;
	margin-left:-40px;
  border-radius: 50%;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: url('');
  background-image: url('icons/icon-play-button.svg');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75;
}
/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  -moz-animation: spin 1.5s infinite linear;
  -o-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear;
}
/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block;
}
/* prevent menus from opening while scrubbing (FF, IE) */
.vjs-default-skin.vjs-scrubbing .vjs-menu-button:hover .vjs-control-content .vjs-menu {
  display: none;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c";
}
.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em;
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertically aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3em;
  right: 0;
  pointer-events: none;
}
/* Captions Settings Dialog */
.vjs-caption-settings {
  position: relative;
  top: 1em;
  background-color: #000;
  opacity: 0.75;
  color: #FFF;
  margin: 0 auto;
  padding: 0.5em;
  height: 15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  width: 40em;
}
.vjs-caption-settings .vjs-tracksettings {
  top: 0;
  bottom: 2em;
  left: 0;
  right: 0;
  position: absolute;
  overflow: auto;
}
.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left;
}
.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both;
}
.vjs-caption-settings .vjs-tracksettings-controls {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  padding: 3px;
  min-height: 40px;
}
.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  width: 100px;
  margin-bottom: 5px;
}
.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px;
}
.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px;
}
.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 0;
}
.vjs-caption-settings label > input {
  margin-right: 10px;
}
.vjs-caption-settings input[type="button"] {
  width: 40px;
  height: 40px;
}
/* Hide disabled or unsupported controls */
.vjs-hidden {
  display: none !important;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 2em;
  color: #ccc;
  background-color: #333;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 30em;
  height: 15em;
  margin: 0 auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */


