/*============================================

   Theme Name: Oxinex - Health Supplement HTML Template
   Author : ThemeGenix
   Support: themegenix@gmail.com
   Description: Oxinex - Health Supplement HTML Template
   Version: 1.0

==============================================*/
/* CSS Index
==============================================

    01. Theme Default CSS
    02. Header
    03. Slider
    04. Banner
    05. Features
    06. About
    07. Counter
    08. Services
    09. Cta
    10. Team
    11. Project
    12. Faq
    13. Work
    14. Video
    15. History
    16. Community
    17. Choose
    18. Client
    19. Office
    20. Support
    21. Consultation
    22. Company
    23. Testimonial
    24. Shop
    25. Blog
    26. Brand
    27. Contact
    28. Footer

==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap");
:root {
  --tg-body-font-family: 'Roboto', sans-serif;
  --tg-heading-font-family: 'Oswald', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.62;
  --tg-heading-line-height: 1.2;
  --tg-body-color: #777777;
  --tg-heading-color: #222222;
  --tg-theme-primary: #933115;
  --tg-theme-secondary: #222222;
  --tg-color-dark-blue: #0E104B;
  --tg-color-yellow-light: #FAA432;
  --tg-color-yellow-light-2: #FFE600;
  --tg-color-orange-light: #FF3D00;
  --tg-color-brown-light: #C9504A;
  --tg-color-white-default: #ffffff;
  --tg-color-gray-1: #F9F4F1;
  --tg-color-gray-2: #F5F5F5;
  --tg-color-dark: #1A1A1A;
  --tg-color-dark-2: #282828;
  --tg-color-dark-3: #1F1F1F;
  --tg-border-1: #D9D9D9;
  --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;
}

/*=============================
	Typography css start
===============================*/
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);
}

body.theme__orange {
  --tg-theme-primary: #FF3D00;
}

body.theme__brown {
  --tg-theme-primary: #C9504A;
}

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-medium);
  line-height: var(--tg-heading-line-height);
  text-transform: uppercase;
}

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 {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  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);
}

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-color-white-default);
  text-shadow: none;
}

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

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

.p-relative {
  position: relative;
  z-index: 1;
}

/*=============================
    - Input Placeholder
===============================*/
textarea,
input {
  width: 100%;
  background: var(--tg-color-white-default);
  border: 1px solid rgba(34, 34, 34, 0.15);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--tg-heading-color);
  padding: 11px 18px;
  height: 50px;
  display: block;
}
textarea::placeholder,
input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}

textarea {
  min-height: 98px;
  max-height: 98px;
}

*::-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;
}

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

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

.gutter-20 {
  --bs-gutter-x: 20px;
}

.gutter-24 {
  --bs-gutter-x: 24px;
}

@media (max-width: 767.98px) {
  .gutter-x-xs-20 {
    --bs-gutter-x: 20px;
  }
}

.container {
  max-width: 1320px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}
@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;
  }
}

.custom-container {
  max-width: 1650px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1650px;
  }
}
@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;
  }
}

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

/*=============================
	 Button style
===============================*/
.tg-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tg-btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-color-white-default) none repeat scroll 0 0;
  border: none;
  color: var(--tg-heading-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: var(--tg-fw-bold);
  font-family: var(--tg-body-font-family);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 8px 8px 8px 25px;
  text-align: center;
  text-transform: capitalize;
  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;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  --arrow-hover-move-x: -110%;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.tg-btn span {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
  -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;
}
.tg-btn svg {
  transition: all 0.3s ease-out 0s;
}
.tg-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}
.tg-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.tg-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}
.tg-btn:hover, .tg-btn:focus-visible {
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
}
.tg-btn:hover svg path:nth-of-type(1), .tg-btn:focus-visible svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.tg-btn:hover svg path:nth-of-type(2), .tg-btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.tg-btn:hover span, .tg-btn:focus-visible span {
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
}
.tg-btn.red-btn {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.tg-btn.red-btn span {
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
}
.tg-btn.red-btn:hover {
  background: var(--tg-heading-color);
}

.tg-btn-two {
  border: 1px solid rgba(34, 34, 34, 0.15);
  background: transparent;
  padding: 13px 28px;
}
.tg-btn-two:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
}

.tg-btn-three {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 22px 55px;
}
.tg-btn-three:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.tg-btn-three.black-btn {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 17px 22px;
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}
.tg-btn-three.black-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.border-btn {
  border: 1px solid rgba(34, 34, 34, 0.15);
  background: transparent;
  color: var(--tg-heading-color);
  padding: 7px 8px 7px 25px;
}
.border-btn:hover {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

/*=============================
    00. Preloader
===============================*/
#preloader {
  background-color: var(--tg-color-white-default);
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}
#preloader .loader .loader-container {
  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%);
  width: 100px;
  height: 100px;
  border: 3px solid rgba(240, 240, 240, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  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%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tg-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
#preloader .loader .loader-icon {
  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%);
  width: 80px;
  text-align: center;
}
#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 40px;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-color-gray-4);
}

.grey-bg-two {
  background: var(--tg-color-gray-2);
}

.grey-bg-three {
  background: var(--tg-border-5);
}

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

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

/*=============================
	  OffCanvas
===============================*/
.offCanvas-wrap {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 582px;
  padding: 35px 80px 55px;
  transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: var(--tg-color-white-default);
  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: flex;
  flex-direction: column;
}

.offCanvas-toggle {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: rgba(147, 49, 21, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 -40px 30px auto;
  cursor: pointer;
}

.offCanvas-toggle img {
  width: 18px;
}

.offCanvas-content {
  margin-bottom: 80px;
}

.offCanvas-content .title {
  font-size: 43px;
  line-height: 1.17;
  margin-bottom: 28px;
}

.offCanvas-content .title span {
  color: var(--tg-theme-primary);
}

.offCanvas-content p {
  margin-bottom: 0;
}

.offCanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.offCanvas-wrap::-webkit-scrollbar {
  width: 0px;
}

.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;
  background: #000;
}

.offcanvas-menu-visible .offCanvas-overlay {
  opacity: 0.6;
  visibility: visible;
}

.offcanvas-menu-visible .offCanvas-wrap {
  transform: translateX(0);
}

.offcanvas-contact .number {
  font-size: 30px;
  margin: 0 0 5px;
}

.offcanvas-contact .email {
  font-size: 30px;
  margin: 0 0 18px;
}

.offcanvas-contact p {
  margin: 0 0 0;
}

.offcanvas-contact .offcanvas-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.offcanvas-contact .offcanvas-social li {
  margin: 0;
}

.offcanvas-contact .offcanvas-social li a {
  color: var(--tg-heading-color);
}

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

/*=========================
      Breadcrumb
===========================*/
.breadcrumb__bg {
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 230px 0 150px;
  z-index: 1;
}
@media (max-width: 1500px) {
  .breadcrumb__bg {
    padding: 200px 0 120px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__bg {
    padding: 150px 0 120px;
  }
}
.breadcrumb__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #090909;
  opacity: 0.85;
  z-index: -1;
}
.breadcrumb__content {
  text-align: center;
}
.breadcrumb__content .title {
  margin-bottom: 15px;
  font-size: 60px;
  color: var(--tg-color-white-default);
}
@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 45px;
  }
}
.breadcrumb__content .breadcrumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.breadcrumb__content .breadcrumb > * {
  font-size: 20px;
  color: var(--tg-color-white-default);
  font-weight: 400;
  text-transform: capitalize;
}
.breadcrumb__content .breadcrumb > * a {
  color: var(--tg-color-white-default);
}
.breadcrumb__content .breadcrumb > * a:hover {
  color: var(--tg-theme-primary);
}
.breadcrumb__content .breadcrumb .breadcrumb-separator {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-color-white-default);
}
.breadcrumb__shape img {
  position: absolute;
  left: 0;
  bottom: -12%;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .breadcrumb__shape img {
    width: 100px;
    bottom: -4%;
  }
}
.breadcrumb__shape img:nth-child(2) {
  right: 0;
  left: auto;
  bottom: -7%;
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 0;
  z-index: 9;
  color: var(--tg-color-white-default);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-secondary);
  transition: 1s ease;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll__top svg {
  transform: rotate(90deg);
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.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-primary);
  color: var(--tg-color-white-default);
}

/*=============================
	00. Section Title
===============================*/
.section__title .sub-title {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--tg-theme-primary);
  margin-bottom: 12px;
}
.section__title .title {
  font-size: 50px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .section__title .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 40px;
  }
}
.section__title p {
  margin-bottom: 0;
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  .section__title p br {
    display: none;
  }
}
.section__title.white-title .sub-title {
  color: var(--tg-color-white-default);
}
.section__title.white-title .title {
  color: var(--tg-color-white-default);
}
.section__title.white-title p {
  color: #ACAACC;
}

.section__content p {
  margin-bottom: 0;
}

.section__bg-shape span {
  position: absolute;
  width: 100%;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 22px;
  z-index: -1;
}
.section__bg-shape span.top-shape {
  top: -1px;
}
.section__bg-shape span.bottom-shape {
  bottom: -1px;
}

@media (max-width: 991.98px) {
  .section__content.mb-60,
  .section__content.mb-70,
  .section__title.mb-70,
  .section__title.mb-60 {
    margin-bottom: 30px;
  }
}

.section-pt-150 {
  padding-top: 150px;
}
@media (max-width: 991.98px) {
  .section-pt-150 {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pt-150 {
    padding-top: 60px;
  }
}

.section-pb-150 {
  padding-bottom: 150px;
}
@media (max-width: 991.98px) {
  .section-pb-150 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pb-150 {
    padding-bottom: 60px;
  }
}

.section-py-150 {
  padding: 150px 0;
}
@media (max-width: 991.98px) {
  .section-py-150 {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .section-py-150 {
    padding: 60px 0;
  }
}

.section-pt-120 {
  padding-top: 120px;
}
@media (max-width: 991.98px) {
  .section-pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pt-120 {
    padding-top: 60px;
  }
}

.section-pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 991.98px) {
  .section-pb-120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pb-120 {
    padding-bottom: 60px;
  }
}

.section-pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 767.98px) {
  .section-pb-100 {
    padding-bottom: 60px;
  }
}

.section-bg {
  background: var(--tg-color-gray-1);
  position: relative;
  z-index: 1;
}

.section-bg-two {
  background: var(--tg-theme-primary);
  position: relative;
  z-index: 1;
}

.section-bg-three {
  background: var(--tg-color-gray-2);
  position: relative;
  z-index: 1;
}

.section-bg-four {
  background: var(--tg-color-dark-3);
  position: relative;
  z-index: 1;
}

/*=============================
	    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: 15px;
  height: 45px;
  background: var(--tg-color-gray-2);
  color: var(--tg-heading-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.tgmobile__search input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}
.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: 150px;
}
.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.active > a {
  color: var(--tg-theme-primary);
}
.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;
  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-color-gray-1);
  cursor: pointer;
  border-radius: 3px;
  -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::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 285px;
  height: 45px;
}
.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-theme-secondary);
  -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-theme-secondary);
  -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-color-white-default);
}
.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;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 600;
  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;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}
.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 .navigation > li.active > a::before {
  height: 100%;
}
.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tgmobile__menu .close-btn i[class^=flaticon-]:before {
  font-weight: var(--tg-fw-bold) !important;
}
.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: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  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: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--tg-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 5px;
}
.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.tgmobile__menu .tgmenu__action {
  padding: 0 0;
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.tgmobile__menu .tgmenu__action > ul li {
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul .header-btn {
  display: block;
}
.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-color-white-default);
  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-color-white-default);
  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);
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 180s;
  animation-duration: 180s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.alltuchtopdown {
  -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

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

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

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeRight2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeRight2 {
  -webkit-animation-name: fadeRight2;
  animation-name: fadeRight2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
  animation-name: fadeInLeft2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=========================
      Mini Cart
===========================*/
.mini__cart-wrap {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 320px;
  padding: 25px 25px 25px;
  transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: var(--tg-color-white-default);
  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: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini__cart-toggle {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  top: 20px;
  cursor: pointer;
}
.mini__cart-toggle img {
  width: 18px;
}
.mini__cart-toggle img:hover {
  transform: rotate(180deg);
}
.mini__cart-title {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.15);
}
.mini__cart-shop {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.15);
}
.mini__cart-shop p {
  margin-bottom: 8px;
}
.mini__cart-shop p span {
  color: var(--tg-theme-primary);
  font-weight: 500;
}
.mini__cart-shop .progress {
  height: 8px;
}
.mini__cart-shop .progress-bar {
  background-color: var(--tg-theme-primary);
}
.mini__cart-widget {
  height: calc(100vh - 380px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.mini__cart-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 20px 0;
  gap: 15px;
  position: relative;
  padding-right: 25px;
}
.mini__cart-item .thumb {
  width: 45px;
  flex: 0 0 auto;
}
.mini__cart-item .thumb img {
  height: 60px;
}
.mini__cart-item .content .title {
  margin-bottom: 10px;
  font-size: 18px;
}
.mini__cart-item .content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-theme-primary);
}
.mini__cart-item .content p span {
  font-size: 12px;
  color: var(--tg-heading-color);
  margin-left: 3px;
}
.mini__cart-delete {
  position: absolute;
  right: 0;
  top: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini__cart-delete img {
  width: 14px;
}
.mini__cart-delete img:hover {
  opacity: 0.8;
}
.mini__cart-checkout {
  padding: 15px 0 30px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}
.mini__cart-checkout .title {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.mini__cart-checkout-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini__cart-checkout-btn .tg-btn {
  width: 100%;
  background: var(--tg-theme-secondary);
  justify-content: center;
  color: var(--tg-color-white-default);
  padding: 16px 20px;
}
.mini__cart-checkout-btn .tg-btn:hover {
  background: var(--tg-theme-primary);
}
.mini__cart-checkout-btn .tg-btn:nth-child(2) {
  background: var(--tg-theme-primary);
}
.mini__cart-checkout-btn .tg-btn:nth-child(2):hover {
  background: var(--tg-theme-secondary);
}

.mini__cart-wrap::-webkit-scrollbar {
  width: 0px;
}

.headerCart__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;
  background: #000;
}

.headerCart__menu-visible .headerCart__overlay {
  opacity: 0.6;
  visibility: visible;
}

.headerCart__menu-visible .mini__cart-wrap {
  transform: translateX(0);
}

/*=============================
	00. Search
===============================*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--tg-color-white-default);
  backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}
.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 99999999;
}
.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search__input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -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;
  transition-delay: 0.5s;
  opacity: 0;
}
.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--tg-theme-primary);
  transition-delay: 0.3s;
  -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;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tg-heading-color);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search__input input::placeholder {
  font-size: 24px;
}
.search__input button {
  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%);
  font-size: 18px;
  color: var(--tg-theme-primary);
  border: none;
  padding: 0 0;
  background: transparent;
}
.search__close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}
.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  background: transparent;
}
.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -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;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}
.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tg-theme-primary);
  transition: all 0.5s;
}
.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=============================
    	02. Header
===============================*/
.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__top {
  background: var(--tg-color-dark);
  padding: 11px 0;
}
.tg-header__top-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.tg-header__top-content .icon {
  color: var(--tg-color-yellow-light-2);
  line-height: 1;
}
.tg-header__top-content p {
  margin-bottom: 0;
  color: var(--tg-color-white-default);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
}
.tg-header__area {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area {
    padding: 10px 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  display: none;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-white-default);
  border: 1px solid var(--tg-color-white-default);
  -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;
}
@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area .mobile-nav-toggler {
    width: 50px;
    height: 50px;
  }
}
.tg-header__area .mobile-nav-toggler:hover {
  color: var(--tg-color-yellow-light);
  border-color: var(--tg-color-yellow-light);
}
.tg-header__area.sticky-menu {
  padding: 0 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area.sticky-menu {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area.sticky-menu {
    padding: 10px 0;
  }
}
.tg-header__area-two .tgmenu__navbar-wrap > ul > li > a {
  color: var(--tg-body-color);
}
.tg-header__area-two .tgmenu__navbar-wrap > ul > li > a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__navbar-wrap > ul > li:hover > a, .tg-header__area-two .tgmenu__navbar-wrap > ul > li.active > a {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__navbar-wrap > ul > li .sub-menu > li > a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__navbar-wrap > ul > li .sub-menu > li.active a {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__action > ul li .cart-count {
  color: var(--tg-heading-color);
}
.tg-header__area-two .tgmenu__action > ul li .cart-count:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__action > ul li .cart-count span {
  background: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__action > ul li.header-search a {
  color: var(--tg-heading-color);
}
.tg-header__area-two .tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__action > ul li.header__offCanvas a {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
}
.tg-header__area-two .tgmenu__action > ul li.header__offCanvas a:hover {
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
  border-color: var(--tg-heading-color);
}
.tg-header__area-two .mobile-nav-toggler {
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
}
.tg-header__area-two.sticky-menu .mobile-nav-toggler {
  color: var(--tg-color-white-default) !important;
  border-color: var(--tg-theme-primary) !important;
}
.tg-header__area-two.sticky-menu .tgmenu__action > ul li .cart-count:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two.sticky-menu .tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-two.sticky-menu .tgmenu__action > ul li.header__offCanvas a {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.tg-header__area-two.sticky-menu .tgmenu__action > ul li.header__offCanvas a:hover {
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
  border-color: var(--tg-heading-color);
}
.tg-header__area-two.sticky-menu .tgmenu__nav .logo {
  display: block;
}
.tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li > a:hover, .tg-header__area-three .tgmenu__navbar-wrap > ul > li > a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li:hover > a, .tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li.active > a, .tg-header__area-three .tgmenu__navbar-wrap > ul > li:hover > a, .tg-header__area-three .tgmenu__navbar-wrap > ul > li.active > a {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li .sub-menu > li > a:hover, .tg-header__area-three .tgmenu__navbar-wrap > ul > li .sub-menu > li > a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li .sub-menu > li.active a, .tg-header__area-three .tgmenu__navbar-wrap > ul > li .sub-menu > li.active a {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__action > ul li .cart-count:hover, .tg-header__area-three .tgmenu__action > ul li .cart-count:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__action > ul li.header-search a:hover, .tg-header__area-three .tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-primary);
}
.tg-header__area-three.sticky-menu .tgmenu__action > ul li.header__offCanvas a:hover, .tg-header__area-three .tgmenu__action > ul li.header__offCanvas a:hover {
  color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.tgmenu__nav .logo img {
  max-height: 98px;
}
.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.tgmenu__navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 0 100px;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 0 0 40px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--tg-fw-semi-bold);
  text-transform: capitalize;
  color: var(--tg-color-white-default);
  font-family: var(--tg-body-font-family);
  padding: 43px 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul li a {
    padding: 43px 20px;
  }
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-color-white-default);
  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);
  transform-origin: 0 0;
  -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;
  -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 0 5px 5px;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tgmenu__navbar-wrap ul li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.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;
}
.tgmenu__navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  display: block;
  color: var(--tg-heading-color);
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.2;
}
.tgmenu__navbar-wrap ul li .sub-menu li:hover > a, .tgmenu__navbar-wrap ul li .sub-menu li.active > a {
  color: var(--tg-color-yellow-light);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li:hover a {
  color: var(--tg-color-yellow-light);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
@media (max-width: 1199.98px) {
  .tgmenu__action {
    margin: 0 30px 0 auto;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action {
    margin: 0 20px 0 auto;
  }
}
.tgmenu__action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tgmenu__action > ul li {
  position: relative;
  margin-left: 45px;
  flex: 0 0 auto;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li {
    margin-left: 35px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__action > ul li {
    margin-left: 20px;
  }
}
.tgmenu__action > ul li.header-search a {
  color: var(--tg-color-white-default);
  line-height: 0;
}
.tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-color-yellow-light);
}
.tgmenu__action > ul li .cart-count {
  color: var(--tg-color-white-default);
  font-size: 20px;
  line-height: 0;
  margin: 0;
  position: relative;
}
.tgmenu__action > ul li .cart-count span {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-brown-light);
  color: var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}
.tgmenu__action > ul li .cart-count:hover {
  color: var(--tg-color-yellow-light);
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.header__offCanvas {
    display: none;
  }
}
.tgmenu__action > ul li.header__offCanvas a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-white-default);
  border: 1px solid var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.tgmenu__action > ul li.header__offCanvas a:hover {
  color: var(--tg-color-yellow-light);
  border-color: var(--tg-color-yellow-light);
}
.tgmenu__action > ul li:first-child {
  margin-left: 0;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.free-btn {
    display: none;
  }
}
.tgmenu__action > ul li.login-btn {
  padding: 0 0;
  margin-inline-start: 15px;
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.login-btn {
    display: none;
  }
}
.tgmenu__action > ul li.login-btn a {
  display: block;
  border-radius: 50px;
  padding: 12px 26px;
  border: 1px solid rgba(6, 35, 91, 0.19);
  background: var(--tg-theme-secondary);
  font-size: 15px;
  color: var(--tg-heading-color);
  font-weight: 600;
  line-height: 18px;
}
.tgmenu__action > ul li.login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-color-white-default);
  -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;
  border: none;
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.sticky-menu .tgmenu__navbar-wrap ul li a {
  color: var(--tg-heading-color);
}
.sticky-menu .tgmenu__navbar-wrap ul li a:hover {
  color: var(--tg-color-yellow-light);
}
.sticky-menu .tgmenu__navbar-wrap ul li.active > a {
  color: var(--tg-color-yellow-light);
}
.sticky-menu .tgmenu__nav .logo {
  display: none;
}
.sticky-menu .tgmenu__nav .logo.d-none {
  display: block !important;
}
.sticky-menu .tgmenu__action > ul li .cart-count {
  color: var(--tg-heading-color);
}
.sticky-menu .tgmenu__action > ul li .cart-count:hover {
  color: var(--tg-color-yellow-light);
}
.sticky-menu .tgmenu__action > ul li.header-search a {
  color: var(--tg-heading-color);
}
.sticky-menu .tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-color-yellow-light);
}
.sticky-menu .tgmenu__action > ul li.header__offCanvas a {
  border-color: var(--tg-heading-color);
  color: var(--tg-heading-color);
}
.sticky-menu .tgmenu__action > ul li.header__offCanvas a:hover {
  border-color: var(--tg-color-yellow-light);
  color: var(--tg-color-yellow-light);
}
.sticky-menu.tg-header__area .mobile-nav-toggler {
  color: var(--tg-heading-color);
  border-color: var(--tg-heading-color);
}

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

/*=============================
    	03. Banner
===============================*/
.slider__area {
  position: relative;
  z-index: 1;
}
.slider__bg {
  background-size: cover;
  background-position: center;
  min-height: 950px;
  display: flex;
  align-items: center;
  padding: 200px 0 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .slider__bg {
    min-height: 740px;
  }
}
@media (max-width: 991.98px) {
  .slider__bg {
    min-height: 680px;
    padding: 150px 0 100px;
  }
}
.slider__content .sub-title {
  color: var(--tg-color-white-default);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 35px;
}
@media (max-width: 1199.98px) {
  .slider__content .sub-title {
    margin-bottom: 20px;
  }
}
.slider__content .title {
  margin-bottom: 45px;
  color: var(--tg-color-white-default);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 80px;
}
@media (max-width: 1199.98px) {
  .slider__content .title {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .slider__content .title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content .title {
    font-size: 50px;
  }
}
.slider__video-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(39, 13, 5, 0.16);
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  right: 8%;
  bottom: 15%;
  padding: 28px 30px;
  gap: 40px;
  backdrop-filter: blur(8px);
}
@media (max-width: 1500px) {
  .slider__video-wrap {
    right: 4%;
    bottom: 8%;
  }
}
@media (max-width: 1199.98px) {
  .slider__video-wrap {
    padding: 20px 20px;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .slider__video-wrap {
    display: none;
  }
}
.slider__video-wrap .thumb {
  width: 98px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .slider__video-wrap .thumb {
    width: 80px;
  }
}
.slider__video-wrap .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  text-align: right;
}
.slider__video-wrap .content a {
  color: var(--tg-color-white-default);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.slider__video-wrap .content a span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
  -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__video-wrap .content a span svg {
  width: 14px;
  height: auto;
}
.slider__video-wrap .content a:hover span {
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
}
.slider__video-wrap .content p {
  margin-bottom: 0;
  color: var(--tg-color-white-default);
  text-transform: uppercase;
  font-weight: 700;
}
.slider__social-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 6.3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1800px) {
  .slider__social-wrap {
    left: 1.3%;
  }
}
@media (max-width: 1500px) {
  .slider__social-wrap {
    left: -1.2%;
  }
}
@media (max-width: 1199.98px) {
  .slider__social-wrap {
    display: none;
  }
}
.slider__social-wrap .title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  color: var(--tg-color-white-default);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 24px;
}
.slider__social-wrap .title::after {
  content: "";
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}
.slider__social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slider__social li a {
  color: var(--tg-color-white-default);
}
.slider__social li a:hover {
  color: var(--tg-color-white-default);
}

.section__shape {
  background-repeat: repeat;
  background-position: center;
  height: 36px;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  z-index: 1;
}

.swiper-slide.swiper-slide-active .slider__content .sub-title {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__content .title {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__content .tg-btn {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__video-wrap {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.banner__bg {
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner__bg-two {
  background-position: center;
  background-size: cover;
  padding: 132px 0 54px;
}
@media (max-width: 767.98px) {
  .banner__bg-two {
    padding: 100px 0 54px;
  }
}
@media (max-width: 991.98px) {
  .banner__content {
    text-align: center;
  }
}
.banner__content .title {
  margin-bottom: 20px;
  font-size: 80px;
  color: var(--tg-color-white-default);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
@media (max-width: 1500px) {
  .banner__content .title {
    font-size: 72px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content .title {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__content .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content .title {
    font-size: 50px;
  }
}
.banner__content .title span {
  color: var(--tg-color-yellow-light-2);
}
.banner__content p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
  width: 87%;
}
@media (max-width: 1199.98px) {
  .banner__content p {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner__content p {
    margin-bottom: 30px;
  }
}
.banner__content-two {
  padding: 40px 0;
}
@media (max-width: 991.98px) {
  .banner__content-two {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .banner__content-two {
    padding: 20px 0 40px;
  }
}
.banner__content-two .sub-title {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tg-theme-primary);
  display: block;
  margin-bottom: 5px;
}
.banner__content-two .title {
  margin-bottom: 35px;
  color: var(--tg-color-white-default);
  letter-spacing: 0.02em;
  font-size: 100px;
}
@media (max-width: 1500px) {
  .banner__content-two .title {
    font-size: 85px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content-two .title {
    font-size: 65px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-two .title {
    font-size: 50px;
  }
}
.banner__content-two .tg-btn {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.banner__content-two .tg-btn:hover {
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
}
.banner__btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 25px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .banner__btn {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .banner__btn {
    gap: 20px 15px;
  }
}
.banner__play-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--tg-color-white-default);
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .banner__play-btn {
    text-align: left;
  }
}
.banner__play-btn .icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tg-color-white-default);
  color: var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.banner__images {
  position: relative;
  padding-left: 120px;
  z-index: 1;
}
@media (max-width: 1800px) {
  .banner__images {
    padding-left: 10px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images {
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .banner__images {
    margin-bottom: 50px;
  }
}
.banner__images .main-img {
  max-width: unset;
}
@media (max-width: 1500px) {
  .banner__images .main-img {
    max-width: 100%;
  }
}
.banner__images-two {
  position: relative;
  text-align: right;
  padding-left: 265px;
  z-index: 1;
}
@media (max-width: 1800px) {
  .banner__images-two {
    padding-left: 160px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-two {
    padding-left: 50px;
  }
}
.banner__images-two .main-img {
  max-width: unset;
}
@media (max-width: 1500px) {
  .banner__images-two .main-img {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner__images-two .main-img {
    max-width: 80%;
  }
}
@media (max-width: 767.98px) {
  .banner__images-two .main-img {
    max-width: 90%;
  }
}
.banner__images-two .shape {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1500px) {
  .banner__images-two .shape {
    max-width: 60%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-two .shape {
    left: -8%;
  }
}
@media (max-width: 991.98px) {
  .banner__images-two .shape {
    left: 0;
  }
}
.banner__off {
  background-size: cover;
  background-position: center;
  width: 259px;
  height: 246px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1800px) {
  .banner__off {
    right: 16%;
  }
}
@media (max-width: 1500px) {
  .banner__off {
    right: 25%;
  }
}
@media (max-width: 1199.98px) {
  .banner__off {
    width: 230px;
    height: 220px;
  }
}
@media (max-width: 767.98px) {
  .banner__off {
    width: 160px;
    height: 155px;
  }
}
.banner__off .sale {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
  text-align: center;
  color: var(--tg-color-white-default);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--tg-body-font-family);
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .banner__off .sale {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .banner__off .sale {
    font-size: 14px;
  }
}
.banner__off .sale span {
  display: block;
  font-size: 40px;
  font-weight: 800;
}
@media (max-width: 1199.98px) {
  .banner__off .sale span {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .banner__off .sale span {
    font-size: 22px;
  }
}
.banner__off-two {
  top: auto;
  bottom: 12%;
  right: -25%;
}
@media (max-width: 1800px) {
  .banner__off-two {
    right: -12%;
  }
}
@media (max-width: 1500px) {
  .banner__off-two {
    right: 0%;
    bottom: 3%;
  }
}
.banner__shape img:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .banner__shape img:nth-child(1) {
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  .banner__shape img:nth-child(1) {
    display: none;
  }
}
.banner__shape img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .banner__shape img:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  .banner__shape img:nth-child(2) {
    width: 85%;
  }
}
@media (max-width: 767.98px) {
  .banner__shape img:nth-child(2) {
    width: 100%;
  }
}

/*=============================
    	04. Brand
===============================*/
.brand__area {
  padding: 90px 0 0;
}
@media (max-width: 767.98px) {
  .brand__area {
    padding: 60px 0 0;
  }
}
.brand__title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--tg-theme-primary);
  font-family: var(--tg-body-font-family);
}
.brand__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 48px;
  max-height: 48px;
  align-items: center;
  justify-content: center;
}
.brand__item img {
  cursor: pointer;
}

/*=============================
    	04. Features
===============================*/
.features__area {
  position: relative;
  z-index: 1;
}
.features__item {
  box-shadow: 0 10px 50px 0 rgba(31, 29, 27, 0.08);
  background: var(--tg-color-white-default);
  height: 100%;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 34px 36px 34px;
}
@media (max-width: 1199.98px) {
  .features__item {
    padding: 30px 22px 30px 22px;
  }
}
@media (max-width: 991.98px) {
  .features__item {
    padding: 30px 30px 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item {
    padding: 30px 22px 30px 22px;
  }
}
.features__item:hover .features__icon {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
}
.features__item-wrap {
  position: relative;
  padding: 27px 0;
}
.features__item-two {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.15);
  box-shadow: 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;
}
.features__item-two:hover {
  box-shadow: 0 15px 40px -10px rgba(39, 43, 53, 0.25);
  background: var(--tg-color-white-default);
  border-color: var(--tg-color-white-default);
}
.features__item-three {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  height: 100%;
  gap: 25px;
  padding: 34px 30px;
  -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;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .features__item-three {
    flex-wrap: wrap;
  }
}
.features__item-three::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  background-image: linear-gradient(209deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
  z-index: -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.15;
}
.features__item-three:hover {
  background: var(--tg-theme-primary);
}
.features__item-three:hover::before {
  opacity: 0;
}
.features__item-three:hover .features__icon-three {
  background: var(--tg-color-dark-3);
  border-color: var(--tg-color-dark-3);
}
.features__icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 1px solid rgba(34, 34, 34, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-theme-primary);
  -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;
}
.features__icon-two {
  border: none;
  background: var(--tg-color-white-default);
}
.features__icon-three {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--tg-color-white-default);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -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;
}
.features__icon-three svg {
  width: 40px;
  height: auto;
}
.features__content .title {
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.features__content p {
  margin-bottom: 0;
}
.features__content-three .title {
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--tg-color-white-default);
  font-size: 20px;
}
.features__content-three p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}
.features__bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 81%;
  height: 100%;
  z-index: -1;
}
.features__shape img {
  position: absolute;
  right: 55px;
  top: 74px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .features__shape img {
    right: 24px;
    top: 35px;
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .features__shape img {
    right: 10px;
    top: 0;
    width: 70px;
  }
}
.features__shape-two img {
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .features__shape-two img {
    height: 100px;
    bottom: 5%;
  }
}
@media (max-width: 767.98px) {
  .features__shape-two img {
    display: none;
  }
}
.features__shape-three img {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .features__shape-three img {
    top: 35px;
    height: 225px;
  }
}
@media (max-width: 767.98px) {
  .features__shape-three img {
    top: 15px;
    height: 180px;
  }
}
.features__active {
  margin-right: -467px;
}
@media (max-width: 991.98px) {
  .features__active {
    margin-right: -235px;
  }
}
@media (max-width: 767.98px) {
  .features__active {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__active {
    margin-right: -100px;
  }
}

/*=============================
    	05. About
===============================*/
.about__area {
  position: relative;
}
.about__area-two {
  position: relative;
}
.about__content p {
  margin-bottom: 35px;
  width: 85%;
}
@media (max-width: 1199.98px) {
  .about__content p {
    width: 100%;
  }
}
.about__content-two p {
  margin-bottom: 40px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .about__content-two p {
    margin-bottom: 30px;
    width: 100%;
  }
}
.about__content-three {
  padding-left: 80px;
}
@media (max-width: 1199.98px) {
  .about__content-three {
    padding-left: 0;
  }
}
.about__content-three p {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .about__content-three p {
    margin-bottom: 20px;
  }
}
.about__content-three .about__list {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .about__content-three .about__list {
    margin-bottom: 25px;
  }
}
.about__content-three .about__list li {
  font-size: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__content-three .about__list li {
    width: 50%;
  }
}
.about__content-three .counter-number {
  margin-bottom: 0;
  font-size: 150px;
  line-height: 0.8;
  color: rgba(34, 34, 34, 0.15);
}
@media (max-width: 1199.98px) {
  .about__content-three .counter-number {
    font-size: 110px;
  }
}
@media (max-width: 767.98px) {
  .about__content-three .counter-number {
    font-size: 80px;
  }
}
.about__list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .about__list {
    margin-bottom: 35px;
  }
}
.about__list li {
  width: 50%;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--tg-heading-color);
}
@media (max-width: 767.98px) {
  .about__list li {
    width: 100%;
  }
}
.about__list li .icon {
  color: var(--tg-color-brown-light);
}
.about__list-three {
  gap: 20px 60px;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  .about__list-three {
    gap: 15px 30px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767.98px) {
  .about__list-three {
    gap: 15px 15px;
  }
}
.about__list-three li {
  width: auto;
}
.about__list-four {
  margin-bottom: 0;
}
.about__list-four li {
  width: 100%;
  flex: 0 0 auto;
}
.about__list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
}
.about__list-item:last-child {
  margin-bottom: 0;
}
.about__list-item:hover .icon {
  border-color: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
}
.about__list-item .icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 26, 26, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-theme-primary);
  -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;
  flex: 0 0 auto;
}
.about__list-item .content {
  flex-grow: 1;
}
.about__list-item .content .title {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.about__list-item .content p {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .about__list-item .content p br {
    display: none;
  }
}
.about__btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about__img {
  position: relative;
  padding-top: 60px;
  margin-left: 80px;
}
@media (max-width: 1500px) {
  .about__img {
    margin-left: 0;
    padding-right: 40px;
  }
}
@media (max-width: 1199.98px) {
  .about__img {
    padding-top: 40px;
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .about__img {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__img {
    padding-top: 20px;
  }
}
.about__img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  max-width: unset;
}
@media (max-width: 1500px) {
  .about__img img {
    max-width: 100%;
  }
}
.about__img img.shape {
  position: absolute;
  right: -120px;
  top: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .about__img img.shape {
    right: -20px;
  }
}
@media (max-width: 1199.98px) {
  .about__img img.shape {
    width: 80%;
  }
}
@media (max-width: 767.98px) {
  .about__img img.shape {
    right: 0;
  }
}
.about__img-two {
  margin-right: 80px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .about__img-two {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about__img-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__img-two {
    margin-bottom: 30px;
  }
}
.about__img-three {
  padding-right: 110px;
}
@media (max-width: 1199.98px) {
  .about__img-three {
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .about__img-three {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .about__img-three {
    padding-right: 0;
  }
}
.about__img-three .main__img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.about__img-three .main__img img {
  width: 100%;
}
.about__img-three .img-two {
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 1;
  height: 348px;
}
@media (max-width: 1199.98px) {
  .about__img-three .img-two {
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  .about__img-three .img-two {
    display: none;
  }
}
.about__shape img {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -75px;
}
@media (max-width: 1199.98px) {
  .about__shape img {
    width: 100px;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .about__shape img {
    display: none;
  }
}
.about__shape-two img {
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about__shape-two img {
    height: 150px;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .about__shape-two img {
    height: 100px;
    bottom: 0;
  }
}
.about__shape-three img {
  bottom: 50px;
}
@media (max-width: 1500px) {
  .about__shape-three img {
    height: 250px;
  }
}
@media (max-width: 1199.98px) {
  .about__shape-three img {
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .about__shape-three img {
    height: 120px;
    bottom: 20px;
  }
}

.choose__img {
  z-index: 2;
}
.choose__img .shape {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
@media (max-width: 1199.98px) {
  .choose__img .shape {
    right: -40px;
    top: -20px;
  }
}
@media (max-width: 767.98px) {
  .choose__img .shape {
    width: 100px;
    right: -20px;
    top: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__img .shape {
    width: 150px;
    right: -30px;
  }
}

/*=============================
    	06. Counter
===============================*/
.counter__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .counter__item {
    gap: 15px;
  }
}
.counter__icon {
  color: var(--tg-theme-primary);
}
@media (max-width: 767.98px) {
  .counter__icon svg {
    width: 40px;
    height: auto;
  }
}
.counter__icon-two {
  color: rgba(26, 26, 26, 0.2);
}
.counter__content .count {
  margin-bottom: 12px;
  font-size: 46px;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .counter__content .count {
    font-size: 36px;
  }
}
.counter__content p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .counter__content p {
    font-size: 15px;
  }
}

/*=============================
    	07. Product
===============================*/
.product__item {
  text-align: center;
}
.product__item:hover .product__thumb {
  box-shadow: 0 0 30px 0 rgba(45, 42, 41, 0.08);
  background: var(--tg-color-white-default);
  border-color: var(--tg-color-white-default);
}
.product__item:hover .product__action .list-wrap li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product__item-two {
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .product__item-two {
    margin-bottom: 30px;
  }
}
.product__item-two .product__action .list-wrap {
  left: auto;
  right: 20px;
}
@media (max-width: 767.98px) {
  .product__item-two .product__action .list-wrap {
    right: 12px;
    top: 12px;
  }
}
.product__item-two:hover .product__action .list-wrap li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product__item-two:hover .product__thumb-two .tg-btn {
  transform: translateY(0);
}
.product__item-three {
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-radius: 10px;
  text-align: center;
  padding: 60px 20px 20px 20px;
  overflow: hidden;
  position: relative;
  z-index: 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;
}
@media (max-width: 767.98px) {
  .product__item-three {
    padding: 30px 20px 20px 20px;
  }
}
.product__item-three::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 37%;
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
}
.product__item-three:hover {
  border-color: var(--tg-theme-primary);
}
.product__thumb {
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-radius: 10px;
  width: 100%;
  height: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -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;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .product__thumb {
    height: 230px;
  }
}
.product__thumb img {
  height: 240px;
}
@media (max-width: 767.98px) {
  .product__thumb img {
    height: 170px;
  }
}
.product__thumb-two {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.product__thumb-two .main-img {
  background: var(--tg-color-white-default);
  width: 100%;
  height: 400px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .product__thumb-two .main-img {
    height: 350px;
  }
}
@media (max-width: 767.98px) {
  .product__thumb-two .main-img {
    height: 230px;
  }
}
.product__thumb-two .main-img img {
  height: 280px;
}
@media (max-width: 1199.98px) {
  .product__thumb-two .main-img img {
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  .product__thumb-two .main-img img {
    height: 170px;
  }
}
.product__thumb-two .tg-btn {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  justify-content: center;
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
  padding: 16px 20px;
  transform: translateY(100px);
}
@media (max-width: 767.98px) {
  .product__thumb-two .tg-btn {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
.product__thumb-two .tg-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.product__thumb-three {
  margin-bottom: 45px;
}
@media (max-width: 767.98px) {
  .product__thumb-three {
    margin-bottom: 30px;
  }
}
.product__thumb-three img {
  height: 240px;
}
@media (max-width: 767.98px) {
  .product__thumb-three img {
    height: 210px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__thumb-three img {
    height: 180px;
  }
}
.product__tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  line-height: 1;
}
.product__tag a {
  color: var(--tg-body-color);
}
.product__tag a:hover {
  color: var(--tg-theme-primary);
}
.product__action .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.product__action .list-wrap li {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: visibility 0.3s ease-out 0.1s, opacity 0.3s ease-out 0.15s, transform 0.3s ease-out 0.1s;
}
.product__action .list-wrap li:nth-child(2) {
  transition-delay: 0.15s;
}
.product__action .list-wrap li:nth-child(3) {
  transition-delay: 0.2s;
}
.product__action .list-wrap li a {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
  background: var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.product__action .list-wrap li a img {
  height: auto;
}
.product__action .list-wrap li a:hover {
  background: var(--tg-theme-primary);
}
.product__action .list-wrap li a:hover img {
  filter: brightness(0) invert(1);
}
.product__content .title {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .product__content .title {
    font-size: 20px;
  }
}
.product__content .price {
  margin-bottom: 18px;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.product__content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .product__content-bottom .tg-btn {
    padding: 13px 20px;
  }
}
.product__content-two .title {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .product__content-two .title {
    font-size: 20px;
  }
}
.product__content-two .rating {
  justify-content: flex-start;
}
.product__content-two .price {
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .product__content-two .price {
    font-size: 18px;
  }
}
.product__content-three .product__tag {
  justify-content: center;
}
.product__content-three .title {
  margin-bottom: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__content-three .title {
    font-size: 20px;
  }
}
.product__content-three .price {
  margin-bottom: 8px;
}
.product__content-three .tg-btn {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
  padding: 16px 20px;
  width: 100%;
  justify-content: center;
  margin-top: 35px;
}
@media (max-width: 767.98px) {
  .product__content-three .tg-btn {
    margin-top: 20px;
  }
}
.product__content-three .tg-btn:hover {
  background: var(--tg-theme-primary);
}
.product__cart {
  width: 44px;
  height: 44px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-white-default);
  background: var(--tg-heading-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.product__cart:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.product__shape img {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 100px;
}
@media (max-width: 767.98px) {
  .product__shape img {
    top: 50px;
    width: 100px;
  }
}
.product__details-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-attachment: fixed;
}
.product__details-wrap {
  margin-right: 80px;
}
@media (max-width: 1199.98px) {
  .product__details-wrap {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .product__details-wrap {
    margin-bottom: 50px;
  }
}
.product__details-wrap-two .product__details-img {
  background: var(--tg-color-white-default);
}
.product__details-wrap-three {
  background: var(--tg-color-white-default);
  padding: 80px 80px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 1199.98px) {
  .product__details-wrap-three {
    padding: 60px 50px;
  }
}
@media (max-width: 767.98px) {
  .product__details-wrap-three {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-wrap-three {
    padding: 40px 40px;
  }
}
.product__details-img {
  width: 100%;
  height: 530px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-gray-1);
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .product__details-img {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .product__details-img img {
    height: 280px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-img img {
    height: 300px;
  }
}
@media (max-width: 991.98px) {
  .product__details-img-two {
    text-align: center;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .product__details-img-two {
    text-align: center;
    margin-bottom: 30px;
  }
}
.product__details-img-two img {
  height: 442px;
}
@media (max-width: 1199.98px) {
  .product__details-img-two img {
    height: 410px;
  }
}
@media (max-width: 767.98px) {
  .product__details-img-two img {
    height: 270px;
  }
}
.product__details-nav .nav-tabs {
  border: none;
  gap: 10px;
  margin-top: 15px;
}
.product__details-nav .nav-link {
  border: 1px solid rgba(34, 34, 34, 0.06);
  border-radius: 10px;
  width: 100px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .product__details-nav .nav-link {
    width: 80px;
  }
}
.product__details-nav .nav-link.active {
  border-color: var(--tg-theme-primary);
}
.product__details-nav .nav-link img {
  height: 50px;
}
.product__details-nav-two .nav-link {
  background: var(--tg-color-white-default);
  border: none;
}
.product__details-content .sub-title {
  margin-bottom: 12px;
  display: block;
}
.product__details-content .title {
  margin-bottom: 22px;
  font-size: 36px;
}
@media (max-width: 1199.98px) {
  .product__details-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .product__details-content .title br {
    display: none;
  }
}
.product__details-content p {
  margin-bottom: 30px;
  width: 84%;
}
@media (max-width: 1199.98px) {
  .product__details-content p {
    width: 100%;
  }
}
.product__details-content-two {
  position: relative;
  padding-left: 60px;
  margin-left: -15px;
}
@media (max-width: 1199.98px) {
  .product__details-content-two {
    padding-left: 40px;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .product__details-content-two {
    padding-left: 0;
  }
}
.product__details-content-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(34, 34, 34, 0.15);
}
@media (max-width: 991.98px) {
  .product__details-content-two::before {
    display: none;
  }
}
.product__details-content-two p {
  width: 100%;
}
.product__details-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 22px;
}
.product__details-rating .rating {
  color: var(--tg-color-orange-light);
}
.product__details-rating .sold {
  font-weight: 500;
  position: relative;
}
.product__details-rating .sold::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--tg-heading-color);
}
.product__details-rating .sold strong {
  color: var(--tg-heading-color);
  font-weight: 500;
}
.product__details-price {
  margin-bottom: 30px;
  color: var(--tg-color-orange-light);
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .product__details-price {
    font-size: 26px;
  }
}
.product__details-list .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--tg-heading-color);
  gap: 5px;
  margin-bottom: 6px;
}
.product__details-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.product__details-list .list-wrap li span {
  font-weight: 400;
  color: var(--tg-body-color);
}
.product__details-list .list-wrap li a {
  color: var(--tg-body-color);
  font-weight: 400;
}
.product__details-list .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.product__details-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(34, 34, 34, 0.15);
  margin-bottom: 25px;
  padding-bottom: 30px;
  padding-top: 25px;
}
.product__details-info .cart-btn {
  min-width: 294px;
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
  font-weight: 600;
  font-size: 17px;
  border-radius: 5px;
  padding: 10px 20px;
  height: 45px;
  line-height: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .product__details-info .cart-btn {
    min-width: 190px;
  }
}
.product__details-info .cart-btn:hover {
  background: var(--tg-theme-primary);
}
.product__details-info-two {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1199.98px) {
  .shop-item-wrap .product__thumb {
    height: 248px;
  }
}
@media (max-width: 767.98px) {
  .shop-item-wrap .product__thumb {
    height: 230px;
  }
}
@media (max-width: 1199.98px) {
  .shop-item-wrap .product__thumb img {
    height: 180px;
  }
}
@media (max-width: 767.98px) {
  .shop-item-wrap .product__thumb img {
    height: 170px;
  }
}
@media (max-width: 1199.98px) {
  .shop-item-wrap .product__content .title {
    font-size: 20px;
  }
}
.shop__sidebar {
  border: 1px solid rgba(34, 34, 34, 0.15);
  padding: 30px 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-right: 32px;
}
@media (max-width: 1199.98px) {
  .shop__sidebar {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .shop__sidebar {
    margin-top: 60px;
  }
}
.shop__top-wrap {
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 25px;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .shop__top-left {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop__top-left {
    text-align: left;
  }
}
.shop__top-left p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--tg-heading-color);
}
.shop__top-right {
  width: 150px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .shop__top-right {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop__top-right {
    margin-left: auto;
  }
}
.shop__top-right select {
  background-color: transparent;
  border: none;
  color: var(--tg-heading-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 4px;
  outline: none;
  padding: 5px 20px 5px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 40px;
  cursor: pointer;
}
.shop__top-right::after {
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-family: "flaticon_tg_default";
  font-weight: 700;
  right: 0;
  font-size: 16px;
  color: var(--tg-heading-color);
}
.shop__cat-list .list-wrap li {
  margin-bottom: 15px;
}
.shop__cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.shop__cat-list .form-check {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
  min-height: inherit;
}
.shop__cat-list .form-check-input {
  border-radius: 4px;
  border: 1px solid rgba(34, 34, 34, 0.15);
  margin: 0 10px 0 0;
  width: 18px;
  height: 18px;
  padding: 0;
}
.shop__cat-list .form-check-input:checked {
  background-color: var(--tg-theme-primary);
}
.shop__cat-list .form-check-input:focus {
  box-shadow: none;
  border-color: var(--tg-theme-primary);
}
.shop__cat-list .form-check-label {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-body-color);
  user-select: none;
  text-transform: capitalize;
}
.shop__cat-list .form-check .rating {
  display: flex;
  align-items: center;
}
.shop__cat-list .form-check .rating ul {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--tg-color-yellow-light);
  gap: 4px;
}
.shop__cat-list .form-check .rating ul li {
  margin-bottom: 0;
}
.shop__cat-list .form-check .rating ul li.delete {
  color: #B5B5B5;
}
.shop__cat-list .form-check .rating span {
  color: var(--tg-body-color);
  margin-left: 5px;
  font-size: 14px;
}
.shop__price-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.shop__price-wrap .max-price span, .shop__price-wrap .min-price span {
  color: var(--tg-heading-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.shop__price-wrap .max-price input, .shop__price-wrap .min-price input {
  background: var(--tg-color-gray-1);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-body-color);
  padding: 8px 10px;
  height: 40px;
}
.shop__price-wrap .divider {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--tg-heading-color);
  transform: translateY(-12px);
}
.shop__price-btn {
  width: 100%;
  padding: 14px 25px;
  justify-content: center;
  margin-top: 25px;
  background: var(--tg-heading-color);
  color: var(--tg-color-white-default);
}
.shop__price-btn:hover {
  background: var(--tg-theme-primary);
}

.show-more {
  margin-top: 15px;
}
.show-more a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #394767;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.show-more a svg {
  color: #B2B8C4;
  -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;
}
.show-more a:hover {
  color: var(--tg-theme-primary);
}
.show-more a:hover svg {
  color: var(--tg-theme-primary);
}

.product-desc-wrap {
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  .product-desc-wrap {
    margin-top: 60px;
  }
}
.product-desc-wrap .tab-content p {
  margin-bottom: 0;
}
.product-desc-wrap .nav-tabs {
  border-bottom: 2px solid rgba(34, 34, 34, 0.15);
  gap: 30px;
  margin-bottom: 25px;
}
.product-desc-wrap .nav-tabs .nav-link {
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 5px 10px;
  font-weight: 500;
  font-size: 18px;
  color: #696868;
  position: relative;
}
.product-desc-wrap .nav-tabs .nav-link.active {
  color: var(--tg-heading-color);
  font-weight: 600;
}
.product-desc-wrap .nav-tabs .nav-link.active::before {
  opacity: 1;
}
.product-desc-wrap .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--tg-theme-primary);
  transition: 0.3s linear;
  opacity: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.product-desc-description > p {
  margin-bottom: 25px !important;
}
.product-desc-description > p:last-child {
  margin-bottom: 0 !important;
}
.product-desc-description .title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}
.product-desc-review {
  padding: 25px 30px;
  border: 1px solid rgba(34, 34, 34, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.product-desc-review .left-rc {
  margin-bottom: 10px;
}

.related__product-wrap .section__title .title {
  font-size: 40px;
}
@media (max-width: 767.98px) {
  .related__product-wrap .section__title .title {
    font-size: 36px;
  }
}

.onsale {
  font-weight: 700;
  font-size: 12px;
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  line-height: 1;
  padding: 2px 10px;
  border-radius: 3px;
}

.rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-theme-primary);
  gap: 5px;
}

.rating span {
  font-weight: 500;
  font-size: 16px;
  color: var(--tg-body-color);
}

.quickview-cart-plus-minus {
  width: 122px;
  flex: 0 0 122px;
}

.quickview-cart-plus-minus {
  position: relative;
}

.quickview-cart-plus-minus input {
  width: 100%;
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-radius: 5px;
  height: 45px;
  text-align: center;
  padding: 0 30px;
  font-size: 16px;
  color: var(--tg-heading-color);
  font-weight: 500;
}

.quickview-cart-plus-minus .qtybutton {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #444444;
  cursor: pointer;
  border-right: 1px solid #e1e1e1;
  user-select: none;
  -moz-user-select: none;
}

.quickview-cart-plus-minus .qtybutton.inc {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid #e1e1e1;
}

.quickview-cart-plus-minus .qtybutton.dec {
  font-size: 18px;
}

/*=============================
    	08. Video
===============================*/
.video__area {
  position: relative;
  z-index: 1;
}
.video__area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  background: var(--tg-color-gray-1);
  z-index: -1;
}
.video__area-two::before {
  background: var(--tg-color-gray-2);
}
.video__bg {
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media (max-width: 1199.98px) {
  .video__bg {
    min-height: 450px;
  }
}
.video__shape {
  bottom: auto;
  top: 39%;
  z-index: -1;
}

/*=============================
    	09. Faq
===============================*/
.faq__area {
  position: relative;
}
.faq__area-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--tg-color-gray-1);
  height: 44%;
  width: 100%;
  z-index: -1;
}
.faq__img {
  position: relative;
  margin-right: 20px;
}
@media (max-width: 1199.98px) {
  .faq__img {
    margin-right: 0;
    padding-right: 50px;
  }
}
@media (max-width: 991.98px) {
  .faq__img {
    margin-bottom: 50px;
    padding-right: 0;
  }
}
.faq__img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .faq__img img {
    width: 100%;
  }
}
.faq__img img.img-two {
  position: absolute;
  right: 0;
  bottom: 70px;
  box-shadow: 0 0 60px 0 rgba(30, 28, 66, 0.06);
}
@media (max-width: 767.98px) {
  .faq__img img.img-two {
    display: none;
  }
}
.faq__img-two {
  position: relative;
  text-align: right;
}
@media (max-width: 991.98px) {
  .faq__img-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .faq__img-two {
    margin-bottom: 30px;
  }
}
.faq__img-two .shape img {
  position: absolute;
}
.faq__img-two .shape img:nth-child(1) {
  left: -40px;
  top: 26px;
}
@media (max-width: 1199.98px) {
  .faq__img-two .shape img:nth-child(1) {
    width: 170px;
  }
}
@media (max-width: 767.98px) {
  .faq__img-two .shape img:nth-child(1) {
    width: 100px;
    left: -15px;
    top: -15px;
  }
}
.faq__img-two .shape img:nth-child(2) {
  right: -10px;
  top: -45px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .faq__img-two .shape img:nth-child(2) {
    top: -38px;
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .faq__img-two .shape img:nth-child(2) {
    top: -34px;
    width: 250px;
    right: -20px;
  }
}
.faq__img-two .shape img:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: -2;
}
.faq__content {
  padding-left: 80px;
}
@media (max-width: 1199.98px) {
  .faq__content {
    padding-left: 0;
  }
}
.faq__content-two {
  padding: 0 80px 0 0;
}
@media (max-width: 1199.98px) {
  .faq__content-two {
    padding: 0 20px 0 0;
  }
}
.faq__inner-wrap {
  padding: 145px 145px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1500px) {
  .faq__inner-wrap {
    padding: 130px 130px;
  }
}
@media (max-width: 1199.98px) {
  .faq__inner-wrap {
    padding: 100px 80px;
  }
}
@media (max-width: 991.98px) {
  .faq__inner-wrap {
    padding: 80px 40px;
  }
}
@media (max-width: 991.98px) {
  .faq__inner-wrap {
    padding: 60px 20px;
  }
}
@media (max-width: 767.98px) {
  .faq__inner-wrap {
    padding: 60px 30px;
  }
}
.faq__inner-wrap .shape {
  position: absolute;
  right: -110px;
  top: -45px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .faq__inner-wrap .shape {
    right: -60px;
    top: -60px;
    width: 150px;
  }
}
.faq__item-wrap .accordion-item {
  margin-bottom: 15px;
  border: none;
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.faq__item-wrap .accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq__item-wrap .accordion-item:last-child {
  margin-bottom: 0;
}
.faq__item-wrap .accordion-button {
  font-weight: 500;
  font-size: 20px;
  color: var(--tg-heading-color);
  font-family: var(--tg-body-font-family);
  padding: 18px 20px 18px 65px;
  background: var(--tg-color-gray-1);
  border: none;
  box-shadow: none;
}
.faq__item-wrap .accordion-button::before {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  content: "\f109";
  font-size: 12px;
  font-family: "flaticon_tg_default";
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 15px;
  -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;
}
.faq__item-wrap .accordion-button:not(.collapsed)::before {
  content: "\f10a";
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.faq__item-wrap .accordion-button::after {
  display: none;
}
.faq__item-wrap .accordion-body {
  padding: 10px 65px 20px 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
@media (max-width: 1199.98px) {
  .faq__item-wrap .accordion-body {
    padding: 10px 20px 20px 20px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-wrap .accordion-body {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.faq__item-wrap .accordion-body .thumb {
  width: 100px;
  flex: 0 0 auto;
}
.faq__item-wrap .accordion-body .thumb img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  height: 80px;
  object-fit: cover;
  width: 100%;
}
.faq__item-wrap .accordion-body p {
  margin-bottom: 0;
  color: var(--tg-body-color);
}
.faq__item-wrap-two .accordion-item {
  background: var(--tg-color-gray-2);
}
.faq__item-wrap-two .accordion-button {
  background: var(--tg-color-gray-2);
}
.faq__item-wrap-three .accordion-item {
  background: #212121;
}
.faq__item-wrap-three .accordion-button {
  background: #212121;
  color: var(--tg-color-white-default);
  padding: 23px 70px 23px 30px;
  font-family: var(--tg-heading-font-family);
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .faq__item-wrap-three .accordion-button {
    padding: 23px 50px 23px 20px;
    font-size: 18px;
  }
}
.faq__item-wrap-three .accordion-button::before {
  left: auto;
  right: 30px;
  top: 20px;
  background: transparent;
  border: 1.5px solid var(--tg-color-white-default);
}
@media (max-width: 767.98px) {
  .faq__item-wrap-three .accordion-button::before {
    right: 15px;
  }
}
.faq__item-wrap-three .accordion-button:not(.collapsed) {
  color: var(--tg-theme-primary);
}
.faq__item-wrap-three .accordion-button:not(.collapsed)::before {
  background: transparent;
  color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}
.faq__item-wrap-three .accordion-body {
  padding: 5px 100px 30px 30px;
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .faq__item-wrap-three .accordion-body {
    padding: 5px 70px 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-wrap-three .accordion-body {
    padding: 5px 20px 25px 20px;
    gap: 20px;
  }
}
.faq__item-wrap-three .accordion-body .thumb img {
  height: 70px;
}
.faq__item-wrap-three .accordion-body p {
  color: rgba(255, 255, 255, 0.7);
  width: 80%;
}
@media (max-width: 1199.98px) {
  .faq__item-wrap-three .accordion-body p {
    width: 100%;
  }
}
.faq__shape img {
  position: absolute;
  right: 0;
  top: -60px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .faq__shape img {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .faq__shape img {
    display: none;
  }
}
.faq__shape-two img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: -34px;
}
@media (max-width: 1500px) {
  .faq__shape-two img {
    top: -130px;
  }
}
@media (max-width: 767.98px) {
  .faq__shape-two img {
    display: none;
  }
}

/*=============================
    	10. Testimonial
===============================*/
.testimonial__item {
  text-align: center;
}
.testimonial__item-wrap {
  position: relative;
  padding: 0 165px;
}
@media (max-width: 1199.98px) {
  .testimonial__item-wrap {
    padding: 0 60px;
  }
}
@media (max-width: 991.98px) {
  .testimonial__item-wrap {
    padding: 0 0;
  }
}
.testimonial__item-two {
  background: var(--tg-color-dark-2);
  position: relative;
  padding: 10px 30px 0 40px;
  border-radius: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .testimonial__item-two {
    padding: 10px 20px 0 20px;
  }
}
@media (max-width: 991.98px) {
  .testimonial__item-two {
    padding: 10px 25px 0 25px;
    flex-wrap: wrap;
  }
}
.testimonial__item-two .shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .testimonial__item-two .shape img {
    width: 300px;
  }
}
.testimonial__info .title {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 24px;
  color: var(--tg-color-white-default);
  font-family: var(--tg-body-font-family);
  text-transform: capitalize;
}
.testimonial__info span {
  display: block;
  color: var(--tg-color-white-default);
  font-weight: 300;
  margin-bottom: 15px;
}
.testimonial__rating {
  color: var(--tg-color-white-default);
  margin-bottom: 35px;
}
.testimonial__rating-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.testimonial__rating-two span {
  font-size: 18px;
  color: var(--tg-color-white-default);
}
.testimonial__img {
  width: 251px;
  flex: 0 0 auto;
  text-align: right;
  margin-left: 10px;
}
@media (max-width: 1199.98px) {
  .testimonial__img {
    width: 160px;
  }
}
@media (max-width: 991.98px) {
  .testimonial__img {
    margin: 0 auto;
  }
}
.testimonial__img-two {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.testimonial__img-two img {
  height: 60px;
}
.testimonial__content {
  position: relative;
  padding: 0 67px;
}
@media (max-width: 767.98px) {
  .testimonial__content {
    padding: 0;
    margin-bottom: 20px;
  }
}
.testimonial__content p {
  margin-bottom: 0;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
  color: var(--tg-color-white-default);
  font-family: var(--tg-heading-font-family);
  letter-spacing: 0.02em;
}
.testimonial__content .shape {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tg-color-white-default);
}
@media (max-width: 767.98px) {
  .testimonial__content .shape {
    top: -30px;
  }
}
.testimonial__content .shape svg {
  opacity: 0.15;
}
.testimonial__content .shape-two {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .testimonial__content .shape-two {
    bottom: -20px;
  }
}
.testimonial__content-two {
  padding: 40px 0;
}
@media (max-width: 1199.98px) {
  .testimonial__content-two {
    padding: 20px 0 30px;
  }
}
.testimonial__content-two > p {
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .testimonial__content-two > p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.testimonial__content-three .rating {
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial__content-three .title {
  margin-bottom: 25px;
  font-size: 24px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .testimonial__content-three .title {
    width: 100%;
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__content-three .title {
    margin-bottom: 15px;
  }
}
.testimonial__content-three span {
  display: block;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .testimonial__content-three span {
    font-size: 14px;
  }
}
.testimonial__content-bottom p {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--tg-color-white-default);
}
@media (max-width: 1199.98px) {
  .testimonial__content-bottom p {
    font-size: 16px;
  }
}
.testimonial__content-bottom p span {
  font-weight: 600;
  color: #4BF0C6;
}
.testimonial__avatar-item {
  text-align: center;
}
.testimonial__avatar-item img {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  object-fit: cover;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  display: inline-block;
}
.testimonial__avatar-item.slick-active.slick-center img {
  object-fit: cover;
  transform: scale(1.36);
  box-shadow: 0 30px 30px -10px rgba(95, 50, 7, 0.4);
}
.testimonial__shape img {
  position: absolute;
  left: 0;
  top: -58px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .testimonial__shape img {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__shape img {
    width: 150px;
  }
}

.testimonial__avatar-active .slick-track {
  padding-top: 15px;
  padding-bottom: 54px;
}

.testimonial__avatar-active .slick-arrow {
  height: 46px;
  width: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--tg-color-white-default);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  background: transparent;
  filter: brightness(0) invert(1);
  padding: 0;
  position: absolute;
  left: -67%;
  top: 30px;
}
@media (max-width: 1199.98px) {
  .testimonial__avatar-active .slick-arrow {
    left: -42%;
  }
}
@media (max-width: 991.98px) {
  .testimonial__avatar-active .slick-arrow {
    left: -17%;
  }
}
@media (max-width: 767.98px) {
  .testimonial__avatar-active .slick-arrow {
    display: none;
  }
}
.testimonial__avatar-active .slick-arrow:hover {
  background: var(--tg-color-white-default);
  border-color: var(--tg-color-white-default);
  filter: none;
}
.testimonial__avatar-active .slick-arrow.slick-next {
  left: auto;
  right: -67%;
}
@media (max-width: 1199.98px) {
  .testimonial__avatar-active .slick-arrow.slick-next {
    right: -42%;
  }
}
@media (max-width: 991.98px) {
  .testimonial__avatar-active .slick-arrow.slick-next {
    right: -17%;
  }
}

/*=============================
    	11. Pricing
===============================*/
.pricing__area-two {
  padding-top: 240px;
  margin-top: -90px;
}
@media (max-width: 991.98px) {
  .pricing__area-two {
    padding-top: 190px;
  }
}
@media (max-width: 767.98px) {
  .pricing__area-two {
    padding-top: 150px;
  }
}
.pricing__item.active .pricing__top {
  background: var(--tg-theme-primary);
}
.pricing__item.active .pricing__plan {
  color: var(--tg-color-white-default);
}
.pricing__item.active .pricing__price {
  color: var(--tg-color-white-default);
}
.pricing__item.active .pricing__content p {
  color: rgba(255, 255, 255, 0.7);
}
.pricing__item.active .pricing__btn .tg-btn {
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
}
.pricing__item-three {
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.pricing__item-three .pricing__plan {
  background: var(--tg-color-white-default);
  padding: 18px 50px;
  margin-bottom: 0;
}
.pricing__item-three .pricing__content p {
  margin-bottom: 30px;
}
.pricing__top {
  background: var(--tg-color-white-default);
  border-radius: 10px 10px 0 0;
  padding: 45px 50px 50px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 1199.98px) {
  .pricing__top {
    padding: 30px 25px 35px;
  }
}
@media (max-width: 767.98px) {
  .pricing__top {
    padding: 30px 35px 35px;
  }
}
.pricing__top-two {
  background: var(--tg-color-gray-2);
  box-shadow: none;
  border-radius: 10px;
  position: relative;
  padding: 45px 50px 60px;
}
@media (max-width: 1199.98px) {
  .pricing__top-two {
    padding: 30px 25px 50px;
  }
}
.pricing__bottom {
  padding: 32px 50px 40px;
}
@media (max-width: 1199.98px) {
  .pricing__bottom {
    padding: 25px 30px 30px;
  }
}
.pricing__icon {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  .pricing__icon {
    width: 100px;
    height: 100px;
    bottom: -50px;
  }
}
.pricing__plan {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tg-theme-primary);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 25px;
}
@media (max-width: 1199.98px) {
  .pricing__plan {
    margin-bottom: 15px;
  }
}
.pricing__price {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-size: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
@media (max-width: 1199.98px) {
  .pricing__price {
    font-size: 50px;
  }
}
.pricing__price span {
  font-size: 18px;
  text-transform: capitalize;
  font-family: var(--tg-body-font-family);
  margin-bottom: 5px;
}
.pricing__content p {
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .pricing__content p {
    margin-bottom: 20px;
  }
}
.pricing__btn .tg-btn {
  width: 100%;
  border: none;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
  padding: 21px 25px;
}
.pricing__btn .tg-btn:hover {
  background: var(--tg-theme-primary);
}
.pricing__btn-two {
  padding: 0 50px;
}
@media (max-width: 1199.98px) {
  .pricing__btn-two {
    padding: 0 25px;
  }
}
.pricing__btn-two.active .tg-btn {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.pricing__btn-two.active .tg-btn:hover {
  background: var(--tg-theme-secondary);
}
.pricing__list {
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 40px 50px 40px;
}
@media (max-width: 1199.98px) {
  .pricing__list {
    padding: 35px 25px 35px;
  }
}
@media (max-width: 767.98px) {
  .pricing__list {
    padding: 40px 35px 40px;
  }
}
.pricing__list .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--tg-heading-color);
  gap: 15px;
  margin-bottom: 17px;
}
.pricing__list .list-wrap li:last-child {
  margin-bottom: 0;
}
.pricing__list .list-wrap li .icon {
  transform: translateY(-1px);
  color: var(--tg-theme-primary);
}
.pricing__list-two {
  border: none;
  padding: 90px 0px 40px;
}
@media (max-width: 1199.98px) {
  .pricing__list-two {
    padding: 70px 0px 30px;
  }
}
.pricing__list-two .list-wrap li {
  border-bottom: 1px solid var(--tg-border-1);
  margin-bottom: 13px;
  padding: 0 50px 13px;
}
@media (max-width: 1199.98px) {
  .pricing__list-two .list-wrap li {
    padding: 0 25px 13px;
  }
}
.pricing__list-two .list-wrap li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.pricing__list-three {
  margin-top: 22px;
}
.pricing__list-three .title {
  display: block;
  color: var(--tg-heading-color);
  margin-bottom: 22px;
  line-height: 1;
}
.pricing__list-three .list-wrap li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.pricing__list-three .list-wrap li:last-child {
  margin-bottom: 0;
}
.pricing__list-three .list-wrap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--tg-theme-secondary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.pricing__shape img {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .pricing__shape img {
    bottom: 0;
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .pricing__shape img {
    bottom: auto;
    top: 20px;
    height: 150px;
  }
}
.pricing__shape-two img {
  position: absolute;
  left: 3.5%;
  top: 7%;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .pricing__shape-two img {
    left: 2.5%;
    top: 5%;
  }
}
@media (max-width: 767.98px) {
  .pricing__shape-two img {
    left: auto;
    top: 5%;
    width: 60px;
    right: 5%;
  }
}

/*=============================
    	12. Blog
===============================*/
.blog__post-item {
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 15px 15px 0 15px;
  text-align: center;
  margin-bottom: 25px;
}
.blog__post-item-three {
  border: 1px solid rgba(3, 31, 66, 0.1);
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
}
.blog__post-item-four {
  margin-bottom: 40px;
}
.blog__post-thumb {
  margin-bottom: 25px;
}
.blog__post-thumb img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-width: 767.98px) {
    .blog__post-thumb img {
        height: 280px;
    }
}
.blog__post-thumb-two {
  position: relative;
  margin-bottom: 20px;
}
.blog__post-thumb-two img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .blog__post-thumb-two img {
    height: 260px;
  }
}
.blog__post-thumb-two .date {
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.65) 100%);
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 30px;
  top: 30px;
  backdrop-filter: blur(40px);
  color: var(--tg-color-white-default);
  font-size: 16px;
  border-radius: 4px;
  line-height: 1;
  justify-content: center;
}
.blog__post-thumb-two .date strong {
  font-weight: 600;
  font-size: 24px;
}
.blog__post-thumb-three {
  margin: -1px;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog__post-thumb-three img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.blog__post-thumb-four {
  margin-bottom: 30px;
}
.blog__post-thumb-four img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  height: 452px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .blog__post-thumb-four img {
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-thumb-four img {
    height: 320px;
  }
}
.blog__post-tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}
.blog__post-tag a {
  color: var(--tg-body-color);
  text-transform: capitalize;
}
.blog__post-tag a:hover {
  color: var(--tg-theme-primary);
}
.blog__post-content .title {
  margin-bottom: 30px;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .blog__post-content .title br {
    display: none;
  }
}
.blog__post-content-two .title {
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .blog__post-content-two .title {
    font-size: 22px;
  }
}
.blog__post-content-two p {
  margin-bottom: 20px;
}
.blog__post-content-two .link__btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--tg-heading-color);
  gap: 10px;
}
.blog__post-content-two .link__btn:hover {
  color: var(--tg-theme-primary);
}
.blog__post-content-three {
  padding: 24px 30px 36px;
}
@media (max-width: 1500px) {
  .blog__post-content-three {
    padding: 24px 25px 36px;
  }
}
.blog__post-content-three .title {
  margin-bottom: 25px;
  font-size: 24px;
}
@media (max-width: 1199.98px) {
  .blog__post-content-three .title {
    font-size: 22px;
  }
}
.blog__post-content-four .title {
  margin-bottom: 15px;
  font-size: 36px;
}
@media (max-width: 1199.98px) {
  .blog__post-content-four .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-content-four .title {
    font-size: 28px;
  }
}
.blog__post-content-four .title a {
  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% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog__post-content-four .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog__post-content-four p {
  margin-bottom: 25px;
}
.blog__post-content-four .tg-btn {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
  padding: 17px 35px;
}
.blog__post-content-four .tg-btn:hover {
  background: var(--tg-theme-primary);
}
.blog__post-meta .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog__post-meta .list-wrap li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--tg-body-color);
  line-height: 1;
}
.blog__post-meta .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.blog__post-meta-two .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px 44px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.blog__post-meta-two .list-wrap li {
  position: relative;
  font-size: 14px;
}
.blog__post-meta-two .list-wrap li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: rgba(34, 34, 34, 0.15);
}
.blog__post-meta-two .list-wrap li:first-child::before {
  display: none;
}
.blog__post-meta-two .list-wrap li a {
  background: var(--tg-color-gray-1);
  font-weight: 500;
  font-size: 14px;
  color: var(--tg-heading-color);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 4px 14px;
  line-height: 1;
}
.blog__post-meta-two .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.blog__post-meta-three {
  margin-bottom: 10px;
}
.blog__post-meta-three .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.blog__post-meta-three .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
}
.blog__post-meta-three .list-wrap li svg {
  color: var(--tg-theme-primary);
}
.blog__post-meta-three .list-wrap li a {
  color: var(--tg-body-color);
}
.blog__post-meta-three .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.blog__post-btn {
  transform: translateY(25px);
}
.blog__post-btn a {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-gray-1);
  border: 6px solid var(--tg-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-heading-color);
  margin: 0 auto;
}
.blog__post-btn a:hover {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
}
.blog__post-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: var(--tg-body-color);
}
.blog__post-author .thumb {
  width: 34px;
  flex: 0 0 auto;
}
.blog__post-author .thumb img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog__sidebar {
  margin-right: 26px;
}
@media (max-width: 1199.98px) {
  .blog__sidebar {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .blog__sidebar {
    margin-top: 50px;
  }
}
.blog__sidebar-two {
  margin-left: 26px;
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .blog__sidebar-two {
    margin-left: 0;
  }
}
.blog__search {
  position: relative;
}
.blog__search input {
  padding: 15px 64px 15px 18px;
  height: 60px;
}
.blog__search button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}
.blog__search button:hover {
  background: var(--tg-theme-primary);
}
.blog__avatar-wrap {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  padding: 42px 40px;
  background: var(--tg-color-gray-1);
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .blog__avatar-wrap {
    padding: 35px 25px;
  }
}
@media (max-width: 767.98px) {
  .blog__avatar-wrap {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 25px;
  }
}
.blog__avatar-img {
  width: 115px;
  flex: 0 0 auto;
}
.blog__avatar-img img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog__avatar-info .designation {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.blog__avatar-info .name {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--tg-theme-primary);
}
.blog__avatar-info p {
  margin-bottom: 0;
}
.blog__details-content .title {
  margin-bottom: 15px;
  font-size: 36px;
}
@media (max-width: 1199.98px) {
  .blog__details-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog__details-content .title {
    font-size: 28px;
  }
}
.blog__details-content > p {
  margin-bottom: 15px;
}
.blog__details-content .title-two {
  margin-bottom: 12px;
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .blog__details-content .title-two {
    font-size: 26px;
  }
}
.blog__details-inner {
  margin: 40px 0 55px;
}
.blog__details-inner .row .col-46 {
  width: 46%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .blog__details-inner .row .col-46 {
    width: 100%;
  }
}
.blog__details-inner .row .col-54 {
  width: 54%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .blog__details-inner .row .col-54 {
    width: 100%;
  }
}
.blog__details-inner-content .title {
  margin-bottom: 12px;
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .blog__details-inner-content .title {
    font-size: 26px;
  }
}
.blog__details-inner-content p {
  margin-bottom: 18px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .blog__details-inner-content p {
    width: 100%;
  }
}
.blog__details-inner-thumb {
  position: relative;
}
@media (max-width: 767.98px) {
  .blog__details-inner-thumb {
    margin-bottom: 30px;
  }
}
.blog__details-inner-thumb img {
  width: 100%;
  height: 287px;
  object-fit: cover;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .blog__details-inner-thumb img {
    height: 250px;
  }
}
.blog__details-inner-thumb .play-btn {
  width: 62px;
  height: 62px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  color: var(--tg-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.blog__details-inner-thumb .play-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.blog__details-bottom {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .blog__details-bottom .post-tags {
    margin-bottom: 30px;
  }
}
.blog__details-bottom .post-tags .title {
  margin-bottom: 20px;
  font-size: 16px;
}
.blog__details-bottom .post-tags .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.blog__details-bottom .post-tags .list-wrap li a {
  background: var(--tg-color-white-default);
  padding: 5px 16px;
  display: block;
  border-radius: 4px;
  color: var(--tg-theme-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--tg-color-gray-1);
}
.blog__details-bottom .post-tags .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
}
.blog__details-bottom .post-share .title {
  margin-bottom: 20px;
  font-size: 16px;
}
.blog__details-bottom .post-share .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog__details-bottom .post-share .list-wrap li a {
  font-size: 16px;
  color: var(--tg-theme-primary);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background: var(--tg-color-gray-1);
}
.blog__details-bottom .post-share .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.blog__details-bottom .post-share .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.sidebar__widget {
  margin-bottom: 40px;
}
.sidebar__widget:last-child {
  margin-bottom: 0;
}
.sidebar__widget-title {
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
  padding-bottom: 15px;
}
.sidebar__widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 5px;
  background: var(--tg-theme-primary);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
}

.rc-post-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.rc-post-item:last-child {
  margin-bottom: 0;
}
.rc-post-item .thumb {
  width: 90px;
  flex: 0 0 auto;
}
.rc-post-item .thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.rc-post-item .content .date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 7px;
  line-height: 1;
  margin-bottom: 14px;
}
.rc-post-item .content .date svg {
  color: var(--tg-theme-primary);
}
.rc-post-item .content .title {
  margin-bottom: 0;
  font-size: 20px;
}

.bs-cat-list .list-wrap li {
  border-bottom: 1px solid #DEE0EC;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.bs-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.bs-cat-list .list-wrap li a {
  font-size: 17px;
  font-weight: 500;
  color: var(--tg-body-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-cat-list .list-wrap li a span {
  font-weight: 400;
  font-size: 16px;
}
.bs-cat-list .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}

.sidebar__tag-list .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.sidebar__tag-list .list-wrap li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-theme-primary);
  text-transform: capitalize;
  background: var(--tg-color-gray-1);
  display: block;
  padding: 13px 18px;
  line-height: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.sidebar__tag-list .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.sidebar__contact {
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.sidebar__contact .title {
  margin-bottom: 10px;
  font-size: 22px;
}
.sidebar__contact p {
  margin-bottom: 25px;
  color: var(--tg-body-color);
}
.sidebar__contact .shape img {
  position: absolute;
  z-index: -1;
}
.sidebar__contact .shape img:nth-child(1) {
  left: -31px;
  top: -35px;
}
.sidebar__contact .shape img:nth-child(2) {
  right: 10px;
  bottom: -25px;
}

.pagination__wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.pagination__wrap 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;
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 20px;
  color: var(--tg-heading-color);
}
.pagination__wrap ul li a:hover {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
}
.pagination__wrap ul li.active a {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
}

blockquote {
  margin: 40px 50px;
  background: var(--tg-color-gray-1);
  padding: 25px 25px 25px 30px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  blockquote {
    margin: 40px 0;
  }
}
blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--tg-theme-primary);
}
blockquote > p {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--tg-heading-color);
  font-style: italic;
  line-height: 1.6;
}
blockquote cite {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-heading-color);
}

.col-70 {
  width: 70.7%;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .col-70 {
    width: 65%;
  }
}
@media (max-width: 991.98px) {
  .col-70 {
    width: 100%;
  }
}

.col-30 {
  width: 29.3%;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .col-30 {
    width: 35%;
  }
}
@media (max-width: 991.98px) {
  .col-30 {
    width: 100%;
  }
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tg-color-white-default);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}

.comments-wrap-title {
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 1199.98px) {
  .comments-wrap-title {
    font-size: 26px;
  }
}
.comments-wrap .latest-comments {
  margin-bottom: 80px;
}
.comments-wrap .latest-comments .children {
  margin: 0 0 0 45px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .comments-wrap .latest-comments .children {
    margin: 0;
  }
}
.comments-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #D6DCE9;
  padding-bottom: 30px;
  margin-bottom: 35px;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .comments-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.comments-avatar {
  width: 115px;
  flex: 0 0 auto;
}
.comments-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.comments-text .avatar-name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.comments-text .avatar-name .name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.comments-text .avatar-name span {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: var(--tg-theme-primary);
}
.comments-text p {
  margin-bottom: 15px;
}
.comments-text .reply-btn {
  background: var(--tg-color-gray-1);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 6px 17px;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: var(--tg-theme-primary);
}
.comments-text .reply-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.comment-respond {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 35px 40px 50px;
  background: var(--tg-color-gray-1);
}
@media (max-width: 1199.98px) {
  .comment-respond {
    padding: 35px 25px 35px;
  }
}
.comment-reply-title {
  margin-bottom: 10px;
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
.comment-form .comment-notes {
  margin-bottom: 16px;
}
.comment-form .form-grp {
  margin-bottom: 15px;
}
.comment-form .form-grp textarea, .comment-form .form-grp input {
  width: 100%;
  background: var(--tg-color-white-default);
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-heading-color);
  padding: 12px 15px;
  height: 50px;
  display: block;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.comment-form .form-grp textarea::placeholder, .comment-form .form-grp input::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: var(--tg-body-color);
}
.comment-form .form-grp textarea {
  min-height: 130px;
  max-height: 130px;
}
.comment-form .checkbox-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.comment-form .checkbox-grp input {
  width: 22px;
  margin-right: 9px;
  height: 22px;
  cursor: pointer;
}
.comment-form .checkbox-grp label {
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  user-select: none;
}
.comment-form .tg-btn {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}
.comment-form .tg-btn:hover {
  background: var(--tg-theme-primary);
}

/*=============================
    	13. Instagram
===============================*/
.instagram__area {
  padding: 0 0 20px;
}
.instagram__area-two {
  padding: 0 0 10px;
}
.instagram__item {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
}
.instagram__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: 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;
  opacity: 0;
}
.instagram__item:hover::after {
  opacity: 1;
}
.instagram__item:hover .icon {
  opacity: 1;
}
.instagram__item a {
  width: 100%;
  display: block;
}
.instagram__item a img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .instagram__item a img {
    height: 270px;
  }
}
@media (max-width: 991.98px) {
  .instagram__item a img {
    height: 230px;
  }
}
.instagram__item a .icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid 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%;
  color: var(--tg-color-white-default);
  -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;
  z-index: 2;
}
.instagram__item-two {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.instagram__item-two a {
  height: 200px;
}
@media (max-width: 1199.98px) {
  .instagram__item-two a {
    height: 180px;
  }
}
.instagram__item-two a img {
  height: 200px;
}
.instagram__item-two a .icon {
  width: 44px;
  height: 44px;
  left: 20px;
  top: 20px;
  transform: translate(0);
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-heading-color);
  background: var(--tg-color-yellow-light-2);
}
.instagram__item-two a .icon svg {
  width: 15px;
  height: auto;
}
.instagram__item-two a .icon:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.instagram__item-three {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.instagram__item-three a img {
  height: 280px;
}
@media (max-width: 1500px) {
  .instagram__item-three a img {
    height: 250px;
  }
}
@media (max-width: 1199.98px) {
  .instagram__item-three a img {
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .instagram__item-three a img {
    height: 150px;
  }
}
.instagram__item-three a .icon {
  width: auto;
  height: auto;
  border: none;
}
.instagram__item-three a .icon:hover {
  color: var(--tg-theme-primary);
}
.instagram__item-three a .icon svg {
  width: 34px;
  height: 34px;
}

.instagram__active-two {
  margin: 0 55px;
}
@media (max-width: 1800px) {
  .instagram__active-two {
    margin: 0 30px;
  }
}
@media (max-width: 767.98px) {
  .instagram__active-two {
    margin: 0 20px;
  }
}

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

/*=============================
    	14. Cta
===============================*/
.cta__area-two {
  position: relative;
  z-index: 1;
  padding: 160px 0;
}
@media (max-width: 1500px) {
  .cta__area-two {
    padding: 150px 0;
  }
}
@media (max-width: 991.98px) {
  .cta__area-two {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .cta__area-two {
    padding: 60px 0;
  }
}
.cta__bg {
  background-size: cover;
  background-position: center;
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  .cta__bg {
    padding: 60px 0;
  }
}
.cta__bg-two {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-attachment: fixed;
}
@media (max-width: 991.98px) {
  .cta__content {
    text-align: center;
    margin-bottom: 40px;
  }
}
.cta__content .title {
  color: var(--tg-color-white-default);
  margin-bottom: 0;
  font-size: 36px;
}
@media (max-width: 1199.98px) {
  .cta__content .title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .cta__content .title {
    font-size: 30px;
  }
}
.cta__content-two .section__title.white-title .sub-title {
  color: var(--tg-theme-primary);
}
.cta__content-two .section__title .title {
  font-size: 80px;
  letter-spacing: 0.02em;
}
@media (max-width: 1500px) {
  .cta__content-two .section__title .title {
    font-size: 70px;
  }
}
@media (max-width: 1199.98px) {
  .cta__content-two .section__title .title {
    font-size: 62px;
  }
}
@media (max-width: 767.98px) {
  .cta__content-two .section__title .title {
    font-size: 45px;
  }
}
.cta__content-two .tg-btn {
  background: var(--tg-color-yellow-light-2);
}
.cta__content-two .tg-btn:hover {
  background: var(--tg-theme-primary);
}
.cta__btn {
  text-align: right;
}
@media (max-width: 991.98px) {
  .cta__btn {
    text-align: center;
  }
}

/*=============================
    	16. Marquee
===============================*/
.marquee__wrap {
  position: relative;
  background: var(--tg-color-yellow-light-2);
  position: absolute;
  left: -10px;
  bottom: 20%;
  right: -10px;
  transform: rotate(-8deg);
  padding: 18px 0 14px 0;
  z-index: 1;
}
.marquee__wrap::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  height: 100%;
  bottom: 0;
  background: rgba(255, 230, 0, 0.25);
  transform: rotate(-3deg);
  z-index: -1;
}
.marquee__wrap-two {
  background: var(--tg-color-white-default);
}
.marquee__wrap-two::before {
  background: rgba(255, 255, 255, 0.25);
}
.marquee__item {
  margin-right: 25px;
  display: inline;
  font-size: 20px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.marquee__item:last-child {
  margin-right: 0;
}

/*=============================
    	17. Team
===============================*/
.team__item {
  text-align: center;
}
.team__item:hover .team__thumb img {
  transform: scale(1.1);
}
.team__thumb {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .team__thumb {
    margin-bottom: 20px;
  }
}
.team__thumb img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .team__thumb img {
    height: 290px;
  }
}
@media (max-width: 991.98px) {
  .team__thumb img {
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .team__thumb img {
    height: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team__thumb img {
    height: 300px;
  }
}
.team__content .title {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--tg-color-white-default);
}
@media (max-width: 767.98px) {
  .team__content .title {
    font-size: 20px;
  }
}
.team__content span {
  color: var(--tg-color-white-default);
  display: block;
}
.team__shape img {
  position: absolute;
  left: 0;
  top: 57px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .team__shape img {
    top: 20px;
    height: 200px;
  }
}
@media (max-width: 991.98px) {
  .team__shape img {
    top: 10px;
    height: 170px;
  }
}
@media (max-width: 767.98px) {
  .team__shape img {
    top: 5px;
    height: 115px;
  }
}

/*=============================
    	18. Checkout
===============================*/
.coupon__code-info {
  background: #f5f5f5;
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .coupon__code-info {
    flex-wrap: wrap;
  }
}
.coupon__code-info a:hover {
  text-decoration: underline;
  color: var(--tg-theme-primary);
}
.coupon__code-form {
  margin-bottom: 35px;
  display: none;
}
.coupon__code-form p {
  margin-bottom: 15px;
}
.coupon__code-form input {
  width: 100%;
  background: #f5f5f5;
  height: 55px;
  border: none;
  color: var(--tg-heading-color);
  padding: 0 20px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.customer__form-wrap {
  border: 1px solid #ebebeb;
  padding: 30px;
}
@media (max-width: 767.98px) {
  .customer__form-wrap {
    padding: 25px 20px;
  }
}
.customer__form-wrap .title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
}
@media (max-width: 767.98px) {
  .customer__form-wrap .title {
    font-size: 1.3rem;
  }
}
.customer__form-wrap .title.title-two {
  margin-top: 20px;
}
.customer__form-wrap .form-grp {
  margin-bottom: 15px;
}
.customer__form-wrap .form-grp.select-grp {
  position: relative;
}
.customer__form-wrap .form-grp.select-grp::after {
  content: "\f107";
  position: absolute;
  bottom: 13px;
  transform: rotate(180deg);
  font-family: "flaticon_tg_default";
  font-weight: 700;
  right: 20px;
  font-size: 14px;
  color: var(--tg-theme-primary);
}
.customer__form-wrap .form-grp label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--tg-body-color);
}
.customer__form-wrap .form-grp textarea, .customer__form-wrap .form-grp input {
  width: 100%;
  color: var(--tg-heading-color);
  height: 53px;
  padding: 0 20px;
  background: #f5f5f5;
  border: none;
}
.customer__form-wrap .form-grp textarea {
  padding: 10px 20px 0;
  min-height: 120px;
  max-height: 120px;
}
.customer__form-wrap .form-grp select {
  background-color: #f5f5f5;
  border: none;
  color: var(--tg-heading-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  outline: none;
  padding: 12px 37px 9px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 53px;
  cursor: pointer;
}

.order__info-wrap {
  border: 2px solid var(--tg-theme-primary);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
}
@media (max-width: 991.98px) {
  .order__info-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .order__info-wrap {
    padding: 25px 20px;
  }
}
.order__info-wrap > .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
}
.order__info-wrap .list-wrap {
  margin-bottom: 20px;
}
.order__info-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-body-color);
  font-weight: 600;
  font-size: 15px;
  gap: 8px;
  padding: 12px 0;
}
.order__info-wrap .list-wrap li span {
  color: var(--tg-heading-color);
  display: block;
  line-height: 1;
  font-weight: 700;
}
.order__info-wrap .list-wrap li.title span {
  color: var(--tg-body-color);
}
.order__info-wrap .list-wrap li:last-child span {
  font-size: 1.25rem;
}
.order__info-wrap p {
  margin-bottom: 15px;
}
.order__info-wrap p a {
  text-decoration: underline;
}
.order__info-wrap p a:hover {
  color: var(--tg-theme-primary);
}
.order__info-wrap .tg-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
}

.cart__table thead th {
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .cart__table thead th.product__subtotal, .cart__table thead th.product__price {
    display: none;
  }
}
.cart__table tbody tr {
  position: relative;
}
.cart__table tbody td {
  padding: 12px 17px;
  text-align: left;
  line-height: 1.1;
  border: none;
  border-top: 1px solid #ebebeb;
  vertical-align: middle;
  color: var(--tg-body-color);
}
@media (max-width: 767.98px) {
  .cart__table tbody td {
    padding: 12px 10px;
  }
}
.cart__table tbody td:first-child {
  padding-left: 0;
}
.cart__table tbody td a {
  color: var(--tg-theme-primary);
}
.cart__table tbody td.product__name {
  font-weight: 500;
}
.cart__table tbody td.product__remove {
  padding-right: 5px;
  text-align: right;
}
.cart__table tbody td.product__remove a {
  font-size: 25px;
}
.cart__table tbody td.product__quantity {
  text-align: right;
  padding-right: 0;
}
.cart__table .product__thumb-cart img {
  max-height: 50px;
}
@media (max-width: 767.98px) {
  .cart__table .product__price {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .cart__table .product__remove a {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    color: #fff;
    background-color: red;
    font-size: 15px !important;
    left: 0;
    margin-top: -10px;
  }
}
@media (max-width: 767.98px) {
  .cart__table .product__subtotal {
    display: none;
  }
}
.cart__table .product__remove {
  padding: 0 !important;
  width: 0 !important;
}
.cart__actions {
  padding-top: 25px !important;
  padding-bottom: 10px !important;
  padding-right: 0 !important;
}
.cart__actions-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .cart__actions-form {
    width: 100%;
  }
}
.cart__actions-form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
  height: 50px;
  background: #f5f5f5;
  color: var(--tg-heading-color);
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  padding-right: 0;
}
.cart__collaterals-wrap {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 1.25rem;
  height: 100%;
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .cart__collaterals-wrap {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .cart__collaterals-wrap {
    margin-top: 50px;
  }
}
.cart__collaterals-wrap .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.9375rem;
  border-bottom: 0.9375rem;
  border-bottom: 1px solid #ebebeb;
}
.cart__collaterals-wrap .list-wrap {
  padding-bottom: 0.9375rem;
}
.cart__collaterals-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-heading-color);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 5px;
}
.cart__collaterals-wrap .list-wrap li span {
  color: var(--tg-body-color);
  font-weight: 400;
}
.cart__collaterals-wrap .list-wrap li span.amount {
  font-weight: 600;
  color: var(--tg-heading-color);
  font-size: 1.25rem;
}
.cart__collaterals-wrap .tg-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.f-right {
  float: right;
}
@media (max-width: 767.98px) {
  .f-right {
    float: none;
  }
}

@media (max-width: 767.98px) {
  .update__cart-btn {
    text-align: center !important;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .update__cart-btn .tg-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/*=============================
    	19. Contact
===============================*/
.contact__area {
  padding: 100px 0;
}
.contact-map {
  width: 100%;
  height: 420px;
}
@media (max-width: 1199.98px) {
  .contact-map {
    height: 360px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact__info-item {
  position: relative;
  background: var(--tg-color-white-default);
  border: 1px solid rgba(34, 34, 34, 0.15);
  padding: 45px 55px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 18px;
}
@media (max-width: 1199.98px) {
  .contact__info-item {
    padding: 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .contact__info-item {
    padding: 30px 30px;
  }
}
.contact__info-item:last-child {
  margin-bottom: 0;
}
.contact__info-item .title {
  font-size: 24px;
  margin-bottom: 6px;
}
.contact__info-item p {
  margin-bottom: 10px;
  font-size: 20px;
}
.contact__info-item .list-wrap li {
  margin-bottom: 3px;
}
.contact__info-item .list-wrap li:last-child {
  margin-bottom: 0;
}
.contact__info-item .list-wrap li a {
  color: var(--tg-body-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
.contact__info-item .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--tg-theme-primary);
  -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;
}
.contact__info-item .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.contact__info-item .list-wrap li a:hover::before {
  width: 100%;
}
.contact__info-item .shape {
  position: absolute;
  right: -19px;
  bottom: -13px;
  color: var(--tg-color-gray-2);
  z-index: -1;
}
.contact__form-wrap {
  background: var(--tg-color-gray-2);
  padding: 50px 60px 55px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .contact__form-wrap {
    padding: 35px 35px 40px;
  }
}
@media (max-width: 991.98px) {
  .contact__form-wrap {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .contact__form-wrap {
    padding: 35px 30px 40px;
  }
}
.contact__form-wrap .title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .contact__form-wrap .title {
    font-size: 26px;
  }
}
.contact__form .form-grp {
  margin-bottom: 15px;
}
.contact__form .form-grp > label {
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  line-height: 1;
  margin-bottom: 14px;
}
.contact__form .checkbox-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}
.contact__form .checkbox-grp input {
  width: 18px;
  margin-right: 9px;
  height: 18px;
  cursor: pointer;
  flex: 0 0 auto;
  margin-top: 3px;
}
.contact__form .checkbox-grp label {
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  user-select: none;
  margin-bottom: 0;
  line-height: 1.2;
}
.contact__form-two .row {
  --bs-gutter-x: 10px;
}
.contact__form-two .form-grp {
  margin-bottom: 10px;
}
.contact__form-two .form-grp textarea, .contact__form-two .form-grp input {
  border: none;
}
.contact__form-two button {
  width: 100%;
  background: var(--tg-theme-primary);
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--tg-color-white-default);
  padding: 16px 20px;
}
.contact__form-two button:hover {
  background: var(--tg-color-gray-1);
  color: var(--tg-theme-primary);
}

.ajax-response.error, .ajax-response.success {
  margin: 20px 0 0 !important;
}
.ajax-response.error {
  color: red;
}
.ajax-response.success {
  color: green;
}

/*=============================
    	20. login
===============================*/
.login__left-side {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 64px 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .login__left-side {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .login__left-side {
    padding: 25px;
    height: 350px;
  }
}
.login__left-side::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.43) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.login__left-content p {
  font-size: 20px;
  color: var(--tg-color-white-default);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .login__left-content p {
    font-size: 18px;
  }
}
.login__left-content .title {
  font-size: 1.125rem;
  color: var(--tg-color-white-default);
  margin-bottom: 8px;
  font-weight: 600;
}
.login__left-content span {
  display: block;
  line-height: 1;
  color: var(--tg-color-white-default);
  opacity: 0.8;
}
.login__form-wrap {
  /*text-align: center;*/
  padding: 30px 15px;
  width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 991.98px) {
  .login__form-wrap {
    width: 360px;
  }
}
@media (max-width: 767.98px) {
  .login__form-wrap {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login__form-wrap {
    width: 80%;
  }
}
.login__form-wrap .title {
  font-size: 36px;
  margin-bottom: 30px;
}
.login__form-wrap .divider {
  display: block;
  padding: 30px 0;
  text-transform: uppercase;
}
.login__form-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.login__form-social a {
  font-size: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 48px;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-white-default);
  background: #212529;
  border-radius: 8px;
}
.login__form-social a:nth-child(2) {
  background: #066ec2;
}
.login__form .form__grp {
  margin-bottom: 15px;
}
.login__form .tg-btn {
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

.account__check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account__check-remember {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 5px;
}
.account__check-remember input {
  width: 20px;
  height: 20px;
  margin-inline-end: 3px;
  padding: 0;
}
.account__check-remember label {
  user-select: none;
}
.account__check-remember label a {
  font-weight: 600;
  text-decoration: underline;
  margin-left: 5px;
}

.account__check-forgot a {
  color: var(--tg-theme-primary);
  font-size: 16px;
  text-decoration: underline;
  font-weight: 600;
}

.account__switch {
  margin-top: 30px;
}
.account__switch p {
  margin-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.account__switch a {
  color: var(--tg-theme-primary);
  text-decoration: underline;
  font-weight: 600;
}

/*=============================
    	15. Footer
===============================*/
.footer__top {
  padding: 120px 0 40px;
}
@media (max-width: 767.98px) {
  .footer__top {
    padding: 100px 0 40px;
  }
}
.footer__top .row > *:nth-child(2) .footer__widget {
  margin-left: 80px;
}
@media (max-width: 1199.98px) {
  .footer__top .row > *:nth-child(2) .footer__widget {
    margin-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .footer__top .row > *:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top .row > *:nth-child(3) .footer__widget {
  margin-left: 22px;
}
@media (max-width: 1199.98px) {
  .footer__top .row > *:nth-child(3) .footer__widget {
    margin-left: 0;
  }
}
.footer__top .row > *:nth-child(4) .footer__widget {
  margin-left: 80px;
}
@media (max-width: 1199.98px) {
  .footer__top .row > *:nth-child(4) .footer__widget {
    margin-left: 25px;
  }
}
@media (max-width: 991.98px) {
  .footer__top .row > *:nth-child(4) .footer__widget {
    margin-left: 0;
  }
}
.footer__widget {
  margin-bottom: 40px;
}
.footer__widget-title {
  margin-bottom: 32px;
  color: var(--tg-color-white-default);
  font-size: 20px;
}
.footer__widget-link li {
  margin-bottom: 10px;
}
.footer__widget-link li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer__widget-link li a:hover {
  color: var(--tg-color-orange-light);
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__content {
  margin-bottom: 40px;
}
.footer__content p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__social li a {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  color: var(--tg-color-white-default);
}
.footer__social li a:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}
.footer__newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__newsletter-form {
  position: relative;
  margin-bottom: 35px;
}
.footer__newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background: transparent;
  font-size: 14px;
  color: var(--tg-color-white-default);
  padding: 16px 50px 16px 25px;
  height: 58px;
}
.footer__newsletter-form input::placeholder {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__newsletter-form button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  color: var(--tg-color-white-default);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 0;
}
.footer__bottom-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 100px;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .footer__bottom-right {
    gap: 20px 50px;
  }
}
@media (max-width: 991.98px) {
  .footer__bottom-right {
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer__bottom-right {
    gap: 20px 25px;
  }
}
.footer__bottom-right li {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991.98px) {
  .footer__bottom-right li {
    text-align: center;
  }
}
.footer__bottom-right li a {
  display: block;
  color: var(--tg-color-white-default);
  font-weight: 500;
}
.footer__bottom-right li a:hover {
  color: var(--tg-theme-primary);
}

@media (max-width: 991.98px) {
  .copyright__content {
    text-align: center;
  }
}
.copyright__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}
.copyright__content p a {
  color: var(--tg-color-white-default);
  font-weight: 500;
}
.copyright__content p a:hover {
  color: var(--tg-theme-primary);
}

/*# sourceMappingURL=main.css.map */
