/*.contentwrapper-main *:not(.outercontentwrapper) {*/
/*:where pseudoclass gives low specificity (precedence) */
:where(.contentwrapper-main *) :not(.outercontentwrapper, .contentwrapper) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 140px;
}

:where(.contentwrapper-main) img {
  width: 100%;
}

@media only screen and (max-width: 891px){
  .contentwrapper-main {
    padding: 0px;
  }
  .contentwrapper-main img {
    max-width: 100vw;
  }
}

input:invalid { background-color: white; } /* override style in obscure.css. Using a different class for invalid styles */ 

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.hidden {
  display: none;
}

.container {
  max-width: 1154px;
  margin: auto;
}

.accent-blue {
  color: #006fcf;
}

.accent-orange {
  color: #f3871b;
}

.striked {
  text-decoration: underline;
  text-decoration-line: line-through;
}

.content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}

.section-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.section-subtitle {
  color: #121212;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}

.section-thumbnail {
  border-radius: 17px;
}

.section-main-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.check-list-item-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.check-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
}

.check-list-item-icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
}

.top-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(253, 251, 247, 0.08);
  background: #151924;
  padding: 16px;
}

.top-banner p {
  color: #fdfbf7;
  text-align: center;
  font-family: Oswald;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-logo {
  max-width: none;
}

.navigation-header {
  padding: 9px 0px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(9, 9, 9, 0.25);
}

.navigation-header-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.navigation-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  padding: 10px 0;
}

.navigation-dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  white-space: nowrap;
  color: #151924;
  font-family: Oswald;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.3px;
}

.navigation-dropdown-content a:hover {
  background-color: #f2f2f2;
}

.navigation-header-dropdown:hover .navigation-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation-header-dropdown:hover .navigation-header-dropdown-arrow {
  transform: rotateZ(180deg);
}

.navigation-header-container {
  max-width: 1154px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation-header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.navigation-header-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #151924;
  text-align: center;
  font-family: Oswald;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}

.navigation-header-link .navigation-header-dropdown-arrow {
  width: 9px;
  height: 6px;
}

.navigation-header-buttons-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.navigation-header-search-button {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px 0.422px 3.378px 0px rgba(0, 0, 0, 0.12),
    0px 5.067px 10.978px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.hero-section {
  padding-top: 57px;
}

.hero-section-container {
  /*display: flex;
  align-items: flex-start;
  justify-content: space-between;*/
  display: grid;
  grid-template-columns: 1fr 550px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "main main"
    "side image";
  max-width: 1154px;
  margin: auto;
  padding: 24px 0px;
  gap: 40px;
}

.hero-left-column {
  grid-area: side;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.main-content-wrapper {
  /*width: 100%; outercontentwrapper now */
  background: linear-gradient(180deg, #f5f7fa 0%, #fff 100%);
}

.main-content-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1154px;
  margin: auto;
  padding: 34px 0px 40px;
  gap: 50px;
}

.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.hero-main-content {
  grid-area: main;
  width: 100%;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1154px;
  margin: 0px auto;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #f5f7fa;
  padding: 12px 25px;

  color: #000;
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.4px;
}

.breadcrumb-link, .breadcrumb-link:visited {
  text-decoration: underline;
  color: #000;
}

.breadcrumbs-container strong {
  font-weight: 500;
}

.hero-title-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  color: #121212;
  font-family: Oswald;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  margin: 0px;
}

.hero-title-accent {
  color: #f3871b;
  font-weight: 600;
}

.hero-subtitle {
  color: #000;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.4px;
  margin: 0px;
}

.hero-location-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.hero-location-container img {
  width: 13px;
}

.hero-location-content {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.4px;
}

.hero-button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

.hero-button {
  width: 100%;
  padding: 8px 30px;
  border-radius: 10px;
  background: #f3871b;
  color: #fdfbf7;
  text-align: center;
  font-family: Oswald;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s,
    -webkit-transform 0.2s;
  text-decoration: none;
}

.hero-button:hover {
  background: #ff7f00;
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.hero-side-content {
  width: 100%;
  /*max-width: 467px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.camp-intro-img-desktop {
  grid-area: image;
  display: block;
  max-width: 40vw;
  border-radius: 17px;
}

.hero-ticket-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-radius: 10px;
  border: 1px solid #1c5894;
  background: #f5f7fa;
}

.hero-ticket-open {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
  background: #1c5894;
  max-width: 32px;
}

.hero-ticket-open span {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-weight: 900;
  line-height: 16px;
  transform: rotate(-90deg);
}

.hero-ticket-content {
  width: 100%;
  padding: 22px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-ticket-content-subtitle {
  color: #151924;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.hero-ticket-content-title {
  color: #121212;
  font-family: Oswald;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 43px;
}

.hero-ticket-content-range {
  color: #151924;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.hero-ticket-content-hours {
  color: #151924;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.hero-ticket-content-hours a {
  color: #006FCF;
  text-decoration: underline;
  font-weight: 700;
}

.hero-ticket-discount {
  padding-right: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-ticket-discount-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  background: #FFF;
  padding: 10px;
}

.hero-ticket-discount-badge p {
  color: #151924;
  font-family: Oswald;
  font-size: 21px;
  font-weight: 600;
  line-height: 16px;
}

.hero-ticket-discount-badge .striked {
  color: #151924;
  font-family: Oswald;
  font-size: 21px;
  line-height: 16px;
  font-weight: 200;
}

.hero-ticket-discount-content {
  color: #ed1d24;
  text-align: center;
  font-family: Lato;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

.hero-side-button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.hero-side-note {
  color: #ed1d24;
  font-family: Lato;
  font-size: 15px;
  font-weight: 400;
  line-height: 20.8px;
}

.stats-wrapper {

}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 60px;
}

.stats-container > div {
  margin-top: 25px;
}

.stats-container > .reviews-average-rating {

}

.stats-container > .check-list-item-container {

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade {
  animation: fadeIn 0.5s ease-in-out;
}

.navbar-container {
  max-width: 1154px;
  margin: auto;
}

.navbar {
  position: sticky;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 0px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.sticky-navbar {
  position: fixed;
  top: 41px;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0px;
  border: 0px;
}

.sticky-navbar::after {
  content: "";
  position: absolute;
  top: -41px;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    #ffffffcc 0%,
    #ffffffcc 80%,
    rgba(255, 255, 255, 0.8) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  backdrop-filter: blur(2px);
  z-index: -1;
}

.sticky-navbar-wrapper {
  width: 100%;
  max-width: 1160px;
  margin: auto;
}

.sticky-navbar-container {
  width: 85%;
  transition: all 0.3s ease-out, width 0.3s ease-out 0.05s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #f5f7fa;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 10px;
  border-radius: 10px;
}

.sticky-navbar.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-navbar.visible .sticky-navbar-container {
  width: 100%;
}

.navbar-item, .navbar-item:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #def;
  color: #000;
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.4px;
  padding: 0px 10px;
  text-decoration: none;
  height: 30px;
  transition: box-shadow 0.2s;
  border: 0px;
}

a.navbar-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  color: #000;
  text-decoration: none;
}

.accent-item, a.accent-item:visited, a.accent-item:hover {
  background: #f3871b;
  color: #fff;
}

.camp-intro-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.camp-intro-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.camp-intro-main-content {
  color: #121212;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.camp-intro-extra-content {
  color: #121212;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.section-title {
  color: #121212;
  font-family: Oswald;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0px;
}

.section-title-accent {
  color: #1c5894;
}

/* Sticky sidebar */

.sidebar {
  width: 100%;
  max-width: 465px;
}

.sidebar-card {
  position: sticky;
  top: 140px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.sidebar-card-testimonial {
  display: flex;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8d8d8;
}

.sidebar-card-testimonial-picture {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.sidebar-card-testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.sidebar-card-testimonial-content {
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 18.2px;
}

.sidebar-card-testimonial-author-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.sidebar-card-testimonial-author {
  color: rgba(18, 18, 18, 0.5);
  font-family: Lato;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.sidebar-card-testimonial-rate {
  width: 77px;
}

.sidebar-title {
  color: #121212;
  font-family: Oswald;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
}

.sidebar-subtitle {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
}

.sidebar-icons-container {
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
}

.sidebar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.sidebar-icon img {
  height: 30px;
}

.sidebar-icon p {
  color: #151924;
  text-align: center;
  font-family: Oswald;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.sidebar-offer-bottom-note {
  color: #ed1d24;
  font-family: Lato;
  font-size: 15px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: center;
}

.add-to-cart-btn {
  width: 100%;
  padding: 13px 30px;
  border-radius: 12px;
  background: #f3871b;
  box-shadow: 0px 4px 5px 0px rgba(18, 18, 18, 0.25);
  border: 0px;
  color: #fdfbf7;
  text-align: center;
  font-family: Oswald;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s,
    -webkit-transform 0.2s;
}

a.add-to-cart-btn:hover {
  color: #fdfbf7;
  text-decoration: none;
  background: #ff7f00;
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.primary-btn, .primary-btn:visited {
  width: 100%;
  padding: 13px 30px;
  border-radius: 12px;
  background: #f3871b;
  box-shadow: 0px 4px 5px 0px rgba(18, 18, 18, 0.25);
  border: 0px;
  color: #fdfbf7;
  text-align: center;
  font-family: Oswald;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s,
    -webkit-transform 0.2s;
}

a.primary-btn:hover {
  color: #fdfbf7;
  text-decoration: none;
  background: #ff7f00;
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

/* Player Benefits */

.player-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.player-benefits-image {
  /* Right column */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.player-benefits-image img {
  max-width: 100%;
  border-radius: 17px;
}

.player-benefits-subtitle {
  color: #121212;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.player-benefits-list-title {
  color: #121212;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
}

#player-benefits-toggle-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid #1c5894;
  color: #1c5894;
  text-align: center;
  font-family: Oswald;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s;
}

#player-benefits-toggle-button:hover {
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.player-benefits-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.skills-cta-wrapper {
  max-width: 557px;
}

.skills-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.creator-card-list-hidden,
.player-benefits-list-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.creator-card-list-hidden.show,
.player-benefits-list-hidden.show {
  max-height: 1000px;
  opacity: 1;
}

/* Creator section */

.coach-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.coach-profile-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 48px;
}

.coach-profile-image img {
  max-width: 100%;
  border-radius: 17px;
}

.creator-card {
  border-radius: 17px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: 48px;
}

.creator-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px 17px 0px 0px;
  border-bottom: 1px solid #d8d8d8;
  background: linear-gradient(180deg, #2f94fa 0%, #1c5894 100%);
  padding: 31px 24px;
}

.creator-profile-picture {
  padding-right: 20px;
}

.creator-profile-picture img {
  max-width: 153px;
}

.creator-profile-details {
  padding-left: 20px;
  border-left: 1px solid #d8d8d880;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.creator-profile-name {
  color: #fff;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}

.creator-profile-record {
  color: #fff;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px; /* 193.333% */
}

.creator-record-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.creator-record-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}

.creator-record-item img {
  width: 15px;
  height: 15px;
  margin-top: 8px;
}

.creator-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 51px 38px;
}

.creator-card-content-about-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.creator-card-content-title {
  color: #121212;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}

.creator-card-about {
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  padding-bottom: 32px;
}

.creator-card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

.creator-card-quote-container {
  padding: 20px;
  border-radius: 17px;
  background: #f5f7fa;
}

.creator-card-quote-icon {
  margin-bottom: 12px;
}

.creator-card-quote-icon img {
  width: 34px;
}

.creator-card-quote {
  color: #121212;
  font-family: Lato;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 25px;
}

.creator-card-quote-author {
  color: #12121280;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.creator-card-appearances {
  width: 100%;
}

.creator-card-appearances-list {
  padding: 38px 24px 28px;
  border-bottom: 1px solid #d8d8d8;
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.creator-card-footer {
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

#about-coach-toggle-button {
  background: none;
  color: #1c5894;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  outline: 0px;
  border: 0px;
  cursor: pointer;
}

/* Camp Details Section */

.camp-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px; /* row gap, column gap */
  padding-bottom: 30px;
}

.camp-details-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.camp-details-list-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 64px;
}

.camp-details-list-item-title-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.camp-details-list-item-content-title {
  color: #1c5894;
  font-family: Oswald;
  font-size: 22px;
  font-weight: 600;
  line-height: 23px;
  text-transform: uppercase;
}

.camp-details-list-item-icon {
  min-width: 62px;
  max-width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camp-details-list-item-icon img {
  width: auto;
}

.camp-details-list-item-content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.camp-details-list-item-content-text p {
  color: #121212;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

#reviews-card-container-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid #1c5894;
  color: #1c5894;
  text-align: center;
  font-family: Oswald;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s;
}

#reviews-card-container-toggle:hover {
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

/* Skills section */

.skills-section-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  /* Remove columns property for better control */
}

.skills-section-container > .section-title {
  grid-column: 1 / -1;
}

.skills-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 38px;
}

.skills-card-title-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.skills-card-title-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.skills-card-title-icon {
  min-width: 53px;
  max-width: 53px;
}

.skills-card-title-icon.medium-icon {
  min-width: 42px;
  max-width: 42px;
}

.skills-card-title-icon.small-icon {
  min-width: 38px;
  max-width: 38px;
}

.skills-card-title {
  color: #151924;
  font-family: Lato;
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
}

.skills-card-subtitle-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.skills-card-subtitle {
  color: #1c5894;
  font-family: Lato;
  font-size: 22px;
  font-weight: 900;
  line-height: 22px;
}

.skills-card-subtitle-accent {
  color: #f3871b;
}

.skills-contents-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  list-style-type: disc;
  padding-left: 18px;
}

.skills-contents-list-item {
  width: 100%;
  border: 0px;

  color: #151924;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.skills-contents-list-item::marker {
  color: #006fcf;
  font-size: 18px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 40px;
  background: #f9f9f9;
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.016px;
}

.accordion-content.open {
  max-height: 200px;
  padding: 16px 40px;
}

/* FAQ Section */

.faq-contents-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.faq-contents-list-accordion-container {
  width: 100%;
}

.faq-contents-list-item {
  width: 100%;
  padding: 13px 12px;
  border-radius: 5px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0px;
}

.faq-contents-list-item.accordion-trigger {
  padding-right: 30px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-contents-list-item.accordion-trigger:hover {
  background-color: #f5f5f5;
}

.faq-contents-list-item-open-icon {
  width: 9px;
  min-width: 9px;
  transition: transform 0.3s ease;
}

.faq-contents-list-item-label {
  color: #151924;
  text-align: left;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.faq-contents-list-item.active .faq-contents-list-item-open-icon {
  transform: rotate(90deg);
}

/* Customer reviews */

.reviews-section {
  /*width: 100%; it's an outercontentwrapper now */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 34px;
  background: linear-gradient(180deg, #f6f5f3 0%, #fff 100%);
  padding: 63px 0px 48px;
}

.reviews-section-container {
  /* width: 100%; contentwrapper now */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.reviews-title {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f94fa 0%, #1c5894 100%);
  padding: 42px 30px;
}

.reviews-title h2 {
  color: #fff;
  font-family: Oswald;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.reviews-rating-wrapper {
  width: 100%;
}

.reviews-rating-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-average-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.reviews-average-rating-title, a.reviews-average-rating-title, .reviews-average-rating-title:visited {
  color: #000;
  font-family: Oswald;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.reviews-average-rating-stars-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.reviews-average-rating-count, a.reviews-average-rating-count, .reviews-average-rating-count:visited {
  color: #1c5894;
  font-family: Lato;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.reviews-average-rating-review-count-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.reviews-average-rating-review-count-container img {
  width: 114px;
}

.reviews-average-rating-review-count {
  color: #696969;
  font-family: Lato;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}

.review-cards-container {
  display: flex;
  gap: 15px;
}

.review-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.review-card-group {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 15px;
}

.review-card {
  width: fit-content;
  height: fit-content;
  min-width: 221px;
  padding: 18px 17px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.review-author {
  color: #000;
  font-family: Lato;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

.review-date {
  color: #898989;
  font-family: Lato;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}

.review-rating {
  width: 76px;
  height: 13px;
}

.review-comment {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.14px;
}

/* Sign Up Form */

.sign-up-form-section {
  /* padding: 56px 0px 80px; outercontentwrapper now */
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(270deg, #2f94fa 0%, #1c5894 100%);
}

/*
.sign-up-form-container {
  max-width: 1160px;
  margin: auto;
} contentwrapper now */

.sign-up-form-title {
  color: #fff;
  font-family: Oswald;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.sign-up-form-subtitle {
  color: #f6ff52;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.sign-up-form-field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 0px;
  border-top: 1px solid #ffffff80;
}

.sign-up-form-field-wrapper.player:first-child {
  border-top: 0px;
}

.playersContainer {
  border-bottom: 1px solid #ffffff80;
}

.sign-up-form-add-player-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: none;
  border: 0px;
  color: #fff;
  font-family: Oswald;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  padding: 20px 0px;
}

.sign-up-form-add-player-btn-icon {
  width: 21px;
  height: 21px;
}

.sign-up-form-label-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sign-up-form-label {
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.sign-up-form-fields-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.sign-up-form-contact-fields-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sign-up-form-field {
  min-width: 195px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 13px;
  border: 1px solid #b0b0b0;
  color: #666666;
}

.field-group {
  width: fit-content;
}

.field-wrapper {
  position: relative;
}

.field-wrapper.select-field {
  display: inline-block;
}

.field-wrapper.select-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 12px;
  background-color: white;
  color: #666666;
  cursor: pointer;
}

.field-wrapper.select-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #151924;
}

.field-wrapper.select-field select:focus {
  outline: none;
}

.big-field-group {
  width: 100%;
}

.sign-up-form-button-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.sign-up-form-button-container-note {
  color: #ffffffcc;
  font-family: Lato;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.sign-up-form-refund-policy-note {
  color: #ffffffcc;
  font-family: Lato;
  font-size: 14px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 16px;
}

.sign-up-form-refund-policy-note a {
  color: #FFF;
}

.sign-up-form-refund-policy-note a:hover {
  color: #f3871b;
}

.field-group-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.error {
  display: none;
  width: fit-content;
  margin-left: 8px;
  color: #fff;
  font-family: Lato;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  padding: 5px;
  border-radius: 0px 0px 5px 5px;
  border: 2px solid #ff6b6b;
  background: #e63030;
}

.error-icon {
  display: none;
  position: absolute;
  right: 8px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  max-width: 24px;
  max-height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.has-error .sign-up-form-field {
  outline: 2px;
  outline-style: solid;
  outline-color: #ff6b6b;
}

.has-error .error,
.has-error .error-icon {
  display: block;
}

.remove-player-btn {
  border: 2px solid #ff6b6b;
  background: #e63030;
  color: #fff;
  padding: 6px 8px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Observing Coaches */

.observing-coaches-container {
  max-width: 1154px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 75px 0px;
}

.observing-coaches-img {
  width: 305px;
}

.observing-coaches-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.observing-coaches-text {
  color: #121212;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.observing-coaches-text strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.observing-coaches-text a {
  color: #2172be;
}

.observing-coaches-text a:hover {
  color: #f3871b;
}

/* Newsletter */

.newsletter-section {
  position: absolute;
  top: -98px;
  left: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1179px;
  margin: auto;
  padding: 40px 54px;
  border-radius: 17px;
  background: linear-gradient(
      93deg,
      rgba(21, 25, 36, 0) 2.18%,
      rgba(21, 25, 36, 0.5) 100%
    ),
    #1c5894;
}

.newsletter-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.newsletter-title-container img {
  width: 52px;
  height: 54px;
}

.newsletter-title {
  text-align: center;
  color: #fff;
  font-family: Oswald;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.newsletter-title-accent {
  color: #f3871b;
}

.newsletter-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.newsletter-subtitle {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  opacity: 0.8;
}

.newsletter-fields-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 852px;
  margin: auto;
}

.newsletter-field {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 14px;
  border-radius: 5px;
  border: 1px solid #151924;
  background: #fff;
}

.newsletter-field-input {
  width: 100%;
  flex: 1;
  border: 0px;
  background: none;
  padding: 14px 0px;
}

.newsletter-field-input:focus {
  border: 0px;
  outline: 0px;
}

.newsletter-signup-btn {
  display: flex;
  flex: 1;
  padding: 11px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #f3871b;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  border: 0px;
  color: #fff;
  text-align: center;
  font-family: Oswald;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s,
    -webkit-transform 0.2s;
}

.newsletter-signup-btn:hover {
  background: #ff7f00;
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.newsletter-signup-btn img {
  width: 9px;
}

/* Footer */

/*
.footer {
  position: relative;
  padding: 70px 0px 0px;
  background: linear-gradient(180deg, #151924 26.44%, #242b3d 100%);
}
  */

.footer-container {
  max-width: 1154px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 70px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-title {
  color: #fff;
  font-family: Oswald;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.footer-content {
  color: #fff;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-internal-link {
  text-decoration: none;
  color: #fff;
  font-family: Lato;
  font-size: 13px;
  font-weight: 600;
  line-height: 25px;
}

.footer-links-container .footer-social-media-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: Lato;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.65px;
  text-decoration: none;
}

.footer-links-container .footer-social-media-link .footer-social-media-icon {
  width: 18px;
  height: 18px;
}

.footer-links-container .footer-social-media-link .footer-social-media-arrow {
  width: 9px;
}

.footer-background {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 0.03;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.footer-background img {
  height: 100%;
}

.footer-background.left {
  left: 0px;
}

.footer-background.right {
  right: 0px;
  transform: scaleX(-1);
}

.footer-copyright {
  width: 100%;
  background: #f6f5f31a;
  padding: 19px 0px;
}

.footer-copyright-container {
  width: 100%;
  max-width: 1167px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright-title {
  color: #fff;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.footer-copyright-links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-copyright-links-container a,
.footer-copyright-links-container span {
  color: #fff;
  text-align: right;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}

/* Search Modal */

.search-modal {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-modal.show {
  opacity: 1;
  visibility: visible;
}

.search-modal-container {
  position: relative;
  min-width: 380px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px 29px;
  border-radius: 12px;
}

.close-search-popup {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 17.5px;
  border: 2px solid rgba(18, 18, 18, 0.5);
  background: #fff;
  width: 35px;
  height: 35px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-search-popup img {
  width: 14px;
  height: 14px;
}

.search-modal-title {
  color: #121212;
  text-align: center;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}

.search-modal-search-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.search-modal-input-container {
  position: relative;
}

.search-modal-input-icon {
  position: absolute;
  left: 12px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 14px;
  height: 14px;
}

.search-modal-input {
  width: 100%;
  border-radius: 6px;
  padding: 10px 20px 10px 32px;
  border: 1px solid rgba(18, 18, 18, 0.25);
  color: rgba(18, 18, 18, 0.9);
  font-family: Lato;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
}

.search-modal-button {
  padding: 13px 30px;
  border-radius: 12px;
  background: #f3871b;
  box-shadow: 0px 4px 5px 0px rgba(18, 18, 18, 0.25);
  border: 0px;
  color: #fdfbf7;
  text-align: center;
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s,
    -webkit-transform 0.2s;
}

.search-modal-button:hover {
  background: #ff7f00;
  transform: scale(1.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 1201px) {
  .lg-show {
    display: none !important;
  }
}

@media only screen and (max-width: 1200px) {
  .lg-hide {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .tablet-show {
    display: none !important;
  }

  .tablet-show-flex {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .tablet-hide {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .mobile-show {
    display: none !important;
  }
  .mobile-show-flex {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .header-logo {
    max-width: 100px;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navigation-header {
    padding: 9px 20px;
  }

  .navigation-header-links {
    gap: 20px;
  }

  .navigation-header-buttons-container {
    gap: 20px;
  }

  .main-content-container {
    padding: 93px 20px 40px;
    gap: 32px;
  }

  .sticky-navbar {
    top: 10px;
  }

  .creator-card-header {
    padding: 29px 20px;
  }

  .creator-profile-picture {
    padding-right: 20px;
  }

  .creator-profile-details {
    padding-left: 20px;
  }

  .hero-section-container {
    padding: 48px 20px;
  }

  .hero-main-content {
    width: 60%;
  }

  .sticky-navbar {
    padding: 0px 16px;
  }

  .sidebar {
    max-width: 415px;
  }

  .sidebar-card {
    top: 100px;
  }

  .reviews-section {
    /* padding: 63px 20px 190px; outercontentwrapper now */
  }

  .review-cards-container {
    flex-wrap: wrap;
  }

  .review-card-group:last-child {
    flex-direction: row;
  }

  /* Sign Up form section */

  /*.sign-up-form-section {
    padding: 56px 20px 80px;
  } outercontentwrapper now */

  .sign-up-form-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .field-group,
  .field-wrapper {
    width: 100%;
  }

  .newsletter-section {
    right: 20px;
    left: 20px;
  }

  .footer-container {
    padding: 0px 20px 70px;
  }

  .footer-copyright {
    padding: 19px 20px;
  }
}

/* Tablet styles */

@media (max-width: 991px) {
  .tablet-show-flex {
    display: flex !important;
  }

  .header-logo {
    max-width: none;
  }

  .main-content-container {
    padding: 0px;
  }

  .navigation-header {
    padding: 8px 18px;
  }

  .navigation-header-buttons-container {
    gap: 17px;
  }

  .main-content {
    gap: 65px;
  }

  /* Mobile Menu */

  .navigation-header-mobile-menu {
    display: none;
    position: fixed;
    inset: 130px 0 0;
    background: #f6f5f3;
    overflow-y: scroll;
    overscroll-behavior: none;
    z-index: 10;
    padding: 40px;
  }

  .navigation-header-mobile-menu.open {
    display: block;
  }

  .navigation-mobile-menu-trigger {
    position: relative;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }

  .navigation-mobile-menu-trigger span {
    width: 22px;
    height: 2px;
    background: #151924;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.31, 0.05, 0.43, 1.02);
  }

  .navigation-mobile-menu-trigger span:nth-child(1) {
    transform: translateY(-6px);
  }

  .navigation-mobile-menu-trigger span:nth-child(3) {
    transform: translateY(6px);
  }

  .navigation-mobile-menu-trigger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg) scaleX(1.1);
  }

  .navigation-mobile-menu-trigger.open span:nth-child(2) {
    opacity: 0;
  }

  .navigation-mobile-menu-trigger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg) scaleX(1.1);
  }

  .navigation-header-mobile-menu-list {
    list-style: none;
  }

  .navigation-header-mobile-menu-list li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .navigation-header-mobile-menu-link,
  .navigation-header-mobile-menu-inner-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #151924;
    text-align: center;
    font-family: Oswald;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 0px;
    background: none;
    padding: 24px 0px;
    border-bottom: 1px solid #d8d8d8;
  }

  .navigation-header-mobile-menu-link-arrow {
    width: 9px;
    height: 6px;
    transform: rotateZ(270deg);
    transition: transform 0.3s ease;
  }

  .navigation-header-mobile-menu-link.accordion-trigger.active
    .navigation-header-mobile-menu-link-arrow {
    transform: rotateZ(360deg);
  }

  .navigation-header-mobile-menu-accordion-container {
    width: 100%;
  }

  .navigation-header-mobile-menu-accordion-content {
    padding: 0px;
  }

  .navigation-header-mobile-menu-accordion-content.accordion-content.open {
    padding: 0px;
    max-height: 500px;
  }

  .navigation-header-mobile-menu-inner-link {
    background: #ededed;
    padding-left: 20px;
  }

  .breadcrumbs-container {
    border-radius: 0px;
  }

  .hero-section {
    padding-top: 0px;
  }

  .hero-section-container {
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 0px;
  }

  .hero-left-column {
    width: 100%;
  }

  .hero-main-content {
    width: 100%;
    padding-top: 20px;
  }

  .hero-location-content {
    font-size: 15px;
  }

  .hero-side-content {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 48px 20px 24px;
    gap: 21px;
    margin-top: 0px;
  }

  .hero-title-container {
    gap: 24px;
  }

  .hero-title {
    padding: 0px 20px;
  }

  .hero-subtitle {
    padding: 0px 20px;
  }

  .hero-location-container {
    padding: 0px 20px;
  }

  .hero-side-button-container {
    gap: 12px;
  }

  .sidebar-card {
    position: relative;
    top: 0px;
    box-shadow: none;
    padding: 0px 20px 32px;
    gap: 20px;
  }

  .sidebar-card-bottom-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .sidebar-card-bottom-note-title {
    color: #000;
    text-align: center;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
  }

  .sidebar-card-bottom-note-discount-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
    transform: rotate(3.534deg);
    padding: 0px 7.5px;
    border-radius: 3px;
    background: #1c5894;
  }

  .sidebar-card-bottom-note-discount-badge span {
    color: #fff;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
  }

  .sidebar-card-bottom-note-price {
    color: #151924;
    font-family: Oswald;
    font-size: 21px;
    font-weight: 600;
    line-height: 16px;
  }

  .sidebar-card-bottom-note-retail-price {
    font-weight: 200;
    text-decoration: underline;
    text-decoration-line: line-through;
  }

  .sidebar-card-bottom-note-discount-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sidebar-card-bottom-note-discount {
    color: #151924;
    text-align: center;
    font-family: Lato;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
  }

  .sidebar-card-bottom-note-discount-expires {
    color: #ed1d24;
    font-family: Lato;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
  }

  .navbar {
    padding: 20px;
    overflow: visible;
  }

  .navbar-item {
    width: fit-content;
    white-space: nowrap;
  }

  .absolute-item {
    position: absolute;
    left: 0px;
    padding: 0px 10px;
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3871b;
    box-shadow: 4px 0px 4px 0 rgb(0 0 0 / .25);
  }

  .navbar-item.invisible-item {
    opacity: 0;
    visibility: hidden;
  }

  .sticky-navbar {
    width: 100%;
    overflow: visible;
    top: 0px;
    padding: 0px;
  }

  .sticky-navbar-wrapper {
    padding: 0px;
  }

  .sticky-navbar-container {
    overflow-x: auto;
    border-radius: 0px;
  }

  .sticky-navbar-container::-webkit-scrollbar {
    display: none;
  }

  .section-thumbnail {
    border-radius: 0px;
  }

  .section-main-content-container {
    padding: 0px 20px;
  }

  .section-title {
    font-size: 30px;
    line-height: 36px;
  }

  /* Camp Intro Section*/

  .camp-intro-section {
    /*padding-top: 64px;*/
  }

  /* player benefits section */

  .player-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .player-benefits-image {
    justify-content: center;
  }

  /* Skills section */

  .skills-section-container {
    padding: 0px 15px;
  }

  .skills-card-subtitle-container {
    gap: 20px;
  }

  .skills-cta-wrapper {
    max-width: 100%;
  }

  .skills-cta-container {
    padding: 0 0 0 15px;
    width: 48%;
  }

  /* About section */

  #about-coach {
    padding: 0px 20px;
  }

  .coach-profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .coach-profile-image {
    justify-content: center;
  }

  .creator-card-content {
    padding: 42px 20px 36px;
  }

  .creator-profile-picture {
    padding-right: 35px;
  }

  .creator-profile-details {
    padding-left: 35px;
  }

  .creator-record-list {
    gap: 8px;
  }

  .creator-record-item img {
    margin-top: 4px;
  }

  .creator-record-item {
    line-height: normal;
  }

  .creator-card-content-title {
    font-size: 17px;
  }

  .creator-card-about {
    font-size: 15px;
  }

  /* Camp Details Section */

  .camp-details-list {
    gap: 42px;
  }


  /* Reviews section */

  .reviews-section {
    /* padding: 52px 14px 40px; outercontentwrapper now */
  }

  .reviews-title {
    padding: 18px 27px;
  }

  .review-card-header {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  .reviews-title h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .review-cards-container {
    flex-direction: column;
  }

  .review-cards-container-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
  }

  .review-cards-container-hidden.show {
    max-height: 2000px;
    opacity: 1;
  }

  .review-cards-container-hidden .review-card-group:last-child {
    padding-bottom: 34px;
  }

  .review-card-group:last-child {
    flex-direction: column;
  }

  .review-card {
    width: 100%;
  }

  /* Observing Coaches section */

  .observing-coaches-container {
    padding: 30px 20px 85px;
  }

  /* Newsletter section */

  .newsletter-section {
    position: static;
    padding: 25px 27px 32px;
    margin: 0px 15px 40px;
    border-radius: 17px;
  }

  .newsletter-title-container {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 10px;
  }

  .newsletter-title {
    font-size: 28px;
    line-height: normal;
  }

  .newsletter-fields-container {
    flex-direction: column;
  }

  .newsletter-field {
    width: 100%;
  }

  .newsletter-signup-btn {
    width: 100%;
  }

  /* Footer styles */

  /*.footer {
    padding: 48px 0px 0px;
  }*/

  .footer-container {
    flex-wrap: wrap;
    padding: 0px 20px 56px;
    row-gap: 34px;
  }

  .footer-item:last-child {
    width: 100%;
  }

  .footer-links-container {
    width: 100%;
  }

  .footer-copyright-container {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }

  .mobile-show-flex {
    display: flex !important;
  }

  .bottom-cta * {
    margin: 0;
    box-sizing: border-box;
  }
  .bottom-cta {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    bottom: 0px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: #fff;
    box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.35);
    z-index: 100;
    transition: transform 0.4s ease-in-out;
  }

  .bottom-cta.hidden {
    transform: translateY(100%);
  }

  .bottom-cta-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-cta-title {
    color: #000;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }

  .bottom-cta-subtitle {
    color: #666;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
  }

  .bottom-cta-btn-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .bottom-cta-btn {
    border-radius: 10px;
    background: #f3871b;
    padding: 7px 20px;
    border: 0px;
    color: #fdfbf7;
    text-align: center;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .hero-title {
    font-size: 34px;
    line-height: 37px;
    padding: 0px 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 22px;
    padding: 0px 20px;
  }

  .hero-ticket-container {
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 1;
    padding: 24px 18px 13px;
  }

  .hero-ticket-content {
    align-items: center;
    gap: 14px;
    padding: 0px;
  }

  .hero-ticket-content-hours {
    text-align: center;
    width: 100%;
  }

  .hero-ticket-open {
    position: absolute;
    width: fit-content;
    max-width: none;
    top: 16px;
    left: 28px;
    border-radius: 10px 10px 0px 0px;
    padding: 8px 32px;
  }

  .hero-ticket-open span {
    transform: rotate(0deg);
  }

  .hero-ticket-discount {
    flex-direction: row;
    align-items: baseline;
    padding: 14px 0px 0px;
  }

  .hero-ticket-discount-content {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 100%;
  }

  .purchase-modal-overlay {
    position: fixed;
    bottom: 0px;
    width: 100vw;
    height: 100dvh;
    display: flex;
    align-items: end;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .purchase-modal-overlay.visible {
    visibility: visible;
    opacity: 1;
  }

  .purchase-modal-overlay.visible .purchase-modal {
    transform: translateY(0);
  }

  .purchase-modal {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }

  .purchase-modal-header {
    position: relative;
    background-color: #f3871b;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .purchase-modal-header-title {
    color: #fff;
    text-align: center;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .purchase-modal-close-btn {
    position: absolute;
    left: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .purchase-modal-close-btn img {
    width: 15px;
    height: 14px;
  }

  .purchase-modal-content {
    background: linear-gradient(
        316deg,
        rgba(21, 25, 36, 0) 23.19%,
        rgba(21, 25, 36, 0.5) 73.63%
      ),
      #1c5894;
    width: 100%;
    height: 100%;
    max-height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 35px 20px 35px;
    overflow-y: scroll;
  }

  .sign-up-form-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 35px;
  }

  .sign-up-form-fields-container,
  .sign-up-form-contact-fields-container,
  .field-group-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .field-group-wrapped {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sign-up-form-field {
    font-size: 14px;
  }

  .field-group-wrapped .field-group .sign-up-form-field {
    min-width: 0px;
  }

  .field-group,
  .sign-up-form-field {
    width: 100%;
  }

  .sign-up-form-field-wrapper {
    padding: 28px 0px;
  }

  .sign-up-form-add-player {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-bottom: 23px;
  }

  .sign-up-form-add-player-btn {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 23px 0px 10px;
  }

  .sign-up-form-add-player-note {
    color: #fff;
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
  }

  .sign-up-form-button-container {
    flex-direction: column;
  }

  .sign-up-form-button-container-note {
    color: #fff;
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
  }

  .sign-up-form-button-container-note a {
    color: #fff;
  }

  .breadcrumbs-container {
    padding: 8px;
    font-size: 10px;
    line-height: 20px;
  }

  .skills-cta-container {
    width: 100%;
    padding: 0 15px;
  }

  .creator-card-header {
    flex-direction: column;
    padding: 27px 20px;
  }

  .creator-profile-picture {
    width: 100%;
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
  }

  .creator-profile-picture img {
    width: 93px;
  }

  .creator-profile-details {
    width: 100%;
    padding-left: 0px;
    border-left: 0px;
    padding-top: 20px;
    border-top: 1px solid #d8d8d880;
  }

  .creator-profile-record {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }

  /* Camp details section */

  .camp-details-list {
    grid-template-columns: 1fr;
  }

  .camp-details-list-item-content {
    padding-left: 0px;
  }

  .camp-details-list-item-title-container {
    gap: 18px;
  }

  .camp-details-list-item-icon {
    min-width: 0px;
    max-width: none;
  }

  .camp-details-list-item-content-text p {
    font-size: 14px;
  }

  /* Skills Section */

  .skills-section-container {
    grid-template-columns: 1fr;
  }
  .skills-section-container > .section-title {
    grid-column: 1 / 2;
  }

  .skills-card {
    padding: 38px 20px;
  }

  .skills-card-title-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .skills-card-title {
    font-size: 24px;
    line-height: 26px;
  }

  .skills-card-title-icon {
    min-width: 30px !important;
    max-width: 30px !important;
  }

  .skills-card-subtitle-container {
    width: fit-content;
  }

  .skills-card-subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .skills-contents-list-item {
    font-size: 14px;
  }

  /* Observing Coaches section */
  .observing-coaches-container {
    flex-direction: column;
  }

  /* Footer */

  .footer-item:first-child {
    width: 100%;
  }
}
