/*---------------------------------------
  Animation
-----------------------------------------*/
@keyframes slideinleft {
  from {
    transform: translateX(-300px);
  }

  to {
    transform: translateX(0px);
  }
}

@keyframes popin {
  from {
    opacity: 0;
    transform: scale(1.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*---------------------------------------
  Scroll Effect
-----------------------------------------*/
::-webkit-scrollbar-thumb {
  background: var(--grey);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--active);
}

.scrollX::-webkit-scrollbar, div::-webkit-scrollbar{
  display: none;
}

/*---------------------------------------
  NAVBAR        
-----------------------------------------*/
.navbar {
  position: sticky;
  background: linear-gradient(to bottom, #3d3d3d, #141414 75px);
  border-bottom: 1px solid var(--grey);
  top: 0;
  z-index: 666;
}
.pattern *{
  z-index: 5;
}
.navbar::before, .pattern::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 5%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  background: url(../img/bg.png) top;
  z-index:0;
}
.navbar::before{
  height: 70px;
}

.navigation-container{
  height: 100%;
  max-height: 70px;
}
.navbar-nav, .navbar-icon{
  height: 100%;
}
.navbar-brand img {
  max-height: 80px;
}

.navbar-nav.mobile .nav-link:last-child {
  margin-bottom: 25px;
}

.collapse.show,
.collapsing {
  transition: all 0s ease-in-out !important;
}

.nav-link,
.btn_hamburger,
.btn_navclose {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-wrap: nowrap;
  text-transform: uppercase;
  height: 100%;
  z-index: 5;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.btn_navclose {
  position: absolute;
  max-height: 70px;
  top: 0;
  right: 15px;
  border: none;
  border-radius: 0;
}

.nav-link {
  font-family: var(--mainfont);
  font-size: 12px;
  padding: 10px 20px !important;
  text-align: center;
  line-height: 16px;
}

.icon .nav-link {
  max-width: 50px;
}

.nav-link:hover,
.nav-link:focus,
.btn_hamburger:hover,
.btn_hamburger:focus,
.navbar-nav.mobile .nav-link:hover,
.navbar-nav.mobile .nav-link:focus{
  color: var(--highlight);
  border-bottom: 2px solid var(--highlight) !important;
}
.nav-link.btn_navclose:hover,
.nav-link.btn_navclose:focus{
  color: var(--highlight);
  border: unset !important;
  border-radius: 0;
}

.nav-link.dropdown_nav {
  position: relative;
  cursor: pointer;
}

.dropdown_nav span.material-symbols-outlined {
  margin-right: -10px;
}

.dropdown_navwrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100vw;
  padding: 20px 5vw 30px 5vw;
  background: var(--black);
  overflow: hidden;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .35));
  transition: opacity 0.2s ease;
  z-index: 10;
  display: flex;
  gap: 15px;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.dropdown_nav:hover .dropdown_navwrapper,
.dropdown_navwrapper:hover {
  visibility: visible;
  opacity: 1;
}

.dropdown_navwrapper .nav-link {
  font-family: var(--bodyfont);
  font-weight: 600;
  font-size: 12px;
  max-width: fit-content;
  border-radius: 50px;
  border: none;
  background: #343434;
}
.dropdown_navwrapper .nav-link:hover {
  color: var(--white);
  background: var(--grey);
  border: none !important;
}

.btn_hamburger {
  border: none;
  border-radius: 0;
  padding: unset;
  display: none;
}

.btn_hamburger span {
  color: white;
}

.tooltip {
  opacity: 1;
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 105%;
  /* Position above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  font-size: 12px;
  z-index: 100;
}

.tooltip:hover::after {
  opacity: 1;
}

.nav_logout {
  display: none;
}

.nav_account{
  display: none;
}

#loggedin .nav_logout {
  display: flex;
}

#loggedin .nav_account {
  display: flex;
}

#loggedin .nav_login {
  display: none;
}

.navbar-nav.mobile{
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  gap: 0;
  padding-top: 70px;
  overflow-y: scroll;
}
.navbar-nav.mobile .nav-link:not(.btn_navclose) {
  width: 100%;
  font-size: 14px;
  padding: 35px 15px !important;
  padding-bottom: 30px !important;
  text-align: start;
  text-wrap: wrap;
  justify-content: flex-start;
  line-height: 16px;
  border-bottom: 2px solid var(--grey);
}

@media only screen and (min-width: 1239px) {
  .navbar-nav.mobile{
    display: none;
  }
}

@media only screen and (max-width: 1240px) {
  .navbar-brand img {
    max-height: 75px;
  }
  .navbar-nav:not(.mobile) {
    display: none;
  }

  .btn_hamburger {
    display: flex !important;
  }
}


@media only screen and (max-width: 1240px) {
  .navbar-brand img {
    max-height: 75px;
  }
  .navbar-nav:not(.mobile) {
    display: none;
  }

  .btn_hamburger {
    display: flex !important;
  }
}

@media only screen and (max-width: 400px) {
  .navbar-icon{
    gap: 10px;
  }
  .icon .nav-link,
  .btn_hamburger {
    padding: 0 !important;
    width: 35px;
    max-width: 35px;
  }
}

@media only screen and (max-width: 500px) {
  .rps500_a_fs {
    align-items: flex-start !important;
  }
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.btn_social {
  width: 35px;
  aspect-ratio: 1/1;
  max-width: calc(90vw / 6);
}

.btn_social img {
  filter: saturate(0) brightness(100);
  width: 100%;
  max-width: fit-content;
}

.btn_social:hover img {
  filter: unset;
  width: 100%;
}

.footer {
  background: var(--white);
  gap: 10px;
  padding: var(--p_l) 0;
}

.nav_footer {
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--grey);
}

.nav_footer:hover {
  color: var(--white);
}
@media (max-width: 768px) {
  .footer .maincontainer, .footer .maincontainer *{
    align-items: center !important;
    justify-content: center !important;
  }
}
@media (max-width: 460px) {
  .navwrpper_footer {
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
  }
}

/*---------------------------------------
  ELEMENTS
-----------------------------------------*/
section.fitsize {
  height: fit-content !important;
}

.darkbg {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 5;
}

a,
h1,
h2,
p {
  z-index: 5;
}

.title {
  font-size: calc(var(--txt_body) + 5px);
  line-height: calc(var(--txt_body) + 10px);
  font-weight: var(--medium);
}

label {
  color: var(--white);
  margin: 0 !important;
}

label2 {
  color: #000000;
  margin: 0 !important;
}

input:not([type="checkbox"]):not([type="radio"]) {
  max-width: 90vw;
  max-height: 50px;
  border-radius: 6px;
  /* padding: 10px 25px !important; */
  padding: 10px 15px;
  font-size: var(--txt_body) !important;
}

textarea {
  width: 100%;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 15px !important;
  font-size: var(--txt_body) !important;
}

.dropdown {
  position: relative;
  width: 100%;
  border-radius: 6px !important;
}

.dropdown_toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px !important;
  color: var(--black);
  border-radius: 6px !important;
  background: #fff;
  cursor: pointer;
}

.dropdown_toggle:hover {
  background: rgb(231, 231, 231);
}

.dropdown_menu {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  margin-top: 5px;
  border: 1px solid var(--white);
  border-radius: 6px !important;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .5));
}

.dropdown_menu li {
  height: 50px;
  padding: 10px 25px !important;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
}

.dropdown_menu li:hover {
  background-color: var(--active);
  color: #fff;
}

.arrow {
  color: var(--grey);
  margin-left: 10px;
  font-size: 20px;
}

.formcheck_input,
input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  height: 10px;
  cursor: pointer;
}

.formcheck_label {
  font-size: var(--txt_s);
  cursor: pointer;
}

.formcheck_label:hover {
  color: var(--highlight);
}

table {
  min-width: 400px;
  margin-top: var(--p_s);
  color: var(--white);
}

thead {
  border-bottom: 1px solid rgba(225, 225, 225, .35);
}

th {
  font-size: var(--txt_heading);
  line-height: calc(var(--txt_heading) - 2px);
}

th,
td {
  padding: 15px;
}

.page_link {
  width: 20px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_link:hover,
.page_link.active {
  color: var(--highlight);
}

.page_link.disabled {
  color: var(--grey);
  opacity: .75;
  pointer-events: none;
}

.modal {
  pointer-events: none;
}

.modalwrapper {
  position: relative;
  z-index: 9999;
}

.modal-content {
  background: var(--green);
  height: fit-content;
  max-height: 500px !important;
  overflow-y: scroll !important;
  padding: var(--p_l) calc(var(--p_s) + 10px);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
}

.gradientbg {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5));
}

.tag,
.btn_tag {
  width: fit-content;
  text-wrap: nowrap;
  font-weight: var(--medium);
  color: var(--green);
  background: var(--highlight);
  padding: 0 15px;
  border-radius: 50px;
}

.btn_otp {
  color: var(--grey);
  padding: 10px 25px 10px 15px;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  background: white;
  border-left: var(--grey);
}

.btn_otp:hover {
  background: #dfdfdf
}

.btn_tag {
  font-size: 24px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn_tag:hover,
.btn_tag.active {
  background: var(--highlight);
}

.btn_cta,
.btn_payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  color: var(--white);
  padding: 15px 35px;
  border-radius: 6px;
  max-width: fit-content;
  max-height: 50px;
  background: var(--darkgrey);
  gap: 25px;
  text-wrap: nowrap;
}
.btn_cta.dark{
  border: 1px solid var(--grey);
}
.btn_cta:has(span) {
  justify-content: space-between;
}

.btn_cta.hl{
  min-width: 250px;
  padding: 30px 35px;
}

.btn_payment {
  max-height: unset;
}

.btn_cta:hover,
.btn_payment:hover {
  background: #252525;
  transition: all .3s ease;
}
.btn_cta.is-disabled{
  opacity: .35;
  pointer-events: none;
}
.btn_cta p{
  font-family: var(--mainfont);
}
.btn_cta span:not(.normsz){
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: padding .3s ease;
}

.btn_more{
  position: relative;
  width: fit-content;
}
.btn_more::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
}
.btn_more:hover{
  color: var(--highlight);
}
.btn_more:hover::after{
  width: 100%;
  transition: all .35s;
}


.btn_close {
  position: absolute;
  right: 0;
  bottom: 102%;
  cursor: pointer;
  pointer-events: all;
}

.btn_close span,
.btn_close:hover span {
  margin: 0;
  padding: 0;
}

.btn_cta.prev,
.btn_cta.next,
.btn_close {
  padding: unset;
  justify-content: center;
  height: 30px;
  aspect-ratio: 1/1 !important;
}

.btn_cta.prev:hover span,
.btn_cta.next:hover span {
  padding: 0;
}

.btn_txt:hover {
  color: var(--highlight);
}

.btn_txt.link {
  color: var(--highlight);
  font-style: italic;
  text-decoration: underline;
  pointer-events: all;
  cursor: pointer;
}

.btn_calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  padding: 10px 25px;
  border-radius: 50px;
  max-width: fit-content;
  height: 50px;
  background: var(--white);
  gap: 10px;
  text-wrap: nowrap;
}

.btn_calendar:hover {
  background: var(--highlight);
}

.btn_calendar span {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  transition: padding .3s ease;
}

.btn_showPW {
  position: absolute;
  top: 5px;
  right: 5px;
}

.btn_showPW span {
  font-size: var(--txt_body);
  color: var(--grey);
}

@media (max-width: 768px) {
  .btn_tag {
    font-size: 18px;
  }

  .btn_cta,
  .dropdown_toggle,
  .dropdown_menu li {
    padding: 5px 25px;
    height: 40px;
  }

  .btn_social {
    width: 40px;
  }

  .btn_calendar {
    height: 40px;
  }

  .btn_close {
    padding: 0;
  }

}

.tabwrapper {
  border-radius: 15px;
  gap: 5px;
}

.tab_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 5px;
  padding: 10px var(--p_l);
  text-wrap: nowrap;
  border-radius: 5px;
  /* font-size: calc(var(--txt_body) + 5px); */
  background-image: linear-gradient(to bottom, var(--active), var(--lightgreen));
}

.tab_btn:hover {
  color: var(--highlight);
}

.tab_btn.active {
  color: var(--black);
  background: var(--highlight);
}

@media only screen and (max-width: 1024px) {
  .filterwrapper {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 5vw;
  }
}

thead td {
  font-weight: 600;
}

td {
  padding-bottom: 15px;
  border: 1px solid rgba(225, 225, 225, .25);
  font-size: 14px;
}


.video_container {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 auto;
  background: black;
}

.bgvideo {
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  Slider
-----------------------------------------*/
.sliderwrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--p_s);
  overflow-x: auto;
  padding: 0 clamp(5vw, calc((100vw - 1610px) / 2 ), calc((100vw - 1610px) / 2 ));
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0),
    black 10vw,
    black calc(100% - 10vw),
    rgba(0,0,0,0)
  );
}

.sliderwrapper::-webkit-scrollbar {
  display: none;
}

.slider {
  overflow: hidden;
}

.cardwrapper {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: var(--p_s);
  width: fit-content;
}

.carditem {
  width: 350px;
  max-width: 90vw;
  position: relative;
  box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.carditem::before {
  content: "";
  position: absolute;
  width: 102%;
  height: 80%;
  background-image: linear-gradient(to top, var(--black), rgba(0, 0, 0, 0));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: .95;
  pointer-events: none;
}

.carditem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carditem:hover img {
  transform: scale(1.1);
  transition: all .3s ease;
}
.carditem h1{
  font-size: 16px;
  line-height: 16px;
}

.carditem h1,
.carditem p:not(.tag) {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-page .carditem h1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.index-page .carditem {
    display: flex;
    flex-direction: column;
}

.index-page .carditem img {
    margin-top: auto;
    height: 180px;
    object-fit: cover;
}


@media only screen and (max-width: 768px) {
  .sliderwrapper {
    max-width: 100vw;
  }

  .slider {
    padding: 0 5vw;
  }

  /* .cardwrapper:not(.fwrap)::after {
    content: "";
    display: block;
    width: calc(5vw / 2);
    flex-shrink: 0;
  } */
}
/*---------------------------------------
  Merch
-----------------------------------------*/
.winnercard{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px;
  width: 100%;
  max-width: calc((100% / 3) - 10px);
  border-radius: var(--border_l);
}
.winnercard h1{
  font-size: clamp(40px, var(--txt_heading), 2.5vw);
  list-style: clamp(40px, var(--txt_heading), 2.5vw);
}
.winnercard.p1{
  background: linear-gradient(45deg, #5f4500,#e3a600);
} 
.winnercard.p2{
  background: linear-gradient(45deg, #00684a,#20e7ae);
}
.winnercard.p3{
  background: linear-gradient(45deg, #9e2500,#ff8661);
}
@media only screen and (min-width: 768px) {
  .winnercard.p1{
    gap: 65px;
    order: 2;
  } 
  .winnercard.p2{
    gap: 40px;
    order: 1;
  }
  .winnercard.p3{
    gap: 30px;
    order: 3;
  }
}

.countryicon{
  display: flex;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
  margin-bottom: 10px;
}
.winnerimg{
  width: 100%;
  aspect-ratio: 4/2.25;
  object-fit: cover;
}

@media only screen and (max-width: 910px) {
  .winnerwrapper {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .winnercard{
    max-width: unset;
  }
  .winnercard h1{
    font-size: var(--txt_heading);
  }
}

/*---------------------------------------
  Merch
-----------------------------------------*/
#merch .carditem{
  aspect-ratio: 1/1;
}

/*---------------------------------------
  News
-----------------------------------------*/
#sliderNews.sliderwrapper {
  width: 100%;
}

#sliderNews .carditem{
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--p_s);

}

#sliderNews .carditem::before,
#news .carditem::before {
  height: 100%;
}

#sliderNews .carditem img,
#news .carditem img,
#sliderCar .carditem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all .3s ease;
}

#sliderNews .carditem:hover img,
#news .carditem:hover img,
#sliderCar .carditem:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  transition: all .3s ease;
}

@media only screen and (max-width: 650px) {
  #sliderNews .carditem,
  #news .carditem {
    padding: 25px var(--p_s);
  }
}

#newsContent .maincontainer {
  align-items: stretch;
}

#newsContent .maincontainer p {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#news .carditem {
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--p_s);
  min-width: 30%;
}

.hashtagwrapper a {
  font-style: italic;
  color: var(--highlight);
}

.hashtagwrapper a:hover {
  text-decoration: underline;
}

#newsContent img {
  height: auto !important;
  max-width: 100% !important;
}

#newsContent .text-left,
#newsContent p.text-left,
#newsContent div.text-left {
    text-align: left !important;
}

#newsContent .text-center,
#newsContent p.text-center,
#newsContent div.text-center {
    text-align: center !important;
}

#newsContent .text-right,
#newsContent p.text-right,
#newsContent div.text-right {
    text-align: right !important;
}

#newsContent .text-justify,
#newsContent p.text-justify,
#newsContent div.text-justify {
    text-align: justify !important;
}



/*---------------------------------------
  KV
-----------------------------------------*/
#KV{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 35px 0 30px 0;
}

.kvwrapper {
  position: relative;
  width: 100%;
  max-width: 90vw;
  max-height: 500px;
  aspect-ratio: 16/9;
  background: url(../img/kv.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
}

.kvwrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
  z-index: 5;
}

@keyframes kv_video {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#KV .video_container {
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* aspect-ratio: 16/9; */
  overflow: hidden;
  opacity: 0;
  animation: kv_video 1s ease-in-out forwards;
  animation-delay: 1s;
  pointer-events: none;
}

#KV .bgvideo {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

#KV .taglinewrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.taglinewrapper h1,
.taglinecarousel span {
  font-family: var(--mainfont);
  font-weight: var(--bold);
  text-align: center;
  font-size: clamp(25px, var(--txt_xl), 50px);
  line-height: clamp(25px, var(--txt_xl), 50px);
}

.taglinewrapper h1 {
  color: var(--white);
}

#grandFinal .taglinewrapper h1,
#grandFinal .taglinecarousel span {
  font-size: var(--txt_l);
  line-height: var(--txt_l);
}

.taglinecarousel span {
  display: none;
  opacity: 0;
}

.taglinecarousel span.active {
  display: unset;
  opacity: 1;
  animation: popin .3s ease-in forwards;
}

#homeHighlight .maincontainer > a.btn_cta{
  flex: 1 1 0;        
  width: auto;
  min-width: fit-content;
  max-width: unset;
}

@media only screen and (max-width: 600px) {
  #homeHighlight .maincontainer > a.btn_cta{
    min-width: 100%;
  }
}

/*---------------------------------------
  Section
-----------------------------------------*/
#topBanner {
  position: relative;
  height: fit-content;
  min-height: 20vh;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 !important;
}

#topBanner * {
  z-index: 5;
}

#topBanner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
  left: 0;
  bottom: 0;
  z-index: 0;
}

.topbanner {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1 !important;
}

.topheader {
  margin-top: 100px;
  padding-bottom: 25px;
}

.bannerwrapper {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  /* position: relative; */
}

.bannerwrapper img {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bannerwrapper.fit img {
  object-fit: contain;
}

/*---------------------------------------
  About
-----------------------------------------*/
.tab-content>.active {
  display: flex;
}

.about_tab {
  width: 25%;
  filter: saturate(0);
  opacity: .5;
  transition: all .3s ease;
}

.about_tab:hover,
.about_tab.active {
  filter: unset;
  opacity: 1;
  transition: all .3s ease;
}

.about_tab img {
  width: 100%;
}

#aboutRule {
  position: relative;
  height: fit-content;
  background: url(../img/about/aboutbg.png) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#aboutRule::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, .5));
  opacity: .75;
}

#aboutIntro {
  border-bottom: 1px solid rgba(225, 225, 225, .35);
}

.quotewrapper {
  position: relative;
  z-index: 1;
}

.quotewrapper::before {
  content: "";
  position: absolute;
  width: 101px;
  max-width: 20%;
  max-height: 20%;
  aspect-ratio: 101 / 47;
  top: -5px;
  left: -10px;
  transform-origin: top left;
  background: url(../img/about/deco.png) top left no-repeat;
  background-size: contain;
  z-index: -1;
}

@media only screen and (max-width: 1102px) {
  #aboutContact * {
    flex-grow: 1;
    align-items: flex-start;
    justify-content: flex-start;

  }
}

/*---------------------------------------
  World
-----------------------------------------*/
.mapwrapper {
  flex-shrink: 1;
}
.statwrapper h2 {
  color: var(--highlight);
  font-size: var(--txt_heading);
  line-height: calc(var(--txt_heading) - 2px);
}

.statwrapper p {
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .worldwrapper {
    justify-content: flex-start !important;
    flex-direction: column;
  }
  .statwrapper,
  .statwrapper>* {
    align-items: center !important;
    justify-content: center !important;
  }
  .statwrapper p {
    font-size: 10px;
  }
}

/*---------------------------------------
  Map
-----------------------------------------*/
.mapcontainer {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 15px auto;
  z-index: 5;
  overflow: visible !important;
}

.map_location {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

.map_icon {
  position: relative;
  background: var(--highlight);
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 2;
}

@keyframes zoom {
  from {
    opacity: 0;
    transform: scale(2);
  }

  to {
    opacity: 0.75;
    transform: scale(1);
  }
}

.map_icon::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  z-index: -1;
  border-radius: 50%;
  background: var(--highlight);
  animation: zoom 1s ease-in-out infinite reverse;
}

.map_icon img {
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.map_location:hover {
  z-index: 10;
}
.map_location:hover .map_icon {
  transform: scale(1.2);
}

.map_location .tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black);
  color: #fff;
  padding: 6px 10px;
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
  text-align: center;
  will-change: transform, opacity;
}

.map_location:hover .tooltip {
  opacity: 1;
}

.map_location.left .tooltip {
  left: 0;
  transform: translateX(0%);
  text-align: left;
}

.map_location.right .tooltip {
  right: 0;
  left: auto;
  transform: translateX(0%);
  text-align: right;
}

@media (max-width: 600px) {
  .map_location .tooltip {
    white-space: normal;
    font-size: 12px;
    padding: 8px 12px;
    max-width: 180px;
  }
}


/*---------------------------------------
  Event
-----------------------------------------*/
#homeEvent {
  position: relative;
  max-height: fit-content;
  background: url(../img/eventbg.png) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#homeEvent::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
  mix-blend-mode: multiply;
}

@media only screen and (max-width: 450px) {
  #homeEvent div {
    align-items: center;
    justify-content: center !important;
  }
}

.search_box {
  position: relative;
  height: 100%;
}

.btn_search {
  color: var(--grey);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_search:hover {
  color: var(--active);
}

.eventwrapper {
  display: none;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .5));
}

.datewrapper {
  height: 100%;
  width: 20%;
  background: var(--black);
  padding: 0 var(--p_l);
}

.date_day {
  font-size: var(--txt_l);
  font-weight: var(--bold);
  line-height: var(--txt_l);
}

.date_month,
.date_year {
  --txt_heading: 24px;
  font-size: var(--txt_heading);
  line-height: var(--txt_heading);
}

@media only screen and (max-width: 768px) {
  .datewrapper {
    width: unset;
  }

  .date_month,
  .date_year {
    --txt_heading: 16px;
  }
}

#eventContent {
  gap: 25px;
}

#eventContent img {
  width: 100%;
  max-width: fit-content;
}

#eventContent p {
  text-wrap: wrap;
}

.eventcontentwrapper {
  padding: calc(var(--p_s) + 10px) 0;
  flex: 1;
  height: 100%;
  background: var(--active);
  background-image: linear-gradient(45deg, var(--green), var(--active));
  /* background-image: linear-gradient(45deg, var(--active), var(--lightgreen)); */
}

.tagwrapper {
  width: 100%;
  overflow-x: scroll;
  padding: 0 25px;
}

.contentwrapper {
  width: 100%;
  padding: 0 25px;
}

.contentwrapper h1,
.contentwrapper p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.contentwrapper p {
  font-weight: 200;
}

.contentwrapper .btn_cta:hover {
  color: var(--black);
  background: var(--highlight);
}

.eventcontent {
  max-width: 700px;
}

/*---------------------------------------
   Gallery
-----------------------------------------*/
#homeGallery,
#gallery {
  padding-bottom: 10px !important;
}

#gallery {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.galleryitem {
  width: calc(25% - 8px);
  aspect-ratio: 4 / 3;
  border-radius: var(--border_s);
  overflow: hidden;
  cursor: pointer;
}

.galleryitem img {
  transition: all .3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galleryitem:hover img {
  scale: 1.1;
  transition: all .3s;
}

@media only screen and (max-width: 1024px) {
  .galleryitem {
    width: calc(33.3% - 15px);
  }
}

@media only screen and (max-width: 600px) {
  .galleryitem {
    width: calc(50% - 15px);
  }
}

@media only screen and (min-width: 425px) {
  #gallery .filterwrapper {
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 0 5vw;
  }
}

/* Modal styling */
.imageitem {
  cursor: pointer;
  border-radius: var(--border_s);
}

.imageitem img {
  width: 100%;
}

.imagemodal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.imagemodal_content {
  position: relative;
  width: fit-content;
  height: 70vh;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.imagemodal_content img {
  height: fit-content;
  max-width: 90vw;
  max-height: 100%;
}

.imagemodal_backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/*---------------------------------------
  Login
-----------------------------------------*/
#login input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}

.loginwrapper,
.registerwrapper {
  width: 650px;
  max-width: 90vw;
  margin: auto;
  padding: var(--p_l);
}

.logo {
  width: fit-content;
  max-width: 70%;
}

.logo_s {
  width: fit-content;
  max-width: 30%;
}

.btn_login {
  font-size: var(--txt_s);
  color: var(--white);
  text-wrap: nowrap;
}

.btn_login:hover {
  color: var(--highlight);
}

#newPassword {
  display: none;
  border-top: 1px solid rgba(225, 225, 225, .35);
  margin-top: 20px;
  padding-top: 10px;
}

#newPassword.show {
  display: flex;
}

/*---------------------------------------
  Member
-----------------------------------------*/
.tablewrapper {
  overflow-x: auto;
}

#member td {
  border: none !important;
}

.contactwrapper {
  position: relative;
  background: url(../img/banner/contact_banner.png) center no-repeat;
  background-size: cover;
  z-index: 1;
  aspect-ratio: 2 / 2.35;
}

.contactwrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .5));
  background-size: cover;
  z-index: -1;
}

/*---------------------------------------
  Store
-----------------------------------------*/
#storeHighlight {
  background: white;
}

/*---------------------------------------
  RFC Grand Final
-----------------------------------------*/
#RFCfinal .imageitem {
  width: unset;
  aspect-ratio: 3/3.5;
  max-height: 350px;
  max-width: fit-content;
}

#galleryScore .imageitem {
  width: unset;
  max-height: 350px;
  max-width: fit-content;
}

.pdf_reader {
  height: fit-content;
  border-radius: var(--border_s);
  overflow: hidden;
}

.pdf_reader iframe {
  height: fit-content;
  max-height: 70vh;
  aspect-ratio: 1/1.41;
}

.pdf_reader .btn_cta {
  width: 100%;
  min-width: 100%;
  border-radius: 0;
}

/*---------------------------------------
  Car Rental
-----------------------------------------*/
#sliderCar {
  width: 1200px;
}

#sliderCar .cardwrapper {
  align-items: center;
  justify-content: center;
}

#sliderCar .carditem {
  width: 300px;
  max-width: 300px;
  min-height: 300px;
  max-height: 350px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--p_s);
}

#thumbnail {
  width: 100%;
  max-width: 400px;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
}

#thumbnail .slider {
  padding: 0 !important;
}

.thumbnail_img {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.thumbnail_img::before {
  content: none;
}

.thumbnail_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumbnail_btn {
  position: absolute;
  top: calc(100% + var(--p_s));
  left: 0;
}

.thumbnail_btn span {
  font-size: 15px;
}

.thumbnail_btn button:hover {
  color: var(--highlight);
}

.productwrapper {
  width: 100%;
  max-width: 375px;
  margin-bottom: 25px;
}

.product_price {
  color: var(--highlight);
}

.product_status {
  display: none;
}

/* UNAVAILABLE */
.unavailable .product_price {
  color: var(--grey);
}

.unavailable .product_status {
  display: flex;
}

.unavailable .product_payment {
  display: none;
}

.product_car {
  width: 100%;
}

.product_car:hover img {
  transform: unset;
}

.product_car::before {
  content: none;
}

.product_payment {
  min-width: 60%;
  margin-bottom: var(--p_s);
}

.product_content {
  padding: var(--p_s) 0;
}

.product_content p {
  font-weight: 200;
}

.product_footer * {
  font-size: var(--txt_s);
  color: #e4e4e4;
}

.categorieswrapper a:not(:last-child)::after {
  content: '/';
  margin-left: 5px;
  color: var(--white);
  pointer-events: none;
}

@media only screen and (max-width: 768px) {

  #sliderCar .carditem,
  .product_car {
    width: 100%;
    max-width: unset;
  }

  .product_car {
    min-width: unset;
  }
}

.g-recaptcha {
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}