/*
Theme Name: Nitro 
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Nitro - Sports Multipurpose HTML Template
Service Html Template 
Version: 1.0.0
*/
/*==========================================================================
    Table of Contents
==========================================================================

01. Basic
    01.1 Mixins
    01.2 Variables
    01.3 Buttons
    01.4 Typography

02. Template Sections
    02.1 About
    02.2 Animation
    02.3 Brand
    02.4 Contact
    02.5 Call To Action (CTA)
    02.6 Match
    02.7 Feature
    02.8 Footer
    02.9 Header
    02.10 Helping
    02.11 Hero
    02.12 MeanMenu
    02.13 News
    02.14 Preloader
    02.15 Section
    02.16 Team
    02.17 Testimonial

==========================================================================*/
/*==========================================================================
    01. Basic
==========================================================================*/
/* 01.1 Mixins */
/* 01.2 Variables */
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  color-scheme: light;
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #FE5900;
  --header: #030523;
  --text: #434343;
  --border: #FCFCFC;
  --bg: #F5F6F6;
  --bg2: #030523;
  --bg3: #F7F3EE;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
  --page-bg: #ffffff;
  --page-text: #434343;
  --surface: #ffffff;
  --surface-2: #f5f6f6;
  --ink: #030523;
  --muted: #6b7280;
  --line: rgba(3, 5, 35, 0.1);
}

/* Giriş sayfalarında Başvuru yapın / Kayıt olun / Katılın */
.ft-join-link {
  color: var(--theme) !important;
  font-weight: 700;
  text-decoration: none;
}
.ft-join-link:hover,
.ft-join-link:focus {
  color: var(--theme) !important;
  text-decoration: underline;
}

/* 01.3 Buttons */
.theme-btn {
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 58px;
  line-height: 58px;
  background-color: var(--theme);
  overflow: hidden;
  display: inline-block;
  padding: 0 34px;
  color: var(--white);
}
@media (max-width: 575px) {
  .theme-btn {
    font-size: 14px;
    padding: 0 25px;
    height: 52px;
    line-height: 52px;
  }
}
.theme-btn::before {
  content: "";
  position: absolute;
  width: 0;
  top: -10px;
  height: 0;
  background-color: var(--header);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease;
  z-index: -1;
}
.theme-btn.bg-white {
  color: var(--header);
  background-color: var(--white);
}
.theme-btn.bg-white::before {
  background-color: var(--theme);
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before {
  width: 800px;
  height: 800px;
  display: inline-block;
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.link-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme);
  text-decoration: underline;
}
.link-btn i {
  margin-left: 6px;
}

/* 01.4 Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--page-text);
  background-color: var(--page-bg);
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* Site geneli uppercase; e-postalar her zaman küçük harf */
.email-text,
a[href^="mailto:"],
input[type="email"] {
  text-transform: lowercase !important;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Big Shoulders", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

h1 {
  font-size: 100px;
  font-weight: 900;
  line-height: 109%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.5px;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 134%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
    line-height: 145%;
  }
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

/*==========================================================================
    02. Template Sections
==========================================================================*/
/* 02.1 About */
.about-wrapper .about-image {
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper .about-image .thumb1 {
  position: absolute;
  left: -70px;
  bottom: 80px;
}
@media (max-width: 767px) {
  .about-wrapper .about-image .thumb1 {
    left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image .thumb1 {
    max-width: 140px;
  }
}
.about-wrapper .about-image .thumb2 {
  position: absolute;
  right: 50px;
  top: 50px;
}
@media (max-width: 575px) {
  .about-wrapper .about-image .thumb2 {
    max-width: 140px;
  }
}
.about-wrapper .about-content .about-text {
  margin-top: 25px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 25px;
}
.about-wrapper .about-content .about-list-items {
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper .about-content .about-list-items ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--header);
}
.about-wrapper .about-content .about-list-items ul li:not(:last-child) {
  margin-bottom: 18px;
}
.about-wrapper .about-content .about-list-items ul li i {
  color: var(--theme);
  font-size: 20px;
}

.about-section {
  position: relative;
  z-index: 9;
}
.about-section .left-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .left-shape {
    display: none;
  }
}
.about-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .right-shape {
    display: none;
  }
}
.about-section .right-shape img {
  height: 100%;
}

.about-wrapper-2 .about-image-items {
  position: relative;
  z-index: 9;
}
.about-wrapper-2 .about-image-items .about-image {
  max-width: 472px;
  position: relative;
}
.about-wrapper-2 .about-image-items .about-image .text-circle {
  position: absolute;
  bottom: 30px;
  right: -60px;
  z-index: 9;
  animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image-items .about-image .text-circle {
    right: initial;
    left: 0;
  }
}
.about-wrapper-2 .about-image-items .about-image .text-circle .ball-cicrle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #FFEEE7;
  text-align: center;
  line-height: 100px;
}
.about-wrapper-2 .about-image-items .about-image .text-circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 188px;
  height: 188px;
  background-color: #F5F6F6;
  border-radius: 50%;
  z-index: -1;
}
.about-wrapper-2 .about-image-items .about-image .text-circle img {
  width: initial;
  height: initial;
}
.about-wrapper-2 .about-image-items .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img {
  position: absolute;
  max-width: 254px;
  top: 14%;
  right: -1%;
  border-radius: 254px;
  border: 6px solid var(--theme);
}
@media (max-width: 470px) {
  .about-wrapper-2 .about-image-items .about-sm-img {
    max-width: 140px;
    border-radius: 2px solid var(--theme);
    border-radius: 50%;
  }
}
.about-wrapper-2 .about-image-items .about-sm-img img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img .img {
  position: absolute;
  z-index: -1;
  top: -30%;
  right: 20%;
}
.about-wrapper-2 .about-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content .about-text {
  margin-top: 25px;
  font-size: 16px;
}
.about-wrapper-2 .about-content h5 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  margin-top: 20px;
}
.about-wrapper-2 .about-content .text-area {
  display: flex;
  align-items: end;
  margin-top: 20px;
  gap: 20px;
}
.about-wrapper-2 .about-content .text-area h3 {
  font-size: 40px;
  font-weight: 900;
}
.about-wrapper-2 .about-content .text-area p {
  color: #464E5E;
}
.about-wrapper-2 .about-content .theme-btn {
  margin-top: 50px;
}

.about-section-2 {
  position: relative;
  z-index: 9;
}
.about-section-2 .vec-shape {
  position: absolute;
  bottom: 250px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1899px) {
  .about-section-2 .vec-shape {
    display: none;
  }
}

.about-wrapper-3 .about-left-items .about-image {
  position: relative;
  z-index: 9;
}
.about-wrapper-3 .about-left-items .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-left-items .about-image .thumb {
  max-width: 260px;
  position: absolute;
  bottom: -2%;
  right: 3%;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-left-items .about-image .thumb {
    max-width: 180px;
    bottom: 0;
  }
}
.about-wrapper-3 .about-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content .section-title h6 {
  color: var(--header);
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  display: inline-block;
}
.about-wrapper-3 .about-content .section-title h6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .section-title h6::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .about-text {
  margin-top: 25px;
  margin-bottom: 30px;
}
.about-wrapper-3 .about-content .list-box {
  margin-top: 20px;
}
.about-wrapper-3 .about-content .list-box .list-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.about-wrapper-3 .about-content .list-box .list-content i {
  color: var(--theme);
}
.about-wrapper-3 .about-content .list-box .list-content h5 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.about-wrapper-3 .about-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-content .theme-btn {
    margin-top: 30px;
  }
}

.about-section-3 {
  position: relative;
}
.about-section-3 .stoke-title2 {
  color: var(--header);
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 0.06;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
}
@media (max-width: 1199px) {
  .about-section-3 .stoke-title2 {
    display: none;
  }
}
.about-section-3 .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #030523;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 1;
  color: transparent;
}

/* 02.2 Animation */
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}
.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

/* 02.3 Brand */
.sponsor-wrapper .sponsor-image {
  text-align: center;
  padding: 25px 40px;
}
@media (max-width: 1399px) {
  .sponsor-wrapper .sponsor-image {
    padding: 20px;
    border: 1px solid rgba(199, 201, 206, 0.24) !important;
  }
  .sponsor-wrapper .sponsor-image img {
    width: initial !important;
  }
}
.sponsor-wrapper .sponsor-image img {
  width: 100%;
  height: 64px;
}
@media (max-width: 767px) {
  .sponsor-wrapper .sponsor-image img {
    height: initial;
    width: 70px !important;
  }
}
.sponsor-wrapper .theme-btn {
  margin-left: 20px;
  padding: 0 24px;
}
.sponsor-wrapper .bb-left {
  border-left: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-right {
  border-right: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-bottom {
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-top {
  border-top: 1px solid rgba(199, 201, 206, 0.24);
}

.brand-logo-3 {
  margin-top: 30px;
  text-align: center;
  border: 1px solid rgba(199, 201, 206, 0.24);
  padding: 30px 0;
}

.sponsor-wrapper-21 {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .sponsor-wrapper-21 {
    margin-top: 30px;
  }
}
.sponsor-wrapper-21 .table-responsive {
  overflow: hidden;
}
@media (max-width: 1399px) {
  .sponsor-wrapper-21 .table-responsive {
    overflow-x: auto;
  }
  .sponsor-wrapper-21 .table-responsive .sponsor-wrap {
    width: 1500px;
  }
}
.sponsor-wrapper-21 .sponsor-box-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img {
  width: 180px;
  height: 148px;
  border: 1px solid rgba(199, 201, 206, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-none {
  border-top: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-bottom {
  border-bottom: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-left {
  border-left: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-right {
  border-right: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-none {
  border: none !important;
}

/* 02.4 Contact */
.contact-info-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
.contact-info-wrapper .contact-info-items {
  border-left: 2px solid var(--theme);
  padding-left: 24px;
}
.contact-info-wrapper .contact-info-items h3 {
  margin-bottom: 10px;
}
.contact-info-wrapper .contact-info-items p {
  color: #464E5E;
}
.contact-info-wrapper .contact-info-items p b {
  font-weight: 600;
  display: block;
  color: #464E5E;
}
.contact-info-wrapper .contact-info-items p a {
  color: #464E5E;
  display: block;
}

.contact-box-wrapper .map-area iframe {
  width: 100%;
  height: 628px;
}
.contact-box-wrapper .gt-contact-right-items {
  border-radius: 0;
  background-color: var(--bg);
  padding: 43px;
}
@media (max-width: 767px) {
  .contact-box-wrapper .gt-contact-right-items {
    padding: 30px;
  }
}
.contact-box-wrapper .gt-contact-right-items h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box {
  margin-top: 30px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box h4 {
  margin-bottom: 15px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt input, .contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
  border-radius: 0;
  border: none;
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
  font-weight: 600;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

/* 02.5 Call To Action */
.cta-banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  min-height: 140px;
  overflow: hidden;
  background-color: #050720;
}
@media (max-width: 1199px) {
  .cta-banner-wrapper {
    display: grid;
    gap: 30px;
    justify-content: center;
    padding-right: 0;
    padding: 30px;
    text-align: center;
  }
}
.cta-banner-wrapper .cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .cta-banner-wrapper .cta-left {
    display: grid;
    gap: 20px;
    justify-content: center;
  }
}
.cta-banner-wrapper .cta-left .match-thumb img {
  height: 112px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: cover;
}
.cta-banner-wrapper .cta-left h2 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .cta-banner-wrapper .cta-left h2 {
    font-size: 28px;
  }
  .cta-banner-wrapper .cta-left .match-thumb img {
    height: 80px;
  }
}
.cta-banner-wrapper .cta-left h2 span {
  font-size: 40px;
}
.cta-banner-wrapper .right-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .cta-banner-wrapper .right-image {
    display: none;
  }
}
.cta-banner-wrapper .right-image img {
  height: 100%;
  width: auto;
  display: block;
}
.cta-banner-wrapper .theme-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* 02.6 Match */
.ranking-wrapper .ranking-table-1 {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .ranking-wrapper .ranking-table-1 {
    margin-top: 30px;
  }
}
.ranking-wrapper .ranking-table-1 .top-content {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .ranking-wrapper .ranking-table-1 .top-content {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.ranking-wrapper .ranking-table-1 .top-content .content h3 {
  margin-bottom: 7px;
}
.ranking-wrapper .ranking-table-1 .top-content .content P {
  color: rgba(255, 255, 255, 0.8);
}
.ranking-wrapper .ranking-table-1 .top-content .rank-text {
  text-decoration: underline;
  color: var(--theme);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.ranking-wrapper .ranking-table-1 table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1399px) {
  .ranking-wrapper .ranking-table-1 table {
    width: 800px;
  }
}
.ranking-wrapper .ranking-table-1 table th, .ranking-wrapper .ranking-table-1 table td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table thead th {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.ranking-wrapper .ranking-table-1 table .rank {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.ranking-wrapper .ranking-table-1 table .club {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid rgba(199, 201, 206, 0.16) !important;
}
.ranking-wrapper .ranking-table-1 table .club.bb-none {
  border-bottom: none !important;
}
.ranking-wrapper .ranking-table-1 table .club img {
  width: 32px;
  height: auto;
  display: block;
}
.ranking-wrapper .ranking-table-1 table .points {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos.negative {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.match-box-items {
  background-color: #F5F6F6;
  text-align: center;
  padding: 32px;
}
@media (max-width: 1199px) {
  .match-box-items {
    padding: 30px 25px;
  }
}
.match-box-items h3 {
  font-size: 32px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.4);
  padding-bottom: 15px;
  margin-bottom: 12px;
}
.tournament-done-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1f7a4d;
  background: rgba(31, 122, 77, 0.12);
  border: 1px solid rgba(31, 122, 77, 0.22);
}
.match-box-items > .tournament-done-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 18px;
}
.home-tournament-card > .tournament-done-badge {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
}
.match-box-items h3 .tournament-done-badge,
.home-tournament-card h3 .tournament-done-badge {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
}
.home-tournament-card h3 .tournament-done-badge {
  margin-left: 0;
}
.match-box-items h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}
.match-box-items .match-schedule {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 25px;
}
@media (max-width: 1199px) {
  .match-box-items .match-schedule {
    gap: 15px;
  }
}
.match-box-items .match-schedule span {
  display: block;
  margin-top: 5px;
}
.match-box-items .match-schedule .match-date {
  background-color: var(--white);
  padding: 12px 24px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .match-box-items .match-schedule .match-date {
    padding: 10px 16px;
  }
}
.match-box-items .match-schedule .match-date span {
  color: var(--header);
  font-size: 24px;
  font-weight: 900;
  font-family: "Big Shoulders", sans-serif;
}
@media (max-width: 1199px) {
  .match-box-items .match-schedule .match-date span {
    font-size: 16px;
  }
}
.match-box-items .match-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  justify-content: center;
}
@media (max-width: 1399px) {
  .match-box-items .match-btn {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.match-box-items .match-btn .theme-btn {
  height: 52px;
  line-height: 52px;
  padding: 0 30px;
  background-color: #464E5E;
  border: 1px solid transparent;
}
@media (max-width: 1600px) {
  .match-box-items .match-btn .theme-btn {
    padding: 0 15px;
  }
}
.match-box-items .match-btn .theme-btn::before {
  background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn:hover {
  border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid #464E5E;
  color: var(--header);
}
.match-box-items .match-btn .theme-btn.style-2::before {
  background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 svg path {
  fill: var(--header);
  transition: all 0.4s ease-in-out;
}
.match-box-items .match-btn .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2:hover svg path {
  fill: var(--white);
}
.match-box-items .flag-item {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.match-box-items .flag-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
  background: #030523;
  padding: 4px;
}
.match-box-items .flag-item span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--header);
  text-transform: uppercase;
  line-height: 1.2;
  word-break: break-word;
}
.match-box-items.is-empty {
  opacity: 0.72;
}
.match-box-items .match-btn .theme-btn svg {
  margin-left: 6px;
  vertical-align: middle;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin: 0;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(3, 5, 35, 0.35);
  white-space: nowrap;
}
.lang-switch__btn {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lang-switch__btn:hover,
.lang-switch__btn.is-active {
  color: #FE5900;
}
.lang-switch__sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}
@media (max-width: 575px) {
  .lang-switch {
    padding: 6px 8px;
    font-size: 12px;
    gap: 6px;
  }
}

.theme-toggle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(3, 5, 35, 0.35);
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 6;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover {
  color: #fe5900;
  border-color: rgba(254, 89, 0, 0.7);
}
.theme-toggle__sun { display: none; }
html[data-theme="dark"] .theme-toggle__moon { display: none; }
html[data-theme="dark"] .theme-toggle__sun { display: inline-block; }
@media (max-width: 575px) {
  .theme-toggle {
    width: 34px;
    height: 34px;
  }
}

.match-result-section {
  padding: 40px 0;
}
.match-result-wrapper .match-result-item.is-live p {
  color: #e11d48;
}
.match-result-wrapper .match-result-item .match-right.is-winner span {
  color: var(--theme);
}
.match-result-wrapper .match-result-item .match-left img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #030523;
}
.home-tournament-card {
  display: block;
  background: #F5F6F6;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, transform 0.25s ease;
}
.home-tournament-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--header);
}
.home-tournament-card p {
  margin: 0 0 16px;
  opacity: 0.7;
}
.home-tournament-card span {
  font-weight: 700;
  color: var(--theme);
  text-transform: uppercase;
  font-size: 14px;
}
.home-tournament-card:hover {
  background: #ebecee;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .match-result-wrapper {
    padding: 40px 0;
  }
  .match-result-wrapper .array-button-2 {
    display: flex !important;
    justify-content: center;
  }
}
.match-result-wrapper .left-headling {
  color: var(--header);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .match-result-wrapper .left-headling {
    text-align: center;
  }
}
.match-result-wrapper .match-result-item {
  border-left: 1px solid #C7C9CE;
  padding: 32px 16px;
  position: relative;
}
@media (max-width: 991px) {
  .match-result-wrapper .match-result-item {
    border-left: none;
    background-color: var(--white);
  }
}
.match-result-wrapper .match-result-item .arrow-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.match-result-wrapper .match-result-item p {
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  text-align: center;
}
.match-result-wrapper .match-result-item ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.match-result-wrapper .match-result-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.match-result-wrapper .match-result-item ul li .match-left {
  color: var(--header);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.match-result-wrapper .match-result-item ul li .match-right {
  display: grid;
  align-items: center;
}
.match-result-wrapper .match-result-item ul li .match-right span {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}
.match-result-wrapper .swiper-slide-duplicate-next {
  border-right: 1px solid #C7C9CE;
}
.match-result-wrapper .swiper-slide-duplicate-prev {
  border-right: 1px solid #C7C9CE;
}

.ticket-box-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  padding: 25px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  gap: 40px;
  background-color: var(--white);
  position: relative;
  padding-left: 42px;
  overflow: hidden;
}
.ticket-box-items .circle2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #F5F6F6;
  position: absolute;
  bottom: -14px;
  left: 92px;
}
.ticket-box-items .circle-list {
  display: grid;
  align-items: center;
  gap: 18px;
  position: absolute;
  left: -18px;
}
.ticket-box-items .circle-list .circle-1 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #F5F6F6;
}
.ticket-box-items .circle1 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #F5F6F6;
  position: absolute;
  top: -14px;
  left: 92px;
}
.ticket-box-items .mask-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ticket-box-items .ticket-left {
  position: relative;
  z-index: 9;
  border-right: 1px dashed #C7C9CE;
  padding-right: 27px;
}
.ticket-box-items .ticket-left p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.ticket-box-items .ticket-left .number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--header);
  font-family: "Big Shoulders", sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  margin-top: 8px;
}
.ticket-box-items .ticket-left h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ticket-box-items .content {
  position: relative;
  z-index: 9;
}
.ticket-box-items .content span {
  margin-bottom: 10px;
  display: inline-block;
}
.ticket-box-items .content span img {
  margin-right: 6px;
}
.ticket-box-items .content span b {
  font-weight: 700;
  color: var(--header);
}
.ticket-box-items .content .match-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.ticket-box-items .content .match-list h3 {
  font-size: 20px;
}
.ticket-box-items .content .theme-btn {
  height: 49px;
  line-height: 49px;
  padding: 0 22px;
}

.ticket-scaner {
  background-color: #030523;
  padding: 21px 20px;
  margin-top: 30px;
  text-align: center;
}
.ticket-scaner h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 15px;
}
.ticket-scaner .theme-btn {
  font-size: 14px;
  padding: 0 16px;
  margin-top: 17px;
}
.ticket-scaner .theme-btn::before {
  background-color: var(--white);
}
.ticket-scaner .theme-btn:hover {
  color: var(--header);
}

.upcooming-match-wrapper .upcomming-match-items-2 {
  background-color: #F5F6F6;
  padding: 24px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--theme);
  padding-bottom: 15px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 {
  font-size: 14px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 span {
  font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li:not(:last-child) {
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li img {
  width: initial;
  height: initial;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li span {
  font-weight: 700;
  color: var(--header);
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Chakra Petch", sans-serif;
  color: #464E5E;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(199, 201, 206, 0.24);
  margin-top: 15px;
  padding-top: 12px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head p {
  font-size: 14px;
  color: var(--header);
  font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head span {
  font-size: 14px;
  color: var(--header);
  font-weight: 700;
}
.upcooming-match-wrapper .upcomming-match-slider {
  height: 475px;
}
@media (max-width: 1399px) {
  .upcooming-match-wrapper .upcomming-match-slider {
    height: 530px;
  }
}
@media (max-width: 1199px) {
  .upcooming-match-wrapper .upcomming-match-slider {
    height: 475px;
  }
}
@media (max-width: 767px) {
  .upcooming-match-wrapper .upcomming-match-slider {
    height: 242px;
  }
}
.upcooming-match-wrapper .fifa-ranking-box {
  padding: 50px 48px;
  background-color: #F5F6F6;
}
@media (max-width: 991px) {
  .upcooming-match-wrapper .fifa-ranking-box {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .upcooming-match-wrapper .fifa-ranking-box {
    padding: 28px;
  }
}
.upcooming-match-wrapper .fifa-ranking-box h3 {
  font-size: 32px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 25px;
  margin-bottom: 28px;
}
.upcooming-match-wrapper .fifa-ranking-box table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
}
@media (max-width: 767px) {
  .upcooming-match-wrapper .fifa-ranking-box table {
    width: 700px;
  }
}
.upcooming-match-wrapper .fifa-ranking-box thead {
  background: #ffecec;
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.upcooming-match-wrapper .fifa-ranking-box thead th {
  padding: 15px;
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.upcooming-match-wrapper .fifa-ranking-box tbody td {
  padding: 15px;
  text-align: center;
  font-weight: 700;
  color: #464E5E;
  font-size: 18px;
}
.upcooming-match-wrapper .fifa-ranking-box .rank {
  color: #464E5E;
  font-weight: 700;
}
.upcooming-match-wrapper .fifa-ranking-box .country {
  text-align: left;
  font-weight: bold;
  color: #0a0a23;
  white-space: nowrap;
}
.upcooming-match-wrapper .fifa-ranking-box .country img {
  width: 30px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
  border: 1px solid #ddd;
}
.upcooming-match-wrapper .fifa-ranking-box .change {
  color: #666;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.upcooming-match-wrapper .fifa-ranking-box .circle {
  border: 1px solid #bbb;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.match-start-wrapper-3 {
  margin-top: -125px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .match-start-wrapper-3 {
    margin-top: 80px;
  }
}
.match-start-wrapper-3 .match-start-box-3 {
  position: relative;
  text-align: center;
  z-index: 9;
}
@media (max-width: 1399px) {
  .match-start-wrapper-3 .match-start-box-3 {
    background-image: none !important;
    background-color: #030523;
  }
}
.match-start-wrapper-3 .match-start-box-3.style-top {
  margin-top: -10px;
}
@media (max-width: 1399px) {
  .match-start-wrapper-3 .match-start-box-3.style-top {
    margin-top: 0;
  }
}
.match-start-wrapper-3 .match-start-box-3 .content {
  padding: 40px 0;
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .match-start-wrapper-3 .match-start-box-3 .content {
    margin-left: 0;
    text-align: center;
  }
}
.match-start-wrapper-3 .match-start-box-3 .content.style-2 {
  margin-left: 0;
  margin-left: -40px;
}
@media (max-width: 1399px) {
  .match-start-wrapper-3 .match-start-box-3 .content.style-2 {
    margin-left: 0;
    text-align: center;
  }
}
.match-start-wrapper-3 .match-start-box-3 .left-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .match-start-wrapper-3 .match-start-box-3 .left-shape {
    display: none;
  }
}
.match-start-wrapper-3 .match-start-box-3 h3 {
  color: var(--white);
  margin-bottom: 9px;
}
.match-start-wrapper-3 .match-start-box-3 p {
  color: var(--white);
  margin-bottom: 20px;
}
.match-start-wrapper-3 .match-start-box-3 h2 {
  font-size: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 h2 span {
  font-size: 18px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  color: var(--white);
  opacity: 0.7;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn::before {
  background-color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn:hover {
  color: var(--header);
}
.match-start-wrapper-3 .match-vs-start {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  background-color: #F5F6F6;
  backdrop-filter: blur(215.5px);
  height: 100%;
  padding: 63px 0;
}
.match-start-wrapper-3 .match-vs-start .vs-text {
  color: #030523;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Big Shoulders", sans-serif;
}

.ranking-wrapper-3 .ranking-box-3-items {
  /* =========================
     Responsive (max-width: 1399px)
     ========================= */
}
.ranking-wrapper-3 .ranking-box-3-items .score-table {
  width: 100%;
  overflow-x: auto;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: 600;
  background: #030523;
  color: var(--white);
}
@media (max-width: 1199px) {
  .ranking-wrapper-3 .ranking-box-3-items .score-table table {
    width: 800px;
  }
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead {
  background: #030523;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
  padding: 12px 10px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  border-right: 1px solid rgba(199, 201, 206, 0.16);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
  padding: 12px 12px;
  border-top: 1px solid rgba(199, 201, 206, 0.16);
  border-right: 1px solid rgba(199, 201, 206, 0.16);
  font-size: 15px;
  font-weight: 700;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td:first-child {
  font-weight: bold;
  color: var(--white);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 1399px) {
  .ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
    font-size: 12px;
    padding: 12px 8px;
  }
  .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
    font-size: 13px;
    padding: 10px 8px;
  }
  .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
    width: 26px;
    height: 26px;
    margin-right: 6px;
  }
}
.ranking-wrapper-3 .bg-white-01 {
  background: rgba(255, 255, 255, 0.1);
}
.ranking-wrapper-3 .man-image {
  height: 450px;
}
@media (max-width: 1399px) {
  .ranking-wrapper-3 .man-image {
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .ranking-wrapper-3 .man-image {
    height: 396px;
  }
}
@media (max-width: 991px) {
  .ranking-wrapper-3 .man-image {
    height: initial;
  }
}
.ranking-wrapper-3 .man-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournaments-league-wrapper-3 .tournaments-league-box {
  position: relative;
  z-index: 9;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .tournaments-league-wrapper-3 .tournaments-league-box {
    background-color: #fff;
    padding: 20px;
  }
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb {
  margin: 0 auto;
  padding: 12px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb img {
  width: 100%;
  height: 100%;
}
.tournaments-league-wrapper-3 .tournaments-league-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 238 232"><path fill-rule="evenodd" clip-rule="evenodd" d="M237.839 0H119.019H0.161465C-5.07895 194.525 118.981 232 118.981 232C118.981 232 243.079 194.525 237.839 0Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 575px) {
  .tournaments-league-wrapper-3 .tournaments-league-box::before {
    display: none;
  }
}
.tournaments-league-wrapper-3 .tournaments-league-box h3 {
  font-size: 20px;
  text-align: center;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon {
  text-align: center;
  margin-top: 25px;
  position: relative;
  z-index: 9;
  padding-bottom: 26px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon .icon-bg {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: -1;
  padding-bottom: 0;
}

.upcoming-match-box-items-3 {
  margin-top: 30px;
  background-color: var(--white);
  padding: 26px 30px;
}
.upcoming-match-box-items-3 .top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .upcoming-match-box-items-3 .top-items {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
}
.upcoming-match-box-items-3 .top-items p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--header);
}
.upcoming-match-box-items-3 .top-items span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #464E5E;
}
.upcoming-match-box-items-3 .match-logo-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.upcoming-match-box-items-3 .match-logo-items .content {
  text-align: center;
  max-width: 200px;
  width: 100%;
}
.upcoming-match-box-items-3 .match-logo-items .content p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #464E5E;
  margin-top: 5px;
}
.upcoming-match-box-items-3 .bottom-items {
  border-top: 1px solid rgba(199, 201, 206, 0.24);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .upcoming-match-box-items-3 .bottom-items {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
}
.upcoming-match-box-items-3 .bottom-items p {
  color: var(--header);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.upcoming-match-section {
  margin-top: -130px;
  padding-top: 220px !important;
}

.team-box-items-3 {
  margin-top: 30px;
  background-color: #F5F6F6;
}
.team-box-items-3 .thumb img {
  width: 100%;
  height: 100%;
}
.team-box-items-3 .content {
  padding: 28px 24px;
  position: relative;
}
.team-box-items-3 .content .flag-image {
  position: absolute;
  right: 24px;
  top: 28px;
}
.team-box-items-3 .content h3 {
  margin-bottom: 5px;
}
.team-box-items-3 .content h3 a:hover {
  color: var(--theme);
}
.team-box-items-3 .content p {
  font-size: 15px;
  font-weight: 700;
  margin-top: 15px;
}
.team-box-items-3 .content p b {
  color: #030523;
}
.team-box-items-3 .content .theme-color-text {
  color: var(--theme);
  font-size: 16px;
  font-weight: 700;
}

.match-moments-image {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}
.match-moments-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  background: rgba(29, 29, 29, 0.6);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.match-moments-image img {
  width: 100%;
  height: 100%;
}
.match-moments-image .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.match-moments-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.match-moments-image:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1399px) {
  .score-wrapper-3 .score-logo {
    max-width: 288px;
    margin: 0 auto;
  }
  .score-wrapper-3 .score-logo img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .score-wrapper-3 .score-logo {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .score-wrapper-3 .score-logo {
    max-width: 140px;
  }
}
.score-wrapper-3 .score-content .score-box-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.32);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .score-wrapper-3 .score-content .score-box-items {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.score-wrapper-3 .score-content .score-box-items .content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.score-wrapper-3 .score-content .score-box-items .content h3 {
  color: var(--white);
  text-align: right;
}
@media (max-width: 1399px) {
  .score-wrapper-3 .score-content .score-box-items .content h3 {
    font-size: 20px;
  }
}
.score-wrapper-3 .score-content .score-box-items .content .title-box {
  background-color: var(--theme);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box.bg-2 {
  background: rgba(70, 78, 94, 0.32);
  backdrop-filter: blur(9.5px);
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h4 {
  font-size: 20px;
  color: var(--white);
  font-weight: 900;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
  font-size: 40px;
  color: var(--white);
  font-weight: 900;
}
@media (max-width: 1399px) {
  .score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
    font-size: 28px;
  }
}
.score-wrapper-3 .score-content ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .score-wrapper-3 .score-content ul {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.score-wrapper-3 .score-content ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.score-section-3 {
  position: relative;
  z-index: 9;
}
.score-section-3 .shape-1 {
  position: absolute;
  top: 0;
  left: 17%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .score-section-3 .shape-1 {
    left: 6%;
  }
}
@media (max-width: 1399px) {
  .score-section-3 .shape-1 {
    display: none;
  }
}
.score-section-3 .shape-2 {
  position: absolute;
  bottom: 0;
  left: 11%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .score-section-3 .shape-2 {
    left: 0;
  }
}
@media (max-width: 1399px) {
  .score-section-3 .shape-2 {
    display: none;
  }
}
.score-section-3 .shape-3 {
  position: absolute;
  top: 0;
  right: 12%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .score-section-3 .shape-3 {
    right: 0;
  }
}
@media (max-width: 1399px) {
  .score-section-3 .shape-3 {
    display: none;
  }
}
.score-section-3 .shape-4 {
  position: absolute;
  bottom: 0;
  right: 17%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .score-section-3 .shape-4 {
    right: 6%;
  }
}
@media (max-width: 1399px) {
  .score-section-3 .shape-4 {
    display: none;
  }
}

.match-moments-section .nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
}
@media (max-width: 1199px) {
  .match-moments-section .nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.match-moments-section .nav .nav-item {
  padding: 0;
}
.match-moments-section .nav .nav-item .nav-link {
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
}
.match-moments-section .nav .nav-item .nav-link i {
  margin-left: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.match-moments-section .nav .nav-item .nav-link.active {
  color: var(--theme);
  text-decoration: underline;
}
.match-moments-section .nav .nav-item .nav-link.active i {
  opacity: 1;
  visibility: visible;
}

.ticket-wrapper p {
  font-size: 16px;
  font-weight: 600;
  color: #464E5E;
}
.ticket-wrapper .calender-list {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .ticket-wrapper .calender-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.ticket-wrapper .calender-list li {
  color: var(--header);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ticket-wrapper .ticket-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .ticket-wrapper .ticket-title {
    font-size: 26px;
  }
}
.ticket-wrapper .check-list li:not(:last-child) {
  margin-bottom: 15px;
}
.ticket-wrapper .check-list li i {
  color: var(--theme);
  margin-right: 5px;
  font-size: 20px;
}
.ticket-wrapper .check-list li b {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  margin-right: 6px;
}
.ticket-wrapper .form-clt {
  max-width: 250px;
  width: 100%;
  display: inline-block;
}
.ticket-wrapper .form-clt .form .single-select {
  border: 1px solid var(--theme);
  background-color: transparent;
  width: 100%;
  padding: 17px 30px;
  height: initial;
  line-height: initial;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  letter-spacing: 0.5px;
  border-radius: 0;
}
.ticket-wrapper .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 30px;
}
.ticket-wrapper .form-clt .form .single-select .list {
  width: 100%;
}
.ticket-wrapper .ticket-list-items {
  background-color: var(--bg);
  display: block;
  padding: 32px;
}
.ticket-wrapper .ticket-list-items .ticket-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 32px;
}
@media (max-width: 1199px) {
  .ticket-wrapper .ticket-list-items .ticket-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.ticket-wrapper .ticket-list-items h3 {
  font-size: 32px;
  font-weight: 900;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.ticket-wrapper .ticket-list-items .left-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ticket-wrapper .ticket-list-items .left-item h4 {
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 1399px) {
  .ticket-wrapper .ticket-list-items .left-item h4 {
    font-size: 18px;
  }
}
.ticket-wrapper .ticket-list-items .right-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ticket-wrapper .ticket-list-items .right-items h5 {
  font-size: 20px;
  font-weight: 900;
  color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items h5 sub {
  font-size: 14px;
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  margin-left: 5px;
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
  border-radius: 0;
  border: 1px solid rgba(199, 201, 206, 0.24);
}
@media (max-width: 767px) {
  .ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
    flex-basis: 100%;
  }
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity button i {
  font-size: 18px;
  color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity .quantityValue {
  width: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  font-family: "Big Shoulders", sans-serif;
  padding: 0;
  color: var(--header);
  border: unset;
  background: transparent;
}
.ticket-wrapper .ticket-list-items .quantity-items {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .ticket-wrapper .ticket-list-items .quantity-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1199px) {
  .ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p {
  font-size: 16px;
  font-weight: 600;
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p b {
  color: #030523;
  font-weight: 700;
}
.ticket-wrapper .ticket-details-information {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .ticket-wrapper .ticket-details-information {
    margin-left: 0;
  }
}
.ticket-wrapper .ticket-details-information h3 {
  font-size: 32px;
  font-weight: 900;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.ticket-wrapper .ticket-details-information ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .ticket-wrapper .ticket-details-information ul li {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.ticket-wrapper .ticket-details-information ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ticket-wrapper .ticket-details-information ul li span {
  flex-basis: 50%;
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
}

.latest-world-ranking-wrapper .content {
  border-bottom: 1px solid rgba(199, 201, 206, 0.16);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.latest-world-ranking-wrapper .content h3 {
  font-size: 32px;
}
.latest-world-ranking-wrapper .content .text-item {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .latest-world-ranking-wrapper .content .text-item {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.latest-world-ranking-wrapper .ranking-category-items {
  margin-bottom: 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn {
  display: inline-block;
  background-color: var(--theme);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn img {
  margin-left: 10px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn:hover {
  background-color: var(--header);
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select {
  border: 1px solid rgba(199, 201, 206, 0.24);
  background-color: transparent;
  width: 100%;
  padding: 17px 18px;
  height: initial;
  line-height: initial;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  border-radius: 0;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select .list {
  width: 100%;
}
.latest-world-ranking-wrapper .ranking-box-style {
  background-color: #F5F6F6;
  text-align: center;
  padding: 30px 18px;
}
.latest-world-ranking-wrapper .ranking-box-style p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  margin-top: 15px;
  line-height: 1;
}
.latest-world-ranking-wrapper .ranking-box-style span {
  font-size: 14px;
  font-weight: 600;
}
.latest-world-ranking-wrapper .ranking-box-style h3 {
  font-size: 32px;
  font-weight: 900;
  margin-top: 7px;
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme {
  color: var(--theme);
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme2 {
  color: #881C0B;
}
.latest-world-ranking-wrapper .latest-world-ranking-table {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .latest-world-ranking-wrapper .latest-world-ranking-table {
    margin-top: 40px;
  }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
@media (max-width: 1399px) {
  .latest-world-ranking-wrapper .latest-world-ranking-table table {
    width: 1100px;
  }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table thead {
  background: #f7f7f7;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th, .latest-world-ranking-wrapper .latest-world-ranking-table table td {
  padding: 14px 15px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .positive {
  color: green;
  font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .negative {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-right: 5px;
  padding: 0;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.w {
  background: var(--theme);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.d {
  background: #464E5E;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.l {
  background: #030523;
}

.club-lineup-wrapper .club-lineup-left .club-lineup-head {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 24px;
  margin-bottom: 35px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head h3 {
  font-size: 32px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--header);
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span img {
  margin-right: 8px;
}
.club-lineup-wrapper .club-lineup-left ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.club-lineup-wrapper .club-lineup-left ul li:not(:last-child) {
  margin-bottom: 30px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 {
  font-size: 20px;
  font-weight: 900;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Chakra Petch", sans-serif;
}
.club-lineup-wrapper .club-lineup-left ul li .number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F6F6;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
}
.club-lineup-wrapper .match-information-box {
  border-left: 1px solid rgba(199, 201, 206, 0.24);
  margin-left: 40px;
  padding-left: 40px;
}
@media (max-width: 1199px) {
  .club-lineup-wrapper .match-information-box {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}
.club-lineup-wrapper .match-information-box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.club-lineup-wrapper .match-information-box ul li:not(:last-child) {
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 31px;
  margin-bottom: 31px;
}
.club-lineup-wrapper .match-information-box ul li .color-text-1 {
  color: var(--theme);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Big Shoulders", sans-serif;
}
@media (max-width: 575px) {
  .club-lineup-wrapper .match-information-box ul li .color-text-1 {
    font-size: 25px;
  }
}
.club-lineup-wrapper .match-information-box ul li .sub-text {
  color: #464E5E;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.club-lineup-wrapper .match-information-box ul li .color-text-2 {
  color: var(--header);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Big Shoulders", sans-serif;
}
@media (max-width: 575px) {
  .club-lineup-wrapper .match-information-box ul li .color-text-2 {
    font-size: 25px;
  }
}
.club-lineup-wrapper .match-information-box .match-head-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 26px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .club-lineup-wrapper .match-information-box .match-head-title {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.club-lineup-wrapper .match-information-box .match-head-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 16px;
}
.club-lineup-wrapper .match-information-box .match-head-title h3 {
  font-size: 32px;
}
@media (max-width: 575px) {
  .club-lineup-wrapper .match-information-box .match-head-title h3 {
    font-size: 26px;
  }
}

.lineup-bg-wrapper {
  padding: 48px;
  margin-top: 240px;
}
@media (max-width: 991px) {
  .lineup-bg-wrapper {
    margin-top: 140px;
  }
}
.lineup-bg-wrapper .lineup-content {
  text-align: center;
  margin-bottom: 40px;
}
.lineup-bg-wrapper .text-item {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .lineup-bg-wrapper .text-item {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.lineup-bg-wrapper .lineup-result-items {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 1199px) {
  .lineup-bg-wrapper .lineup-result-items {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .lineup-bg-wrapper .lineup-result-items {
    display: grid;
    gap: 30px;
    justify-content: start;
  }
}
@media (max-width: 991px) {
  .lineup-bg-wrapper .lineup-result-items .left-item p {
    text-align: left !important;
  }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .lineup-bg-wrapper .lineup-result-items .left-item .thumb {
    margin-bottom: 15px;
    display: grid;
  }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
  font-size: 32px;
}
@media (max-width: 575px) {
  .lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
    font-size: 25px;
  }
}
.lineup-bg-wrapper .lineup-result-items .score-result {
  display: inline-block;
  height: 56px;
  line-height: 56px;
  padding: 0 30px;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.playing-ranking-items {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .playing-ranking-items {
    display: block;
  }
}
.playing-ranking-items .thumb {
  max-width: 368px;
}
@media (max-width: 1399px) {
  .playing-ranking-items .thumb {
    max-width: initial;
    margin-bottom: 30px;
  }
}
.playing-ranking-items .thumb img {
  width: 100%;
  height: 100%;
}
.playing-ranking-items .content {
  border-left: 4px solid var(--theme);
  background: linear-gradient(270deg, rgba(254, 89, 0, 0) 88.44%, var(--Primary-500, rgba(254, 89, 0, 0.08)) 98.58%), var(--BG-Sedentary, #F5F6F6);
  padding: 28px 32px;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1399px) {
  .playing-ranking-items .content {
    max-width: initial;
  }
}
.playing-ranking-items .content .top-content {
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.playing-ranking-items .content .sub-content p {
  font-size: 14px;
  font-weight: 600;
}
.playing-ranking-items .content .theme-btn {
  height: 48px;
  line-height: 48px;
  padding: 0 18px;
  margin-top: 25px;
}
.playing-ranking-items .content table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .playing-ranking-items .content table {
    width: 600px;
  }
}
.playing-ranking-items .content thead {
  background: #f9f9f9;
}
.playing-ranking-items .content thead th {
  padding: 10px 10px;
  font-weight: 700;
  color: #030523;
  font-size: 16px;
  border-bottom: 2px solid #eee;
}
.playing-ranking-items .content tbody td {
  padding: 10px 10px;
  font-weight: 600;
  color: #030523;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}
.playing-ranking-items .content tbody tr:last-child td {
  border-bottom: none;
}

.playing-result-box2 {
  background-color: #F5F6F6;
  padding: 26px 30px;
}
@media (max-width: 1399px) {
  .playing-result-box2 {
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.playing-result-box2.style-2 {
  background-color: var(--white);
  padding: 28px 20px;
}
.playing-result-box2.style-2 .match-result-box {
  padding-top: 22px;
  margin-bottom: 22px;
  border-top: 1px solid rgba(199, 201, 206, 0.24);
}
.playing-result-box2 h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}
.playing-result-box2 .match-result-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(199, 201, 206, 0.24);
  padding-top: 15px;
  margin-bottom: 15px;
}
.playing-result-box2 .match-result-box .match-result {
  text-align: center;
  min-width: 0;
  margin: 0;
}
.playing-result-box2 .match-result-box .match-result .thumb {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}
.playing-result-box2 .match-result-box .match-result .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.playing-result-box2 .match-result-box .match-result p {
  font-weight: 700;
  color: #030523;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.35;
  word-break: break-word;
}
.playing-result-box2 .match-result-box .content {
  text-align: center;
  flex-shrink: 0;
  min-width: 84px;
}
.playing-result-box2 .match-result-box .content > p {
  font-size: 12px;
  margin-bottom: 0;
  white-space: nowrap;
}
.playing-result-box2 .match-result-box .result-box {
  text-align: center;
  border: 1px solid rgba(199, 201, 206, 0.16);
  padding: 8px 14px;
  margin-top: 8px;
}
.playing-result-box2 .match-result-box .result-box h4 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  white-space: nowrap;
}

/* Ana sayfa ? sonu?lar ayr? b?l?m */
.home-results-section {
  background: #f5f6f6;
}
.home-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 991px) {
  .home-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .home-results-grid {
    grid-template-columns: 1fr;
  }
}
.home-results-card {
  height: auto !important;
  overflow: visible !important;
  margin: 0;
  box-shadow: none;
}
.home-results-card .match-result-box {
  margin-bottom: 0;
}
.home-results-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #666;
  text-align: center;
  padding: 24px 0;
}

.upcoming-match-section {
  position: relative;
}
.upcoming-match-section .section-title {
  z-index: initial;
}
.upcoming-match-section .array-button-2 {
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .upcoming-match-section .array-button-2 {
    display: none !important;
  }
}
.upcoming-match-section .array-button-2 .array-prev2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.upcoming-match-section .array-button-2 .array-next2 {
  position: absolute;
  top: 0;
  right: 0;
}

/* 02.7 Feature */
.counter-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
  padding: 40px 32px;
  margin-bottom: -80px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}
.counter-wrapper .counter-items {
  border-right: 1px solid #C7C9CE;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-items {
    padding-right: 0;
    border-right: none;
  }
}
.counter-wrapper .counter-items.border-none {
  border-right: none;
  padding-right: 0;
}
.counter-wrapper .counter-items h6 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.counter-wrapper .counter-items .icon-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.counter-wrapper .counter-items .icon-box h2 {
  font-size: 40px;
  color: var(--theme);
  font-weight: 900;
}

.feature-progress-wrapper {
  margin-top: -150px;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .feature-progress-wrapper {
    margin-top: 80px;
  }
}
.feature-progress-wrapper .content {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: -180px;
}
@media (max-width: 991px) {
  .feature-progress-wrapper .content {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-progress-wrapper .content .list-item ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-progress-wrapper .content .list-item ul li .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme);
}
.feature-progress-wrapper .content .list-item ul .box-list {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(199, 201, 206, 0.24);
  padding: 12px 16px;
  line-height: 1;
}
.feature-progress-wrapper .content h3 {
  font-size: 40px;
  font-weight: 900;
}
@media (max-width: 1199px) {
  .feature-progress-wrapper .content h3 {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  .feature-progress-wrapper .content h3 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .feature-progress-wrapper .content h3 {
    font-size: 30px;
  }
}
.feature-progress-wrapper .content h3 span {
  color: var(--theme);
}
.feature-progress-wrapper .feature-progress-thumb {
  position: relative;
}
@media (max-width: 1399px) {
  .feature-progress-wrapper .feature-progress-thumb img {
    width: 100%;
    height: 100%;
  }
}
.feature-progress-wrapper .feature-progress-thumb .video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .feature-progress-wrapper .feature-progress-thumb .video-btn {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.basketball-leagues-items .content {
  text-align: center;
  border: 1px solid rgba(199, 201, 206, 0.24);
  padding: 40px 45px;
}
.basketball-leagues-items .themb img {
  width: 100%;
  height: 100%;
}

.hottest-box-items-3 {
  margin-top: 30px;
}
.hottest-box-items-3 .hottest-thumb {
  position: relative;
  height: 450px;
}
.hottest-box-items-3 .hottest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hottest-box-items-3 .hottest-thumb .post-box {
  position: absolute;
  display: inline-block;
  font-weight: 700;
  color: var(--header);
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 11px 19px;
  border-radius: 100px;
  line-height: 1;
}
.hottest-box-items-3 .hottest-thumb .post-box-2 {
  position: absolute;
  display: inline-block;
  font-weight: 700;
  color: var(--header);
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--white);
  padding: 11px 19px;
  border-radius: 100px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .hottest-box-items-3 .hottest-thumb .post-box-2 {
    bottom: initial;
    top: 24px;
  }
}
.hottest-box-items-3 .hottest-thumb .video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hottest-box-items-3 .hottest-thumb .hottest-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a {
  color: var(--white);
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a:hover {
  color: var(--theme);
}
.hottest-box-items-3 .hottest-thumb .hottest-content p {
  color: var(--white);
}

.trophy-section {
  margin-top: -67px;
  margin-bottom: -42px;
}

/* Ana sayfa ? kompakt saya? (web + Capacitor WebView) */
.trophy-section--compact {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  position: relative;
  z-index: 2;
}
.trophy-section--compact .trophy-box-item img {
  width: 72px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.trophy-section--compact .trophy-box-item .content {
  margin-top: 14px;
}
.trophy-section--compact .trophy-box-item .content h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
}
.trophy-section--compact .trophy-box-item .content span {
  font-size: 28px;
  margin-top: 6px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .trophy-section--compact {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .trophy-section--compact .trophy-box-item img {
    width: 56px;
    max-height: 64px;
  }
  .trophy-section--compact .trophy-box-item .content h3 {
    font-size: 13px;
  }
  .trophy-section--compact .trophy-box-item .content span {
    font-size: 22px;
  }
}

/* Footer */
.footer-subscribe-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
  padding-bottom: 80px;
}
@media (max-width: 1399px) {
  .footer-subscribe-wrapper {
    flex-wrap: wrap;
    justify-content: start;
    gap: 25px;
  }
}
.footer-subscribe-wrapper h3 {
  color: var(--white);
}
.footer-subscribe-wrapper form {
  max-width: 490px;
  width: 100%;
  position: relative;
}
.footer-subscribe-wrapper form input {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  border: none;
  outline: none;
  width: 100%;
  padding: 20px 20px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form button {
  position: absolute;
  right: 5px;
  bottom: 0;
  top: 5px;
}
.footer-subscribe-wrapper .footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer-subscribe-wrapper .footer-right {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-subscribe-wrapper .footer-right .social-icon {
  gap: 16px;
}
.footer-subscribe-wrapper .footer-right .social-icon a {
  display: inline-block;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(46px);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}
.footer-subscribe-wrapper .footer-right .social-icon a:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper {
  padding: 50px 0 80px;
}
@media (max-width: 991px) {
  .footer-col-platform {
    display: none;
  }
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper .footer-content p {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a:hover {
  color: var(--theme);
}
.footer-widget-wrapper .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-contact-list li {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .app-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-widget-wrapper .footer-form form {
  position: relative;
}
.footer-widget-wrapper .footer-form form input {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  border: none;
  outline: none;
  width: 100%;
  padding: 20px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.footer-widget-wrapper .footer-form form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-form form button {
  position: absolute;
  right: 5px;
  bottom: 0;
  top: 5px;
}
.footer-widget-wrapper .footer-form form button .theme-btn {
  padding: 0 24px;
}
.footer-widget-wrapper .footer-form .form-check {
  margin-top: 20px !important;
  margin: 0;
  padding: 0;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-form .form-check {
    margin-top: 0;
  }
}
.footer-widget-wrapper .footer-form .form-check .form-check-input {
  float: left;
  margin-left: 0;
  transform: translateY(0);
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
}
.footer-widget-wrapper .footer-form .form-check .form-check-input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}
.footer-widget-wrapper .footer-form .form-check .form-check-label {
  margin-left: 10px;
  color: var(--white);
  font-weight: 600;
  opacity: 0.8;
  font-size: 14px;
}
.footer-widget-wrapper .footer-form .form-check .form-check-label a {
  text-decoration: underline;
  color: var(--white);
}
@media (max-width: 575px) {
  .footer-widget-wrapper .footer-form .form-check .form-check-label {
    margin-left: 22px;
    font-size: 14px;
  }
}
.footer-widget-wrapper .footer-form .social-icon {
  margin-top: 30px;
  gap: 12px;
}
.footer-widget-wrapper .footer-form .social-icon a {
  display: inline-block;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(46px);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}
.footer-widget-wrapper .footer-form .social-icon a:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper .footer-post-items li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-widget-wrapper .footer-post-items li:not(:last-child) {
  margin-bottom: 24px;
}
.footer-widget-wrapper .footer-post-items li .content {
  max-width: 296px;
}
.footer-widget-wrapper .footer-post-items li .content .top-text {
  color: var(--white);
  opacity: 0.7;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.footer-widget-wrapper .footer-post-items li .content h6 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  line-height: 150%;
}
.footer-widget-wrapper .footer-post-items li .content h6 a {
  color: var(--white);
}
.footer-widget-wrapper .footer-post-items li .content h6 a:hover {
  color: var(--theme);
}

.footer-bottom {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.footer-bottom.style-3 {
  border-top: 1px solid rgba(199, 201, 206, 0.24);
  background: #030523;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.footer-bottom.style-3 .footer-bottom-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-bottom.style-3 .footer-bottom-wrapper-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.footer-bottom.style-3 .social-icon {
  gap: 12px;
}
.footer-bottom.style-3 .social-icon a {
  display: inline-block;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(46px);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}
.footer-bottom.style-3 .social-icon a:hover {
  background-color: var(--theme);
}
.footer-bottom p {
  color: var(--white);
  font-weight: 700;
}
.footer-bottom p b {
  color: var(--theme);
}
.footer-bottom .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
.footer-bottom .footer-menu li a:hover {
  background-size: 100% 1px;
  color: var(--theme);
}

.footer-instagram-wrapper {
  padding: 100px 0 100px;
}
.footer-instagram-wrapper .footer-instagram-image {
  position: relative;
  overflow: hidden;
}
.footer-instagram-wrapper .footer-instagram-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  background: rgba(29, 29, 29, 0.6);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.footer-instagram-wrapper .footer-instagram-image .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.footer-instagram-wrapper .footer-instagram-image img {
  width: 100%;
  height: 100%;
}
.footer-instagram-wrapper .footer-instagram-image:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.footer-instagram-wrapper .footer-instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.footer-logo-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-logo-item {
    justify-content: center;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 50px;
  }
  .footer-logo-item .border-img {
    display: none !important;
  }
}

.footer-bottom-2 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(46px);
  text-align: center;
  padding: 28px 0;
}
.footer-bottom-2 p {
  text-align: center;
  font-weight: 700;
  color: var(--white);
}
.footer-bottom-2 p b {
  color: var(--theme);
}

.footer-top-wrapper-3 {
  padding: 100px 0 50px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.footer-top-wrapper-3 p {
  color: var(--white);
  opacity: 0.88;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 376px;
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .footer-top-wrapper-3 p {
    margin-left: 0;
  }
}
.footer-top-wrapper-3 ul li {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.88;
}
.footer-top-wrapper-3 ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-top-wrapper-3 ul li a {
  color: var(--white);
  opacity: 0.88;
}

.footer-left-40 {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .footer-left-40 {
    margin-left: 0;
  }
}

.style-right-30 {
  margin-right: 20px;
}
@media (max-width: 1199px) {
  .style-right-30 {
    margin-right: 0;
  }
}
.style-right-30 .theme-btn {
  padding: 0 22px;
}

.footer-section-3 {
  position: relative;
}
.footer-section-3::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
  .footer-section-3::before {
    left: 36%;
  }
}
@media (max-width: 1399px) {
  .footer-section-3::before {
    display: none;
  }
}
.footer-section-3::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 63%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
  .footer-section-3::after {
    left: 66%;
  }
}
@media (max-width: 1399px) {
  .footer-section-3::after {
    display: none;
  }
}

/* 02.9 Header */
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 12px;
}
.header-main > .logo {
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  margin-right: 8px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  min-height: 58px;
}
.header-main > .header-left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: visible;
  padding-right: 8px;
  position: relative;
  z-index: 6;
}
.header-main > .header-right {
  flex: 0 0 auto;
  max-width: none;
  position: relative;
  z-index: 4;
  gap: 12px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  min-height: 58px;
}
.header-main .main-menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.header-main .main-menu > nav > ul {
  margin-bottom: 0;
  white-space: normal;
  display: grid;
  grid-template-columns: repeat(7, max-content);
  grid-template-rows: auto auto;
  justify-content: start;
  align-items: center;
  column-gap: 22px;
  row-gap: 0;
  width: max-content;
  max-width: 100%;
  position: relative;
  padding-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: block;
  margin-inline-end: 0;
}
.header-main .main-menu > nav > ul > li:nth-child(-n+7) {
  grid-row: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
}
.header-main .main-menu > nav > ul > li.nav-row2:nth-child(8) {
  grid-column: 1;
  grid-row: 2;
}
.header-main .main-menu > nav > ul > li.nav-row2:nth-child(9) {
  grid-column: 2;
  grid-row: 2;
}
.header-main .main-menu > nav > ul > li.nav-row2:nth-child(10) {
  grid-column: 3;
  grid-row: 2;
}
.header-main--authed .main-menu ul li {
  margin-inline-end: 0;
}
@media (max-width: 1599px) {
  .header-main .main-menu > nav > ul {
    column-gap: 14px;
  }
  .header-main .main-menu ul li {
    margin-inline-end: 0;
  }
  .header-main .main-menu ul li a {
    font-size: 14px;
  }
  .header-main--authed .main-menu ul li {
    margin-inline-end: 0;
  }
  .header-main--authed .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1399px) {
  .header-main .main-menu > nav > ul {
    column-gap: 10px;
  }
  .header-main .main-menu ul li {
    margin-inline-end: 0;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  padding: 12px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li.has-dropdown {
  position: relative;
  z-index: 1;
}
.header-main .main-menu ul li.has-dropdown:hover,
.header-main .main-menu ul li.has-dropdown:focus-within {
  z-index: 30;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: auto;
  inset-inline-end: 0;
  display: block;
  flex-wrap: unset;
  column-gap: 0;
  row-gap: 0;
  width: auto;
  min-width: 240px;
  max-width: none;
  padding: 20px 0;
  padding-bottom: 20px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
/* Giriş sağda dursun; alt menü taşmasın */
.header-main .main-menu ul li.has-dropdown:last-child .submenu {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -90px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 5px 15px;
  color: var(--white) !important;
  min-width: 130px;
  width: 100%;
  text-align: center;
  justify-content: center;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn:hover {
  background-color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Big Shoulders", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu,
.header-main .main-menu ul li:focus-within > .submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 16px;
}
.header-cta-slot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}
@media (min-width: 1200px) {
  .header-cta-slot {
    min-width: 360px;
  }
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 12px;
  }
}
.header-main .header-auth {
  position: relative;
  max-width: 100%;
  min-width: 0;
}
.header-main .header-auth .header-auth-btn {
  display: inline-flex;
  align-items: center;
  max-width: min(200px, 42vw);
  overflow: hidden;
  white-space: nowrap;
  padding: 0 16px;
}
.header-main .header-login .header-auth-btn {
  max-width: none;
  overflow: visible;
  white-space: nowrap;
  padding: 0 34px;
}
@media (max-width: 575px) {
  .header-main .header-login .header-auth-btn {
    padding: 0 25px;
  }
}
.header-main--authed .header-auth .header-auth-btn {
  max-width: min(160px, 36vw);
  padding: 0 14px;
}
.header-main .header-auth .header-auth-btn__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.header-main .header-auth .header-auth-btn i {
  margin-left: 8px;
  font-size: 12px;
  flex-shrink: 0;
}
.header-main .header-auth .submenu {
  position: absolute;
  top: 115%;
  inset-inline-end: 0;
  min-width: 200px;
  background: var(--white);
  padding: 16px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  list-style: none;
  margin: 0;
}
.header-main .header-auth:hover > .submenu,
.header-main .header-auth:focus-within > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-main .header-auth .submenu li {
  display: block;
  margin: 0;
}
.header-main .header-auth .submenu li a {
  display: block;
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  color: var(--header);
  transition: color 0.3s ease;
}
.header-main .header-auth .submenu li a:hover {
  color: var(--theme);
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  z-index: 9999;
  width: 100%;
  left: 0;
}
@media (max-width: 575px) {
  .header-1 .logo img {
    width: 108px;
  }
}
@media (max-width: 470px) {
  .header-1 .logo img {
    width: 96px;
  }
}
.header-1 .container {
  max-width: 1800px;
}
.header-1 .sidebar__toggle {
  cursor: pointer;
}
.header-1 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
.header-1 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}
.header-1 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 0;
  width: 40px;
}
.header-1 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 40px;
}
.header-1 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-1 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}
.header-1.header-3 .container {
  max-width: 1720px;
}
@media (max-width: 575px) {
  .header-1.header-3 .logo img {
    width: 150px;
  }
}
@media (max-width: 470px) {
  .header-1.header-3 .logo img {
    width: 130px;
  }
}
.header-1.header-3 .mega-menu-wrapper {
  background-color: var(--white);
  padding: 0 24px;
}
.header-1.header-3 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-1.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-1.header-3 .sidebar__toggle .header-bar span {
  background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}

.header-2 {
  background-color: #030523;
}
.header-2 .container {
  max-width: 1610px;
}
@media (max-width: 575px) {
  .header-2 .logo img {
    width: 150px;
  }
}
@media (max-width: 470px) {
  .header-2 .logo img {
    width: 130px;
  }
}
.header-2 .header-btn {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .header-2 .header-btn {
    display: none;
  }
}
.header-2 .header-btn .theme-btn {
  border: 1px solid transparent;
}
.header-2 .header-btn .theme-btn.border-btn {
  background-color: transparent;
  border: 1px solid var(--white);
}
.header-2 .header-btn .theme-btn.border-btn::before {
  background-color: var(--theme);
}
.header-2 .header-btn .theme-btn.border-btn:hover {
  border: 1px solid var(--theme);
}
.header-2 .sidebar__toggle {
  cursor: pointer;
}
.header-2 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
.header-2 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}
.header-2 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 0;
  width: 40px;
}
.header-2 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 40px;
}
.header-2 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-2 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-2 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-top-section {
  position: relative;
  z-index: 999;
  padding: 12px 0;
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container {
  max-width: 1610px;
}
.header-top-section .header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-section .header-top-wrapper p {
  font-size: 16px;
  font-weight: 700;
}
.header-top-section .header-top-wrapper p a {
  color: var(--theme);
  text-decoration: underline;
}
.header-top-section .header-top-wrapper .form-clt {
  max-width: 125px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-section .header-top-wrapper .form-clt .form {
  max-width: 110px;
  width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select {
  border: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  line-height: initial;
  height: initial;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select span {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select .list {
  width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select::after {
  right: 0;
  width: 8px;
  height: 8px;
  top: 43%;
  border-bottom: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.header-top-section.header-section-2 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(50px);
  z-index: 99999;
  position: relative;
}
.header-top-section.header-section-2 .container {
  max-width: 1720px;
}
.header-top-section.header-section-2 .header-top-wrapper p {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon {
  gap: 12px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text);
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 365px;
  width: 100%;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p {
  font-weight: 700;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p b {
  font-weight: 700;
  color: var(--theme);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select span {
  color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.header-top-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 {
  background-color: rgba(254, 89, 0, 0.90);
  box-shadow: 0 8px 24px rgba(254, 89, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: #fff;
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: #030523 !important;
}
.sticky.header-1 .sidebar__toggle .header-bar span,
.sticky.header-1 .sidebar__toggle .header-bar span:first-child,
.sticky.header-1 .sidebar__toggle .header-bar span:last-child {
  background: #fff;
}
.sticky.header-1 .header-cta,
.sticky.header-1 .header-auth-btn {
  background-color: #fff;
  color: #030523;
}
.sticky.header-1 .header-cta:hover,
.sticky.header-1 .header-auth-btn:hover {
  color: #fff;
}
.sticky.header-1 .lang-switch {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(3, 5, 35, 0.2);
}
.sticky.header-1 .lang-switch__btn {
  color: rgba(255, 255, 255, 0.82);
}
.sticky.header-1 .lang-switch__btn:hover,
.sticky.header-1 .lang-switch__btn.is-active {
  color: #fff;
}
.sticky.header-1 .lang-switch__sep {
  color: rgba(255, 255, 255, 0.5);
}
.sticky.header-1 .theme-toggle {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(3, 5, 35, 0.2);
  color: #fff;
}
.sticky.header-1 .theme-toggle:hover {
  color: #030523;
  background: #fff;
  border-color: #fff;
}
.sticky.header-2 {
  background-color: #030523;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content h4 {
  font-weight: 700;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__login {
  min-width: 0;
  flex: 1;
  padding-right: 12px;
}

.offcanvas-login {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.offcanvas-login__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 16px !important;
  margin: 0 !important;
  font-size: 13px !important;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.offcanvas-login__btn span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.offcanvas-login__btn i {
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.offcanvas-login.is-open .offcanvas-login__btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.offcanvas-login__menu {
  list-style: none;
  margin: 10px 0 0;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid rgba(3, 5, 35, 0.1);
  box-shadow: 0 10px 28px rgba(3, 5, 35, 0.12);
  min-width: min(260px, 78vw);
}

.offcanvas-login__menu[hidden] {
  display: none !important;
}

.offcanvas-login__menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--header);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.offcanvas-login__menu li a:hover {
  color: var(--theme);
  background: rgba(254, 89, 0, 0.06);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--bg);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.gt-breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.gt-breadcrumb-wrapper.bg-before {
  position: relative;
}
.gt-breadcrumb-wrapper.bg-before::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  top: 66%;
  background-color: var(--white);
}
.gt-breadcrumb-wrapper .gt-page-heading {
  position: relative;
  padding: 260px 0 130px;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    padding-top: 220px;
  }
}
@media (max-width: 991px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
  color: var(--white);
  font-size: 72px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
  font-weight: 900;
  letter-spacing: 0.36px;
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 40px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
  display: inline-flex;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
    margin-top: 15px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
  color: var(--white);
}

.gt-error-items {
  text-align: center;
  position: relative;
}
.gt-error-items .gt-error-image {
  margin-bottom: 50px;
}
.gt-error-items .gt-error-image img {
  width: 100%;
  height: 100%;
}
.gt-error-items h2 {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .gt-error-items h2 {
    font-size: 30px;
  }
}
.gt-error-items p {
  margin-bottom: 48px;
  max-width: 872px;
}
@media (max-width: 767px) {
  .gt-error-items p {
    margin-bottom: 30px;
  }
}
.gt-error-items .gt-theme-btn .gt-icon-btn {
  background-color: var(--header);
}
.gt-error-items .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--theme);
}

/* 02.10 Helping */
.array-button-2 {
  gap: 16px;
  position: relative;
  z-index: 9;
  margin-top: 37px;
}
.array-button-2.style-3 .array-prev2 {
  transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2 i {
  transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2:hover i {
  color: var(--white);
}
.array-button-2.style-3 .array-next2 {
  transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2 i {
  transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2:hover i {
  color: var(--white);
}
@media (max-width: 1199px) {
  .array-button-2 {
    flex-wrap: wrap;
  }
}
.array-button-2 .array-prev2 {
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
  .array-button-2 .array-prev2 {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-button-2 .array-prev2 i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-button-2 .array-prev2:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}
.array-button-2 .array-prev2:hover svg path {
  fill: var(--white);
}
.array-button-2 .array-next2 {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
  .array-button-2 .array-next2 {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-button-2 .array-next2 i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-button-2 .array-next2:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}
.array-button-2 .array-next2:hover svg path {
  fill: var(--white);
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(254, 89, 0, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #F4F4F4;
  color: var(--header);
  font-weight: 900;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 0;
  font-family: "Big Shoulders", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

/* 02.11 Hero */
.hero-1 {
  padding: 100px 0 0;
  padding-right: 100px;
  position: relative;
  overflow: hidden;
}
.hero-1 .tilt_scale {
  display: inline-block;
}
@media (max-width: 1600px) {
  .hero-1 {
    padding-right: 280px;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding-right: 0;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding-top: 180px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero-1 {
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .hero-1 {
    padding-top: 130px;
  }
}
.hero-1 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-1 .right-shape {
    display: none;
  }
}
.hero-1 .container {
  max-width: 1720px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
.hero-1 .hero-content h6 {
  color: var(--theme);
  font-size: 20px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 14px;
}
@media (max-width: 470px) {
  .hero-1 .hero-content h6 {
    font-size: 16px;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
  letter-spacing: -1px;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 68px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  .hero-1 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-1 .hero-content h1 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--theme);
  font-family: var(--theme);
  color: transparent;
}
.hero-1 .hero-content h1 {
  white-space: normal;
}
.tv_hero_title .split-word {
  display: inline-block;
  white-space: nowrap;
}
.tv_hero_title .split-char {
  display: inline-block;
}
.hero-1 .hero-content p {
  color: var(--white);
  line-height: 150%;
  margin-top: 24px;
  max-width: 785px;
}
.hero-1 .hero-content .hero-btn {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content .hero-btn {
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
  }
}
.hero-1 .hero-image {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-image {
    text-align: center;
  }
}
.hero-1 .hero-image .hero-image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-1 .hero-image .hero-image-bg {
    display: none;
  }
}

.hero-2 {
  padding: 190px 0 280px;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 150px 0 150px;
  }
}
@media (max-width: 767px) {
  .hero-2 {
    padding: 140px 0 140px;
  }
}
@media (max-width: 575px) {
  .hero-2 {
    padding: 100px 0 130px;
  }
}
.hero-2 .vec-shape1 {
  position: absolute;
  top: 0;
  left: 35%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-2 .vec-shape1 {
    display: none;
  }
}
.hero-2 .vec-shape2 {
  position: absolute;
  right: 0;
  top: 20%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-2 .vec-shape2 {
    display: none;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(251deg, var(--Text-Primary, #030523) 7.32%, rgba(3, 5, 35, 0.48) 80.97%);
  z-index: -1;
}
.hero-2 .stoke-title {
  text-align: center;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--white);
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: transparent;
  opacity: 0.16;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .stoke-title {
    display: none;
  }
}
.hero-2 .container {
  max-width: 1719px;
}
@media (max-width: 991px) {
  .hero-2 .hero-content {
    margin: 0 auto;
    text-align: center;
  }
}
.hero-2 .hero-content h6 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 15px;
}
.hero-2 .hero-content h1 {
  color: var(--white);
  letter-spacing: -1px;
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    line-height: 140%;
  }
}
.hero-2 .hero-content h1 span {
  color: var(--theme);
}
.hero-2 .hero-content p {
  color: var(--white);
  line-height: 150%;
  margin-top: 24px;
  max-width: 785px;
}
@media (max-width: 991px) {
  .hero-2 .hero-content p {
    margin: 30px auto 0;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content p {
    font-size: 15px;
    line-height: 180%;
  }
}
.hero-2 .hero-content .hero-btn {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content .hero-btn {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content .hero-btn {
    margin-top: 30px;
  }
}

.hero-3 {
  padding: 280px 0 270px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding: 230px 0 150px;
  }
}
@media (max-width: 767px) {
  .hero-3 {
    padding: 160px 0 160px;
  }
}
@media (max-width: 575px) {
  .hero-3 {
    padding: 140px 0 140px;
  }
}
.hero-3 .left-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-3 .left-shape {
    display: none;
  }
}
.hero-3 .left-shape img {
  height: 100%;
}
.hero-3 .stoke-title2 {
  color: rgba(255, 255, 255, 0.08);
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 0;
  z-index: 22;
}
@media (max-width: 1199px) {
  .hero-3 .stoke-title2 {
    display: none;
  }
}
.hero-3 .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  color: transparent;
  display: block;
}
.hero-3 .container {
  max-width: 1665px;
}
.hero-3 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-3 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(251deg, var(--Text-Primary, rgba(3, 5, 35, 0.72)) 7.32%, rgba(3, 5, 35, 0.35) 80.97%);
}
.hero-3 .hero-content {
  position: relative;
  z-index: 3;
}
.hero-3 .hero-content h6 {
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, rgba(3, 5, 35, 0) 0%, var(--theme) 100%);
  border-bottom: 2px solid transparent;
  border-image-slice: 2;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h6 {
    border-bottom: none;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h6 {
    font-size: 15px;
  }
}
.hero-3 .hero-content h1 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 108px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 72px;
    line-height: 140%;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  .hero-3 .hero-content h1 {
    font-size: 35px;
  }
}
.hero-3 .hero-content p {
  color: var(--white);
  opacity: 0.88;
  max-width: 745px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content p {
    margin-top: 10px;
  }
}
.hero-3 .hero-content .hero-btn {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content .hero-btn {
    flex-wrap: wrap;
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.hero-section-3 {
  position: relative;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-3 .gt-product-dot {
  border: 1px solid rgba(199, 201, 206, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(50px);
  padding: 20px;
  position: absolute;
  bottom: 180px;
  right: 100px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 375px;
  left: unset !important;
}
@media (max-width: 1199px) {
  .hero-section-3 .gt-product-dot {
    display: none;
  }
}
.hero-section-3 .gt-product-dot .dot-content img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid transparent;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet {
  cursor: pointer;
  width: 100px;
  height: 100px;
  opacity: 1;
  border: 1px solid transparent;
  margin: 0;
  padding: 0;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--theme);
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active img {
  border: 1px solid var(--theme);
}

/* 02.12 MeanMenu */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #E5E5E5 !important;
  border: none;
  font-family: "Big Shoulders", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* 02.13 News */
.news-thumb1 {
  margin-top: 30px;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #030523;
}
@media (max-width: 991px) {
  .news-thumb1 {
    height: 600px;
    min-height: 0;
  }
}
.news-thumb1 img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.news-thumb1 .video-box {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 8px 18px 8px 8px;
  background-color: #FFEEE7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #030523;
  border-radius: 100px;
  line-height: 1;
}
.news-thumb1 .video-box i {
  font-size: 36px;
  color: var(--theme);
}
.news-thumb1 .news-content {
  position: absolute;
  left: 32px;
  bottom: 32px;
  right: 32px;
}
.news-thumb1 .news-content span {
  display: inline-block;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 100px;
}
.news-thumb1 .news-content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-thumb1 .news-content ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
.news-thumb1 .news-content h3 a {
  color: var(--white);
}
.news-thumb1 .news-content h3 a:hover {
  color: var(--theme);
}

.news-box-items {
  margin-top: 30px;
  background-color: #F5F6F6;
}
.news-box-items .thumb {
  position: relative;
  overflow: hidden;
  background: #030523;
}
.news-box-items .thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.news-box-items .thumb .video-box {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 18px 8px 8px;
  background-color: #FFEEE7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #030523;
  border-radius: 100px;
  line-height: 1;
}
.news-box-items .thumb .video-box i {
  font-size: 27px;
  color: var(--theme);
}
.news-box-items .content {
  padding: 40px 30px;
  padding-top: 0;
  margin-top: -18px;
  position: relative;
  z-index: 9;
}
.news-box-items .content span {
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  padding: 4px 20px;
  border-radius: 100px;
}
.news-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-box-items .content ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 1399px) {
  .news-box-items .content h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .news-box-items .content h3 {
    font-size: 22px;
  }
}
.news-box-items .content h3 a:hover {
  color: var(--theme);
}

.club-blog-items {
  margin-top: 30px;
}
.club-blog-items .thumb {
  overflow: hidden;
  border-radius: 0;
  background: #030523;
}
.club-blog-items .thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .club-blog-items .thumb img {
    height: 220px;
  }
}
.club-blog-items .content {
  padding: 24px;
  background-color: var(--white);
  margin-left: 24px;
  margin-right: 24px;
  margin-top: -170px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .club-blog-items .content {
    margin-left: 20px;
    margin-left: 20px;
    padding: 20px;
  }
}
.club-blog-items .content ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
@media (max-width: 1399px) {
  .club-blog-items .content ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.club-blog-items .content ul li {
  color: var(--text);
}
.club-blog-items .content ul li span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.club-blog-items .content ul li span i {
  margin-right: 8px;
}
.club-blog-items .content ul li span b {
  color: var(--theme);
}
.club-blog-items .content h3 {
  margin-bottom: 22px;
}
@media (max-width: 1399px) {
  .club-blog-items .content h3 {
    font-size: 21px;
  }
}
@media (max-width: 1199px) {
  .club-blog-items .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .club-blog-items .content h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .club-blog-items .content h3 {
    font-size: 18px;
  }
}
.club-blog-items .content h3 a:hover {
  color: var(--theme);
}

.club-table-score .scoreboard {
  border: 1px solid rgba(199, 201, 206, 0.16);
  background: var(--white);
  padding: 25px 40px;
}
.club-table-score .scoreboard .match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.club-table-score .scoreboard .match .team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  justify-content: end;
  flex-basis: 25%;
}
.club-table-score .scoreboard .match .team img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.club-table-score .scoreboard .match .score {
  border: 1px solid rgba(199, 201, 206, 0.24);
  padding: 8px 18px;
  font-size: 22px;
  font-weight: bold;
  color: #111;
  background-color: red;
}

.news-box-items-2 {
  margin-top: 30px;
}
.news-box-items-2 .thumb {
  position: relative;
}
.news-box-items-2 .thumb .post-box {
  padding: 12px 16px;
  background-color: var(--theme);
  border-radius: 100px;
  color: var(--white);
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  left: 30px;
}
.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
}
.news-box-items-2 .news-content {
  margin-top: 24px;
}
.news-box-items-2 .news-content ul {
  display: flex;
  align-items: center;
  gap: 80px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.16);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-box-items-2 .news-content ul li {
  color: var(--white);
}
.news-box-items-2 .news-content h3 {
  margin-bottom: 24px;
}
.news-box-items-2 .news-content h3 a {
  color: var(--white);
}
.news-box-items-2 .news-content h3 a:hover {
  color: var(--theme);
}

.news-table-right-items {
  background-color: var(--white);
  padding: 32px;
}
.news-table-right-items h3 {
  font-size: 32px;
  border-bottom: 1px solid rgba(199, 201, 206, 0.16);
  padding-bottom: 24px;
  margin-bottom: 20px;
}
.news-table-right-items table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  border-radius: 0;
}
@media (max-width: 1399px) {
  .news-table-right-items table {
    width: 700px;
  }
}
.news-table-right-items table thead th {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--header);
  text-align: center;
  font-weight: 700;
  padding-bottom: 15px;
}
.news-table-right-items table tbody tr {
  border: 1px solid #eee;
}
.news-table-right-items table tbody td {
  padding: 15px 9px;
  font-weight: 600;
  color: #0a1633;
}
@media (max-width: 1399px) {
  .news-table-right-items table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .news-table-right-items table thead th {
    font-size: 16px;
    padding: 10px 6px;
  }
  .news-table-right-items table tbody td {
    padding: 10px 6px;
    font-size: 14px;
  }
}
.news-table-right-items .rank {
  width: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.news-table-right-items .team {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-table-right-items .team-name {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 16px;
  color: var(--header);
}
.news-table-right-items .stats {
  text-align: center;
}
.news-table-right-items .last-10 {
  text-align: center;
  font-weight: bold;
}
.news-table-right-items .badge {
  padding: 9px 14px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  background-color: #FE5900;
}

.news-list-items {
  background-color: var(--white);
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .news-list-items {
    display: block;
  }
}
.news-list-items .thumb {
  max-width: 256px;
  position: relative;
}
@media (max-width: 1399px) {
  .news-list-items .thumb {
    max-width: initial;
  }
}
.news-list-items .thumb img {
  width: 100%;
  height: 100%;
}
.news-list-items .content {
  padding: 0 30px;
}
@media (max-width: 1399px) {
  .news-list-items .content {
    padding: 25px;
  }
}
.news-list-items .content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C7C9CE;
  padding-bottom: 20px;
}
.news-list-items .content ul li {
  color: var(--text);
}
.news-list-items .content ul li span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.news-list-items .content ul li span i {
  margin-right: 8px;
}
.news-list-items .content ul li span b {
  color: var(--theme);
}
.news-list-items .content h3 {
  margin-bottom: 15px;
}
.news-list-items .content h3 a:hover {
  color: var(--theme);
}

.news-section-2 {
  position: relative;
  z-index: 9;
}
.news-section-2 .vec-dot {
  position: absolute;
  top: -40%;
  right: 0;
  z-index: -1;
}
.news-section-2 .vec-circle {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: -1;
}

.hottest-box-items {
  margin-top: 30px;
}
.hottest-box-items .hottest-thumb {
  position: relative;
}
.hottest-box-items .hottest-thumb img {
  width: 100%;
  height: 100%;
}
.hottest-box-items .hottest-thumb .video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hottest-box-items .hottest-thumb .post-box {
  position: absolute;
  display: inline-block;
  font-weight: 700;
  color: var(--header);
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 11px 19px;
  border-radius: 100px;
  line-height: 1;
}
.hottest-box-items .hottest-content {
  margin-top: 25px;
}
.hottest-box-items .hottest-content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.hottest-box-items .hottest-content ul li {
  font-size: 16px;
  font-weight: 600;
}
.hottest-box-items .hottest-content ul li span {
  color: var(--theme);
}
.hottest-box-items .hottest-content h3 a:hover {
  color: var(--theme);
}

.hottest-hoop-wrap-content {
  background-color: #F5F6F6;
  padding: 48px;
}
@media (max-width: 1199px) {
  .hottest-hoop-wrap-content {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .hottest-hoop-wrap-content {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .hottest-hoop-wrap-content {
    padding: 25px;
  }
}
.hottest-hoop-wrap-content .post-tag {
  display: inline-block;
  padding: 9px 19px;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.hottest-hoop-wrap-content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.hottest-hoop-wrap-content ul li {
  font-size: 16px;
  font-weight: 600;
}
.hottest-hoop-wrap-content ul li span {
  color: var(--theme);
}
.hottest-hoop-wrap-content p {
  margin-top: 25px;
}
.hottest-hoop-wrap-content .theme-btn {
  margin-top: 40px;
}

.hottest-hoop-wrap-thumb {
  height: 510px;
  position: relative;
}
.hottest-hoop-wrap-thumb .video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hottest-hoop-wrap-thumb .post-box {
  position: absolute;
  display: inline-block;
  font-weight: 700;
  color: var(--header);
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 11px 19px;
  border-radius: 100px;
  line-height: 1;
}
.hottest-hoop-wrap-thumb img {
  width: 100%;
  height: 100%;
}

.hottest-hoop-wrapper {
  background-color: #F5F6F6;
  margin-top: 50px;
}

.news-box-items-3 {
  margin-top: 30px;
}
.news-box-items-3 .thumb img {
  width: 100%;
  height: 100%;
}
.news-box-items-3 .content {
  background-color: var(--white);
  padding: 20px;
}
.news-box-items-3 .content ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 1199px) {
  .news-box-items-3 .content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-box-items-3 .content ul li span i {
  margin-right: 8px;
}
.news-box-items-3 .content h3 {
  margin-top: 10px;
}
.news-box-items-3 .content h3 a:hover {
  color: var(--theme);
}
.news-box-items-3 .content .link-btn {
  margin-top: 20px;
}
.news-box-items-3 .content .link-btn:hover {
  color: var(--header);
}

.news-content-3 {
  background-color: var(--white);
  padding: 31px 24px;
  margin-top: 30px;
}
.news-content-3 ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 1199px) {
  .news-content-3 ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-content-3 ul li span i {
  margin-right: 8px;
}
.news-content-3 h3 {
  margin-top: 10px;
}
.news-content-3 h3 a:hover {
  color: var(--theme);
}
.news-content-3 .link-btn {
  margin-top: 20px;
}
.news-content-3 .link-btn:hover {
  color: var(--header);
}

.news-section-3 {
  position: relative;
}
.news-section-3 .stoke-title2 {
  color: #030523;
  font-family: "Big Shoulders", sans-serif;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 0.03;
  position: absolute;
  top: 5%;
  left: 15%;
  right: 0;
}
@media (max-width: 1399px) {
  .news-section-3 .stoke-title2 {
    display: none;
  }
}
.news-section-3 .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #030523;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 1;
  color: transparent;
}

.ranking-secion-3 {
  position: relative;
}
.ranking-secion-3 .stoke-title2 {
  color: #fff;
  font-size: 156px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 0.04;
  writing-mode: vertical-rl;
  position: absolute;
  top: 70px;
  right: 20px;
  bottom: 0;
}
@media (max-width: 1399px) {
  .ranking-secion-3 .stoke-title2 {
    display: none;
  }
}
.ranking-secion-3 .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  font-size: 156px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 1;
  color: transparent;
}

.team-section-3 {
  position: relative;
}
.team-section-3 .stoke-title2 {
  color: #030523;
  font-family: "Big Shoulders", sans-serif;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 0.03;
  position: absolute;
  top: 3%;
  left: 52%;
  transform: translateX(-50%);
  right: 0;
}
@media (max-width: 1399px) {
  .team-section-3 .stoke-title2 {
    display: none;
  }
}
.team-section-3 .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #030523;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 1;
  color: transparent;
}

.highlights-match-section {
  position: relative;
}
.highlights-match-section .stoke-title2 {
  color: #030523;
  font-family: "Big Shoulders", sans-serif;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 0.03;
  position: absolute;
  top: 2%;
  left: 15%;
  right: 0;
}
.highlights-match-section .stoke-title2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #030523;
  font-size: 188px;
  font-weight: 900;
  letter-spacing: -1.88px;
  text-transform: uppercase;
  opacity: 1;
  color: transparent;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 30px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
  overflow: hidden;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
  margin-right: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    font-size: 25px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
  padding: 0 30px;
  border: 1px solid var(--theme);
  background: transparent;
  color: var(--theme);
  margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn::before {
  background-color: var(--theme);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn:hover {
  color: var(--white);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.gt-news-details-wrapper .gt-details-image {
  overflow: hidden;
  max-width: 100%;
}
.gt-news-details-wrapper .gt-details-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.gt-news-details-wrapper .gt-news-details-content {
  margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 900;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 25px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-date-list li i {
  margin-right: 10px;
}
.home-cta-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.home-cta-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item {
  margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
  font-weight: 800;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
    font-size: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li {
  font-size: 16px;
  font-weight: 800;
  color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li i {
  color: var(--theme);
  margin-right: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
  padding: 30px 40px;
  border: 1.5px solid var(--theme);
  margin-top: 20px;
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    padding: 30px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info .image {
  border-radius: 100%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .news-title {
  font-size: 22px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: "Chakra Petch", sans-serif;
}
.gt-news-details-wrapper .gt-news-details-content .text {
  font-size: 24px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .text {
    font-size: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding: 30px 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: var(--header);
  font-family: "Big Shoulders", sans-serif;
  margin-right: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 14px 26px;
  line-height: 1;
  background: #F5F6F6;
  margin-right: 8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    padding: 10px 20px;
  }
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--bg);
  border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
  margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area h3 {
  font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 22px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
  padding: 5px 18px;
  font-weight: 600;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
  background-color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
  background-color: var(--bg);
  padding: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h3 {
  margin-bottom: 30px;
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
  font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt span {
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--border);
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--white);
  text-transform: uppercase;
  border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn {
  background-color: var(--theme);
  color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn::before {
  background-color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 40px;
  background-color: #F5F6F6;
  padding: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 800;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 18px 22px;
  line-height: 1;
  text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    flex-wrap: nowrap;
  }
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content {
  flex: 1 1 auto;
  min-width: 0;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  font-family: "Chakra Petch", sans-serif;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--text);
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--white);
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

/* 02.14 Preloader */
.back-to-top {
  border-radius: 0 !important;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  pointer-events: none;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: 500 5em "Big Shoulders", sans-serif, "Chakra Petch", sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Big Shoulders", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

/* 02.15 Section */
.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.section-title h3 {
  font-size: 32px;
}
.section-title.style-2 h2 span {
  color: var(--theme);
  -webkit-text-stroke-width: initial;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme);
  font-family: "Chakra Petch", sans-serif;
  position: relative;
  margin-bottom: 15px;
}
.section-title h2 {
  text-transform: uppercase;
}
.section-title h2 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--theme);
  letter-spacing: 0.5px;
  color: transparent;
}
.section-title h2 .text-weight-700 {
  font-weight: 700;
  color: var(--header);
  letter-spacing: initial;
  -webkit-text-stroke-width: initial;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* 02.16 Team */
.our-club-payer-item {
  margin-top: 30px;
}
.our-club-payer-item .player-image {
  position: relative;
}
.our-club-payer-item .player-image img {
  width: 100%;
  height: 100%;
}
.our-club-payer-item .player-image .number {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
  top: 20px;
  right: 20px;
  position: absolute;
  background: transparent;
  color: transparent;
  transition: all 0.4s ease-in-out;
}
.our-club-payer-item .player-image .number.style-2 {
  -webkit-text-stroke-color: var(--white);
}
.our-club-payer-item .player-image .player-content {
  position: absolute;
  bottom: 45px;
  text-align: center;
  left: 40px;
  right: 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .our-club-payer-item .player-image .player-content {
    left: 30px;
    right: 30px;
  }
}
.our-club-payer-item .player-image .player-content h4 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .our-club-payer-item .player-image .player-content h4 {
    font-size: 20px;
  }
}
.our-club-payer-item .player-image .player-content h4 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.our-club-payer-item .player-image .player-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.our-club-payer-item .player-image .player-content p {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.our-club-payer-item .player-image .content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -23px;
  left: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-top: 1px solid rgba(199, 201, 206, 0.16);
  padding-top: 16px;
}
@media (max-width: 1600px) {
  .our-club-payer-item .player-image .content-item {
    left: 20px;
    right: 20px;
  }
}
.our-club-payer-item .player-image .content-item .content {
  text-align: center;
}
.our-club-payer-item .player-image .content-item .content h6 {
  text-transform: uppercase;
  font-family: "Chakra Petch", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 1600px) {
  .our-club-payer-item .player-image .content-item .content h6 {
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .our-club-payer-item .player-image .content-item .content h6 {
    font-size: 14px;
  }
}
.our-club-payer-item .player-image .content-item .content h5 {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}
@media (max-width: 1600px) {
  .our-club-payer-item .player-image .content-item .content h5 {
    font-size: 20px;
  }
}
.our-club-payer-item .player-image .content-item .content span {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  display: inline-block;
}
.our-club-payer-item .player-image .content-item .content .title {
  color: var(--theme);
  font-size: 16px;
  font-weight: 700;
}
.our-club-payer-item:hover .player-image .player-content {
  margin-bottom: 100px;
}
.our-club-payer-item:hover .player-image .number {
  background: transparent;
  color: var(--white);
  -webkit-text-stroke-width: var(--white);
  -webkit-text-stroke-color: var(--white);
  opacity: 1;
}
.our-club-payer-item:hover .player-image .number.style-2 {
  -webkit-text-stroke-width: var(--white);
  -webkit-text-stroke-color: var(--white);
  color: var(--white);
  opacity: 1;
}
.our-club-payer-item:hover .player-image .content-item {
  opacity: 1;
  visibility: visible;
  bottom: 23px;
}

.team-images-items .themb {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.team-images-items .themb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(3, 5, 35, 0) 32.76%, var(--Text-Primary, #030523) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-images-items .themb img {
  width: 100%;
  height: 100%;
}
.team-images-items .themb .social-icon {
  display: grid;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 20px;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.team-images-items .themb .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
  font-size: 14px;
}
.team-images-items .themb .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-images-items .content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -24px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.team-images-items .content img {
  width: initial;
  height: initial;
}
.team-images-items .content h3 a {
  color: var(--white);
}
.team-images-items .content h3 a:hover {
  color: var(--theme);
}
.team-images-items .content span {
  color: var(--white);
}
.team-images-items .content .last-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-images-items .content .last-name p {
  color: rgba(255, 255, 255, 0.7);
}
.team-images-items .content .last-name .flag-name {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(44px);
  padding: 8px;
  color: var(--white);
}
.team-images-items .content .last-name .flag-name img {
  margin-right: 8px;
}
.team-images-items:hover .themb::before {
  opacity: 1;
  visibility: visible;
}
.team-images-items:hover .themb .social-icon {
  opacity: 1;
  visibility: visible;
  left: 20px;
}
.team-images-items:hover .themb .content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.team-content-box {
  margin-left: 25px;
}
@media (max-width: 1399px) {
  .team-content-box {
    margin-left: 0;
  }
}
.team-content-box .team-text {
  margin-top: 25px;
  margin-bottom: 50px;
  opacity: 0.8;
}
.team-content-box .theme-btn::before {
  background-color: var(--white);
}
.team-content-box .theme-btn:hover {
  color: var(--header);
}

.team-details-wrapper {
  margin-bottom: 100px;
}
.team-details-wrapper .team-details-image {
  position: relative;
}
.team-details-wrapper .team-details-image .number {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
  top: 20px;
  right: 20px;
  position: absolute;
  background: transparent;
  color: transparent;
  transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .team-details-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .team-details-content .top-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(199, 201, 206, 0.32);
  padding-top: 24px;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .top-details {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.team-details-wrapper .team-details-content .top-details .left-details {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .top-details .left-details {
    flex-wrap: wrap;
  }
}
.team-details-wrapper .team-details-content .top-details .left-details p {
  font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span {
  color: var(--header);
  font-size: 18px;
  font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span img {
  margin-left: 6px;
}
.team-details-wrapper .team-details-content .top-details .right-details {
  display: flex;
  align-items: center;
}
.team-details-wrapper .team-details-content .top-details .right-details p {
  font-weight: 700;
  margin-right: 12px;
}
.team-details-wrapper .team-details-content .top-details .right-details span {
  color: var(--header);
  font-size: 18px;
  font-weight: 700;
}
.team-details-wrapper .team-details-content ul {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.team-details-wrapper .team-details-content ul li {
  font-size: 16px;
  font-weight: 700;
}
.team-details-wrapper .team-details-content ul li b {
  color: var(--header);
}
.team-details-wrapper .team-details-content .social-icon {
  margin-top: 48px;
  gap: 16px;
}
.team-details-wrapper .team-details-content .social-icon span {
  font-weight: 700;
  color: var(--header);
  display: inline-block;
  margin-right: 12px;
}
.team-details-wrapper .team-details-content .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
}
.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-details-wrapper .player-profile-stats {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 24px;
  background: #030523;
}
.team-details-wrapper .player-profile-stats .content {
  flex: 1;
  text-align: center;
}
.team-details-wrapper .player-profile-stats .content h6 {
  margin: 0 0 6px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.team-details-wrapper .player-profile-stats .content h5 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 575px) {
  .team-details-wrapper .player-profile-stats {
    padding: 16px;
    gap: 10px;
  }
  .team-details-wrapper .player-profile-stats .content h5 {
    font-size: 22px;
  }
}

.trophy-box-item {
  text-align: center;
}
.trophy-box-item .content {
  margin-top: 20px;
}
.trophy-box-item .content span {
  color: var(--theme);
  font-weight: 700;
  display: inline-block;
  margin-top: 5px;
}

.gallery-thumb-inner {
  margin-top: 30px;
  position: relative;
}
.gallery-thumb-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  background: rgba(29, 29, 29, 0.6);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.gallery-thumb-inner .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.gallery-thumb-inner img {
  width: 100%;
  height: 100%;
}
.gallery-thumb-inner:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gallery-thumb-inner:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.gallery-section .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gallery-section .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 700;
  background-color: var(--bg);
  color: var(--header);
  text-align: center;
  padding: 16px 28px;
  line-height: 1;
}
.gallery-section .nav .nav-item .nav-link i {
  margin-left: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.gallery-section .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}
.gallery-section .nav .nav-item .nav-link.active i {
  opacity: 1;
  visibility: visible;
}

/* 02.17 Testimonial */
.testimonial-box-slider {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(90px);
  padding: 64px 48px;
}
@media (max-width: 1199px) {
  .testimonial-box-slider {
    padding: 44px 35px;
  }
}
@media (max-width: 575px) {
  .testimonial-box-slider {
    padding: 40px 30px;
  }
}
.testimonial-box-slider .quote-icon {
  margin-bottom: 25px;
}
.testimonial-box-slider p {
  color: #ABABAB;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .testimonial-box-slider p {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .testimonial-box-slider p {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .testimonial-box-slider p {
    font-size: 16px;
  }
}
.testimonial-box-slider .client-info-items {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(66px);
  padding: 27px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .testimonial-box-slider .client-info-items {
    background-color: #0B0E13;
  }
}
@media (max-width: 1199px) {
  .testimonial-box-slider .client-info-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
  }
}
.testimonial-box-slider .client-info-items .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 80px;
}
@media (max-width: 1399px) {
  .testimonial-box-slider .client-info-items .client-info {
    padding-right: 0;
    border-right: none;
  }
}
.testimonial-box-slider .client-info-items .client-info img {
  border: 1px solid var(--white);
  border-radius: 50%;
}
.testimonial-box-slider .client-info-items .client-info .content h4 {
  font-size: 24px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 575px) {
  .testimonial-box-slider .client-info-items .client-info .content h4 {
    font-size: 18px;
  }
}
.testimonial-box-slider .client-info-items .client-info .content span {
  color: #FFF;
  font-weight: 600;
  opacity: 0.7;
}
.testimonial-box-slider .client-info-items .star {
  color: var(--theme);
}

.testimonial-right-items {
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .testimonial-right-items {
    margin-left: 0;
  }
  .testimonial-right-items .image img {
    width: 100%;
    height: 100%;
  }
}
.testimonial-right-items .section-title {
  margin-bottom: 45px;
}
.testimonial-right-items .testi-count {
  border: 1px solid rgba(199, 201, 206, 0.24);
  text-align: center;
  padding: 40px 20px;
}
.testimonial-right-items .array-button {
  gap: 16px;
  position: relative;
  z-index: 9;
  margin-top: 37px;
}
@media (max-width: 991px) {
  .testimonial-right-items .array-button {
    display: none !important;
  }
}
.testimonial-right-items .array-button .array-prev {
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
@media (max-width: 575px) {
  .testimonial-right-items .array-button .array-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.testimonial-right-items .array-button .array-prev i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
  color: inherit;
  font-size: 16px;
}
.testimonial-right-items .array-button .array-prev:hover {
  background-color: var(--theme);
  color: #fff;
  border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-prev:hover svg path {
  fill: var(--white);
}
.testimonial-right-items .array-button .array-next {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
@media (max-width: 575px) {
  .testimonial-right-items .array-button .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.testimonial-right-items .array-button .array-next i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
  color: inherit;
  font-size: 16px;
}
.testimonial-right-items .array-button .array-next:hover {
  background-color: var(--theme);
  color: #fff;
  border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-next:hover svg path {
  fill: var(--white);
}

.testimonial-wrapper {
  margin-top: 55px;
}

.testimonial-box-4 h3 {
  font-size: 30px;
  color: var(--white);
  line-height: 140%;
}
@media (max-width: 1399px) {
  .testimonial-box-4 h3 {
    font-size: 26px;
    line-height: 160%;
  }
}
@media (max-width: 1199px) {
  .testimonial-box-4 h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .testimonial-box-4 h3 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .testimonial-box-4 h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-box-4 h3 {
    font-size: 18px;
  }
}
.testimonial-box-4 .client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.testimonial-box-4 .client-info h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .testimonial-box-4 .client-info h4 {
    font-size: 18px;
  }
}
.testimonial-box-4 .client-info p {
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 1399px) {
  .testimonial-section-4 {
    padding: 100px 0;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-4 .testimonial-image img {
    width: 100%;
    height: 100%;
  }
}

/* Ana sayfa ? kullan?c? giri? portallar? */
.portal-section {
  background: var(--bg, #f3f5f8);
}
.portal-section .section-title h6 {
  color: var(--theme, #fe5900);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 8px;
}
.portal-section .section-title h2 span {
  color: var(--theme, #fe5900);
}
.portal-card {
  height: 100%;
  background: var(--white, #fff);
  box-shadow: var(--box-shadow, 0 4px 20px rgba(3, 5, 35, 0.08));
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(3, 5, 35, 0.12);
}
.portal-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 89, 0, 0.1);
  color: var(--theme, #fe5900);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.portal-card h3 {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--header, #030523);
  margin: 0 0 10px;
}
.portal-card p {
  color: var(--text, #464e5e);
  margin: 0 0 20px;
  flex: 1;
}
.portal-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.portal-card__actions .theme-btn {
  margin: 0;
}
.portal-card__link {
  color: var(--header, #030523);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
}
.portal-card__link:hover {
  color: var(--theme, #fe5900);
}

/* FutbolTurnuvasi.com marka logosu — header / offcanvas */
.header-1 .logo img,
.offcanvas__logo img {
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 575px) {
  .header-1 .logo img {
    width: 108px;
    max-width: 108px;
    height: auto;
  }
}
@media (max-width: 470px) {
  .header-1 .logo img {
    width: 96px;
    max-width: 96px;
    height: auto;
  }
}
.footer-widget-items .widget-head img {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Futbolcu Merkezi ? ?ehir filtresi + Nitro kartlar */
.players-center-section .players-city-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.players-center-section .players-city-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #030523;
  background: #f0f1f5;
  transition: background 0.25s ease, color 0.25s ease;
}
.players-center-section .players-city-chip:hover,
.players-center-section .players-city-chip.active {
  background: #FE5900;
  color: #fff;
}
.players-center-section .players-city-cta {
  margin-left: auto;
  height: 42px;
  line-height: 42px;
  padding: 0 18px;
}
.players-center-section .players-city-meta {
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .players-center-section .players-city-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.players-center-section .players-center-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.players-center-section .our-club-payer-item {
  margin-top: 0;
}
.players-center-section .our-club-payer-item .player-image {
  background: #030523;
  overflow: hidden;
  transition: background 0.4s ease-in-out;
}
.players-center-section .our-club-payer-item .player-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.players-center-section .our-club-payer-item:hover .player-image {
  background: #FE5900;
}
.players-center-section .our-club-payer-item .player-image .player-content {
  left: 16px;
  right: 16px;
  bottom: 28px;
}
.players-center-section .our-club-payer-item .player-image .player-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.players-center-section .our-club-payer-item .player-image .player-content p {
  font-size: 13px;
}
.players-center-section .our-club-payer-item .player-image .content-item {
  left: 14px;
  right: 14px;
}
.players-center-section .our-club-payer-item .player-image .content-item .content h5 {
  font-size: 18px;
}
.players-center-section .our-club-payer-item .player-image .number {
  font-size: 42px;
  top: 12px;
  right: 12px;
}
@media (max-width: 1199px) {
  .players-center-section .players-center-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .players-center-section .players-center-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .players-center-section .our-club-payer-item .player-image img {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .players-center-section .players-center-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .players-center-section .our-club-payer-item .player-image img {
    height: 240px;
  }
  .players-center-section .our-club-payer-item .player-image .player-content h4 {
    font-size: 14px;
  }
  .players-center-section .our-club-payer-item .player-image .player-content p {
    font-size: 11px;
  }
  .players-center-section .our-club-payer-item:hover .player-image .player-content {
    margin-bottom: 80px;
  }
}
.players-flash {
  margin: 0 0 16px;
  padding: 12px 16px;
  font-weight: 700;
}
.players-flash--success {
  background: rgba(39, 174, 96, 0.12);
  color: #1e7e46;
}
.players-flash--error {
  background: rgba(192, 57, 43, 0.12);
  color: #a93226;
}
.players-transfer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.players-transfer-btn {
  height: 36px !important;
  line-height: 36px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
}
.players-transfer-btn--danger,
.admin-btn-danger {
  background: #c0392b !important;
}
.players-transfer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  background: #f0f1f5;
  color: #030523;
}
.player-transfer-box {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 201, 206, 0.32);
}
.player-transfer-box h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}
.player-transfer-box .admin-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.player-transfer-box .admin-input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(3, 5, 35, 0.15);
  background: #fff;
}

/* WhatsApp ileti?im */
.whatsapp-contact-box {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 40px;
  background: #f4f7f5;
  border-left: 4px solid #25d366;
}
.whatsapp-contact-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 36px;
}
.whatsapp-contact-content h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.whatsapp-contact-content p {
  margin-bottom: 12px;
  color: #464E5E;
}
.whatsapp-contact-phone a {
  color: #128c7e;
  font-weight: 700;
  font-size: 18px;
}
.whatsapp-contact-btn {
  background: #25d366 !important;
}
.whatsapp-contact-btn::before {
  background: #128c7e !important;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff !important;
  transform: translateY(-3px) scale(1.04);
}
@media (max-width: 767px) {
  .whatsapp-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 18px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
/*# sourceMappingURL=main.css.map */
/* Touch / Capacitor WebView ? giri? alanlar?nda klavye */
html.is-touch .mouseCursor,
html.is-touch .cursor-inner,
html.is-touch .cursor-outer,
body.is-light-chrome .mouseCursor {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-light-chrome {
  cursor: auto;
}
.contact-form-box .form-clt input[type="text"],
.contact-form-box .form-clt input[type="email"],
.contact-form-box .form-clt input[type="password"],
.contact-form-box .form-clt input[name="username"],
.admin-form input[type="text"],
.admin-form input[type="password"] {
  -webkit-user-select: text !important;
  user-select: text !important;
  touch-action: manipulation;
  text-transform: none !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}

.ts-theme-pick {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-theme-pick__swatch {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(16, 20, 31, 0.12);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.ts-theme-pick__swatch::-webkit-color-swatch-wrapper { padding: 3px; }
.ts-theme-pick__swatch::-webkit-color-swatch {
  border: 0;
  border-radius: 7px;
}
.ts-theme-pick .admin-input {
  min-width: 0;
}

/* Kay?t formlar? ? KVKK / onay checkbox'lar? */
.register-consents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 4px;
  padding: 18px 16px;
  background: #f7f8f9;
  border: 1px solid rgba(199, 201, 206, 0.35);
}
.register-consents__item {
  margin: 0;
}
.register-consents__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  font-weight: 500;
  cursor: pointer;
}
.register-consents__label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #FE5900;
}
.register-consents__label a {
  color: #FE5900;
  text-decoration: underline;
}
.register-consents__label em {
  font-style: normal;
  opacity: 0.85;
}
.register-consents__error {
  margin: 4px 0 0 26px;
  font-size: 12px;
  color: #c0392b;
  font-weight: 600;
}
.register-consents__field-title {
  font-size: 14px !important;
  margin-bottom: 6px !important;
  color: #666 !important;
}
.register-consents__guardian {
  padding-top: 6px;
  border-top: 1px dashed rgba(199, 201, 206, 0.5);
}
.legal-page h2,
.legal-page h3 {
  color: var(--header);
}
.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.legal-page li {
  margin-bottom: 0.35rem;
}

/* Google ile devam et ? kay?t formlar? */
.register-google {
  margin-bottom: 8px;
}
.register-google__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.register-google__btn:hover {
  background: #f8f9fa;
  color: #3c4043;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.register-google__btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.register-google__icon {
  display: inline-flex;
  line-height: 0;
}
.register-google__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 4px;
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.register-google__divider::before,
.register-google__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(199, 201, 206, 0.7);
}
.register-google__linked {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.register-google__linked i {
  margin-top: 2px;
}
.register-google__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #888;
  text-align: center;
}
.contact-form-box input[readonly] {
  background: #f0f1f3;
  cursor: default;
}

/* GiriÅ bannerlarÄ± â desktop saÄ figÃ¼r, mobilde ayrÄ± crop */
.login-banner {
  background-position: center right;
  background-repeat: no-repeat;
}
.login-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(3, 5, 35, 0.55) 0%,
    rgba(3, 5, 35, 0.22) 45%,
    rgba(3, 5, 35, 0.15) 100%
  );
}
.login-banner .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .login-banner {
    background-position: center center;
  }
  .login-banner::before {
    background: linear-gradient(
      180deg,
      rgba(3, 5, 35, 0.45) 0%,
      rgba(3, 5, 35, 0.55) 55%,
      rgba(3, 5, 35, 0.72) 100%
    );
  }
  .login-banner--organizer {
    background-image: url("/assets/img/organizer-login-banner-mobile.jpg") !important;
  }
  .login-banner--referee {
    background-image: url("/assets/img/referee-login-banner-mobile.jpg") !important;
  }
  .login-banner--player {
    background-image: url("/assets/img/player-login-banner-mobile.jpg") !important;
  }
  .login-banner--announcer {
    background-image: url("/assets/img/announcer-login-banner-mobile.jpg") !important;
  }
  .login-banner--team-manager {
    background-image: url("/assets/img/team-manager-login-banner-mobile.jpg") !important;
  }
  .login-banner--admin {
    background-image: url("/assets/img/admin-login-banner-mobile.jpg") !important;
  }
}
@media (max-width: 575px) {
  .login-banner .gt-page-heading {
    padding-top: 140px;
    padding-bottom: 90px;
  }
}

/* HalÄ± saha filtre select â ok ile yazÄ± Ã§akÄ±ÅmasÄ±n */
.halisaha-filters .halisaha-filter-select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 40px 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236E6E6E' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  color: #222;
  font-family: "Chakra Petch", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.halisaha-filters .halisaha-filter-select:focus {
  outline: none;
  border-color: var(--theme, #fe5900);
}


/* Aktivite puani / kidem */
.activity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #030523;
  background: rgba(254, 89, 0, 0.08);
  border: 1px solid rgba(254, 89, 0, 0.2);
  border-radius: 4px;
  white-space: nowrap;
  vertical-align: middle;
}
.activity-badge i { color: #fe5900; font-size: 0.9em; }
.activity-badge--bronz i { color: #b87333; }
.activity-badge--gumus i { color: #7a8a99; }
.activity-badge--altin i { color: #c9a227; }
.activity-badge--elit i { color: #2563eb; }
.activity-badge--compact {
  padding: 2px 7px;
  font-size: 0.7rem;
  font-weight: 600;
}
.our-club-payer-item .player-content .activity-badge {
  margin-left: 2px;
}
.activity-rankings__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.activity-rankings__tab {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: #030523;
  background: #fff;
  border: 1px solid rgba(3, 5, 35, 0.12);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.activity-rankings__tab:hover,
.activity-rankings__tab.is-active {
  color: #fff;
  background: #fe5900;
  border-color: #fe5900;
}
.activity-rankings__table-wrap {
  overflow-x: auto;
  background: #fff;
  box-shadow: 0 4px 20px rgba(3, 5, 35, 0.06);
}
.activity-rankings__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.activity-rankings__table th,
.activity-rankings__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(3, 5, 35, 0.08);
  vertical-align: middle;
}
.activity-rankings__table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  background: #f7f8fa;
}
.activity-rankings__rank {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #030523;
  width: 48px;
}
.activity-rankings__pts {
  font-weight: 800;
  color: #fe5900;
}
.activity-rankings__person {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.activity-rankings__person img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  background: #030523;
}

/* Haftanin golleri / YouTube highlights */
.hl-featured {
  margin-top: 24px;
  background: #030523;
  overflow: hidden;
}
.hl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030523;
}
.hl-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hl-player--featured {
  min-height: 280px;
}
.hl-featured__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.hl-featured__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  color: #fe5900;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}
.hl-featured__play:hover {
  color: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}
.hl-featured__content {
  padding: 22px 24px 28px;
  color: #fff;
}
.hl-featured__content span {
  display: inline-block;
  background: #fe5900;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.hl-featured__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}
.hl-featured__content h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}
.hl-featured__content h3 a {
  color: #fff;
  text-decoration: none;
}
.hl-featured__content h3 a:hover {
  color: #fe5900;
}
.hl-featured__content .link-btn {
  color: #fe5900;
}
.hl-video-card {
  margin-top: 30px;
  background: #f5f6f6;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}
.hl-video-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #030523;
}
.hl-video-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.hl-video-card:hover .hl-video-card__media img {
  transform: scale(1.04);
}
.hl-video-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fe5900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hl-video-card__body {
  padding: 18px 18px 22px;
  flex: 1;
}
.hl-video-card__body span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fe5900;
  margin-bottom: 8px;
}
.hl-video-card__body ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.85rem;
  color: #666;
}
.hl-video-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}
.hl-video-card__body h3 a {
  color: #030523;
  text-decoration: none;
}
.hl-video-card__body h3 a:hover {
  color: #fe5900;
}
.hl-video-meta {
  margin-top: 22px;
}
.hl-video-meta h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}
.hl-video-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  color: #666;
}
.hl-video-meta a {
  color: #fe5900;
  text-decoration: none;
}
.hl-video-desc {
  white-space: pre-line;
  color: #444;
}
.hl-related h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}
.hl-related__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: #030523;
  margin-bottom: 14px;
}
.hl-related__item img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  flex-shrink: 0;
  background: #030523;
}
.hl-related__item span {
  font-weight: 700;
  line-height: 1.35;
  font-size: 0.92rem;
}
.hl-related__item:hover span {
  color: #fe5900;
}

/* Yorum formu — video + haber */
.gt-comments-area {
  margin-top: 36px;
}
.gt-comments-heading h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.gt-blog-single-comment {
  border-bottom: 1px solid rgba(3, 5, 35, 0.08);
}
.gt-blog-single-comment .gt-content h5 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.gt-blog-single-comment .gt-content h5 span,
.gt-blog-single-comment .gt-content .con span {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: none;
}
.gt-comment-form-wrap.ft-comment-box,
.ft-comment-box {
  background: #f5f6f8;
  border: 1px solid rgba(3, 5, 35, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 28px;
}
.ft-comment-box h3 {
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(3, 5, 35, 0.1);
  font-size: 1.45rem;
}
.ft-comment-box .form-clt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 0;
}
.ft-comment-box .form-clt label,
.ft-comment-box .form-clt span {
  display: block;
  width: 100%;
  margin: 0;
  color: #030523;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.ft-comment-box .form-clt input,
.ft-comment-box .form-clt textarea,
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap.ft-comment-box .form-clt input,
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap.ft-comment-box .form-clt textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 1px solid rgba(3, 5, 35, 0.14);
  border-radius: 10px;
  background-color: #fff;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: #030523 !important;
  -webkit-text-fill-color: #030523;
  caret-color: #030523;
  text-transform: none !important;
}
.ft-comment-box .form-clt input:focus,
.ft-comment-box .form-clt textarea:focus {
  border-color: #fe5900;
  box-shadow: 0 0 0 3px rgba(254, 89, 0, 0.12);
  color: #030523 !important;
  -webkit-text-fill-color: #030523;
}
.ft-comment-box .form-clt input::placeholder,
.ft-comment-box .form-clt textarea::placeholder {
  color: #8b93a3;
  text-transform: none;
}
.ft-comment-box .form-clt input[type="email"] {
  text-transform: lowercase !important;
}
.ft-comment-box .form-clt textarea,
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap.ft-comment-box .form-clt textarea {
  min-height: 200px;
  padding: 16px;
  padding-bottom: 16px;
  resize: vertical;
  line-height: 1.55;
}
.ft-comment-box .theme-btn {
  min-width: 180px;
}
@media (max-width: 767px) {
  .ft-comment-box {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .ft-comment-box h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .ft-comment-box .form-clt textarea {
    min-height: 220px;
  }
  .ft-comment-box .theme-btn {
    width: 100%;
    text-align: center;
  }
}

/* Sesli asistan (FT Asistan) */
.ft-assistant {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 10000;
  font-family: \"Chakra Petch\", sans-serif;
}
.ft-assistant__fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 999px;
  background: #030523;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(3, 5, 35, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ft-assistant__fab i { color: #fe5900; font-size: 1.15rem; }
.ft-assistant__fab:hover {
  background: #12163a;
  transform: translateY(-2px);
}
.ft-assistant.is-open .ft-assistant__fab { display: none; }
.ft-assistant__panel {
  width: min(380px, calc(100vw - 28px));
  max-height: min(72vh, 620px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(3, 5, 35, 0.08);
  box-shadow: 0 18px 50px rgba(3, 5, 35, 0.22);
  overflow: hidden;
}
.ft-assistant__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #030523;
  color: #fff;
}
.ft-assistant__head strong { display: block; font-size: 1.05rem; }
.ft-assistant__head p {
  margin: 4px 0 0;
  opacity: 0.75;
  font-size: 0.78rem;
}
.ft-assistant__icon-btn {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.ft-assistant__log {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  background: #f5f6f6;
  min-height: 180px;
}
.ft-assistant__bubble {
  max-width: 92%;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  border-radius: 12px;
  white-space: pre-wrap;
}
.ft-assistant__bubble--assistant {
  background: #fff;
  color: #030523;
  border: 1px solid rgba(3, 5, 35, 0.06);
}
.ft-assistant__bubble--user {
  margin-left: auto;
  background: #fe5900;
  color: #fff;
}
.ft-assistant__status {
  min-height: 1.2em;
  margin: 0;
  padding: 6px 14px 0;
  font-size: 0.78rem;
  color: #666;
}
.ft-assistant__callbar {
  display: flex;
  gap: 8px;
  padding: 10px 14px 0;
}
.ft-assistant__call,
.ft-assistant__hang {
  flex: 1;
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}
.ft-assistant__call {
  background: #25d366;
  color: #fff;
}
.ft-assistant__hang {
  background: #c0392b;
  color: #fff;
}
.ft-assistant.is-listening .ft-assistant__callbar::after,
.ft-assistant.is-calling .ft-assistant__status {
  color: #fe5900;
  font-weight: 700;
}
.ft-assistant__compose {
  display: flex;
  gap: 8px;
  padding: 10px 14px 8px;
}
.ft-assistant__compose input {
  flex: 1;
  border: 1px solid rgba(3, 5, 35, 0.12);
  padding: 11px 12px;
  font-size: 0.9rem;
  outline: none;
  background: #fff !important;
  color: #030523 !important;
  caret-color: #030523;
  -webkit-text-fill-color: #030523;
}
.ft-assistant__compose input::placeholder {
  color: #888 !important;
  -webkit-text-fill-color: #888;
  opacity: 1;
}
.ft-assistant__compose input:focus {
  border-color: #fe5900;
  color: #030523 !important;
  -webkit-text-fill-color: #030523;
}
.ft-assistant__send {
  border: 0;
  width: 44px;
  background: #030523;
  color: #fff;
  cursor: pointer;
}
.ft-assistant__hint {
  margin: 0;
  padding: 0 14px 12px;
  font-size: 0.7rem;
  color: #888;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .ft-assistant {
    left: 12px;
    bottom: 84px;
  }
  .ft-assistant__fab span { display: none; }
  .ft-assistant__fab {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Rol odaları (oyuncu/hakem/spiker kartları):
   hover'da isim bloğuna turuncu zemin — yazılar görselin üzerinde okunur kalır */
.players-center-section .our-club-payer-item .player-image .player-content {
  padding: 10px 8px;
  border-radius: 10px;
  background: transparent;
}
.players-center-section .our-club-payer-item:hover .player-image .player-content {
  background: rgba(254, 89, 0, 0.95);
  box-shadow: 0 8px 22px rgba(3, 5, 35, 0.4);
}
.players-center-section .our-club-payer-item:hover .player-image .player-content h4,
.players-center-section .our-club-payer-item:hover .player-image .player-content h4 a,
.players-center-section .our-club-payer-item:hover .player-image .player-content p {
  color: #fff;
}
.players-center-section .our-club-payer-item:hover .player-image .player-content h4 a:hover {
  color: #fff;
  background-image: linear-gradient(180deg, #fff 0%, #fff 100%);
}
/* Alt istatistik şeridi de koyu zeminle okunur olsun */
.players-center-section .our-club-payer-item .player-image .content-item {
  background: rgba(3, 5, 35, 0.88);
  border-radius: 8px;
  border-top: none;
  padding: 10px 8px;
}

/* ============================================
   Canlı Sonuçlar paneli (ana sayfa)
   ============================================ */
.home-top-stack {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .home-top-stack .hero-1 {
    padding-bottom: 0;
    overflow: hidden;
  }
  .home-top-stack .hero-1 .row {
    align-items: flex-end;
  }
  .home-top-stack .hero-1 .hero-image {
    z-index: 1;
    display: block;
    line-height: 0;
    overflow: hidden;
  }
  .home-top-stack .hero-1 .hero-image img.tilt_scale {
    display: block;
    vertical-align: bottom;
  }
  .home-top-stack .live-scores-section {
    margin-top: 0;
    padding: 48px 0 40px;
    position: relative;
    z-index: 2;
  }
}

.home-joins-panel {
  margin-top: 16px;
  padding: 18px 0 10px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(12, 16, 32, 0.08);
  position: relative;
  z-index: 12;
  overflow: hidden;
}
.home-joins-panel h2 {
  margin: 0 18px 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.home-joins-empty {
  margin: 0 18px 10px;
  color: #5c6478;
  font-size: 14px;
}
.home-joins-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.home-joins-marquee__track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: home-joins-scroll var(--joins-duration, 40s) linear infinite;
}
.home-joins-marquee:hover .home-joins-marquee__track {
  animation-play-state: paused;
}
@keyframes home-joins-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.home-joins {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0 10px 10px;
}
.home-joins li { flex: 0 0 auto; }
.home-join__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 6px 16px 6px 6px;
  background: #f4f6fb;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.home-join__link img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #0c1020;
  flex-shrink: 0;
}
.home-join__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.home-join__copy strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-join__copy span {
  font-size: 12px;
  color: #5c6478;
}
.home-join__copy em {
  font-style: normal;
  font-weight: 800;
  color: #fe5900;
}
@media (prefers-reduced-motion: reduce) {
  .home-joins-marquee__track { animation: none; }
}

html[data-theme="dark"] .home-joins-panel {
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .home-join__link { background: #10131c; }
html[data-theme="dark"] .home-join__copy strong { color: #eef1f6; }
html[data-theme="dark"] .home-join__copy span { color: #9aa3b5; }
html[data-theme="dark"] .home-joins-empty { color: #9aa3b5; }
@media (max-width: 991px) {
  html {
    background-color: #fe5900;
  }
  body:has(.home-top-stack) .header-1,
  body:has(.home-top-stack) .header-1.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    background: #fe5900;
    padding-top: env(safe-area-inset-top, 0px);
    animation: none;
    transition: none;
    box-shadow: none;
  }
  .header-1 .logo img {
    width: auto;
    max-width: 124px;
    max-height: 58px;
  }
  .header-main {
    align-items: center;
    padding: 10px 0;
  }
  .header-main > .logo,
  .header-main > .header-right {
    min-height: 56px;
  }
  .home-top-stack .live-scores-section {
    order: -1;
    padding: calc(96px + env(safe-area-inset-top, 0px)) 0 28px;
  }
  .home-top-stack .hero-1 {
    padding-top: 40px;
    padding-bottom: 0;
    overflow: hidden;
  }
  .home-top-stack .hero-1 .row > [class*="col-"]:last-child {
    padding-bottom: 0;
  }
  .home-top-stack .hero-1 .hero-image {
    line-height: 0;
    overflow: hidden;
    text-align: center;
  }
  .home-top-stack .hero-1 .hero-image img.tilt_scale {
    display: block;
    margin: 0 auto;
    vertical-align: bottom;
  }
  .tournaments-home-section {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-1 .logo img {
    width: auto;
    max-width: 112px;
    max-height: 54px;
  }
  .home-top-stack .live-scores-section {
    padding: calc(90px + env(safe-area-inset-top, 0px)) 0 24px;
  }
  .home-top-stack .hero-1 {
    padding-top: 32px;
    padding-bottom: 0;
  }
}
.live-scores-panel {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(3, 5, 35, 0.12);
}
.ls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #111111;
  padding: 10px 14px 10px 18px;
}
.ls-header h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ls-search {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 14px;
  height: 34px;
  min-width: 108px;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  background: #2a2a2a;
  color: #9ca3af;
  cursor: text;
}
.ls-search i {
  font-size: 12px;
  flex-shrink: 0;
}
.ls-search input {
  width: 52px;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.ls-search input::placeholder {
  color: #9ca3af;
}
.ls-search input::-webkit-search-cancel-button {
  filter: invert(1);
}
.ls-daybar {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
  min-height: 72px;
  border-bottom: 1px solid #eceff3;
}
.ls-cal-btn {
  flex: 0 0 72px;
  width: 72px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #fe5900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ls-cal-face {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
}
.ls-cal-svg {
  display: block;
  width: 42px;
  height: 42px;
  color: #fff;
}
.ls-cal-num {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.ls-cal-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  z-index: 2;
}
.ls-days {
  flex: 0 0 336px;
  width: 336px;
  max-width: calc(100% - 40px);
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}
.ls-days::-webkit-scrollbar { display: none; }
.ls-day-track {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.ls-day-arrow {
  display: flex;
  flex: 0 0 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 11px;
  padding: 0;
}
.ls-day-arrow:hover { color: #fe5900; }
.ls-day-arrow:disabled {
  color: #cbd5e1;
  cursor: default;
}
.ls-live-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 72px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid #eceff3;
  background: #fff;
  color: #e11d48;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
}
.ls-live-btn .ls-live-dot {
  width: 9px;
  height: 9px;
}
.ls-live-btn:not(.has-live) .ls-live-dot {
  animation: none;
  background: #cbd5e1;
}
.ls-live-btn:not(.has-live) {
  color: #94a3b8;
}
.ls-live-btn.is-on {
  background: #e11d48;
  color: #fff;
  border-left-color: #e11d48;
}
.ls-live-btn.is-on .ls-live-dot {
  background: #fff;
}
.ls-live-btn-count {
  min-width: 1.1em;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 575px) {
  .ls-live-btn {
    min-width: 52px;
    padding: 0 8px;
    gap: 5px;
  }
  .ls-live-btn-text { display: none; }
}
.ls-day {
  position: relative;
  flex: 0 0 calc(100% / 7);
  width: calc(100% / 7);
  max-width: calc(100% / 7);
  min-width: calc(100% / 7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px 12px;
  text-decoration: none;
  color: #111;
  box-sizing: border-box;
  background: none;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  appearance: none;
  scroll-snap-align: start;
}
.ls-day-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
  line-height: 1;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ls-day-date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.ls-day:hover .ls-day-name,
.ls-day:hover .ls-day-date { color: #fe5900; }
.ls-day.active .ls-day-name,
.ls-day.active .ls-day-date {
  color: #fe5900;
  font-weight: 700;
}
.ls-day.active::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 3px;
  background: #fe5900;
  border-radius: 2px 2px 0 0;
}
.ls-body {
  padding: 0;
  background: #fff;
}
.ls-body.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.ls-group {
  background: #fff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.ls-group + .ls-group {
  margin-top: 0;
  border-top: 8px solid #f3f4f6;
}
.ls-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid #eceff3;
  background: #fff;
}
.ls-group-head i {
  color: #111;
  font-size: 13px;
}
.ls-group-head a {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.ls-group-head a:hover { color: #fe5900; }
.ls-group-city {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
}
.ls-matches {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ls-match {
  position: relative;
  display: block;
  min-height: 48px;
  padding: 10px 12px;
  border-bottom: 1px solid #f1f3f7;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.ls-matches > li:last-child .ls-match { border-bottom: none; }
.ls-match:hover { background: #f8fafc; color: inherit; }
.ls-time {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
  white-space: nowrap;
}
.ls-clock {
  white-space: nowrap;
}
.ls-match.is-live .ls-time,
.ls-match.is-live .ls-clock { color: #e11d48; }
.ls-match.is-live .ls-clock { font-weight: 700; }
.ls-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e11d48;
  animation: lsPulse 1.2s ease-in-out infinite;
}
@keyframes lsPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ls-fixture {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 150px 64px 150px;
  align-items: center;
  column-gap: 8px;
}
.ls-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.ls-team img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eef1f6;
}
.ls-home {
  justify-content: flex-start;
  text-align: left;
}
.ls-home img { margin-left: auto; }
.ls-away { justify-content: flex-start; text-align: left; }
.ls-team-name {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ls-score {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.ls-score.is-finished { color: #0f172a; }
.ls-score.is-live { color: #e11d48; }
.ls-empty {
  margin: 0;
  padding: 28px 16px;
  text-align: center;
  color: #64748b;
  background: #fff;
}
@media (max-width: 767px) {
  .live-scores-section { padding-bottom: 24px; }
  .ls-match {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 52px;
    padding: 10px 8px;
  }
  .ls-time {
    position: static;
    transform: none;
    flex: 0 0 28px;
    font-size: 11px;
  }
  .ls-fixture {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex: 1;
    min-width: 0;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 6px;
  }
  .ls-home {
    justify-content: flex-end;
    text-align: right;
  }
  .ls-home img { margin-left: 4px; }
  .ls-away { justify-content: flex-start; text-align: left; }
  .ls-team img { width: 20px; height: 20px; }
  .ls-team-name {
    font-size: 11.5px;
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }
  .ls-score { font-size: 13px; white-space: nowrap; }
  .ls-daybar { min-height: 60px; overflow: hidden; }
  .ls-day { padding: 8px 1px 12px; }
  .ls-days {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }
  .ls-day-name { font-size: 9px; letter-spacing: 0; }
  .ls-day-date { font-size: 10px; }
  .ls-day-arrow { flex: 0 0 16px; width: 16px; font-size: 10px; }
  .ls-cal-btn { flex-basis: 48px; width: 48px; }
  .ls-cal-input { width: 48px; }
  .ls-cal-face,
  .ls-cal-svg { width: 30px; height: 30px; }
  .ls-cal-num { font-size: 12px; }
  .ls-live-btn { min-width: 42px; padding: 0 6px; }
  .ls-search { min-width: 78px; padding: 0 10px; }
  .ls-search input { width: 42px; }
  .ls-search { min-width: 78px; padding: 0 10px; }
  .ls-search input { width: 42px; }
}

/* Maç detay */
.md-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(3, 5, 35, 0.08);
  overflow: hidden;
}
.md-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #111;
  color: #fff;
}
.md-comp {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.md-comp span { color: #9ca3af; font-weight: 500; font-size: 13px; }
.md-comp:hover { color: #fe5900; }
.md-status {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #cbd5e1;
}
.md-status.is-live { color: #fb7185; }
.md-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 18px 20px;
}
.md-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.md-team img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef1f6;
}
.md-team strong { font-size: 16px; color: #111; }
.md-score { text-align: center; }
.md-score b { display: block; font-size: 32px; color: #111; line-height: 1.1; }
.md-score small { color: #64748b; font-size: 13px; }
.md-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0 18px 18px;
  color: #64748b;
  font-size: 13px;
}
.md-meta i { color: #fe5900; margin-right: 4px; }
.md-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #eceff3;
}
.md-col { padding: 18px; }
.md-col + .md-col { border-left: 1px solid #eceff3; }
.md-col h3, .md-officials h3, .md-video h3, .md-pens h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111;
}
.md-col ul, .md-officials ul { list-style: none; margin: 0; padding: 0; }
.md-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: #1e293b;
}
.md-min { font-weight: 700; color: #fe5900; min-width: 36px; }
.md-empty { color: #94a3b8; font-size: 13px; margin: 0; }
.md-flag.yellow, .md-flag.red {
  display: inline-block;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.md-flag.yellow { background: #facc15; }
.md-flag.red { background: #dc2626; }
.md-officials, .md-video, .md-pens, .md-notes {
  padding: 18px;
  border-top: 1px solid #eceff3;
}
.md-officials li { padding: 4px 0; font-size: 14px; }
.md-officials a { color: #111; font-weight: 600; }
.md-officials a:hover { color: #fe5900; }
.md-notes { margin: 0; color: #475569; }
.md-embed { position: relative; padding-top: 56.25%; }
.md-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.md-video-link { margin: 12px 0 0; }
.md-video-link a { color: #fe5900; font-weight: 600; }
.md-pens p { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; }
.md-pens .is-in { color: #16a34a; }
.md-pens .is-out { color: #dc2626; }
@media (max-width: 767px) {
  .md-events { grid-template-columns: 1fr; }
  .md-col + .md-col { border-left: 0; border-top: 1px solid #eceff3; }
  .md-score b { font-size: 24px; }
  .md-team img { width: 48px; height: 48px; }
}

/* ============================================
   Dark theme
   Navy + orange: page #0b0d16, cards #151924, text #d7dce6
   ============================================ */
html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #0b0d16;
  --page-text: #c9d0dc;
  --surface: #151924;
  --surface-2: #10131c;
  --ink: #f1f3f8;
  --muted: #9aa3b5;
  --line: rgba(255, 255, 255, 0.08);
  --bg: #10131c;
  --bg3: #161a26;
  --text: #c9d0dc;
  --box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 {
  color: var(--ink);
}
html[data-theme="dark"] .section-title h2 span {
  color: transparent;
}
html[data-theme="dark"] .section-bg {
  background-color: var(--surface-2);
}
html[data-theme="dark"] .header-main .main-menu ul li .submenu {
  background: #151924;
  border-color: var(--line);
}
html[data-theme="dark"] .header-main .main-menu ul li .submenu li a {
  color: #e8edf6;
}
html[data-theme="dark"] .offcanvas__info {
  background: #12151f;
  color: #d7dce6;
}
html[data-theme="dark"] .offcanvas__info a,
html[data-theme="dark"] .offcanvas__info p,
html[data-theme="dark"] .offcanvas__info h4,
html[data-theme="dark"] .mean-container .mean-nav ul li a {
  color: #e8edf6;
}
html[data-theme="dark"] .mean-container .mean-nav {
  background: #0b0d16;
}
html[data-theme="dark"] .home-tournament-card {
  background: var(--surface);
  color: var(--page-text);
}
html[data-theme="dark"] .home-tournament-card h3 {
  color: var(--ink);
}
html[data-theme="dark"] .home-tournament-card:hover {
  background: #1b2030;
}
html[data-theme="dark"] .club-blog-section {
  position: relative;
  background-color: #0b0d16;
}
html[data-theme="dark"] .club-blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 22, 0.9) 0%, rgba(11, 13, 22, 0.94) 100%);
  z-index: 0;
  pointer-events: none;
}
html[data-theme="dark"] .club-blog-section > .container {
  position: relative;
  z-index: 1;
}
html[data-theme="dark"] .club-blog-section .section-title h2,
html[data-theme="dark"] .club-blog-section .section-title h2 .text-weight-700 {
  color: #f1f3f8;
}
html[data-theme="dark"] .club-blog-section .link-btn {
  color: #fe5900;
}
html[data-theme="dark"] .club-blog-items .thumb {
  background: #0e1018;
}
html[data-theme="dark"] .club-blog-items .content {
  background-color: #151924;
  color: #c9d0dc;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .club-blog-items .content h3 a {
  color: #f1f3f8;
}
html[data-theme="dark"] .club-blog-items .content h3 a:hover {
  color: #fe5900;
}
html[data-theme="dark"] .club-blog-items .content ul li,
html[data-theme="dark"] .club-blog-items .content ul li span {
  color: #9aa3b5;
}
html[data-theme="dark"] .club-blog-items .content .link-btn {
  color: #fe5900;
}
html[data-theme="dark"] .news-box-items {
  background-color: #151924;
}
html[data-theme="dark"] .news-box-items .content ul li,
html[data-theme="dark"] .news-box-items .content h3 a {
  color: #e8edf6;
}
html[data-theme="dark"] .gt-news-card-items-4 .gt-news-content,
html[data-theme="dark"] .gt-news-card-items-4 .gt-news-content p,
html[data-theme="dark"] .gt-news-card-items-4 .gt-date-list li {
  color: #c9d0dc;
}
html[data-theme="dark"] .gt-news-card-items-4 .gt-news-content h3 a {
  color: #f1f3f8;
}
html[data-theme="dark"] .gt-news-details-content,
html[data-theme="dark"] .gt-news-details-content .text,
html[data-theme="dark"] .gt-news-details-content p {
  color: #c9d0dc;
}
html[data-theme="dark"] .gt-news-details-content h3,
html[data-theme="dark"] .gt-news-details-content .news-title {
  color: #f1f3f8;
}
html[data-theme="dark"] .hl-video-card {
  background: var(--surface);
}
html[data-theme="dark"] .hl-video-card__body,
html[data-theme="dark"] .hl-video-card__body h3 a {
  color: var(--ink);
}
html[data-theme="dark"] .trophy-box-item img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
html[data-theme="dark"] .trophy-box-item .content h3 {
  color: var(--ink);
}
html[data-theme="dark"] .live-scores-panel {
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
html[data-theme="dark"] .ls-header {
  background: #0e1018;
}
html[data-theme="dark"] .ls-daybar,
html[data-theme="dark"] .ls-body,
html[data-theme="dark"] .ls-group,
html[data-theme="dark"] .ls-group-head {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .ls-daybar {
  border-bottom-color: var(--line);
}
html[data-theme="dark"] .ls-group + .ls-group {
  border-top-color: #0b0d16;
}
html[data-theme="dark"] .ls-day-arrow {
  background: var(--surface);
  color: #e8edf6;
}
html[data-theme="dark"] .ls-live-btn {
  background: var(--surface);
  border-left-color: var(--line);
  color: #fb7185;
}
html[data-theme="dark"] .ls-live-btn:not(.has-live) {
  color: #6b7280;
}
html[data-theme="dark"] .ls-live-btn.is-on {
  background: #e11d48;
  color: #fff;
  border-left-color: #e11d48;
}
html[data-theme="dark"] .ls-day-name,
html[data-theme="dark"] .ls-day-date,
html[data-theme="dark"] .ls-group-head i,
html[data-theme="dark"] .ls-group-head a,
html[data-theme="dark"] .ls-team-name {
  color: #e8edf6;
}
html[data-theme="dark"] .ls-score {
  color: #8b95a8;
}
html[data-theme="dark"] .ls-score.is-finished {
  color: #f1f3f8;
}
html[data-theme="dark"] .ls-match {
  border-bottom-color: var(--line);
}
html[data-theme="dark"] .ls-match:hover {
  background: #1b2030;
}
html[data-theme="dark"] .ls-empty {
  background: var(--surface);
  color: var(--muted);
}
html[data-theme="dark"] .ls-day.active .ls-day-name,
html[data-theme="dark"] .ls-day.active .ls-day-date,
html[data-theme="dark"] .ls-day:hover .ls-day-name,
html[data-theme="dark"] .ls-day:hover .ls-day-date {
  color: #fe5900;
}
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background-color: #10131c;
  color: #eef1f6;
  border-color: var(--line);
}
html[data-theme="dark"] .ls-search input {
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
}
html[data-theme="dark"] .theme-btn.bg-white {
  color: #0b0d16;
  background-color: #f3f5fa;
}
html[data-theme="dark"] .match-box-items {
  background-color: var(--surface);
}
html[data-theme="dark"] .tournament-done-badge {
  color: #8ee0b3;
  background: rgba(142, 224, 179, 0.12);
  border-color: rgba(142, 224, 179, 0.22);
}
html[data-theme="dark"] .match-box-items h3,
html[data-theme="dark"] .match-box-items h4,
html[data-theme="dark"] .match-box-items .match-schedule .match-date span {
  color: var(--ink);
}
html[data-theme="dark"] .match-box-items .match-schedule .match-date {
  background-color: #10131c;
}
html[data-theme="dark"] .nice-select,
html[data-theme="dark"] .nice-select .list {
  background-color: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
html[data-theme="dark"] .section-title h2 {
  color: var(--ink);
}
html[data-theme="dark"] .section-title h2 .text-weight-700 {
  color: var(--ink);
}

/* Koyu zemin üzerinde lacivert (--header / #030523) yazılar */
html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] th,
html[data-theme="dark"] label,
html[data-theme="dark"] dt,
html[data-theme="dark"] dd {
  color: var(--page-text);
}
html[data-theme="dark"] a:not(.theme-btn):not(.header-cta):not(.header-auth-btn) {
  color: var(--ink);
}
html[data-theme="dark"] a:not(.theme-btn):not(.header-cta):not(.header-auth-btn):hover {
  color: var(--theme);
}
html[data-theme="dark"] .theme-btn {
  color: #fff;
}
html[data-theme="dark"] .theme-btn.bg-white {
  color: #030523;
}
html[data-theme="dark"] .link-btn,
html[data-theme="dark"] .ft-join-link {
  color: #fe5900;
}
html[data-theme="dark"] .section-title h2 span {
  color: transparent;
}

html[data-theme="dark"] .about-wrapper .about-content .about-text {
  color: var(--page-text);
  border-bottom-color: var(--line);
}
html[data-theme="dark"] .about-wrapper .about-content .about-list-items ul li {
  color: var(--ink);
}

html[data-theme="dark"] .portal-card {
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .portal-card h3,
html[data-theme="dark"] .portal-card__link {
  color: var(--ink);
}
html[data-theme="dark"] .portal-card p {
  color: var(--page-text);
}

html[data-theme="dark"] .hl-video-card__body ul {
  color: var(--muted);
}

html[data-theme="dark"] .latest-world-ranking-wrapper .ranking-box-style {
  background-color: var(--surface);
}
html[data-theme="dark"] .latest-world-ranking-wrapper .ranking-box-style p {
  color: var(--ink);
}

html[data-theme="dark"] .register-consents {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .register-consents__label {
  color: var(--page-text);
}

html[data-theme="dark"] .halisaha-filters .halisaha-filter-select {
  background-color: #10131c;
  color: #eef1f6;
  border-color: var(--line);
}

html[data-theme="dark"] .header-main .main-menu ul li a {
  color: #fff;
}
html[data-theme="dark"] .ft-comment-box {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .ft-comment-box h3,
html[data-theme="dark"] .ft-comment-box .form-clt label,
html[data-theme="dark"] .ft-comment-box .form-clt span {
  color: var(--ink);
  border-color: var(--line);
}
html[data-theme="dark"] .ft-comment-box .form-clt input,
html[data-theme="dark"] .ft-comment-box .form-clt textarea {
  background-color: #10131c;
  border-color: var(--line);
  color: #eef1f6 !important;
  -webkit-text-fill-color: #eef1f6;
  caret-color: #eef1f6;
}

/* Şehir filtresi: ok metnin üzerine binmesin */
.nice-select {
  padding-right: 40px;
  min-width: 200px;
}
.nice-select:after {
  right: 16px;
}
.nice-select .current {
  display: block;
  padding-right: 4px;
}

/* ---------- Anasayfa platform anlatımı ---------- */
.ft-platform-section {
  padding: 72px 0 80px;
  background: #fff;
}
.ft-pain-title {
  margin: 0 auto 36px;
  max-width: 720px;
  text-align: center;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--header);
  line-height: 1.2;
}
.ft-pain-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 20px 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 72px;
}
.ft-pain-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-pain-col--ok {
  justify-content: center;
}
.ft-pain-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(185, 28, 28, 0.45);
}
.ft-pain-card--ok {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #14532d;
  font-weight: 700;
  text-decoration: none;
  padding: 22px 18px;
  font-size: 1.05rem;
  line-height: 1.4;
}
.ft-pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
}
.ft-pain-card--ok .ft-pain-icon {
  background: #16a34a;
}
.ft-pain-arrow {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(254, 89, 0, 0.1);
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ft-feat-head {
  margin-bottom: 36px;
}
.ft-feat-lead {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 1rem;
  color: #5c6478;
  line-height: 1.55;
}
.ft-feat-lead span {
  color: var(--theme);
  font-weight: 700;
}
.ft-feat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ft-feat-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 24px 20px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}
.ft-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme);
  color: #fff;
  font-size: 1.05rem;
}
.ft-feat-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--header);
  line-height: 1.3;
}
.ft-feat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .ft-feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .ft-pain-grid {
    grid-template-columns: 1fr;
  }
  .ft-pain-arrow i {
    transform: rotate(90deg);
  }
  .ft-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .ft-feat-grid {
    grid-template-columns: 1fr;
  }
}
html[data-theme="dark"] .ft-platform-section {
  background: var(--page-bg, #0b1020);
}
html[data-theme="dark"] .ft-pain-title,
html[data-theme="dark"] .ft-feat-card h3 {
  color: #eef1f6;
}
html[data-theme="dark"] .ft-feat-card {
  background: #10131c;
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme="dark"] .ft-feat-card p {
  color: #9aa3b5;
}

.ft-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.ft-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}
.ft-review-stars {
  color: var(--theme);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.ft-review-card p {
  margin: 0 0 14px;
  color: #434343;
  font-size: 0.92rem;
  line-height: 1.55;
}
.ft-review-card strong {
  display: block;
  color: var(--header);
  font-size: 0.95rem;
}
.ft-review-card span {
  color: #6b7280;
  font-size: 0.8rem;
}
.ft-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 4px 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.ft-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--header);
  padding: 14px 0;
  list-style: none;
}
.ft-faq-item summary::-webkit-details-marker { display: none; }
.ft-faq-item p {
  margin: 0 0 14px;
  color: #5c6478;
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .ft-review-grid { grid-template-columns: 1fr; }
}
html[data-theme="dark"] .ft-review-card,
html[data-theme="dark"] .ft-faq-item {
  background: #10131c;
}
html[data-theme="dark"] .ft-review-card p,
html[data-theme="dark"] .ft-faq-item p {
  color: #9aa3b5;
}
html[data-theme="dark"] .ft-review-card strong,
html[data-theme="dark"] .ft-faq-item summary {
  color: #eef1f6;
}

.ft-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.ft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ft-gallery-grid--home {
  grid-template-columns: repeat(3, 1fr);
}
.ft-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1020;
}
.ft-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ft-gallery-item figcaption {
  padding: 8px 10px;
  font-size: 0.8rem;
  color: #5c6478;
  background: #fff;
}
.ft-case {
  max-width: 720px;
}
.ft-case__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 12px;
}
.ft-case__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--theme);
  font-weight: 700;
}
.ft-case__points {
  margin: 16px 0 24px;
  padding-left: 18px;
}
.ft-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ft-case-list__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .ft-gallery-grid,
  .ft-gallery-grid--home,
  .ft-case-list {
    grid-template-columns: 1fr 1fr;
  }
}


