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

   Theme Name: ThemeGenix
   Description: ThemeGenix - Premium Template and WordPress Themes
   Version: 1.0

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

    01. Theme Default CSS
    02. Buttons
    03. Preloader
    04. Scroll Top
    05. Input
    06. Mobile Menu
    07. Animation
    08. Section Title
    09. Header
    10. Hero
    11. Feature
    12. Product
    13. Pricing
    14. Custom
    15. Testimonial
    16. Faq
    17. Cta
    18. Breadcrumb

    20. Footer

==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
:root {
  scroll-behavior: auto;
  --tg-body-font-family: 'Inter', sans-serif;
  --tg-heading-font-family: 'Inter', sans-serif;
  --tg-heading2-font-family: 'Libre Baskerville', serif;
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.5;
  --tg-heading-line-height: 1.1;
  --tg-body-color: #525866;
  --tg-heading-color: #0E121B;
  --tg-theme-primary: #6D3AFF;
  --tg-theme-secondary: #8256FF;
  --tg-color-icon: #FA7319;
  --tg-color-white-default: #ffffff;
  --tg-color-black-default: #000000;
  --tg-color-red-default: #E93544;
  --tg-color-green-default: #1FC16B;
  --tg-color-yellow-default: #F6B51E;
  --tg-color-smoke-1: #F2F5F8;
  --tg-color-light-1: #99A0AE;
  --tg-color-light-2: #717784;
  --tg-color-black-1: #222530;
  --tg-border-1: #000000;
  --tg-border-2: #DFE2E8;
  --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
===============================*/
.text-white {
  color: var(--tg-color-white-default);
}
.text-title {
  color: var(--tg-heading-color);
}
.font-heading2 {
  font-family: var(--tg-heading2-font-family);
  font-weight: 500;
  font-style: italic;
}
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
  background: var(--tg-color-white-default);
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*, ::after, ::before {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth !important;
}

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;
  font-family: inherit;
}

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

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

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

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

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.375rem, 3.5vw, 2rem); }
h5 { font-size: clamp(1.188rem, 3vw, 1.5rem); }
h6 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.align-items-center {
  align-items: center !important;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
p {
  margin-bottom: 15px;
}
.position-relative {
  position: relative !important;
}
hr {
  border-bottom: 1px solid var(--tg-border-2);
  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;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::-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, .container-fluid {
  --tg-gutter-x: 24px;
  --tg-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--tg-gutter-x) * 0.5);
  padding-left: calc(var(--tg-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1314px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1150px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 599px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

.row {
  --tg-gutter-y: 0;
  --tg-gutter-x: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--tg-gutter-y));
  margin-right: calc(-0.5 * var(--tg-gutter-x));
  margin-left: calc(-0.5 * var(--tg-gutter-x));
}
.row.g-0 {
  --tg-gutter-x: 0px;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tg-gutter-x) * 0.5);
  padding-left: calc(var(--tg-gutter-x) * 0.5);
  margin-top: var(--tg-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-auto,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .col-md-auto {
    width: auto;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-9 {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .col-lg-auto {
    width: auto;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .col-xl-auto {
    width: auto;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-3,
  .col-xxl-5,
  .col-xxl-6,
  .col-xxl-8,
  .col-xxl-9,
  .col-xxl-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-5 {
    width: 41.66666667%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-8 {
    width: 66.66666667%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-10 {
    width: 83.33333333%;
  }
}
.g-4, .gy-4 {
  --tg-gutter-y: 1.5rem;
}

.gy-10 {
  --tg-gutter-y: 10px;
}

.gy-20 {
  --tg-gutter-y: 20px;
}

.gy-30 {
  --tg-gutter-y: 30px;
}

.gy-35 {
  --tg-gutter-y: 35px;
}

.gy-40 {
  --tg-gutter-y: 40px;
}

.gy-50 {
  --tg-gutter-y: 50px;
}

.gy-60 {
  --tg-gutter-y: 60px;
}
@media (max-width: 599px) {
  .gy-60 {
    --tg-gutter-y: 30px;
  }
}

.gy-80 {
  --tg-gutter-y: 80px;
}
@media (max-width: 1199.98px) {
  .gy-80 {
    --tg-gutter-y: 50px;
  }
}
@media (max-width: 599px) {
  .gy-80 {
    --tg-gutter-y: 40px;
  }
}

.gy-90 {
  --tg-gutter-y: 90px;
}
@media (max-width: 1199.98px) {
  .gy-90 {
    --tg-gutter-y: 50px;
  }
}
@media (max-width: 599px) {
  .gy-90 {
    --tg-gutter-y: 40px;
  }
}

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

.gx-10 {
  --tg-gutter-x: 10px;
}

.gx-20 {
  --tg-gutter-x: 20px;
}

.gx-30 {
  --tg-gutter-x: 30px;
}

.gx-60 {
  --tg-gutter-x: 60px;
}

@media (min-width: 1500px) {
  .gx-80 {
    --tg-gutter-x: 80px;
  }
}

@media (min-width: 1500px) {
  .gx-50 {
    --tg-gutter-x: 50px;
  }
}

@media (min-width: 1500px) {
  .gx-70 {
    --tg-gutter-x: 70px;
  }
}

@media (min-width: 1500px) {
  .gx-100 {
    --tg-gutter-x: 100px;
  }
}

@media (min-width: 1500px) {
  .gx-110 {
    --tg-gutter-x: 110px;
  }
}

@media (min-width: 1500px) {
  .gx-120 {
    --tg-gutter-x: 120px;
  }
}

@media (min-width: 1500px) {
  .gx-140 {
    --tg-gutter-x: 140px;
  }
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.text-center {
  text-align: center !important;
}

.fw-light {
  font-weight: var(--tg-fw-light);
}

.fw-regular {
  font-weight: var(--tg-fw-regular);
}

.fw-medium {
  font-weight: var(--tg-fw-medium);
}

.fw-semibold {
  font-weight: var(--tg-fw-semi-bold) !important;
}

.fw-bold {
  font-weight: var(--tg-fw-bold);
}

.fw-extrabold {
  font-weight: var(--tg-fw-extra-bold);
}

.bg-cover {
  background-size: cover;
}

.d-block {
  display: block !important;
}

.w-100 {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

/*default margin style***************/
.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-34 {
  margin-top: 34px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.p-0 {
  padding: 0;
}

.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-60 {
  padding-bottom: 60px;
}

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

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

.tg-swiper__slider.has-shadow {
  padding-left: 14px;
  padding-right: 14px;
  margin: -25px -12px;
}
.tg-swiper__slider.has-shadow .swiper-wrapper {
  padding: 26px 0;
}
.tg-swiper__slider.swiper-fade .swiper-slide {
  opacity: 0 !important;
}
.tg-swiper__slider.swiper-fade .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.checklist-wrap .list-wrap li {
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--tg-heading-color);
  display: flex;
  gap: 10px;
}
.checklist-wrap .list-wrap li svg {
  position: relative;
  top: 4px;
}
.checklist-wrap .list-wrap li .icon {
  height: 4px;
  width: 4px;
  background: var(--tg-theme-primary);
  border-radius: 50%;
  display: inline-block;
}
.checklist-wrap .list-wrap li:not(:last-child) {
  margin-bottom: 12px;
}
.checklist-wrap.style2 .list-wrap li {
  position: relative;
  display: block;
  color: var(--tg-body-color);
  padding-left: 18px;
}
.checklist-wrap.style2 .list-wrap li:before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--tg-heading-color);
  display: inline-block;
  top: 9px;
  left: 0;
  flex: none;
}
.checklist-wrap.style2 .list-wrap li:not(:last-child) {
  margin-bottom: 10px;
}
.checklist-wrap.style3 .list-wrap li {
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  padding-left: 28px;
  position: relative;
  letter-spacing: -0.01em;
}
.checklist-wrap.style3 .list-wrap li:not(:last-child) {
  margin-bottom: 12px;
}
.checklist-wrap.style3 .list-wrap li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 12px;
  clip-path: path("M6.36396 9.19238L15.5564 0L16.9706 1.41421L6.36396 12.0208L0 5.65688L1.41422 4.24268L6.36396 9.19238Z");
  background: var(--tg-heading-color);
}
.checklist-wrap.style3 .list-wrap li.excluded {
  color: var(--tg-body-color);
  opacity: 0.65;
}
.checklist-wrap.style3 .list-wrap li.excluded:before {
  top: 6px;
  width: 12px;
  height: 12px;
  clip-path: path("M1.41421 0L6 4.58579L10.5858 0L12 1.41421L7.41421 6L12 10.5858L10.5858 12L6 7.41421L1.41421 12L0 10.5858L4.58579 6L0 1.41421L1.41421 0Z");
  background: currentColor;
}
.checklist-wrap.is-collapsible .list-wrap li.checklist-hidden {
  display: none;
}
.checklist-wrap.is-collapsible.is-expanded .list-wrap li.checklist-hidden {
  display: flex;
}
.checklist-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--tg-theme-primary);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.checklist-toggle:hover, .checklist-toggle:focus-visible {
  opacity: 0.75;
}
.checklist-toggle .count {
  font-weight: 500;
  color: var(--tg-body-color);
}
.checklist-toggle .count:empty {
  display: none;
}
.checklist-toggle .arrow {
  width: 10px;
  height: 6px;
  background: currentColor;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: transform 0.3s ease;
}
.is-expanded .checklist-toggle .arrow {
  transform: rotate(180deg);
}

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

.btn {
  user-select: none;
  background: radial-gradient(138.41% 100% at 54.51% 100%, var(--tg-theme-primary) 26%, var(--tg-theme-secondary) 79%);
  border: medium none;
  color: var(--tg-color-white-default);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  line-height: 1;
  margin-bottom: 0;
  padding: 12px 20px;
  min-height: 52px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 12px;
  justify-content: center;
  display: flex;
  align-items: center;
  letter-spacing: -0.006em;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -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;
}
.btn:before {
  content: "";
  position: absolute;
  top: -4em;
  height: 4em;
  width: 100%;
  left: 0;
  right: 0;
  -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;
  background: linear-gradient(to top, transparent 1%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
}
.btn:hover, .btn:focus, .btn:active {
  color: var(--tg-color-white-default);
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  transform: translateY(8em);
}
.btn-two {
  background: transparent;
  color: var(--tg-heading-color);
  border: 1px solid #DFE2E8;
  padding: 12px 20px;
  min-height: 52px;
}
.btn-two:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(138.41% 100% at 54.51% 100%, #0e121b 26%, #222530 79%);
  z-index: -1;
  opacity: 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;
}
.btn-two:hover, .btn-two:focus, .btn-two:active {
  color: var(--tg-color-white-default);
}
.btn-two:hover:after, .btn-two:focus:after, .btn-two:active:after {
  opacity: 1;
}
.btn-three {
  color: var(--tg-color-white-default);
  background: radial-gradient(138.41% 100% at 54.51% 100%, #0e121b 26%, #222530 79%);
}
.btn-three:hover, .btn-three:focus, .btn-three:active {
  color: var(--tg-color-white-default);
}
.btn-four {
  background: transparent;
  color: var(--tg-color-white-default);
  border: 1px solid var(--tg-color-white-default);
  padding: 17px 20px;
}
.btn-four:hover, .btn-four:focus, .btn-four:active {
  background: var(--tg-color-white-default);
  color: var(--tg-heading-color);
}
.btn-five {
  background: radial-gradient(138.41% 100% at 54.51% 100%, #1DAF61 26%, #1ED071 79%);
  color: var(--tg-color-white-default);
}
.btn-five:hover, .btn-five:focus, .btn-five:active {
  background: radial-gradient(138.41% 100% at 54.51% 100%, #1DAF61 26%, #1ED071 79%);
  color: var(--tg-color-white-default);
}
.btn-six {
  background: radial-gradient(138.41% 100% at 54.51% 100%, #27A7E7 26%, #42BEFD 79%);
  color: var(--tg-color-white-default);
}
.btn-six:hover, .btn-six:focus, .btn-six:active {
  background: radial-gradient(138.41% 100% at 54.51% 100%, #27A7E7 26%, #42BEFD 79%);
  color: var(--tg-color-white-default);
}
.btn.w-100 {
  justify-content: center;
}
@media (max-width: 599px) {
    .btn {
        letter-spacing: 0;
        padding: 14px 15px;
        min-height: 42px;
        font-size: 14px;
    }
    .btn-two {
        padding: 12px 15px;
        min-height: 42px;
    }
}
.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--tg-color-white-default);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
}
.icon-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.link-btn {
  font-weight: 500;
  position: relative;
  line-height: 1;
}
.link-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.link-btn:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}
button.link-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
/*Social Area**************/
.social-links .list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-links .list-wrap a {
  border-radius: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--tg-border-2);
  font-size: 16px;
  transition: 0.4s;
}
.social-links .list-wrap a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

/*=============================
    Preloader
===============================*/
#preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
  background: var(--tg-color-white-default);
  cursor: wait;
}
#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 #fdf2f9;
  -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;
}
#preloader.black-bg .loader-container, #preloader.black2-bg .loader-container {
  border: 3px solid #1a1a1a;
}

@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);
  }
}
/*=============================
    Scroll Top
===============================*/
.scroll__top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: var(--tg-color-white-default);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 599px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 599px) {
  .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-heading-color);
  color: var(--tg-color-white-default);
}

/*=============================
    Input
===============================*/
select,
.single-select,
.form-control,
.form-select,
textarea,
input {
  height: 55px;
  padding: 0 16px;
  border: 1px solid var(--tg-border-2);
  color: var(--tg-heading-color);
  background-color: var(--tg-color-smoke-1);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  font-family: var(--tg-body-font-family);
  transition: 0.4s ease-in-out;
  border-radius: 14px;
}
select:focus,
.single-select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--tg-theme-primary);
  background-color: var(--tg-color-smoke-1);
}
select::placeholder,
.single-select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--tg-color-light-1);
}
@media (max-width: 380px) {
  select,
  .single-select,
  .form-control,
  .form-select,
  textarea,
  input {
    font-size: 14px;
    border-radius: 10px;
  }
  select::placeholder,
  .single-select::placeholder,
  .form-control::placeholder,
  .form-select::placeholder,
  textarea::placeholder,
  input::placeholder {
    font-size: 14px;
  }
}

.single-select,
.form-select,
select {
  display: block;
  width: 100%;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.single-select option,
.form-select option,
select option {
  color: var(--tg-heading-color);
}
.single-select:after,
.form-select:after,
select:after {
  right: 30px;
  height: 8px;
  width: 8px;
}
.single-select .list,
.form-select .list,
select .list {
  width: 100%;
}

textarea.form-control,
textarea {
  min-height: 160px;
  padding-top: 18px;
  padding-bottom: 17px;
}

.form-group {
  position: relative;
}
.form-group .form-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  letter-spacing: -0.015em;
  margin-top: -0.5em;
  cursor: default;
}
@media (max-width: 767px) {
    .form-group .form-label {
        font-size: 14px;
    }
    select,
    .single-select,
    .form-control,
    .form-select,
    textarea,
    input {
        height: 46px;
        border-radius: 5px;
        padding: 0 14px;
    }
    textarea.form-control,
    textarea {
        min-height: 120px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}
.form-group .form-label span {
    color: red;
}
input[type=date] {
  padding: 0 25px 0 25px;
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

option:checked, option:focus, option:hover {
  background-color: var(--tg-theme-primary);
  color: var(--tg-heading-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
  border-radius: 10px;
}
input[type=checkbox]:checked ~ label:before {
  content: "\f00c";
  color: var(--tg-color-white-default);
  background-color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}
input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type=checkbox] ~ label:before {
  content: "";
  font-family: var(--tg-icon-font-family);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--tg-color-white-default);
  border: 1px solid var(--tg-theme-primary);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}
input[type=checkbox].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}
input[type=checkbox].style2 ~ label:before {
  background-color: white;
  border: 1px solid rgb(247, 204, 215);
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}
input[type=checkbox].style2:checked ~ label:before {
  color: var(--tg-theme-primary);
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--tg-icon-font-family);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--tg-theme-primary);
  border-radius: 100%;
  font-weight: 700;
  background: var(--tg-color-white-default);
  color: transparent;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ label::before {
  border-color: var(--tg-theme-primary);
  background-color: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--tg-heading-color);
  font-family: var(--tg-body-font-family);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

.xdsoft_datetimepicker {
  z-index: 9999;
}

/*=============================
	Mobile Menu
===============================*/
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 991;
  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);
  -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: 20px 25px;
  text-align: left;
}
.tgmobile__menu .nav-logo img {
  max-height: 35px;
}
.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;
  line-height: 32px;
  color: var(--tg-heading-color);
  background: var(--tg-border-2);
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-heading-color);
  -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-heading-color);
  -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;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}
.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  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: 10px;
    top: 10px;
    width: auto;
    text-align: center;
    line-height: 1;
    color: var(--tg-theme-primary);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tgmobile__menu .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: 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: 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;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px;
}
.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-body-color);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.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);
  display: flex;
  flex-direction: column;
}
.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;
}
@media (max-width: 991.98px) {
  .tgmobile__menu-outer .mobile-nav-toggler {
    display: block !important;
  }
}
.tgmobile__menu-bottom {
  margin-top: auto;
  padding: 30px 25px 30px;
}
.tgmobile__menu-bottom .contact-info {
  margin-bottom: 20px;
}
.tgmobile__menu-bottom .contact-info li:not(:last-child) {
  margin-bottom: 6px;
}
.tgmobile__menu-bottom .contact-info li a {
  color: var(--tg-heading-color);
}
.tgmobile__menu-bottom .contact-info li a:hover {
  color: var(--tg-theme-primary);
}

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

/*=============================
    Keyframe Animation
===============================*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  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);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  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);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Cursor-like wandering motion: move -> pause -> move -> pause ... */
@keyframes jumpAni {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  15% {
    -webkit-transform: translate(-7px, -12px);
    transform: translate(-7px, -12px);
  }
  25% {
    -webkit-transform: translate(-7px, -12px);
    transform: translate(-7px, -12px);
  }
  45% {
    -webkit-transform: translate(-3px, 30px);
    transform: translate(-3px, 30px);
  }
  55% {
    -webkit-transform: translate(-3px, 30px);
    transform: translate(-3px, 30px);
  }
  75% {
    -webkit-transform: translate(30px, 12px);
    transform: translate(30px, 12px);
  }
  85% {
    -webkit-transform: translate(30px, 12px);
    transform: translate(30px, 12px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.jump-anim {
  -webkit-animation: jumpAni 16s ease-in-out infinite;
  animation: jumpAni 16s ease-in-out infinite;
}

@keyframes jumpAni2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  15% {
    -webkit-transform: translate(6px, 18px);
    transform: translate(6px, 18px);
  }
  25% {
    -webkit-transform: translate(6px, 18px);
    transform: translate(6px, 18px);
  }
  45% {
    -webkit-transform: translate(3px, -30px);
    transform: translate(3px, -30px);
  }
  55% {
    -webkit-transform: translate(3px, -30px);
    transform: translate(3px, -30px);
  }
  75% {
    -webkit-transform: translate(-30px, -10px);
    transform: translate(-30px, -10px);
  }
  85% {
    -webkit-transform: translate(-30px, -10px);
    transform: translate(-30px, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.jump-anim2 {
  -webkit-animation: jumpAni2 18s ease-in-out infinite;
  animation: jumpAni2 18s ease-in-out infinite;
}

/*=============================
	Section Title
===============================*/
.section__title {
  margin-bottom: 48px;
}
@media (max-width: 991.98px) {
    .section__title {
        margin-bottom: 35px;
    }
}
.section__title .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-color-white-default);
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    padding: 1px 12px;
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 10px;
    margin-bottom: 27px;
    line-height: 30px;
}
@media (max-width: 767px) {
    .section__title .subtitle {
        margin-bottom: 15px;
    }
}
.section__title .subtitle:before {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--tg-color-green-default);
}
.section__title .title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 3.25rem;
  line-height: 1.166;
  margin-top: -0.2em;
  letter-spacing: -0.04em;
}
@media (max-width: 1399px) {
  .section__title .title {
    font-size: 2.625rem;
  }
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 2.375rem;
  }
}
@media (max-width: 599px) {
    .section__title .title {
        font-size: 1.6rem;
        line-height: 1.05;
        margin-top: 0;
        letter-spacing: 0;
    }
}
@media (max-width: 991.98px) {
  .section__title .title br {
    display: none;
  }
}
.section__title p {
  margin-top: 15px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .section__title p {
        margin-top: 12px !important;
        font-size: 14px;
    }
}
.py-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}
.pb-200 {
    padding-bottom: 200px;
}
.h-100 {
    height: 100%;
}
.mw-80 {
    max-width: 80%;
}
.mw-90 {
    max-width: 90%;
}
@media (max-width: 1500px) {
    .py-200 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .pb-200 {
        padding-bottom: 120px;
    }
  .mw-80 {
    max-width: 95%;
  }
  .mw-90 {
    max-width: 95%;
  }
}
@media (max-width: 991.98px) {
    .py-200 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .pb-200 {
        padding-bottom: 100px;
    }
  .mw-80 {
    max-width: 100%;
  }
  .mw-90 {
      max-width: 100%;
  }
}
@media (max-width: 767.98px) {
    .py-200 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .pb-200 {
        padding-bottom: 60px;
    }
    .pt-100 {
        padding-top: 60px;
    }
    .pb-100 {
        padding-bottom: 60px;
    }
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.sec-btn {
  margin-bottom: 48px;
}

.title-ratings-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  letter-spacing: -0.06em;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
    .title-ratings-wrap {
        margin-top: 25px;
    }
}
@media (max-width: 1199.98px) {
    .title-ratings-wrap {
        margin-top: 20px;
    }
}
.title-ratings-wrap img {
  margin-right: 17px;
}
.title-ratings-wrap span {
  margin-left: 3px;
  margin-right: 3px;
}
.title-ratings-wrap .star-rating-wrap {
  display: inline-flex;
  gap: 2px;
  color: var(--tg-color-icon);
  margin-left: 6px;
  margin-right: 6px;
}
@media (max-width: 767.98px) {
    .title-ratings-wrap {
        font-size: 14px;
    }
    .title-ratings-wrap img {
        margin-right: 5px;
        max-width: 130px;
    }
}

/*=============================
	11. Header
===============================*/
.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 a {
  display: flex;
}
.tgmenu__nav .tgmenu__action {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .tgmenu__nav .tgmenu__action {
    display: none;
  }
}
.tgmenu__nav .tgmenu__action .btn {
  min-height: 44px;
}
.tgmenu__nav .mobile-nav-toggler {
  display: none;
  color: var(--tg-color-white-default);
  --btn-three-shadow1: rgb(14, 18, 27) 26%;
  --btn-three-shadow2: rgb(34, 37, 48) 79%;
  background: radial-gradient(138.41% 100% at 54.51% 100%, var(--btn-three-shadow1), var(--btn-three-shadow2));
  width: 44px;
  height: 44px;
}
.tgmenu__nav .mobile-nav-toggler:before {
  content: "";
  position: absolute;
  top: -4em;
  height: 4em;
  width: 100%;
  left: 0;
  right: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to top, transparent 1%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
}
.tgmenu__nav .mobile-nav-toggler:hover, .tgmenu__nav .mobile-nav-toggler:active, .tgmenu__nav .mobile-nav-toggler:focus {
  background: radial-gradient(138.41% 100% at 54.51% 100%, var(--btn-three-shadow1), var(--btn-three-shadow2)) !important;
  color: var(--tg-color-white-default) !important;
}
.tgmenu__nav .mobile-nav-toggler:hover:before, .tgmenu__nav .mobile-nav-toggler:active:before, .tgmenu__nav .mobile-nav-toggler:focus:before {
  transform: translateY(8em);
}
@media (max-width: 991.98px) {
  .tgmenu__nav .mobile-nav-toggler {
    display: flex;
  }
}
.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .tgmenu__navbar-wrap {
    display: none;
  }
}
.tgmenu__navbar-wrap > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 0;
  margin: 0 auto;
}
.tgmenu__navbar-wrap > ul > li {
  list-style: none;
  display: block;
  position: relative;
  margin-right: 32px;
}
@media (max-width: 1199.98px) {
    .tgmenu__navbar-wrap>ul>li {
        margin-right: 20px;
    }
}
.tgmenu__navbar-wrap > ul > li:last-child {
  margin-right: 0;
}
.tgmenu__navbar-wrap > ul > li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--tg-heading-color);
  padding: 34px 0px;
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: var(--tg-body-font-family);
  letter-spacing: -0.006em;
}
@media (max-width: 1500px) {
    .tgmenu__navbar-wrap>ul>li a {
        padding: 30px 0px;
    }
}
.tgmenu__navbar-wrap > ul > li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
@media (max-width: 1500px) {
    .tgmenu__navbar-wrap>ul>li a:before {
        bottom: 27px;
    }
}
.tgmenu__navbar-wrap > ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  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;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0 0 6px 6px;
  padding: 10px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tgmenu__navbar-wrap > ul > li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li {
  margin-left: 0;
  text-align: left;
  display: block;
  position: relative;
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li a {
    padding: 6px 15px 6px 25px;
    line-height: 1.45;
    color: var(--tg-heading-color);
    text-transform: capitalize;
    justify-content: space-between;
    font-size: 15px;
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li a:before {
  display: none;
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li:hover > a, .tgmenu__navbar-wrap > ul > li .sub-menu > li.active > a {
  color: var(--tg-theme-primary);
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li:hover > a {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -o-transform: translateX(3px);
  transform: translateX(3px);
}
.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-theme-primary);
}
.tgmenu__navbar-wrap > ul > li.active a:before, .tgmenu__navbar-wrap > ul > li:hover a:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "";
  position: relative;
  display: inline-flex;
  background: var(--tg-body-color);
  margin-left: 8px;
  -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;
  line-height: 1;
  transform: translateY(0px);
  width: 10px;
  height: 7px;
  clip-path: path("M5.30326 4.12477L9.42809 0L10.6066 1.17851L5.30326 6.48185L0 1.17851L1.17851 0L5.30326 4.12477Z");
  align-self: center;
}
.tgmenu__main-menu li.menu-item-has-children > a:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children:hover > a::after {
  color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children.active > a::after {
  color: var(--tg-theme-primary);
}

.transparent-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  height: auto;
}
@media (max-width: 991.98px) {
  .transparent-header {
    top: 20px;
  }
}

.tg-header__top {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 54px;
  background-size: cover;
  background-position: center;
  margin-top: 12px;
}
@media (max-width: 1900px) {
  .tg-header__top {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .tg-header__top {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    margin-top: 0;
  }
}
.tg-header__top .tg-header__top-info {
  margin: 0;
  padding: 0;
}
.tg-header__top li {
  list-style: none;
  text-align: center;
  letter-spacing: -0.01em;
  font-size: 14px;
  padding: 7px 0;
  color: var(--tg-color-white-default);
}
@media (max-width: 767.98px) {
  .tg-header__top li {
    padding: 6px 0 10px;
        line-height: 1.6;
  }
}
.tg-header__top .tg-header__top-offer {
  color: var(--tg-color-yellow-default);
  font-weight: 700;
  display: inline-flex;
}
.tg-header__top .tg-header__top-btn {
  background: radial-gradient(138.41% 100% at 54.51% 100%, #D0257A 21%, #FB4BA3 74%);
  border-radius: 50px;
  padding: 1px 12px;
  color: var(--tg-color-white-default);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-left: 20px;
  display: inline-flex;
}
.tg-header__top .tg-header__top-btn:hover {
    opacity: 0.9;
}
@media (max-width: 767.98px) {
    .tg-header__top .tg-header__top-btn {
        font-size: 13px;
        margin-left: 10px;
        line-height: 1.6;
    }
}
.tg-header__area {
  background-color: transparent;
}
@media (max-width: 991.98px) {
  .tg-header__area {
    padding: 12px 0;
  }
  .tgmenu__nav .logo img {
      max-width: 113px !important;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__nav .logo img {
      max-width: 94px !important;
  }
  .tgmenu__nav .mobile-nav-toggler {
      width: 35px;
      height: 35px;
  }
}
.tg-header__area-one {
  background: var(--tg-color-white-default);
}
.tg-header__area-one .tgmenu__wrap .tgmenu__nav {
  justify-content: space-between;
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  background: var(--tg-color-white-default);
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

/*=============================
    13. Banner
===============================*/
.hero-1 {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 1900px) {
  .hero-1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1199.98px) {
    .hero-1 {
        background-size: contain;
        background-position: top center;
        border-radius: 30px 30px 0 0;
        background-repeat: no-repeat;
    }
}
@media (max-width: 767.98px) {
  .hero-1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 12px;
  }
  section.hero-1.pb-100 {
      padding-bottom: 60px;
  }
}
.hero-1 .hero-tag1 {
  background: #E52082;
  color: var(--tg-color-white-default);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 500;
  position: absolute;
}
.hero-1 .hero-tag1:after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 100% 100%, 50% 80%, 0% 100%);
  background: #E52082;
  width: 21px;
  height: 23px;
  top: -20px;
  right: -20px;
  rotate: 44deg;
}
.hero-1 .hero-tag1.hero-tag1-1 {
    top: 37.5%;
    left: 10.3%;
}
@media (max-width: 1500px) {
  .hero-1 .hero-tag1.hero-tag1-1 {
    left: 240px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-tag1.hero-tag1-1 {
    left: 120px;
  }
}
@media (max-width: 1199.98px) {
  .hero-1 .hero-tag1.hero-tag1-1 {
    left: 60px;
  }
}
@media (max-width: 991.98px) {
    .hero-1 .hero-tag1.hero-tag1-1 {
        top: 19%;
        left: 2.3%;
    }
}
@media (max-width: 767.98px) {
  .hero-1 .hero-tag1.hero-tag1-1 {
    display: none;
  }
}
.hero-1 .hero-tag1.hero-tag1-2 {
    background: #FA503A;
    top: 22%;
    right: 12.5%;
}
@media (max-width: 1500px) {
  .hero-1 .hero-tag1.hero-tag1-2 {
    right: 240px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-tag1.hero-tag1-2 {
    right: 140px;
  }
}
@media (max-width: 1199.98px) {
  .hero-1 .hero-tag1.hero-tag1-2 {
    right: 60px;
  }
}
@media (max-width: 991.98px) {
  .hero-1 .hero-tag1.hero-tag1-2 {
    top: 60px;
    right: 40px;
  }
}
@media (max-width: 767.98px) {
  .hero-1 .hero-tag1.hero-tag1-2 {
    display: none;
  }
}
.hero-1 .hero-tag1.hero-tag1-2:after {
  background: #FA503A;
  bottom: -20px;
  left: -20px;
  top: auto;
  right: auto;
  rotate: 227deg;
}
.hero-1 .hero-content {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-1 .hero-subtitle {
  display: inline-flex;
  align-items: center;
  background: #FFD9C0;
  color: #71330A;
  border-radius: 100px;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 22px 10px 14px;
  letter-spacing: -0.006em;
  margin-bottom: 35px;
}
@media (max-width: 1500px) {
    .hero-1 .hero-subtitle {
        gap: 10px;
        font-size: 14px;
        padding: 7px 18px 7px 12px;
        margin-bottom: 30px;
    }
    .hero-1 .hero-subtitle img {
        max-width: 20px;
    }
}
@media (max-width: 380px) {
  .hero-1 .hero-subtitle {
    text-align: start;
    line-height: 1.6;
    font-size: 14px;
    gap: 10px;
  }
}
.hero-1 .hero-title {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 17px;
  margin-top: -0.18em;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--tg-heading-color);
}
@media (max-width: 1500px) {
  .hero-1 .hero-title {
    font-size: 64px;
  }
}
@media (max-width: 1199.98px) {
  .hero-1 .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .hero-1 .hero-title {
    font-size: 50px;
    line-height: normal;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 766.98px) {
    .hero-1 .hero-content {
        padding: 40px 0 60px;
    }
    .hero-1 .hero-subtitle {
        font-size: 12px;
        gap: 10px;
        padding: 6px 15px 6px 10px;
        margin-bottom: 16px;
    }
    .hero-1 .hero-title {
        font-size: 34px;
        margin-bottom: 12px;
    }
}

.hero-1 .hero-text {
  color: var(--tg-body-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin-bottom: 36px;
}
@media (max-width: 1500px) {
  .hero-1 .hero-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .hero-1 .hero-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 766.98px) {
    .hero-1 .hero-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .tg-button-wrap {
        gap: 10px;
    }
    .tg-button-wrap.mt-30 {
        margin-top: 20px !important;
    }
}
.hero-1 .hero-ratings-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  letter-spacing: -0.06em;
  flex-wrap: wrap;
}
.hero-1 .hero-ratings-wrap img {
  margin-right: 17px;
}
.hero-1 .hero-ratings-wrap span {
  margin-left: 3px;
  margin-right: 3px;
}
.hero-1 .hero-ratings-wrap .star-rating-wrap {
  display: inline-flex;
  gap: 2px;
  color: var(--tg-color-icon);
  margin-left: 6px;
  margin-right: 6px;
}
@media (max-width: 1500px) {
  .hero-1 .hero-ratings-wrap {
    margin: 44px -14px 0;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-ratings-wrap {
    margin: 35px 0 0;
  }
}
@media (max-width: 1199.98px) {
  .hero-1 .hero-ratings-wrap {
    margin: 44px -20px 0;
  }
}
@media (max-width: 991.98px) {
  .hero-1 .hero-ratings-wrap {
    margin: 44px 0 0;
  }
}
@media (max-width: 766.98px) {
    .hero-1 .hero-ratings-wrap {
        margin: 25px 0 0;
        font-size: 14px;
        letter-spacing: 0;
    }
    .hero-1 .hero-ratings-wrap img {
        margin-right: 5px;
        max-width: 130px;
    }
}

/*=============================
    Feature
===============================*/
.feature-card {
  background: var(--tg-color-smoke-1);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
}
@media (max-width: 1500px) {
  .product-feature-card {
    padding: 30px 25px;
    height: 100%;
  }
}
@media (max-width: 1199.98px) {
  .feature-card {
    padding: 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .feature-card {
    border-radius: 12px;
  }
}
.feature-card .box-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  box-shadow: 0px 0px 0px 1px rgba(14, 18, 27, 0.03), 0px 1px 1px -0.5px rgba(14, 18, 27, 0.06), 0px 3px 3px -1.5px rgba(14, 18, 27, 0.06);
  border-radius: 16px;
  margin-bottom: 32px;
}
.feature-card .box-icon img {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .feature-card .box-icon {
    margin-bottom: 24px;
  }
}
.feature-card .box-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: -0.2em;
}
.feature-card .box-text {
  letter-spacing: -0.01em;
  margin-bottom: -0.5em;
  margin-top: 15px;
}
@media (max-width: 1199.98px) {
  .feature-card .box-text {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .product-feature-card .box-text {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .feature-card .box-text {
    font-size: 14px;
  }
}
.feature-card:hover .box-icon img {
  transform: scale(-1) rotate(180deg);
}

/*=============================
    Feature 2
===============================*/
.feature-card2 {
  border-radius: 40px;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 1199.98px) {
    .feature-card2 {
        border-radius: 25px;
    }
}
@media (max-width: 991.98px) {
    .feature-card2 {
        border-radius: 12px;
    }
}
.feature-card2 .box-content {
  padding: 50px 48px 40px;
}
@media (max-width: 1199.98px) {
  .feature-card2 .box-content {
    padding: 40px 35px 30px;
  }
}
@media (max-width: 991.98px) {
  .feature-card2 .box-content {
    padding: 25px 20px;
  }
}
@media (max-width: 767.98px) {
  .feature-card2 .box-content {
    padding: 40px 40px 30px;
  }
}
@media (max-width: 599px) {
  .feature-card2 .box-content {
    padding: 40px 30px 30px;
  }
}
@media (max-width: 380px) {
  .feature-card2 .box-content {
    padding: 30px;
  }
}
.feature-card2 .box-img {
  display: flex;
}
.feature-card2 .box-img img {
  width: 100%;
}
.feature-card2 .box-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1666;
  margin-top: -0.2em;
  margin-bottom: 0px;
}
@media (max-width: 1500px) {
    .feature-card2 .box-title {
        font-size: 30px;
    }
}
@media (max-width: 1199.98px) {
  .feature-card2 .box-title {
    font-size: 26px;
  }
}
@media (max-width: 991.98px) {
  .feature-card2 .box-title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
    .feature-area-2.pb-100 {
        padding-bottom: 60px;
    }
}
.feature-card2 .box-text {
  margin-bottom: -0.5em;
  margin-top: 13px;
}
@media (max-width: 991.98px) {
  .feature-card2 .box-text {
    font-size: 14px;
    margin-top: 8px;
  }
}

/*=============================
    Product slider area
===============================*/
.product-slider-area-1 {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1900px) {
  .product-slider-area-1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .product-slider-area-1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 24px;
  }
}

.product-slider-wrap {
  mask-image: linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.5) 10%, #D9D9D9 20%, #D9D9D9 80%, rgba(217, 217, 217, 0.5) 90%, rgba(217, 217, 217, 0) 100%);
}

.product-marquee {
  overflow: hidden;
}

.product-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: productMarquee 100s linear infinite;
}

.product-slider1--reverse .product-marquee__track {
  animation-direction: reverse;
}

.product-marquee__track .product-slider-item {
  flex: 0 0 auto;
  margin-right: 28px;
  margin-bottom: -8px;
}
@media (max-width: 1199.98px) {
    .product-marquee__track .product-slider-item {
        max-width: 350px;
    }
}

/* The track holds the item set twice, so -50% lands on the start of the
   duplicate set — the loop repeats with no visible jump. */
@keyframes productMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee__track {
    animation: none;
  }
}

.product-slider-item .product-slider-thumb .thumb-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 89.2%);
  border-radius: 28px;
  padding: 12px 12px 0;
  display: inline-flex;
  position: relative;
}
.product-slider-item .product-slider-thumb .thumb-inner:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(to bottom, #FFFFFF, transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
}
.product-slider-item .product-slider-thumb .thumb-inner img {
  border-radius: 18px;
}
@media (max-width: 991.98px) {
    .product-marquee__track .product-slider-item {
        max-width: 300px;
        margin-right: 20px;
    }
    .product-slider-item .product-slider-thumb .thumb-inner {
        border-radius: 15px;
    }
    .product-slider-item .product-slider-thumb .thumb-inner img {
        border-radius: 10px;
    }
    .product-slider-item .product-slider-thumb .thumb-inner:after {
        border-radius: 15px;
    }
    .product-slider-area-1 {
        border-radius: 20px;
    }
}
@media (max-width: 767.98px) {
    .product-slider-area-1 {
        border-radius: 12px;
        padding: 25px 0;
    }
    .product-slider1.mb-28 {
        margin-bottom: 12px;
    }
    .product-marquee__track .product-slider-item {
        max-width: 180px;
        margin-right: 10px;
    }
    .product-slider-item .product-slider-thumb .thumb-inner {
        border-radius: 10px;
            padding: 8px 8px 0;
    }
    .product-slider-item .product-slider-thumb .thumb-inner img {
        border-radius: 8px;
    }
    .product-slider-item .product-slider-thumb .thumb-inner:after {
        border-radius: 10px;
    }
}

/*=============================
    Product area
===============================*/
.product-wrap1 {
  background: var(--tg-color-smoke-1);
  padding: 40px;
  border-radius: 40px;
}
@media (max-width: 1500px) {
  .product-wrap1 {
    padding: 25px;
  }
}
@media (max-width: 991.98px) {
  .product-wrap1 {
    border-radius: 20px;
  }
}
@media (max-width: 767.98px) {
    .product-wrap1 {
        border-radius: 24px;
        padding: 14px 14px 24px;
    }
}

.product-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 0px 1px rgba(14, 18, 27, 0.1), 0px 1px 1px -0.5px rgba(14, 18, 27, 0.03), 0px 3px 3px -1.5px rgba(14, 18, 27, 0.03), 0px 6px 6px -3px rgba(14, 18, 27, 0.03);
  border-radius: 16px;
  padding: 10px;
}
.product-card .product-img {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.product-card .product-img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 42556, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}
.product-card .product-img img {
  width: 100%;
  object-fit: cover;
}
.product-card .product-content {
  padding: 18px;
}
.product-card .product-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-card .product-category {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.product-card .product-category a {
  color: var(--tg-body-color);
}
.product-card .product-category a:hover {
  color: var(--tg-theme-primary);
}
.product-card .product-price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-top: 24px;
  margin-bottom: 10px;
}
.product-card .product-content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.product-card .star-ratings-wrap {
  font-size: 14px;
}
.product-card .star-ratings-wrap svg {
  color: var(--tg-color-icon);
}
.product-card .product-sales {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.product-card .tg-button-wrap {
  gap: 8px;
}
.product-card .icon-btn {
  background: transparent;
  color: var(--tg-heading-color);
  border: 1px solid var(--tg-border-2);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.product-card .icon-btn:active, .product-card .icon-btn:focus, .product-card .icon-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.product-card .btn {
  min-height: 44px;
}
.product-card:hover .product-img:after {
-webkit-animation: hoverShine 1.2s;
    animation: hoverShine 1.2s;
}
@-webkit-keyframes hoverShine {
    100% {
        left: 125%;
    }
}
@keyframes hoverShine {
    100% {
        left: 125%;
    }
}
@media (max-width: 1500px) {
    .product-card .icon-btn {
        width: 40px;
        height: 40px;
    }
    .product-card .btn {
        min-height: 40px;
        padding: 10px 15px;
    }
}
@media (max-width: 767px) {
    .product-card .product-content {
        padding: 18px 14px 14px;
    }
    .product-card .product-title {
        font-size: 16px;
        margin-bottom: 1px;
    }
    .product-area-1.pt-100.pb-100 {
        padding: 60px 0;
    }
}
/*=============================
    Product Details area
===============================*/
.product-details-wrap .product-details-thumb {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}
.product-details-wrap .product-details-thumb img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .product-details-wrap .product-details-thumb {
    border-radius: 10px;
  }
}
.product-details-wrap .product-details-content {
  border: 1px solid var(--tg-border-2);
  border-radius: 12px;
  padding: 40px;
}
.product-details-wrap .product-details-content .title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-top: -0.15em;
}
@media (max-width: 1199.98px) {
  .product-details-wrap .product-details-content .title {
    font-size: 28px;
  }
}
.product-details-wrap .product-details-content .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.product-details-content ul {
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}
.product-details-content ul li {
    line-height: 1.7;
}
.product-details-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
}

/*=============================
    Sidebar area
===============================*/
.sidebar-wrap {
  position: sticky;
  top: 100px;
  margin-left: 16px;
}
@media (max-width: 1500px) {
  .sidebar-wrap {
    margin-left: 0;
  }
}

.widget,
.product-description,
.product-purchase-panel {
  border: 1px solid var(--tg-border-2);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1500px) {
    .widget,
    .product-description,
    .product-purchase-panel {
        padding: 24px;
    }
}
@media (max-width: 767.98px) {
  .widget,
  .product-description,
  .product-purchase-panel {
    border-radius: 10px;
    padding: 24px;
  }
}
.widget .widget-title,
.product-description .widget-title,
.product-purchase-panel .widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tg-heading-color);
  letter-spacing: -0.015em;
  margin-top: -0.1em;
  margin-bottom: 24px;
}

.product-purchase-panel .product-purchase-meta {
  text-align: center;
  color: #2EA6CE;
  display: block;
  background: rgba(46, 166, 206, 0.1);
  border: 1px solid #2EA6CE;
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 1500px) {
    .product-purchase-panel .product-purchase-meta {
        font-size: 14px;
    }
    .product-details-area-1.pt-50 {
        padding-top: 0;
    }
    .product-details-wrap .product-details-content {
        padding: 25px;
    }
    .product-details-content ul {
        padding-inline-start: 30px;
    }
    .widget .widget-title,
    .product-description .widget-title,
    .product-purchase-panel .widget-title {
        margin-bottom: 15px;
    }
    .widget-cta .widget-cta-text {
        margin-bottom: 55px !important;
    }
}
@media (max-width: 1199.98px) {
  .product-details-wrap .product-details-content {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  .product-details-wrap .product-details-content {
    border-radius: 10px;
    padding: 25px 20px;
  }
  .product-details-wrap .product-details-content .title {
      font-size: 22px;
      margin-bottom: 10px !important;
  }
  .product-details-content h3 {
      font-size: 18px;
  }
  .product-details-content ul {
      padding-inline-start: 20px;
  }
}
.product-purchase-panel .product-price-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  border-bottom: 1px solid var(--tg-border-2);
  margin-bottom: 30px;
}
.product-purchase-panel .product-price-wrap .regular-price-wrap {
  border-right: 1px solid var(--tg-border-2);
  padding-bottom: 20px;
  padding-right: 20px;
}
.product-purchase-panel .product-price-wrap .regular-price-wrap .box-icon {
  margin-bottom: 29px;
  display: flex;
  justify-content: center;
}
.product-purchase-panel .product-price-wrap .regular-price-wrap .box-price {
  font-size: 36px;
  font-weight: 600;
  color: var(--tg-heading-color);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1399px) {
  .product-purchase-panel .product-price-wrap .regular-price-wrap .box-price {
    font-size: 30px;
  }
}
.product-purchase-panel .product-price-wrap .regular-price-wrap .box-price span {
  color: var(--tg-body-color);
  font-size: 20px;
  font-weight: 500;
  margin-right: 7px;
  letter-spacing: -0.015em;
  position: relative;
}
.product-purchase-panel .product-price-wrap .regular-price-wrap .box-price span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--tg-color-red-default);
  left: 0;
  top: 7px;
  rotate: -19deg;
  transform-origin: 100% 8px;
}
.product-purchase-panel .product-price-wrap .regular-price-wrap .box-price-title {
  margin-top: 7px;
}
.product-purchase-panel .product-price-wrap .product-sale-wrap {
  padding-bottom: 20px;
  padding-left: 20px;
}
.product-purchase-panel .product-price-wrap .product-sale-wrap .box-icon {
  margin-bottom: 29px;
  display: flex;
  justify-content: center;
}
.product-purchase-panel .product-price-wrap .product-sale-wrap .box-sale {
  font-size: 36px;
  font-weight: 600;
  color: var(--tg-heading-color);
  letter-spacing: -0.04em;
}
@media (max-width: 1399px) {
  .product-purchase-panel .product-price-wrap .product-sale-wrap .box-sale {
    font-size: 30px;
  }
}
.product-purchase-panel .product-price-wrap .product-sale-wrap .box-sale-title {
  margin-top: 7px;
}
.product-purchase-panel .product-price-wrap.has-single-column {
  grid-template-columns: 1fr;
}
.product-purchase-panel .product-price-wrap.has-single-column .regular-price-wrap,
.product-purchase-panel .product-price-wrap.has-single-column .product-sale-wrap {
  border-right: 0;
  padding-right: 0;
  padding-left: 0;
}
.product-purchase-panel .checklist-wrap {
  margin-bottom: 30px;
}
.product-purchase-panel .checklist-wrap .list-wrap li {
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-body-color);
  padding-left: 28px;
  position: relative;
  letter-spacing: -0.01em;
}
.product-purchase-panel .checklist-wrap .list-wrap li:not(:last-child) {
  margin-bottom: 6px;
}
.product-purchase-panel .checklist-wrap .list-wrap li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 12px;
  clip-path: path("M6.36396 9.19238L15.5564 0L16.9706 1.41421L6.36396 12.0208L0 5.65688L1.41422 4.24268L6.36396 9.19238Z");
  background: var(--tg-heading-color);
}
.product-purchase-panel .tg-button-wrap span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--tg-heading-color);
  text-align: center;
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  gap: 10px;
  line-height: normal;
}
.product-purchase-panel .tg-button-wrap span:before, .product-purchase-panel .tg-button-wrap span:after {
  content: "";
  position: relative;
  display: inline-block;
  height: 1px;
  width: -webkit-fill-available;
  border-bottom: 1px dashed var(--tg-border-2);
  flex: 1 0 0%;
}
@media (max-width: 991.98px) {
    .testimonial-col-3 {
        display: none;
    }
}
@media (max-width: 767px) {
    .testimonial-col-2 {
        display: none;
    }
}
.product-description .checklist-wrap {
  margin-bottom: -0.4em;
}
.product-description .checklist-wrap .list-wrap li {
  font-size: 16px;
  color: var(--tg-body-color);
  display: block;
}
.product-description .checklist-wrap .list-wrap li strong {
  font-weight: 500;
  color: var(--tg-heading-color);
}
.product-description .checklist-wrap.is-collapsible.is-expanded .list-wrap li.checklist-hidden {
  display: block;
}
.product-description .link-btn svg {
  transition: transform 0.3s ease;
}
.product-description .link-btn.is-open svg {
  transform: rotate(180deg);
}
@media (max-width: 767.98px) {
    .product-purchase-panel .product-price-wrap .regular-price-wrap .box-icon,
    .product-purchase-panel .product-price-wrap .product-sale-wrap .box-icon {
        margin-bottom: 15px;
    }
    .widget-cta .widget-cta-title {
        font-size: 26px !important;
    }
    .single-product-slider-area-1 .section__title.mb-4 {
        margin-bottom: 15px !important;
    }
}

.widget-cta {
  border: 0;
}
.widget-cta .widget-cta-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-color-white-default);
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
  border-radius: 12px;
  padding: 1px 12px;
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.widget-cta .widget-cta-subtitle:before {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--tg-color-green-default);
}
.widget-cta .widget-cta-title {
  color: var(--tg-color-white-default);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.widget-cta .widget-cta-text {
  color: var(--tg-color-light-1);
  letter-spacing: -0.01em;
  margin-top: 10px;
  margin-bottom: 95px;
}
@media (max-width: 1199.98px) {
    .widget-cta .widget-cta-title {
        letter-spacing: -0.01em;
    }
}

/*=============================
    Pricing area
===============================*/
.price-card {
  border-radius: 28px;
  border: 1px solid var(--tg-border-2);
  padding: 40px 40px 40px;
  position: relative;
  height: 100%;
}
.price-card .price-tag {
  position: absolute;
  right: 40px;
  top: 0;
  background: var(--tg-color-yellow-default);
  color: #4F3803;
  border-radius: 12px 12px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 1px 12px;
  transform: translateY(calc(-100% + 10px));
}
.price-card:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #F2F5F8 0%, rgba(242, 245, 248, 0) 100%);
  border-radius: 20px 20px 0px 0px;
  inset: 10px;
  z-index: -1;
}
.price-card .box-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}
.price-card .box-text {
  letter-spacing: -0.01em;
  margin-top: 11px;
  margin-bottom: 20px;
}
.price-card .box-offer {
  display: inline-block;
  border: 1px solid var(--tg-color-red-default);
  color: var(--tg-color-red-default);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  padding: 5px 8px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.price-card .box-price {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--tg-heading-color);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.inner-pricing-area .price-card .box-price {
    line-height: 1;
}
.mt-25 {
    margin-top: 25px;
}
@media (max-width: 1399px) {
    .price-card {
        padding: 40px 39px 40px;
    }
    .price-card .box-text {
        font-size: 15px;
    }
  .price-card .box-price {
    font-size: 48px;
  }
  .inner-pricing-area .price-card .box-price {
      font-size: 44px;
  }
  .inner-pricing-area .price-card {
      padding: 35px 30px;
  }
  .inner-pricing-area .price-card .box-text {
      font-size: 14px;
  }
  .inner-pricing-area .checklist-wrap.style3 .list-wrap li {
      font-size: 14px;
      padding-left: 28px;
  }
  .inner-pricing-area .checklist-wrap.style3 .list-wrap li:not(:last-child) {
      margin-bottom: 8px;
  }
}
@media (max-width: 1199.98px) {
  .price-card .box-price {
    font-size: 40px;
  }
}
.price-card .box-price span {
  color: var(--tg-body-color);
  font-size: 36px;
  font-weight: 500;
  margin-right: 10px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .price-card .box-price span {
    font-size: 30px;
  }
}
.price-card .box-price span:after {
    content: "";
    position: absolute;
    width: 83px;
    height: 5px;
    background: var(--tg-color-red-default);
    left: -3px;
    rotate: -22deg;
    top: 8px;
    transform-origin: 100% 18px;
}
.price-card .box-meta {
  margin-top: 13px;
  margin-bottom: 26px;
}
.price-card .btn {
  padding: 18px;
}
.price-card .box-subtitle {
  margin-top: 36px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.price-card.active {
  border: 1px solid var(--tg-theme-primary);
  box-shadow: 0 0 0 1px var(--tg-theme-primary);
}
.price-card.active:after {
  background: linear-gradient(180deg, #FBDCFF 0%, rgba(251, 220, 255, 0) 100%);
}
@media (max-width: 991.98px) {
    .price-card {
        padding: 40px 30px 30px;
    }
}
@media (max-width: 767.98px) {
    .price-card {
        border-radius: 14px;
    }
    .price-card:after {
        border-radius: 10px 10px 0px 0px;
    }
    .price-card .box-text {
        letter-spacing: 0;
        font-size: 14px;
    }
    .price-card .box-price span:after {
        width: 75px;
    }
    .pricing-area-1.pb-100 {
        padding-bottom: 60px;
    }
    .price-card .box-subtitle {
        margin-top: 25px;
    }
}

/*=============================
    Custom
===============================*/
.custom-wrap1 {
  border-radius: 40px;
  overflow: hidden;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 70px 0 0;
}
@media (max-width: 1199.98px) {
    .custom-wrap1 {
        border-radius: 28px;
        padding: 50px 0 0;
    }
}
@media (max-width: 991.98px) {
  .custom-wrap1 {
    flex-wrap: wrap;
    padding: 60px 0 0 50px;
    border-radius: 18px;
  }
}
@media (max-width: 767.98px) {
  .custom-wrap1 {
    padding: 60px 0 0 40px;
    border-radius: 14px;
  }
  .custom-area-1.pb-100.overflow-hidden {
      padding-bottom: 60px;
  }
}
@media (max-width: 599px) {
  .custom-wrap1 {
    padding: 35px 0 0 30px;
  }
}
.custom-wrap1 .custom-content-wrap {
  max-width: 526px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 0 0 70px 70px;
}
@media (max-width: 1500px) {
  .custom-wrap1 .custom-content-wrap {
    max-width: 520px;
    padding: 0 0 70px 50px;
  }
  .custom-wrap1 .custom-box-img1 {
      max-width: 50%;
  }
}
@media (max-width: 1199.98px) {
    .custom-wrap1 .custom-content-wrap {
        max-width: 410px;
        padding: 0 0 50px 50px;
    }
}
@media (max-width: 991.98px) {
  .custom-wrap1 .custom-content-wrap {
    max-width: none;
    padding: 0 70px 70px 0;
  }
  .custom-wrap1 .custom-box-img1 {
      max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .custom-wrap1 .custom-content-wrap {
    padding: 0 40px 50px 0;
  }
}
@media (max-width: 599px) {
  .custom-wrap1 .custom-content-wrap {
    padding: 0 30px 40px 0;
  }
}
.custom-wrap1 .sec-text {
  color: var(--tg-color-light-1);
  letter-spacing: -0.01em;
}
.custom-wrap1 .custom-box-img1 {
  display: flex;
}
.custom-wrap1 .custom-box-img1 img {
  width: 100%;
  object-fit: cover;
  object-position: left top;
}

/*=============================
    Testi area
===============================*/
.testi-area-1 {
  background-position: center;
}

.testi-slider-wrap1 {
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 20%);
  position: relative;
}
.testi-slider-wrap1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 296px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .testi-slider-wrap1 {
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 10%);
  }
  .testi-slider-wrap1:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }
}

.testi-slider1-1 {
  height: 982px;
  overflow: hidden;
  position: relative;
}
.testi-slider1-1 .testi-marquee {
  --testi-duration: 80s;
  height: 100%;
}
.testi-marquee__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation: testi-marquee-up var(--testi-duration) linear infinite;
}
.testi-marquee--down .testi-marquee__track {
  animation-name: testi-marquee-down;
}
.testi-marquee:hover .testi-marquee__track {
  animation-play-state: paused;
}
.testi-marquee__item {
  margin-bottom: 18px;
  transition: 0.4s;
}
@keyframes testi-marquee-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes testi-marquee-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .testi-marquee--down .testi-marquee__track {
    animation-name: testi-marquee-up;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testi-marquee__track {
    animation: none;
  }
}

.testi-card {
  background: var(--tg-color-white-default);
  border-radius: 28px;
  overflow: hidden;
  padding: 28px;
}
@media (max-width: 1199.98px) {
    .testi-card {
        border-radius: 12px;
        padding: 25px;
    }
}
.testi-card .box-text {
  letter-spacing: -0.01em;
  margin-top: -0.5em;
  margin-bottom: 35px;
}
.testi-card .star-rating-wrap {
  display: inline-flex;
  gap: 1px;
  color: var(--tg-color-icon);
}
.testi-card .box-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  letter-spacing: -0.01em;
  margin-bottom: -0.2em;
  margin-top: 0;
}
.testi-card .box-desig {
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--tg-body-color);
}
@media (max-width: 767.98px) {
.testi-card .box-text {
    font-size: 14px;
}
.testi-card .box-title {
    font-size: 14px;
}
.testi-area-1 {
    padding-bottom: 60px;
}
}
/*=============================
    Faq area
===============================*/
.faq-wrap1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.custom-accordion {
  overflow: hidden;
}

.accordion-item {
  background: var(--tg-color-smoke-1);
  border-radius: 18px;
  overflow: hidden;
}
.accordion-item:not(:last-child) {
  margin-bottom: 12px;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: left;
  border: none;
  color: var(--tg-heading-color);
  cursor: pointer;
  background: transparent;
  line-height: 1.5;
  gap: 10px;
  font-family: var(--tg-body-font-family);
}
.accordion-header:hover {
  color: var(--tg-heading-color);
}

.accordion-header:focus {
  outline: none;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
  border-radius: 8px;
  flex: none;
  background-color: var(--tg-color-white-default);
  box-shadow: 0px 0px 0px 1px rgba(14, 18, 27, 0.03), 0px 1px 1px -0.5px rgba(14, 18, 27, 0.06), 0px 3px 3px -1.5px rgba(14, 18, 27, 0.06);
  transition: transform 0.2s ease-in-out;
}

.accordion-header.active .accordion-icon {
  transform: rotate(-180deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  display: none;
  transition: max-height 0.25s ease-out;
}

.accordion-body {
  padding: 0 20px 24px 20px;
  margin-top: -0.3em;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--tg-body-color);
}
@media (max-width: 767px) {
    .accordion-item {
        border-radius: 10px;
    }
    .accordion-header {
        padding: 16px 16px;
        font-size: 16px;
        line-height: 1.3;
    }
    .accordion-icon {
        width: 26px;
        height: 26px;
        background-size: 14px;
        border-radius: 5px;
    }
    .faq-area-1.pb-100.overflow-hidden {
        padding-bottom: 60px;
    }
}

/*=============================
    Cta area
===============================*/
.cta-area-1 {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background-position: center;
}
@media (max-width: 1900px) {
  .cta-area-1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .cta-area-1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 12px;
    padding-top: 50px;
  }
}

/*=============================
    13. Breadcumb
===============================*/
.breadcumb-area-1 {
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 1900px) {
  .breadcumb-area-1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .breadcumb-area-1 {
    border-radius: 25px;
  }
}
@media (max-width: 767.98px) {
  .breadcumb-area-1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 12px;
  }
}
.breadcumb-area-1 .breadcumb-content {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
    .breadcumb-area-1 .breadcumb-content {
        padding: 80px 0;
    }
}
@media (max-width: 767.98px) {
    .breadcumb-area-1 .breadcumb-content {
        padding: 50px 0;
    }
}
.breadcumb-area-1 .breadcumb-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-heading-color);
    letter-spacing: -0.01em;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(25px);
    border-radius: 50px;
    padding: 1px 15px;
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    line-height: 2.2;
}
@media (max-width: 767px) {
    .breadcumb-area-1 .breadcumb-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
}
.breadcumb-area-1 .breadcumb-subtitle:before {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--tg-color-green-default);
}
.breadcumb-area-1 .breadcumb-title {
  font-size: 68px;
  font-weight: 600;
  margin-bottom: -0.18em;
  margin-top: -0.15em;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--tg-heading-color);
}
@media (max-width: 1500px) {
  .breadcumb-area-1 .breadcumb-title {
    font-size: 60px;
  }
}
@media (max-width: 1199.98px) {
  .breadcumb-area-1 .breadcumb-title {
    font-size: 50px;
  }
}
@media (max-width: 991.98px) {
  .breadcumb-area-1 .breadcumb-title {
    font-size: 48px;
    line-height: normal;
  }
}
@media (max-width: 767.98px) {
  .breadcumb-area-1 .breadcumb-title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 599px) {
  .breadcumb-area-1 .breadcumb-title {
    font-size: 33px;
    line-height: 1;
  }
  .breadcumb-area-1 .breadcumb-title.fs-xs-30 {
      font-size: 30px;
      line-height: 1.1;
  }
  .wpcf7 form .wpcf7-response-output {
      font-size: 14px;
  }
  .wpcf7-not-valid-tip {
      font-size: .8em;
  }
}
.breadcumb-area-1 .breadcumb-text {
  color: var(--tg-body-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin-top: 30px;
}
@media (max-width: 1500px) {
  .breadcumb-area-1 .breadcumb-text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .breadcumb-area-1 .breadcumb-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.breadcumb-area-1 .breadcumb-ratings-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  margin-bottom: 27px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  letter-spacing: -0.06em;
  flex-wrap: wrap;
}
.breadcumb-area-1 .breadcumb-ratings-wrap span {
  margin-left: 3px;
  margin-right: 3px;
}
.breadcumb-area-1 .breadcumb-ratings-wrap .star-rating-wrap {
  display: flex;
  gap: 2px;
  color: var(--tg-color-icon);
  margin-left: 6px;
  margin-right: 6px;
  width: 100%;
  justify-content: center;
  margin-bottom: 6px;
}
@media (max-width: 1500px) {
  .breadcumb-area-1 .breadcumb-ratings-wrap {
    margin: 0 0 20px;
  }
}
@media (max-width: 1399px) {
  .breadcumb-area-1 .breadcumb-ratings-wrap {
    margin: 0 0 20px;
  }
}
@media (max-width: 1199.98px) {
  .breadcumb-area-1 .breadcumb-ratings-wrap {
    margin: 0 0 20px;
  }
}
@media (max-width: 991.98px) {
  .breadcumb-area-1 .breadcumb-ratings-wrap {
    margin: 0 0 12px;
        font-size: 14px;
  }
}

/*=============================
    Process area
===============================*/
.process-card {
  background: var(--tg-color-smoke-1);
  border-radius: 28px;
  padding: 30px;
  position: relative;
}
@media (max-width: 767.98px) {
  .process-card {
    border-radius: 24px;
  }
}
.process-card .box-icon {
  display: flex;
}
.process-card .box-icon img {
  transition: 0.4s;
}
.process-card .box-number {
  font-size: 12px;
  font-weight: 600;
  color: var(--tg-body-color);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--tg-color-white-default);
  display: inline-block;
  border-radius: 52px;
  padding: 6px 8px;
  line-height: 1;
  position: absolute;
  right: 32px;
  top: 32px;
}
.process-card .box-text {
  margin-top: 100px;
  letter-spacing: -0.01em;
}
.process-card .box-text strong {
  color: var(--tg-heading-color);
}
@media (max-width: 599px) {
  .process-card .box-text {
    margin-top: 50px;
  }
}
.process-card:hover .box-icon img {
  transform: scale(-1) rotate(180deg);
}

/*=============================
    Contact
===============================*/
.contact-wrap1 {
  border-radius: 40px;
  overflow: hidden;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
@media (max-width: 1199.98px) {
  .contact-wrap1 {
    flex-wrap: wrap;
    padding: 60px;
  }
}
@media (max-width: 991.98px) {
  .contact-wrap1 {
    padding: 50px 40px;
  }
}
@media (max-width: 767.98px) {
  .contact-wrap1 {
    border-radius: 14px;
  }
}
@media (max-width: 599px) {
  .contact-wrap1 {
    padding: 30px 20px 20px;
  }
}
.contact-wrap1 .contact-content-wrap {
  max-width: 456px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 30px 0 30px 30px;
}
@media (max-width: 1500px) {
  .contact-wrap1 .contact-content-wrap {
    max-width: none;
    padding: 20px 30px 20px 10px;
  }
}
@media (max-width: 1199.98px) {
    .contact-wrap1 .contact-content-wrap {
        padding: 0 0;
        width: 100%;
        margin: 0 0 50px;
    }
    .contact-wrap1 .sec-text {
        color: #fff !important;
        letter-spacing: 0 !important;
    }
}
@media (max-width: 766.98px) {
    .contact-wrap1 .contact-content-wrap {
        margin: 0 0 30px;
    }
}
.contact-wrap1 .sec-text {
  color: var(--tg-color-light-1);
  letter-spacing: -0.01em;
}

.contact-form-wrap1 {
  background: var(--tg-color-white-default);
  border-radius: 28px;
  padding: 48px;
  max-width: 640px;
}
.contact-form-wrap1.style-border {
  border: 1px solid var(--tg-border-2);
  border-radius: 40px;
}
@media (max-width: 767.98px) {
  .contact-form-wrap1.style-border {
    border-radius: 12px;
    padding: 35px 20px;
  }
  .contact-area-2.pb-100 {
      padding-bottom: 60px;
  }
}
.contact-form-wrap1 .form-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1.166;
  margin-bottom: 40px;
  margin-top: -0.2em;
}
@media (max-width: 991.98px) {
  .contact-form-wrap1 .form-title {
    font-size: 30px;
  }
}
@media (max-width: 599px) {
  .contact-form-wrap1 .form-title {
    font-size: 28px;
  }
}
.contact-form-wrap1 .btn {
  margin-top: 30px;
}
@media (max-width: 1500px) {
    .contact-form-wrap1 {
        max-width: 570px;
        padding: 30px;
    }
}
@media (max-width: 1199.98px) {
  .contact-form-wrap1 {
    padding: 40px;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap1 {
    border-radius: 24px;
  }
}
@media (max-width: 599px) {
  .contact-form-wrap1 {
    padding: 25px 20px;
    border-radius: 8px;
  }
}
@media (max-width: 380px) {
  .contact-form-wrap1 {
    border-radius: 8px;
  }
  .contact-form-wrap1 .btn {
    font-size: 14px;
    margin-top: 20px;
    padding: 0 10px;
  }
  .contact-form-wrap1 .btn svg {
    display: none;
  }
}

/*=============================
    Gallery area
===============================*/
.gellary-wrap1 {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  padding: 40px;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1900px) {
  .gellary-wrap1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .gellary-wrap1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 16px;
  }
}
@media (max-width: 599px) {
  .gellary-wrap1 {
    padding: 20px;
  }
}

.gallery-card {
  border-radius: 20px;
  background: var(--tg-color-black-1);
  padding: 16px 16px 18px;
}
@media (max-width: 767.98px) {
    .gallery-card {
        border-radius: 14px;
        background: var(--tg-color-black-1);
        padding: 12px 12px 16px;
    }
}
.gallery-card .box-img {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.gallery-card .box-img img {
  width: 100%;
  object-fit: cover;
}
.gallery-card .box-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--tg-color-light-1);
  margin-bottom: -0.1em;
  margin-top: 16px;
  line-height: 1.5;
}
.gallery-card .box-title span {
  font-weight: 500;
  color: var(--tg-color-white-default);
}
.gallery-card .box-title a:hover {
  color: var(--tg-theme-primary);
}
.gallery-card:hover .box-img:after {
  transform: translateY(27em);
  opacity: 1;
}

/*=============================
    About
===============================*/
.about-img-box1-1 {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
}
.about-img-box1-1 img {
  width: 100%;
}
@media (max-width: 1900px) {
  .about-img-box1-1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1199.98px) {
  .about-img-box1-1 {
    border-radius: 20px;
  }
}
@media (max-width: 767.98px) {
  .about-img-box1-1 {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 8px;
  }
}

.about-wrap1 {
  border: 1px solid var(--tg-border-2);
  border-radius: 40px;
  background: var(--tg-color-white-default);
  padding: 90px 100px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .about-wrap1 {
    padding: 50px 50px;
  }
}
@media (max-width: 1199.98px) {
  .about-wrap1 {
    border-radius: 20px;
  }
}
@media (max-width: 767.98px) {
  .about-wrap1 {
    border-radius: 24px;
    padding: 50px 40px;
  }
}
@media (max-width: 599px) {
    .about-wrap1 {
        margin-top: 10px;
        padding: 20px;
        border-radius: 8px;
    }
}

.counter-wrap1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767.98px) {
  .counter-wrap1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.counter-card {
  text-align: center;
  padding: 100px 50px;
}
@media (max-width: 1500px) {
  .counter-card {
    padding: 100px 30px;
  }
}
@media (max-width: 991.98px) {
  .counter-card {
    padding: 60px 30px;
  }
}
@media (max-width: 599px) {
  .counter-card {
    padding: 40px 30px;
  }
}
.counter-card:not(:last-child) {
  border-right: 1px solid var(--tg-border-2);
}
@media (max-width: 767.98px) {
  .counter-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--tg-border-2);
  }
}
.counter-card .box-title {
  font-size: 68px;
  font-weight: 500;
  font-family: var(--tg-heading2-font-family);
  font-style: italic;
  letter-spacing: -0.04em;
  margin-top: -0.1em;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .counter-card .box-title {
    font-size: 60px;
  }
}
@media (max-width: 599px) {
  .counter-card .box-title {
    font-size: 48px;
  }
}
.counter-card .box-text {
  max-width: 278px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: -0.5em;
  letter-spacing: -0.01em;
}

/*=============================
    39. Footer
===============================*/
.footer__area-one {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 599px) {
  .footer__area-one {
    margin-bottom: 12px;
  }
}
.footer__area-one .footer__wrap {
  padding: 40px;
  background: var(--tg-color-smoke-1);
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .footer__area-one .footer__wrap {
    border-radius: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer__area-one .footer__wrap {
    border-radius: 10px;
  }
}
@media (max-width: 599px) {
  .footer__area-one .footer__wrap {
    padding: 30px 24px;
  }
}
.footer__area-one .footer__bottom {
  padding: 60px 0 0;
}
@media (max-width: 599px) {
  .footer__area-one .footer__bottom {
    padding: 20px 0 0;
  }
}
.footer__area-one .footer__bottom .social-links .list-wrap {
  gap: 20px;
}
.footer__area-one .footer__bottom .social-links .list-wrap li a {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--tg-body-color);
}
.footer__area-one .footer__bottom .social-links .list-wrap li a:hover {
  color: var(--tg-heading-color);
}

.footer__widget-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--tg-color-light-2);
}

.footer__widget {
  margin-bottom: 30px;
}

.footer__links .list-wrap li:not(:last-child) {
  margin-bottom: 6px;
}
.footer__links .list-wrap li a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--tg-heading-color);
}
.footer__links .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}

/*=============================
    	12. Blog
===============================*/
div .blog-post__meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 33px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog-post__meta li {
  position: relative;
  color: var(--tg-color-white-default);
  font-weight: 500;
}
.blog-post__meta li::before {
  content: "";
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  background: var(--tg-color-white-default);
  border-radius: 50px;
}
.blog-post__meta li:last-child::before {
  display: none;
}
.blog-post__meta li a {
  color: var(--tg-color-white-default);
}
.blog-post__meta li a:hover {
  color: var(--tg-theme-primary);
}
.blog-post__meta-two li {
  color: var(--tg-body-color);
}
.blog-post__meta-two li::before {
  background: var(--tg-theme-primary);
}
.blog-post__meta-two li a {
  color: var(--tg-theme-secondary);
}
.blog-post__meta-two li a:hover {
  color: var(--tg-theme-primary);
}
.blog-post__meta-three {
  margin-bottom: 0;
  gap: 20px;
}
.blog-post__meta-three li {
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 15px;
}
.blog-post__meta-three li::before {
  background: #A8A8A8;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  width: 3px;
  height: 10px;
  right: -12px;
}
.blog-post__meta-three li a {
  color: var(--tg-theme-primary);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.blog-post__meta-three li a:hover {
  color: var(--tg-theme-secondary);
}
.blog-post__meta-four li {
  color: var(--tg-color-white-default);
}
.blog-post__meta-four li a {
  color: var(--tg-color-white-default);
}
.blog-post__meta-four li a:hover {
  color: var(--tg-theme-primary);
}
.blog__search {
  position: relative;
}
.blog__search input {
  background: var(--tg-color-white-default);
  height: 60px;
  font-size: 15px;
  padding: 15px 70px 15px 16px;
  border: 1px solid var(--tg-border-4);
  border-radius: 6px;
  width: 100%;
  display: block;
  color: var(--tg-heading-color);
}
.blog__search input::placeholder {
  font-size: 15px;
}
.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-primary);
  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;
  right: 6px !important;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  position: absolute;
}
.blog__search button:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}
.blog__sidebar {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .blog__sidebar {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .blog__sidebar {
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
    .blog__search input {
        height: 50px;
    }
    .blog__search button {
        width: 40px;
        height: 40px;
    }
}
.blog__details-thumb {
    margin: 0 0 25px;
}
.blog__details-thumb img {
    border-radius: 15px;
}
.blog__details-content > p {
  margin-bottom: 15px;
}
.blog__details-content .title-two {
  font-size: 28px;
  margin-bottom: 16px;
}
@media (max-width: 1199.98px) {
  .blog__details-content .title-two {
    font-size: 25px;
  }
}
.blog__details-inner {
  margin: 40px 0 55px;
}
@media (max-width: 991.98px) {
  .blog__details-inner {
    margin: 25px 0 30px;
  }
}
.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: 28px;
}
@media (max-width: 1199.98px) {
  .blog__details-inner-content .title {
    font-size: 25px;
  }
}
.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: 300px;
  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: 50px;
  margin-bottom: 70px;
  padding-top: 20px;
  border-top: 1px solid #D6DCE9;
}
@media (max-width: 767.98px) {
  .blog__details-bottom .post-tags {
    margin-bottom: 30px;
  }
}
.blog__details-bottom .tag-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--tg-heading-color);
}
.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: #f2f5f8;
  padding: 5px 16px;
  display: block;
  border-radius: 4px;
  color: var(--tg-theme-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f2f5f8;
}
.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;
  font-weight: 600;
  color: var(--tg-heading-color);
  text-align: right;
}
@media (max-width: 767.98px) {
  .blog__details-bottom .post-share .title {
    text-align: left;
  }
}
.blog__details-bottom .post-share .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .blog__details-bottom .post-share .list-wrap {
    justify-content: flex-start;
  }
}
.blog__details-bottom .post-share .list-wrap li a {
  font-size: 16px;
  color: var(--tg-theme-primary);
  width: 35px;
  height: 35px;
  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: #f2f5f8;
}
.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);
}
.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: #f2f5f8;
  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;
    margin-bottom: 40px;
  }
}
.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-heading-color);
}
.blog__avatar-info p {
  margin-bottom: 0;
}

.post-title {
  margin-bottom: 0;
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .post-title {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .post-title {
    font-size: 25px;
  }
}
.post-title a {
  background-repeat: no-repeat;
  background-position-y: -1px;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--tg-heading-color) 1px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) title-underline forwards;
}
.post-title a:hover {
  color: inherit;
  animation: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) title-underline-hover forwards;
}

.tg-post-tag {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  line-height: 1;
  padding: 9px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.tg-post-tag:hover {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-primary);
}

.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 {
    overflow: hidden;
}
.rc-post-item .content .date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  gap: 7px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--tg-heading-color);
}
.rc-post-item .content .date svg {
  color: var(--tg-theme-primary);
}
.rc-post-item .content .post-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}
.rc-post-item .content .post-title a {
  background-image: linear-gradient(transparent calc(100% - 1px), var(--tg-heading-color) 1px);
}

.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-heading-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: 15px;
  font-weight: 500;
  color: var(--tg-theme-secondary);
  text-transform: capitalize;
  background: var(--tg-color-white-default);
  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);
}

.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: #f2f5f8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  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: #f2f5f8;
  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: 700;
  color: var(--tg-heading-color);
}

.comments-wrap-title {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .comments-wrap-title {
    font-size: 26px;
  }
}
.comments-wrap .latest-comments {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .comments-wrap .latest-comments {
    margin-bottom: 40px;
  }
}
.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;
}
.comments-avatar {
  width: 115px;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .comments-box {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  .comments-avatar {
    width: 80px;
  }
}
.comments-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.comment-text .avatar-name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 5px;
}
.comment-text .avatar-name .name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}
.comment-text .avatar-name span {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: var(--tg-theme-primary);
}
.comment-text p {
  margin-bottom: 15px;
}
.comment-text .comment-reply-link {
  background: #f2f5f8;
  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);
}
.comment-text .comment-reply-link:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.comment-respond {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  padding: 35px 40px 50px;
  background: #f2f5f8;
}
@media (max-width: 1199.98px) {
  .comment-respond {
    padding: 35px 25px 35px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
  }
}
.comment-reply-title {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .comment-reply-title {
    font-size: 22px;
  }
}
.comment-form .comment-notes {
  margin-bottom: 15px;
}
.comment-form .form-grp {
  margin-bottom: 15px;
}
.comment-form .form-grp textarea, .comment-form .form-grp input {
  width: 100%;
  border: 1px solid #E6EEFF;
  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-border-1);
  opacity: .5;
}
.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: 14px;
  color: var(--tg-body-color);
  user-select: none;
}
.blog-post-item {
    margin: 0 0 50px;
}
.blog-post-thumb {
    margin: 0 0 20px;
}
.blog-post-thumb img {
    border-radius: 15px;
}
.blog-post-meta .list-wrap {
    gap: 5px 20px;
    margin: 0 0 13px !important;
}
.blog-post-meta .list-wrap li {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 7px;
}
.blog-post-meta .list-wrap li,
.blog-post-meta .list-wrap li a {
  color: var(--tg-heading-color);
}
.blog-post-content .title {
  font-size: 32px;
  margin-bottom: 12px;
}
@media (max-width: 1199.98px) {
    .blog-post-content .title {
        font-size: 30px;
    }
}
@media (max-width: 767.98px) {
    .blog-post-content .title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .blog-post-thumb img {
        border-radius: 8px;
    }
}
.blog-post-thumb a {
    display: block;
    line-height: 1;
}
.blog__post-bottom {
    margin: 10px 0 0;
    display: flex;
}