/* global pages styling */
body {
  font-family: "PP Formula Condensed", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #0e0e0e;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 1194px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .content-wrapper {
    max-width: none;
    width: auto;
    margin: 0 16px;
  }
}
:root {
  --secondary-violet: #4b29d1;
}

h1 {
  font-family: "PP Formula Narrow";
  font-size: 88px;
  font-weight: 700;
  line-height: 88px;
  color: #fff;
  font-style: italic;
  margin-top: 28px;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  position: relative;
  margin-left: 80px;
  margin-top: 10px;
  z-index: 1;
  padding: 15px 25px;
}

html[lang="sr-RS"] h1 span:nth-child(2) {
  text-align: center;
}

html[lang="en-US"] h1 span:nth-child(2) {
  margin-left: 65px;
}

@media screen and (max-width: 600px) {
  html[lang="en-US"] h1 span:nth-child(2) {
    margin-left: 0px;
  }
}



h1 span:nth-child(2):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 100%; */
  width: 0;
  height: 100%;
  background-color: #4b29d1;
  transform: translate(-50%, -55%) skew(-10deg, 0deg);
  z-index: -1;
  animation: reveal 0.6s 600ms forwards; /* Add an animation to gradually reveal the ::after pseudo-element */
}

@keyframes reveal {
  to {
    width: 100%; /* Gradually increase the width to 100% */
  }
}

h2 {
  color: #FFDF00;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 0px;
  letter-spacing: 2px;
}

h3 {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

h3.small {
  color: #FFF;
  font-family: "PP Formula Condensed";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px; /* 116.667% */
  text-transform: uppercase;
  text-align: left;
}

h3.with-decoration {
  position: relative;
  padding-left: 54px;
}

h3.with-decoration:after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #FFDF00;
  position: absolute;
  top: -10px;
  left: 0;
}

h3.about {
  width: 50%;
  text-align: left;
}

h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  margin-bottom: 30px;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  h3 {
    text-align: center;
    white-space: pre-wrap;
  }
  h3.with-decoration {
    padding-left: 40px;
    margin-bottom: 40px;
    width: calc(90% - 16px);
    white-space: normal;
    text-align: left !important;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 48px;
    line-height: 48px;
    margin-top: 30px;
    text-align: center;
  }
  h1 span {
    display: inline-block;
  }
  h1 span:nth-child(2) {
    margin-left: 0;
    padding: 16px;
  }
  h2 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    line-height: 24px;
  }
  h3 {
    font-size: 40px;
    line-height: 48px;
    white-space: pre-wrap;
    margin-bottom: 30px;
  }
  h3.with-decoration {
    font-size: 24px;
    line-height: 32px;
    padding-left: 24px;
    margin-bottom: 24px;
    width: calc(90% - 16px);
    white-space: normal;
    text-align: left !important;
  }
}

button {
  position: relative;
  padding: 15px 20px;
  margin: 0;
  font-size: 13px;
  font-style: italic;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: transparent;
  text-transform: uppercase;
  border: none;
  color: #fff;
  z-index: 1;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
}

button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212121;
  transform: skew(-10deg, 0deg);
  z-index: -1;
  
}



button a {
  color: #fff;
  text-decoration: none;
}

.hover-div {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: -1;
  opacity: 0;
  transition: opacity 400ms linear, background-color 400ms linear;
  transform: skew(-10deg, 0deg);
}

button:hover .hover-div {
  opacity: 1;
}

.hover-div.hover-div-violet {
  background-color: #000;
}

.header-btn .hover-div.hover-div-violet {
  background-color: #2a2828;
}

.hover-div.hover-div-black {
  background-color: #4b29d1;
}

button.with-front-arrow .hover-div {
  background-color: #2a2828;
}
button.with-front-arrow.banner-buttons__secondary .hover-div {
  background-color: #4b29d1;
}

/* button:hover {
  box-shadow: 6px 6px #4b29d1;
  transform: skewX(-10deg) skewY(0);
} */

/* button.violet:hover {
  box-shadow: 6px 6px #ffb524;
  transform: skewX(-10deg) skewY(0);
} */

button.violet {
  font-family: "PP Formula Narrow";
  padding: 10px 16px;
  margin: 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 3px;
  text-align: center;
}

button.violet:after {
  background-color: #4b29d1;
}

button.violet.center {
  display: block;
  margin: 0 auto;
}

button.with-arrow {
  padding-right: 48px;
}

button.with-front-arrow {
  transition: padding-left 0.3s ease, transform 0.3s ease;
}

button.with-front-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  background-position: center;
  background-size: cover;
  transform: translate(-50%, -50%);
  background-image: url("../assets/right-arrow-icon.svg");
  opacity: 0;
  transition: background-image 0.3s ease, opacity 0.3s ease,
    padding-left 0.3s ease;
}

button.with-front-arrow:hover {
  padding-left: 60px;
  transform: translateX(-44px);
}

button.with-front-arrow:hover:before {
  opacity: 1;
  background-image: url("../assets/double-arrows.svg");
  transition: background-image 0.3s ease, opacity 0.3s ease,
    padding-left 0.3s ease;
}

button.with-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  background-position: center;
  background-size: cover;
  transform: translate(-50%, -50%);
  background-image: url("../assets/right-arrow-icon.svg");
  transition: background-image 0.3s ease-in-out;
}

button.with-arrow:hover:before {
  background-image: url("../assets/double-arrows.svg");
  transition: background-image 0.3s ease-in-out;
}
/* banner section style */

.banner-section {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  position: relative;
  z-index: 100;
  max-width: 605px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 115px;
}

.banner-section.wide .banner-content {
  margin-top: 0;
  max-width: none;
}

.banner-section.wide .banner-content p {
  max-width: none;
}

.banner-section.wide .banner-content h1 {
  margin-top: 0;
}

.banner-content p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  max-width: 590px;
  margin-bottom: 35px;
}
.banner-content .title-description__link {
  text-decoration: underline;
  font-weight: 600;
}
.banner-content p.title-description a {
  color: #fff;
  transition: all 0.3s ease;
}
.banner-content p.title-description a:hover {
  color: #4b29d1;
  transition: all 0.3s ease;
}
.banner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.banner-buttons button {
  margin-top: 0;
}
.banner-buttons__secondary.violet:after {
  background-color: #212121;
}
.banner-content p.small {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.8!important;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .banner-section.wide .banner-content h1 {
    text-align: center;
  }
  .banner-section.wide .banner-content {
    margin: 0 16px;
  }
}

@media screen and (max-width: 600px) {
  .home .banner-section {
    background-image: var(--mobile-bg, url("../assets/mobile-banner.jpg")) !important;
    background-size: cover!important;
  }
  .banner-content {
    margin-top: 0;
    max-width: 90%;
  }
  .banner-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  .banner-content p.small {
    opacity: 1;
  }
  .banner-section.wide .banner-content {
    max-width: 295px;
  }

  button {
    margin-top: 10px;
  }
  .banner-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* two-col-holder block style */

.two-col-holder {
  display: flex;
  padding-bottom: 170px;
}

.two-col-holder.padding-bottom-small {
  padding-bottom: 110px;

}

.two-col-holder h3 {
  text-align: left;
}

.two-col-holder .col {
  width: 50%;
}

.two-col-holder .col img {
  width: 100%;
  height: auto;
}

.two-col-holder.with-video {
  max-width: 1030px;
  padding-bottom: 150px;
}

.two-col-holder.with-video .col.right {
  width: 60%;
}

.two-col-holder.with-video .col.left {
  width: 40%;
}

.smaller-right-img.two-col-holder .col.right  {
  width: 55%;
}

.smaller-right-img.two-col-holder .col.col.left  {
  width: 45%;
}

.smaller-right-img.two-col-holder .col img {
  max-width: 428px;
  
}

.two-col-holder.wide-cols .col img {
  max-width: 425px;
  max-height: 486px;
}

.two-col-holder .col.left {
  margin-left: 30px;
}

.two-col-holder .col.left .text-holder {
  max-width: 581px;
}

.two-col-holder .col.left p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  margin-bottom: 30px;
}

.two-col-holder .col.left.col.narrow {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: 100px;
}

/* .two-col-holder .col.narrow {
  max-width: 375px;
  margin-left: 70px;
} */

.two-col-holder .col.narrow p {
  margin-top: 0;
}

.two-col-holder .col.left.narrow.tighter {
  margin-left: -50px;
}

.two-col-holder.wide-cols .col {
  width: auto;
}

.two-col-holder.wide-cols .col.right {
  margin-right: 85px;
}

.two-col-holder.wide-cols .col.left {
  margin-left: 0;
}

.two-col-holder.wide-cols .col.left p {
  max-width: 582px;
}

@media only screen and (min-width: 1024px) and (max-width: 1050px) {
  .our-camp .two-col-holder .col img {
    width: 100%;
  }
  .two-col-holder .col.narrow {
    margin-left: 120px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .two-col-holder h3 {
    text-align: center;
  }
  .two-col-holder {
    flex-direction: column;
    padding-bottom: 34px;
    margin: 0 16px;
    box-sizing: content-box;
    max-width: none;
    width: auto;
  }

  .two-col-holder .col {
    width: 100%;
  }
  .two-col-holder img {
    width: 100%;
  }
  .two-col-holder .col.left {
    margin-left: 0;
  }
  .two-col-holder .col.left .text-holder {
    max-width: none;
    margin-top: 40px;
  }
  .two-col-holder .col.narrow {
    max-width: none;
  }
  .two-col-holder .col.narrow.tighter {
    margin-left: 0;
  }
  .two-col-holder .col.narrow p {
    margin-top: 30px;
  }
  .two-col-holder .col.left.narrow {
    margin-left: 0!important;
  }

  .smaller-right-img.two-col-holder .col img {
    max-width: 100%;
    
  }
  .smaller-right-img.two-col-holder .col.col.left {
    width: 100%;
  }
  .two-col-holder.with-video .col.right {
    width: 100%;
  }
  
  .two-col-holder.with-video .col.left {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .two-col-holder .col.left.col.narrow {
    margin-left: 0;
  }
  .two-col-holder h3 {
    text-align: center;
  }

  .two-col-holder {
    flex-direction: column;
    padding-bottom: 34px;
  }

  .two-col-holder .col {
    width: 100%;
  }
  .two-col-holder img {
    width: 100%;
  }
  .two-col-holder .col.left {
    margin-left: 0;
  }

  .two-col-holder .col.left p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .two-col-holder .col.left .text-holder {
    max-width: none;
    margin-top: 0px;
  }
  .two-col-holder .col.narrow.tighter {
    margin-left: 0;
  }
  .two-col-holder.wide-cols .col.right {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .two-col-holder.wide-cols .col.right img {
    width: 206px;
    height: 294px;
    object-fit: cover;
  }
  .two-col-holder.with-video {
    padding-left: 16px;
    padding-right: 16px;
  }

  .two-col-holder.with-video .col.right {
    width: 100%;
  }
  
  .two-col-holder.with-video .col.left {
    width: 100%;
  }

  .image-text-cols.reversed .two-col-holder .col.left {
    margin-right: 0 !important;
  }
  .image-text-cols .two-col-holder .col.narrow p {
    margin-top: 30px;
  }

  .page-coaches .image-text-cols .two-col-holder .col.narrow p {
    margin-bottom: 0;
  }

  .page-coaches .image-text-cols .two-col-holder .col.narrow button.with-arrow {
    margin-top: 50px;
  }

  .smaller-right-img.two-col-holder .col.right  {
    width: 100%;
  }
  
  .smaller-right-img.two-col-holder .col.col.left  {
    width: 100%;
  }
  .two-col-holder.with-video {
    max-width: none;
    padding-bottom: 0;
  }
  .smaller-right-img.two-col-holder .col img {
    max-width: 100%;
  
  }
}
/* 
  style for two-half-width-cols block
*/

.image-text-cols {
  max-width: 1030px;
}

.image-text-cols.half-width {
  max-width: 1090px;
}

.image-text-cols .two-col-holder.wide-cols .col.right {
  width: 40%;
}

.image-text-cols .two-col-holder.wide-cols .col.left {
  width: 60%;
}

.image-text-cols .two-col-holder .col.right {
  width: 60%;
}

.image-text-cols .two-col-holder .col.left {
  width: 40%;
}

.image-text-cols.reversed .two-col-holder .col.right {
  margin-right: 0;
  order: 2;
}

.image-text-cols.reversed .two-col-holder .col.left {
  margin-left: 0;
  margin-right: 90px;
  order: 1;
}

.image-text-cols.with-button .two-col-holder .col img {
  max-width: 428px;
  max-height: 497px;
} 

.title-holder {
  position: relative;
  padding-left: 50px;
}

.title-holder:after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #FFDF00;
  position: absolute;
  top: 0;
  left: 0;
}

.title-holder h3 {
  margin-bottom: 0;
}

.title-holder p {
  font-family: "PP Formula Condensed";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  color: #FFDF00;
  margin-top: 0;
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .image-text-cols {
    padding: 0 16px;
  }
  .image-text-cols {
    padding: 0 16px;
  }
  .title-holder {
    padding-left: 0;
  }
  .title-holder::after {
    display: none;
  }
  .title-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
  }
  .title-holder p {
    margin-bottom: 0 !important;
  }
  .image-text-cols.reversed .two-col-holder .col.right {
    margin: 0 auto;
    order: 1;
  }
  .image-text-cols.reversed .two-col-holder .col.left {
    order: 2;
  }
  .two-col-holder.wide-cols .col.right img {
    width: 306px;
    height: 394px;
  }
  .two-col-holder.wide-cols .col.right {
    margin: 0 auto;
  }
  .two-col-holder.wide-cols .col.left p {
    max-width: 100%;
  }
  .image-text-cols.reversed .two-col-holder .col.left {
    margin-right: 0 !important;
  }
  .image-text-cols .two-col-holder.wide-cols .col.right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-text-cols .two-col-holder.wide-cols .col.right img {
    object-fit: cover;
  }
  
  .image-text-cols .two-col-holder.wide-cols .col.left {
    width: 100%;
  }
  
  .image-text-cols .two-col-holder .col.right {
    width: 100%;
  }
  
  .image-text-cols .two-col-holder .col.left {
    width: 100%;
  }
  .image-text-cols.with-button .two-col-holder .col img {
    max-width: 100%;
  }
  
}

@media screen and (max-width: 600px) {
  .image-text-cols {
    max-width: none;
  }
  .image-text-cols .two-col-holder .col.right {
    width: 100%;
  }
  
  .image-text-cols .two-col-holder .col.left {
    width: 100%;
  }

  .image-text-cols .two-col-holder.wide-cols .col.right {
    width: 100%;
  }
  
  .image-text-cols .two-col-holder.wide-cols .col.left {
    width: 100%;
  }

  .image-text-cols {
    padding: 0 16px;
  }
  .title-holder {
    padding-left: 0;
  }
  .title-holder::after {
    display: none;
  }
  .title-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
  }
  .title-holder p {
    margin-bottom: 0 !important;
  }
  .image-text-cols.reversed .two-col-holder .col.right {
    margin: 0 auto;
    order: 1;
  }
  .image-text-cols.reversed .two-col-holder .col.left {
    order: 2;
  }
}

/* counter block style */

.counter-section {
  position: relative;
  padding: 45px 0;
  margin-bottom: 65px;
  z-index: 1;
}

.counter-section.with-margin-top {
  margin-top: 90px;
}

.counter-section:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #181818;
  transform: skew(-4deg, 0deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.counter-section p {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #FFF;
  text-align: center;
  font-family: 'IBM Plex Sans';
  font-size: 16px;
  line-height: 24px; 
  opacity: 0.8;
}

.counter-section p:first-child {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px; 
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.counter-section h3 {
  margin: 35px 0;
  font-style: italic;
  font-family: 'PP Formula Narrow';
}

.counter-section p {
  margin-top: 0;
}

.counter-section .counter-content-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 610px;
  margin: 0 auto;
}

.counter-section .counter {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.counter-section .counter .item {
  width: 134px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #0e0e0e;
  margin-right: 12px;
}

.counter-section .counter .item h6 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
  letter-spacing: 2px;
}

.counter-section .counter .item p {
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.4;
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  .counter-section::after {
    width: 95%;
    transform: skew(-2deg, 0deg);
    left: 16px;
  }
  .counter-section p {
    max-width: 80%;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .counter-section::after {
    width: 90%;
    transform: skew(-2deg, 0deg);
    left: 32px;
  }
  .counter-section p {
    max-width: 80%;
  }

  .counter-section h3 {
    white-space: pre-line;
  }
}

@media screen and (max-width: 600px) {
  .counter-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
  }

  .counter-section .counter-content-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 255px;
  }

  .counter-section .counter {
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    margin-bottom: 10px;
  }
  .counter-section .counter .item {
    width: 110px;
    height: 80px;
    margin-right: 0;
    background: rgba(0, 0, 0, 0.1);
  }

  .counter-section .counter .item p {
    font-size: 12px;
    line-height: 24px;
    opacity: 0.4;
  }

  .counter-section p:first-child {
    font-size: 11px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .counter-section .counter-content-holder p:last-child {
    opacity: 0.8;
  }

  .counter-section .counter .item h6 {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
  }

  .counter-section::after {
    width: 90%;
    transform: skew(-1deg, 0deg);
    left: 16px;
  }

  .counter-section h3 {
    white-space: normal;
  }
}

/* video styling */

.banner-video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
}
.banner-video .fullsize-video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
  height: 100vh;
}
/* .page-camp-2024 .banner-video .fullsize-video{
  width: 100%;
  object-fit: contain;
} */

.page-camp-2024 .banner-section {
  background-size: contain;
  @media(max-width: 1023px) {
    background-size: cover;
  }
} 






/* figure {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    
  }
} */
.yt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 250px;
  background-color: rgba(14, 14, 14, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.yt-overlay.up {
  background: linear-gradient(180deg, #0e0e0e 0%, rgba(14, 14, 14, 0) 100%);
}

.yt-overlay.down {
  background: linear-gradient(360deg, #0e0e0e 0%, rgba(14, 14, 14, 0) 100%);
}

.yt-overlay .yt-outer {
  width: 100%;
  height: 100%;
}

.page-coaches .banner-section {
  margin-bottom: 20px;
}

.page-treneri .banner-section {
  margin-bottom: 20px;
}

/* adjust style so animations can work */
h1.reveal-text div span {
  padding-right: 10px;
}

.two-col-list h4.reveal-text span div span {
  padding-right: 10px;
}

.pricing h3.reveal-text span div span {
  padding-right: 0.1em;
}

.pricing h3.reveal-text span div span:last-child {
  padding-right: 0;
}

.pricing h3.reveal-text span div span:first-child {
  padding-left: 0.2em;
  margin-left: -0.19em;
}

.counter-content-holder h3.reveal-text span div span {
  padding-left: 5px;
}

.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1194px;
  margin: 0 auto;
  height: 100vh;
  flex-direction: column;
}

.thank-you p {
  text-transform: none;
}

.thank-you h3 {
  margin-bottom: 0;
}

.legal-pages-content-wrapper {
  max-width: 1194px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  top: 200px;
  margin-bottom: 200px;
}

.legal-pages-content-wrapper ul {
    list-style: disc;
    font-family: "IBM Plex Sans", sans-serif;
    margin-left: 50px;
}

.legal-pages-content-wrapper ul li {
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .legal-pages-content-wrapper {
    top: 100px;
    margin-bottom: 100px;
    padding: 0 16px;
  }
  .legal-pages-content-wrapper ul {
    padding: 0 16px;
    margin-left: 30px;
  }
}


#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  color: #fff!important;
  background-color: transparent!important;
  border-color: transparent!important;
} 

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change {
  color: #fff!important;
  background-color: transparent!important;
  border-color: transparent!important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  background-color: transparent!important;
  border-color: transparent!important;
  color: #fff!important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border: 2px solid transparent!important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  background-color: transparent!important;
  border: 2px solid transparent!important;
  color: #fff!important;
}

.page-camp-2024 .two-col-holder.with-video .anim-image, .page-kamp-2024 .two-col-holder.with-video .anim-image {
  height: 662px;
}
