/* GENERAL */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body { padding: 0; margin: 0; }
html { font-family: 'Roboto', sans-serif; }
body { font-size: 1rem; background-color: #fff; color: #000; }
.page { overflow: hidden; min-height: 100vh;}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.button-wrapper { display: inline-flex; width: 100%; align-items: center; }
.button-wrapper.button-center { justify-content: center; }
.button-wrapper.button-left { justify-content: flex-start; }
.button-wrapper.button-right { justify-content: flex-end; }

/* TYPOGRAPHY */
p { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.h1 { font-size: 3rem; font-weight: 900; text-transform: uppercase; margin-top: 0; margin-bottom: 1rem; }
.h1-box { font-size: 2rem; font-weight: 600; text-transform: uppercase; padding: 5px 10px; display: inline-block; margin-top: 0; margin-bottom: 1.25rem; background-color: var(--b-black); color: var(--b-yellow); }
.section.black .h1-box { background-color: var(--b-yellow); color: var(--b-black) }
.section.yellow .h1-box { background-color: var(--b-black); color: var(--b-yellow); }
.lead-wrapper, .info-wrapper { width: 100%; }
.lead { margin-top: 0; margin-bottom: 0.3125rem; padding: 5px 10px; display: inline-block; text-transform: uppercase; font-size: 1.4rem; font-weight: 500; background-color: var(--b-yellow); color: var(--b-black); }
.section.black .lead { background-color: var(--b-white); color: var(--b-black) }
.section.yellow .lead { background-color: var(--b-black); color: var(--b-white); }
.info { margin: 0; padding: 5px 10px; font-weight: 900; font-size: 1rem; display: inline-block; }
.section.black .info { background-color: var(--b-yellow); color: var(--b-black); }
.section.yellow .info { background-color: var(--b-black); color: var(--b-yellow); }


/* =============== */
/* ==== THEME ==== */
/* =============== */

:root {
    --b-yellow: #fde100;
    --b-yellow-hover: #e4ca00;
    --b-black: #000;
    --b-black-hover: #191919;
    --b-white: #fff;
    --b-white-hover: #e5e5e5;
}

.solo-can { width: 70%; position: absolute; top: 40px; right: 0; }
.dosen-header-mobile {     
  width: 100%;
  max-width: 145px;
  right: 0;
  position: absolute;
  z-index: 1000;
  margin-top: -60px;
}

.logo-wrapper {
  background-color: #fff;
}
.logo { width: 80px; margin-top: 26px; position: absolute; left: 15px; top: 0; }

.spech-bubble { background-color: var(--b-yellow); color: var(--b-black); font-size: 2rem; }
.spech-left { position: relative; margin-left: 2rem; }
.spech-right { position: relative; margin-right: 2rem; }

.spech-left::after, .spech-right::after { content: ''; position: absolute; background: transparent; border-top: solid 15px transparent; border-bottom: solid 15px transparent; top: calc( 50% - 15px); }
.spech-left::after { border-left: solid 15px transparent;  border-right: solid 15px var(--b-yellow); right: 100%; }
.spech-right::after { border-left: solid 15px var(--b-yellow);  border-right: solid 15px transparent; left: 100%; }

.lang-wrapper {
  position: absolute;
  right: 13px;
  top: 20px;
}
.lang-wrapper .flag {
  min-width: 30px;
  max-height: 20px;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 0.2s ease-in-out;
}
.lang-wrapper a.active  {
  color: rgba(0,0,0,1);
}
.lang-wrapper .flag-href {
  margin: 0 5px;
  color: rgba(0,0,0,0.7);
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
}
.lang-wrapper .flag-href:hover {
  color: #fde100;
}
.lang-wrapper .pipe {
  display: none;
}

/* =============== */
/* ====== A ====== */
/* =============== */

a, .btn { transition: all 0.2s ease-in-out; cursor: pointer; }
a:focus { outline: none; }

/* =============== */
/* ===== BTN ===== */
/* =============== */

.btn {
  font-size: 15px;
  font-weight: 700;
  padding: 10px 30px;
  border: none;
  background-color: transparent;
  margin-top: 1rem;
}
/* =============== */
/* = BTN-PRIMARY = */
/* =============== */

.btn-primary {
  color: var(--b-white);
  background-color: var(--b-black);
}
.btn-primary:focus, .btn-primary:hover {
  color: var(--b-white-hover);
  background-color: var(--b-black-hover);
}

/* =============== */
/* = BTN-SECOND == */
/* =============== */

.btn-secondary {
  color: var(--b-black);
  background-color: var(--b-white);
}
.btn-secondary:focus, .btn-secondary:hover {
  color: var(--b-black-hover);
  background-color: var(--b-white-hover);
}

/* =============== */
/* == CONTAINER == */
/* =============== */

.section-container {
    width: calc( 100% - 30px );
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
  .lang-wrapper { top: 36px; }
  .logo { top: 10px; }
  .lang-wrapper .flag-href {
    display: inline;
  }
  .lang-wrapper .pipe {
    display: inline;
  }
  .section-container {
    max-width: 540px;
    padding-top: 0 !important;
  }
}
  
@media (min-width: 768px) {
    .section-container {
      max-width: 720px;
    }
}
  
@media (min-width: 992px) {
    .section-container {
      max-width: 960px;
    }
}
  
@media (min-width: 1200px) {
    .section-container {
      max-width: 1140px;
      
    }
}

/* =============== */
/* === SECTION === */
/* =============== */

.section { position: relative; }
.section-content { padding: 2rem 0; }
.section.yellow .section-wrapper {
    background-color: var(--b-yellow);
    color: var(--b-black);
}
.section.black .section-wrapper {
  background-color: var(--b-black);
  color: var(--b-white)
}
.section.white .section-wrapper {
  background-color: var(--b-white);
  color: var(--b-black)
}

/* =============== */
/* === BEFORE ==== */
/* =============== */

.section::before {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background-color: var(--b-black);
}
.section.yellow::before {
  background-color: var(--b-yellow);
}
.section.white::before {
  background-color: var(--b-white);
}
.section.black::before {
  background-color: var(--b-black);
}
.section.top-slope::before {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(180deg);
  background-size: cover;
  margin-bottom: -2px;
}
.footer.top-slope::before {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(180deg);
  background-size: cover;
  margin-bottom: -2px;
  background-image: url('/img/b-slope.svg');
  margin-bottom: -2px;
  margin-top: -148px;
}
.section.top-slope.yellow::before {
  background-image: url('/img/y-slope.svg');
}
.section.top-slope.black::before {
  background-image: url('/img/b-slope.svg');
}
.section.top-slope.white::before {
  background-image: url('/img/w-slope.svg');
}

/* =============== */
/* ==== AFTER ==== */
/* =============== */

.section::after, .header::after {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -2px;
  margin-bottom: -148px;
}
.header::after {
  height: 250px;
  margin-bottom: -248px;
}
.section.yellow::after {
  background-image: url('/img/y-slope.svg');
}
.section.black::after {
  background-image: url('/img/b-slope.1.svg');
}
.header::after {
  background-image: url('/img/b-slope.svg');
}
/* =============== */
/* ==== IMAGE ==== */
/* =============== */

.section.image { background-image: url(/img/header.jpg); background-repeat: no-repeat; background-position: center center; background-size: cover; }
.webp .section.image { background-image: url(/img/header.webp); }
.section.image .section-content { padding: calc(2rem + 150px) 0; }
.section.image.first .section-content { padding-top: calc(2rem + 250px); }
.section.image.last { margin-bottom: 0; }
.section.image { margin-bottom: -150px; }
.section.image::after, .section.image::before { display: none; }

.dosen-header {
  position: absolute;
  z-index: 1000;
  top: -40px;
  right: 0;
  width: 330px;
}

/* =============== */
/* === FOOTER ==== */
/* =============== */

.footer-wrapper { background-color: var(--b-black); color: #4D4D4D; }
.bottom-bar { padding: 2.5rem 0; display: flex; align-items: center; justify-content: space-between; }
.bottom-bar span { font-size: 14px; font-weight: 900; }
.nav-ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; }
.nav-ul a { color: var(--b-yellow); text-decoration: none; text-transform: uppercase; font-size: 14px; font-weight: 900; margin-left: 1.5rem; }
.nav-ul a:hover { color: var(--b-yellow-hover); }

/* =============== */
/* ==== GRID ===== */
/* =============== */

.grid-wrapper { display: flex; flex-wrap: wrap; }
.w-70 { width: 100%; position: relative; } 
.w-60 { width: 100%; position: relative; }
.w-50 { width: 100%; position: relative; }
.w-40 { width: 100%; position: relative; }
.w-30 { width: 100%; position: relative; } 

.hidden-mobile { display: none !important; }

/* =============== */
/* ==== MODAL ==== */
/* =============== */

.modal.show { visibility: visible; animation: 0.4s ease-in-out appear; }
.modal { visibility: hidden; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); }
.modal-wrapper { position: absolute; left: 0; width: 100%; height: 100%; top: 0; }
.close { cursor: pointer; z-index: 9999; }
.form-wrapper { margin: 20px; }
.modal-wrapper::after {
  display: block;
  width: 100%;
  height: 150px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  margin-top: -2px;
  background-image: url('/img/y-slope.svg');
}
.modal-wrapper::before {
  display: block;
  width: 100%;
  height: 150px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url('/img/y-slope.svg');
  background-size: contain;
  transform: rotate(180deg);
  margin-bottom: -2px;
}
.custom-wrapper { height: 100%; overflow: scroll; }

@keyframes fadeIn {
  from { top: 46%; opacity: 0; }
  to { top: 50%; opacity: 1; }
}
@keyframes appear {
  from { background-color: rgba(0,0,0,0); }
  to { background-color: rgba(0,0,0,0.4); }
}

/* =============== */
/* ===== FORM ==== */
/* =============== */
input, textarea { border: none; font-size: 1.25rem; background-color: transparent; border-bottom: 1px solid #000; width: 100%; }
*:focus { outline: 0; }
label { font-size: 1.25rem; font-weight: 700; display: block; }
.form-group { margin-bottom: 1rem; }

/* =============== */
/* === CANVAS ==== */
/* =============== */
#application-canvas { display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index:9998; }
#application-canvas.fill-mode-NONE { margin: auto; }
#application-canvas.fill-mode-KEEP_ASPECT { width: 100%; height: auto; margin: 0; }
#application-canvas.fill-mode-FILL_WINDOW { width: 50%; height: auto; margin: 0; position: absolute; right: 0px; left: auto; padding-top: calc(8rem + 100px) }
canvas:focus { outline: none; }

/* =============== */
/* == B-POINTS === */
/* =============== */

@media (min-width: 576px) {
  .spech-left::after { border-left: solid 30px transparent;  border-right: solid 30px var(--b-yellow); }
  .spech-right::after { border-left: solid 30px var(--b-yellow);  border-right: solid 30px transparent; }
}

@media (min-width: 768px) {
  .solo-can.schorle { top: -40px;}
  .solo-can { width: 140%; position: absolute; top: -100px; left: 20%; right: unset;}
  .section-content { padding: 3rem 0; }
  .section.image { margin-bottom: -250px; }
  .section.image .section-content { padding: calc(2rem + 250px) 0; }
  .section.top-slope::before { height: 250px; }
  .section::after, .header::after { height: 250px; margin-top: -2px; margin-bottom: -248px; }
  .section::before { height: 250px; }
  .hidden-mobile { display: block !important; }
  .only-mobile { display: none; }
  .footer.top-slope::before {
    height: 250px;
    margin-top: -248px;
  }
  .w-30 { width: 30%; }
  .w-40 { width: 40%; } 
  .w-50 { width: 50%; }
  .w-60 { width: 60%; }
  .w-70 { width: 70%; }
  .borussen-dosen { max-height: 515px; left: 0; position: relative; transform: unset; }
  .modal-wrapper { position: absolute; left: 15%; width: 70%; top: 50%; min-height: 515px; transform: translateY(-50%); height: unset; }
  .modal-wrapper::after, .modal-wrapper::before { content: '' }
  .custom-wrapper { height: unset; }
  .modal.show .modal-wrapper { animation: 0.4s ease-in-out fadeIn; }
  .close { bottom: 170px; right: 20px; margin-top: 0; position: absolute; cursor: pointer; z-index: 9999; }
}

@media (min-width: 992px) {
  .solo-can { width: 80%; position: absolute; top: 0px; right: 0; }
  .solo-can.spritz { top: 70px; }
  .solo-can.schorle { top: 120px; }
  .h1-box { font-size: 3rem; }
  .h1 { font-size: 3.625rem; }
  .lead { font-size: 2rem; }
  .info { font-size: 1.25rem; }
  .spech-bubble { font-size: 2.2rem; }
  .borussen-dosen { max-height: 515px; left: 50%; position: relative; transform: translateX( -50% ); }
  
}

@media (min-width: 1200px) {
  .solo-can.schorle, .solo-can.spritz { top: 40px; }
  .solo-can { width: 70%; position: absolute; top: 40px; right: 0; }
  .h1-box { font-size: 3.625rem; }
  input, textarea { width: 50%; }
}

input:-internal-autofill-previewed, input:-internal-autofill-selected, textarea:-internal-autofill-previewed, textarea:-internal-autofill-selected, select:-internal-autofill-previewed, select:-internal-autofill-selected {
  background-color: transparent !important;
}

.logo-2 {
  left: 120px;
  border-left: 2px solid black;
  padding-left: 20px;
}