@charset "UTF-8";
/*======================================================================================
Theme Name: Muggle 
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Muggle – Magical News, Games & Wizarding World Hub HTML Template
Service Html Template 
Version: 1.0.0
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Knewave&display=swap");
:root {
  --body: #0a0e11;
  --black: #000;
  --white: #fff;
  --theme: #E84F26;
  --header: #fff;
  --text: #A1A1A1;
  --border: rgba(255, 255, 255, 0.1);
  --bg: #F2F5F7;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
@font-face {
  font-family: "Counte";
  src: url("../../assets/webfonts/Counte-Regular.woff2") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Counte";
  src: url("../../assets/webfonts/Counte-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

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

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

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

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

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

h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

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

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

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

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

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

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

span {
  margin: 0px;
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*---------------------------------------
03. Components
---------------------------------------*/
.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(--header);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
  font-family: "Counte", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

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

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

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

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

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

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

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  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;
}

.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(../../assets/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(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--header);
}

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

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

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

@-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 gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

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

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

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

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

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

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

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

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

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

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

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul .menu-thumb {
  position: inherit;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
.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: 500;
  color: var(--header);
  font-family: "Counte", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  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: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  padding: 20px 0;
  border-radius: 10px;
  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: 4px solid var(--theme);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  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;
  border-top-left-radius: 0;
  border-bottom-left-radius: 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 {
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  margin: auto;
}
.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%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  left: 25px;
  right: 25px;
}
@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 .theme-btn {
  padding: 5.5px;
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--black);
  border-radius: 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  margin-left: 0;
}
.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-thumb a {
  padding: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: "DM Sans", 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: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 30px;
  position: sticky;
  top: 0;
  padding: 1rem 1.5rem;
  z-index: 99999;
  background-color: #032133;
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-1 .header-left .sidebar-bar-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
}
@media (max-width: 1199px) {
  .header-1 .header-left .sidebar-bar-icon {
    display: none;
  }
}
.header-1 .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .header-1 .social-icon {
    display: none;
  }
}
.header-1 .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-1 .social-icon a img {
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.header-1 .social-icon a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}
.header-1 .social-icon a:hover img {
  opacity: 1;
}
.header-1 form {
  max-width: 690px;
  width: 100%;
  position: relative;
}
@media (max-width: 1600px) {
  .header-1 form {
    max-width: 460px;
  }
}
@media (max-width: 1399px) {
  .header-1 form {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .header-1 form {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .header-1 form {
    display: none;
  }
}
.header-1 form button {
  position: absolute;
  top: 12px;
  color: #C9C9C9;
  right: 25px;
}
.header-1 form input {
  border: none;
  height: 50px;
  line-height: 50px;
  background-color: transparent;
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgb(92, 92, 92);
  padding-left: 28px;
  padding-right: 50px;
  text-transform: capitalize;
  border: 1px solid rgba(231, 231, 221, 0.25);
}
.header-1 form input::placeholder {
  color: rgb(92, 92, 92);
}

.main-page-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 1199px) {
  .main-page-wrapper {
    display: initial;
  }
}
.main-page-wrapper .header-sidebar {
  background-color: #061925;
  padding: 15px 0;
  width: 240px;
  position: fixed;
  height: 100vh;
  top: 0;
  padding-top: 120px;
  z-index: 9999;
  transition: width 0.3s ease;
}
.main-page-wrapper .header-sidebar .sidebar-list {
  padding: 0 20px;
}
.main-page-wrapper .header-sidebar .sidebar-list li:not(:last-child) {
  margin-bottom: 10px;
}
.main-page-wrapper .header-sidebar .sidebar-list li.active a {
  color: var(--white);
}
.main-page-wrapper .header-sidebar .sidebar-list li.active a::before {
  opacity: 1;
  visibility: visible;
}
.main-page-wrapper .header-sidebar .sidebar-list li.active a .icon img {
  filter: inherit;
  opacity: 1;
}
.main-page-wrapper .header-sidebar .sidebar-list li a {
  background-color: #0a0e11;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 5px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
.main-page-wrapper .header-sidebar .sidebar-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../assets/img/sidebar.jpg");
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.main-page-wrapper .header-sidebar .sidebar-list li a .icon {
  display: inline-block;
  width: 37px;
  height: 37px;
  line-height: 34px;
  text-align: center;
  border-radius: 6px;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}
.main-page-wrapper .header-sidebar .sidebar-list li a .icon img {
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.main-page-wrapper .header-sidebar .sidebar-list li a:hover {
  color: var(--white);
}
.main-page-wrapper .header-sidebar .sidebar-list li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.main-page-wrapper .header-sidebar .sidebar-list li a:hover .icon img {
  filter: inherit;
  opacity: 1;
}
.main-page-wrapper .header-sidebar .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  margin-top: 300px;
  padding-top: 30px;
}
.main-page-wrapper .header-sidebar.collapsed a {
  width: initial !important;
  background-color: transparent !important;
}
.main-page-wrapper .header-sidebar.collapsed .text {
  display: none;
}
.main-page-wrapper {
  /* Collapsed state */
}
.main-page-wrapper .header-sidebar.collapsed {
  width: 80px;
}
.main-page-wrapper {
  /* Hide text when collapsed */
}
.main-page-wrapper .header-sidebar.collapsed .sidebar-list li a span.icon + * {
  display: none; /* text hide */
}
.main-page-wrapper {
  /* Page content adjustment */
}
.main-page-wrapper .page-items {
  width: calc(100% - 240px);
  margin-left: 240px;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .main-page-wrapper .page-items {
    margin-left: 0;
    width: initial;
  }
}
.main-page-wrapper .page-items.collapsed {
  width: calc(100% - 80px);
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .main-page-wrapper .page-items.collapsed {
    margin-left: 0;
    width: initial;
  }
}

.offcanvas__info {
  background: #181818;
  position: fixed;
  left: 0;
  top: 0;
  width: 450px;
  height: 100%;
  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 form {
  position: relative;
}
.offcanvas__info form button {
  position: absolute;
  top: 12px;
  color: #C9C9C9;
  right: 25px;
}
.offcanvas__info form input {
  border: none;
  height: 50px;
  line-height: 50px;
  background-color: rgb(30, 30, 30);
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgb(92, 92, 92);
  padding-left: 28px;
  padding-right: 50px;
}
.offcanvas__info form input::placeholder {
  color: rgb(92, 92, 92);
}
.offcanvas__info .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
  margin-top: 180px;
}
@media (max-width: 1199px) {
  .offcanvas__info .social-icon {
    margin-top: 100px;
  }
}
.offcanvas__info .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas__info .social-icon a img {
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.offcanvas__info .social-icon a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}
.offcanvas__info .social-icon a:hover img {
  opacity: 1;
}

.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;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__logo img {
    width: 130px;
  }
}
.offcanvas__wrapper .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 99999;
  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;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 0 0 20px 20px;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 200px 0 120px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 500;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.footer-section {
  background-color: #0b2031;
  margin-right: -30px;
}

.footer-wrapper {
  padding: 30px;
}
.footer-wrapper .footer-top-item {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-wrapper .footer-top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-wrapper .footer-top-item .footer-left-content .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 20px;
  line-height: 150%;
}
@media (max-width: 991px) {
  .footer-wrapper .footer-top-item .footer-left-content .title br {
    display: none;
  }
}
.footer-wrapper .footer-top-item .footer-left-content .title span {
  color: #E84F26;
}
.footer-wrapper .footer-top-item .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .footer-wrapper .footer-top-item .social-icon {
    flex-wrap: wrap;
  }
}
.footer-wrapper .footer-top-item .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  line-height: 34px;
  background-color: transparent;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-wrapper .footer-top-item .social-icon a img {
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.footer-wrapper .footer-top-item .social-icon a:hover {
  background-color: var(--theme);
}
.footer-wrapper .footer-top-item .social-icon a:hover img {
  opacity: initial;
}
.footer-wrapper .footer-list-item {
  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: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .footer-wrapper .footer-list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-wrapper .footer-list-item .list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1399px) {
  .footer-wrapper .footer-list-item .list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-wrapper .footer-list-item .list li {
  font-weight: 500;
}
.footer-wrapper .footer-list-item .list li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-wrapper .footer-list-item .list li a:hover {
  color: var(--white);
}
.footer-wrapper .footer-list-item p {
  font-weight: 400;
  color: rgb(118, 118, 118);
}
.footer-wrapper .footer-list-item p span {
  color: var(--white);
}
.footer-wrapper p {
  font-size: 15px;
  font-weight: 500;
  color: rgb(118, 118, 118);
  max-width: 710px;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .title {
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  font-weight: 800;
  font-family: "Counte", sans-serif;
}
@media (max-width: 991px) {
  .section-title .title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .section-title .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .section-title .title {
    font-size: 19px;
  }
}
.section-title.style-2 .title {
  background-color: #0a0e11;
  position: relative;
  display: inline-flex;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .section-title.style-2 .title {
    padding: 0;
  }
}
.section-title.style-2 .line-1 {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .section-title.style-2 .line-1 {
    display: none;
  }
}
.section-title.style-2 .line-1::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 19;
}
.section-title.style-2 .line-1::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 19;
}

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

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

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

.section-padding {
  padding: 60px 0;
}

.section-padding-2 {
  padding: 60px 0;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
}
.hero-1 .magical-witch {
  position: absolute;
  bottom: 0;
  right: 80px;
}
@media (max-width: 991px) {
  .hero-1 .magical-witch {
    right: 20px;
    max-width: 180px;
  }
  .hero-1 .magical-witch img {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .hero-1 .magical-witch {
    opacity: 0.5;
  }
}
@media (max-width: 470px) {
  .hero-1 .magical-witch {
    max-width: 130px;
  }
}
.hero-1 .riding-broom {
  position: absolute;
  bottom: 0;
  right: 27%;
}
@media (max-width: 991px) {
  .hero-1 .riding-broom {
    right: 28%;
    max-width: 180px;
  }
  .hero-1 .riding-broom img {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .hero-1 .riding-broom {
    opacity: 0.5;
    right: initial;
    left: 20px;
  }
}
@media (max-width: 500px) {
  .hero-1 .riding-broom {
    display: none;
  }
}
.hero-1 .content {
  padding: 60px 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-1 .content {
    text-align: center;
  }
}
.hero-1 .content h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Knewave", system-ui;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .hero-1 .content h1 {
    font-size: 30px;
  }
}
.hero-1 .content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
}
@media (max-width: 500px) {
  .hero-1 .content p {
    font-size: 14px;
  }
}
.hero-1 .content .text-2 {
  font-size: 16px;
  font-weight: 800;
  font-style: normal;
}

.page-items {
  padding-right: 30px;
}
@media (max-width: 1899px) {
  .page-items {
    margin-left: 0;
  }
}

.shop-main-item {
  margin-top: 30px;
}
.shop-main-item .shop-card-item {
  padding: 20px;
  background-color: rgb(18, 18, 18);
  border-radius: 10px;
}
.shop-main-item .shop-card-item .shop-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.shop-main-item .shop-card-item .shop-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.shop-main-item .shop-card-item .shop-content {
  margin-top: 20px;
}
.shop-main-item .shop-card-item .shop-content span {
  color: var(--white);
  font-weight: 600;
}
.shop-main-item .shop-card-item .shop-content span i {
  color: rgb(238, 182, 0);
}
.shop-main-item .shop-card-item .shop-content .title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 1600px) {
  .shop-main-item .shop-card-item .shop-content .title {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .shop-main-item .shop-card-item .shop-content .title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-main-item .shop-card-item .shop-content .title {
    font-size: 16px;
  }
}
.shop-main-item .shop-card-item .shop-content .title a {
  color: rgb(255, 255, 255);
}
.shop-main-item .shop-card-item .shop-content .title a:hover {
  color: var(--theme);
}
.shop-main-item .shop-card-item .shop-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #E84F26;
  margin-top: 8px;
}
.shop-main-item .theme-btn {
  background-color: #343a40;
  color: #E84F26;
  font-weight: 700;
  padding: 16px 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .shop-main-item .theme-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.shop-main-item .theme-btn img {
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
  object-fit: cover;
}
.shop-main-item .theme-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.shop-main-item .theme-btn:hover img {
  filter: brightness(0) invert(1);
}
.shop-main-item:hover .shop-card-item .shop-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.shop-card-item2 {
  border-radius: 10px;
}
.shop-card-item2 .shop-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.shop-card-item2 .shop-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.shop-card-item2 .shop-content {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.shop-card-item2 .shop-content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .shop-card-item2 .shop-content .title {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .shop-card-item2 .shop-content .title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-card-item2 .shop-content .title {
    font-size: 16px;
  }
}
.shop-card-item2 .shop-content .title a {
  color: rgb(255, 255, 255);
}
.shop-card-item2 .shop-content .title a:hover {
  color: var(--theme);
}
.shop-card-item2 .shop-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #E84F26;
  margin-top: 8px;
}
.shop-card-item2 .shop-content .theme-btn {
  border: 1px solid var(--border);
  width: 100%;
  display: inline-flex;
  border-radius: 8px;
  padding: 15px 18px;
  line-height: 1;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.shop-card-item2 .shop-content .theme-btn img {
  width: 60px;
}
.shop-card-item2 .shop-content .theme-btn:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}

.shop-card-item3 {
  border-radius: 10px;
}
.shop-card-item3 .shop-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.shop-card-item3 .shop-image .badge-new {
  background-color: var(--theme);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.shop-card-item3 .shop-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.shop-card-item3 .shop-content {
  padding: 20px 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
@media (max-width: 575px) {
  .shop-card-item3 .shop-content {
    padding: 20px 20px;
  }
}
.shop-card-item3 .shop-content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .shop-card-item3 .shop-content .title {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .shop-card-item3 .shop-content .title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-card-item3 .shop-content .title {
    font-size: 16px;
  }
}
.shop-card-item3 .shop-content .title a {
  color: rgb(255, 255, 255);
}
.shop-card-item3 .shop-content .title a:hover {
  color: var(--theme);
}
.shop-card-item3 .shop-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #E84F26;
  margin-top: 8px;
}
@media (max-width: 1600px) {
  .shop-card-item3 .shop-content p {
    font-size: 14px;
  }
}
.shop-card-item3 .shop-content .button-items {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-card-item3 .shop-content .button-items span {
  display: flex;
  align-items: center;
  color: var(--white);
  gap: 10px;
}
.shop-card-item3 .shop-content .button-items .theme-btn {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 10px 18px;
  line-height: 1;
  border-radius: 8px;
}
.shop-card-item3 .shop-content .button-items .theme-btn i {
  font-size: 14px;
  margin-left: 8px;
}
.shop-card-item3 .shop-content .button-items .theme-btn:hover {
  background-color: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}

.shop-section {
  background-color: rgb(24, 24, 24);
  padding: 40px 30px;
  border-radius: 10px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .shop-section {
    padding: 30px 20px;
  }
}
.shop-section .shop-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.shop-section .shop-text a {
  color: var(--theme);
}

.product-card-item {
  margin-top: 30px;
  position: relative;
}
.product-card-item .product-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .product-card-item .product-image {
    height: 400px;
  }
}
.product-card-item .product-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.product-card-item .product-image .product-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.product-card-item .product-image .product-content .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card-item .product-image .product-content .title a {
  color: rgb(255, 255, 255);
}
.product-card-item .product-image .product-content .title a:hover {
  color: var(--theme);
}
.product-card-item .product-image .product-content .social-text {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, #F4D658 0%, #E84F26 100%);
  border-radius: 100px;
  padding: 8px 10px;
}
.product-card-item .product-image .product-content .social-text i {
  margin-right: 5px;
}
.product-card-item .video-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: inset 0px 0px 8px #08658D;
  filter: drop-shadow(8px 4px 16px rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.product-card-item:hover .product-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.discover-item {
  margin-top: 30px;
  text-align: center;
}
.discover-item .discover-image {
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .discover-item .discover-image {
    padding: 10px;
  }
}
.discover-item .discover-image .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1000px;
}
.discover-item .discover-image .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  object-fit: cover;
}
.discover-item .title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
}
.discover-item .title a {
  color: rgb(255, 255, 255);
}
.discover-item .title a:hover {
  color: var(--theme);
}
.discover-item:hover .discover-image .thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.discover-section .shop-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.discover-section .shop-text a {
  color: var(--theme);
}

.breadcrumb-style {
  background-color: #0b2031;
}

.shop-details-section {
  /* ==============================
     Search Box Items
  =================================*/
}
.shop-details-section .search-box-items {
  display: flex;
  align-items: center;
  background: #0b2031;
  border-radius: 12px;
  padding: 0 30px;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .shop-details-section .search-box-items {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.shop-details-section .search-box-items .search-input {
  max-width: 410px;
  width: 100%;
  position: relative;
}
@media (max-width: 1899px) {
  .shop-details-section .search-box-items .search-input {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .shop-details-section .search-box-items .search-input {
    max-width: initial;
    margin-bottom: 15px;
  }
}
.shop-details-section .search-box-items .search-input button {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
}
@media (max-width: 991px) {
  .shop-details-section .search-box-items .search-input button {
    top: 14px;
    left: 14px;
  }
}
.shop-details-section .search-box-items .search-input input {
  width: 100%;
  height: initial;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 8px;
  padding: 0 0;
  font-size: 15px;
  padding-left: 30px;
  color: #fff;
}
@media (max-width: 991px) {
  .shop-details-section .search-box-items .search-input input {
    border: 1px solid var(--border);
    padding: 16px 30px;
    line-height: 1;
    padding-left: 42px;
  }
}
.shop-details-section .search-box-items .search-input input::placeholder {
  color: #fff;
}
.shop-details-section .search-box-items .filter-items {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .shop-details-section .search-box-items .filter-items {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: start;
  }
}
.shop-details-section .search-box-items .filter-items .line-style1 {
  height: 60px;
  width: 1px;
  background-color: var(--border);
}
@media (max-width: 991px) {
  .shop-details-section .search-box-items .filter-items .line-style1 {
    display: none;
  }
}
.shop-details-section .search-box-items .custom-select {
  position: relative;
}
.shop-details-section .search-box-items .custom-select .select-btn {
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  padding-right: 18px;
  position: relative;
}
.shop-details-section .search-box-items .custom-select .select-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
.shop-details-section .search-box-items .custom-select .select-dropdown {
  position: absolute;
  top: 120%;
  left: -80px;
  min-width: 160px;
  background: #0a0e11;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 99;
}
@media (max-width: 575px) {
  .shop-details-section .search-box-items .custom-select .select-dropdown {
    left: 0;
  }
}
.shop-details-section .search-box-items .custom-select .select-dropdown li {
  list-style: none;
  padding: 8px 15px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.shop-details-section .search-box-items .custom-select .select-dropdown li:hover {
  color: var(--theme);
}
.shop-details-section .search-box-items .custom-select:hover .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-details-section .search-box-items .custom-select:hover .select-btn::after {
  transform: translateY(-50%) rotate(-135deg);
}

.shop-section-3 .nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
  justify-content: center;
}
@media (max-width: 575px) {
  .shop-section-3 .nav {
    gap: 15px;
  }
}
.shop-section-3 .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #767676;
  padding: 0;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .shop-section-3 .nav .nav-item .nav-link {
    padding-bottom: 0;
  }
}
.shop-section-3 .nav .nav-item .nav-link.active {
  color: #F4D658;
  position: relative;
}
.shop-section-3 .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  left: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(237, 109, 166, 0) 20%, #F4D658 50%, rgba(237, 109, 166, 0) 80%, #121212 100%);
}
@media (max-width: 575px) {
  .shop-section-3 .nav .nav-item .nav-link.active::before {
    display: none;
  }
}

.about-image {
  height: 548px;
}
@media (max-width: 767px) {
  .about-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .about-image {
    height: 400px;
  }
}
.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-content .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 575px) {
  .about-content .title {
    font-size: 18px;
  }
}
.about-content .title span {
  color: var(--theme);
}
.about-content .text {
  font-size: 16px;
  color: #A1A1A1;
  font-weight: 500;
  line-height: 188%;
  margin-top: 12px;
}
@media (max-width: 1600px) {
  .about-content .text {
    font-size: 14px;
    line-height: 170%;
  }
}
@media (max-width: 575px) {
  .about-content .text {
    font-size: 13px;
    line-height: 170%;
  }
}
.about-content .text span {
  color: var(--theme);
}
.about-content .highlight-box {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  gap: 10px;
  margin-top: 19px;
}
@media (max-width: 575px) {
  .about-content .highlight-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 1600px) {
  .about-content .highlight-box p {
    font-size: 14px;
    line-height: 170%;
  }
}
@media (max-width: 575px) {
  .about-content .highlight-box p {
    font-size: 13px;
    line-height: 170%;
  }
}

.about-gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 9;
}
.about-gallery-image:before, .about-gallery-image:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(232, 79, 38, 0.7);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.about-gallery-image:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.about-gallery-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.about-gallery-image .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;
}
.about-gallery-image:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.about-gallery-image:hover:before, .about-gallery-image:hover:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.about-fetaure-box {
  border-radius: 30px;
  background-color: #1B1B1B;
  padding: 30px;
}
@media (max-width: 1600px) {
  .about-fetaure-box {
    padding: 25px;
  }
}
.about-fetaure-box .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 767px) {
  .about-fetaure-box .title {
    font-size: 17px;
  }
}
.about-fetaure-box p {
  font-weight: 500;
  line-height: 188%;
  color: #A1A1A1;
  margin-top: 15px;
}
@media (max-width: 1600px) {
  .about-fetaure-box p {
    font-size: 13px;
  }
}
@media (max-width: 470px) {
  .about-fetaure-box p {
    font-size: 12px;
  }
}

.about-feature-section .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
  position: relative;
  line-height: 1;
}
.about-feature-section .line::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}
.about-feature-section .line::after {
  position: absolute;
  top: -2px;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}

.about-section2 {
  position: relative;
  width: calc(100% - 30px);
}
@media (max-width: 1199px) {
  .about-section2 {
    width: initial;
  }
}
.about-section2 .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
  position: relative;
  line-height: 1;
  margin-top: -10px;
}
.about-section2 .line::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}
.about-section2 .line::after {
  position: absolute;
  top: -2px;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}
.about-section2 .history-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-section2 .history-year .dot-text {
  position: relative;
  z-index: 9;
}
.about-section2 .history-year .dot-text p {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
@media (max-width: 767px) {
  .about-section2 .history-year .dot-text p {
    font-size: 15px;
  }
}
@media (max-width: 470px) {
  .about-section2 .history-year .dot-text p {
    font-size: 12px;
  }
}
.about-section2 .history-year .dot-text .dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: var(--white);
  margin: 25px auto 0;
  position: relative;
}
@media (min-width: 576px) {
  .about-section2 .history-year .dot-text .dot {
    width: 14px;
    height: 14px;
  }
}
.about-section2 .history-year .dot-text .dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  background-color: #121212;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 576px) {
  .about-section2 .history-year .dot-text .dot::before {
    width: 6px;
    height: 6px;
  }
}
.about-section2 .history-year .dot-text:hover p {
  color: var(--theme);
}
.about-section2 .history-year .dot-text:hover .dot::before {
  background-color: var(--theme);
}
.about-section2 .history-year .dot-text.active p {
  color: var(--theme);
}
.about-section2 .history-year .dot-text.active .dot::before {
  background-color: var(--theme);
}
.about-section2 .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}
.about-section2 .nav .nav-item .nav-link {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  position: relative;
  z-index: 9;
}
.about-section2 .nav .nav-item .nav-link .dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: var(--white);
  margin: 25px auto 0;
  position: relative;
}
.about-section2 .nav .nav-item .nav-link .dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  background-color: #121212;
  transition: all 0.4s ease-in-out;
}
.about-section2 .nav .nav-item .nav-link:hover {
  color: var(--theme);
}
.about-section2 .nav .nav-item .nav-link:hover .dot::before {
  background-color: var(--theme);
}
.about-section2 .nav .nav-item .nav-link.active {
  color: var(--theme);
}
.about-section2 .nav .nav-item .nav-link.active .dot::before {
  background-color: var(--theme);
}

/* ===============================
   HISTORY SCROLL FIX (ADD THIS)
================================ */
.about-section2 {
  position: relative;
}

.history-content-wrap {
  position: relative;
}

.history-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.history-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.feature-gifts-section {
  background-color: #181818;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
.feature-gifts-section .array-button {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 99;
}
@media (max-width: 991px) {
  .feature-gifts-section .array-button {
    position: static;
    justify-content: center;
    margin-top: 30px;
  }
}
.feature-gifts-section .array-button .array-prev, .feature-gifts-section .array-button .array-next {
  display: inline-block;
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.feature-gifts-section .array-button .array-prev:hover, .feature-gifts-section .array-button .array-next:hover {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}
.feature-gifts-section .array-button-2 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.feature-gifts-section .array-button-2 .array-prev-2, .feature-gifts-section .array-button-2 .array-next-2 {
  display: inline-block;
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.feature-gifts-section .array-button-2 .array-prev-2:hover, .feature-gifts-section .array-button-2 .array-next-2:hover {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}

.feature-gifts-items {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 10px;
}
.feature-gifts-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(232, 79, 38, 0) 29.29%, #E84F26 58.09%);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.feature-gifts-items img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.feature-gifts-items .content {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  z-index: 99;
  bottom: 20px;
  transition: all 0.6s ease-in-out;
}
.feature-gifts-items .content .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.feature-gifts-items .content p {
  color: var(--white);
  margin-top: 10px;
}
@media (max-width: 1600px) {
  .feature-gifts-items .content p {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .feature-gifts-items .content p {
    line-height: 1.3;
  }
}
.feature-gifts-items .content .button-btns {
  display: inline-block;
  background-color: #343a40;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  margin-top: 18px;
  transition: all 0.4s ease-in-out;
  border-color: #181818;
}
.feature-gifts-items .content .button-btns:hover {
  background-color: transparent;
  color: var(--white);
  border: 1px solid #343a40;
}

.shop-textss {
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  line-height: 1;
  border-radius: 6px;
}
.shop-textss:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}

.fun-game-section .fun-game-search {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.fun-game-section .fun-game-search input {
  border: none;
  height: 55px;
  line-height: 55px;
  background-color: transparent;
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgb(92, 92, 92);
  padding-left: 28px;
  padding-right: 50px;
  text-transform: capitalize;
  border: 1px solid rgba(231, 231, 221, 0.25);
}
.fun-game-section .fun-game-search button {
  position: absolute;
  top: 12px;
  color: #C9C9C9;
  right: 25px;
}
.fun-game-section .nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
  margin-top: 45px;
  justify-content: center;
}
@media (max-width: 575px) {
  .fun-game-section .nav {
    gap: 15px;
  }
}
.fun-game-section .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #767676;
  padding: 0;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .fun-game-section .nav .nav-item .nav-link {
    padding-bottom: 0;
  }
}
.fun-game-section .nav .nav-item .nav-link.active {
  color: #F4D658;
  position: relative;
}
.fun-game-section .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  left: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(237, 109, 166, 0) 20%, #F4D658 50%, rgba(237, 109, 166, 0) 80%, #121212 100%);
}
@media (max-width: 575px) {
  .fun-game-section .nav .nav-item .nav-link.active::before {
    display: none;
  }
}
.fun-game-section .theme-btn {
  background-color: #343a40;
  color: #E84F26;
  font-weight: 700;
  padding: 16px 50px;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
  margin-top: 40px;
  border-radius: 8px;
}
.fun-game-section .theme-btn:hover {
  background: #E84F26;
  color: #fff;
}

.media-box-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  padding: 20px;
}
.media-box-items .media-card {
  background: rgb(18, 18, 18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.media-box-items .media-card .card-image {
  position: relative;
}
.media-box-items .media-card .card-image .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  color: #fff;
  z-index: 99;
}
.media-box-items .media-card .card-image img {
  width: 100%;
}
.media-box-items .media-card .card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.media-box-items .media-card .card-image .top-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}
.media-box-items .media-card .card-image .top-badge i {
  margin-right: 5px;
}
.media-box-items .media-card .card-image .top-badge.tiktok-bg {
  background: rgba(0, 0, 0, 0.7);
}
.media-box-items .media-card .card-image .top-badge.insta-bg {
  background: rgba(188, 42, 141, 0.7);
}
.media-box-items .media-card .card-image .top-badge.yt-bg {
  background: rgba(255, 0, 0, 0.7);
}
.media-box-items .media-card .card-image .play-btn {
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  z-index: 2;
  cursor: pointer;
}
.media-box-items .media-card .card-image .play-btn.outline {
  background: transparent;
  border: 3px solid #fff;
}
.media-box-items .media-card .card-image .image-stats-bottom {
  position: absolute;
  bottom: 12px;
  right: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  display: flex;
  gap: 12px;
}
.media-box-items .media-card .card-image .image-stats-bottom i {
  font-size: 12px;
  margin-right: 4px;
}
.media-box-items .media-card .card-content {
  padding: 15px 20px;
}
.media-box-items .media-card .card-content h3 {
  margin: 0 0 15px 0;
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-box-items .media-card .card-content h3 a:hover {
  color: var(--theme);
}
.media-box-items .media-card .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.media-box-items .media-card .card-content .card-footer .platform {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.media-box-items .media-card .card-content .card-footer .platform .icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  color: #fff;
  font-size: 16px;
}
.media-box-items .media-card .card-content .card-footer .platform .icon-box.tiktok-color {
  background: #000;
}
.media-box-items .media-card .card-content .card-footer .platform .icon-box.insta-color {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.media-box-items .media-card .card-content .card-footer .platform .icon-box.yt-color {
  background: #ff0000;
}
.media-box-items .media-card .card-content .card-footer .stats {
  color: #888;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.media-box-items .media-card .card-content .card-footer .stats i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .media-box-items {
    grid-template-columns: 1fr;
  }
}
.feature-news-box-items {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}
.feature-news-box-items .thumb {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .feature-news-box-items .thumb {
    height: 323px;
  }
}
@media (max-width: 1399px) {
  .feature-news-box-items .thumb {
    height: initial;
  }
}
@media (max-width: 575px) {
  .feature-news-box-items .thumb {
    height: 200px;
  }
}
.feature-news-box-items .thumb .tag-post {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #085137;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  border-radius: 4px;
  padding: 9px 8px;
  line-height: 1;
}
.feature-news-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.feature-news-box-items .content {
  margin-top: 15px;
}
.feature-news-box-items .content .title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .feature-news-box-items .content .title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .feature-news-box-items .content .title {
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .feature-news-box-items .content .title {
    font-size: 14px;
    line-height: 160%;
  }
}
.feature-news-box-items .content .title a:hover {
  color: var(--theme);
}
@media (max-width: 470px) {
  .feature-news-box-items .content p {
    font-size: 13px;
  }
}
.feature-news-box-items:hover .thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.feature-news-right-items {
  margin-top: 20px;
}
.feature-news-right-items ul li {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1899px) {
  .feature-news-right-items ul li {
    padding: 15px 12px;
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .feature-news-right-items ul li {
    display: block;
  }
}
.feature-news-right-items ul li .thumb {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  max-width: 118px;
  width: 100%;
  z-index: 9;
}
@media (max-width: 575px) {
  .feature-news-right-items ul li .thumb {
    max-width: initial;
    height: 150px;
    margin-bottom: 20px;
  }
}
.feature-news-right-items ul li .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.feature-news-right-items ul li .content .tag-post {
  background-color: #085137;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  border-radius: 4px;
  padding: 7px 8px;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}
.feature-news-right-items ul li .content .tag-post.color-2 {
  background-color: #085137;
}
.feature-news-right-items ul li .content .tag-post.color-3 {
  background-color: #085137;
}
.feature-news-right-items ul li .content .title {
  line-height: 160%;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
@media (max-width: 1899px) {
  .feature-news-right-items ul li .content .title {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .feature-news-right-items ul li .content .title {
    font-size: 17px;
    max-width: 380px;
  }
}
.feature-news-right-items ul li .content .title a:hover {
  color: var(--theme);
}
.feature-news-right-items ul li .content p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.feature-news-right-items ul li:hover .thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.feature-news-right-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.feature-news-section .nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .feature-news-section .nav {
    gap: 15px;
  }
}
.feature-news-section .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #767676;
  padding: 0;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .feature-news-section .nav .nav-item .nav-link {
    padding-bottom: 0;
  }
}
.feature-news-section .nav .nav-item .nav-link.active {
  color: #F4D658;
  position: relative;
}
.feature-news-section .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  left: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(237, 109, 166, 0) 20%, #F4D658 50%, rgba(237, 109, 166, 0) 80%, #121212 100%);
}
@media (max-width: 575px) {
  .feature-news-section .nav .nav-item .nav-link.active::before {
    display: none;
  }
}

.fun-game-box-items {
  margin-top: 30px;
  background-color: #1B1B1B;
  border-radius: 30px;
  padding: 30px 0 0;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.fun-game-box-items .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 30px;
}
@media (max-width: 767px) {
  .fun-game-box-items .thumb {
    margin: 0 18px;
  }
}
.fun-game-box-items .thumb .tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--theme);
  border-radius: 4px !important;
  padding: 9px 10px;
  position: absolute;
  top: 20px;
  line-height: 1;
  left: 20px;
  z-index: 9;
}
.fun-game-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.fun-game-box-items .content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .fun-game-box-items .content {
    padding: 0 18px;
  }
}
.fun-game-box-items .content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .fun-game-box-items .content .title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.fun-game-box-items .content .title a:hover {
  color: var(--theme);
}
.fun-game-box-items .play-list {
  margin-top: 20px;
}
.fun-game-box-items .play-list .video-text {
  background-color: #343a40;
  color: var(--theme);
  font-weight: 700;
  padding: 16px 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .fun-game-box-items .play-list .video-text {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.fun-game-box-items .play-list .video-text img {
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
  object-fit: cover;
}
.fun-game-box-items .play-list .video-text:hover {
  background-color: var(--theme);
  color: var(--white);
}
.fun-game-box-items .play-list .video-text:hover img {
  filter: brightness(0) invert(1);
}
.fun-game-box-items .play-list .user {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1399px) {
  .fun-game-box-items .play-list .user {
    font-size: 14px;
  }
}
.fun-game-box-items:hover .thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.fun-game-box-items:hover .content .video-text {
  color: var(--white);
}
.fun-game-box-items:hover .play-list .video-text {
  background-color: var(--theme);
  color: var(--white);
}
.fun-game-box-items:hover .play-list .video-text img {
  filter: brightness(0) invert(1);
}

.news-card-items {
  background-color: #181818;
  border-radius: 10px;
}
.news-card-items .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.news-card-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  object-fit: cover;
}
.news-card-items .content {
  padding: 20px;
}
.news-card-items .content .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 10px;
}
@media (max-width: 1899px) {
  .news-card-items .content .title {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .news-card-items .content .title {
    font-size: 16px;
  }
}
.news-card-items .content .title a:hover {
  color: var(--theme);
}
@media (max-width: 1899px) {
  .news-card-items .content p {
    font-size: 14px;
  }
}
.news-card-items .content .news-bottom-items {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card-items .content .news-bottom-items .news-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  background: linear-gradient(90deg, #E84F26 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1899px) {
  .news-card-items .content .news-bottom-items .news-text {
    font-size: 14px;
  }
}
.news-card-items .content .news-bottom-items .custom-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.news-card-items .content .news-bottom-items .custom-toggle input {
  display: none;
}
.news-card-items .content .news-bottom-items .text {
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
@media (max-width: 1899px) {
  .news-card-items .content .news-bottom-items .text {
    font-size: 14px;
  }
}
.news-card-items .content .news-bottom-items .off-label {
  color: #747474;
}
.news-card-items .content .news-bottom-items .on-label {
  color: #747474;
}
.news-card-items .content .news-bottom-items .slider-body {
  position: relative;
  width: 35px;
  height: 20px;
  background-color: #D9D9D9;
  border-radius: 50px;
  transition: 0.4s;
}
.news-card-items .content .news-bottom-items .slider-body:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #747474;
  border-radius: 50%;
  transition: 0.4s;
}
.news-card-items .content .news-bottom-items input:checked ~ .slider-body:after {
  transform: translateX(12px) translateY(-50%);
  background-color: #4CAF50;
}
.news-card-items .content .news-bottom-items input:checked ~ .on-label {
  color: #4CAF50;
}
.news-card-items .content .news-bottom-items input:checked ~ .off-label {
  color: #747474;
}
.news-card-items .content .news-bottom-items input:not(:checked) ~ .off-label {
  color: #747474;
}
.news-card-items:hover .thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.news-section-2 {
  position: relative;
}
.news-section-2 .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 60px;
  position: relative;
  line-height: 1;
}
.news-section-2 .line::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}
.news-section-2 .line::after {
  position: absolute;
  top: -2px;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #A1A1A1;
  z-index: 9;
}

.shop-box-items {
  display: flex;
  background-color: #0b2031;
  border-radius: 10px;
  border-radius: 12px;
  overflow: hidden;
  align-items: center;
}
@media (max-width: 991px) {
  .shop-box-items {
    display: block;
  }
}
.shop-box-items .product-image {
  background-size: cover;
  background-position: center;
  position: relative;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1899px) {
  .shop-box-items .product-image {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .shop-box-items .product-image {
    max-width: initial;
  }
}
.shop-box-items .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-box-items .product-image .badge-new {
  background-color: var(--theme);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.shop-box-items .product-content {
  padding: 25px 35px;
}
@media (max-width: 991px) {
  .shop-box-items .product-content {
    padding: 20px 30px;
  }
}
@media (min-width: 576px) {
  .shop-box-items .product-content {
    padding: 20px 22px;
  }
}
.shop-box-items .product-content .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1899px) {
  .shop-box-items .product-content .top-bar {
    margin-bottom: 22px;
  }
}
.shop-box-items .product-content .top-bar .amazon-label {
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
}
.shop-box-items .product-content .top-bar .amazon-label i {
  font-size: 14px;
}
.shop-box-items .product-content .top-bar .bookmark-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.shop-box-items .product-content .title {
  font-size: 42px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}
@media (max-width: 1899px) {
  .shop-box-items .product-content .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 1399px) {
  .shop-box-items .product-content .title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .shop-box-items .product-content .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .shop-box-items .product-content .title {
    font-size: 29px;
  }
}
@media (max-width: 470px) {
  .shop-box-items .product-content .title {
    font-size: 22px;
  }
}
.shop-box-items .product-content .description {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 1899px) {
  .shop-box-items .product-content .description {
    font-size: 15px;
  }
}
@media (max-width: 470px) {
  .shop-box-items .product-content .description {
    font-size: 13px;
  }
}
.shop-box-items .product-content .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15px;
}
@media (max-width: 575px) {
  .shop-box-items .product-content .footer-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.shop-box-items .product-content .footer-row .price-section .amazon-logo-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 25px;
  margin-top: 20px;
}
@media (max-width: 1899px) {
  .shop-box-items .product-content .footer-row .price-section .amazon-logo-row {
    margin-bottom: 20px;
    margin-top: 16px;
  }
}
@media (max-width: 470px) {
  .shop-box-items .product-content .footer-row .price-section .amazon-logo-row {
    flex-wrap: wrap;
  }
}
.shop-box-items .product-content .footer-row .price-section .amazon-logo-row img {
  width: 100px;
}
@media (max-width: 470px) {
  .shop-box-items .product-content .footer-row .price-section .amazon-logo-row img {
    width: 60px;
  }
}
.shop-box-items .product-content .footer-row .price-section .amazon-logo-row .bestseller-badge {
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
}
.shop-box-items .product-content .footer-row .price-section .amazon-logo-row .bestseller-badge i {
  color: #d49429;
  font-size: 12px;
}
.shop-box-items .product-content .footer-row .price-section .price {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 470px) {
  .shop-box-items .product-content .footer-row .price-section .price {
    font-size: 22px;
  }
}
.shop-box-items .product-content .footer-row .buy-button {
  background-color: var(--theme);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
  .shop-box-items .product-content .footer-row .buy-button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 1;
  }
}
.shop-box-items .product-content .footer-row .buy-button:hover {
  background-color: #fff;
  color: #121212;
}
.shop-box-items .product-content .list-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-box-items .product-content .list-icon li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.news-section-2 .nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
  margin-bottom: 40px;
  justify-content: center;
}
@media (max-width: 575px) {
  .news-section-2 .nav {
    gap: 15px;
  }
}
.news-section-2 .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #767676;
  padding: 0;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .news-section-2 .nav .nav-item .nav-link {
    padding-bottom: 0;
  }
}
.news-section-2 .nav .nav-item .nav-link.active {
  color: #F4D658;
  position: relative;
}
.news-section-2 .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  left: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(237, 109, 166, 0) 20%, #F4D658 50%, rgba(237, 109, 166, 0) 80%, #121212 100%);
}
@media (max-width: 575px) {
  .news-section-2 .nav .nav-item .nav-link.active::before {
    display: none;
  }
}

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

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

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

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

.p-relative {
  position: relative;
}

.box-user {
  position: sticky;
  top: 0px;
}

.swiper-dot {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .swiper-dot {
    margin-top: 30px;
  }
}
.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background: #6D6D6D;
  border-radius: 8px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E84F26;
  transition: 0.6s;
  position: relative;
}

.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.current {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 58px;
  height: 58px;
  text-align: center;
  line-height: 58px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-size: 20px;
  font-family: "Counte", sans-serif;
}
@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(--white);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.margin-left-30px {
  margin-left: 30px;
}