:root {
    --primary-color: #0067d4;
    --dark-blue: #002f6b;
    --light-blue: #8caef8;
    --transparent-blue: #3561a462;
    --grey: #9ea3ae;
    --light-color: #f5f6fa;
    --dark-color: #0f0f0f;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--light-color);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
  }

  ::selection {
    background: var(--transparent-blue);
  }

  html, body {
    font-family: "Montserrat", sans-serif !important;
    overflow-x: hidden !important;
  }

  h1, h2, h3, h4, h5, h6 { 
    font-family: "Revalia", sans-serif !important;
  }

  p, span, button, a, input, textarea { 
    font-family: "Montserrat", sans-serif !important;
  }

  .w-10px {
    width: 10px !important;
  }

  .w-20px {
    width: 20px !important;
  }

  .w-30px {
    width: 30px !important;
  }

  .w-40px {
    width: 40px !important;
  }

  .w-50px {
    width: 50px !important;
  }

  .ml-10 {
    margin-left: 10px !important;
  }

  .ml-20 {
    margin-left: 20px !important;
  }

  .ml-30 {
    margin-left: 30px !important;
  }

  .ml-40 {
    margin-left: 40px !important;
  }

  .ml-50 {
    margin-left: 50px !important;
  }

  .mr-10 {
    margin-right: 10px !important;
  }

  .mr-20 {
    margin-right: 20px !important;
  }

  .mr-30 {
    margin-right: 30px !important;
  }

  .mr-40 {
    margin-right: 40px !important;
  }

  .mr-50 {
    margin-right: 50px !important;
  }

  .fs-10 {
    font-size: 10px !important;
  }
  .fs-24 {
    font-size: 24px !important;
  }

  .fs-20 {
    font-size: 20px !important;
  }

  .fs-30 {
    font-size: 30px !important;
  }

  .fs-40 {
    font-size: 40px !important;
  }

  .fs-50 {
    font-size: 50px !important;
  }

  .hero-page-home {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url(../images/fun/holger-veteran-schalke-reusch-handschuhe.webp) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
  }  

  .hero-page-trainer {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../images/holger-trainer/fussicamp/holger-goalkeeper-camp-mallorca.webp) no-repeat;
  background-size: cover;
  background-position: center;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero-page-off-the-pitch {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url(../images/padel/senior-world-padel-championship.webp) no-repeat;
    background-size: cover;
    background-position: top right;
    width: 100%;
    height: 100vh;
  }

  .hero-page-athlete {
    background: url(../images/holger-profi/holger-hält-ball-am-boden-overlay.png) no-repeat;
    background-size: cover;
    background-position: right;
    width: 100%;
    height: 100vh;
  }

  .text-revalia {
    font-family: "Revalia", sans-serif !important;
    font-weight: 400;
  }

  .with-border::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.image-container.profi-bild-home {
  background-image: url(../images/holger-profi/holger-hält-ball-am-boden.png);
  background-size: cover;
  background-position: right;
  width: 100%;
  height: 500px;
  position: relative;
}

.image-container.trainer-bild-home {
  background-image: url(../images/holger-trainer/fussicamp/holger-goalkeeper-camp-mallorca.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
  position: relative;
}

@media (max-width: 768px) {
  .image-container.profi-bild-home {
    height: 300px;
  }

  .image-container.trainer-bild-home {
    height: 300px;
  }

  .display-none-phone {
    display: none !important;
  }
}

.text-small {
  font-size: smaller !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 9999;
}

body.loaded #preloader {
  display: none;
}

.color-primary-blue {
  color: var(--primary-color) !important;
}
.color-black {
  color: var(--dark-color) !important;
}

.custom-img {
  width: 100%; 
  height: 350px !important;
  object-fit: cover;
}
.custom-img-top {
  object-position: top !important;
}
.custom-img-center {
  object-position: center !important;
}

@media (min-width: 768px) {
  .img-carousel-phone {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .img-gallery-laptop {
    display: none !important;
  }
}

.modal-content {
  border: none;
  border-radius: 0;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.custom-modal {
  padding: 8px;
}

.btn-close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1051;
}