@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap);
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=__container] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited, a:hover {
  text-decoration: none;
}

[data-opavcity-move] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
  transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
}
[data-opavcity-move].animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-opacity] {
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
[data-opacity].animate {
  opacity: 1;
}

.burger {
  margin-top: 1rem;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 990px) {
  .burger {
    display: none;
  }
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #00ffba;
  margin: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #cfcfcf;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00ffba;
  border-radius: 5px;
}

.scroll {
  position: fixed;
  right: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 5px;
  border: 2px solid white;
  background-color: #00ffba;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
@media screen and (min-width: 990px) {
  .scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.scroll:hover {
  cursor: pointer;
}
.scroll__up {
  display: none;
  z-index: 999;
  top: 50px;
}
.scroll__up img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.scroll__down {
  bottom: 50px;
  display: none;
}
.scroll img {
  width: 100%;
}

.header {
  z-index: 999;
  margin: 0 auto;
  width: 100%;
  height: 60px;
  background-color: rgb(61, 61, 61);
  border-bottom: 3px solid #00ffba;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: 80px;
}
.header__logo img {
  width: 100%;
}
.header__navigation {
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .header__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.header__navigation ul li {
  font-size: 1.4rem;
  margin: 0 1.4rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__navigation ul li img {
  width: 20px;
}
.header__navigation ul li:hover {
  cursor: pointer;
  color: #00ffba;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.header__mobile {
  display: block;
  background: none;
  color: black;
  width: 100%;
  height: 100vh;
  background-color: white;
  border: 1rem solid #00ffba;
  position: fixed;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__mobile ul {
  margin-top: 10rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
.header__mobile ul li {
  margin-bottom: 2rem;
}
.header__scrolled {
  background-color: white;
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}

body.page_ header,
body.page_ footer {
  display: none;
}
body.page_ main {
  height: 100vh;
  width: 100vw;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.page_ #errorText {
  font-size: 22px;
  margin: 14px 0;
}
body.page_ #errorLink {
  font-size: 20px;
  padding: 12px;
  border: 1px solid;
  color: #000;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.page_ #errorLink:hover, body.page_ #errorLink:active {
  color: #fff;
  background: #000;
}
body.page_ #g6219 {
  -webkit-transform-origin: 85px 4px;
          transform-origin: 85px 4px;
  -webkit-animation: an1 12s 0.5s infinite ease-out;
          animation: an1 12s 0.5s infinite ease-out;
}
@-webkit-keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

#gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../../assets/img/17545.jpg"), -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.418)));
  background-image: url("../../assets/img/17545.jpg"), linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.418));
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2vh 0;
  margin: 10vh 0;
}

.gallery {
  max-width: 1390px;
  margin: 0 auto;
  width: 90vw;
  /* display the anchor links in a grid */
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  grid-auto-rows: 200px;
  /* center the content horizontally & vertically */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  grid-auto-flow: dense;
  /* remove overflow to give the impression of a zoom when scaling the image up */
  /* update the size of a few selected cells */
  /* the default overflow is substituted by the scale/brightness of the nested images */
  /* stretch the overlay to cover the available viewport */
  /* slight delay as the class is added and the overlay is meant to be shown */
  /* size the image according to both the width and height of the viewport */
  /* absolute position the button in the top right corner of the overlay */
}
.gallery:hover {
  cursor: pointer;
}
.gallery .gallery_element {
  margin: 2px;
}
.gallery .gallery .gallery_element {
  overflow: hidden;
}
.gallery .gallery_element:nth-of-type(2) {
  grid-column: span 2;
}
.gallery .gallery_element:nth-of-type(5) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .gallery_element:nth-of-type(7) {
  grid-row: span 2;
}
.gallery .gallery_element:focus {
  outline: none;
}
.gallery .gallery_element img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  /* transition the scale and brightness of the image when hover/focus-ing on the anchor link */
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gallery .gallery_element:focus img,
.gallery .gallery_element:hover img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.gallery .overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* center te image horizontally & vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: hsla(0, 0%, 0%, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  /* transition the opacity and visibility when the class of .overlay is added on the div container */
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.gallery .overlay-container.overlay {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}
.gallery .overlay-container img {
  height: 90vh;
  width: 85vw;
  max-width: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery .overlay-container button {
  color: inherit;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  padding: 0.25rem;
  outline-color: currentColor;
  /* transition the opacity on hover/focus */
  opacity: 0.5;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.gallery .overlay-container button:hover,
.gallery .overlay-container button:focus {
  opacity: 1;
}
.gallery .overlay-container button svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.gallery__buble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5vh;
}
.gallery__button {
  font-size: 3rem;
  margin-top: 4rem;
  background-color: #00ffba;
  padding: 0.5rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
}
.gallery__button:hover {
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
  color: #00ffba;
  scale: 1.05;
}

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

input,
textarea {
  width: 100%;
  margin: 1rem 0;
  padding: 1rem;
  border: none;
  border-bottom: 2px solid #00ffba;
  resize: none;
}

input[type=submit] {
  font-size: 1.4rem;
  background-color: #00ffba;
  padding: 0.5rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
}
input[type=submit]:hover {
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
  color: #00ffba;
  scale: 1.05;
}

.popup {
  width: 90%;
  height: auto;
  max-height: 90%;
  overflow: hidden;
  position: absolute;
  -o-object-position: top;
     object-position: top;
  z-index: 9999999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  border: 3px solid #00ffba;
}
.popup__exit {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3rem;
  padding: 10px;
  background-color: #00ffba;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
.popup img {
  width: 100%;
  -o-object-position: top;
     object-position: top;
}

.event__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin: 10rem 0 4rem;
  text-align: center;
}
.event__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.event__desc {
  font-size: 1.6rem;
}
.event__button {
  font-size: 2.3rem;
  margin: 0 auto;
  background-color: #00ffba;
  padding: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
  margin-bottom: 5rem;
}

.hero {
  position: relative;
  background-image: url("../../assets/img/bgc.png");
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}
.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 4rem;
}
.hero__bottom {
  height: 100px;
  width: 100%;
  background-image: url("../../assets/img/bottom.png");
  background-size: cover;
  position: absolute;
  bottom: 0;
}

.heroBox {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5rem;
}
.heroBox__text {
  font-size: 1.4rem;
  opacity: 0.8;
}
.heroBox__level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .heroBox {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.heroBox__title {
  margin-top: 5rem;
  font-size: 3rem;
  font-weight: 600;
  color: rgb(36, 36, 36);
  text-transform: uppercase;
}
.heroBox__title--green {
  color: #00ffba;
  background-color: white;
  padding: 0.2rem;
  font-weight: 600;
}
.heroBox__title--underGreen {
  position: relative;
}
.heroBox__title--underGreen mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.heroBox hr {
  margin: 3vh 0;
  width: 50%;
  height: 4px;
  border: none;
  background-color: #00ffba;
}
.heroBox__sportIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px;
  max-width: 90px;
}
.heroBox__sportIcon:hover {
  cursor: pointer;
}
.heroBox__sportIconImage {
  width: 90px;
  height: 90px;
  background-color: #00ffba;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #00ffba;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.heroBox__sportIconImage img {
  width: 70%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.heroBox__sportIconImage:hover {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 15px;
  background-color: white;
  -webkit-transform: translateY(-0.7rem);
          transform: translateY(-0.7rem);
}
.heroBox__sportIconImage:hover img {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  scale: 1.1;
}
.heroBox__desc {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1.5vh;
}
.heroBox__button {
  font-size: 1.4rem;
  background-color: #00ffba;
  padding: 0.5rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
  margin: 1rem auto 3rem;
}
@media screen and (min-width: 990px) {
  .heroBox__button {
    margin: 0;
  }
}
.heroBox__button:hover {
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
  color: #00ffba;
  scale: 1.05;
}

.swiper {
  margin-bottom: 40px;
}

.single-slider {
  width: 300px;
  height: 300px;
}
@media screen and (min-width: 990px) {
  .single-slider {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .single-slider {
    width: 500px;
    height: 500px;
  }
}

.single-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.multi-slider {
  width: 100%;
  height: 300px;
}

.multi-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.multi-slider .swiper-slide img {
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
  font-size: 1.3rem;
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.contact__box--small {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 990px) {
  .contact__box--small {
    width: 25%;
  }
}
.contact__box--big {
  display: none;
}
@media screen and (min-width: 990px) {
  .contact__box--big {
    display: block;
    width: 50%;
  }
}
.contact__menuColumn {
  margin: 0 2rem;
}
.contact__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__pm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__pm img {
  margin-right: 0.2rem;
  width: 20px;
}
.contact__statue {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-size: 600;
}
.contact__statue mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.contact__menuElemnts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact__menuElement {
  font-size: 1.2rem;
}
.contact__menuColumnHeader {
  font-size: 1.3rem;
  background-color: #00ffba;
  padding: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
  margin-bottom: 1rem;
}
.contact__copyright {
  background-color: #00ffba;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .contact__copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact__copyrightLogo {
  width: 100px;
}
.contact__copyrightLogo img {
  width: 100%;
}
.contact__copyrightLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
.contact__copyrightLink {
  margin: 0 5px;
}
.contact__image {
  margin-top: 2rem;
  width: 150px;
  opacity: 0.5;
}

.rules {
  padding: 150px 0;
  min-height: 80vh;
}
.rules__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}
.rules__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.rules__list {
  font-size: 1.7rem;
  list-style: number;
  list-style-position: outside;
  padding: 0;
}
.rules__list li {
  margin: 1rem 0;
}

.about {
  padding: 150px 0;
  min-height: 80vh;
  font-size: 1.4rem;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
  width: 100%;
}
.about__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.about__text {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  line-height: 3rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}
.about__img {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  opacity: 0.2;
  margin-top: 3rem;
}
.about__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__img {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin-top: 0;
  }
}

.price-page {
  padding: 150px 0;
  min-height: 100vh;
}
.price-page__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}
.price-page__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.price-page__title--small {
  font-size: 2.5rem;
}
.price-page__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #00ffba;
  font-size: 2rem;
}
.price-page__element div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price-page__element p:last-child {
  color: white;
  background-color: #00ffba;
  padding: 1rem;
  font-weight: 700;
}
.price-page__discount {
  font-size: 1rem;
  text-align: right;
}

.contact-page {
  padding: 150px 0;
  min-height: 100vh;
}
.contact-page__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
  width: 100%;
  margin-bottom: 5rem;
}
.contact-page__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.contact-page__question {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-page__question mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}
.contact-page__map {
  margin-top: 5rem;
}
.contact-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-page__data {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact-page__data {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.contact-page__form {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .contact-page__form {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.contact-page__dataElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-page__dataElement img {
  width: 3rem;
  margin-right: 1rem;
}
.contact-page__dataElement p {
  font-size: 1.8rem;
}

.offer {
  padding: 150px 0;
  min-height: 100vh;
}
.offer__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}
.offer__title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}

.offerBox {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
.offerBox__sportIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px;
}
.offerBox__sportIcon:hover {
  cursor: pointer;
}
.offerBox__sportIconImage {
  width: 150px;
  height: 150px;
  background-color: #00ffba;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #00ffba;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 990px) {
  .offerBox__sportIconImage {
    width: 20vh;
    height: 20vh;
  }
}
.offerBox__sportIconImage img {
  width: 70%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.offerBox__sportIconImage:hover {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 15px;
  background-color: white;
  -webkit-transform: translateY(-0.7rem);
          transform: translateY(-0.7rem);
}
.offerBox__sportIconImage:hover img {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  scale: 1.1;
}
.offerBox__desc {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 3vh;
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 150px 0 20px;
}
@media screen and (min-width: 768px) {
  .product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.entry-summary {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  margin-left: 2%;
}

.product_title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
  text-align: left;
}
.product_title mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
  background-color: #00ffba;
}

.product__text p {
  font-size: 1.8rem;
}
.product__text p strong {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.woocommerce-Price-amount {
  font-size: 2rem;
  color: rgb(68, 68, 68);
  background-color: #00ffba;
  padding: 0.5rem;
  font-weight: 600;
}

.product_meta {
  display: none;
}

.woocommerce-product-details__short-description {
  font-size: 1.4rem;
}

.woocommerce-product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.yith-wcbk-booking-form label.yith-wcbk-booking-form__label {
  font-size: 1.4rem;
}

.yith-wcbk-add-to-cart-button {
  font-size: 1.4rem;
  background-color: #00ffba;
  padding: 0.5rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-right-radius: 1.5rem;
  border: 2px solid #00ffba;
}
.yith-wcbk-add-to-cart-button:hover {
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
  color: #00ffba;
  scale: 1.05;
}

.product__bgc {
  background-image: url("../../assets/img/image1766.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 4rem;
}

.singleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  border-bottom: 2px solid gray;
}
.singleBox__sportIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px;
}
.singleBox__sportIcon:hover {
  cursor: pointer;
}
.singleBox__sportIconImage {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #00ffba;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.singleBox__sportIconImage img {
  width: 70%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.singleBox__sportIconImage:hover {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 15px;
  background-color: white;
  -webkit-transform: translateY(-0.7rem);
          transform: translateY(-0.7rem);
}
.singleBox__sportIconImage:hover img {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  scale: 1.1;
}
.singleBox__desc {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 3vh;
}

.yith-wcbk-date-picker--inline .ui-datepicker td.ui-datepicker-current-day a {
  background-color: #00ffba;
}

.yith-wcbk-date-picker--inline .ui-datepicker td.ui-datepicker-current-day a {
  width: 100% !important;
}

@font-face {
  font-family: star;
  src: url(../fonts/star.eot);
  src: url(../fonts/star.eot?#iefix) format("embedded-opentype"), url(../fonts/star.woff) format("woff"), url(../fonts/star.ttf) format("truetype"), url(../fonts/star.svg#star) format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: WooCommerce;
  src: url(../fonts/WooCommerce.eot);
  src: url(../fonts/WooCommerce.eot?#iefix) format("embedded-opentype"), url(../fonts/WooCommerce.woff) format("woff"), url(../fonts/WooCommerce.ttf) format("truetype"), url(../fonts/WooCommerce.svg#WooCommerce) format("svg");
  font-weight: 400;
  font-style: normal;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-product-single {
  height: 500px;
}
.swiper-product-single img {
  -o-object-fit: cover;
     object-fit: cover;
}
