:root {
  --primary: #001489;
  --secondary: #636363;
  --tertiary: #99D6E9;
  --accent: #f5f5f5;
  --accent2: #FFC7CE;
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v47-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v47-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v47-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Tomarik";
  src: local(""), url("../fonts/font.woff2") format("woff2"), url("../fonts/font.woff") format("woff");
  font-weight: 400;
}
.tomarik {
  font-family: Tomarik, sans-serif;
}

body {
  margin: 0 0 0 0;
  padding: 58px 0 0 0;
  font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  color: var(--primary);
  font-size: 1.125rem;
  line-height: 125%;
}

body.offline {
  padding: 32px 0 0 0;
}

.smaller {
  font-size: 1rem;
  line-height: 120%;
}

.bigger {
  font-size: 1.125rem;
  line-height: 120%;
}

@media (min-width: 992px) {
  body {
    font-size: 1.5rem;
  }
  .smaller {
    font-size: 1.125rem;
  }
  .bigger {
    font-size: 1.875rem;
  }
}
section a {
  color: var(--primary);
  text-decoration: underline;
}

.text-grey {
  color: var(--secondary);
}

.text-darkblue {
  color: var(--primary);
}

.text-white {
  color: #fff;
}

strong {
  font-weight: 700;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.relative {
  position: relative;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: "Tomarik", sans-serif;
  color: var(--primary);
  font-size: 1.5625rem;
}

h3 {
  font-family: "Tomarik", sans-serif;
  color: var(--primary);
  font-size: 1.125rem;
}

.container-text {
  color: var(--secondary);
}

.curve {
  position: relative;
  margin-bottom: 3.75rem;
}

.curve::after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent url(../img/curve.svg) center center no-repeat;
}

.curve-white:after {
  background-image: url(../img/curve-white.svg);
}

.footer-second-section {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .curve {
    margin-bottom: 60px;
  }
  .curve::after {
    bottom: -30px;
    height: 20px;
    background-size: 100px;
  }
}
@media (min-width: 992px) {
  h1, h2, .h1, .h2 {
    font-size: 3.125rem;
  }
  h3, .h3, body.offline-post h2 {
    font-size: 2.5rem;
  }
}
.container-sm {
  max-width: 43.75rem;
}

.container-md {
  max-width: 75rem;
}

.container-xl {
  max-width: 91.25rem;
}

.container-fluid {
  max-width: 120rem;
  padding: 0;
}

.container-60 {
  padding: 0 4%;
}

@media (min-width: 992px) {
  .container-60 {
    max-width: 60%;
    margin: 0 auto 0 23%;
    padding: 0;
  }
}
.bg-dirty {
  background: url(../img/bg_dirty.jpg);
}

.bg-blue {
  background-color: var(--primary);
}

.bg-darkblue {
  background: url(../img/bg_blue.jpg) -5px -5px;
}

.bg-blue-header {
  background: #0090D4;
}

.bg-lightblue {
  background: url(../img/bg_lightblue.jpg);
}

.bg-grey {
  background-color: var(--accent);
}

.navbar {
  max-width: 1920px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .bg-blue-header {
    background: url(../img/bg-blue-header.png) center 0 no-repeat;
    background-size: cover;
    height: 152px;
  }
  .number-display {
    font-size: 3.125rem;
  }
}
.text-container,
.post-offline-container,
.pre-offline-container {
  position: absolute;
  left: 10%;
  top: 12.5%;
  width: 80%;
  z-index: 10;
}

.text-container {
  left: 3%;
  width: 80%;
}

.post-offline-container {
  top: 16%;
}

@media (max-width: 640px) {
  .pre-offline-container.text-center,
  .post-offline-container.text-center {
    text-align: left !important;
  }
}
@media (min-width: 641px) {
  .pre-offline-container {
    left: 3%;
    top: 14%;
    width: 30%;
  }
  .post-offline-container {
    left: 3%;
    top: 14%;
    width: 47%;
  }
  .text-container {
    top: 24%;
    width: 45%;
  }
}
.banner-container {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  white-space: nowrap;
}

.banner-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (min-width: 500px) and (max-width: 1199px) {
  .container-prize {
    max-width: 76%;
  }
}
@media (min-width: 1200px) {
  .post-offline-container,
  .pre-offline-container {
    top: 22%;
  }
}
@media (min-width: 400px) and (max-width: 640px) {
  body.offline picture img {
    clip-path: inset(10% 0 0 0);
    margin-top: -55%;
  }
}
.collapsing {
  -webkit-transition: none;
  transition: none;
  display: none;
}

#mobile-logo svg {
  width: 120px;
}

#mobile-logo {
  padding: 14px 0;
}

nav a {
  color: #fff;
  font-family: "Tomarik", sans-serif;
  font-size: 1.375rem;
}

.navbar .social svg {
  width: 40px;
}
.navbar .social svg path {
  fill: #fff;
}

.logo.nav-item {
  width: 280px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='24' viewBox='0 0 30 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5062 21.4012H0.67926V24H22.5062V21.4012Z' fill='white'/%3E%3Cpath d='M11.0449 14.2544H0.67926V16.8532H11.0449V14.2544Z' fill='white'/%3E%3Cpath d='M13.3372 6.67894H0.67926V9.27774H13.3372V6.67894Z' fill='white'/%3E%3Cpath d='M29.8491 15.7488C29.8113 12.4873 27.8717 9.68056 25.1386 8.42013C25.9698 7.52355 26.4862 6.3151 26.4862 4.97672C26.4862 2.23497 24.3199 0 21.6624 0C19.0048 0 16.8385 2.23497 16.8385 4.97672C16.8385 6.41905 17.4431 7.71846 18.4003 8.62804C15.8939 9.96642 14.1558 12.6432 14.118 15.7358V17.0482H29.8617V15.7358L29.8491 15.7488ZM21.6624 2.6118C22.9344 2.6118 23.9672 3.67731 23.9672 4.98971C23.9672 6.30211 22.9344 7.36762 21.6624 7.36762C20.3903 7.36762 19.3575 6.30211 19.3575 4.98971C19.3575 3.67731 20.3903 2.6118 21.6624 2.6118ZM16.8133 14.4754C17.4179 12.0974 19.5212 10.3433 21.9898 10.3433C24.4584 10.3433 26.5618 12.1104 27.1663 14.4754H16.8133Z' fill='white'/%3E%3C/svg%3E");
  width: 30px;
  height: 24px;
}

body.nav-opened .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 20L0 18L8 10L0 2L2 0L10 8L18 0L20 2L12 10L20 18L18 20L10 12L2 20Z' fill='white'/%3E%3C/svg%3E");
}

.navbar-text li {
  padding: 0 0.25em;
}

.footer-nav li {
  padding: 0 0.75em;
}

.social-list {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
}

.social-list li {
  padding: 0 0.5em;
}

.social-list li svg {
  width: 40px;
  height: auto;
}

.footer-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.footer-nav a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.25rem;
}

.navbar-socials {
  margin: 2em 0 1em 0;
}

.navbar-socials li {
  padding: 0 0.5em;
}

@media (max-width: 1199px) {
  body.nav-opened .navbar {
    display: block;
    height: 100%;
  }
  body.nav-opened .nav-bg {
    width: 100%;
    height: 100vh;
    background: var(--primary);
  }
  body.nav-opened {
    overflow-y: hidden;
  }
  body.nav-opened .navbar-text {
    display: block !important;
    width: 100%;
  }
  body.nav-opened a.nav-link {
    text-align: center;
    display: block;
    padding: 15px 0;
  }
  body.nav-opened a.nav-link:not(.last) {
    border-bottom: 1px solid #fff;
  }
  body.nav-opened .navbar-nav {
    margin-top: 30px;
  }
  .navbar-nav .social {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .navbar-nav li {
    padding: 0 10px;
  }
  .navbar-nav a {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .social-list li svg {
    width: 70px;
  }
}
@media (min-width: 1200px) {
  .logo.nav-item {
    position: relative;
  }
  .logo.nav-item svg {
    position: absolute;
    top: 49px;
  }
  #navbarSupportedContent {
    margin-top: -48px;
  }
}
@media (min-width: 1300px) {
  .navbar-nav li {
    padding: 0 15px;
  }
  .navbar-nav li.social {
    padding: 0 7px;
  }
}
@media (min-width: 1400px) {
  .navbar-nav li {
    padding: 0 30px;
  }
}
.btn-primary {
  border-radius: 100px;
  background: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
  max-width: 400px;
}

.btn-primary:hover {
  color: var(--primary);
  background-color: #fff;
  border-color: #fff;
}

#teilnahmeform #btnsubmit:hover {
  background-color: var(--tertiary);
  color: #fff;
}

#fileuploadwrapper {
  cursor: pointer;
  background-color: var(--primary);
  color: #fff;
  height: 2.625rem;
  display: block;
  border-radius: 20px;
}

.fileUpload {
  padding: 0;
  position: relative;
  cursor: pointer;
}

#lblbon {
  width: 100%;
  min-width: 280px;
  height: 100%;
  cursor: pointer;
  line-height: 2.625rem;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  background-size: 18px;
}

.fileUpload > input {
  width: 100%;
  height: 2.625rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
}

@media (min-width: 992px) {
  .btn-primary {
    font-size: 2rem;
  }
  .fileUpload > input,
  #fileuploadwrapper {
    height: 4.375rem;
    line-height: 4.375rem;
  }
  #lblbon {
    background-size: 26px;
    font-size: 1.5rem;
  }
}
.slide {
  border-radius: 24px;
  background: #FFF;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.25);
  margin: 20px;
  padding: 0px 15px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
}

.slick-prev, .slick-next {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'%3E%3Cpath d='M13 17.4375L0 3.65372L3.03333 0.4375L13 11.0051L22.9667 0.4375L26 3.65372L13 17.4375Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}

.slick-prev {
  transform: rotate(90deg);
}

.slick-next {
  transform: rotate(-90deg);
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'%3E%3Cpath d='M13 17.4375L0 3.65372L3.03333 0.4375L13 11.0051L22.9667 0.4375L26 3.65372L13 17.4375Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}

.slick-dots li {
  width: 12px;
  height: 12px;
}

.slick-dots li button {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background-color: #fff;
}

.slick-dots li button::before {
  content: "";
}

.container-form {
  color: var(--secondary);
}

label {
  margin-bottom: 0.4em;
  font-size: 1rem;
}

select.form-control,
input[type=email],
input[type=text] {
  border-radius: 10px;
  border: 2px solid var(--secondary);
  height: 2.5rem;
}

.form-control {
  font-size: 1rem;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'%3E%3Cpath d='M13 17.4375L0 3.65372L3.03333 0.4375L13 11.0051L22.9667 0.4375L26 3.65372L13 17.4375Z' fill='%23001489'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 96% center;
  appearance: none;
  background-size: 18px;
}

.fehlerausgabe {
  color: red;
  font-size: 0.9375rem;
}

.has-error,
.has-error .custom-control-label a {
  color: red;
}

.has-error select.form-control,
.has-error input[type=email],
.has-error input[type=text] {
  border-color: red;
}

.has-error #lblbon {
  color: #fff;
}

#allgemeine-fehlermeldung {
  display: none;
}

.formrow {
  margin-bottom: 0.6em;
}

@media (max-width: 991px) {
  .fake-formrow {
    margin-bottom: 0.6em;
  }
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--secondary);
  background-color: var(--primary);
  outline: none;
  box-shadow: none;
}

.custom-control-input:focus ~ .custom-control-label::before,
.custom-control-input ~ .custom-control-label::before {
  box-shadow: none;
  outline: none;
}

.custom-control-label::before {
  border-color: var(--vil-red);
}

.custom-control-label::before,
.custom-control-label::after,
.custom-control-input {
  width: 1.75rem;
  height: 1.75rem;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 8px;
  border-width: 2px;
}

.custom-radio label,
.custom-checkbox label {
  padding-left: 1rem;
}

.custom-radio label {
  padding-top: 0.25rem;
}

input[type=text]:focus {
  box-shadow: none;
  border: 2px solid var(--secondary);
}

.custom-control {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

@media (min-width: 992px) {
  select.form-control,
  input[type=email],
  input[type=text] {
    height: 3.75rem;
    border-radius: 20px;
  }
  .form-control {
    font-size: 1.25rem;
  }
  .fehlerausgabe {
    font-size: 1.125rem;
  }
  .custom-control-label::before,
  .custom-control-label::after,
  .custom-control-input {
    width: 2.5rem;
    height: 2.5rem;
  }
  select.form-control {
    background-size: 26px;
  }
  label {
    font-size: 1.5rem;
  }
  .custom-radio label,
  .custom-checkbox label {
    padding-left: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .modal-body {
    padding: 1em 3em 3em 3em;
  }
}
.modal-header {
  padding: 0;
  border-bottom: none;
}

.modal-header .close {
  font-size: 4rem;
  color: #fff;
  opacity: 1;
  margin-right: -0.5rem;
  margin-bottom: -2rem;
  font-weight: normal;
}

.modal-dialog {
  max-width: 800px;
}

body.offline .navbar-text {
  width: 100%;
}

body.offline .navbar-text ul {
  justify-content: flex-end !important;
}

#offline-logo {
  width: 120px;
  margin: 8px 0;
}

@media (min-width: 992px) {
  #offline-socials {
    position: absolute;
    right: 16.5%;
    top: 40px;
  }
  #offline-socials li {
    margin: 0 5px;
  }
}
@media (min-width: 1200px) {
  #offline-logo {
    width: 340px;
    left: calc(50% - 170px);
    position: absolute;
    top: 80px;
  }
}
#text-one,
#text-two {
  background: #f5f5f5;
  width: 100%;
  font-size: 1.125rem;
}

@media (min-width: 1400px) {
  #text-one,
  #text-two {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    background: transparent;
  }
  #text-two {
    left: auto;
    right: 0;
    width: 45%;
  }
}
@media (min-width: 992px) {
  .col-no-1 {
    padding-top: 116px;
  }
  .col-no-2 {
    padding-top: 168px;
  }
}
.no-padding {
  padding: 0;
}

#modal-link {
  line-height: 135%;
  cursor: pointer;
}

@media (min-width: 641px) {
  .hide-on-md {
    display: none;
  }
}
.container-text hr {
  margin-top: 2em;
  margin-bottom: 2em;
}

.container-text ul {
  list-style-type: circle;
  margin: 0 0 20px 20px;
}

@media (min-width: 400px) and (max-width: 1199px) {
  .prize-section .col-12 {
    padding-left: 15%;
    padding-right: 15%;
  }
}

/*# sourceMappingURL=style.css.map */
