@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
}

:root {
  --primary-text-color: #000;
  --secondary-text-color: #fff;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.mt-200 {
  margin-top: 20rem;
}

.mt-150 {
  margin-top: 15rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mt-75 {
  margin-top: 7.5rem;
}

.mt-50 {
  margin-top: 5rem;
}

.title {
  font-size: 7.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 7rem;
}

.subtitle {
  font-size: 3.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: -0.025rem;
}
.subtitle-special {
  color: #2ca778;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.sold-out {
  position: relative;
}
.sold-out::before {
  content: "ausgewählt";
  position: absolute;
  inset: 0;
  background-color: red;
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookies-message {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 100000000;
  bottom: 0;
  width: 100%;
  left: 0;
  display: none;
}

.cookies-message div {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  padding: 30px 75px 20px 15px;
}

.cookies-message p {
  color: white !important;
  margin-bottom: 10px;
}

.cookies-message p a {
  text-decoration: underline;
  text-transform: uppercase;
  transition: all 0.2s;
  color: white !important;
}

.cookies-message p a:hover {
  opacity: 0.75;
}
.txt {
  font-size: 2rem;
  font-weight: 300;
  max-width: 95%;
  font-family: "Montserrat", sans-serif;
}
.txt b {
  font-weight: bold;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  animation: fadeToBottom 0.8s ease;
  background-color: #000;
}

.default__select {
  width: 100%;
  height: 5rem;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  padding: 0 1.5rem;
  color: #b5b9ba;
  outline: none;
  appearance: none;
  position: relative;
  background: url("../images/select.svg") 95% center no-repeat #fff;
}

.default__input {
  width: 100%;
  height: 5rem;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  padding: 0 1.5rem;
  color: #b5b9ba;
  outline: none;
}

.default__textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  padding: 0 1.5rem;
  color: #b5b9ba;
  outline: none;
}

.default__textarea {
  width: 100%;
  resize: none;
  outline: none;
}

.line {
  background-color: #bdcdce;
  width: 100%;
  display: block;
  height: 2px;
  margin: 3.5rem 0;
}

@keyframes fadeToBottom {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
.btn {
  padding: 1.5rem 2.5rem;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05rem;
  background-color: transparent;
}
.btn:focus,
.btn:hover,
.btn:active {
  box-shadow: none !important;
  border-color: transparent;
}
.btn-primary {
  border: 1px solid #000;
  color: #000;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #000;
  color: #fff;
}
.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #fff;
  color: #000;
}
.btn-tertiary {
  background-color: #000;
  border: 1px solid transparent;
  color: #fff;
}
.btn-tertiary:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.btn-card {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
}
.btn-home {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 3px 2rem;
  text-decoration: none;
}
.btn-card:hover, .btn-home:hover {
  background-color: #000;
  color: #fff;
}
.btn span {
  margin-left: 2rem;
}

.navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
}
.navbar .container {
  align-items: end;
}
.navbar-collapse {
  justify-content: end;
}
.navbar-collapse ul li:not(:last-child) {
  margin-right: 2.5rem;
}
.navbar-collapse ul li a {
  color: var(--secondary-text-color);
  padding-bottom: 1.2rem;
  font-size: 1.8rem;
}
.navbar-collapse ul li a.active,
.navbar-collapse ul li:hover a {
  text-decoration: underline;
}
.navbar-collapse ul li a:focus,
.navbar-collapse ul li a:hover {
  color: var(--secondary-text-color);
}

.hero-section {
  height: 1062px;
}
.hero-section h1 {
  font-size: 12.5rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.hero-section h1 span {
  font-size: 4.5rem;
  display: block;
  text-transform: uppercase;
}
.hero-section .container > .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-section .container > .container .row > a {
  border: 1px solid #fff;
  padding: 2.5rem 3.5rem;
  transition: 0.6s;
  text-decoration: unset;
}
.hero-section .container > .container .row > a h3 {
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 0.025rem;
  margin-top: 2rem;
}
.hero-section .container > .container .row > a p {
  font-size: 1.8rem;
  color: var(--secondary-text-color);
}
.hero-section .container > .container .row > a:nth-child(1) {
  background-color: rgba(115, 188, 0, 0.5);
}
.hero-section .container > .container .row > a:nth-child(1):hover {
  background-color: rgb(115, 188, 0);
}
.hero-section .container > .container .row > a:nth-child(2) {
  background-color: rgba(0, 140, 209, 0.5);
}
.hero-section .container > .container .row > a:nth-child(2):hover {
  background-color: rgb(0, 140, 209);
}
.hero-section .container > .container .row > a:nth-child(3) {
  background-color: rgba(136, 237, 230, 0.5);
}
.hero-section .container > .container .row > a:nth-child(3):hover {
  background-color: rgb(136, 237, 230);
}
.hero-section .container > .container .row > a:nth-child(4) {
  background-color: rgba(64, 100, 203, 0.5);
}
.hero-section .container > .container .row > a:nth-child(4):hover {
  background-color: rgb(64, 100, 203);
}

.in-short .wrapper {
  padding: 9rem 8.5rem;
}
.in-short .wrapper .btn {
  margin-top: 7.5rem;
}

.sponsors {
  padding-bottom: 10rem;
}
.sponsors .row {
  row-gap: 3rem;
}
.sponsors .row .col-lg-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 124px;
}

.invitation .wrapper {
  position: relative;
  height: 892px;
  text-align: center;
}
.invitation .wrapper h4 {
  font-size: 2rem;
}
.invitation .wrapper h2 {
  font-size: 7.2rem;
  font-weight: bold;
  margin: 3rem 0 5rem 0;
}
.invitation .wrapper h2 span {
  display: block;
  font-size: 5rem;
}
.invitation .wrapper div:not(.bg) {
  color: var(--secondary-text-color);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-us {
  padding-bottom: 10rem;
}
.about-us img {
  display: block;
  margin: 0 auto;
}

footer .footer {
  background-color: #2f3644;
  padding: 7rem 0;
  color: var(--secondary-text-color);
}
footer .footer .container {
  position: relative;
}
footer .footer img[alt="wa"] {
  position: absolute;
  bottom: -15%;
  right: 2.5%;
}
footer .footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer .footer button {
  display: block;
  background-color: transparent;
  color: #fff;
  border: none;
}
footer .footer h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
footer .footer p {
  margin-bottom: 0;
}
footer .footer a {
  color: #fff;
}
footer .footer a:focus,
footer .footer a:hover {
  color: #fff;
}
footer .lastline {
  background-color: #2b313e;
  padding: 3rem 0;
}
footer .lastline .row {
  display: flex;
  justify-content: space-between;
}
footer .lastline p {
  color: #fff;
}
footer .lastline ul {
  display: flex;
  justify-content: space-around;
  padding-left: 0;
  list-style: none;
}
footer .lastline .toTop {
  cursor: pointer;
}

.modal {
  z-index: 5000;
}

.football {
  height: 75rem;
  position: relative;
}
.football .bg {
  height: inherit;
}
.football img[alt="sport"] {
  position: absolute;
  right: 25%;
  bottom: -25%;
}
.football h1 {
  font-size: 9rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.football h1 span {
  font-size: 3.5rem;
  display: block;
  text-transform: uppercase;
}

a.ab {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  display: block;
}

img.arrow {
  position: absolute;
  bottom: 0;
}

.field-info {
  padding: 10rem 0;
}
.field-info .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.field-info .row:has(.wrapper) {
  row-gap: 3rem;
}
.field-info .row:has(.wrapper) .wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.field-info table {
  width: 100%;
  max-width: 100%;
  font-family: "Montseratt", sans-serif;
}
.field-info table tr {
  border: 1px solid #515154;
  border-right: none;
  border-left: none;
}
.field-info table td {
  font-weight: 300;
}

.booking {
  margin-bottom: 15rem;
}

.alert-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 15rem;
  border: 1px solid #000;
  padding: 2.5rem 5rem;
}

.race__about {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
}

.slick-dots {
  bottom: -5rem;
}

.slick-dots li.slick-active button:before {
  color: #000;
}

.slick-dots li button:before {
  color: #aeed4b;
  opacity: 1;
  font-size: 1.2rem;
}

.invitation2 .wrapper {
  height: 970px;
  text-align: left;
}
.invitation2 .wrapper div:not(.bg) {
  top: unset;
  bottom: -10%;
  left: 25%;
}

.padel {
  position: relative;
  height: 863px;
}
.padel h1 {
  font-size: 9rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.padel h1 span {
  font-size: 3.5rem;
  display: block;
  text-transform: uppercase;
}
.padel img.arrow {
  bottom: 19%;
}
.padel a.ab {
  top: 65%;
}

.about-padel h2 {
  margin-bottom: 5rem;
}
.about-padel .row {
  row-gap: 3rem;
}
.about-padel .col-lg-6 {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.invitation3 div {
  text-align: left;
}
.invitation3 .wrapper div:not(.bg) {
  left: 40%;
  top: 70%;
}
.invitation3 .wrapper div:not(.bg) h2 {
  font-size: 10rem;
  line-height: 0.9;
}
.invitation3 .wrapper div:not(.bg) h2 span {
  font-size: 7rem;
}

.birthday {
  height: 750px;
  position: relative;
}
.birthday h1 {
  font-size: 9rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.birthday h1 span {
  font-size: 3.5rem;
  display: block;
  text-transform: uppercase;
}

.make-an-appointment .card {
  font-family: "Montseratt", sans-serif;
  min-height: 146rem;
  background-color: #e0ebec;
}
.make-an-appointment .card__header {
  padding: 1rem 2rem;
  background-color: #000;
  color: var(--secondary-text-color);
}
.make-an-appointment .card__header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
}
.make-an-appointment .card__header h3 span {
  margin-right: 2rem;
}
.make-an-appointment .card__body {
  padding: 1.5rem;
  min-height: 925px;
}
.make-an-appointment .card__body .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.make-an-appointment .col-lg-4:nth-child(2) .card__body .row:nth-child(2) .wrapper   {
  flex-direction: column;
  align-items: start;
}
.make-an-appointment .col-lg-4:nth-child(2) .card__body .row:nth-child(2) .wrapper  p {
  font-size: 1.2rem;
}
.jcy {
  display: flex;
  align-items: center;
}
.make-an-appointment .card__body .wrapper a {
  color: #000;
}
.make-an-appointment .card__body div :where(.col-lg-8) {
  display: flex;
  align-items: center;
}
.make-an-appointment .card__body > *:not(#datepicker) {
  /* padding-left: 1.5rem; */
}
.make-an-appointment .card__body h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 1.8rem;
}
.ui-datepicker th span {
  font-size: 1.4rem;
}
.ui-state-default, .ui-widget-content .ui-state-default {
  font-size: 1.4rem;
}

.make-an-appointment .card__body .important {
  color: #e30005;
}
.make-an-appointment .card__body h5 {
  font-size: 2rem;
  font-weight: bold;
  background-color: #fff;
  padding: 0.5rem;
  text-align: center;
}
.make-an-appointment .card__body label {
  font-size: 1.4rem;
}
.make-an-appointment .card__body p {
  font-size: 1.4rem;
  display: block;
}
.make-an-appointment .card__body input[type="checkbox"] {
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
}

.ui-widget.ui-widget-content {
  border: none;
  width: 100%;
  background-color: transparent;
}

.ui-datepicker .ui-datepicker-header {
  background-color: transparent;
  border: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background-color: unset;
  border: none;
  right: 1px;
  top: 1px;
}

.ui-datepicker th span {
  text-transform: uppercase;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  padding-left: 3px;
  padding-top: 5px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  background-color: #e30005 !important;
  border-color: transparent;
  color: #fff !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  color: #fff;
  background-color: #000;
}

.invitation4 .wrapper {
  text-align: left;
}
.invitation4 .wrapper div:not(.bg) {
  left: 40%;
}
.invitation4 .wrapper h2 {
  font-size: 15rem;
  font-weight: bold;
  line-height: 0.9;
}
.invitation4 .wrapper h2 span {
  font-size: 8rem;
}

.camp-hero {
  height: 750px;
  position: relative;
}
.camp-hero img[alt="child"] {
  position: absolute;
  right: 25%;
  bottom: -20%;
}
.camp-hero h1 {
  font-size: 9rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.camp-hero h1 span {
  font-size: 3.5rem;
  display: block;
  text-transform: uppercase;
}

.camp ul {
  list-style-type: "-  ";
}
.camp h5 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  font-family: "Montseratt", sans-serif;
  margin-top: 5rem;
}
.camp .col-lg-6:last-of-type p.txt {
  font-weight: 400;
}
.camp .alert-box {
  align-items: start;
}

.camp-registration .row {
  row-gap: 5rem;
}
.camp-registration .register-card {
  text-align: center;
  background-color: #e0ebec;
  padding: 2.5rem 0;
  border-radius: 1rem;
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}
.camp-registration .register-card h3 {
  font-size: 3rem;
  letter-spacing: 0.25rem;
  margin-bottom: 2rem;
}
.camp-registration .register-card h2 {
  color: #fff;
  font-size: 6rem;
  font-weight: bold;
  background: linear-gradient(to right, #02ccf7 50%, #222b7e);
  padding: 1.5rem 0;
}
.camp-registration .register-card p {
  max-width: 75%;
  margin: 2rem auto 5rem auto;
}

.academy-registration .subtitle {
  text-transform: uppercase;
}
.academy-registration .register-card {
  min-height: 440px;
}
.academy-registration .register-card h3 {
  font-size: 3.6rem;
  font-weight: bold;
  text-transform: uppercase;
}
.academy-registration .register-card h2 {
  font-size: 6rem;
  background: linear-gradient(to right, #73bc00, #44c1ce, #27329b);
}
.academy-registration .register-card h2 span {
  font-size: 3rem;
}

.bistro-hero {
  position: relative;
  height: 750px;
}
.bistro-hero h1 {
  font-size: 9rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  line-height: 1;
}
.bistro-hero h1 span {
  font-size: 3.5rem;
  display: block;
  text-transform: uppercase;
}

.kontakt h5 {
  font-size: 2.2rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin: 5rem 0 3rem 0;
}
.kontakt p.txt a {
  color: #000;
}
.kontakt label:first-of-type {
  margin-bottom: 1.5rem;
}
.kontakt label:not(:first-of-type) {
  margin: 1.5rem 0;
}

.camp-modal .modal-dialog {
  min-width: 1000px;
}
.camp-modal .modal-dialog .row {
  margin-bottom: 10px;
}
.camp-modal .modal-dialog input:not([type="checkbox"], [type="radio"]),
.camp-modal .modal-dialog select {
  width: 100%;
  height: 4rem;
  margin-top: 0.5rem;
  background-color: rgba(66, 87, 134, 0.2);
  border: 1px solid transparent;
  outline: none;
  padding-left: 1.5rem;
  resize: none;
  font-size: 1.6rem;
  appearance: none;
}
.camp-modal .modal-dialog select:focus,
.camp-modal .modal-dialog input:focus {
  background-color: transparent;
}

.camp-modal .modal-dialog textarea {
  width: 100%;
  resize: none;
  background-color: rgba(66, 87, 134, 0.2);
  border: 1px solid transparent;
  outline: none;
  padding-left: 1.5rem;
}
.camp-modal .modal-dialog .modal-content {
  background-color: #f6f6f6;
}

.camp-modal .modal-dialog h2 {
  font-size: 3.6rem;
  margin: 3rem 0;
}

.camp-modal .modal-dialog label,
.camp-modal .modal-dialog ul li,
.camp-modal .modal-dialog p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
}

.camp-modal .modal-dialog ul {
  list-style: none;
  padding-left: 0;
}

.camp-modal .modal-dialog label span,
.camp-modal .modal-dialog p span {
  color: red;
}

.camp-modal .modal-dialog .is-medication-included p,
.camp-modal .modal-dialog .accept-terms-of-use p {
  display: inline-block;
}

.camp-modal .modal-dialog .is-medication-included .medications {
  display: none;
}

.camp-modal .modal-dialog a {
  color: #000;
}

.camp-modal .modal-dialog .modal-body div:has(button) {
  text-align: right;
}

.camp-modal .modal-dialog .modal-body .form-submit-button {
  background-color: #004789;
  color: #fff;
  padding: 5px;
  outline: none;
  border: 1px solid transparent;
}

.camp-modal .modal-dialog .kids-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.camp-modal .modal-dialog .kids-list li {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.camp-modal .modal-dialog .kids-list li.active,
.camp-modal .modal-dialog .kids-list li.add {
  background-color: #f6f6f6;
  border: 1px solid #ddd;
}

.camp-modal .modal-dialog .kids-list li.inactive {
  background-color: #dfdfdf;
}

.camp-modal .modal-dialog .kids-list li p {
  margin-bottom: 0;
}

.camp-modal .modal-dialog .kids-list li.add {
  cursor: pointer;
}

.camp-modal .modal-dialog .kids-list li button {
  border: none;
  outline: none;
  background-color: transparent;
}

.ypg {
  flex-direction: column;
  align-items: start !important;
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .hero-section.impdat {
    height: 800px;
  }
}

@media only screen and (max-width: 1399px) {
  /* .hero-section {
    height: 850px;
  } */
  .hero-section h1 {
    font-size: 10rem;
    font-weight: bold;
    color: var(--secondary-text-color);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .hero-section h1 span {
    font-size: 3.5rem;
    display: block;
    text-transform: uppercase;
  }

  .mt-200 {
    margin-top: 10rem;
  }

  .mt-150 {
    margin-top: 7.5rem;
  }

  .mt-100 {
    margin-top: 5rem;
  }

  .football img[alt="sport"] {
    right: 0;
    bottom: -20%;
  }

  .invitation2 .wrapper div:not(.bg) {
    left: 30%;
  }

  .make-an-appointment .card {
    min-height: 104rem;
  }

  .camp-hero img[alt="child"] {
    right: 0;
  }

  .camp .row {
    margin-top: 10rem;
  }

  .academy-registration .register-card {
    min-height: 47rem;
  }

  footer .lastline p {
    font-size: 1.6rem;
  }
  footer .footer img[alt="wa"] {
    right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section .container > .container {
    display: none;
  }

  /* .hero-section {
    height: 700px;
  } */
  .hero-section h1 {
    font-size: 10rem;
    font-weight: bold;
    color: var(--secondary-text-color);
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .hero-section h1 span {
    font-size: 3.5rem;
    display: block;
    text-transform: uppercase;
  }

  .navbar ul li a {
    font-size: 1.4rem;
  }

  .navbar-brand img {
    max-width: 80%;
  }

  .title {
    font-size: 6rem;
    margin-bottom: 3rem;
  }

  .txt {
    font-size: 1.8rem;
  }

  .in-short .wrapper {
    padding: 3rem 6rem;
  }

  .make-an-appointment .card__body h5 {
    font-size: 2rem;
  }

  .make-an-appointment .card__body h4 {
    font-size: 2rem;
  }

  .make-an-appointment .card__body label {
    font-size: 1.6rem;
  }

  .txt {
    max-width: unset;
  }

  .academy-registration .register-card h2 {
    font-size: 5rem;
  }

  .academy-registration .register-card {
    min-height: 45rem;
  }
}
@media screen and (max-width: 991px) {
  .navbar .wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .navbar {
    background-color: #000;
  }

  .navbar .container {
    align-items: center;
  }

  .navbar .navbar-toggler {
    outline: none;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  /* .hero-section {
    height: 150rem;
  } */
  .hero-section h1 {
    font-size: 10rem;
    font-weight: bold;
    color: var(--secondary-text-color);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .hero-section h1 span {
    font-size: 3.5rem;
    display: block;
    text-transform: uppercase;
  }

  .navbar ul {
    margin-top: 3rem;
  }
  .navbar ul li a {
    font-size: 1.8rem;
  }

  .hero-section .container > .container {
    display: block;
  }

  .in-short .row:first-child .col-lg-6:first-child {
    order: 2;
  }

  .in-short .row:nth-child(3) .col-lg-6:first-child {
    order: 2;
  }

  .in-short .wrapper {
    padding: 5rem 0;
  }

  .in-short .row.mt-200 {
    row-gap: 5rem;
  }

  .sponsors .row {
    row-gap: 5rem;
  }

  footer .row {
    row-gap: 3rem;
  }

  footer .footer img[alt="wa"] {
    top: 0;
  }

  footer .lastline ul {
    gap: 2rem;
  }

  .football h1 {
    font-size: 7rem;
  }

  .football h1 span {
    font-size: 2.5rem;
  }

  .field-info {
    padding: 20rem 0 5rem 0;
  }

  .race .col-lg-4 img {
    display: none;
  }

  .invitation .wrapper {
    height: 650px;
    text-align: center;
  }

  .invitation .wrapper h2 {
    font-size: 4rem;
  }

  .invitation2 .wrapper div:not(.bg),
  .invitation3 .wrapper div:not(.bg) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .invitation3 .wrapper {
    height: 900px;
  }

  .invitation3 .wrapper div:not(.bg) {
    text-align: center;
    top: 60%;
  }

  .make-an-appointment form > .row {
    row-gap: 5rem;
  }

  .make-an-appointment .card {
    min-height: unset;
  }

  .make-an-appointment .card__body {
    min-height: unset;
  }

  .camp .row {
    row-gap: 5rem;
  }

  .academy .col-lg-6:last-child {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 3rem;
  }

  .academy-registration .register-card {
    min-height: unset;
  }

  .kontakt .row {
    row-gap: 5rem;
  }

  .map iframe {
    max-height: 500px;
  }
}
@media only screen and (max-width: 769px) {
  .camp-modal .modal-dialog {
    max-width: 100%;
    min-width: unset;
  }
  .hero-section {
    height: 105rem;
  }
  .hero-section h1 {
    font-size: 10rem;
    font-weight: bold;
    color: var(--secondary-text-color);
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .hero-section h1 span {
    font-size: 3.5rem;
    display: block;
    text-transform: uppercase;
  }

  .field-info .row {
    row-gap: 3rem;
  }

  .field-info .wrapper {
    flex-direction: column;
    text-align: center;
  }

  .alert-box {
    margin-top: 5rem;
  }

  .booking {
    margin-bottom: 5rem;
  }

  .camp-hero img[alt="child"] {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section {
    height: 750px;
  }
  .hero-section h1 {
    font-size: 5rem;
    font-weight: bold;
    color: var(--secondary-text-color);
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .hero-section h1 span {
    font-size: 3.5rem;
    display: block;
    text-transform: uppercase;
  }

  .hero-section .container > .container {
    display: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .title {
    font-size: 5rem;
  }

  .txt {
    font-size: 1.6rem;
  }

  .in-short .wrapper .btn {
    margin-top: 4rem;
  }

  .mt-75 {
    margin-top: 4rem;
  }

  .invitation .wrapper h4 {
    font-size: 1.6rem;
  }

  .invitation .wrapper h2 {
    font-size: 2.5rem;
  }

  .invitation .wrapper h2 span {
    font-size: 4rem;
  }

  .mt-200 {
    margin-top: 7.5rem;
  }

  .invitation .wrapper {
    height: 525px;
  }

  footer .footer img[alt="wa"] {
    right: 2.5%;
  }

  footer .lastline ul {
    justify-content: unset;
  }

  .race b {
    font-size: 1.6rem;
  }

  .padel h1 {
    font-size: 6rem;
  }

  .padel h1 span {
    font-size: 2rem;
  }

  .about-padel p {
    font-size: 1.6rem;
  }

  .padel-slider {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .sponsors-slider {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .invitation3 .wrapper div:not(.bg) h2 {
    font-size: 4rem;
  }

  .invitation3 .wrapper div:not(.bg) h2 span {
    font-size: 2rem;
  }

  .sponsors {
    padding-bottom: 0;
  }

  .birthday h1 {
    font-size: 6rem;
  }

  .birthday h1 span {
    font-size: 2rem;
  }

  .navbar-brand img {
    max-width: 60%;
  }

  .navbar .wrapper {
    display: flex;
  }
}
@media only screen and (max-width: 480px) {
  .camp-modal .modal-dialog .kids-list {
    display: unset;
  }
  .hero-section {
    height: 700px;
  }

  .hero-section .bg {
    position: unset;
  }

  .invitation .wrapper {
    height: 700px;
  }

  .invitation .wrapper div:not(.bg) {
    width: 100%;
  }

  .navbar .container {
    display: unset;
  }

  .football h1 {
    font-size: 5rem;
  }

  .football img[alt="sport"] {
    /* display: none; */
  }

  .football h1 span {
    font-size: 2rem;
  }

  .field-info table {
    font-size: 1.6rem;
  }

  .mt-75 {
    margin-top: 3.5rem;
  }

  .alert-box,
  .race__about {
    text-align: center;
    flex-direction: column;
  }

  .race__slider {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .invitation .wrapper {
    height: 700px;
  }

  .about-padel .col-lg-6 {
    flex-direction: column;
    text-align: center;
  }
  .about-padel .col-lg-6 img {
    display: block;
    margin: 0 auto;
  }

  .title {
    font-size: 4rem;
  }

  .title,
  .txt {
    text-align: center;
  }

  .hero-section h1 {
    text-align: center;
    width: 100%;
    left: 0;
  }

  footer .footer h3 {
    text-align: center;
  }

  footer .footer button {
    margin: 0 auto;
  }

  .invitation2 .wrapper {
    height: 500px;
  }

  .padel h1 {
    text-align: center;
    top: 40%;
  }

  .football h1 {
    text-align: center;
  }

  .btn.ab {
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
  }

  .about-padel {
    margin-top: -10rem;
  }

  .about-padel h2 {
    text-align: center;
  }

  .birthday h1 {
    font-size: 5rem;
    text-align: center;
  }

  .subtitle {
    font-size: 2.8rem;
    text-align: center;
  }

  .make-an-appointment .card__body input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0;
  }

  .make-an-appointment .card__body h4 {
    font-size: 1.6rem;
  }

  .make-an-appointment .card__header h3 {
    font-size: 2.5rem;
  }

  .make-an-appointment .card__body > *:not(#datepicker) {
    padding-left: 0;
  }

  .make-an-appointment .card__body label {
    font-size: 1.5rem;
  }

  .make-an-appointment .card__body h4 {
    margin-bottom: 0;
  }

  .invitation4 .wrapper div:not(.bg) {
    left: 50%;
  }

  .camp-hero h1 {
    left: 50%;
    transform: translateX(-50%);
  }

  .subtitle-special {
    text-align: center;
  }

  .camp h5 {
    text-align: center;
  }

  .camp .alert-box img {
    display: block;
    margin: 0 auto;
  }

  .camp-registration .register-card h2 {
    font-size: 4rem;
  }

  .camp-registration .register-card h3 {
    font-size: 2rem;
  }

  .camp-hero h1 {
    font-size: 5rem;
  }

  .bistro-hero .bg {
    background-position: 55%;
  }

  .invitation4 .bg {
    background-position: 75%;
  }

  .bistro-hero h1 {
    font-size: 5rem;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .kontakt p {
    text-align: center;
    font-size: 1.6rem;
  }

  .kontakt h5 {
    text-align: center;
  }

  .subtitle-special {
    font-size: 2.5rem;
  }

  .camp .row {
    margin-top: 5rem;
  }

  .centered {
    text-align: center;
  }
  .padel .bg {
    background-position: 60%;
  }
}

@media only screen and (max-width: 385px) and (max-height: 950px) {
  .hero-section h1 {
    top: 70%;
    left: 0;
  }
}
