@charset "UTF-8";
/*

*/
/**/
/*
--------------------------------------------------------------

--------------------------------------------------------------


--------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Days+One&amp;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&amp;display=swap");
:root {
  --body: #0B0E13;
  --black: #000;
  --white: #fff;
  --theme: #88d15f;
  --header: #0B0E13;
  --text: #ABABAB;
  --border: #ffffff33C;
  --bg: #0B0E13;
  --bg-2: #1C1D20;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  background: var(--theme);
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  line-height: 52px;
  padding: 0 30px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 99;
  border-radius: 100px;
}
.theme-btn::before {
  position: absolute;
  content: "";
  background: var(--white);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
  border-radius: 100px;
}
.theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
  border-radius: 100px;
}
.theme-btn:hover::before {
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.theme-btn:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.theme-btn.style-2 {
  border-radius: 0;
  background: linear-gradient(90deg, #CBFE1C 0%, #88d15f 100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 17px;
  font-weight: 700;
  height: 56px;
  line-height: 56px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-left: 40px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.theme-btn.style-2 .left-line {
  display: inline-block;
  width: 5px;
  height: 100%;
  background: #0B0E13;
  margin-right: 8px;
  position: absolute;
  left: 4px;
}
.theme-btn.style-2:hover {
  background-position: 100% 0;
}

.view-btn {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  gap: 1px;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--theme);
  height: 52px;
  line-height: 52px;
  padding: 0 30px;
}
.view-btn span {
  color: #ABABAB;
  transition: color 0.4s ease;
}
.view-btn span.active {
  color: var(--theme);
}
.view-btn span.space {
  width: 2.3px;
}
.view-btn:hover span:nth-child(5) {
  color: var(--theme);
  transition-delay: 0s;
}
.view-btn:hover span:nth-child(6) {
  color: var(--theme);
  transition-delay: 0.05s;
}
.view-btn:hover span:nth-child(7) {
  color: var(--theme);
  transition-delay: 0.1s;
}
.view-btn:hover span:nth-child(8) {
  color: var(--theme);
  transition-delay: 0.15s;
}
.view-btn:hover span:nth-child(9) {
  color: var(--theme);
  transition-delay: 0.2s;
}
.view-btn:hover span:nth-child(10) {
  color: var(--theme);
  transition-delay: 0.25s;
}
.view-btn:hover span:nth-child(11) {
  color: var(--theme);
  transition-delay: 0.3s;
}
.view-btn:hover span:nth-child(12) {
  color: var(--theme);
  transition-delay: 0.35s;
}
.view-btn:hover span:nth-child(13) {
  color: var(--theme);
  transition-delay: 0.4s;
}
.view-btn:hover span:nth-child(14) {
  color: var(--theme);
  transition-delay: 0.45s;
}

.gt-theme-btn {
  font-size: 16px;
  font-weight: 600;
  font-family: "Chakra Petch";
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--header);
  display: inline-block;
  line-height: 60px;
  height: 60px;
  text-align: center;
  min-width: 200px;
  overflow: hidden;
  border-radius: 0;
  padding: 0 32px;
  background: #ADFF00;
  transition: 0.5s;
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 30%, 7% 0) !important;
}
.gt-theme-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
@media (max-width: 575px) {
  .gt-theme-btn {
    padding: 0 30px;
  }
}
.gt-theme-btn.gt-style-border {
  border: 1px solid rgb(255, 255, 255);
  background-image: none;
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 23%, 8% 0) !important;
  position: relative;
  transition: 0.5s;
  background: transparent;
  color: var(--white);
}
.gt-theme-btn.gt-style-border::before {
  position: absolute;
  top: -26px;
  left: -18px;
  right: 0;
  bottom: 0;
  content: "";
  transform: rotate(45deg);
  height: 115px;
  width: 1.5px;
  background-color: var(--white);
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 62%, 100% 100%, 0 100%, 0 80%, 0 30%, 23% 0) !important;
  transition: 0.5s;
}
.gt-theme-btn:hover.gt-style-border {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}
.gt-theme-btn:hover.gt-style-border::before {
  display: none;
}

.gt-theme-btn {
  font-size: 16px;
  font-weight: 600;
  font-family: "Chakra Petch";
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--header);
  display: inline-block;
  line-height: 60px;
  height: 60px;
  text-align: center;
  min-width: 200px;
  overflow: hidden;
  border-radius: 0;
  padding: 0 32px;
  background: #ADFF00;
  transition: 0.5s;
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 30%, 7% 0) !important;
}
.gt-theme-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
@media (max-width: 575px) {
  .gt-theme-btn {
    padding: 0 30px;
  }
}
.gt-theme-btn.gt-style-border {
  border: 1px solid rgb(255, 255, 255);
  background-image: none;
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 23%, 8% 0) !important;
  position: relative;
  transition: 0.5s;
  background: transparent;
  color: var(--white);
}
.gt-theme-btn.gt-style-border::before {
  position: absolute;
  top: -26px;
  left: -18px;
  right: 0;
  bottom: 0;
  content: "";
  transform: rotate(45deg);
  height: 115px;
  width: 1.5px;
  background-color: var(--white);
  clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 62%, 100% 100%, 0 100%, 0 80%, 0 30%, 23% 0) !important;
  transition: 0.5s;
}
.gt-theme-btn:hover.gt-style-border {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}
.gt-theme-btn:hover.gt-style-border::before {
  display: none;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

 label {
    display: inline-block;
    color: #88d15f;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0;
}

body {
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--bg);
  padding: 0;
  margin: 0;
  overflow-x: hidden;

}

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: "Days One", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-transform: initial;
}

h1 {
  font-size: 140px;
  font-weight: 400;
  line-height: 88%;
  letter-spacing: -3.2px;
}

h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 116%;
  letter-spacing: -1.04px;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

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

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

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

span {
  margin: 0px;
}

@-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 slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
@keyframes strokeColorChange {
  0% {
    -webkit-text-stroke-color: white;
  }
  25% {
    -webkit-text-stroke-color: #00ffff;
  }
  50% {
    -webkit-text-stroke-color: #ff00ff;
  }
  75% {
    -webkit-text-stroke-color: #ffff00;
  }
  100% {
    -webkit-text-stroke-color: white;
  }
}
@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  }
  25% {
    -webkit-text-stroke-color: rgba(0, 255, 255, 0.3);
  }
  50% {
    -webkit-text-stroke-color: rgba(255, 0, 255, 0.3);
  }
  75% {
    -webkit-text-stroke-color: rgba(255, 255, 0, 0.3);
  }
  100% {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  }
}
@keyframes strokeColorChange2 {
  100% {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  }
  75% {
    -webkit-text-stroke-color: rgba(0, 255, 255, 0.3);
  }
  50% {
    -webkit-text-stroke-color: rgba(255, 0, 255, 0.3);
  }
  25% {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  }
  0% {
    -webkit-text-stroke-color: rgba(255, 255, 0, 0.3);
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes borderAnim {
  0% {
    width: 0;
  }
  100% {
    width: 44px;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 17ch;
  } /* Number of characters */
}
@keyframes blink {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: red;
  }
}
.brand-image {
  text-align: center;
}
.brand-image img {
  filter: grayscale(100%) brightness(35%) contrast(100%);
  transition: all 0.4s ease-in-out;
}
.brand-image:hover img {
  filter: none;
}

.brand-slider-2 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  text-align: center;
}

.brand-image-4 {
  text-align: center;
  background-color: #121511;
  padding: 24px 0;
  text-align: center;
}

.brand-item-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .brand-item-3 {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.brand-item-3 .brand-image-3 img {
  transition: 0.3s;
  filter: grayscale(100%) brightness(35%) contrast(100%);
}
@media (max-width: 991px) {
  .brand-item-3 .brand-image-3 img {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .brand-item-3 .brand-image-3 img {
    width: 55px;
  }
}
.brand-item-3 .brand-image-3:hover img {
  filter: none;
  animation: zoomIn 0.5s linear;
}

.brand-section-3 .line-slider {
  margin-top: 55px;
}
@media (max-width: 1399px) {
  .brand-section-3 .line-slider {
    margin-top: 30px;
  }
}
.brand-section-3 .content h6 {
  text-transform: uppercase;
}

.brand-box {
  border: 1px solid rgba(112, 106, 106, 0.24);
  background: var(--bg);
  padding: 25px 60px;
}
@media (max-width: 1199px) {
  .brand-box {
    padding: 25px 30px;
  }
}
.brand-box .brand-image-5 img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
  .brand-box .brand-image-5 img {
    width: 70px;
    height: 70px;
  }
}
.brand-box:hover .brand-image-5 img {
  transform: scale(1.2);
}
.instagram-image {
  position: relative;
  overflow: hidden;
}
.instagram-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  background: rgba(28, 29, 32, 0.8);
  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);
  z-index: 9;
}
.instagram-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.instagram-image .icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  background-color: #0B0E13;
}
.instagram-image .icon:hover {
  background: var(--theme);
  color: var(--header);
}
.instagram-image:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.instagram-image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.game-feature-box-items {
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  padding: 90px 75px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .game-feature-box-items {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.game-feature-box-items .shape-1 {
  position: absolute;
  top: 20px;
  left: 20px;
}
.game-feature-box-items .shape-1 svg path {
  transition: all 0.4s ease-in-out;
}
.game-feature-box-items .shape-2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.game-feature-box-items .shape-2 svg path {
  transition: all 0.4s ease-in-out;
}
.game-feature-box-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  background-color: #0B0E13;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.game-feature-box-items .icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme);
  border-radius: 50%;
  transform: translateY(-101%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  z-index: -1;
}
.game-feature-box-items .icon svg {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.game-feature-box-items .icon svg path {
  transition: all 0.4s ease-in-out;
}
.game-feature-box-items h4 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 15px;
  text-transform: capitalize;
}
.game-feature-box-items:hover {
  border: 1px solid var(--theme);
}
.game-feature-box-items:hover .shape-1 svg path {
  fill: var(--theme);
}
.game-feature-box-items:hover .shape-2 svg path {
  fill: var(--theme);
}
.game-feature-box-items:hover .icon::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.game-feature-box-items:hover .icon svg {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.game-feature-box-items:hover .icon svg path {
  fill: #0B0E13;
}

.game-feature-box-2 {
  background-color: var(--theme);
  margin-top: 30px;
  padding-top: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.superhero-feature-box {
  margin-top: 30px;
  border-radius: 10px;
  padding-top: 10px;
}
.superhero-feature-box .thumb {
  margin-left: -70px;
}

.video-info-items {
  padding: 150px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .video-info-items {
    padding: 120px 0;
  }
}
.video-info-items .title {
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 200px;
  font-weight: 400;
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 1600px) {
  .video-info-items .title {
    font-size: 140px;
  }
}
@media (max-width: 1399px) {
  .video-info-items .title {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .video-info-items .title {
    display: none;
  }
}
.video-info-items .video-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 100px;
  background-color: var(--theme);
  color: var(--header);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-section-2 {
  position: relative;
  z-index: 9;
}
.video-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #0B0E13 5.77%, rgba(11, 14, 19, 0) 51.44%, #0B0E13 97.12%);
}

.video-play-banner {
  margin-top: 60px;
  position: relative;
}
.video-play-banner .video-play {
  height: 600px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

.gt-gaming-feature-wrapper .gt-gaming-left-item {
  position: relative;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
  max-width: 600px;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
    max-width: initial;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 17%);
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
  margin-top: 50px;
  max-width: 450px;
  margin-left: 150px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 90% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
    max-width: initial;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape img {
  width: 100%;
  height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image {
  max-width: 516px;
  position: absolute;
  right: 50px;
  bottom: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1.5s ease-out forwards;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image img {
  width: 100%;
  height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content {
  overflow: hidden;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-gaming-text {
  margin-top: 30px;
}
@keyframes slideBorder {
  0% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes slideBorders {
  0% {
    right: -90px;
    left: auto;
  }
  100% {
    right: 100%;
    left: auto;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  margin-top: 35px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
  animation: slideBorder 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::after {
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
  animation: slideBorders 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li {
  display: flex;
  gap: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content {
  max-width: 270px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 14px;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn {
  z-index: 999;
  display: inline-block;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn::before {
  background-color: var(--theme);
}

.webkit-text-item {
  text-align: center;
  position: relative;
  margin-bottom: -20px;
}
@media (max-width: 1199px) {
  .webkit-text-item {
    margin-bottom: 0;
  }
}
.webkit-text-item h2 {
  text-transform: uppercase;
  line-height: 150%;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  background: transparent;
  animation: strokeColorChange 4s linear infinite;
}
.webkit-text-item h2 span {
  margin-right: 150px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .webkit-text-item h2 span {
    margin-right: 0;
  }
}
.webkit-text-item .post-box {
  position: absolute;
  left: 20%;
  top: 16px;
  background-color: var(--white);
  transform: rotate(-15deg);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--bg);
  line-height: 1;
}
@media (max-width: 1199px) {
  .webkit-text-item .post-box {
    display: none;
  }
}
.webkit-text-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .webkit-text-item::before {
    display: none;
  }
}

.gt-webkit-text-section {
  position: relative;
}
.gt-webkit-text-section .gt-blur-shape {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 140%;
}
@media (max-width: 1199px) {
  .gt-webkit-text-section .gt-blur-shape {
    display: none;
  }
}

.gt-gaming-expertise-section {
  position: relative;
}
.gt-gaming-expertise-section .gt-section-title-area .drive-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .gt-gaming-expertise-section .gt-section-title-area .drive-shape {
    display: none;
  }
}
.gt-gaming-expertise-section .right-shape {
  position: absolute;
  top: -100px;
  right: 0;
}
@media (max-width: 1199px) {
  .gt-gaming-expertise-section .right-shape {
    display: none;
  }
}
.gt-gaming-expertise-section .bottom-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -52%;
}

.gt-progress-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 60px;
  margin-top: 60px;
  position: relative;
  z-index: 99;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items {
  width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .point {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  font-family: "Days One", sans-serif;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .title {
  font-size: 18px;
  font-weight: 400;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress {
  background: var(--white);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 5px;
  width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: rgb(173, 255, 0);
  height: 5px;
  width: 0;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

.champion-card-item {
  margin-top: 30px;
}
.champion-card-item .champion-image {
  position: relative;
  height: 456px;
  border-radius: 10px;
}
.champion-card-item .champion-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.champion-card-item .champion-image .video-btn {
  width: 46px;
  height: 46px;
  line-height: 46px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 18px;
  left: -30px;
  top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image .champion-content {
  position: absolute;
  left: 30px;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image .champion-content span {
  background-color: var(--header);
  color: var(--theme);
  font-weight: 700px;
  padding: 10px;
  line-height: 1;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .champion-card-item .champion-image .champion-content h4 {
    font-size: 20px;
  }
}
.champion-card-item .champion-image .champion-content h4 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.champion-card-item .champion-image .champion-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.champion-section .card-slider {
  margin-left: -150px;
  margin-right: -150px;
}
@media (max-width: 1399px) {
  .champion-section .card-slider {
    margin-left: 0;
    margin-right: 0;
  }
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item {
  border: 3px solid var(--theme);
  border-radius: 10px;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image::before {
  opacity: 1;
  visibility: visible;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image .video-btn {
  opacity: 1;
  visibility: visible;
  left: 30px;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image .champion-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.champion-section .section-title-area .right-ber {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: -70px;
}
@media (max-width: 1399px) {
  .champion-section .section-title-area .right-ber {
    margin-top: 0;
    gap: 30px;
  }
}
.champion-section .section-title-area .right-ber .array-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .champion-section .section-title-area .right-ber .array-btn {
    gap: 20px;
  }
}
.champion-section .section-title-area .right-ber .array-btn .array-prev {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.champion-section .section-title-area .right-ber .array-btn .array-prev:hover {
  background-color: var(--theme);
}
.champion-section .section-title-area .right-ber .array-btn .array-next {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--header);
}
.champion-section .section-title-area .right-ber .array-btn .array-next:hover {
  background-color: var(--white);
}
.champion-section .section-title-area .right-ber .nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1399px) {
  .champion-section .section-title-area .right-ber .nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}
.champion-section .section-title-area .right-ber .nav li {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .champion-section .section-title-area .right-ber .nav li {
    font-size: 16px;
  }
}
.champion-section .section-title-area .right-ber .nav li .nav-link {
  color: var(--text);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.champion-section .section-title-area .right-ber .nav li .nav-link.active {
  position: relative;
  color: var(--theme);
}
.champion-section .section-title-area .right-ber .nav li .nav-link.active::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: var(--theme);
  top: 7px;
  left: -12px;
}

.feature-record-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1399px) {
  .feature-record-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
  }
}
.feature-record-wrapper .feature-record-item {
  text-align: center;
}
.feature-record-wrapper .feature-record-item .icon img {
  transition: 0.3s;
}
.feature-record-wrapper .feature-record-item .content {
  margin-top: 15px;
}
.feature-record-wrapper .feature-record-item .content h2 {
  color: var(--theme);
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-record-wrapper .feature-record-item .content p {
  font-weight: 700;
  color: var(--white);
}
.feature-record-wrapper .feature-record-item.style-2 {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 90px;
}
@media (max-width: 1399px) {
  .feature-record-wrapper .feature-record-item.style-2 {
    padding-left: 0;
    border-left: none;
  }
}
.feature-record-wrapper .feature-record-item:hover .icon img {
  animation: zoomIn 0.5s linear;
}

.gallery-section .container-fluid {
  padding: 0 255px;
}
@media (max-width: 1899px) {
  .gallery-section .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .gallery-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .gallery-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .gallery-section .container-fluid {
    padding: 0 15px;
  }
}

.gallery-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.gt-top-feature-wrapper .gt-top-feature-image {
  position: relative;
  z-index: 9;
}
.gt-top-feature-wrapper .gt-top-feature-image .gt-bg-shape {
  position: absolute;
  left: -51%;
  top: -30%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-top-feature-wrapper .gt-top-feature-image .gt-bg-shape {
    display: none;
  }
}
@media (max-width: 1399px) {
  .gt-top-feature-wrapper .gt-top-feature-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-text {
  max-width: 560px;
  margin-top: 30px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon {
  margin-top: 35px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 25px;
  line-height: 1.8;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
  .gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:not(:last-child) {
  margin-bottom: 15px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-icon {
  border-radius: 6px;
  background: #1C1D20;
  width: 77px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content {
  flex-basis: 80%;
}
@media (max-width: 470px) {
  .gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content {
    flex-basis: 100%;
  }
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 470px) {
  .gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content h3 {
    font-size: 20px;
  }
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content p {
  font-size: 15px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover {
  background: #1C1D20;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover .gt-icon {
  background-color: var(--white);
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover .gt-icon img {
  filter: brightness(0) saturate(100%);
}

.gt-counter-section-3 {
  margin: 0 60px;
  padding: 60px 0;
}
@media (max-width: 1600px) {
  .gt-counter-section-3 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .gt-counter-section-3 {
    margin: 0;
  }
}

.gt-counter-box-3 {
  height: 328.5px;
  width: 100%;
  border-radius: 330px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .gt-counter-box-3 {
    border-radius: 50%;
    margin: 0 auto;
    height: 280px;
    width: 280px;
  }
}
@media (max-width: 991px) {
  .gt-counter-box-3 {
    height: 328.5px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .gt-counter-box-3 {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 470px) {
  .gt-counter-box-3 {
    width: 210px;
    height: 210px;
  }
}
.gt-counter-box-3 .gt-content {
  text-align: center;
  padding-top: 130px;
}
@media (max-width: 1399px) {
  .gt-counter-box-3 .gt-content {
    padding: 8px;
    padding-top: 100px;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .gt-counter-box-3 .gt-content {
    padding-top: 130px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 767px) {
  .gt-counter-box-3 .gt-content {
    padding-top: 90px;
  }
}
@media (max-width: 575px) {
  .gt-counter-box-3 .gt-content {
    padding-top: 80px;
  }
}
@media (max-width: 470px) {
  .gt-counter-box-3 .gt-content {
    padding-top: 60px;
  }
}
.gt-counter-box-3 .gt-content h2 {
  font-size: 35px;
  font-weight: 400;
  display: inline-flex;
  gap: 5px;
}
@media (max-width: 470px) {
  .gt-counter-box-3 .gt-content h2 {
    font-size: 28px;
  }
}
.gt-counter-box-3 .gt-content h2 span {
  font-size: 75px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .gt-counter-box-3 .gt-content h2 span {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .gt-counter-box-3 .gt-content h2 span {
    font-size: 60px;
  }
}
@media (max-width: 470px) {
  .gt-counter-box-3 .gt-content h2 span {
    font-size: 40px;
  }
}
.gt-counter-box-3 .gt-content p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .gt-counter-box-3 .gt-content p {
    font-size: 14px;
  }
}
.gt-counter-box-3:hover {
  background-color: var(--white);
}
.gt-counter-box-3:hover h2 {
  color: var(--header);
}
.gt-counter-box-3:hover p {
  color: var(--header);
}

.gt-cooming-soon-section {
  position: relative;
}
.gt-cooming-soon-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 1, 1, 0.6);
}

.gt-coming-soon-items {
  position: relative;
  text-align: center;
  margin-top: 50px;
}
.gt-coming-soon-items .text {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-coming-soon-items .text {
    letter-spacing: 10px;
  }
}
@media (max-width: 575px) {
  .gt-coming-soon-items .text {
    font-size: 28px;
  }
}
.gt-coming-soon-items p {
  max-width: 744px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.gt-coming-soon-items .gt-coming-soon-time {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .gt-coming-soon-items .gt-coming-soon-time {
    flex-wrap: wrap;
  }
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content {
  text-align: center;
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 575px) {
  .gt-coming-soon-items .gt-coming-soon-time .gt-timer-content h2 {
    font-size: 30px;
  }
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content p {
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}
.gt-coming-soon-items form {
  max-width: 664px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .gt-coming-soon-items form {
    text-align: left;
  }
}
.gt-coming-soon-items .form-clt {
  position: relative;
  margin-top: 40px;
}
.gt-coming-soon-items .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  line-height: 1;
  padding: 23px;
  max-width: 664px;
  color: var(--bg-2);
  border-radius: 10px;
}
@media (max-width: 470px) {
  .gt-coming-soon-items .form-clt input {
    font-size: 14px;
  }
}
.gt-coming-soon-items .form-clt .theme-btn {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  text-align: center;
}
.gt-coming-soon-items .form-clt .theme-btn::before {
  background-color: var(--header);
}
.gt-coming-soon-items .form-clt .theme-btn::after {
  background-color: var(--header);
}
.gt-coming-soon-items .form-clt .theme-btn:hover {
  color: var(--white);
}
.gt-coming-soon-items .gt-social-icon {
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}
.gt-coming-soon-items .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: rgb(28, 29, 32);
  border-radius: 100px;
}
.gt-coming-soon-items .gt-social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.gt-bg-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.gt-gaming-feature-wrapper .gt-gaming-left-item {
  position: relative;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
  max-width: 600px;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
    max-width: initial;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 17%);
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
  margin-top: 50px;
  max-width: 450px;
  margin-left: 150px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 90% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
    max-width: initial;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape img {
  width: 100%;
  height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image {
  max-width: 516px;
  position: absolute;
  right: 50px;
  bottom: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1.5s ease-out forwards;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image img {
  width: 100%;
  height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content {
  overflow: hidden;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-gaming-text {
  margin-top: 30px;
}
@keyframes slideBorder {
  0% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes slideBorders {
  0% {
    right: -90px;
    left: auto;
  }
  100% {
    right: 100%;
    left: auto;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  margin-top: 35px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
  animation: slideBorder 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::after {
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
  animation: slideBorders 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li {
  display: flex;
  gap: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content {
  max-width: 270px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
    font-size: 14px;
  }
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn {
  color: var(--white);
  z-index: 999;
  display: inline-block;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover {
  color: var(--header);
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn {
  border: 1px solid #CBFE1C;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn::before {
  background-color: var(--theme);
}

.champion-section {
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .champion-section {
    margin-top: 0;
  }
}

.footer-section {
  position: relative;
  z-index: 9;
}
.footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, #0B0E13 0%, rgba(11, 14, 19, 0.7) 100%);
}

.footer-top-wrapper {
  padding: 80px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-top-wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.footer-top-wrapper .social-icon a {
  display: inline-block;
  width: 61px;
  height: 61px;
  line-height: 61px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  text-align: center;
  font-size: 22px;
  margin-right: -22px;
}
.footer-top-wrapper .social-icon a i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.footer-top-wrapper .social-icon a:hover {
  color: var(--theme);
  border: 1px solid var(--theme);
}
.footer-top-wrapper .social-icon a:hover i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
@media (max-width: 1199px) {
  .footer-top-wrapper .footer-logo img {
    width: 120px;
  }
}
.footer-top-wrapper .location-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-top-wrapper .location-info .icon {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  display: inline-block;
  width: 61px;
  height: 61px;
  line-height: 61px;
  font-size: 22px;
  text-align: center;
  color: var(--theme);
}
.footer-top-wrapper .location-info p {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  max-width: 260px;
}

.footer-widget-wrapper {
  padding: 10px 0 40px;
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 20px;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 {
  text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 span {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li a {
  color: #E0E0E0;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li a:hover {
  color: var(--theme);
  margin-left: 5px;
}

.footer-bottom-text {
  text-align: center;
  padding: 20px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.8px;
  text-transform: capitalize;
}
.footer-bottom-text b {
  color: var(--theme);
}

.gt-newsletter-wrapper {
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  position: relative;
}
.gt-newsletter-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1C1D20 0%, rgba(28, 29, 32, 0) 100%);
  z-index: -1;
}
.gt-newsletter-wrapper .shape {
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper .shape {
    display: none;
  }
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .gt-newsletter-wrapper {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .gt-newsletter-wrapper {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper {
    padding: 20px;
  }
}
.gt-newsletter-wrapper h4 {
  color: var(--white);
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper h4 {
    font-size: 17px;
  }
}
.gt-newsletter-wrapper form {
  max-width: 515px;
  width: 100%;
}
.gt-newsletter-wrapper .form-clt {
  position: relative;
}
.gt-newsletter-wrapper .form-clt .input-icon {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper .form-clt .input-icon {
    left: 10px;
  }
}
.gt-newsletter-wrapper .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: #9FA0A2;
  text-transform: uppercase;
  line-height: 1;
  padding: 19px 70px;
  border-radius: 10px;
  max-width: 515px;
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper .form-clt input {
    padding: 19px 50px;
    font-size: 12px;
  }
}
.gt-newsletter-wrapper .form-clt input::placeholder {
  color: #9FA0A2;
}
.gt-newsletter-wrapper .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: var(--header);
  background-image: none;
  background: var(--theme);
  text-transform: uppercase;
  height: 59px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 10px;
}
.gt-newsletter-wrapper .form-clt .theme-btn::before {
  background-color: var(--header);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 0;
}
.gt-newsletter-wrapper .form-clt .theme-btn::after {
  background-color: var(--header);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 0;
}
.gt-newsletter-wrapper .form-clt .theme-btn:hover {
  color: var(--white);
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper .form-clt .theme-btn {
    padding: 0px 30px;
    font-size: 12px;
    height: 54px;
  }
}

.gt-footer-widget-wrapper {
  padding: 60px 0 70px;
}
@media (max-width: 991px) {
  .gt-footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.gt-footer-widget-wrapper .gt-footer-widget-items {
  margin-top: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head {
  margin-bottom: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head h5 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content p {
  max-width: 450px;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon {
  gap: 15px;
  margin-top: 40px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--bg-2);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
  border: 1px solid var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover a {
  color: var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li a {
  color: var(--text);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app .app-image {
    width: 142px;
    height: 50px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper .gt-footer-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-bottom .footer-wrapper .gt-footer-list li {
  text-transform: capitalize;
}
.footer-bottom .footer-wrapper .gt-footer-list li a {
  color: #ABABAB;
}
.footer-bottom .footer-wrapper .gt-footer-list li a:hover {
  color: var(--theme);
}

.gt-footer-section {
  position: relative;
  z-index: 9;
  padding-bottom: 60px;
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .gt-footer-section {
    margin-top: 100px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .gt-footer-section {
    margin-top: 80px;
  }
}
.gt-footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #0B0E13 0%, rgba(11, 14, 19, 0) 100%);
  z-index: -1;
}

.footer-main-bg {
  background-color: #1C1D20;
  margin: 60px;
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  clip-path: polygon(77% 0, 93% 0, 100% 22%, 100% 85%, 100% 100%, 32% 100%, 0 100%, 0% 43%, 0 0);
  position: relative;
}
@media (max-width: 1399px) {
  .footer-main-bg {
    margin-left: 30px;
    margin-right: 30px;
    clip-path: none;
  }
}
@media (max-width: 1199px) {
  .footer-main-bg {
    margin-left: 22px;
    margin-right: 22px;
  }
}
@media (max-width: 991px) {
  .footer-main-bg {
    margin-left: 22px;
    margin-right: 22px;
  }
}
.footer-main-bg .left-shape {
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 1600px) {
  .footer-main-bg .left-shape {
    display: none;
  }
}
.footer-main-bg .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .footer-main-bg .right-shape {
    display: none;
  }
}

.footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 1399px) {
  .footer-wrapper-3 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-wrapper-3 .left-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1399px) {
  .footer-wrapper-3 .left-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper-3 .left-content .logo-image img {
    width: 120px;
  }
}
.footer-wrapper-3 .left-content p {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  border-left: 1px solid var(--white);
  padding-left: 25px;
}
@media (max-width: 575px) {
  .footer-wrapper-3 .left-content p {
    border-left: none;
    padding-left: 0;
    font-size: 14px;
  }
}
.footer-wrapper-3 .footer-right-list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1399px) {
  .footer-wrapper-3 .footer-right-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-wrapper-3 .footer-right-list li {
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 575px) {
  .footer-wrapper-3 .footer-right-list li {
    font-size: 14px;
  }
}
.footer-wrapper-3 .footer-right-list li a {
  color: var(--white);
}
.footer-wrapper-3 .footer-right-list li a:hover {
  color: var(--theme);
}

.footer-bg-section-3 {
  position: relative;
  z-index: 9;
  border-radius: 40px;
  margin: 30px 60px;
}
@media (max-width: 1600px) {
  .footer-bg-section-3 {
    margin: 50px 50px;
  }
}
@media (max-width: 1399px) {
  .footer-bg-section-3 {
    margin: 30px 30px;
  }
}
.footer-bg-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.footer-widget-wrapper-5 {
  margin-top: 140px;
  padding: 100px 0;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-5 {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-5 {
    padding: 80px 0;
    margin-top: 50px;
  }
}
.footer-widget-wrapper-5 .footer-single-item-5 {
  margin-top: 30px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-content p {
  max-width: 476px;
  text-transform: capitalize;
  margin-top: 15px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-content .footer-app {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-single-item-5 .footer-content .footer-app {
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head h5 {
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  font-family: "Chakra Petch", sans-serif;
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head h5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
  width: 124px;
  height: 1px;
  top: 40px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
  text-transform: capitalize;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li a {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter p {
  max-width: 491px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter form {
  max-width: 492px;
  width: 100%;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt {
  position: relative;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .input-icon {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 575px) {
  .footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .input-icon {
    top: 23%;
  }
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: #9FA0A2;
  text-transform: uppercase;
  line-height: 1;
  padding: 19px 70px;
  border-radius: 0;
  max-width: 492px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt input::placeholder {
  color: #9FA0A2;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: var(--header);
  background-image: none;
  background: var(--theme);
  text-transform: uppercase;
  height: 59px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn::before {
  background-color: var(--header);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn::after {
  background-color: var(--header);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
  border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn:hover {
  color: var(--white);
}
@media (max-width: 470px) {
  .footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn {
    position: static;
    margin-top: 20px;
  }
}

.footer-bottom-5 {
  position: relative;
}
.footer-bottom-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(270deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
  width: 288px;
  height: 1px;
  top: 40px;
}
@media (max-width: 1399px) {
  .footer-bottom-5::before {
    display: none;
  }
}
.footer-bottom-5::after {
  position: absolute;
  content: "";
  right: 0;
  background: linear-gradient(90deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
  width: 288px;
  height: 1px;
  top: 40px;
}
@media (max-width: 1399px) {
  .footer-bottom-5::after {
    display: none;
  }
}
.footer-bottom-5 .footer-wrapper {
  display: flex;
  align-items: center;
  gap: 130px;
  padding: 20px 56px;
  justify-content: center;
  background-color: #0F151C;
  width: 756px;
  margin: 0 auto;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}
@media (max-width: 1399px) {
  .footer-bottom-5 .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    width: initial;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .footer-bottom-5 .footer-wrapper {
    clip-path: initial !important;
  }
}
.footer-bottom-5 .footer-wrapper p {
  text-transform: uppercase;
  color: #9FA0A2;
}
.footer-bottom-5 .footer-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-5 .footer-wrapper .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #75bb4d;
  color: var(--black);
}
.footer-bottom-5 .footer-wrapper .social-icon a:hover {
  background: var(--theme);
  color: var(--header);
}

.footer-section-5 {
  margin-top: -80px;
}

.game-wrapper {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 1199px) {
  .game-wrapper {
    margin-top: 0;
  }
}
.game-wrapper .top-image {
  position: absolute;
  top: -200px;
  right: 100px;
  bottom: 0;
  z-index: 9;
}
@media (max-width: 1600px) {
  .game-wrapper .top-image {
    max-width: 300px;
    height: 700px;
  }
  .game-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .game-wrapper .top-image {
    display: none;
  }
}
.game-wrapper .top-image .radius-shape {
  position: absolute;
  top: 40%;
  left: -100px;
  transform: translateY(-50%);
  z-index: 1;
}
.game-wrapper .top-image .radius-shape img {
  border-radius: 0;
}
.game-wrapper .top-image::before {
  position: absolute;
  top: -40px;
  right: -60px;
  content: "";
  border-radius: 1000px;
  border: 1px solid var(--theme);
  height: 990.905px;
  width: 443.047px;
}
@media (max-width: 1600px) {
  .game-wrapper .top-image::before {
    display: none;
  }
}
.game-wrapper .top-image img {
  border-radius: 272px;
}
.game-wrapper .game-image-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 20px;
}
.game-wrapper .game-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #CBFE1C 100%);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
  z-index: -1;
}
.game-wrapper .game-image-items img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.game-wrapper .game-image-items .game-content {
  position: absolute;
  bottom: -130px;
  left: 30px;
  right: 30px;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.game-wrapper .game-image-items .game-content h3 {
  font-size: 20px;
}
.game-wrapper .game-image-items .game-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: #0B0E13;
}
.game-wrapper .game-image-items .game-content h3 a:hover {
  color: #0B0E13;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #0B0E13 0%, #0B0E13 100%);
}
.game-wrapper .game-image-items ul {
  position: absolute;
  top: -70px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.game-wrapper .game-image-items ul li {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  padding: 9px;
  line-height: 1;
}
.game-wrapper .game-image-items ul li img {
  margin-right: 8px;
  width: 16px;
  height: initial;
}
.game-wrapper .game-image-items:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.game-wrapper .game-image-items:hover::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
  z-index: 1;
}
.game-wrapper .game-image-items:hover ul {
  opacity: 1;
  visibility: visible;
  top: 30px;
}
.game-wrapper .game-image-items:hover .game-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.game-wrapper .game-slider {
  margin-left: -60%;
}
@media (max-width: 1199px) {
  .game-wrapper .game-slider {
    margin-left: 0;
  }
}
.game-wrapper .game-arrow-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .game-wrapper .game-arrow-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.game-feature-section {
  border-radius: 40px;
  background: #1C1D20;
  margin: 0 60px;
}
@media (max-width: 1600px) {
  .game-feature-section {
    margin: 0 35px;
  }
}
@media (max-width: 1399px) {
  .game-feature-section {
    margin: 0 30px;
  }
}
@media (max-width: 1199px) {
  .game-feature-section {
    margin: 0 25px;
  }
}
.game-feature-section .section-title-2 h2 span {
  color: var(--theme);
}

.gt-gaming-card-item {
  margin-top: 30px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item .gt-gaming-image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .gt-gaming-card-item .gt-gaming-image {
    height: 300px;
  }
  .gt-gaming-card-item .gt-gaming-image img {
    object-fit: cover;
  }
}
.gt-gaming-card-item .gt-gaming-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gt-gaming-card-item .gt-gaming-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(11, 14, 19, 0) 0%, #CBFE1C 100%);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item .gt-gaming-image .icon {
  width: 51px;
  height: 46px;
  background-color: var(--theme);
  color: var(--header);
  position: absolute;
  top: 30px;
  right: -30px;
  text-align: center;
  line-height: 45px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 100%, 0% 20%);
}
.gt-gaming-card-item .gt-gaming-image .icon i {
  color: var(--header);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.gt-gaming-card-item .gt-gaming-image .icon:hover {
  background-color: var(--header);
}
.gt-gaming-card-item .gt-gaming-image .icon:hover i {
  color: var(--white);
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content {
  position: absolute;
  left: 30px;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h6 {
  color: var(--theme);
  background-color: var(--header);
  padding: 8px 12px;
  border: 1px solid var(--theme);
  margin-bottom: 20px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 {
  font-size: 26px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 {
    font-size: 20px;
  }
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}
.gt-gaming-card-item:hover .gt-gaming-image::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
  z-index: 1;
}
.gt-gaming-card-item:hover .gt-gaming-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.gt-gaming-card-item:hover .gt-gaming-image .icon {
  opacity: 1;
  visibility: visible;
  right: 30px;
}
.gt-gaming-card-item:hover .gt-gaming-image .gt-gaming-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.game-slider-pagination {
  position: relative;
  text-align: center;
  margin: 50px auto 0;
  max-width: 1330px;
  display: flex;
  align-items: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .game-slider-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.game-slider-pagination .game-progress {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}
.game-slider-pagination .swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.2);
}
.game-slider-pagination .game-swiper-pagination {
  height: 2px;
  max-width: 1170px;
  margin: 0 auto;
}
.game-slider-pagination .game-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--theme);
}

.game-section-2 .project-dot .swiper-pagination-bullet {
  width: 200px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: 0.6s;
  margin: 0 !important;
}

@media (max-width: 1199px) {
  .game-section-2 .project-dot .swiper-pagination-bullet {
    width: 80px;
  }
}
.game-section-2 .project-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme);
}

.project-dot {
  max-width: 1173px;
}

.gt-popular-game-items {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
  position: relative;
  z-index: 9;
}
.gt-popular-game-items::before {
  position: absolute;
  top: -14px;
  left: 30px;
  content: "";
  width: 1px;
  clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
  height: 90px;
  background: var(--theme);
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}
.gt-popular-game-items::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 13%, 14% 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}
.gt-popular-game-items .gt-thumb {
  position: relative;
  overflow: hidden;
}
.gt-popular-game-items .gt-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, #ADFF00 100%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
}
.gt-popular-game-items .gt-thumb img {
  width: 100%;
  height: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
}
.gt-popular-game-items .gt-thumb .gt-content {
  position: absolute;
  bottom: -130px;
  left: 30px;
  right: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.gt-popular-game-items .gt-thumb .gt-content .post-cat {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
  padding: 10px;
  line-height: 1;
  margin-bottom: 15px;
}
.gt-popular-game-items .gt-thumb .gt-content .post-cat:hover {
  background-color: var(--white);
  color: var(--header);
}
.gt-popular-game-items .gt-thumb .gt-content h3 {
  font-size: 24px;
  text-transform: capitalize;
}
.gt-popular-game-items .gt-thumb .gt-content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-popular-game-items .gt-thumb .gt-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-popular-game-items .app-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  position: relative;
}
.gt-popular-game-items .app-store .app {
  border-radius: 4px;
  overflow: hidden;
}
.gt-popular-game-items:hover::before, .gt-popular-game-items:hover::after {
  opacity: 1;
  visibility: visible;
}
.gt-popular-game-items:hover .gt-thumb::before {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.gt-popular-game-items:hover .gt-thumb .gt-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.gt-popular-game-items:hover .app-store {
  opacity: 1;
  visibility: visible;
}

.gt-popular-game-section {
  position: relative;
  z-index: 9;
}
.gt-popular-game-section .gt-popular-slider {
  padding-top: 50px;
}
.gt-popular-game-section .bg-shape {
  position: absolute;
  top: -46px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.gt-popular-game-section .bg-shape img {
  width: 100%;
  height: 100%;
}
.gt-popular-game-section .game-slider-pagination {
  position: relative;
  text-align: center;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .gt-popular-game-section .game-slider-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.gt-popular-game-section .game-slider-pagination .game-progress {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}
.gt-popular-game-section .game-slider-pagination .swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.2);
}
.gt-popular-game-section .game-slider-pagination .game-swiper-pagination {
  height: 2px;
  margin: 0 auto;
}
.gt-popular-game-section .game-slider-pagination .game-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--theme);
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items::before, .gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items::after {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .gt-thumb::before {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .gt-thumb .gt-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .app-store {
  opacity: 1;
  visibility: visible;
}

.gt-game-feature-thumb {
  position: relative;
}
@media (max-width: 991px) {
  .gt-game-feature-thumb {
    height: 400px;
  }
  .gt-game-feature-thumb img {
    object-fit: cover;
  }
}
.gt-game-feature-thumb img {
  width: 100%;
  height: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 80%, 0 15%, 11% 0);
}
.gt-game-feature-thumb .gt-game-fuature-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
.gt-game-feature-thumb .gt-game-fuature-content .post-discount {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  background-color: var(--theme);
  color: var(--header);
  padding: 7px 9px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 470px) {
  .gt-game-feature-thumb .gt-game-fuature-content .post-discount {
    font-size: 14px;
  }
}
.gt-game-feature-thumb .gt-game-fuature-content h3 {
  font-size: 30px;
  text-transform: capitalize;
}
@media (max-width: 470px) {
  .gt-game-feature-thumb .gt-game-fuature-content h3 {
    font-size: 20px;
  }
}
.gt-game-feature-thumb .gt-game-fuature-content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-game-feature-thumb .gt-game-fuature-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-game-feature-thumb .video-btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  background-color: var(--white);
}
.gt-game-feature-thumb .video-btn.ripple::before, .gt-game-feature-thumb .video-btn.ripple::after {
  width: 60px;
  height: 60px;
}
.gt-epic-gallery-item {
  margin-bottom: 30px;
}
.gt-epic-gallery-item.gt-style-2 {
  margin-top: 30px;
}
.gt-epic-gallery-item .gt-gallery-iamge {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.gt-epic-gallery-item .gt-gallery-iamge img {
  width: 100%;
  height: 100%;
}
.gt-epic-gallery-item .gt-gallery-iamge .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 40px;
}
.gt-epic-gallery-item .gt-gallery-iamge:before, .gt-epic-gallery-item .gt-gallery-iamge:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(203, 254, 28, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gt-epic-gallery-item .gt-gallery-iamge:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.gt-epic-gallery-item:hover .gt-gallery-iamge .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gt-epic-gallery-item:hover .gt-gallery-iamge:before, .gt-epic-gallery-item:hover .gt-gallery-iamge:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.gt-gallery-slider {
  margin-left: -12%;
  margin-right: -12%;
}
@media (max-width: 1199px) {
  .gt-gallery-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .logo .header-logo img {
  width: 150px;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
.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;
  letter-spacing: -0.34px;
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  padding: 20px 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 .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: #0B0E13;
  box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}
.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: 17px;
  font-weight: 700;
  letter-spacing: -0.34px;
  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: 1650px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -660px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu.style-2 {
  left: -315px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu {
    width: 1000px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 15px;
  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%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--header);
  border-radius: 100px;
  clip-path: none !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn:hover {
  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: 400;
  font-family: "Chakra Petch", 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 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 80px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: relative;
  z-index: 9999;
}
.header-1 .container {
  max-width: 1730px;
}
.header-1 .header-main {
  padding: 15px 0;
}
.header-1.header-6 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header-1 .social-icon a {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  text-align: center;
  font-size: 22px;
  margin-right: -22px;
}
.header-1 .social-icon a i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.header-1 .social-icon a:hover {
  color: var(--theme);
  border: 1px solid var(--theme);
}
.header-1 .social-icon a:hover i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.header-1 .bar-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-1 .bar-icon .search-toggler, .header-1 .bar-icon .sidebar__toggle {
  width: 60px;
  height: 60px;
  line-height: 55px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media (max-width: 575px) {
  .header-1 .bar-icon .search-toggler, .header-1 .bar-icon .sidebar__toggle {
    width: 50px;
    line-height: 45px;
    height: 50px;
  }
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1399px) {
  .header-2 .header-left {
    gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .header-left .sidebar__toggle {
    display: none;
  }
}
.header-2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-2 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-2 .header-main .logo .header-logo img {
    width: 150px;
  }
}
.header-2 .header-main .header-right .main-menu ul li a {
  color: var(--white);
}
.header-2 .header-main .header-right .header-right-icon {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1600px) {
  .header-2 .header-main .header-right .header-right-icon {
    gap: 30px;
  }
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 {
  background: var(--white);
  padding-left: 15px;
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 .left-line {
  position: relative;
  width: 6px;
  left: -8px;
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 .left-line::before {
  background: var(--theme);
  width: 5px;
  height: 100%;
  left: -7px;
  position: absolute;
  content: "";
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2::before {
  background: linear-gradient(90deg, #CBFE1C 0%, #88d15f 100%);
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2::after {
  background: linear-gradient(90deg, #CBFE1C 0%, #88d15f 100%);
}
@media (max-width: 1199px) {
  .header-2 .header-main .header-right .header-right-icon .header-button {
    display: none;
  }
}
@media (max-width: 1399px) {
  .header-2 .header-main .header-right .header-right-icon .sidebar__toggle {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #0B0E13;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
  }
}
.header-2.header-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header-2.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-2.header-3 .header-right .header-right-icon .header-button .theme-btn {
  border-radius: 10px;
}
.header-2.header-3 .header-right .header-right-icon .search-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 51px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border-radius: 100px;
}
.header-2.header-3 .header-right .header-right-icon .sidebar__toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 51px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border-radius: 100px;
}
.header-2.header-4 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .header-2.header-4 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2.header-4 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-2.header-4 .container-fluid {
    padding: 0 15px;
  }
}
.header-2.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-2.header-4 .header-right .header-right-icon {
  gap: 48px;
}
@media (max-width: 1399px) {
  .header-2.header-4 .header-right .header-right-icon .sidebar__toggle {
    border-radius: 0;
    border: none;
    background: transparent;
    line-height: 0;
    text-align: initial;
  }
}
.header-2.header-7 {
  border-bottom: 1px solid rgba(152, 152, 152, 0.32);
  background-color: #1D1D1D;
}
.header-2.style-5 {
  border-bottom: 1px solid rgba(159, 160, 162, 0.24);
}
.header-2.new-bg {
  background: linear-gradient(180deg, #020202 0%, rgba(18, 21, 17, 0) 100%);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: #0B0E13;
  -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(0, 0, 0, 0.9) 0px 8px 24px;
}
.sticky.header-1 .header-right {
  padding-bottom: 0;
  margin-top: 0;
}
.sticky.header-2.new-bg {
  background: #0B0E13;
}

.style-offcanvas-2 {
  position: relative;
}
.style-offcanvas-2 .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: absolute;
  top: 60px;
  right: 60px;
}
@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__close {
    top: 25px;
    right: 25px;
  }
}
.style-offcanvas-2 .offcanvas__close i {
  color: var(--header);
}
.style-offcanvas-2 .offcanvas-image {
  position: absolute;
  right: 0;
}
@media (max-width: 1899px) {
  .style-offcanvas-2 .offcanvas-image {
    max-width: 600px;
  }
  .style-offcanvas-2 .offcanvas-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas-image {
    display: none;
  }
}
.style-offcanvas-2 .offcanvas__wrapper {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.style-offcanvas-2 .offcanvas__wrapper .offcanvas__close button {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--header) !important;
}
.style-offcanvas-2 .offcanvas__wrapper .offcanvas__close:hover {
  background-color: var(--black);
}
.style-offcanvas-2 .offcanvas__info::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  left: 39%;
}
@media (max-width: 1899px) {
  .style-offcanvas-2 .offcanvas__info::before {
    display: none;
  }
}
.style-offcanvas-2 .mean-nav ul li a {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #ABABAB !important;
}
@media (max-width: 575px) {
  .style-offcanvas-2 .mean-nav ul li a {
    font-size: 20px !important;
  }
}
.style-offcanvas-2 .mean-nav > ul > li > a:hover {
  color: var(--theme) !important;
}
.style-offcanvas-2 .mean-container .mean-nav ul li li a {
  padding: 10px 0 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ABABAB !important;
}
@media (max-width: 575px) {
  .style-offcanvas-2 .mean-container .mean-nav ul li li a {
    font-size: 17px !important;
  }
}
.style-offcanvas-2 .mean-container .mean-nav ul li li a:hover {
  color: var(--theme) !important;
}
.style-offcanvas-2 .mean-container .mean-nav ul li > a.mean-expand i {
  font-size: 24px I !important;
}

.offcanvas__info {
  background: var(--black) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  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: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.style-2 {
  left: 0;
  right: initial;
  transform: translateX(calc(-100% - 80px));
}
@media (max-width: 1399px) {
  .offcanvas__info.style-2 {
    left: initial;
    right: 0;
    transform: translateX(calc(100% + 80px));
  }
}

.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 .text {
  color: var(--white);
}
@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
    width: 120px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .sideber-image {
  margin-top: 50px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .sideber-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.offcanvas__wrapper .social-icon {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .social-icon {
    margin-top: 30px;
  }
}
.offcanvas__wrapper .social-icon a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1C1D20;
  text-align: center;
  font-size: 22px;
  margin-right: -22px;
}
.offcanvas__wrapper .social-icon a i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.offcanvas__wrapper .social-icon a:hover {
  color: var(--theme);
  border: 1px solid var(--theme);
}
.offcanvas__wrapper .social-icon a:hover i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.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;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(203, 254, 28, 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;
}

.array-button {
  gap: 16px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .array-button {
    flex-wrap: wrap;
  }
}
.array-button .array-prev {
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 575px) {
  .array-button .array-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-button .array-prev i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--header);
}
.array-button .array-prev:hover i {
  transform: rotate(90deg);
}
.array-button .array-next {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .array-button .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-button .array-next i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--header);
}
.array-button .array-next:hover i {
  transform: rotate(90deg);
}

.swiper-dot {
  text-align: center;
}
.swiper-dot .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background-color: var(--white);
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.6s;
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 0;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-dot-2 {
  text-align: center;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background-color: var(--white);
  border-radius: 30px;
  opacity: 1;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.6s;
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

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

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

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

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

.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: var(--bg);
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.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(--theme);
  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);
}

.swiper-number4 {
  text-align: center;
}
.swiper-number4 .swiper-number-bullet {
  transition: 0.6s;
  opacity: 1;
  border: 1px transparent;
  position: relative;
  color: var(--white);
}
.swiper-number4 .swiper-number-bullet.swiper-number-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 35px;
  border-radius: 30px;
}

.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;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons {
    flex-wrap: wrap;
  }
}
.array-buttons .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--white);
}
@media (max-width: 575px) {
  .array-buttons .array-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-prev i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.array-buttons .array-prev:hover i {
  transform: rotate(90deg);
}
.array-buttons .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-buttons .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-next i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-buttons .array-next:hover i {
  transform: rotate(90deg);
}

.swiper-dot-5 {
  text-align: center;
  margin-top: 40px;
}
.swiper-dot-5 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background: #6F7278;
  border-radius: 10px;
  opacity: 1;
  position: relative;
}
.swiper-dot-5 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 10;
}

.t-uppercase {
  text-transform: uppercase;
}

.custom-cursor {
  width: 30px;
  height: 30px;
  border: 2px solid var(--theme);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.1s ease, background 0.2s ease;
  z-index: 9999;
}

.boder-10 {
  border-radius: 10px;
}

.padding-footer-bottom {
  padding-bottom: 100px;
}

.hero-2 {
  position: relative;
  z-index: 9;
  padding: 220px 0 0;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 170px 0 0;
  }
}
.hero-2 .top-shape {
  position: absolute;
  top: -8%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-2 .top-shape {
    left: 0;
  }
}
@media (max-width: 1199px) {
  .hero-2 .top-shape {
    display: none;
  }
}
.hero-2 .top-line {
  position: absolute;
  top: -10%;
  left: 0;
}
@media (max-width: 1399px) {
  .hero-2 .top-line {
    display: none;
  }
}
.hero-2 .left-shape {
  position: absolute;
  bottom: 120px;
  left: 0;
}
@media (max-width: 575px) {
  .hero-2 .left-shape {
    bottom: 120px;
    display: block;
  }
  .hero-2 .left-shape img {
    width: 35px;
    height: 180px;
  }
}
.hero-2 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-2 .right-shape {
    display: block;
  }
}
@media (max-width: 575px) {
  .hero-2 .right-shape {
    display: none;
  }
}
.hero-2 .right-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: none;
}
@media (max-width: 575px) {
  .hero-2 .right-shape-3 {
    display: block;
  }
  .hero-2 .right-shape-3 img {
    width: 100%;
    height: 100%;
  }
}
.hero-2 .blur-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: none;
}
@media (max-width: 575px) {
  .hero-2 .blur-shape {
    display: block;
  }
}
.hero-2 .right-shape2 {
  position: absolute;
  right: 0;
  top: 17%;
}
@media (max-width: 991px) {
  .hero-2 .right-shape2 {
    top: 35%;
  }
}
@media (max-width: 575px) {
  .hero-2 .right-shape2 {
    top: 48%;
  }
  .hero-2 .right-shape2 img {
    width: 35px;
    height: 180px;
  }
}
.hero-2 .bottom-shape {
  position: absolute;
  bottom: 1px;
  left: 0;
}
@media (max-width: 1199px) {
  .hero-2 .bottom-shape {
    display: none;
  }
}
.hero-2 .game-controll {
  position: absolute;
  left: 100px;
  bottom: 70px;
}
@media (max-width: 1399px) {
  .hero-2 .game-controll {
    display: none;
  }
}
.hero-2 .game-controll-bg {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-2 .game-controll-bg {
    display: none;
  }
}
.hero-2 .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .hero-2 .hero-image {
    max-width: 470px;
  }
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-image {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-image {
    max-width: 300px;
  }
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
    background: rgb(11 14 19 / 65%);
  z-index: -1;
}
.hero-2 .hero-content {
  padding-bottom: 100px;
  margin-left: 70px;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content {
    margin-left: 0;
    padding-bottom: 30px;
  }
}
.hero-2 .hero-content .sub-title {
  color: var(--theme);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 470px) {
  .hero-2 .hero-content .sub-title {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}
.hero-2 .hero-content h1 {
  line-height: 100%;
  text-transform: uppercase;
  font-size: 170px;
  color: var(--theme);
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    line-height: 130%;
    font-size: 84px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 69px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
    line-height: 108%;
  }
}
.hero-2 .hero-content h1 span {
  color: var(--white);
}
.hero-2 .hero-content .hero-sub-content {
  max-width: 435px;
margin-top: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-sub-content {
    margin: 20px auto 0;
    max-width: initial;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-sub-content {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content .hero-sub-content {
    margin-top: 10px;
  }
}
.hero-2 .hero-content .hero-sub-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-sub-content p {
    font-size: 16px;
    max-width: 435px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content .hero-sub-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content .hero-sub-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.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;
  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(--white);
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  border: none;
}
.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 {
  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;
}

.mobile-menus .mean-nav ul li a {
  font-size: 30px !important;
  font-weight: 600 !important;
  font-family: "Chakra Petch", sans-serif !important;
}
@media (max-width: 767px) {
  .mobile-menus .mean-nav ul li a {
    font-size: 18px !important;
  }
}
.mobile-menus .mean-container .mean-nav ul li li a {
  font-size: 16px !important;
}
.mobile-menus .mean-nav {
  max-width: 530px;
}
@media (max-width: 1199px) {
  .mobile-menus .mean-nav {
    max-width: initial;
  }
}


.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.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: bold 5em "Days One", sans-serif, "Chakra Petch", sans-serif;
  text-align: center;
  user-select: none;
}
@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: "Days One", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  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(--bg);
  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);
}

.gt-back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  color: var(--header);
  font-size: 16px;
  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);
}
.gt-back-to-top:hover {
  background-color: var(--white);
  color: var(--header);
}
.gt-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;
}


.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--header);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.gt-page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.gt-page-nav-wrap ul li {
  display: inline-block;
}
.gt-page-nav-wrap ul li:first-child a {
  color: var(--white);
  background-color: transparent;
  border: 1px none;
}
.gt-page-nav-wrap ul li:last-child a {
  color: var(--white);
  background-color: transparent;
  border: 1px none;
}
.gt-page-nav-wrap ul li .gt-page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  text-align: center;
  background-color: transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .gt-page-nav-wrap ul li .gt-page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .gt-page-nav-wrap ul li .gt-page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.gt-page-nav-wrap ul li .gt-page-numbers.active {
  background-color: var(--theme);
  color: var(--header);
}
.gt-page-nav-wrap ul li .gt-page-numbers i {
  margin-top: 2px;
}
.gt-page-nav-wrap ul li .gt-page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
}

.smoke {
  position: fixed;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #CBFE1C 100%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  animation: fadeOutSmoke 1s forwards;
  will-change: transform, opacity;
}

@keyframes fadeOutSmoke {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(2) translateY(-20px);
    opacity: 0;
  }
}
.smoke {
  position: absolute; /* better for scrolling pages */
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #CBFE1C 100%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  animation: fadeOutSmoke 1s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes fadeOutSmoke {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(2) translateY(-20px);
    opacity: 0;
  }
}
.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1;
  color: var(--theme);
  font-family: "Chakra Petch", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
.section-title h6::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
  width: 116px;
  height: 1px;
  left: 0;
  bottom: -8px;
}
.section-title h2 {
  color: var(--white);
  text-transform: capitalize;
}
.section-title h2 span {
  color: var(--theme);
}
.section-title.style-3 h2 {
  font-size: 45px;
  color: var(--white);
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .section-title.style-3 h2 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .section-title.style-3 h2 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .section-title.style-3 h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title.style-3 h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .section-title.style-3 h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .section-title.style-3 h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .section-title.style-3 p {
    margin-left: 0 !important;
  }
}

.section-title-2 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }
}
.section-title-2 h2 {
  text-transform: capitalize;
}
.section-title-2 h6 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1;
  color: var(--theme);
  font-family: "Chakra Petch", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-transform: uppercase;
  padding-right: 60px;
}
@media (max-width: 575px) {
  .section-title-2 h6 {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-title-2 h6::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
  width: 44px;
  height: 1px;
  left: 0;
  top: 8px;
  animation: borderAnim 2s infinite alternate ease-in-out;
}
@media (max-width: 575px) {
  .section-title-2 h6::before {
    display: none;
  }
}
.section-title-2 h6::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
  width: 44px;
  height: 1px;
  right: 0;
  top: 8px;
  left: initial;
  animation: borderAnim 2s infinite alternate ease-in-out;
}
@media (max-width: 575px) {
  .section-title-2 h6::after {
    display: none;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .gt-section-title-2 {
  margin-bottom: 0;
}
.section-title-area .gt-section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}
.section-title-area .rating span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(136, 136, 136);
}
.section-title-area .rating .star {
  margin-top: 5px;
  color: rgb(255, 8, 8);
}
.section-title-area .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.section-title-area .nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 700;
  color: #ABABAB;
  padding: 0;
}
.section-title-area .nav .nav-item .nav-link.active {
  color: var(--theme);
}
.section-title-area .nav .nav-item .nav-link.style-2 {
  color: #9FA0A2;
}
.section-title-area .nav .nav-item .nav-link.style-2.active {
  background: linear-gradient(90deg, #DDF247 0.25%, #7CFFE5 99.75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: initial !important;
}

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

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

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

.section-padding {
  padding: 70px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* NEW */

.gt-comment-form-wrap {
    padding: 30px;
    background-color: var(--bg-2);
    border-radius: 10px;
}

.gt-comment-form-wrap h4 {
    margin-top: 0;
    margin-bottom: 0;
}
.gt-comment-form-wrap p {
    margin-bottom: 20px;
}

.gt-comment-form-wrap .form-clt span {
    color: var(--white);
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
}

.gt-comment-form-wrap .form-clt textarea, input {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    padding: 10px 20px;
    font-weight: 400;
    color: var(--text);
    border-radius: 8px;
}

