/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* dancing-script-regular - latin */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dancing-script-v24-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/dancing-script-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dancing-script-v24-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/dancing-script-v24-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/dancing-script-v24-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/dancing-script-v24-latin-regular.svg#DancingScript') format('svg'); /* Legacy iOS */
}


* {
  font-family: 'Open Sans', sans-serif;
}

.btn-outline-primary {
  color: #e30613;
  border-color: #e30613;
}

.btn-outline-primary:hover {
  background-color: #e30613;
  border-color: #e30613;
}

main {
  width: 100%;
  padding-top: 180px;
}

.mb-desktop {
  display: none;
}

/*-- HEADER --- */
header {
  box-shadow: 0 2px 10px 0 rgba(0,0,0,.15);
  height: 100px;
  position: fixed;
  width: 100%;
  z-index: 2;
}

.mb-logo {
  position: absolute;
  left: 25px;
  width: 200px;
  z-index: 2;
}

.mb-logo:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  z-index: -2;
  box-shadow: 2px 2px 10px 0 rgba(0,0,0,.2);
}

.mb-logo img {
  width: 100%;
}

.mb-main-nav:after {
  background-color: white;
  height: 100px;
  z-index: 1;
  position: absolute;
  width: 100%;
}

.mb-main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: white;
  display: block;
  width: 100%;
  position: absolute;
  top: -350px;
  padding-top: 60px;
  transition: all 0.3s ease-in-out;
}

.mb-main-nav__list.open {
  top: 100px;
}

.mb-main-nav__list li a {
  display: block;
  color: black;
  padding: 10px 40px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
}

.mb-main-nav__list li:first-child a {
  border-top: 1px solid #ccc;
}

.mb-main-nav__list li a:hover {
  text-decoration: none;
}

.mb-language-switch a {
  display: inline-block;
  padding: 28px 0;
  color: black;
}

.mb-menu-toggle {
  display: block;
  width: 75px;
  height: 100px;
  padding: 30px 20px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}

.mb-menu-toggle span {
  width: 35px;
  height: 4px;
  display: block;
  background-color: #353535;
  position: absolute;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.mb-menu-toggle__top {
  top: 39px;
}

.mb-menu-toggle__middle {
  top: 49px;
}

.mb-menu-toggle__middle2 {
  top: 49px;
}

.mb-menu-toggle__bottom {
  top: 59px;
}

.mb-menu-toggle.open .mb-menu-toggle__top,
.mb-menu-toggle.open .mb-menu-toggle__bottom {
  opacity: 0;
  top: 49px;
}

.mb-menu-toggle.open .mb-menu-toggle__middle {
  transform: rotate(-45deg);
}

.mb-menu-toggle.open .mb-menu-toggle__middle2 {
  transform: rotate(45deg);
}

.mb-image-list img {
  margin: 0 auto 20px;
  display: block;
  width: 75%;
}

.mb-image-list img.mb-image-list__item--portrait {
  width: 50%;
}

.mb-banner {
  background-color: #000;
  overflow: hidden;
  position: relative;
  height: 280px;
}

.mb-banner__content {
  left: 50%;
  top: 50%;
  color: white;
  font-family: 'Dancing Script', sans-serif;
  position: absolute;
  background-color: transparent;
  padding: 20px 20px 10px;
  width: 90%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
}

.mb-banner__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.mb-banner img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  width: 100%;
}

.mb-banner .mb-banner__slide--portrait img {
  min-width: 75%;
  width: 75%;
}

.mb-banner .slick-list,
.mb-banner .slick-track,
.mb-banner .slick-slide > div {
  height: 100%;
}

.mb-banner .slick-prev {
  left: 5px;
  z-index: 1;
  width: 40px;
  height: 40px;
}

.mb-banner .slick-prev:before {
  font-size: 40px;
}

.mb-banner .slick-next {
  right: 5px;
  z-index: 1;
  width: 40px;
  height: 40px;
}

.mb-banner .slick-next:before {
  font-size: 40px;
}

.mb-banner .slick-dots {
  bottom: 10px;
  z-index: 1;
}

.mb-banner .slick-dots li button:before,
.slick-dots li.slick-active button:before {
  color: white;
}

.mb-banner .slick-dotted.slick-slider {
  margin: 0;
}

/* --- FOOTER --- */
footer {
  background-color: #362A28;
  color: #fff;
  padding: 20px 40px;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #ccc;
  text-decoration: none;
}

footer .mb-footer-nav {
  float: right;
}

.mb-footer-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mb-footer-nav ul li {
  float: left;
  padding: 0 8px;
}

/* --- ARTICLE -- */
article {
  padding: 0 20px 20px;
}

article h1 {
  position: relative;
  padding-bottom: 10px;
}

article h1:after {
  content: "";
  width: 120px;
  border-bottom: 2px solid #e30613;
  position: absolute;
  left: 0;
  bottom: 0;
}

article p.mb-special {
  font-family: 'Dancing Script', sans-serif;
  font-size: 30px;
  text-align: center;
}

article table {
  margin-bottom: 20px;
}

article table tr td:first-of-type {
  font-weight: bold;
  padding-right: 20px;
}

article dt {
  display: inline;
}

article dd {
  display: inline-block;
}

article p img {
  width: 100%;
  padding-bottom: 20px;
}

/* --- HIGHLIGHTS  --- */
.mb-highlights .mb-teaser {
  display: flex;
}

.mb-highlights .mb-teaser img {
  margin: 0;
}

.mb-highlights .mb-teaser .mb-image {
  width: calc(50% - 40px);
}

.mb-highlights .mb-teaser .mb-content {
  text-align: right;
  width: 50%;
}

.mb-highlights .mb-teaser h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}

.mb-highlights .mb-teaser h2:after {
  content: "";
  width: 60px;
  border-bottom: 2px solid #e30613;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mb-highlights .mb-teaser .mb-image + .mb-content {
  text-align: left;
}

.mb-highlights .mb-teaser .mb-image {
  overflow: hidden;
  position: relative;
}

.mb-highlights .mb-teaser .mb-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  width: 100%;
}

.mb-highlights .mb-teaser .mb-content {
  padding: 60px 40px;
}

.mb-intro {
  text-align: center;
}

.mb-intro > img {
  width: 50%;
}

a.mb-anchor {
  display: block;
  position: relative;
  visibility: hidden;
}

.mb-teaser--news {
  text-align: center;
  padding: 0 40px;
}

.mb-teaser--news img {
  margin-bottom: 20px;
  width: 100%;
}

.news-item + .news-item {
  margin-top: 20px;
}

.mb-pagination {
  margin-top: 20px;
  text-align: center;
}

.mb-pagination__nav {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.mb-pagination__nav-item {
  display: inline;
}

.mb-pagination__nav-item a,
.mb-pagination__nav-item span {
  display: inline-block;
  cursor: default;
  border-bottom: 4px solid #e30613;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: black;
  float: left;
  margin: 0 4px;
  padding: 8px 16px;
  text-decoration: none;
}

.mb-pagination__nav-item a:hover,
.mb-pagination__nav-item span {
  background-color: #e30613;
  color: white;
}

@media (max-width: 1279px) {
  .mb-intro__item-list {
    display: flex;
  }

  .mb-intro__item {
    width: 100%;
    position: relative;
  }

  .mb-intro__item img {
    width: 100%;
  }

  a.mb-anchor {
    top: -150px;
  }

  .mb-banner.mb-banner--home {
    margin-top: 50px;
  }
}

@media (min-width: 1280px) {
  .mb-mobile {
    display: none;
  }

  .mb-desktop {
    display: inline-block;
  }

  main {
    padding-top: 80px;
  }

  main, .mb-footer {
    width: 1280px;
    margin: 0 auto;
  }

  main > div {
    padding-top: 40px;
  }

  main > div:first-child {
    padding-top: 0;
  }

  /*-- HEADER --- */
  header {
    height: auto;
    position: relative;
  }

  .mb-menu-toggle {
    display: none;
  }

  .mb-main-nav {
    width: 1280px;
    margin: 0 auto;
    position: relative;
    padding-left: 250px;
    display: flex;
  }

  .mb-main-nav:after {
    display: none;
  }

  .mb-main-nav__list {
    padding: 0 25px;
    margin: 0;
    list-style: none;
    position: relative;
    top: 0;
    display: inline-block;
  }

  .mb-main-nav__list li {
    padding: 0 14px;
    float: left;
  }

  .mb-main-nav__list li a {
    border-bottom: 3px solid transparent;
    display: block;
    padding: 28px 0;
    color: #000;
    font-size: 20px;
  }

  .mb-main-nav__list li:first-child a {
    border-top: 0;
  }

  .mb-main-nav__list li.mb-main-nav__item--active a {
    color: #e30613;
    border-top: 0;
    border-bottom: 3px solid #e30613;
  }

  .mb-main-nav__list li a:hover {
    color: #e30613;
    text-decoration: none;
    border-bottom: 3px solid #e30613;
  }

  .mb-language-switch a {
    font-size: 20px;
  }

  .mb-language-switch a:hover {
    text-decoration: none;
    color: #e30613;
    text-decoration: none;
  }

  /* --- QUOTE --- */
  .mb-quote {
    padding: 10px 40px;
    text-align: center;
  }

  .mb-quote p {
    font-size: 20px;
    font-style: italic;
  }

  .mb-quote p span {
    font-size: 16px;
  }

  .mb-image-list {
    margin: 40px 0;
    display: flex;
    justify-content: center;
  }

  .mb-image-list img {
    display: inline-block;
    margin: 0 20px 0 0;
    width: 50%;
  }

  .mb-image-list img:last-child {
    margin: 0;
  }

  .mb-image-list img.mb-image-list__item--portrait {
    width: auto;
  }

  /* --- BANNER --- */
  .mb-banner {
    overflow: hidden;
    position: relative;
    height: 640px;
    padding: 0;
  }

  .mb-banner__slide {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .mb-banner__content {
    left: 50%;
    top: 50%;
    color: white;
    font-family: 'Dancing Script', sans-serif;
    position: absolute;
    background-color: transparent;
    padding: 20px 20px 10px;
    width: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: bold;
  }

  .mb-banner__content-link {
    text-align: center;
  }

  .mb-banner img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    width: 100%;
  }

  .mb-banner .mb-banner__slide--portrait img {
    min-width: 50%;
    width: 50%;
  }

  .mb-banner .mb-banner__slide--square img {
    min-width: 67%;
    width: 67%;
  }

  .mb-banner .slick-prev {
    left: 25px;
  }

  .mb-banner .slick-next {
    right: 25px;
  }

  footer {
    padding: 20px 0;
  }

  article p img {
    width: 33%;
    padding: 0 20px 20px 0;
    float: left;
  }

  .mb-intro {
    text-align: center;
    padding-top: 200px;
    position: relative;
    height: 960px;
  }

  .mb-intro__item {
    position: absolute;
    width: 180px;
  }

  .mb-intro__item > img {
    width: 100%;
  }

  .mb-intro__item-list:nth-of-type(1) .mb-intro__item:nth-of-type(1) {
    top: 20px;
    left: 300px;
  }

  .mb-intro__item-list:nth-of-type(1) .mb-intro__item:nth-of-type(2) {
    top: 20px;
    right: 300px;
  }

  .mb-intro__item-list:nth-of-type(1) .mb-intro__item:nth-of-type(3) {
    top: 320px;
    left: 150px;
  }

  .mb-intro__item-list:nth-of-type(1) .mb-intro__item:nth-of-type(4) {
    top: 320px;
    right: 150px;
  }

  .mb-intro__item-list:nth-of-type(2) .mb-intro__item:nth-of-type(1) {
    top: 620px;
    left: 100px;
  }

  .mb-intro__item-list:nth-of-type(2) .mb-intro__item:nth-of-type(2) {
    top: 620px;
    right: 100px;
  }

  .mb-intro__item-list:nth-of-type(2) .mb-intro__item:nth-of-type(3) {
    bottom: 20px;
    left: 380px;
  }

  .mb-intro__item-list:nth-of-type(2) .mb-intro__item:nth-of-type(4) {
    bottom: 20px;
    right: 380px;
  }

  .mb-teaser--news {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mb-teaser--news-long {
    text-align: left;
  }

  .mb-teaser--news img {
    padding-left: 20px;
    width: 30%;
    float: left;
  }

  .mb-teaser__content {
    width: 70%;
    float: left;
  }

  .news-item + .news-item {
    margin-top: 40px;
  }
}
