@import url('fonts.css');
@import url('bootstrap-icons.min.css');

:root {
  --bs-primary: #0070B7;
  --bs-secondary: #222222; 
  --bs-tertiary: #FAC801;
}

html, body {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  height: 100%;
}

/* TYPOGRAPHY */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 300;
  color: var(--bs-secondary);
  margin: 0 0 30px 0;
}
h1, .h1 {
  color: var(--bs-primary);
}
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 30px 0;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  font-weight: 300;
  display: block;
  font-size: 65%;
  color: var(--bs-secondary);
  margin-top: 15px;
  margin-left: 30px;
}

p {
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 15px 0;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .15s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  display: block;
  font-size: 65%;
}

hr {
  margin: 45px 0;
  background-color: var(--bs-secondary);
  height: 2px;
  opacity: .05;
}

strong, b, .fw-bold {
  font-weight: 600;
}

/* UL */
ul li {
  margin-bottom: 15px;
}
ul li:last-child {
  margin-bottom: 0;
}

/* TEXT */
.text-primary {
  color: var(--bs-primary) !important;
}

/* BUTTONS */
.btn {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
  padding: 15px 20px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #00578d;
  color: var(--bs-white);
}

.btn-secondary {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #444;
  color: var(--bs-white);
}

/* IMAGES */
.img-content {
  box-shadow: 10px 10px 0 rgba(22,22,22,.5), 20px 20px 0 rgba(22,22,22,.5);
  width: calc(100% - 20px);
  max-width: calc(100% - 20px);
  display: block;
  margin: 0 20px 20px 0;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
  color: var(--bs-white);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary h5,
.bg-secondary h6 {
  color: var(--bs-white);
}

/* INFOLINE */
.infoline {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,.5);
  padding: 30px 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--bs-secondary);
  transition: all .25s;
}
.infoline .infoline-logo {
  max-width: 300px;
}
.infoline i {
  display: inline-block;
  width: 25px;
}
.infoline .btn-menu {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  width: 50px;
  height: 40px;
  cursor: pointer;
  margin-left: 30px;
}
.infoline .btn-menu span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--bs-secondary);
  transition: all .25s;
}
.infoline.fixed-top {
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  background-color: var(--bs-white);
  box-shadow: 0 0 15px rgba(22,22,22,.5);
}
.infoline .btn-menu:hover span:nth-child(2) {
  width: 40px;
}
.infoline .btn-menu:hover span:nth-child(3) {
  width: 30px;
}

/* SUBLINE */
.subline {
  display: flex;
  position: fixed;
  bottom: 68px;
  right: 0;
  z-index: 500;
  align-items: center;
  flex-direction: column;
}
.subline-item {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 15px 20px 15px 15px;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  margin-bottom: 5px;
  line-height: 1;
}
.subline-item:last-child {
  margin-bottom: 0;
}
.subline-item:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

/* HEADER */
.header {
  display: flex;
  position: relative;
  min-height: 100%;
  background-image: url('../img/header.jpg');
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}
.header .slick-text-slider {
  display: block;
  width: 100%;
  padding: 45px 30px;
  background-color: rgba(22,22,22,.5);
  color: var(--bs-white);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 45px;
}
.header .slick-text-item {
  display: block;
}
.header .slick-text-item strong {
  font-size: 38px;
}
.header  .slick-text {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.header2 {
  display: block;
  position: relative;
  min-height: 400px;
  background-image: url('../img/header.jpg');
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}

/* MENU */
#menu {
  z-index: 2000;
  border: none;
  padding: 15px;
  background-color: var(--bs-primary);
  background-image: url('../img/menu_bg.png');
  background-position: bottom 45px center;
  background-repeat: no-repeat;
  background-size: 650px;
  width: 100%;
  max-width: 650px;
}
#menu .offcanvas-title {
  font-weight: 600;
  color: var(--bs-white);
}
#menu .offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
#menu .nav-link {
  padding: 0 0 15px 0;
  font-size: 25px;
  color: var(--bs-white);
  transition: all .25s;
}
#menu .nav-link:hover,
#menu .nav-link:focus,
#menu .nav-link.active {
  color: var(--bs-white);
  opacity: .5;
  padding-left: 15px;
}

/* SECTION */
.section {
  display: block;
  position: relative;
  padding: 75px 0;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  padding: 60px 0;
  font-size: 16px;
  background-image: url('../img/footer_bg2.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 450px;
  margin-top: -10px;
}
.footer h3 {
  color: var(--bs-white);
  margin-bottom: 15px;
}
.footer a {
  color: var(--bs-white);
}
.footer a:hover {
  color: var(--bs-white);
  opacity: .5;
}
.footer i {
  display: inline-block;
  width: 25px;
}
.footer hr {
  margin: 15px 0;
}
.footer .footer-partner {
  max-height: 60px;
}
.footer .footer-partner2 {
  max-height: 120px;
}

/* OFFCANVAS */
.offcanvas-backdrop {
  z-index: 1900;
  opacity: 1 !important;
  background-color: rgba(22,22,22,.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* CCM19 */
.ccm-settings-summoner {
  left: auto !important;
  right: 0;
  bottom: 15px !important;
  width: 53px;
  height: 48.25px;
  background-color: var(--bs-secondary) !important;
  box-shadow: none !important;
}
.ccm-settings-summoner--link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}
.ccm-settings-summoner--icon {
  background-color: var(--bs-secondary) !important;
  width: 40px;
  height: 40px;
  box-shadow: none !important;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-control,
.form-select {
  border-radius: 0;
  border: none;
  background-color: #eee;
  color: var(--bs-secondary);
}
.form-control:focus,
.form-select:focus {
  background-color: #ddd;
  color: var(--bs-secondary);
  box-shadow: none;
}

.has-error .form-control,
.has-error .form-select {
  border-bottom: 1px solid var(--bs-danger);
}
.has-error .form-label,
.has-error .form-check-label,
.has-error .help-block {
  color: var(--bs-danger);
}

#danke {
  display: none;
}

/* CARD */
.card {
  display: block;
  border-radius: 0;
  border: none;
  margin: 12.5px 0;
}
.card-body {
  padding: 30px;
}
.card-title {
  font-size: 26px;
}

.card-bg-img {
  display: block;
  position: relative;
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-img-overlay {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  border-radius: 0;
  line-height: 1;
  transition: all .5s;
}
a.card-bg-img:hover .card-img-overlay,
a.card-bg-img2:hover .card-img-overlay {
  right: 20px;
  bottom: 20px;
  box-shadow: 10px 10px 0 rgba(22,22,22,.5), 20px 20px 0 rgba(22,22,22,.5);
}
.card-img-overlay .card-title {
  margin: 0;
}

.card-bg-img2 {
  display: block;
  position: relative;
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-bg-img2 .card-img-overlay .card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* MODAL */
.modal-content {
  border-radius: 0;
  border: none;
}
.modal-header,
.modal-body,
.modal-footer {
  padding: 30px;
  border: none;
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.75;
}

.modal-special .modal-content {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.modal-special .modal-header {
  padding: 0;
  margin-bottom: 30px;
}
.modal-special .modal-title {
  color: var(--bs-white);
  margin: 0;
  font-size: 30px;
}
.modal-special .modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.modal-special .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-size: contain;
  width: 30px;
  height: 30px;
  padding: 0;
}

/* MAP */
#map {
  border-top: 15px solid var(--bs-secondary);
}

/* ACCORDION */
.accordion-item {
  border-radius: 0;
  background-color: #f8f8f8;
  margin-bottom: 5px;
  border: none;
}
.accordion-header {
  margin: 0;
}
.accordion-button {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  font-size: 22px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

/* MOBIL */
@media (max-width: 1399.98px) {}
@media (max-width: 1199.98px) {}
@media (max-width: 991.98px) {
  /* INFOLINE */
  .infoline {
    padding: 15px 0;
  }
  .infoline .infoline-logo {
    max-width: 200px;
  }
  .infoline .btn-menu {
    margin-left: 0;
    width: 35px;
    height: 30px;
  }
  .infoline .btn-menu:hover span:nth-child(2) {
    width: 30px;
  }
  .infoline .btn-menu:hover span:nth-child(3) {
    width: 25px;
  }

  /* CARD */
  .card-bg-img2 {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  /* SUBLINE */
  .subline {
    display: flex;
  }
}
@media (max-width: 575.98px) {
  h1 small, .h1 small,
  h2 small, .h2 small,
  h3 small, .h3 small,
  h4 small, .h4 small,
  h5 small, .h5 small,
  h6 small, .h6 small {
    margin-left: 0;
  }

  /* HEADER */
  .header .slick-text-item strong {
    font-size: 22px;
  }
  .header  .slick-text {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }

  /* FOOTER */
  .footer {
    background-size: 350px;
  }

  /* CARD */
  .card-bg-img2 {
    min-height: 200px;
  }
}