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

   Theme Name: Sarsa - News & Magazine HTML Template
   Author : ThemeGenix
   Support: themegenix@gmail.com
   Description: Sarsa - News & Magazine HTML Template
   Version: 1.1

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

/************ TABLE OF CONTENTS **************

    01. Theme Default CSS
    02. Header
    03. Mobile Menu
    04. Banner
    05. Trending Post
    06. Featured Post
    07. Video Post
    08. Hand-Picked Post
    09. Stories Post
    10. Popular Post
    11. Category Post
    12. Latest Post
    13. Minimal Post
    14. Adventure Post
    15. Blog
    16. Blog Sidebar
    17. Newsletter Post
    18. Footer
    19. Dark Mode

**********************************************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --tg-body-font-family: "Roboto", sans-serif;
  --tg-heading-font-family: "Roboto", sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Pro";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.62;
  --tg-heading-line-height: 1.2;
  --tg-common-color-blue: #0d6efd;
  --tg-common-color-indigo: #6610f2;
  --tg-common-color-purple: #6f42c1;
  --tg-common-color-pink: #d63384;
  --tg-common-color-red: #dc3545;
  --tg-common-color-orange: #fd7e14;
  --tg-common-color-yellow: #ffc107;
  --tg-common-color-green: #17c699;
  --tg-common-color-teal: #20c997;
  --tg-common-color-cyan: #0dcaf0;
  --tg-common-color-white: #fff;
  --tg-common-color-gray: #f0f0f0;
  --tg-common-color-black: #0f0f0f;
  --tg-body-color: #777777;
  --tg-heading-color: #0f0f0f;
  --tg-theme-primary: #201053;
  --tg-theme-secondary: #6b5797;
  --tg-border-1: #f0f0f0;
  --tg-border-2: #2c2c2c;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
    01. Theme Default CSS
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
  background-color: var(--tg-common-color-gray);
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-primary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-bold);
  line-height: 1.2;
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap,
.slick-dots {
  margin: 0px;
  padding: 0px;
}

.list-wrap li,
.slick-dots li {
  list-style: none;
}

.tgcommon__hover a {
  position: relative;
  display: inline;
  background-image: linear-gradient(
      var(--tg-heading-color),
      var(--tg-heading-color)
    ),
    linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.tgcommon__hover a:hover {
  color: inherit;
  background-size: 0 1px, 100% 1px;
}

.tgImage__hover {
  overflow: hidden;
}

.tgImage__hover a {
  display: block;
}

.tgImage__hover a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.tgImage__hover img {
  display: block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--tg-common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--tg-heading-color);
  cursor: pointer;
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
}

.slick-slide:focus-visible {
  outline: none;
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
*::-moz-placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

.row-gutters-40 {
  --bs-gutter-x: 40px;
}

@media (max-width: 991.98px) {
  .row-gutters-40 {
    --bs-gutter-x: 30px;
  }
}

.custom-container {
  max-width: 1330px;
}

@media (max-width: 1800px) {
  .custom-container {
    max-width: 1530px;
  }
}

@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}

@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

@media (max-width: 1500px) {
  .container {
    max-width: 1260px;
  }
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

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

/*=============================
	1. Button style
===============================*/
.btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  color: var(--tg-common-color-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 35px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--tg-theme-secondary);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}

.btn > .btn-text {
  display: block;
  line-height: 1;
}

.btn i {
  margin-left: 12px;
}

.btn:hover {
  color: var(--tg-common-color-white);
}

.btn:hover::before {
  top: -40%;
}

.border-btn {
  border: 2px solid #e9e9e9;
  padding: 18px 30px;
}

@media (max-width: 767.98px) {
  .border-btn {
    padding: 16px 25px;
  }
}

.border-btn::before {
  display: none;
}

.border-btn:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes lineMove {
  from {
    background-position: left;
  }

  to {
    background-position: right;
  }
}

@keyframes lineMove {
  from {
    background-position: left;
  }

  to {
    background-position: right;
  }
}

/*=============================
    00. Preloader
===============================*/
#preloader {
  background: var(--tg-common-color-white);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 99;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.object {
  width: 20px;
  height: 20px;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  background: var(--tg-theme-primary);
}

#object_one {
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}

#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes object_one {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_one {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_two {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_two {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_three {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_three {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-common-color-gray);
}

.white-bg {
  background: var(--tg-common-color-white);
}

.black-bg {
  background: var(--tg-common-color-black);
}

/*=============================
    00. OffCanvas Menu
===============================*/
.offCanvas__wrap {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 395px;
  padding: 80px 60px 75px;
  transform: translateX(-100%);
  height: 100%;
  display: block;
  background-color: var(--tg-common-color-white);
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
}

.offCanvas__wrap::-webkit-scrollbar {
  width: 0px;
}

@media (max-width: 1500px) {
  .offCanvas__wrap {
    width: 340px;
    padding: 50px 35px 45px;
  }
}

@media (max-width: 767.98px) {
  .offCanvas__wrap {
    width: 320px;
    padding: 50px 25px 40px;
  }
}

.offCanvas__body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offCanvas__toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-theme-primary);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offCanvas__toggle:hover {
  background: var(--tg-theme-secondary);
}

@media (max-width: 1500px) {
  .offCanvas__toggle {
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.offCanvas__content p {
  margin: 0 0;
}

.offCanvas__logo {
  margin: 0 0 25px;
}

.offCanvas__instagram {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px 0;
  margin-left: -8.5px;
  margin-right: -8.5px;
  margin-top: 55px;
}

.offCanvas__instagram li {
  width: 33.333%;
  flex: 0 0 33.333%;
  padding-left: 8.5px;
  padding-right: 8.5px;
}

.offCanvas__instagram li a {
  display: block;
}

.offCanvas__instagram li a img {
  height: 70px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .offCanvas__instagram {
    margin-top: 35px;
  }
}

.offCanvas__contact {
  margin: auto 0 0;
}

@media (max-width: 1500px) {
  .offCanvas__contact {
    margin: 20px 0 0;
  }
}

.offCanvas__contact .title {
  margin: 0 0 28px;
  font-size: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 1500px) {
  .offCanvas__contact .title {
    margin: 0 0 20px;
    font-size: 22px;
  }
}

.offCanvas__contact-list {
  margin: 0 0 73px;
}

@media (max-width: 1500px) {
  .offCanvas__contact-list {
    margin: 0 0 30px;
  }
}

.offCanvas__contact-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 0 20px;
  color: var(--tg-common-color-black);
  margin: 0 0 8px;
}

.offCanvas__contact-list li i {
  color: #c0bfbf;
  line-height: 1;
  width: 16px;
  flex: 0 0 auto;
}

.offCanvas__contact-list li a {
  color: var(--tg-common-color-black);
}

.offCanvas__contact-list li a:hover {
  color: var(--tg-theme-primary);
}

.offCanvas__social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.offCanvas__social li {
  line-height: 1;
}

.offCanvas__social li a {
  display: block;
  font-size: 18px;
  color: var(--tg-common-color-black);
}

.offCanvas__social li a:hover {
  color: var(--tg-theme-primary);
}

.offCanvas__overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
}

.offCanvas__menu-visible .offCanvas__overlay {
  opacity: 0.6;
  visibility: visible;
}

.offCanvas__menu-visible .offCanvas__wrap {
  transform: translateX(0);
}

.offCanvas__menu-wrapper {
  margin: 50px 0 50px;
}

@media (max-width: 767.98px) {
  .offCanvas__menu-wrapper {
    margin: 40px 0 40px;
  }
}

.offCanvas__menu-wrapper ul {
  margin: 0;
  padding: 0;
}

.offCanvas__menu-wrapper .navigation li {
  display: block;
  list-style: none;
  position: relative;
}

.offCanvas__menu-wrapper .navigation li.menu-item-has-children .sub-menu {
  display: none;
}

.offCanvas__menu-wrapper .navigation li .dropdown-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px;
  cursor: pointer;
}

.offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus {
  color: var(--tg-theme-primary);
}

.offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus.fa-plus {
  color: currentColor;
}

.offCanvas__menu-wrapper .navigation li > a {
  position: relative;
  display: block;
  line-height: 1.35;
  padding: 10px 40px 10px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}

.offCanvas__menu-wrapper .navigation li.active > a {
  color: var(--tg-theme-primary);
}

.offCanvas__menu-wrapper .navigation > li .sub-menu {
  margin-left: 20px;
}

.offCanvas__menu-wrapper .navigation > li .sub-menu li a {
  font-size: 16px;
  padding: 8px 40px 8px 0;
}

/*=============================
    00. Breadcrumb
===============================*/
.breadcrumb {
  gap: 5px 13px;
  margin: 0 0;
}

.breadcrumb-area {
  margin: -1px 0 0;
}

.breadcrumb-content {
  background: var(--tg-common-color-white);
  padding: 24px 30px;
}

@media (max-width: 767.98px) {
  .breadcrumb-content {
    padding: 24px 25px;
  }
}

.breadcrumb-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 13px;
  padding: 0 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.breadcrumb-item + .breadcrumb-item {
  padding: 0 0;
}

.breadcrumb-item::before {
  display: none;
}

.breadcrumb-item::after {
  content: "\f105";
  display: block;
  font-family: var(--tg-icon-font-family);
  color: var(--tg-theme-primary);
  opacity: 0.4;
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item.active {
  color: var(--tg-theme-primary);
}

.breadcrumb-item a {
  display: block;
  color: var(--tg-heading-color);
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 0;
  z-index: 99;
  color: var(--tg-common-color-white);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}

.scroll__top.open {
  bottom: 30px;
}

@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

.scroll__top:hover {
  background: var(--tg-theme-secondary);
}

@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}

@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
  }
}

/*=============================
    00. Section Title
===============================*/
.section__title-wrap {
  overflow: hidden;
}

.section__title-wrap::after {
  content: "";
  display: block;
  background-image: url(../img/bg/section_line.png);
  background-repeat: repeat;
  background-size: auto 100%;
  width: 100%;
  height: 7px;
  margin-top: 20px;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-animation-name: lineMove;
  animation-name: lineMove;
}

.section__sub-title {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 3px;
  color: var(--tg-theme-primary);
}

.section__main-title {
  margin: 0 0;
  font-size: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 767.98px) {
  .section__read-more {
    margin-top: 8px;
  }
}

.section__read-more a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  gap: 8px;
  letter-spacing: -0.5px;
}

.section__read-more a:hover {
  color: var(--tg-theme-primary);
}

.section__hover-line:hover .section__title-wrap::after {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.section__title-white .section__sub-title {
  color: #999999;
}

.section__title-white .section__main-title {
  color: var(--tg-common-color-white);
}

.section__title-white .section__read-more a {
  color: var(--tg-common-color-white);
}

.section__title-white .section__read-more a:hover {
  color: var(--tg-theme-primary);
}

.section__title-white::after {
  opacity: 0.2;
}

/*=============================
	02. Header
===============================*/
.header__top {
  padding: 40px 0 23px;
}

@media (max-width: 1199.98px) {
  .header__top {
    padding: 25px 0 25px;
  }
}

.header__top-search {
  max-width: 260px;
}

@media (max-width: 991.98px) {
  .header__top-search {
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .header__top-search {
    max-width: 100%;
    width: 100%;
  }
}

.header__top-search form {
  position: relative;
}

.header__top-search form::before {
  content: "\f002";
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--tg-icon-font-family);
  font-size: 14px;
  color: var(--tg-heading-color);
  font-weight: 400;
  line-height: 1;
}

.header__top-search form input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 20px 10px 38px;
  font-size: 14px;
  height: 44px;
}

.header__top-search form input::placeholder {
  font-size: 14px;
  color: #c7c7c7;
}

.header__top-right ul.list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .header__top-right ul.list-wrap {
    justify-content: flex-end;
  }
}

.header__top-right .btn {
  padding: 15px 20px;
}

@media (max-width: 991.98px) {
  .header__top-right .lang {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .header__top-right .lang {
    display: block;
  }
}

.header__top-right .lang .dropdown-toggle {
  display: block;
  border: none;
  background: var(--tg-common-color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  padding: 15px 20px;
  line-height: 1;
}

.header__top-right .lang .dropdown-toggle::after {
  content: "\f107";
  margin: 0 0;
  vertical-align: middle;
  border: none;
  font-family: var(--tg-icon-font-family);
  font-weight: var(--tg-fw-regular);
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header__top-right .lang .dropdown-toggle.show::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header__top-right .lang .dropdown-menu {
  min-width: 100%;
  width: 100%;
  border: none;
}

.header__top-right .lang .dropdown-menu li a {
  display: block;
  font-weight: var(--tg-fw-bold);
  font-size: 14px;
  text-transform: uppercase;
}

.header__top-right .lang .dropdown-menu li a.active,
.header__top-right .lang .dropdown-menu li a:active {
  background-color: var(--tg-theme-primary);
}

.header__top-bar {
  background: var(--tg-theme-secondary);
  padding: 9px 0;
}

.header__top-bar-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .header__top-bar-right {
    justify-content: center;
  }
}

.header__top-bar-right ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  gap: 0 15px;
  padding-right: 0;
  margin-right: 0;
}

@media (max-width: 1199.98px) {
  .header__top-bar-right ul {
    padding-right: 0;
    margin-right: 0;
  }
}

.header__top-bar-right ul::after {
  display: none;
}

.header__top-bar-right ul li {
  display: block;
}

.header__top-bar-right ul li a {
  display: block;
  color: var(--tg-common-color-white);
  font-size: 14px;
}

.header__top-bar-right ul li a:hover {
  color: var(--tg-theme-primary);
}

.header__top-bar-right .sign-in {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-common-color-white);
}

.header__top-bar-right .sign-in i {
  color: #565656;
  margin-right: 3px;
}

.header__top-bar-right .sign-in:hover {
  color: var(--tg-theme-primary);
}

.header__top-menu > ul.list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px 0;
}

.header__top-menu > ul.list-wrap .dropdown-menu {
  width: 6rem;
  background: var(--tg-theme-secondary);
  inset: 12px auto auto -15px !important;
  border-radius: 0;
}

.header__top-menu > ul.list-wrap .dropdown-menu li a {
  color: var(--tg-common-color-white);
}

.header__top-menu > ul.list-wrap .dropdown-menu li a.active,
.header__top-menu > ul.list-wrap .dropdown-menu li a:hover,
.header__top-menu > ul.list-wrap .dropdown-menu li a:focus,
.header__top-menu > ul.list-wrap .dropdown-menu li a:active {
  background-color: var(--tg-theme-primary);
}

.header__top-menu > ul.list-wrap .lang {
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .header__top-menu > ul.list-wrap .lang {
    padding-right: 25px;
    margin-right: 25px;
  }
}

.header__top-menu > ul.list-wrap .lang::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #272727;
}

.header__top-menu > ul.list-wrap .lang .dropdown-toggle {
  background: transparent;
  color: var(--tg-common-color-white);
  padding: 0 0;
  display: flex;
  align-items: center;
}

.header__top-menu > ul.list-wrap > li {
  margin-right: 40px;
}

@media (max-width: 1199.98px) {
  .header__top-menu > ul.list-wrap > li {
    margin-right: 30px;
  }
}

.header__top-menu > ul.list-wrap > li:last-child {
  margin-right: 0;
}

.header__top-menu > ul.list-wrap > li > a {
  display: block;
  color: var(--tg-common-color-white);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  text-transform: uppercase;
}

.header__top-menu > ul.list-wrap > li > a:hover {
  color: var(--tg-theme-primary);
}

.header__top-menu > ul.list-wrap > li.buy-theme a {
  color: var(--tg-body-color);
}

.header__top-menu > ul.list-wrap > li.buy-theme a span {
  color: var(--tg-theme-primary);
}

.header__top-menu > ul.list-wrap > li.buy-theme a:hover {
  color: var(--tg-theme-primary);
}

.offcanvas-toggle a {
  display: block;
  font-size: 26px;
  color: var(--tg-heading-color);
}

.offcanvas-toggle a:hover {
  color: var(--tg-theme-primary);
}

@media (max-width: 767.98px) {
  .offcanvas-toggle {
    display: none;
  }
}

.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}

@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}

.tg-header__area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
  margin-top: 1px;
}

@media (max-width: 991.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}

.tgmenu__wrap {
  border-top: 1px solid var(--tg-border-1);
  border-bottom: 1px solid var(--tg-border-1);
  padding: 0 20px;
}

@media (max-width: 991.98px) {
  .tgmenu__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 17px 0;
  }
}

.tgmenu__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
    flex-grow: 1;
  }
}

.tgmenu__navbar-wrap {
  display: flex;
  flex-grow: 1;
}

.tgmenu__navbar-wrap ul {
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 0;
}

.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}

.tgmenu__navbar-wrap ul li a {
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  text-transform: uppercase;
  color: var(--tg-heading-color);
  padding: 23px 28px;
  display: inline-flex;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-common-color-white);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}

.tgmenu__navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
  transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
  opacity: 0;
  visibility: hidden;
}

.tgmenu__navbar-wrap ul li .sub-menu li a {
  display: block;
  padding: 10px 15px 10px 25px;
  line-height: 1.4;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.tgmenu__navbar-wrap ul li .sub-menu li.active > a,
.tgmenu__navbar-wrap ul li .sub-menu li:hover > a {
  color: var(--tg-theme-primary);
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 6) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 7) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 8) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n + 9) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.tgmenu__navbar-wrap > ul > li.menu-item-has-children > a::after {
  content: "\f067";
  display: inline-block;
  font-weight: 600;
  font-family: var(--tg-icon-font-family);
  margin-left: 6px;
  font-size: 12px;
  color: #bbbbbb;
}

.tgmenu__navbar-wrap > ul > li.menu-item-has-children:hover > a::after {
  content: "\f068";
}

.tgmenu__navbar-wrap > ul > li.active a,
.tgmenu__navbar-wrap > ul > li.active a::after,
.tgmenu__navbar-wrap > ul > li:hover a,
.tgmenu__navbar-wrap > ul > li:hover a::after {
  color: var(--tg-theme-primary);
}

.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}

.tgmenu__action > ul {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.tgmenu__action > ul li {
  position: relative;
  margin-left: 15px;
}

.tgmenu__action > ul li:first-child {
  margin-left: 0;
}

.tgmenu__action > ul li a {
  color: var(--tg-heading-color);
  font-size: 18px;
  display: block;
  line-height: 1;
}

.tgmenu__action > ul li a:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__action > ul li.mode-switcher {
  margin-right: 25px;
}

@media (max-width: 767.98px) {
  .tgmenu__action > ul li.mode-switcher {
    margin-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgmenu__action > ul li.mode-switcher {
    margin-right: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgmenu__action > ul li.user {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .tgmenu__action > ul li.header-cart {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgmenu__action > ul li.header-cart {
    display: block;
  }
}

.tgmenu__action > ul .header-btn .btn {
  color: var(--tg-common-color-white);
  font-size: 14px;
  padding: 13px 22px;
}

@media (max-width: 1199.98px) {
  .tgmenu__action > ul .header-btn {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .tgmenu__action {
    margin-right: 40px;
  }
}

@media (max-width: 767.98px) {
  .tgmenu__action {
    margin-right: 25px;
  }
}

.switcher__tab {
  display: flex;
}

.switcher__btn {
  cursor: pointer;
  font-size: 18px;
}

.switcher__btn.light-mode {
  color: var(--tg-heading-color);
}

.switcher__btn.dark-mode {
  color: #e7e7e7;
}

.switcher__mode {
  height: 18px;
  width: 40px;
  display: block;
  position: relative;
  margin: 0 6px;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -o-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.switcher__mode::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  background-color: var(--tg-common-color-black);
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.switcher__mode.active::before {
  left: calc(100% - 15px);
}

.logo a {
  display: inline-block;
}

.logo a img {
  max-width: 109px;
}

.logo a.logo-light {
  display: none;
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-common-color-gray);
  -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}

.sticky-menu .tgmenu__wrap {
  border: none;
}

@media (max-width: 991.98px) {
  .sticky-menu .tgmenu__wrap {
    padding: 20px 0;
  }
}

#header-fixed-height.active-height {
  display: block;
  height: 62px;
}

@media (max-width: 991.98px) {
  #header-fixed-height.active-height {
    height: 68px;
  }
}

.header__style-two .header__top {
  padding: 40px 0;
}

@media (max-width: 1500px) {
  .header__style-two .header__top {
    padding: 25px 0;
  }
}

@media (max-width: 991.98px) {
  .header__style-two .header__top {
    padding: 20px 0;
  }
}

.header__style-two .footer__social ul li a {
  color: var(--tg-heading-color);
}

.header__style-two .footer__social ul li a:hover {
  color: var(--tg-theme-primary);
}

.header__style-two .footer__social ul li a i {
  color: #cdcdcd;
}

.header__style-two .tgmenu__wrap {
  padding: 0 0;
}

@media (max-width: 991.98px) {
  .header__style-two .tgmenu__wrap {
    padding: 17px 0;
  }
}

@media (max-width: 991.98px) {
  .header__style-two .sticky-menu .tgmenu__wrap {
    padding: 20px 0;
  }
}

.header__style-two .tgmenu__navbar-wrap > ul {
  margin: 0 auto 0 0;
}

.header__style-two .tgmenu__navbar-wrap > ul > li:first-child > a {
  padding-left: 0;
}

.header__style-two .tgmenu__action > ul li.header-search a i {
  width: 18px;
  text-align: center;
}

.header__style-two .header__top-search {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 260px;
  display: none;
  box-shadow: rgba(25, 25, 25, 0.04) 0px 10px 15px;
  z-index: 9;
}

.header__style-two .header__top-search input {
  padding: 13px 20px 13px 40px;
  height: 48px;
}

@media (max-width: 991.98px) {
  .header__style-two .footer__social ul {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .header__style-two .footer__social ul {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .header__style-two .tgmenu__action li.header-search {
    display: none;
  }
}

.header__instagram-item a {
  display: block;
  position: relative;
  z-index: 1;
}

.header__instagram-item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tg-theme-secondary);
  opacity: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header__instagram-item a:hover::after {
  opacity: 0.7;
}

.header__instagram-item img {
  height: 260px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .header__instagram-item img {
    height: 220px;
  }
}

@media (max-width: 991.98px) {
  .header__instagram-item img {
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .header__instagram-item img {
    height: 100px;
  }
}

.header__style-three {
  background: var(--tg-theme-secondary);
}

.header__style-three #header-fixed-height.active-height {
  height: 80px;
}

@media (max-width: 991.98px) {
  .header__style-three #header-fixed-height.active-height {
    height: 66px;
  }
}

.header__style-three .tgmenu__wrap {
  border: none;
}

.header__style-three .offcanvas-toggle a {
  color: var(--tg-common-color-white);
  opacity: 0.7;
}

.header__style-three .offcanvas-toggle a:hover {
  opacity: 1;
}

.header__style-three .tgmenu__navbar-wrap > ul {
  margin: 0 auto;
}

.header__style-three .tgmenu__navbar-wrap > ul > li a {
  color: var(--tg-common-color-white);
  padding: 33px 28px;
}

@media (max-width: 1199.98px) {
  .header__style-three .tgmenu__navbar-wrap > ul > li a {
    padding: 33px 20px;
  }
}

.header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
  padding: 33px 28px;
}

@media (max-width: 1199.98px) {
  .header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
    padding: 33px 20px;
  }
}

.header__style-three .tgmenu__action > ul li a {
  color: var(--tg-common-color-white);
}

.header__style-three .tgmenu__action > ul li a:hover {
  color: var(--tg-theme-primary);
}

@media (max-width: 1199.98px) {
  .header__style-three .tgmenu__action > ul li.mode-switcher {
    margin-right: 5px;
  }
}

@media (max-width: 991.98px) {
  .header__style-three .tgmenu__action > ul li.mode-switcher {
    margin-right: 20px;
  }
}

@media (max-width: 767.98px) {
  .header__style-three .tgmenu__action > ul li.mode-switcher {
    margin-right: 0;
  }
}

.header__style-three.header__style-two .header__top-search {
  top: calc(100% + 30px);
}

@media (max-width: 991.98px) {
  .header__style-three.header__style-two .header__top-search {
    top: calc(100% + 24px);
  }
}

.header__style-three .switcher__btn.light-mode {
  color: var(--tg-common-color-white);
}

.header__style-three .switcher__btn.dark-mode {
  color: #363636;
}

.header__style-three .sticky-menu {
  background: var(--tg-theme-secondary);
}

@media (max-width: 991.98px) {
  .header__style-three .sticky-menu .header__top-search {
    top: calc(100% + 26px);
  }
}

.header__style-four .header__top {
  padding: 30px 0;
}

@media (max-width: 1500px) {
  .header__style-four .header__top {
    padding: 20px 0;
  }
}

@media (max-width: 1500px) {
  .header__style-four .header__banner-add img {
    max-height: 65px;
  }
}

.header__style-five .tg-header__area {
  background-image: url(../img/bg/header_bg.jpg);
  background-position: center;
  background-size: cover;
}

.header__style-five .tg-header__area .mobile-nav-toggler {
  color: var(--tg-theme-secondary);
}

.header__style-five .offcanvas-toggle a {
  color: var(--tg-theme-secondary);
}

.header__style-five .tgmenu__navbar-wrap > ul > li > a {
  color: var(--tg-theme-secondary);
}

.header__style-five .tgmenu__navbar-wrap > ul > li > a::after {
  color: var(--tg-theme-secondary);
}

.header__style-five .tgmenu__navbar-wrap > ul > li:hover > a,
.header__style-five .tgmenu__navbar-wrap > ul > li.active > a {
  color: var(--tg-theme-primary);
}

.header__style-five .tgmenu__navbar-wrap > ul > li:hover > a::after,
.header__style-five .tgmenu__navbar-wrap > ul > li.active > a::after {
  color: var(--tg-theme-primary);
}

.header__style-five .tgmenu__action > ul li a {
  color: var(--tg-theme-secondary);
}

.header__style-six .tg-header__area {
  background-color: #ebebeb;
}

.header__style-six .tg-header__area.sticky-menu {
  background-color: var(--tg-common-color-gray);
}

.header__style-six .tgmenu__wrap {
  border: none;
}

.header__style-six .switcher__btn.dark-mode {
  color: #d6d6d6;
}

.header__style-seven .header__top {
  padding: 40px 0;
}

@media (max-width: 1199.98px) {
  .header__style-seven .header__top {
    padding: 25px 0;
  }
}

.header__style-seven .header__top-search {
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .header__style-seven .header__top-search {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .header__style-seven .offcanvas-toggle {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .header__style-seven .header__top-search {
    margin: 15px auto 0;
  }
}

/*=============================
	03. Mobile Menu
===============================*/
.tgmobile__search {
  padding: 0 20px 25px 25px;
}

.tgmobile__search form {
  position: relative;
}

.tgmobile__search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 14px;
  height: 45px;
  background: var(--tg-common-color-gray);
}

.tgmobile__search input::placeholder {
  font-size: 14px;
  color: #c7c7c7;
}

.tgmobile__search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--tg-heading-color);
}

.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}

.tgmobile__menu .navbar-collapse {
  display: block !important;
}

.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.tgmobile__menu .nav-logo img {
  width: 109px;
}

.tgmobile__menu .nav-logo .logo-light {
  display: none;
}

.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}

.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation li.current > a::before {
  height: 100%;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--tg-heading-color);
  background: #efefef;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-common-color-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn
  .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--tg-common-color-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn.open
  .plus-line {
  background-color: var(--tg-common-color-white);
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn.open
  .plus-line::after {
  display: none;
}

.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}

.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}

.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}

.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}

.tgmobile__menu .navigation li > ul {
  display: none;
}

.tgmobile__menu .navigation li > ul > li > ul {
  display: none;
}

.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}

.tgmobile__menu .navigation ul li a {
  display: block;
}

.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 20px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.tgmobile__menu .social-links ul {
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}

.tgmobile__menu .social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #292b37;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-common-color-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}

.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-common-color-white);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

/*=============================
    04. Banner
===============================*/
.tgbanner__area {
  padding: 80px 0 0;
}

.tgbanner__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 70% 1fr;
  column-gap: 40px;
}

@media (max-width: 1199.98px) {
  .tgbanner__grid {
    grid-template-columns: 64% 1fr;
  }
}

@media (max-width: 991.98px) {
  .tgbanner__grid {
    grid-template-columns: auto;
  }
}

.tgbanner__post {
  margin: 0 0 50px;
}

.tgbanner__post.big-post .tgbanner__content {
  background-image: url(../img/bg/content_pattern.png);
  margin: -50px 0 0 60px;
  background-color: var(--tg-common-color-white);
  padding: 35px 40px 35px;
  max-width: 620px;
  position: relative;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .tgbanner__post.big-post .tgbanner__content {
    max-width: 100%;
    margin: -50px 40px 0 40px;
    padding: 30px 30px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__post.big-post .tgbanner__content {
    margin: 0 0;
    padding: 30px 25px;
  }
}

.tgbanner__post.big-post img {
  height: 570px;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .tgbanner__post.big-post img {
    height: 390px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__post.big-post img {
    height: 200px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__post.big-post img {
    height: 280px;
  }
}

.tgbanner__post.small-post .tgbanner__thumb {
  margin: 0 0 30px;
}

@media (max-width: 1199.98px) {
  .tgbanner__post.small-post .tgbanner__thumb {
    margin: 0 0 20px;
  }
}

.tgbanner__post.small-post .tgbanner__content {
  margin: 0 0;
  position: relative;
}

.tgbanner__post.small-post .tgbanner__content .title {
  font-size: 20px;
  line-height: 1.4;
}

.tgbanner__post.small-post .tgbanner__content-meta {
  margin: 0 0 7px;
}

.tgbanner__post.small-post img {
  height: 180px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .tgbanner__post.small-post img {
    height: 200px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__post.small-post img {
    height: 280px;
  }
}

.tgbanner__thumb img {
  width: 100%;
}

.tgbanner__content .title {
  margin: 0 0 0;
  font-size: 30px;
  letter-spacing: -0.5px;
}

@media (max-width: 1199.98px) {
  .tgbanner__content .title {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__content .title {
    font-size: 20px;
    line-height: 1.35;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__content .title {
    font-size: 24px;
    line-height: 1.3;
  }
}

.tgbanner__content-meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 11px;
}

.tgbanner__content-meta li {
  margin-right: 14px;
  padding-right: 14px;
  position: relative;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  text-transform: uppercase;
}

.tgbanner__content-meta li .by {
  color: #d8d8d8;
}

.tgbanner__content-meta li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.tgbanner__content-meta li:last-child::after {
  display: none;
}

.tgbanner__content-meta li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-theme-primary);
  opacity: 0.2;
}

.tgbanner__content-meta li:not(.category) a {
  color: var(--tg-heading-color);
}

.tgbanner__content-meta li:not(.category) a:hover {
  color: var(--tg-theme-primary);
}

.tgbanner__side-post {
  margin: 0 0 50px;
}

@media (max-width: 991.98px) {
  .tgbanner__side-post {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__side-post {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.tgbanner__side-post .small-post {
  margin: 0 0;
}

.tgbanner__side-post .small-post::after {
  content: "";
  display: block;
  background-image: url(../img/bg/line1.png);
  width: 100%;
  height: 8px;
  margin: 35px 0 40px;
}

@media (max-width: 1199.98px) {
  .tgbanner__side-post .small-post::after {
    margin: 25px 0 30px;
  }
}

@media (max-width: 991.98px) {
  .tgbanner__side-post .small-post::after {
    margin: 25px 0 0;
  }
}

.tgbanner__side-post .small-post:last-child::after {
  display: none;
}

@media (max-width: 991.98px) {
  .tgbanner__side-post .small-post:last-child::after {
    display: block;
  }
}

.tgbanner__area-three .trending__post {
  margin: 0 0 40px;
}

.tgbanner__area-three .trending__post::after {
  content: "";
  display: block;
  background-image: url(../img/bg/line4.png);
  width: 100%;
  height: 8px;
  margin: 35px 0 0;
}

@media (max-width: 1199.98px) {
  .tgbanner__area-three .trending__post-content .title {
    font-size: 20px;
  }
}

.tgbanner__big-post {
  margin: 0 30px 40px;
}

@media (max-width: 1199.98px) {
  .tgbanner__big-post {
    margin: 0 30px 60px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__big-post {
    margin: 0 0 60px;
  }
}

.tgbanner__big-post-thumb {
  margin: 0 0 35px;
}

@media (max-width: 767.98px) {
  .tgbanner__big-post-thumb {
    margin: 0 0 25px;
  }
}

.tgbanner__big-post-thumb img {
  height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .tgbanner__big-post-thumb img {
    height: 320px;
  }
}

@media (max-width: 991.98px) {
  .tgbanner__big-post-thumb img {
    height: 360px;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__big-post-thumb img {
    height: 220px;
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__big-post-thumb img {
    height: 300px;
  }
}

.tgbanner__big-post .tgbanner__content-meta {
  justify-content: center;
}

.tgbanner__big-post-content .title {
  font-size: 30px;
  margin: 0 0 0;
  line-height: 1.3;
  letter-spacing: -0.7px;
}

@media (max-width: 767.98px) {
  .tgbanner__big-post-content .title {
    font-size: 22px;
    letter-spacing: -0.4px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__big-post-content .title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}

.tgbanner__big-post-content .read-more {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ececec;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  font-size: 14px;
  padding: 14px 25px;
  margin: 38px 0 0;
}

.tgbanner__big-post-content .read-more:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

@media (max-width: 767.98px) {
  .tgbanner__big-post-content .read-more {
    margin: 30px 0 0;
  }
}

.tgbanner__trending-news {
  margin: 0 0 40px;
}

@media (max-width: 991.98px) {
  .tgbanner__trending-news {
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__trending-news {
    padding-left: 0;
  }
}

.tgbanner__trending-title {
  font-size: 24px;
  margin: 0 0 0;
  letter-spacing: -0.7px;
}

.tgbanner__trending-title::after {
  content: "";
  display: block;
  background-image: url(../img/bg/line4.png);
  width: 100%;
  height: 8px;
  margin: 18px 0 25px;
}

.tgbanner__trending-post-list > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0 20px;
  position: relative;
  padding: 0 0 35px;
  margin: 0 0 25px;
}

.tgbanner__trending-post-list > li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/bg/line4.png);
  width: 100%;
  height: 8px;
}

.tgbanner__trending-post-list > li:last-child {
  padding: 0 0;
  margin: 0 0;
}

.tgbanner__trending-post-list > li:last-child::after {
  display: none;
}

.tgbanner__trending-post-list .post-count {
  font-size: 40px;
  font-weight: var(--tg-fw-bold);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e0e0e0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  display: block;
  opacity: 0.9;
}

.tgbanner__trending-post-list .tgbanner__content-meta {
  margin: 0 0 5px;
}

.tgbanner__trending-post-content .title {
  font-size: 20px;
  margin: 0 0 0;
  line-height: 1.35;
}

@media (max-width: 1500px) {
  .tgbanner__trending-post-content .title {
    font-size: 18px;
  }
}

@media (max-width: 1199.98px) {
  .tgbanner__trending-post-content .title {
    font-size: 20px;
  }
}

.slider__area {
  padding: 80px 0;
}

@media (max-width: 991.98px) {
  .slider__area .tgbanner__content-meta {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .slider__content {
    text-align: center;
  }
}

.slider__content .title {
  font-size: 45px;
  margin: 0 0 40px;
}

@media (max-width: 1199.98px) {
  .slider__content .title {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .slider__content .title {
    font-size: 30px;
    margin: 0 0 30px;
  }
}

.slider__content .btn {
  background: var(--tg-common-color-white);
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tg-heading-color);
}

.slider__content .btn::before {
  background: var(--tg-theme-primary);
}

.slider__content .btn:hover {
  color: var(--tg-common-color-white);
}

.slider__img-wrap {
  position: relative;
  max-width: 660px;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .slider__img-wrap {
    max-width: 540px;
    margin: 50px auto 0;
  }
}

.slider__img-wrap::before {
  content: "";
  position: absolute;
  left: -65px;
  top: 60px;
  width: 127px;
  height: 127px;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .slider__img-wrap::before {
    left: -65px;
    top: 40px;
    width: 110px;
    height: 110px;
  }
}

.slider__img-wrap .main-img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .slider__img-wrap .main-img {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .slider__img-wrap .main-img {
    height: 300px;
  }
}

.slider-active {
  position: relative;
}

.slider-active::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -40px;
  background-image: url(../img/others/banner_pattern.png);
  background-repeat: no-repeat;
  width: 453px;
  height: 291px;
  z-index: -1;
}

@media (max-width: 1500px) {
  .slider-active::after {
    right: -65px;
    bottom: -40px;
    width: 298px;
    height: 170px;
  }
}

@media (max-width: 1199.98px) {
  .slider-active::after {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .slider-active::after {
    display: none;
  }
}

.slider-active .slick-dots {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: -20px;
  gap: 5px;
}

@media (max-width: 991.98px) {
  .slider-active .slick-dots {
    justify-content: center;
    margin: 40px 0 0;
  }
}

.slider-active .slick-dots li {
  line-height: 1;
}

.slider-active .slick-dots li button {
  border: 2px solid transparent;
  background: transparent;
  line-height: 1;
  display: block;
  text-indent: -99999px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

.slider-active .slick-dots li button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #d5d5d5;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.slider-active .slick-dots li.slick-active button {
  border-color: #d9d9d9;
}

.slider-active .slick-dots li.slick-active button::after {
  background: var(--tg-theme-secondary);
}

.slider__style-two {
  background-position: center;
  background-size: cover;
}

.slider__style-two .slider__item {
  background-color: var(--tg-common-color-white);
}

.slider__style-two .slider__content {
  padding: 80px 60px 80px 80px;
}

@media (max-width: 1500px) {
  .slider__style-two .slider__content {
    padding: 70px 60px;
  }
}

@media (max-width: 1199.98px) {
  .slider__style-two .slider__content {
    padding: 35px 40px;
  }
}

@media (max-width: 991.98px) {
  .slider__style-two .slider__content {
    padding: 60px 60px;
  }
}

@media (max-width: 767.98px) {
  .slider__style-two .slider__content {
    padding: 40px 25px;
  }
}

@media (max-width: 767.98px) {
  .slider__style-two .slider__content {
    padding: 60px 35px;
  }
}

.slider__style-two .slider__content .title {
  font-size: 50px;
  margin: 0 0 40px;
  letter-spacing: -2px;
}

@media (max-width: 1500px) {
  .slider__style-two .slider__content .title {
    font-size: 46px;
    margin: 0 0 35px;
  }
}

@media (max-width: 1199.98px) {
  .slider__style-two .slider__content .title {
    font-size: 36px;
    margin: 0 0 30px;
    letter-spacing: -1px;
  }
}

@media (max-width: 767.98px) {
  .slider__style-two .slider__content .title {
    font-size: 28px;
    margin: 0 0 30px;
    letter-spacing: -0.5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__style-two .slider__content .title {
    font-size: 40px;
    margin: 0 0 30px;
    letter-spacing: -0.5px;
  }
}

.slider__style-two .slider__content .btn:hover {
  background: var(--tg-theme-primary);
}

@media (max-width: 991.98px) {
  .slider__style-two .slider__img-wrap {
    text-align: center;
    margin: 0 auto 0;
  }
}

.slider__style-two .slider__img-wrap::before {
  display: none;
}

.slider__style-two .slider__img-wrap .main-img {
  height: 600px;
  margin-left: auto;
}

@media (max-width: 1500px) {
  .slider__style-two .slider__img-wrap .main-img {
    height: 500px;
  }
}

@media (max-width: 1199.98px) {
  .slider__style-two .slider__img-wrap .main-img {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .slider__style-two .slider__img-wrap .main-img {
    height: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .slider__style-two .slider__img-wrap .main-img {
    height: auto;
    margin: 0 auto;
  }
}

.slider__style-two .slider-active::after {
  display: none;
}

.slider__style-two .slider-active .slick-dots {
  position: absolute;
  left: 80px;
  bottom: 50px;
  margin: 0 0;
}

@media (max-width: 1500px) {
  .slider__style-two .slider-active .slick-dots {
    left: 60px;
    bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .slider__style-two .slider-active .slick-dots {
    left: 0;
    bottom: 30px;
    margin: 0 auto;
    right: 0;
  }
}

.slider__style-two .slider-active .slick-dots li.slick-active button::after {
  background: var(--tg-theme-primary);
}

.tgslider__area-four {
  overflow: hidden;
}

.tgslider__top {
  position: relative;
}

.tgslider__top::after {
  content: "";
  position: relative;
  display: block;
  background-image: url(../img/bg/sliderTreading_line.png);
  width: 100%;
  height: 8px;
  margin: 20px 0 30px;
}

.tgslider__trending-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767.98px) {
  .tgslider__trending-post {
    overflow: hidden;
    display: block !important;
  }
}

.tgslider__trending-post > .title {
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0 0;
}

@media (max-width: 767.98px) {
  .tgslider__trending-post > .title {
    display: none;
  }
}

.tgslider__trending-item {
  display: flex !important;
  align-items: center;
}

.tgslider__trending-thumb {
  max-width: 50px;
  flex: 0 0 auto;
  margin-right: 13px;
}

.tgslider__trending-thumb img {
  height: 50px;
  object-fit: cover;
  object-position: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.tgslider__trending-content {
  flex-grow: 1;
}

@media (max-width: 767.98px) {
  .tgslider__trending-content {
    overflow: hidden;
  }
}

.tgslider__trending-content .title {
  font-size: 16px;
  margin: 0 0;
}

@media (max-width: 767.98px) {
  .tgslider__trending-content .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 1500px) {
  .tgslider__wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 1199.98px) {
  .tgslider__wrapper {
    max-width: 100%;
  }
}

.tgslider__active {
  --bs-gutter-x: 40px;
}

@media (max-width: 1199.98px) {
  .tgslider__active {
    --bs-gutter-x: 30px;
  }
}

.tgslider__active [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1199.98px) {
  .tgslider__active [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tgslider__active .slick-list {
  overflow: visible;
}

@media (max-width: 1199.98px) {
  .tgslider__active .slick-list {
    overflow: hidden;
  }
}

.tgslider__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.tgslider__nav button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #eaeaea;
  font-size: 18px;
  flex: 0 0 auto;
  color: var(--tg-heading-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.tgslider__nav button:hover {
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.tgslider__thumb img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .tgslider__thumb img {
    height: auto;
  }
}

.tgslider__content {
  margin: -120px 155px 0;
  text-align: center;
  background: var(--tg-common-color-white);
  padding: 45px 100px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .tgslider__content {
    margin: -90px 100px 0;
  }
}

@media (max-width: 991.98px) {
  .tgslider__content {
    margin: -80px 40px 0;
    padding: 40px 50px;
  }
}

@media (max-width: 767.98px) {
  .tgslider__content {
    margin: 0 0;
    padding: 30px 25px;
    animation: none !important;
    transform: translate(0) !important;
    opacity: 1 !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgslider__content {
    padding: 45px 40px;
  }
}

.tgslider__content .tgbanner__content-meta {
  justify-content: center;
}

.tgslider__content .title {
  font-size: 48px;
  letter-spacing: -2px;
}

@media (max-width: 1500px) {
  .tgslider__content .title {
    font-size: 36px;
    letter-spacing: -1px;
    margin: 0 0;
  }
}

@media (max-width: 991.98px) {
  .tgslider__content .title {
    font-size: 30px;
    letter-spacing: -0.6px;
    margin: 0 0;
  }
}

@media (max-width: 767.98px) {
  .tgslider__content .title {
    font-size: 24px;
    letter-spacing: -0.4px;
    margin: 0 0;
    line-height: 1.3;
  }
}

.tgbanner__five-item {
  position: relative;
  margin: 0 0 30px;
}

.tgbanner__five-item:hover .tgImage__hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.tgbanner__five-thumb {
  position: relative;
}

.tgbanner__five-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.902;
  pointer-events: none;
  z-index: 1;
}

.tgbanner__five-thumb .tags {
  position: absolute;
  left: 50px;
  top: 0;
  padding: 8px 12px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  font-size: 14px;
  line-height: 1;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  z-index: 1;
}

@media (max-width: 767.98px) {
  .tgbanner__five-thumb .tags {
    left: 30px;
  }
}

.tgbanner__five-thumb img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-thumb img {
    height: 540px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__five-thumb img {
    height: 300px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__five-thumb img {
    height: 350px;
  }
}

.tgbanner__five-content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .tgbanner__five-content {
    left: 25px;
    bottom: 30px;
    right: 25px;
  }
}

.tgbanner__five-content .tgbanner__content-meta li {
  color: var(--tg-common-color-white);
}

.tgbanner__five-content .tgbanner__content-meta li::after {
  background: var(--tg-common-color-white);
  opacity: 0.2;
}

.tgbanner__five-content .tgbanner__content-meta li a {
  color: var(--tg-common-color-white);
}

.tgbanner__five-content .title {
  color: var(--tg-common-color-white);
  font-size: 40px;
  letter-spacing: -1px;
  margin: 0 0;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-content .title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__five-content .title {
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__five-content .title {
    font-size: 24px;
  }
}

.tgbanner__five-content .title a {
  background-image: linear-gradient(
      var(--tg-common-color-white),
      var(--tg-common-color-white)
    ),
    linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
}

.tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
  left: 40px;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
    left: 30px;
  }
}

.tgbanner__five-item.small-post .tgbanner__five-thumb img {
  height: 300px;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-thumb img {
    height: 255px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-thumb img {
    height: 300px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__five-item.small-post .tgbanner__five-thumb img {
    height: 350px;
  }
}

.tgbanner__five-item.small-post .tgbanner__five-content {
  left: 40px;
  right: 40px;
  bottom: 40px;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-content {
    left: 25px;
    right: 20px;
    bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-content {
    left: 25px;
    right: 25px;
    bottom: 30px;
  }
}

.tgbanner__five-item.small-post .tgbanner__five-content .title {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 1199.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-content .title {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__five-item.small-post .tgbanner__five-content .title {
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgbanner__five-item.small-post .tgbanner__five-content .title {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .tgbanner__area-five .gx-30 {
    gap: 0 30px;
  }
}

@media (max-width: 767.98px) {
  .tgbanner__area-five .gx-30 > * {
    flex: 0 0 auto;
    width: 100%;
  }
}

.slider__marquee {
  margin: 50px 0 0;
}

.slider__marquee::before,
.slider__marquee::after {
  content: "";
  display: block;
  background-image: url(../img/bg/marquee_line.png);
  width: 100%;
  height: 8px;
  background-position: center;
  background-repeat: repeat-x;
  margin: 0 0 17px;
}

.slider__marquee::after {
  margin: 17px 0 0;
}

.marquee_mode {
  overflow: hidden;
  position: relative;
}

.marquee_mode .js-marquee {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.marquee_mode .js-marquee .item {
  text-transform: uppercase;
  margin: 0 20px 0;
  font-size: 16px;
}

.marquee_mode .js-marquee .item span {
  color: var(--tg-theme-primary);
  margin-left: 3px;
}

.marquee_mode .js-marquee .item.minus span {
  color: var(--tg-common-color-green);
}

/*=============================
    05. Trending Post
===============================*/
.trending__post-thumb {
  margin: 0 0 25px;
  position: relative;
}

.trending__post-thumb a {
  display: block;
  position: relative;
}

.trending__post-thumb a:not(.addWish):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tg-theme-secondary);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 1;
  opacity: 0;
}

.trending__post-thumb a.addWish {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  line-height: 1;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
}

.trending__post-thumb img {
  display: block;
  height: 200px;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 767.98px) {
  .trending__post-thumb img {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .trending__post-thumb img {
    height: 280px;
  }
}

.trending__post-thumb .is_trend {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
  z-index: 3;
}

.trending__post-content .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0;
}

@media (max-width: 1500px) {
  .trending__post-content .title {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .trending__post-content .title {
    font-size: 20px;
  }
}

.trending__post-content .post__activity {
  margin: 20px 0 0;
}

.trending__post .tgbanner__content-meta {
  margin: 0 0 6px;
}

.trending__post:hover .trending__post-thumb a::before {
  opacity: 0.5;
}

.trending__post:hover .trending__post-thumb a.addWish {
  opacity: 1;
}

.post__activity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.post__activity li {
  line-height: 1;
  font-size: 14px;
}

.post__activity li i {
  color: #b0b0b0;
  margin-right: 3px;
}

.post__activity li a {
  color: var(--tg-body-color);
  display: block;
}

.post__activity li a:hover {
  color: var(--tg-theme-primary);
}

.dark-post-slider {
  margin: 0 -105px 0 -45px;
}

@media (max-width: 1500px) {
  .dark-post-slider {
    margin: 0 -150px 0 -100px;
  }
}

@media (max-width: 991.98px) {
  .dark-post-slider {
    margin: 0 auto;
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dark-post-slider {
    max-width: 540px;
  }
}

.dark-post-slider .tgbanner__content-meta li:not(.category) a,
.dark-post-slider .trending__post-content .title {
  color: var(--tg-common-color-white);
}

.dark-post-slider .trending__post-content .title a {
  background-image: linear-gradient(
      var(--tg-common-color-white),
      var(--tg-common-color-white)
    ),
    linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
}

.dark-post-slider .tgbanner__content-meta li .by {
  color: #4e4e4e;
}

.dark-post-slider .post__activity li,
.dark-post-slider .post__activity li a {
  color: #aeaeae;
}

.dark-post-slider .post__activity li i {
  color: #666666;
}

/*=============================
    06. Featured Post
===============================*/
.featured__post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 0 35px;
}

.featured__post .tgbanner__content-meta {
  margin: 0 0 7px;
}

@media (max-width: 1199.98px) {
  .featured__post {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .featured__post {
    margin-right: 35px;
  }
}

@media (max-width: 767.98px) {
  .featured__post {
    margin-right: 0;
  }
}

.featured__thumb {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 30px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-common-color-white);
  letter-spacing: -2px;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .featured__thumb {
    margin: 0 0 15px;
  }
}

.featured__thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-theme-secondary);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0.3;
  z-index: -1;
}

.featured__content .title {
  margin: 0 0;
  font-size: 20px;
  line-height: 1.4;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .featured__content .title {
    font-size: 18px;
  }
}

.featured__post:hover .featured__thumb::before {
  opacity: 0;
}

.recent-post-area .featured__thumb {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-right: 0;
}

.recent-post-area .featured__thumb::before {
  opacity: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.recent-post-area .featured__post > a {
  display: block;
  margin-right: 30px;
}

.recent-post-area .featured__post:hover .featured__thumb::before {
  opacity: 0.4;
}

.recent-post-area .featured__content .title {
  margin: 0 0 18px;
}

/*=============================
    07. Video Post
===============================*/
.video-post-area .row {
  --bs-gutter-x: 40px;
}

@media (max-width: 991.98px) {
  .video-post-area .row {
    --bs-gutter-x: 30px;
  }
}

.video__post-item.big-post {
  margin: 0 0 0;
}

@media (max-width: 991.98px) {
  .video__post-item.big-post {
    margin: 0 0 50px;
  }
}

.video__post-item.big-post .video__post-thumb {
  margin: 0 0 35px;
}

@media (max-width: 767.98px) {
  .video__post-item.big-post .video__post-thumb {
    margin: 0 0 28px;
  }
}

.video__post-item.big-post img {
  width: 100%;
  height: 498px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .video__post-item.big-post img {
    height: 410px;
  }
}

@media (max-width: 767.98px) {
  .video__post-item.big-post img {
    height: 200px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__post-item.big-post img {
    height: 280px;
  }
}

.video__post-item.big-post .popup-video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-white);
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}

.video__post-item.big-post .popup-video:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.video__post-item.big-post .video__post-content .title {
  font-size: 30px;
}

@media (max-width: 1199.98px) {
  .video__post-item.big-post .video__post-content .title {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .video__post-item.big-post .video__post-content .title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .video__post-item.big-post .video__post-content .title {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__post-item.big-post .video__post-content .title {
    font-size: 24px;
  }
}

.video__post-item.side-post {
  margin: 0 0 24px;
  padding: 0 0 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .video__post-item.side-post {
    margin: 0 0 19px;
    padding: 0 0 25px;
  }
}

@media (max-width: 991.98px) {
  .video__post-item.side-post {
    margin: 0 0 24px;
    padding: 0 0 32px;
  }
}

@media (max-width: 767.98px) {
  .video__post-item.side-post {
    display: block;
  }
}

.video__post-item.side-post::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background-image: url(../img/bg/line2.png);
  background-repeat: repeat;
}

.video__post-item.side-post .video__post-thumb {
  width: 130px;
  flex: 0 0 auto;
  margin: 0 22px 0 0;
}

@media (max-width: 1199.98px) {
  .video__post-item.side-post .video__post-thumb {
    width: 120px;
  }
}

@media (max-width: 767.98px) {
  .video__post-item.side-post .video__post-thumb {
    width: 100%;
    margin: 0 0 20px;
  }
}

.video__post-item.side-post .video__post-thumb .popup-video {
  position: relative;
  z-index: 1;
}

.video__post-item.side-post .video__post-thumb .popup-video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tg-theme-secondary);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0.35;
  z-index: 1;
}

.video__post-item.side-post .video__post-thumb .popup-video:hover::before {
  opacity: 0;
}

.video__post-item.side-post .video__post-thumb .popup-video i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--tg-common-color-white);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 2;
}

.video__post-item.side-post .video__post-thumb:hover .popup-video i {
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
}

.video__post-item.side-post img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767.98px) {
  .video__post-item.side-post img {
    height: 200px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__post-item.side-post img {
    height: 280px;
  }
}

.video__post-item.side-post .tgbanner__content-meta {
  margin: 0 0 7px;
}

.video__post-item.side-post .video__post-content .title {
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 1500px) {
  .video__post-item.side-post .video__post-content .title {
    font-size: 19px;
  }
}

@media (max-width: 1199.98px) {
  .video__post-item.side-post .video__post-content .title {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .video__post-item.side-post .video__post-content .title {
    font-size: 20px;
  }
}

.video__post-item.side-post:last-child {
  margin-bottom: 0;
}

.video__post-thumb {
  position: relative;
}

.video__post-thumb img {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.video__post-content .title {
  margin: 0 0;
}

.stories-video-post .stories-post__thumb {
  position: relative;
}

.stories-video-post .stories-post__thumb .popup-video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-white);
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}

.stories-video-post .stories-post__thumb .popup-video:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.stories-video-post .stories-post__thumb:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.nft-video-post .video__post-item.side-post::after {
  background-image: url(../img/bg/line3.png);
}

/*=============================
    08. Hand-Picked Post
===============================*/
@media (max-width: 1199.98px) {
  .handpicked-post-area {
    padding-bottom: 30px;
  }
}

.handpicked-post-area.white-bg .handpicked__item.big-post .handpicked__content {
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.handpicked__item {
  margin: 0 0 0;
}

.handpicked__item.big-post {
  margin: 0 0 30px;
}

@media (max-width: 1199.98px) {
  .handpicked__item.big-post {
    margin: 0 0 50px;
  }
}

.handpicked__item.big-post .handpicked__thumb {
  margin: 0 0 0;
}

.handpicked__item.big-post .handpicked__thumb img {
  height: 582px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .handpicked__item.big-post .handpicked__thumb img {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .handpicked__item.big-post .handpicked__thumb img {
    height: 220px;
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .handpicked__item.big-post .handpicked__thumb img {
    height: 280px;
  }
}

.handpicked__item.big-post .handpicked__content {
  background: var(--tg-common-color-white);
  max-width: 510px;
  margin: -55px auto 0 40px;
  position: relative;
  padding: 35px 40px;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .handpicked__item.big-post .handpicked__content {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 30px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .handpicked__item.big-post .handpicked__content {
    padding: 35px 35px;
  }
}

.handpicked__item.big-post .handpicked__content .tgbanner__content-meta {
  margin: 0 0 7px;
}

.handpicked__item.big-post .handpicked__content .title {
  font-size: 24px;
  margin: 0 0 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

@media (max-width: 767.98px) {
  .handpicked__item.big-post .handpicked__content .title {
    font-size: 20px;
    margin: 0 0 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .handpicked__item.big-post .handpicked__content .title {
    font-size: 24px;
    margin: 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
}

.handpicked__item.small-post {
  padding: 0 0 35px;
  margin: 0 0 30px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .handpicked__item.small-post {
    padding: 0 0;
    margin: 0 0 50px;
  }
}

.handpicked__item.small-post::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  background-image: url(../img/bg/line3.png);
  width: calc(100% + 10px);
  height: 8px;
}

@media (max-width: 1199.98px) {
  .handpicked__item.small-post::after {
    display: none;
  }
}

.handpicked__thumb {
  margin: 0 0 25px;
}

.handpicked__thumb img {
  height: 200px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767.98px) {
  .handpicked__thumb img {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .handpicked__thumb img {
    height: 280px;
  }
}

.handpicked__content .tgbanner__content-meta {
  margin: 0 0 6px;
}

.handpicked__content .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 0;
}

.handpicked__sidebar-post
  .row
  > [class*="col-"]:nth-child(odd)
  .handpicked__item.small-post::after {
  width: calc(100% + 30px);
  left: 0;
}

.handpicked__sidebar-post
  .row
  > [class*="col-"]:nth-last-child(-n + 2)
  .handpicked__item.small-post {
  padding-bottom: 0;
}

.handpicked__sidebar-post
  .row
  > [class*="col-"]:nth-last-child(-n + 2)
  .handpicked__item.small-post::after {
  display: none;
}

/*=============================
    09. Stories Post
===============================*/
.stories-post__item {
  margin: 0 0 50px;
}

@media (max-width: 991.98px) {
  .stories-post__item {
    margin: 0 0 40px;
  }
}

.stories-post__thumb {
  margin: 0 0 35px;
}

@media (max-width: 1199.98px) {
  .stories-post__thumb {
    margin: 0 0 25px;
  }
}

.stories-post__thumb img {
  height: 340px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .stories-post__thumb img {
    height: 280px;
  }
}

@media (max-width: 991.98px) {
  .stories-post__thumb img {
    height: 200px;
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .stories-post__thumb img {
    height: 280px;
  }
}

.stories-post__content .title {
  line-height: 1.3;
  font-size: 30px;
}

@media (max-width: 1199.98px) {
  .stories-post__content .title {
    font-size: 23px;
  }
}

@media (max-width: 991.98px) {
  .stories-post__content .title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .stories-post__content .title {
    font-size: 22px;
  }
}

.stories-small-post__item {
  margin: 0 0 40px;
}

/*=============================
    10. Popular Post
===============================*/
.popular__post-area .trending__post-thumb {
  margin: 0 0 30px;
}

.popular__post-area .trending__post-thumb img {
  height: 280px;
  width: 100%;
}

@media (max-width: 1500px) {
  .popular__post-area .trending__post-thumb img {
    height: 260px;
  }
}

@media (max-width: 1199.98px) {
  .popular__post-area .trending__post-thumb img {
    height: 280px;
  }
}

@media (max-width: 991.98px) {
  .popular__post-area .trending__post-thumb img {
    height: 220px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .popular__post-area .trending__post-thumb img {
    height: 280px;
  }
}

.popular__post-area .tgbanner__content-meta {
  margin: 0 0 12px;
}

.popular__post-area .trending__post-content .title {
  font-size: 24px;
  line-height: 1.3;
}

@media (max-width: 1199.98px) {
  .popular__post-area .trending__post-content .title {
    font-size: 20px;
  }
}

.lifestyle__popular-area .trending__post-thumb {
  position: relative;
}

.lifestyle__popular-area .trending__post-thumb .tags {
  position: absolute;
  left: 40px;
  top: 0;
  padding: 8px 12px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  font-size: 14px;
  line-height: 1;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  z-index: 2;
}

.lifestyle__popular-area .trending__post-thumb .tags::before {
  display: none;
}

.lifestyle__popular-area .trending__post-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0 25px;
}

.lifestyle__popular-area .trending__post-content .post--count {
  font-size: 40px;
  color: var(--tg-theme-primary);
  letter-spacing: -1px;
  margin: 0 0;
}

.lifestyle__popular-area .trending__post-content .title {
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .lifestyle__popular-area .trending__post-content .title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .lifestyle__popular-area .trending__post-content .title {
    font-size: 22px;
  }
}

/*=============================
    11. Category Post
===============================*/
.category__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 991.98px) {
  .category__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .category__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category__item {
  position: relative;
}

.category__item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.category__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-radial-gradient(circle, #000000 0%, transparent 100%);
  background-image: -webkit-radial-gradient(
    circle,
    #000000 0%,
    transparent 100%
  );
  background-image: -ms-radial-gradient(circle, #000000 0%, transparent 100%);
  opacity: 0.6;
  z-index: 1;
}

.category__item a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.category__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 1500px) {
  .category__item img {
    height: 300px;
  }
}

@media (max-width: 1199.98px) {
  .category__item img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .category__item img {
    height: 180px;
  }
}

.category__item .cat-name {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-common-color-white);
  z-index: 2;
  width: 80%;
  text-align: center;
}

/*=============================
    12. Latest Post
===============================*/
.latest-post-area > .container > .row:first-child > *:first-child {
  padding-right: 25px;
}

@media (max-width: 991.98px) {
  .latest-post-area > .container > .row:first-child > *:first-child {
    padding-right: 15px;
  }
}

.latest__post-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0 0 38px;
  margin-bottom: 30px;
  position: relative;
  display: none;
}

.latest__post-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/bg/line5.png);
  width: calc(100% - 5px);
  height: 8px;
}

@media (max-width: 1199.98px) {
  .latest__post-item[style="display: flex;"] {
    display: block !important;
  }
}

.latest__post-item .tgbanner__content-meta {
  margin: 0 0 9px;
}

.latest__post-thumb {
  width: 400px;
  flex: 0 0 auto;
  margin-right: 40px;
}

@media (max-width: 1500px) {
  .latest__post-thumb {
    width: 370px;
  }
}

@media (max-width: 1199.98px) {
  .latest__post-thumb {
    width: 100%;
    margin: 0 0 25px;
  }
}

.latest__post-thumb img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .latest__post-thumb img {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .latest__post-thumb img {
    height: 365px;
  }
}

@media (max-width: 767.98px) {
  .latest__post-thumb img {
    height: 200px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__post-thumb img {
    height: 280px;
  }
}

.latest__post-content {
  flex-grow: 1;
  margin-right: 30px;
}

@media (max-width: 767.98px) {
  .latest__post-content {
    margin-right: 0;
  }
}

.latest__post-content .title {
  font-size: 30px;
  letter-spacing: -0.9px;
  margin: 0 0 18px;
}

@media (max-width: 767.98px) {
  .latest__post-content .title {
    font-size: 22px;
    letter-spacing: -0.3px;
    line-height: 1.3;
  }
}

.latest__post-content p {
  margin: 0 0;
}

.latest__post-content .post__activity {
  margin-top: 35px;
}

.latest__post-more {
  margin-top: 40px;
}

.latest__post-more .noContent {
  pointer-events: none;
}

.latest__post-item-two {
  margin: 0 0 50px;
  display: none;
}

.latest__post-thumb-two img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .latest__post-thumb-two img {
    height: 440px;
  }
}

@media (max-width: 1199.98px) {
  .latest__post-thumb-two img {
    height: auto;
  }
}

.latest__post-content-two {
  background: var(--tg-common-color-white);
  margin: -140px 120px 0;
  padding: 45px 50px 50px;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media (max-width: 1500px) {
  .latest__post-content-two {
    margin: -120px 110px 0;
    padding: 35px 35px 30px;
  }
}

@media (max-width: 1199.98px) {
  .latest__post-content-two {
    margin: 0 0;
  }
}

@media (max-width: 991.98px) {
  .latest__post-content-two {
    padding: 40px 50px 30px;
  }
}

@media (max-width: 767.98px) {
  .latest__post-content-two {
    padding: 30px 25px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__post-content-two {
    padding: 35px 30px 30px;
  }
}

.latest__post-content-two .tgbanner__content-meta {
  justify-content: center;
}

.latest__post-content-two .title {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.9px;
  margin: 0 30px;
}

@media (max-width: 1199.98px) {
  .latest__post-content-two .title {
    margin: 0 0;
  }
}

@media (max-width: 767.98px) {
  .latest__post-content-two .title {
    font-size: 23px;
    letter-spacing: -0.3px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__post-content-two .title {
    font-size: 25px;
    letter-spacing: -0.35px;
  }
}

.latest__post-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-top: 35px;
  margin-top: 35px;
  position: relative;
  flex-wrap: wrap;
  gap: 12px 0;
}

@media (max-width: 1500px) {
  .latest__post-bottom {
    padding-top: 30px;
    margin-top: 25px;
  }
}

.latest__post-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background-image: url(../img/bg/line3.png);
  opacity: 0.6;
}

.latest__post-bottom .post__activity {
  margin-right: 20px;
}

@media (max-width: 767.98px) {
  .latest__post-bottom .post__activity {
    gap: 10px 15px;
  }
}

.latest__post-read-more {
  margin-left: auto;
}

.latest__post-read-more a {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.latest__post-read-more a:hover {
  color: var(--tg-theme-primary);
}

.latest__post-read-more a i {
  color: var(--tg-theme-primary);
  margin-left: 3px;
  font-size: 16px;
}

/*=============================
    13. Minimal Post
===============================*/
.minimal__post-wrapper {
  --bs-gutter-x: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.minimal__post-thumb {
  position: relative;
  margin: 0 0 25px;
}

.minimal__post-thumb img {
  height: 410px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 767.98px) {
  .minimal__post-thumb img {
    width: 100%;
    height: 350px;
  }
}

.minimal__post-item {
  flex: 0 0 auto;
  width: 33.33333333%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  display: none;
  margin: 0 0 55px;
}

@media (max-width: 991.98px) {
  .minimal__post-item {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .minimal__post-item {
    width: 100%;
  }
}

.minimal__post-item:nth-child(2) .minimal__post-thumb img,
.minimal__post-item:nth-child(11) .minimal__post-thumb img {
  height: 310px;
}

.minimal__post-item:nth-child(3) .minimal__post-thumb img,
.minimal__post-item:nth-child(12) .minimal__post-thumb img {
  height: 410px;
}

.minimal__post-item:nth-child(4) .minimal__post-thumb img,
.minimal__post-item:nth-child(13) .minimal__post-thumb img {
  height: 310px;
}

.minimal__post-item:nth-child(5) .minimal__post-thumb img,
.minimal__post-item:nth-child(14) .minimal__post-thumb img {
  height: 490px;
}

@media (max-width: 767.98px) {
  .minimal__post-item:nth-child(5) .minimal__post-thumb img,
  .minimal__post-item:nth-child(14) .minimal__post-thumb img {
    height: 380px;
  }
}

.minimal__post-item:nth-child(6) .minimal__post-thumb img,
.minimal__post-item:nth-child(15) .minimal__post-thumb img {
  height: 410px;
}

.minimal__post-item:nth-child(7) .minimal__post-thumb img,
.minimal__post-item:nth-child(16) .minimal__post-thumb img {
  height: 690px;
}

@media (max-width: 991.98px) {
  .minimal__post-item:nth-child(7) .minimal__post-thumb img,
  .minimal__post-item:nth-child(16) .minimal__post-thumb img {
    height: 380px;
  }
}

.minimal__post-item:nth-child(8) .minimal__post-thumb img,
.minimal__post-item:nth-child(17) .minimal__post-thumb img {
  height: 490px;
}

.minimal__post-item:nth-child(9) .minimal__post-thumb img,
.minimal__post-item:nth-child(18) .minimal__post-thumb img {
  height: 410px;
}

.minimal__post-tags {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  left: 30px;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.minimal__post-tags a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-theme-secondary);
  display: block;
  line-height: 1;
  background: var(--tg-common-color-white);
  padding: 8px 14px;
}

.minimal__post-tags a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.minimal__post-content .tgbanner__content-meta {
  margin: 0 0 10px;
}

.minimal__post-content .title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 0 15px 0 0;
}

@media (max-width: 1199.98px) {
  .minimal__post-content .title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .minimal__post-content .title {
    font-size: 24px;
  }
}

.minimal__post-more {
  margin-top: 10px;
}

/*=============================
    14. Adventure Post
===============================*/
.adventure__post-wrapper {
  --bs-gutter-x: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.adventure__post-thumb {
  position: relative;
}

.adventure__post-thumb img {
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 767.98px) {
  .adventure__post-thumb img {
    width: 100%;
  }
}

.adventure__post-item {
  flex: 0 0 auto;
  width: 33.33333333%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin: 0 0 30px;
}

@media (max-width: 991.98px) {
  .adventure__post-item {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .adventure__post-item {
    width: 100%;
  }
}

.adventure__post-item:nth-child(2) .adventure__post-thumb img,
.adventure__post-item:nth-child(11) .adventure__post-thumb img {
  height: 370px;
}

.adventure__post-item:nth-child(3) .adventure__post-thumb img,
.adventure__post-item:nth-child(12) .adventure__post-thumb img {
  height: 330px;
}

.adventure__post-item:nth-child(4) .adventure__post-thumb img,
.adventure__post-item:nth-child(13) .adventure__post-thumb img {
  height: 450px;
}

.adventure__post-item:nth-child(5) .adventure__post-thumb img,
.adventure__post-item:nth-child(14) .adventure__post-thumb img {
  height: 370px;
}

.adventure__post-item:nth-child(6) .adventure__post-thumb img,
.adventure__post-item:nth-child(15) .adventure__post-thumb img {
  height: 250px;
}

.adventure__post-item:nth-child(7) .adventure__post-thumb img,
.adventure__post-item:nth-child(16) .adventure__post-thumb img {
  height: 380px;
}

.adventure__post-item:nth-child(8) .adventure__post-thumb img,
.adventure__post-item:nth-child(17) .adventure__post-thumb img {
  height: 540px;
}

@media (max-width: 991.98px) {
  .adventure__post-item:nth-child(8) .adventure__post-thumb img,
  .adventure__post-item:nth-child(17) .adventure__post-thumb img {
    height: 450px;
  }
}

.adventure__post-item:nth-child(9) .adventure__post-thumb img,
.adventure__post-item:nth-child(18) .adventure__post-thumb img {
  height: 430px;
}

.adventure__post-item:nth-child(10) .adventure__post-thumb img,
.adventure__post-item:nth-child(19) .adventure__post-thumb img {
  height: 490px;
}

@media (max-width: 991.98px) {
  .adventure__post-item:nth-child(10) .adventure__post-thumb img,
  .adventure__post-item:nth-child(19) .adventure__post-thumb img {
    height: 400px;
  }
}

.adventure__post-item:nth-child(11) .adventure__post-thumb img,
.adventure__post-item:nth-child(20) .adventure__post-thumb img {
  height: 340px;
}

.adventure__post-item:nth-child(12) .adventure__post-thumb img,
.adventure__post-item:nth-child(21) .adventure__post-thumb img {
  height: 250px;
}

.adventure__post-content .tgbanner__content-meta {
  margin: 0 0 10px;
}

.adventure__post-content .title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 0 15px 0 0;
}

.adventure__post-more {
  margin-top: 10px;
}

/*=============================
    15. Blog
===============================*/
.blog-post-wrapper {
  margin-right: 30px;
}

@media (max-width: 1199.98px) {
  .blog-post-wrapper {
    margin-right: 10px;
  }
}

@media (max-width: 991.98px) {
  .blog-post-wrapper {
    margin-right: 0;
  }
}

.blog-post-wrapper .latest__post-item {
  display: block !important;
  padding: 0 0 58px;
  margin-bottom: 50px;
}

.blog-post-wrapper .latest__post-thumb {
  width: auto;
  height: auto;
  margin: 0 0 30px;
}

.blog-post-wrapper .latest__post-thumb img {
  width: auto;
  height: auto;
}

.blog-post-wrapper .latest__post-content {
  margin-right: 0;
}

.blog-post-wrapper .latest__post-content .title {
  font-size: 36px;
}

@media (max-width: 1199.98px) {
  .blog-post-wrapper .latest__post-content .title {
    font-size: 30px;
  }
}

@media (max-width: 991.98px) {
  .blog-post-wrapper .latest__post-content .title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .blog-post-wrapper .latest__post-content .title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-post-wrapper .latest__post-content .title {
    font-size: 28px;
  }
}

.blog-post-wrapper .latest__post-read-more {
  margin: 30px 0 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.blog-post-wrapper .latest__post-read-more a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  font-size: 15px;
}

.pagination__wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 10px;
}

@media (max-width: 991.98px) {
  .pagination__wrap ul {
    justify-content: center;
  }
}

.pagination__wrap ul li {
  display: block;
}

.pagination__wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 15px;
  border: 2px solid var(--tg-border-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.pagination__wrap ul li a:hover {
  border-color: var(--tg-theme-primary);
  background-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.pagination__wrap ul li.active a {
  pointer-events: none;
  border-color: var(--tg-theme-primary);
  background-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.blog-details-social {
  position: sticky;
  top: 80px;
}

@media (max-width: 991.98px) {
  .blog-details-social {
    margin: 0 0 30px;
  }
}

@media (max-width: 991.98px) {
  .blog-details-social ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

.blog-details-social ul li + li {
  margin-top: 14px;
}

@media (max-width: 991.98px) {
  .blog-details-social ul li + li {
    margin: 0 0 0 12px;
  }
}

.blog-details-social ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  background: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-heading-color);
}

@media (max-width: 767.98px) {
  .blog-details-social ul li a {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}

.blog-details-social ul li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.blog-details-wrap {
  margin-right: 30px;
}

@media (max-width: 1199.98px) {
  .blog-details-wrap {
    margin-right: 10px;
  }
}

@media (max-width: 991.98px) {
  .blog-details-wrap {
    margin-right: 0;
  }
}

.blog-details-wrap > .title {
  font-size: 30px;
  letter-spacing: -0.6px;
  margin: 0 0 30px;
}

@media (max-width: 767.98px) {
  .blog-details-wrap > .title {
    font-size: 25px;
    letter-spacing: -0.3px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-wrap > .title {
    font-size: 28px;
  }
}

.blog-details-thumb {
  margin: 0 0 40px;
}

@media (max-width: 1199.98px) {
  .blog-details-thumb {
    margin: 0 0 30px;
  }
}

.blog-details-content p {
  margin-bottom: 15px;
}

.blog-details-inner {
  margin: 40px 0 0;
}

.blog-details-inner .inner-title {
  font-size: 20px;
  letter-spacing: -0.3px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.blog-details-inner .list-wrap {
  margin: 0;
  padding: 0;
}

.blog-details-inner .list-wrap li {
  padding-left: 30px;
  position: relative;
  margin: 0 0 0;
}

.blog-details-inner .list-wrap li + li {
  margin-top: 15px;
}

.blog-details-inner .list-wrap li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--tg-icon-font-family);
  font-weight: var(--tg-fw-bold);
  font-size: 16px;
  color: #c5c5c5;
}

.blog-details-inner .list-wrap li span {
  color: var(--tg-heading-color);
  font-weight: var(--tg-fw-bold);
  margin-right: 5px;
}

.blog-details-images {
  margin: 30px 0 10px;
}

.blog-details-images .row {
  --bs-gutter-x: 20px;
}

.blog-details-images .details-inner-image {
  margin-bottom: 20px;
}

.blog-details-images .details-inner-image img {
  height: 250px;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .blog-details-images .details-inner-image img {
    height: 180px;
  }
}

.blog-details-bottom {
  overflow: hidden;
  clear: both;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin: 45px 0 0;
  padding: 19px 0;
}

.blog-details-tags ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.blog-details-tags ul li a {
  display: block;
  line-height: 1;
  background: var(--tg-common-color-white);
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  font-size: 14px;
  padding: 8px 16px;
}

.blog-details-tags ul li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.blog-details-share {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

@media (max-width: 767.98px) {
  .blog-details-share {
    justify-content: flex-start;
    margin: 15px 0 0;
  }
}

.blog-details-share .share-title {
  margin: 0 0;
  font-size: 14px;
}

.blog-details-share ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.blog-details-share ul li a {
  display: block;
  font-size: 14px;
  color: var(--tg-heading-color);
}

.blog-details-share ul li a:hover {
  color: var(--tg-theme-primary);
}

.blog-details-area .blog-sidebar {
  position: sticky;
  top: 80px;
}

blockquote {
  text-align: center;
  padding: 45px 80px 50px;
  position: relative;
  margin: 40px 0 40px;
}

@media (max-width: 1199.98px) {
  blockquote {
    padding: 45px 30px 50px;
  }
}

@media (max-width: 767.98px) {
  blockquote {
    padding: 40px 20px 40px;
  }
}

blockquote::before,
blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background-image: url(../img/bg/blockquote.png);
}

blockquote::after {
  top: auto;
  bottom: 0;
}

blockquote p {
  font-size: 24px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  line-height: 1.4;
  margin: 0 0;
}

@media (max-width: 1199.98px) {
  blockquote p {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  blockquote p {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  blockquote p {
    font-size: 20px;
    line-height: 1.35;
  }
}

blockquote .blockquote-cite {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  margin: 30px 0 0;
}

blockquote .blockquote-cite .image {
  flex: 0 0 auto;
}

blockquote .blockquote-cite img {
  width: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

blockquote .blockquote-cite .info h5 {
  font-size: 18px;
  margin: 0 0 3px;
  font-style: normal;
}

@media (max-width: 1199.98px) {
  blockquote .blockquote-cite .info h5 {
    font-size: 16px;
  }
}

blockquote .blockquote-cite .info span {
  display: block;
  font-size: 14px;
}

.details-advertisement {
  margin: 40px 0 35px;
}

@media (max-width: 767.98px) {
  .details-advertisement {
    margin: 30px 0 25px;
  }
}

.blog-avatar-wrap {
  background: var(--tg-common-color-white);
  text-align: center;
  margin-top: 110px;
  padding: 0 85px 50px;
}

@media (max-width: 1199.98px) {
  .blog-avatar-wrap {
    padding: 0 35px 40px;
  }
}

.blog-avatar-img {
  margin: 0 0 40px;
  position: relative;
}

@media (max-width: 767.98px) {
  .blog-avatar-img {
    margin: 0 0 30px;
  }
}

.blog-avatar-img img {
  max-width: 120px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.blog-avatar-img a {
  display: inline-block;
  position: relative;
  margin: -60px 0 0;
}

.blog-avatar-img i {
  position: absolute;
  top: 5px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #f5f5f5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  font-size: 12px;
}

.blog-avatar-content p {
  margin: 0 0 25px;
}

.blog-avatar-content .name {
  font-size: 18px;
  margin: 0 0 8px;
}

.blog-avatar-content .designation {
  display: block;
  line-height: 1;
}

.blog-prev-next-posts {
  margin: 50px 0 0;
  padding: 0 0 30px;
  border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 1199.98px) {
  .blog-prev-next-posts > .row [class*="col-"]:last-child {
    margin-left: auto;
  }
}

.pn-post-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.pn-post-item .thumb {
  flex: 0 0 auto;
  margin-right: 25px;
}

.pn-post-item .thumb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.pn-post-item .content {
  margin-right: 50px;
}

@media (max-width: 1199.98px) {
  .pn-post-item .content {
    margin-right: 0;
  }
}

.pn-post-item .content span {
  display: block;
  font-size: 13px;
  font-weight: var(--tg-fw-medium);
  margin: 0 0 7px;
}

.pn-post-item .content .title {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0;
}

.pn-post-item.next-post {
  flex-direction: row-reverse;
  text-align: right;
}

@media (max-width: 767.98px) {
  .pn-post-item.next-post {
    margin-top: 10px;
  }
}

.pn-post-item.next-post .thumb {
  margin-right: 0;
  margin-left: 25px;
}

.pn-post-item.next-post .content {
  margin-left: 50px;
  margin-right: 0;
}

@media (max-width: 1199.98px) {
  .pn-post-item.next-post .content {
    margin-left: 0;
  }
}

/*=============================
    16. Blog Sidebar
===============================*/
@media (max-width: 991.98px) {
  .blog-sidebar {
    margin: 80px 0 0;
  }
}

.sidebar-widget {
  margin: 0 0 45px;
}

.sidebar-widget:last-child {
  margin: 0 0;
}

.widget-title {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.8px;
  margin: 0 0 30px;
}

.widget-title::after {
  content: "";
  display: block;
  background-image: url(../img/bg/line6.png);
  width: 100%;
  height: 7px;
  margin: 20px 0 0;
}

.tgAbout-me {
  text-align: center;
  background-color: var(--tg-common-color-white);
  padding: 40px 43px;
}

@media (max-width: 1500px) {
  .tgAbout-me {
    padding: 35px 30px;
  }
}

.tgAbout-thumb {
  margin: 0 0 30px;
}

.tgAbout-thumb img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.tgAbout-info .intro {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 7px;
}

.tgAbout-info .intro span {
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  letter-spacing: -0.8px;
}

.tgAbout-info .designation {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-theme-primary);
}

.tgAbout-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0 0;
  gap: 10px;
}

.tgAbout-social a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-common-color-gray);
  font-size: 15px;
  color: var(--tg-heading-color);
}

.tgAbout-social a:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-white);
}

.widget_categories ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  margin: 0 0 14px;
}

.widget_categories ul li:last-child {
  margin: 0 0 0;
}

.widget_categories ul li .thumb {
  max-width: 60px;
  flex: 0 0 auto;
  margin-right: 20px;
}

.widget_categories ul li .thumb img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.widget_categories ul li a {
  color: var(--tg-heading-color);
}

.widget_categories ul li a:hover {
  color: var(--tg-theme-primary);
}

.widget_categories ul li span {
  margin-left: auto;
  color: var(--tg-theme-primary);
}

.sidePost__item {
  min-height: 350px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: flex !important;
  padding: 30px 30px 60px;
  z-index: 1;
}

.sidePost__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.70196) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.70196) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.70196) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  opacity: 0.9;
}

.sidePost__content {
  align-self: flex-end;
}

.sidePost__content .tag {
  display: inline-block;
  text-transform: uppercase;
  color: var(--tg-common-color-white);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  line-height: 1;
  margin: 0 0 13px;
}

.sidePost__content .title {
  color: var(--tg-common-color-white);
  margin: 0 0;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.sidePost__content .title a {
  background-image: linear-gradient(
      var(--tg-common-color-white),
      var(--tg-common-color-white)
    ),
    linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
}

.sidePost-active .slick-dots {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.sidePost-active .slick-dots li {
  line-height: 0;
}

.sidePost-active .slick-dots li button {
  text-indent: -9999px;
  border: none;
  padding: 0 0;
  width: 24px;
  height: 4px;
  background: var(--tg-common-color-white);
  line-height: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0.2;
}

.sidePost-active .slick-dots li.slick-active button {
  opacity: 1;
}

.sidebarInsta__wrap {
  background: var(--tg-theme-secondary);
}

.sidebarInsta__top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 40px;
}

.sidebarInsta__logo {
  flex: 0 0 auto;
  width: 60px;
  margin-right: 16px;
}

.sidebarInsta__logo img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.sidebarInsta__info {
  flex-grow: 1;
}

.sidebarInsta__info .name {
  color: var(--tg-common-color-white);
  font-size: 18px;
  font-weight: var(--tg-fw-bold);
  margin: 0 0 3px;
}

.sidebarInsta__info .designation {
  display: block;
  font-size: 12px;
  color: #808080;
}

.sidebarInsta__slider-wrap .swiper-slide a {
  display: block;
}

.sidebarInsta__slider-wrap .swiper-slide a img {
  width: 100%;
}

.sidebarInsta__bottom {
  padding: 30px;
}

.sidebarInsta__bottom .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.sidebarInsta__bottom .btn i {
  margin: 0 7px 0 0;
}

.sidebarInsta__bottom .btn::before {
  background: var(--tg-common-color-black);
}

.sidebarInsta__slider-wrap {
  overflow: hidden;
}

.sidebarInsta-active {
  margin: 0 -45px 15px -25px;
}

.sidebarInsta-active-2 {
  margin: 0 -25px 0 -45px;
}

.rc__post-wrapper .tgbanner__content-meta {
  margin: 0 0 5px;
}

.rc__post-item {
  position: relative;
}

.rc__post-item::after {
  content: "";
  display: block;
  background-image: url(../img/bg/line6.png);
  width: 100%;
  height: 7px;
  margin: 20px 0 22px;
}

.rc__post-item:last-child::after {
  margin: 25px 0 0;
}

.rc__post-item .title {
  font-size: 18px;
  line-height: 1.43;
  margin: 0 0;
}

/*=============================
    17. Newsletter Post
===============================*/
.newsletter__wrap {
  background-color: var(--tg-common-color-white);
  position: relative;
  padding: 55px 115px 55px 60px;
  z-index: 1;
}

@media (max-width: 1500px) {
  .newsletter__wrap {
    padding: 55px 70px 55px 55px;
  }
}

@media (max-width: 1199.98px) {
  .newsletter__wrap {
    padding: 45px 40px;
  }
}

@media (max-width: 991.98px) {
  .newsletter__wrap {
    padding: 45px 60px;
  }
}

@media (max-width: 767.98px) {
  .newsletter__wrap {
    padding: 40px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter__wrap {
    padding: 50px 50px;
  }
}

.newsletter__wrap::after {
  content: "\f116";
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: "flaticon";
  line-height: 0.92;
  font-size: 160px;
  color: #f6f6f6;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .newsletter__wrap::after {
    font-size: 120px;
  }
}

@media (max-width: 1199.98px) {
  .newsletter__wrap .row {
    align-items: flex-start !important;
  }
}

@media (max-width: 991.98px) {
  .newsletter__title {
    text-align: center;
    margin: 0 0 35px;
  }
}

.newsletter__title .sub-title {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.newsletter__title .title {
  margin: 0 0;
  font-size: 30px;
  letter-spacing: -0.9px;
  line-height: 1.3;
}

@media (max-width: 1199.98px) {
  .newsletter__title .title {
    font-size: 27px;
    letter-spacing: 0;
  }
}

@media (max-width: 991.98px) {
  .newsletter__title .title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .newsletter__title .title {
    font-size: 28px;
    line-height: 1.2;
  }

  .newsletter__title .title br {
    display: none;
  }
}

.newsletter__form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 40px;
  justify-content: flex-end;
}

@media (max-width: 1199.98px) {
  .newsletter__form-wrap {
    margin: 0 0 0 10px;
  }
}

@media (max-width: 991.98px) {
  .newsletter__form-wrap {
    margin: 0 0;
  }
}

@media (max-width: 1199.98px) {
  .newsletter__form {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .newsletter__form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px 30px;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .newsletter__form {
    display: block;
  }
}

.newsletter__form [type="submit"] {
  font-size: 16px;
  font-weight: var(--tg-fw-bold);
  text-transform: capitalize;
  padding: 22px 35px;
}

.newsletter__form-grp {
  position: relative;
}

@media (max-width: 1199.98px) {
  .newsletter__form-grp {
    margin: 0 0 20px;
  }
}

@media (max-width: 991.98px) {
  .newsletter__form-grp {
    margin: 0 0;
  }
}

@media (max-width: 767.98px) {
  .newsletter__form-grp {
    margin: 0 0 20px;
  }
}

.newsletter__form-grp input[type="email"] {
  display: block;
  width: 100%;
  border: none;
  padding: 0 0 10px 25px;
  background: transparent;
}

.newsletter__form-grp::before {
  content: "\f2b6";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--tg-icon-font-family);
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.newsletter__form-grp .form-check {
  margin: 0 0;
  position: relative;
  padding: 15px 0 0 1.5em;
}

.newsletter__form-grp .form-check [type="checkbox"]:checked {
  background-color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.newsletter__form-grp .form-check [type="checkbox"]:focus {
  box-shadow: 0 0 0 0.25rem rgba(32, 16, 83, 0.25);
  border-color: var(--tg-theme-primary);
}

.newsletter__form-grp .form-check label {
  font-size: 14px;
  color: #a4a4a4;
}

.newsletter__form-grp .form-check::before {
  content: "";
  display: block;
  background-image: url(../img/bg/newsletter_line.png);
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0;
}

.newsletter-style-two .newsletter__title-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  width: 80px;
  height: 80px;
  color: var(--tg-common-color-white);
  box-shadow: 0px 20px 40px 0px rgba(32, 16, 83, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 38px;
  margin: 0 auto 35px;
  line-height: 1;
  flex: 0 auto;
}

.newsletter-style-two .newsletter__title .sub-title {
  margin: 0 0 7px;
}

.newsletter-style-two .newsletter__title .title {
  color: var(--tg-common-color-white);
}

.newsletter-style-two .newsletter__form-grp::before {
  color: var(--tg-common-color-white);
}

.newsletter-style-two .newsletter__form-grp input[type="email"] {
  color: var(--tg-common-color-white);
}

.newsletter-style-two .newsletter__form-grp .form-check::before {
  opacity: 0.2;
}

.newsletter-style-two .newsletter__form-grp .form-check {
  padding: 20px 0 0 1.5em;
  text-align: left !important;
}

.newsletter-style-two .form-check-input[type="checkbox"] {
  background-color: #515151;
}

@media (max-width: 1199.98px) {
  .newsletter-style-two .newsletter__form-wrap {
    margin: 0 0;
  }
}

.newsletter-style-two.style-three .newsletter__title .title {
  color: var(--tg-heading-color);
}

.newsletter-style-two.style-three .newsletter__form-grp::before {
  color: var(--tg-heading-color);
}

.newsletter-style-two.style-three .newsletter__form-grp input[type="email"] {
  color: var(--tg-body-color);
}

.newsletter-style-two.style-three
  .newsletter__form-grp
  input[type="email"]::placeholder {
  color: #c0c0c0;
}

.newsletter-style-two.style-three .newsletter__form-grp .form-check::before {
  opacity: 1;
}

.newsletter-style-two.style-three .form-check-input[type="checkbox"] {
  background-color: #c0c0c0;
  border-color: #c0c0c0;
}

.newsletter-style-two.style-three .form-check-input[type="checkbox"]:checked {
  background-color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.newsletter-style-two.style-four {
  background-image: url(../img/bg/newsletter_bg.jpg);
  background-position: center;
  background-size: cover;
  padding: 80px 130px;
}

@media (max-width: 1500px) {
  .newsletter-style-two.style-four {
    padding: 70px 100px;
  }
}

@media (max-width: 1199.98px) {
  .newsletter-style-two.style-four {
    padding: 70px 50px;
  }
}

@media (max-width: 767.98px) {
  .newsletter-style-two.style-four {
    padding: 50px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter-style-two.style-four {
    padding: 55px 35px;
  }
}

.newsletter-style-two.style-four .newsletter__form {
  justify-content: center;
  text-align: left;
}

@media (max-width: 1199.98px) {
  .newsletter-style-two.style-four .newsletter__form {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .newsletter-style-two.style-four .newsletter__form {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .newsletter-style-two.style-four .newsletter__form-grp {
    margin: 0 0 20px;
  }
}

.newsletter-style-two.style-four .newsletter__form-grp .form-check::before {
  opacity: 1;
}

/*=============================
    18. Footer
===============================*/
.footer__top-wrap {
  padding: 75px 0 25px;
}

.footer__widget {
  margin: 0 0 50px;
}

.footer__widget .fw-title {
  margin: 0 0 28px;
  font-size: 20px;
  color: var(--tg-common-color-white);
}

.footer__widget ul li {
  margin: 0 0 15px;
}

.footer__widget ul li a {
  font-size: 14px;
  color: #a1a1a1;
}

.footer__widget ul li a:hover {
  color: var(--tg-common-color-white);
}

.footer__logo-wrap {
  padding: 30px 0;
  border-top: 1px solid var(--tg-border-2);
  border-bottom: 1px solid var(--tg-border-2);
}

.footer-area.border-top-none .footer__logo-wrap {
  border-top: none;
}

@media (max-width: 767.98px) {
  .footer__logo {
    text-align: center;
  }
}

.footer__social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 28px;
}

@media (max-width: 767.98px) {
  .footer__social ul {
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0 0;
    gap: 10px 25px;
  }
}

.footer__social ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #999999;
  line-height: 1;
}

.footer__social ul li a:hover {
  color: var(--tg-common-color-white);
}

.footer__social ul li a i {
  color: var(--tg-common-color-white);
  margin-right: 8px;
}

.footer__social ul li a span {
  display: block;
  font-weight: var(--tg-fw-bold);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  line-height: 1;
  padding: 3px 7px;
  border-radius: 10px;
  margin-left: 5px;
}

.footer__copyright {
  padding: 25px 0;
}

.footer-style-three {
  margin: 0 0 50px;
}

@media (max-width: 767.98px) {
  .footer-style-three {
    margin: 0 0 30px;
  }
}

.footer-style-three .footer__logo-wrap {
  border-color: #efefef;
}

.footer-style-three .footer__social ul li a {
  color: var(--tg-theme-primary);
}

.footer-style-three .footer__social ul li a i {
  color: var(--tg-theme-primary);
}

.footer-style-three .copyright__text p {
  color: var(--tg-body-color);
}

.footer-style-three .copyright__text p span {
  color: var(--tg-theme-primary);
}

.footer-style-three .copyright__menu ul li a {
  color: var(--tg-theme-primary);
}

.footer-style-three.footer-bg {
  background-position: bottom center;
  background-size: cover;
  margin: 0 0 0;
}

.footer-style-three.footer-bg .newsletter__form-grp .form-check label {
  color: var(--tg-body-color);
}

.footer-style-three.footer-bg .newsletter__form-grp .form-check::before {
  background-image: url(../img/bg/marquee_line.png);
  opacity: 0.8;
}

.footer-style-three.footer-bg .footer__logo-wrap {
  border-color: var(--tg-border-2);
}

.footer-style-three.footer-bg .copyright__text p {
  color: var(--tg-theme-secondary);
}

@media (max-width: 991.98px) {
  .copyright__text {
    text-align: center;
  }
}

.copyright__text p {
  margin: 0 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
}

.copyright__text p span {
  color: var(--tg-common-color-white);
  font-weight: var(--tg-fw-bold);
}

.copyright__menu ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px 40px;
}

@media (max-width: 991.98px) {
  .copyright__menu ul {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  .copyright__menu ul {
    gap: 3px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright__menu ul {
    gap: 5px 28px;
  }
}

.copyright__menu ul li a {
  display: block;
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-common-color-white);
  text-transform: uppercase;
}

.copyright__menu ul li a:hover {
  color: var(--tg-theme-primary);
}

/*=============================
    19. Dark Mode
===============================*/
[tg-theme="dark"] {
  --tg-common-color-gray: #f5f5f5;
  --tg-common-color-black: #000;
  --tg-body-color: #aeaeae;
  --tg-heading-color: #fff;
  --tg-border-1: #222;
  --tg-dark-color-1: #181818;
  --tg-dark-color-2: #222;
}

[tg-theme="dark"] body,
[tg-theme="dark"] #preloader {
  background-color: var(--tg-theme-secondary);
}

[tg-theme="dark"] .sticky-menu {
  background-color: var(--tg-dark-color-1);
}

[tg-theme="dark"] .btn::before {
  background: var(--tg-dark-color-1);
}

[tg-theme="dark"] .logo .logo-dark {
  display: none;
}

[tg-theme="dark"] .logo .logo-light {
  display: block;
}

[tg-theme="dark"] .header__top-search form input,
[tg-theme="dark"] .header__top-right .lang .dropdown-toggle,
[tg-theme="dark"] .header__top-right .lang .dropdown-menu,
[tg-theme="dark"] .tgmenu__navbar-wrap ul li .sub-menu,
[tg-theme="dark"] .tgmobile__menu-box,
[tg-theme="dark"] .newsletter__wrap,
[tg-theme="dark"] .offCanvas__wrap,
[tg-theme="dark"] .tgbanner__post.big-post .tgbanner__content,
[tg-theme="dark"] .handpicked__item.big-post .handpicked__content,
[tg-theme="dark"] .latest__post-content-two,
[tg-theme="dark"] .tgslider__content,
[tg-theme="dark"] .header__style-six .tg-header__area,
[tg-theme="dark"] .tg-hover-wrapper,
[tg-theme="dark"] .blog-avatar-wrap,
[tg-theme="dark"] .slider__style-two {
  background-color: var(--tg-dark-color-1);
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .header__top-right .lang .dropdown-menu li a {
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .header__top-right .lang .dropdown-menu li a:hover,
[tg-theme="dark"] .header__top-right .lang .dropdown-menu li a:focus {
  background-color: var(--tg-dark-color-2);
}

[tg-theme="dark"] .tgmenu__navbar-wrap ul li .sub-menu {
  border-color: var(--tg-dark-color-1);
  box-shadow: none;
}

[tg-theme="dark"] .switcher__mode {
  background-color: var(--tg-dark-color-2);
}

[tg-theme="dark"] .switcher__mode::before {
  background: var(--tg-common-color-white);
  left: calc(100% - 15px);
}

[tg-theme="dark"] .switcher__btn.light-mode {
  opacity: 0.3;
}

[tg-theme="dark"] .switcher__btn.dark-mode {
  color: var(--tg-theme-primary);
}

[tg-theme="dark"] .tgmobile__menu .navigation > li > ul > li:first-child,
[tg-theme="dark"] .tgmobile__menu .navigation li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[tg-theme="dark"] .tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[tg-theme="dark"] .tgmobile__menu .social-links ul li a {
  color: var(--tg-common-color-white);
  border-color: var(--tg-dark-color-2);
}

[tg-theme="dark"] .tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
}

[tg-theme="dark"]
  .tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn,
[tg-theme="dark"] .slider__style-two .slider__item {
  background: var(--tg-dark-color-2);
}

[tg-theme="dark"]
  .tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn
  .plus-line,
[tg-theme="dark"]
  .tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn
  .plus-line::after {
  background-color: var(--tg-common-color-white);
}

[tg-theme="dark"]
  .tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}

[tg-theme="dark"] .tgmobile__menu .nav-logo .logo-light {
  display: block;
}

[tg-theme="dark"] .tgmobile__menu .nav-logo .logo-dark {
  display: none;
}

[tg-theme="dark"] .tgmobile__search input,
[tg-theme="dark"] .newsletter__form [type="submit"]::before,
[tg-theme="dark"] .header__style-five .header__top-search form input {
  background: var(--tg-dark-color-2);
}

[tg-theme="dark"] .form-check-input[type="checkbox"] {
  background-color: var(--tg-dark-color-2);
}

[tg-theme="dark"] .tgbanner__post.big-post .tgbanner__content {
  background-image: none;
}

[tg-theme="dark"] .tgbanner__side-post .small-post::after,
[tg-theme="dark"] .newsletter__form-grp .form-check::before,
[tg-theme="dark"] .section__title-wrap::after,
[tg-theme="dark"] .handpicked__item.small-post::after,
[tg-theme="dark"] .tgbanner__area-three .trending__post::after,
[tg-theme="dark"] .tgbanner__trending-title::after,
[tg-theme="dark"] .tgbanner__trending-post-list > li::after,
[tg-theme="dark"] .latest__post-item::before,
[tg-theme="dark"]
  .newsletter-style-two.style-three
  .newsletter__form-grp
  .form-check::before,
[tg-theme="dark"] .widget-title::after,
[tg-theme="dark"] .rc__post-item::after,
[tg-theme="dark"] .latest__post-bottom::before,
[tg-theme="dark"] .blog-details-inner .list-wrap li::before {
  opacity: 0.2;
}

[tg-theme="dark"] .post__activity li i {
  color: #666666;
}

[tg-theme="dark"]
  .video__post-item.side-post
  .video__post-thumb:hover
  .popup-video
  i {
  color: var(--tg-dark-color-1);
}

[tg-theme="dark"] .video__post-item.big-post .popup-video {
  color: var(--tg-dark-color-1);
}

[tg-theme="dark"] .video__post-item.big-post .popup-video:hover {
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .video__post-item.side-post::after {
  opacity: 0.1;
}

[tg-theme="dark"] .tgbanner__content-meta li .by {
  color: var(--tg-body-color);
}

[tg-theme="dark"] .header__style-three,
[tg-theme="dark"] .tgbanner__big-post-content .read-more,
[tg-theme="dark"] .tgAbout-me,
[tg-theme="dark"] .sidebarInsta__wrap,
[tg-theme="dark"] .header__top-bar,
[tg-theme="dark"] .white-bg,
[tg-theme="dark"] .breadcrumb-content,
[tg-theme="dark"] .blog-details-social ul li a,
[tg-theme="dark"] .blog-details-tags ul li a {
  background: var(--tg-dark-color-1);
}

[tg-theme="dark"] .blog-details-tags ul li a,
[tg-theme="dark"] .footer-style-three.footer-bg .copyright__text p {
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .tgbanner__big-post-content .read-more:hover,
[tg-theme="dark"] .blog-details-social ul li a:hover,
[tg-theme="dark"] .blog-details-tags ul li a:hover {
  background: var(--tg-theme-primary);
}

[tg-theme="dark"] .newsletter__wrap::after {
  opacity: 0.02;
}

[tg-theme="dark"] .offCanvas__contact-list li,
[tg-theme="dark"] .offCanvas__contact-list li a,
[tg-theme="dark"] .offCanvas__social li a {
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .offCanvas__social li a:hover {
  color: var(--tg-theme-primary);
}

[tg-theme="dark"] .slider__content .btn {
  background: var(--tg-dark-color-1);
}

[tg-theme="dark"] .slider__content .btn::before {
  background: var(--tg-theme-primary);
}

[tg-theme="dark"] .slider__img-wrap::before {
  background: var(--tg-dark-color-1);
}

[tg-theme="dark"] .slider-active .slick-dots li.slick-active button {
  border-color: var(--tg-dark-color-2);
}

[tg-theme="dark"] .slider-active .slick-dots li.slick-active button::after {
  background: var(--tg-theme-primary);
}

[tg-theme="dark"] .tgbanner__trending-post-list .post-count {
  opacity: 0.3;
}

[tg-theme="dark"] .stories-video-post .stories-post__thumb .popup-video {
  color: var(--tg-theme-primary);
}

[tg-theme="dark"] .stories-video-post .stories-post__thumb .popup-video:hover {
  color: var(--tg-common-color-white);
}

[tg-theme="dark"] .tgAbout-social a,
[tg-theme="dark"] .sidebarInsta__bottom .btn::before {
  background: var(--tg-theme-secondary);
}

[tg-theme="dark"] .tgAbout-social a:hover,
[tg-theme="dark"] .sidebarInsta__bottom .btn::before:hover {
  background: var(--tg-theme-primary);
}

[tg-theme="dark"] .footer-style-three .footer__logo-wrap {
  border-color: #282828;
}

[tg-theme="dark"] blockquote::before,
[tg-theme="dark"] blockquote::after,
[tg-theme="dark"] .slider__marquee::before,
[tg-theme="dark"] .slider__marquee::after,
[tg-theme="dark"] .tgslider__top::after,
[tg-theme="dark"]
  .footer-style-three.footer-bg
  .newsletter__form-grp
  .form-check::before {
  filter: brightness(100);
  opacity: 0.2;
}

[tg-theme="dark"] .tgslider__nav button {
  border: 2px solid #2b2b2b;
}

[tg-theme="dark"] .tgslider__nav button:hover {
  border-color: var(--tg-theme-primary);
}

[tg-theme="dark"] .header__style-five .switcher__btn.light-mode {
  opacity: 1;
}

[tg-theme="dark"] .blog-details-inner .inner-title,
[tg-theme="dark"] .blog-details-bottom,
[tg-theme="dark"] .blog-prev-next-posts {
  border-color: #1f1f1f;
}

[tg-theme="dark"] .footer-style-three.footer-bg,
[tg-theme="dark"] .slider__style-two {
  background-image: none !important;
}

[tg-theme="dark"]
  .footer-style-three.footer-bg
  .slider-active
  .slick-dots
  li.slick-active
  button,
[tg-theme="dark"]
  .slider__style-two
  .slider-active
  .slick-dots
  li.slick-active
  button {
  border-color: var(--tg-dark-color-1);
}

[tg-theme="dark"] .footer-style-three.footer-bg .border-btn,
[tg-theme="dark"] .slider__style-two .border-btn {
  border-color: var(--tg-dark-color-1);
}

/*# sourceMappingURL=main.css.map */

.product-area .trending__post {
  margin-bottom: 50px;
}

/* =========================================
   Wallet Balance Navbar Styles (Global)
   ========================================= */
.wallet-section .wallet-balance {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  background: linear-gradient(
    135deg,
    var(--tg-theme-primary),
    #6a11cb
  ) !important;
  border-radius: 25px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3) !important;
  border: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.wallet-section .wallet-balance:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4) !important;
}

.wallet-section .wallet-balance i {
  font-size: 16px !important;
  color: #fff !important;
}

.wallet-section .wallet-balance .balance-amount {
  color: #fff !important;
  font-weight: 700 !important;
}

/*=============================
    20. User Card Custom
===============================*/
.user-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.user-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  position: relative;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #e0e0e0;
}

.user-avatar::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  z-index: -1;
}

.user-avatar-upload {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: var(--tg-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.user-avatar-upload:hover {
  background: var(--tg-theme-secondary);
  transform: scale(1.1);
}

.user-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--tg-heading-color);
  margin-bottom: 5px;
}

.user-email {
  font-size: 14px;
  color: var(--tg-body-color);
  margin-bottom: 30px;
}

.wallet-connect-btn {
  width: 100%;
  background: linear-gradient(135deg, #3a0ca3 0%, #4a0e96 100%);
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(58, 12, 163, 0.2);
}

.wallet-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(58, 12, 163, 0.3);
  color: #fff;
}

.wallet-address {
  background: rgba(32, 16, 83, 0.05);
  color: var(--tg-theme-primary);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

/* Wallet Balance Button Style */
.wallet-balance {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #6a1bdb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(106, 27, 219, 0.2);
}

.wallet-balance:hover {
  background: #520dc2;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(106, 27, 219, 0.4);
  color: #fff;
}

.wallet-balance i {
  font-size: 16px;
}
/* =========================================
   SPACING CSS
   ========================================= */
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-55 {
  margin-top: 55px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-65 {
  margin-top: 65px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-75 {
  margin-top: 75px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-85 {
  margin-top: 85px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-95 {
  margin-top: 95px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-105 {
  margin-top: 105px;
}
.mt-110 {
  margin-top: 110px;
}
.mt-115 {
  margin-top: 115px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-125 {
  margin-top: 125px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-135 {
  margin-top: 135px;
}
.mt-140 {
  margin-top: 140px;
}
.mt-145 {
  margin-top: 145px;
}
.mt-150 {
  margin-top: 150px;
}
.mt-155 {
  margin-top: 155px;
}
.mt-160 {
  margin-top: 160px;
}
.mt-165 {
  margin-top: 165px;
}
.mt-170 {
  margin-top: 170px;
}
.mt-175 {
  margin-top: 175px;
}
.mt-180 {
  margin-top: 180px;
}
.mt-185 {
  margin-top: 185px;
}
.mt-190 {
  margin-top: 190px;
}
.mt-195 {
  margin-top: 195px;
}
.mt-200 {
  margin-top: 200px;
}
.mt-205 {
  margin-top: 205px;
}
.mt-210 {
  margin-top: 210px;
}
.mt-215 {
  margin-top: 215px;
}
.mt-220 {
  margin-top: 220px;
}
.mt-225 {
  margin-top: 225px;
}
.mt-230 {
  margin-top: 230px;
}
.mt-235 {
  margin-top: 235px;
}
.mt-240 {
  margin-top: 240px;
}
.mt-245 {
  margin-top: 245px;
}
.mt-250 {
  margin-top: 250px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-105 {
  margin-bottom: 105px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-115 {
  margin-bottom: 115px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-125 {
  margin-bottom: 125px;
}
.mb-130 {
  margin-bottom: 130px;
}
.mb-135 {
  margin-bottom: 135px;
}
.mb-140 {
  margin-bottom: 140px;
}
.mb-145 {
  margin-bottom: 145px;
}
.mb-150 {
  margin-bottom: 150px;
}
.mb-155 {
  margin-bottom: 155px;
}
.mb-160 {
  margin-bottom: 160px;
}
.mb-165 {
  margin-bottom: 165px;
}
.mb-170 {
  margin-bottom: 170px;
}
.mb-175 {
  margin-bottom: 175px;
}
.mb-180 {
  margin-bottom: 180px;
}
.mb-185 {
  margin-bottom: 185px;
}
.mb-190 {
  margin-bottom: 190px;
}
.mb-195 {
  margin-bottom: 195px;
}
.mb-200 {
  margin-bottom: 200px;
}
.mb-205 {
  margin-bottom: 205px;
}
.mb-210 {
  margin-bottom: 210px;
}
.mb-215 {
  margin-bottom: 215px;
}
.mb-220 {
  margin-bottom: 220px;
}
.mb-225 {
  margin-bottom: 225px;
}
.mb-230 {
  margin-bottom: 230px;
}
.mb-235 {
  margin-bottom: 235px;
}
.mb-240 {
  margin-bottom: 240px;
}
.mb-245 {
  margin-bottom: 245px;
}
.mb-250 {
  margin-bottom: 250px;
}
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-55 {
  padding-top: 55px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-65 {
  padding-top: 65px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-75 {
  padding-top: 75px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-85 {
  padding-top: 85px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-95 {
  padding-top: 95px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-105 {
  padding-top: 105px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-115 {
  padding-top: 115px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-125 {
  padding-top: 125px;
}
.pt-130 {
  padding-top: 130px;
}
.pt-135 {
  padding-top: 135px;
}
.pt-140 {
  padding-top: 140px;
}
.pt-145 {
  padding-top: 145px;
}
.pt-150 {
  padding-top: 150px;
}
.pt-155 {
  padding-top: 155px;
}
.pt-160 {
  padding-top: 160px;
}
.pt-165 {
  padding-top: 165px;
}
.pt-170 {
  padding-top: 170px;
}
.pt-175 {
  padding-top: 175px;
}
.pt-180 {
  padding-top: 180px;
}
.pt-185 {
  padding-top: 185px;
}
.pt-190 {
  padding-top: 190px;
}
.pt-195 {
  padding-top: 195px;
}
.pt-200 {
  padding-top: 200px;
}
.pt-205 {
  padding-top: 205px;
}
.pt-210 {
  padding-top: 210px;
}
.pt-215 {
  padding-top: 215px;
}
.pt-220 {
  padding-top: 220px;
}
.pt-225 {
  padding-top: 225px;
}
.pt-230 {
  padding-top: 230px;
}
.pt-235 {
  padding-top: 235px;
}
.pt-240 {
  padding-top: 240px;
}
.pt-245 {
  padding-top: 245px;
}
.pt-250 {
  padding-top: 250px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-35 {
  padding-bottom: 35px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-55 {
  padding-bottom: 55px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-65 {
  padding-bottom: 65px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-85 {
  padding-bottom: 85px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-95 {
  padding-bottom: 95px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-105 {
  padding-bottom: 105px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-115 {
  padding-bottom: 115px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-125 {
  padding-bottom: 125px;
}
.pb-130 {
  padding-bottom: 130px;
}
.pb-135 {
  padding-bottom: 135px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pb-145 {
  padding-bottom: 145px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pb-155 {
  padding-bottom: 155px;
}
.pb-160 {
  padding-bottom: 160px;
}
.pb-165 {
  padding-bottom: 165px;
}
.pb-170 {
  padding-bottom: 170px;
}
.pb-175 {
  padding-bottom: 175px;
}
.pb-180 {
  padding-bottom: 180px;
}
.pb-185 {
  padding-bottom: 185px;
}
.pb-190 {
  padding-bottom: 190px;
}
.pb-195 {
  padding-bottom: 195px;
}
.pb-200 {
  padding-bottom: 200px;
}
.pb-205 {
  padding-bottom: 205px;
}
.pb-210 {
  padding-bottom: 210px;
}
.pb-215 {
  padding-bottom: 215px;
}
.pb-220 {
  padding-bottom: 220px;
}
.pb-225 {
  padding-bottom: 225px;
}
.pb-230 {
  padding-bottom: 230px;
}
.pb-235 {
  padding-bottom: 235px;
}
.pb-240 {
  padding-bottom: 240px;
}
.pb-245 {
  padding-bottom: 245px;
}
.pb-250 {
  padding-bottom: 250px;
}
/* =========================================
   IMAGE REVEAL HOVER CSS
   ========================================= */
.tg-img-reveal[data-fx="1"]::after,
.tg-img-reveal[data-fx="2"]::after {
  content: "";
  z-index: -1;
  width: 100%;
  bottom: 0.25rem;
  left: 0;
  position: absolute;
  height: 2px;
  background: currentColor;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition: transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  text-align: center;
}
.tg-img-reveal[data-fx="1"]::after,
.tg-img-reveal[data-fx="2"]::after {
  bottom: 0;
}
.tg-img-reveal[data-fx="1"]:hover::after,
.tg-img-reveal[data-fx="2"]:hover::after {
  transform: scale3d(1, 1, 1);
}
.tg-img-reveal[data-fx="6"]::after {
  content: "";
  z-index: -1;
  width: 100%;
  bottom: 0.25rem;
  left: 0;
  position: absolute;
  height: 2px;
  background: currentColor;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}
.tg-img-reveal[data-fx="6"]::after {
  bottom: 0;
}
.tg-img-reveal[data-fx="6"]:hover::after {
  transform: scale3d(1, 1, 1);
}
.tg-img-reveal[data-fx="14"]::after {
  content: "";
  z-index: -1;
  width: 100%;
  bottom: 0.25rem;
  left: 0;
  position: absolute;
  height: 2px;
  background: currentColor;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
}
.tg-img-reveal[data-fx="14"]::after {
  bottom: 0;
}
.tg-img-reveal[data-fx="14"]:hover::after {
  animation: loop 0.5s infinite;
}
@keyframes loop {
  0% {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
  }
  50% {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
  51% {
    transform-origin: 100% 50%;
  }
  100% {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
  }
}
.tg-img-reveal-wrapper {
  position: fixed;
  width: 385px;
  height: auto;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9;
}
.tg-img-reveal-wrapper__inner,
.tg-img-reveal-wrapper__img {
  width: 100%;
  height: 100%;
  position: relative;
}
.tg-img-reveal-wrapper__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #181314;
}
.tg-img-reveal-wrapper__img {
  background-size: cover;
  background-position: 50% 50%;
}
.test-2 {
  padding: 50px;
  background-color: #292930;
}
.tg-hover-wrapper {
  display: inline-block;
  background: #fff;
  padding: 35px 30px;
  text-align: center;
}
.tg-hover-wrapper .tgbanner__content-meta {
  margin: 0 0 6px;
  justify-content: center;
}
.tg-hover-wrapper .tg-hover-title {
  margin: 0 0;
  font-size: 20px;
  line-height: 1.4;
}
/* =========================================
   PAGE STYLES CSS (CONSOLIDATED)
   ========================================= */
/**
 * ============================================================================
 * PAGE STYLES - Ryuki8 Website
 * ============================================================================
 * 
 * Este ficheiro contém todos os estilos específicos das páginas,
 * extraídos e consolidados dos ficheiros HTML individuais.
 * 
 * ÍNDICE:
 * 1. Dashboard Area & Base Layout
 * 2. User Profile Card
 * 3. Statistics Cards
 * 4. Earnings & Sponsor Cards
 * 5. Quick Links
 * 6. Network Components
 * 7. NFT Cards
 * 8. Form Styles (Login/Register)
 * 9. Coming Soon Page
 * 10. History Page
 * 11. Profile Page
 * 12. My NFTs Page
 * 13. Modal Styles
 * 14. Wallet Balance (Header)
 * 15. Pagination
 * 16. Utility Classes
 * 
 * ============================================================================
 */

/* ============================================================================
   1. DASHBOARD AREA & BASE LAYOUT
   Estilos base para a área principal do dashboard
   ============================================================================ */

.dashboard-area {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  min-height: 100vh;
  position: relative;
}

.dashboard-area::before {
  display: none;
}

.dashboard-area .container {
  position: relative;
  z-index: 1;
}

/* Page Title - Títulos de página */
.page-title {
  margin-bottom: 30px;
}

.page-title h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 15px;
}

/* ============================================================================
   2. USER PROFILE CARD
   Card de perfil do utilizador no sidebar
   ============================================================================ */

.user-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* User Avatar - Imagem do utilizador com efeito glow */
.user-avatar {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
}

.user-avatar::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--tg-theme-primary),
    #6a11cb,
    #ff6b6b
  );
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.user-avatar img {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  z-index: 1;
}

/* Avatar Upload Button - Botão para upload de foto */
.user-avatar-upload {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #fff;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.user-avatar-upload:hover {
  transform: scale(1.15) rotate(15deg);
}

.user-avatar-upload i {
  color: #fff;
  font-size: 14px;
}

/* User Name & Email */
.user-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--tg-heading-color);
  background: linear-gradient(135deg, #1a1a2e, var(--tg-theme-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.user-email {
  color: var(--tg-body-color);
  margin-bottom: 25px;
  font-size: 14px;
}

/* Wallet Connect Button */
.wallet-connect-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tg-theme-primary) 0%, #6a11cb 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wallet-connect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(106, 17, 203, 0.5);
}

/* Wallet Address Display */
.wallet-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 12px;
  color: #2e7d32;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #a5d6a7;
}

.wallet-address i {
  color: #2e7d32;
  font-size: 16px;
}

/* User Stats Grid */
.user-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.user-stat-item {
  text-align: center;
  padding: 18px 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.user-stat-item:hover {
  transform: scale(1.03);
  border-color: var(--tg-theme-primary);
  box-shadow: 0 5px 20px rgba(106, 17, 203, 0.1);
}

.user-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--tg-theme-primary);
  margin-bottom: 5px;
}

.user-stat-label {
  font-size: 10px;
  color: var(--tg-body-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================================================
   3. STATISTICS CARDS
   Cards de estatísticas no dashboard
   ============================================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* Renegade Stats Row */
.renegade-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .renegade-stats-row {
    grid-template-columns: 1fr;
  }
}

/* Stat Card */
.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tg-theme-primary), #6a11cb);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0e6ff 0%, #e8deff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  transform: scale(1.1) rotate(5deg);
}

.stat-card:hover .stat-card-icon i {
  color: #fff;
}

.stat-card-icon i {
  font-size: 22px;
  color: var(--tg-theme-primary);
}

.stat-card-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--tg-heading-color);
  margin-bottom: 5px;
}

.stat-card-label {
  font-size: 12px;
  color: var(--tg-body-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   4. EARNINGS & SPONSOR CARDS
   Cards de ganhos e patrocinador
   ============================================================================ */

.earnings-card {
  background: linear-gradient(
    135deg,
    var(--tg-theme-primary) 0%,
    #6a11cb 50%,
    #4a0e96 100%
  );
  border-radius: 20px;
  padding: 35px;
  color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(106, 17, 203, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.earnings-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.earnings-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(106, 17, 203, 0.45);
}

.earnings-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 10px;
  font-weight: 600;
}

.earnings-value {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
}

.earnings-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.earnings-progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.earnings-progress-fill {
  height: 100%;
  background: #fff;
  border-radius: 5px;
  transition: width 0.5s ease;
}

/* Sponsor Card */
.sponsor-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sponsor-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-heading-color);
  margin-bottom: 25px;
}

.sponsor-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--tg-theme-primary);
}

.sponsor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.sponsor-details h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--tg-heading-color);
}

.sponsor-details span {
  font-size: 14px;
  color: var(--tg-body-color);
}

/* ============================================================================
   5. QUICK LINKS
   Links rápidos do dashboard
   ============================================================================ */

.quick-links-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .quick-links-row {
    grid-template-columns: 1fr;
  }
}

.quick-link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
}

.quick-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
  color: #fff;
}

.quick-link-card.network {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
}

.quick-link-card.network:hover {
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
}

.quick-link-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.quick-link-text h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.quick-link-text span {
  font-size: 13px;
  opacity: 0.9;
}

.quick-link-arrow {
  font-size: 18px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* ============================================================================
   6. NETWORK COMPONENTS
   Componentes da rede de referência
   ============================================================================ */

.network-area {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  min-height: 100vh;
  position: relative;
}

.network-area::before {
  display: none;
}

.network-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.network-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-heading-color);
  margin-bottom: 25px;
}

.network-title span {
  font-weight: 400;
  font-size: 14px;
  color: var(--tg-body-color);
}

/* Network Tree */
.network-tree {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.network-member {
  border-bottom: 1px solid #e0e0e0;
}

.network-member:last-child {
  border-bottom: none;
}

.network-member-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  gap: 15px;
}

.network-member-header:hover {
  background: #f8f9fa;
}

.network-member-header.has-children::before {
  content: "\f078";
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--tg-body-color);
  transition: 0.3s;
  width: 20px;
}

.network-member-header.has-children.expanded::before {
  transform: rotate(180deg);
}

.network-member-header:not(.has-children)::before {
  content: "";
  width: 20px;
}

.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.member-info span {
  font-size: 12px;
  color: var(--tg-body-color);
}

.member-level {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.member-level.level-1 {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.member-level.level-2 {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.member-level.level-3 {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.member-level.level-4 {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.member-stats {
  text-align: right;
}

.member-stats .nfts {
  font-size: 13px;
  font-weight: 600;
}

.member-stats .referrals {
  font-size: 11px;
  color: var(--tg-body-color);
}

.network-member-children {
  padding-left: 30px;
  background: #fafafa;
}

.network-member-children.expanded,
.network-member-children.show {
  display: block;
}

/* Network Stats */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tg-heading-color);
  margin-bottom: 25px;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .network-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .network-stats {
    grid-template-columns: 1fr;
  }
}

.network-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.network-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.level-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.network-stat-card.level-1 .level-badge {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.network-stat-card.level-2 .level-badge {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.network-stat-card.level-3 .level-badge {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.network-stat-card.level-4 .level-badge {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--tg-heading-color);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  color: var(--tg-body-color);
  font-weight: 500;
}

/* ============================================================================
   7. NFT CARDS
   Cards de NFTs nas páginas de coleção
   ============================================================================ */

.nft-card {
  background: var(--tg-common-color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: 0.3s;
}

.nft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nft-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.nft-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.nft-card:hover .nft-card-image img {
  transform: scale(1.05);
}

.nft-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--tg-theme-primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.nft-card-badge.earth {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.nft-card-badge.fire {
  background: linear-gradient(135deg, #ff5722, #d32f2f);
}

.nft-card-badge.water {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.nft-card-badge.air {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.nft-card-content {
  padding: 20px;
}

.nft-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--tg-heading-color);
}

.nft-card-title a {
  color: inherit;
}

.nft-card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.nft-card-price .price-label {
  font-size: 12px;
  color: var(--tg-body-color);
}

.nft-card-price .price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--tg-theme-primary);
}

.nft-card-actions {
  display: flex;
  gap: 10px;
}

.nft-card-actions .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  transition: all 0.3s ease;
}

.nft-card-actions .btn-primary-fill {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff !important;
  border: none;
}

.nft-card-actions .btn-primary-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.nft-card-actions .btn-outline {
  background: transparent;
  color: var(--tg-theme-primary) !important;
  border: 2px solid var(--tg-theme-primary);
}

.nft-card-actions .btn-outline:hover {
  background: var(--tg-theme-primary);
  color: #fff !important;
}

/* NFT Stats */
.nft-card-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.nft-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nft-stat-label {
  font-size: 13px;
  color: var(--tg-body-color);
}

.nft-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--tg-heading-color);
}

.nft-stat-value.earnings {
  color: #28a745;
}

/* NFT Progress Bar */
.nft-progress {
  margin: 15px 0;
}

.nft-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--tg-body-color);
}

.nft-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.nft-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tg-theme-primary), #6a11cb);
  border-radius: 3px;
}

/* Collection Tabs */
.collection-tabs {
  display: flex;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 0;
  flex-wrap: wrap;
}

.collection-tabs .nav-item {
  margin: 0;
}

.collection-tabs .nav-link {
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-heading-color);
  transition: all 0.3s ease;
}

.collection-tabs .nav-link:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: rgba(138, 43, 226, 0.3);
  color: var(--tg-theme-primary);
}

.collection-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.tab-content {
  min-height: 300px;
}

.tab-pane .row {
  margin-top: 0;
}

/* ============================================================================
   8. FORM STYLES (LOGIN/REGISTER)
   Estilos para páginas de autenticação
   ============================================================================ */

.login-area {
  padding: 120px 0;
  background-image: url("../img/bg/banner_bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.login-wrap {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  margin: 0 auto;
}

.login-title {
  text-align: center;
  margin-bottom: 35px;
}

.login-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--tg-heading-color);
}

.login-title p {
  color: var(--tg-body-color);
}

.form-grp {
  margin-bottom: 20px;
}

.form-grp label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--tg-heading-color);
}

.form-grp input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s;
}

.form-grp input:focus {
  border-color: var(--tg-theme-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.login-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.login-action .remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-action a {
  color: var(--tg-theme-primary);
  font-weight: 600;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.login-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.login-footer p {
  color: var(--tg-body-color);
}

.login-footer a {
  color: var(--tg-theme-primary);
  font-weight: 600;
}

/* Register Info Box */
.register-info {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(106, 17, 203, 0.05)
  );
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ============================================================================
   9. COMING SOON PAGE
   Página de Em Breve
   ============================================================================ */

.coming-soon-area {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coming-soon-content {
  max-width: 600px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.coming-soon-icon i {
  font-size: 45px;
  color: #fff;
}

.coming-soon-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--tg-heading-color);
  margin-bottom: 15px;
}

.coming-soon-subtitle {
  font-size: 18px;
  color: var(--tg-body-color);
  margin-bottom: 30px;
}

.coming-soon-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-theme-primary);
  font-weight: 600;
  transition: 0.3s;
}

.back-btn:hover {
  color: var(--tg-heading-color);
}

/* ============================================================================
   10. HISTORY PAGE
   Página de histórico de transações
   ============================================================================ */

.history-card {
  background: var(--tg-common-color-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.history-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.history-tab {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  background: #f8f9fa;
  color: var(--tg-body-color);
}

.history-tab:hover,
.history-tab.active {
  background: var(--tg-theme-primary);
  color: #fff;
  border-color: var(--tg-theme-primary);
}

.history-table {
  width: 100%;
  border-collapse: collapse;
}

.history-table th {
  text-align: left;
  padding: 12px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tg-body-color);
  font-weight: 600;
  border-bottom: 2px solid #eee;
}

.history-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.history-table tr:last-child td {
  border-bottom: none;
}

.history-table tr:hover {
  background: #f8f9fa;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.completed {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.status-badge.pending {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #f57c00;
}

.status-badge.cancelled {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

/* Type Badges */
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.type-badge.purchase {
  background: rgba(138, 43, 226, 0.1);
  color: var(--tg-theme-primary);
}

.type-badge.earnings {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

.type-badge.referral {
  background: rgba(33, 150, 243, 0.1);
  color: #1976d2;
}

.type-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.type-icon.purchase {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
}

.type-icon.earnings {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
}

.type-icon.referral {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: #fff;
}

/* ============================================================================
   11. PROFILE PAGE
   Estilos específicos da página de perfil
   ============================================================================ */

.profile-area {
  padding: 100px 0 80px;
  background: #f8f9fa;
  min-height: 100vh;
}

.profile-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.profile-tab {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.profile-tab:hover,
.profile-tab.active {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: #fff;
}

.profile-content {
  background: var(--tg-common-color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.profile-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  color: var(--tg-heading-color);
}

.profile-form .form-group {
  margin-bottom: 20px;
}

.profile-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--tg-heading-color);
}

.profile-form input,
.profile-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.profile-form input:focus,
.profile-form select:focus {
  border-color: var(--tg-theme-primary);
  outline: none;
}

.profile-form input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

.profile-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.profile-actions .btn {
  flex: 1;
}

/* ============================================================================
   12. MY NFTS PAGE
   Página de gestão de NFTs do utilizador
   ============================================================================ */

.my-nfts-area {
  padding: 100px 0 80px;
  background: #f8f9fa;
  min-height: 100vh;
}

.page-header {
  margin-bottom: 40px;
}

.page-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--tg-heading-color);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--tg-body-color);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-theme-primary);
  font-weight: 600;
  margin-bottom: 20px;
  transition: 0.3s;
}

.back-link:hover {
  color: var(--tg-heading-color);
}

.nft-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.summary-card {
  background: var(--tg-common-color-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.summary-card i {
  font-size: 30px;
  color: var(--tg-theme-primary);
  margin-bottom: 15px;
}

.summary-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--tg-heading-color);
}

.summary-card p {
  font-size: 14px;
  color: var(--tg-body-color);
  margin: 0;
}

.filters-bar {
  background: var(--tg-common-color-white);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filters-bar select,
.filters-bar input {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}

.filters-bar select {
  min-width: 150px;
}

.filters-bar input {
  flex: 1;
  min-width: 200px;
}

/* ============================================================================
   13. MODAL STYLES
   Estilos para modais
   ============================================================================ */

.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 25px;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 20px 25px;
}

/* Transfer Modal */
.transfer-nft-preview {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}

.transfer-nft-preview img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.transfer-nft-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.transfer-nft-info p {
  font-size: 13px;
  color: var(--tg-body-color);
  margin: 0;
}

.transfer-form .form-group {
  margin-bottom: 20px;
}

.transfer-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.transfer-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

/* Purchase Modal Styles */
.purchase-modal-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}

.purchase-summary {
  padding: 20px;
  background: var(--tg-common-color-white);
  border-radius: 10px;
  border: 1px solid #eee;
}

.purchase-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.purchase-summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================================================
   14. WALLET BALANCE (HEADER)
   Estilos do saldo da carteira no header
   ============================================================================ */

.wallet-balance {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #201053, #6a11cb);
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallet-balance:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
}

.wallet-balance i {
  font-size: 16px;
  color: #fff;
}

.balance-amount {
  color: #fff;
  font-weight: 700;
}

/* ============================================================================
   15. PAGINATION
   Estilos para paginação
   ============================================================================ */

.pagination-styled {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination-styled .page-link {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: var(--tg-heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination-styled .page-link:hover,
.pagination-styled .page-item.active .page-link {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  border-color: var(--tg-theme-primary);
  color: #fff;
}

/* ============================================================================
   16. INVITE SECTION
   Secção de convite/referência
   ============================================================================ */

.invite-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.invite-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.invite-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.invite-header-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.invite-header-icon i {
  font-size: 24px;
  color: #fff;
}

.invite-header-text h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.invite-header-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.invite-content {
  position: relative;
  z-index: 1;
}

.invite-method-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.invite-method-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tg-heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invite-method-title i {
  color: var(--tg-theme-primary);
}

.invite-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.invite-input-group input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.invite-input-group input:focus {
  border-color: var(--tg-theme-primary);
  outline: none;
}

.invite-input-group .btn-send {
  padding: 14px 25px;
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invite-input-group .btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(138, 43, 226, 0.35);
}

.invite-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  color: #999;
  font-size: 13px;
}

.invite-divider::before,
.invite-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.invite-link-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
}

.invite-link-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invite-link-box {
  display: flex;
  gap: 10px;
}

.invite-link-box input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  background: #fff;
  color: var(--tg-heading-color);
  font-weight: 500;
}

.invite-link-box .btn-copy {
  padding: 14px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invite-link-box .btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

.invite-share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .invite-share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.invite-share-btn {
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
}

.invite-share-btn:hover {
  transform: translateY(-2px);
}

.invite-share-btn.whatsapp {
  background: #25d366;
}

.invite-share-btn.telegram {
  background: #0088cc;
}

.invite-share-btn.twitter {
  background: #1da1f2;
}

.invite-share-btn.email {
  background: #ea4335;
}

/* ============================================================================
   17. UTILITY CLASSES
   Classes utilitárias para substituir estilos inline
   ============================================================================ */

.user-logged-in {
  display: none;
}

.user-not-logged {
  display: block;
}

.logged-in .user-logged-in {
  display: block;
}

.logged-in .user-not-logged {
  display: none;
}

.d-hidden {
  display: none !important;
}

.d-visible {
  display: block !important;
}

.d-flex-visible {
  display: flex !important;
}

/* Footer border utility */
.footer__logo-wrap--bordered {
  border-top: 1px solid #3f3f3f;
  padding-top: 20px;
}

/* Responsive wallet section */
@media (max-width: 768px) {
  .wallet-section {
    display: none;
  }

  .invite-input-group,
  .invite-link-box {
    flex-direction: column;
  }
}

/* ============================================================================
   18. RANKINGS PAGE
   Estilos específicos da página de rankings
   ============================================================================ */

/* Ranking Banner - Banner de convite no topo */
.ranking-banner {
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
  margin-bottom: 30px;
}

.ranking-banner-title {
  color: #fff;
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ranking-banner-text {
  color: #fff;
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 16px;
}

.ranking-banner-btn {
  background: #fff;
  color: #ffa500;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.ranking-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ranking Card Container */
.ranking-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Ranking Tabs */
.ranking-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.ranking-tab {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.ranking-tab.active {
  background: #201053;
  color: #fff;
}

.ranking-tab:not(.active) {
  background: #f0f0f0;
  color: #777;
}

.ranking-tab:hover:not(.active) {
  background: #e0e0e0;
}

/* Ranking Rules Toggle */
.ranking-rules-toggle {
  background: transparent;
  border: 1px solid #eee;
  color: #666;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ranking-rules-toggle:hover {
  background: #f0f0f0;
}

/* Ranking Rules Card */
.ranking-rules-card {
  border-radius: 15px;
}

.ranking-rules-title {
  color: #201053;
  font-size: 14px;
  margin-bottom: 15px;
}

.ranking-rules-grid {
  font-size: 13px;
  color: #555;
}

.ranking-rule-item {
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Ranking Content */
.ranking-content {
  display: none;
}

.ranking-content.active {
  display: block;
}

/* Ranking Info Bar */
.ranking-info {
  background: transparent;
  padding: 10px 0;
}

.ranking-info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #666;
  font-size: 13px;
}

.ranking-info-badge {
  background: rgba(32, 16, 83, 0.05);
  padding: 5px 12px;
  border-radius: 20px;
}

.ranking-info-badge.highlight {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
  font-weight: 700;
}

/* Ranking Table */
.ranking-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.ranking-table thead tr {
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
}

.ranking-table th {
  border: none;
  padding: 15px;
  font-weight: 600;
}

.ranking-table th:last-child {
  text-align: right;
}

.ranking-table td {
  border: none;
  padding: 15px;
}

/* Ranking Row Styles */
.ranking-row-gold,
.ranking-row-silver,
.ranking-row-bronze,
.ranking-row-user,
.ranking-row-normal {
  transition: 0.3s;
}

.ranking-row-gold:hover,
.ranking-row-silver:hover,
.ranking-row-bronze:hover {
  transform: translateX(5px);
}

.ranking-row-gold {
  background: linear-gradient(90deg, #fff9e6 0%, #fff 100%);
  border-left: 3px solid #ffa500;
}

.ranking-row-silver {
  background: linear-gradient(90deg, #f2f2f2 0%, #fff 100%);
  border-left: 3px solid #c0c0c0;
}

.ranking-row-bronze {
  background: linear-gradient(90deg, #fff0e6 0%, #fff 100%);
  border-left: 3px solid #cea37e;
}

.ranking-row-user {
  background: linear-gradient(90deg, #f0ebff 0%, #fff 100%);
  border-left: 3px solid #201053;
}

.ranking-row-normal {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Ranking Position */
.ranking-position {
  font-weight: 800;
  padding: 20px 15px;
}

.ranking-position-gold {
  color: #ffa500;
  font-size: 18px;
}

.ranking-position-silver {
  color: #c0c0c0;
  font-size: 16px;
}

.ranking-position-bronze {
  color: #cea37e;
  font-size: 16px;
}

.ranking-position-user {
  color: var(--tg-theme-primary);
  font-size: 18px;
}

.ranking-position-normal {
  color: #777;
  font-weight: 700;
}

/* Ranking User Info */
.ranking-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ranking-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.ranking-user-name {
  font-weight: 700;
  color: #333;
}

.ranking-user-you {
  background: #201053;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}

/* Ranking Points */
.ranking-points {
  font-weight: 700;
  color: #201053;
}

/* Ranking Time */
.ranking-time {
  text-align: right;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .ranking-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .ranking-table {
    font-size: 12px;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 10px 8px;
  }
}

/* Ranking User Row Sticky */
.ranking-row-user-sticky {
  background: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  position: sticky;
  bottom: 0;
  border: 2px solid var(--tg-theme-primary);
  z-index: 100;
}

.ranking-row-user-sticky td:first-child {
  border-radius: 15px 0 0 15px;
}

.ranking-row-user-sticky td:last-child {
  border-radius: 0 15px 15px 0;
}

/* Ranking User Avatar highlighted */
.ranking-user-avatar--highlighted {
  width: 40px;
  height: 40px;
  border: 2px solid var(--tg-theme-primary);
  padding: 2px;
}

/* Ranking Points Highlight */
.ranking-points--highlight {
  font-weight: 800;
  color: var(--tg-theme-primary);
  font-size: 16px;
}

/* Ranking Prize Badges */
.ranking-prize-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.ranking-prize-badge.usdt {
  background: rgba(0, 198, 255, 0.1);
  color: #00c6ff;
}

.ranking-prize-badge.nft {
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}

.ranking-prize-badge.fire {
  background: rgba(255, 87, 34, 0.1);
  color: #ff5722;
}

.ranking-prize-badge.gold {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

/* ============================================================================
   17. KIHON PAGE - PAGINATION & MODALS
   ============================================================================ */

/* Custom Pagination */
.pagination-custom {
  gap: 5px;
}

.pagination-custom .page-link {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: var(--tg-heading-color);
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.pagination-custom .page-link--nav {
  padding: 10px 15px;
}

.pagination-custom .page-item.active .page-link {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: #fff;
}

.pagination-custom .page-link:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: #fff;
}

/* Custom Modal Styles */
.modal-custom .modal-content {
  border-radius: 15px;
  border: none;
}

.modal-custom .modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 25px;
}

.modal-custom .modal-title {
  font-weight: 700;
}

.modal-custom .modal-body {
  padding: 25px;
}

.modal-custom .modal-footer {
  border-top: 1px solid #eee;
  padding: 20px 25px;
  gap: 10px;
}

.modal-custom .modal-footer .btn {
  flex: 1;
}

/* NFT Preview Card (in modal) */
.nft-preview-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}

.nft-preview-image {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.nft-preview-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.nft-preview-label {
  margin: 0;
  color: var(--tg-body-color);
  font-size: 14px;
}

.nft-preview-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--tg-theme-primary);
  margin: 5px 0 0;
}

/* Wallet Balance Card (in modal) */
.modal-wallet-card {
  background: linear-gradient(135deg, var(--tg-theme-primary), #6a11cb);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.modal-wallet-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-wallet-label {
  margin: 0;
  opacity: 0.9;
  font-size: 13px;
  color: #fff !important;
}

.modal-wallet-value {
  margin: 5px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #fff !important;
}

.modal-wallet-icon {
  font-size: 40px;
  opacity: 0.5;
  color: #fff;
}

/* Transaction Summary */
.transaction-summary {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
}

.transaction-summary-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.transaction-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.transaction-row:last-child {
  margin-bottom: 0;
}

.transaction-label {
  color: var(--tg-body-color);
}

.transaction-value {
  font-weight: 600;
}

.transaction-total-label {
  font-weight: 700;
}

.transaction-total-value {
  font-weight: 700;
  color: var(--tg-theme-primary);
  font-size: 18px;
}

.transaction-divider {
  margin: 15px 0;
}

/* NFT Details Modal */
.nft-details-image-wrap {
  text-align: center;
  margin-bottom: 25px;
}

.nft-details-image {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nft-details-name {
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.nft-details-collection {
  text-align: center;
  color: var(--tg-theme-primary);
  font-weight: 600;
  margin-bottom: 25px;
}

/* NFT Stats Card */
.nft-stats-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.nft-stats-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.nft-stats-row:last-child {
  border-bottom: none;
}

.nft-stats-label {
  color: var(--tg-body-color);
}

.nft-stats-value {
  font-weight: 700;
  color: var(--tg-heading-color);
}

.nft-stats-value--success {
  color: #28a745;
}

/* ============================================================================
   18. WALLET MISMATCH MODAL
   ============================================================================ */

.wallet-modal .modal-content {
  background-color: var(--tg-dark-color-2);
  border: 1px solid var(--tg-border-1);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.wallet-modal .modal-header {
  border-bottom: 1px solid var(--tg-border-1);
  padding: 25px 30px;
  justify-content: center;
  position: relative;
}

.wallet-modal .modal-title {
  color: var(--tg-common-color-white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-modal .modal-title i {
  color: var(--tg-common-color-yellow);
}

.wallet-modal .modal-body {
  padding: 40px 30px;
}

.wallet-modal .modal-text-primary {
  font-size: 18px;
  color: var(--tg-heading-color);
  margin-bottom: 10px;
}

.wallet-modal .modal-text-secondary {
  font-size: 14px;
  margin-bottom: 0;
}

.wallet-info-box {
  background: var(--tg-dark-color-1);
  border: 1px solid var(--tg-border-1);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  text-align: left;
}

.wallet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
}

.wallet-row:last-child {
  margin-bottom: 0;
}

.wallet-label {
  color: var(--tg-body-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-label i.valid {
  color: var(--tg-common-color-green);
}

.wallet-label i.invalid {
  color: var(--tg-common-color-red);
}

.wallet-address {
  color: var(--tg-heading-color);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 6px;
}

.wallet-address.valid {
  color: var(--tg-common-color-green);
  background: rgba(23, 198, 153, 0.1);
}

.wallet-address.invalid {
  color: var(--tg-common-color-red);
  background: rgba(220, 53, 69, 0.1);
}

.modal-action-text {
  color: var(--tg-body-color);
  font-size: 16px;
}
/* Register Info Box */
.register-info-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.register-info-box p {
  margin: 0 0 8px 0;
}

.register-info-box p:last-child {
  margin: 0;
}

.register-info-box i {
  color: var(--tg-theme-primary);
  margin-right: 6px;
}
