/* page home */

/* sponsors section style */
.sponsors-slider-section {
  padding: 70px 0 0px 0;
}

.sponsors-slider-section .wrapper {
  max-width: 1194px;
  margin: 0 auto;
}
.sponsors-slider-section .mobile-wide-title {
  display: none;
}

.sponsors-slider-section h3 {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.sponsors-slider-section .titles-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sponsors-slider-section .titles-holder h3.main-sponsor-title {
  width: 270px;
  text-align: left;
}
.sponsors-slider-section .titles-holder h3.wide {
  width: 100%;
}



.sponsors-slider-section .holder {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sponsors-slider-section .holder::after {
  background: linear-gradient(
    to right,
    rgba(14, 14, 14, 1) 0%,
    rgba(14, 14, 14, 0) 100%
  );
  content: "";
  height: 200px;
  position: absolute;
  width: 100px;
  z-index: 2;
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/* .sponsors-slider-section .slider-container {
  width: 100%;
  margin: 0 auto;
  
} */

@keyframes infiniteScrollSponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move the items left by half the width */
  }
}

.slider-container {
  position: relative;
  
}

.slider-container::before,
.slider-container::after {
  background: linear-gradient(
    to right,
    rgba(14, 14, 14, 1) 0%,
    rgba(14, 14, 14, 0) 100%
  );
  content: "";
  height: 200px;
  position: absolute;
  width: 150px;
  z-index: 2;
}

.slider-container::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-container::before {
  left: 0;
  top: 0;
}

.sponsors-slider-section .sponsors-slider {
  display: flex;
  /* Increase the width to accommodate the duplicated items */
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: infiniteScrollSponsors;
}

.sponsors-slider-section .sponsors-slider li {
  /* margin-right: 70px; */
}

.sponsors-slider-section .sponsors-slider li:last-child {
  margin-right: 0;
}

.sponsors-slider-section .sponsors-slider img {
  width: 250px;
  height: auto;
  object-fit: none;
}

.main-sponsor {
  width: 270px;
  min-width: 270px;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: #0e0e0e;
  z-index: 2;
  box-sizing: border-box;
}

.main-sponsor::before {
  background: linear-gradient(
    to right,
    rgba(14, 14, 14, 1) 0%,
    rgba(14, 14, 14, 0) 100%
  );
  content: "";
  height: 200px;
  position: absolute;
  width: 170px;
  z-index: 2;
  left: 150px;
  top: 0;
}

.main-sponsor h3 {
  margin-bottom: 0;
  white-space: normal;
  z-index: 2;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.main-sponsor img {
  display: block;
  padding-left: 10px;
}

@media only screen and (min-width: 640px) and (max-width: 1200px) {
  .sponsors-slider-section .titles-holder h3.main-sponsor-title {
    white-space: normal;
    margin-left: 16px;
  }

  .sponsors-slider-section .titles-holder h3.wide {
    white-space: normal;
  }

  .sponsors-slider-section .main-sponsor {
    padding-left: 16px;
    width: 190px;
    min-width: 190px;
  }
}

@media screen and (max-width: 600px) {
  .sponsors-slider-section .mobile-wide-title {
    display: block;
    margin-bottom: 30px;
    margin-right: 15px;
  }
  .sponsors-slider-section .titles-holder h3.wide {
    display: none;
  }

  .sponsors-slider-section .titles-holder h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-right: 15px;
  }

  .sponsors-slider-section .titles-holder {
    justify-content: center;
  }

  .sponsors-slider-section .titles-holder h3.main-sponsor-title {
    width: 100%;
    text-align: center;
  }

  .sponsors-slider-section .holder {
    flex-direction: column;
    overflow: hidden;
  }

  .sponsors-slider-section .sponsors-slider {
    animation: none!important;
    width: auto;
    animation-duration: 20s;
  }

  .sponsors-slider-section .main-sponsor {
    align-items: center;
    height: 140px;
  }

  .sponsors-slider-section .main-sponsor img {
    padding-left: 0;
  }

  .main-sponsor::before {
    display: none;
  }
  
  .sponsors-slider-section .sponsors-slider img {
    width: 180px;
  }
}
/* home about us style */
.home-about-us {
  padding: 115px 0;
}

.home-about-us .two-col-holder {
  padding-bottom: 0;
}

.home-about-us .two-col-holder .col.right {
  margin-right: 48px;
}

.home-about-us p:first-child {
  margin-top: 0;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .home-about-us {
    padding: 96px 16px 65px 16px;
  }
  .home-about-us h3 {
    white-space: normal;
  }
}

@media screen and (max-width: 600px) {
  .home-about-us {
    padding: 96px 16px 65px 16px;
  }

  .home-about-us h3 {
    white-space: normal;
  }

  .home-about-us .two-col-holder {
    flex-direction: column;
  }
}

/* choose us section style */
.choose-us {
  padding: 65px 0;
  background-color: #1c1c1c;
}

.choose-us li {
  margin-bottom: 50px;
  display: flex;
}

.choose-us .two-col-holder .col li img {
  display: block;
  width: 112px;
  height: 112px;
  margin-right: 25px;
}

.choose-us .content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.choose-us .content p {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  max-width: 390px;
  padding: 0 16px;
}

.choose-us .two-col-holder {
  padding-bottom: 0;
}

.choose-us .col {
  width: 100%;
}

.choose-us .two-col-holder .col ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.choose-us .two-col-holder .col ul li {
  flex: 0 0 48%;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .choose-us {
    padding: 65px 16px;
  }
}

@media screen and (max-width: 600px) {
  .choose-us {
    padding-bottom: 16px;
  }
  .choose-us .two-col-holder .col ul li {
    flex: 0 0 100%;
  }
  .choose-us li {
    flex-direction: column;
    align-items: center;
  }
  .choose-us img {
    width: 72px;
    height: 72px;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .choose-us .content h4 {
    margin-bottom: 0;
  }
  .choose-us .content h4,
  .choose-us .content p {
    text-align: center;
    max-width: 345px;
    padding: 0 16px;
    margin: 0 auto 20px auto;
  }
  .choose-us .two-col-holder .col li img {
    margin-right: 0;
  }
}

/* our camp section style */

.our-camp {
  padding: 115px 0;
}

.our-camp h6 {
  padding-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
}

.our-camp h6:after {
  content: "";
  display: block;
  width: 4px;
  height: 90%;
  background-color: #FFDF00;
  position: absolute;
  top: 0px;
  left: -6px;
}

.our-camp .two-col-holder {
  padding-bottom: 0;
}

.our-camp .two-col-holder .col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 324px;
  max-height: 575px;
}

.our-camp .two-col-holder .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-camp .two-col-holder {
  padding-left: 100px;
  padding-right: 100px;
}

.our-camp .two-col-holder .col.right {
  width: 67%;
}

.our-camp .two-col-holder .col.left {
  width: 33%;
  margin-left: 118px;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .our-camp {
    padding: 65px 16px;
  }
  .our-camp .two-col-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .our-camp .two-col-holder .col.right {
    width: 100%;
  }

  .our-camp .two-col-holder .col.left {
    width: 100%;
    margin: 0 auto;
  }
  .our-camp .two-col-holder .col video {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .our-camp {
    padding: 65px 16px;
  }
  .our-camp h3 {
    white-space: normal;
  }
  .our-camp p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 50px;
  }
  .our-camp .two-col-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .our-camp .two-col-holder .col.right {
    width: 100%;
  }

  .our-camp .two-col-holder .col.left {
    width: 100%;
    margin: 0 auto;
  }
  .our-camp .two-col-holder .col video {
    max-width: none;
  }
}

/* motivation slider section style */

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.motivation-slider {
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 150px;
}

.motivation-slider li {
  position: relative;
  font-family: "PP Formula Narrow";
  font-size: 64px;
  font-style: italic;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 76px;
}

.motivation-slider .words-slider {
  display: flex;
  width: auto;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.motivation-slider li {
  position: relative;
}

.motivation-slider li.violet {
  color: #FFDF00;
  position: relative;
}

.motivation-slider li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #282828;
  position: absolute;
  top: calc(66px - 12px);
  transform: translate(50%, -33px);
  border-radius: 100%;
}

.motivation-slider li::before {
  right: 12px;
}

@media screen and (max-width: 600px) {
  .motivation-slider {
    padding-bottom: 0px;
    overflow-y: hidden;
  }
  .motivation-slider li {
    font-size: 34px;
    line-height: 38px;
    padding: 36px;
  }

  .motivation-slider li.violet::after,
  .motivation-slider li.violet::before {
    width: 7px;
    height: 7px;
  }
  .motivation-slider li.violet::after {
    top: calc(100% - 29px);
    left: -6px;
  }

  .motivation-slider li.violet::before {
    top: calc(100% - 29px);
    right: 0px;
  }
  .motivation-slider li::before {
    top: calc(100% - 29px);
    right: 0px;
    width: 7px;
    height: 7px;
  }
}

/* adjust style so animations can work */
.anim-image {
  overflow: hidden; /*Hide the parts of the image that are outside this div */
  position: relative; 
  width: 100%;
  height: 390px; 
  visibility: hidden;
}

.anim-image.type-video {
  height: 520px;
  visibility: visible!important;
}

.page-about #section-2 .anim-image {
  height: 719px;
}

.page-about #section-1 .anim-image {
  height: 550px;
  width: 120%;
}
.page-coaches .anim-image {
  height: 486px;
}

.img-anim {
  position: absolute; /* Position the image absolutely within the .reveal div */
  width: 100%;
  height: auto;
  transform-origin: left;
}

.anim-text p {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 640px) and (max-width: 1023px) { 
  .page-coaches .anim-image {
    display: flex;
    align-items: center;
    justify-content: center; 
  }

  .page-about #section-1 .anim-image { 
    width: 100%;
    height: 700px;
    margin: 50px 0;
  }
  .page-about #section-2  {
    margin: 50px 0;
  }

  .page-about #section-2 .anim-image {
    margin: 50px 0;
  }

  .page-location #section-1 .anim-image {
    height: 450px;
  }

  .page-location #section-1 .anim-image img { 
    height: 450px;
    object-fit: cover;
    width: 100%;
  }

  .page-location #section-1.two-col-holder.with-video {
    padding-bottom: 0;
  }

  .page-location #section-0 .anim-image {
    height: 590px;
  }

  .page-location #section-2 .left-side {
    order: 2;
  }
  .page-location #section-2 .anim-image {
    order: 2;
    margin-top: 50px;
  }
  .page-location #section-0 h3 {
    padding-top: 10px;
  }
}


@media screen and (max-width: 600px) {
  .anim-image {
    height: 220px;
  }
  .page-coaches .anim-image {
    height: 294px;
    display: flex;
    align-items: center;
    justify-content: center; 
  } 
  .page-about #section-2 .anim-image {
    height: 340px;
  }

  .page-about #section-1 .anim-image { 
    height: 430px;
  }
  .page-location #section-1 .anim-image img { 
    height: 220px;
    object-fit: cover;
    width: 100%;
  }
  
}

@media screen and (max-width: 1300px) {  
  .page-about #section-1 .anim-image { 
    width: 100%;
  }
  .page-location #section-0 h3 {
    padding-top: 10px;
  }
}

.home .banner-section {
  background-size: contain;
} 