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

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

==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --tg-body-font-family: 'Plus Jakarta Sans', sans-serif;
  --tg-heading-font-family: 'Plus Jakarta Sans', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.62;
  --tg-heading-line-height: 1.2;
  --tg-body-color: #4D4D4D;
  --tg-heading-color: #0E0E0F;
  --tg-theme-primary: #F4796C;
  --tg-theme-secondary: #183354;
  --tg-color-dark-blue: #0E104B;
  --tg-color-yellow-light: #FFBE17;
  --tg-color-yellow-light-2: #FFFBF3;
  --tg-color-white-default: #ffffff;
  --tg-color-gray-1: #F6F6F7;
  --tg-color-gray-2: #F6F6F6;
  --tg-color-gray-3: #F8F8F8;
  --tg-color-gray-4: #F0EFEB;
  --tg-color-gray-5: #F5F5F5;
  --tg-color-dark: #121212;
  --tg-color-dark-2: #1D1D1D;
  --tg-color-dark-3: #282828;
  --tg-color-dark-4: #2D2D2D;
  --tg-border-1: #D9D9D9;
  --tg-border-2: #EDEDED;
  --tg-border-3: #ECECEC;
  --tg-border-4: #E8E8E8;
  --tg-border-5: #F2F2F2;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

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

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

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  margin-bottom: 15px;
}

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

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

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

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

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

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

/*=============================
    - 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;
}

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

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

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

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

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

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

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

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

.container {
  max-width: 1440px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

.custom-container {
  max-width: 1790px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

.custom-container-two {
  max-width: 1716px;
}
@media (max-width: 1800px) {
  .custom-container-two {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container-two {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-two {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-two {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-two {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-two {
    max-width: 540px;
  }
}

.custom-container-three {
  max-width: 1530px;
}
@media (max-width: 1800px) {
  .custom-container-three {
    max-width: 1530px;
  }
}
@media (max-width: 1500px) {
  .custom-container-three {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-three {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-three {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-three {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-three {
    max-width: 540px;
  }
}

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

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

.tg-btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: none;
  color: var(--tg-color-white-default);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: var(--tg-fw-bold);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
  margin-bottom: 0;
  padding: 10px 16px 10px 10px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: -0.01em;
  gap: 8px;
}
.tg-btn .icon {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  color: var(--tg-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tg-btn:hover, .tg-btn:focus-visible {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}
.tg-btn:hover .icon, .tg-btn:focus-visible .icon {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

/*=============================
    00. Preloader
===============================*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--tg-color-white-default);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: block;
  width: 45px;
  height: 45px;
}

.preloader-inner span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  margin: 4px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: preloader 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--tg-theme-primary) transparent transparent transparent;
}

.preloader-inner span:nth-child(1) {
  animation-delay: -0.1s;
}

.preloader-inner span:nth-child(2) {
  animation-delay: -0.2s;
}

.preloader-inner span:nth-child(3) {
  animation-delay: -0.3s;
}

@-webkit-keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-color-gray-4);
}

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

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

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

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

/*=============================
	  OffCanvas
===============================*/
.offCanvas-toggle {
  position: relative;
  margin-right: 40px;
  padding-right: 40px;
}
@media (max-width: 991.98px) {
  .offCanvas-toggle {
    margin-right: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767.98px) {
  .offCanvas-toggle {
    display: none;
  }
}
.offCanvas-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--tg-border-1);
}
.offCanvas-toggle .menu-tigger {
  color: var(--tg-heading-color);
}
.offCanvas-toggle .menu-tigger:hover {
  color: var(--tg-theme-primary);
}
.offCanvas-toggle-two {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
}
.offCanvas-toggle-two::before {
  right: auto;
  left: 0;
  height: 104px;
}

.offCanvas__info {
  background: var(--tg-color-white-default) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  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);
  width: 340px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.offCanvas__info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas__info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
}
.offCanvas__close-icon button {
  background: transparent;
  border: 0 none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}
.offCanvas__logo img {
  max-height: 34px;
}
.offCanvas__side-info {
  border-top: 1px solid var(--tg-theme-primary);
  padding-top: 25px;
}
.offCanvas__side-info .contact-list h4 {
  color: var(--tg-heading-color);
  font-weight: 700;
  font-size: 18px;
}
.offCanvas__side-info .contact-list p {
  color: var(--tg-body-color);
  margin: 0;
  margin-bottom: 2px;
  line-height: 26px;
}
.offCanvas__social-icon a {
  color: var(--tg-theme-primary);
  display: inline-block;
  margin-right: 20px;
  text-align: center;
}
.offCanvas__social-icon a:hover {
  color: var(--tg-theme-secondary);
}
.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=========================
      Breadcrumb
===========================*/
.breadcrumb__bg {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .breadcrumb__bg {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__bg {
    padding: 80px 0;
  }
}
.breadcrumb__content {
  display: inline-block;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  padding: 55px 90px 55px 60px;
}
@media (max-width: 1199.98px) {
  .breadcrumb__content {
    padding: 40px 70px 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__content {
    padding: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__content {
    padding: 30px 35px;
  }
}
.breadcrumb__content .title {
  margin-bottom: 12px;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 1500px) {
  .breadcrumb__content .title {
    font-size: 56px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb__content .title {
    font-size: 52px;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb__content .title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 42px;
  }
}
.breadcrumb__content .breadcrumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 6px;
}
.breadcrumb__content .breadcrumb > * {
  font-size: 16px;
  color: var(--tg-theme-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.breadcrumb__content .breadcrumb > * a {
  color: var(--tg-body-color);
}
.breadcrumb__content .breadcrumb > * a:hover {
  color: var(--tg-theme-primary);
}
.breadcrumb__content .breadcrumb .breadcrumb-separator {
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--tg-body-color);
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 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: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: var(--tg-theme-secondary);
  border-color: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}

/*=============================
	00. Section Title
===============================*/
.section__title .title {
  font-size: 54px;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 1500px) {
  .section__title .title {
    font-size: 50px;
  }
}
@media (max-width: 1199.98px) {
  .section__title .title {
    font-size: 45px;
  }
}
@media (max-width: 991.98px) {
  .section__title .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .section__title .title br {
    display: none;
  }
}
.section__title p {
  margin-bottom: 0;
  font-size: 18px;
  margin-top: 20px;
}
@media (max-width: 1199.98px) {
  .section__title p br {
    display: none;
  }
}

.section__content {
  padding-left: 215px;
}
@media (max-width: 1199.98px) {
  .section__content {
    padding-left: 0;
  }
}
.section__content p {
  margin-bottom: 0;
  font-size: 18px;
}

.tg-split-title .char {
  display: inline-block;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
}

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

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

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

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

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

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

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

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

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

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

/*=============================
    	02. Header
===============================*/
.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}
@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}

.tg-header__area {
  padding: 24px 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
}
@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}
.tg-header__area.sticky-menu {
  padding: 15px 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area.sticky-menu {
    padding: 12px 0;
  }
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.tgmenu__nav .logo img {
  max-height: 45px;
}
.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.tgmenu__navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 40px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  text-transform: capitalize;
  color: #E8E8E8;
  font-family: var(--tg-heading-font-family);
  padding: 42px 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-color-white-default);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tgmenu__navbar-wrap ul li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tgmenu__navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.tgmenu__navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  display: block;
  color: var(--tg-heading-color);
  font-size: 16px;
  text-transform: capitalize;
}
.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(8px);
  -moz-transform: translateX(8px);
  -ms-transform: translateX(8px);
  -o-transform: translateX(8px);
  transform: translateX(8px);
}
.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__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "\f078";
  display: block;
  font-family: var(--tg-icon-font-family);
  font-size: 12px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
  color: #8B8B8B;
}
.tgmenu__action {
  margin-left: auto;
}
.tgmenu__action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tgmenu__action > ul li {
  position: relative;
  margin-left: 30px;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .tgmenu__action > ul li {
    margin-left: 20px;
  }
}
.tgmenu__action > ul li.header-btn {
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.header-btn {
    margin-left: 40px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__action > ul li.header-btn {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action > ul li.header-btn .tg-btn {
    padding: 10px 12px 10px 10px;
    font-size: 12px;
    gap: 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action > ul li.header-btn .tg-btn .icon {
    width: 22px;
    height: 22px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action > ul li.header-btn .tg-btn .icon svg {
    width: 11px;
    height: auto;
  }
}
.tgmenu__action > ul li:first-child {
  margin-left: 0;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.free-btn {
    display: none;
  }
}
.tgmenu__action > ul li.login-btn {
  padding: 0 0;
  margin-inline-start: 15px;
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.login-btn {
    display: none;
  }
}
.tgmenu__action > ul li.login-btn a {
  display: block;
  border-radius: 50px;
  padding: 12px 26px;
  border: 1px solid rgba(6, 35, 91, 0.19);
  background: var(--tg-theme-secondary);
  font-size: 15px;
  color: var(--tg-heading-color);
  font-weight: 600;
  line-height: 18px;
}
.tgmenu__action > ul li.login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-color-white-default);
  -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 0 0px;
  -moz-border-radius: 0 0 0 0px;
  -o-border-radius: 0 0 0 0px;
  -ms-border-radius: 0 0 0 0px;
  border-radius: 0 0 0 0px;
}
.sticky-menu .tgmenu__nav .logo {
  display: none;
}
.sticky-menu .tgmenu__nav .logo.d-none {
  display: block !important;
}
.sticky-menu .tgmenu__navbar-wrap > ul > li a {
  color: var(--tg-heading-color);
}

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

/*=============================
    	03. Banner
===============================*/
.banner__bg {
  background-position: center;
  background-size: cover;
  padding: 185px 0 0;
}
@media (max-width: 1500px) {
  .banner__bg {
    padding: 150px 0 0;
  }
}
@media (max-width: 767.98px) {
  .banner__bg {
    padding: 120px 0 0;
  }
}
.banner__content {
  text-align: center;
}
.banner__content .title {
  margin-bottom: 24px;
  font-size: 80px;
  letter-spacing: -0.03em;
  color: #E8E8E8;
}
@media (max-width: 1500px) {
  .banner__content .title {
    font-size: 72px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content .title {
    font-size: 62px;
  }
}
@media (max-width: 991.98px) {
  .banner__content .title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .banner__content .title {
    font-size: 42px;
  }
}
.banner__content .title span {
  color: var(--tg-theme-primary);
}
@media (max-width: 767.98px) {
  .banner__content .title br {
    display: none;
  }
}
.banner__content p {
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1.5;
  width: 65%;
  margin: 0 auto 48px;
}
@media (max-width: 1199.98px) {
  .banner__content p {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.banner__content .tg-btn {
  margin-bottom: 16px;
}
.banner__content .text {
  display: block;
  color: #787878;
  margin-bottom: 60px;
}
.banner__features {
  margin-bottom: 120px;
}
@media (max-width: 1500px) {
  .banner__features {
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .banner__features {
    margin-bottom: 50px;
  }
}
.banner__features-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .banner__features-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__features-item {
    flex-direction: row;
    text-align: left;
  }
}
.banner__features-item .icon {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #404041;
  color: var(--tg-border-4);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  flex: 0 0 auto;
}
.banner__features-item .content .title {
  margin-bottom: 0;
  color: var(--tg-color-white-default);
  font-size: 16px;
  line-height: 1.5;
}
.banner__img {
  text-align: center;
}
.banner__img img {
  width: 100%;
}

/*=============================
    	04. Features
===============================*/
.features__area-three {
  padding-top: 70px;
}
.features__item {
  background: var(--tg-color-gray-1);
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item {
    border-radius: 15px;
  }
}
.features__item-two {
  background: var(--tg-color-gray-1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 32px 32px;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item-two {
    padding: 25px 25px;
  }
}
.features__item-two .icon {
  width: 56px;
  height: 56px;
  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: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.features__item-two .content .title {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.features__item-two .content p {
  margin-bottom: 0;
}
.features__item-three {
  padding: 32px 32px;
  border: 1px solid transparent;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -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;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .features__item-three {
    padding: 15px 10px;
  }
}
@media (max-width: 991.98px) {
  .features__item-three {
    padding: 20px 20px;
  }
}
.features__item-three:hover {
  border-color: #DBDBDB;
}
.features__item-three:hover .icon {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
}
.features__item-three .icon {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DBDBDB;
  color: var(--tg-heading-color);
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.features__item-three .content .title {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.features__item-three .content p {
  margin-bottom: 0;
  width: 95%;
}
@media (max-width: 1500px) {
  .features__item-three .content p {
    width: 100%;
  }
}
.features__item-four {
  position: relative;
}
.features__item-four .thumb {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .features__item-four .thumb {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
  }
}
.features__item-four .thumb img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .features__item-four .thumb img {
    height: 450px;
    object-fit: cover;
  }
}
.features__item-four .content {
  position: absolute;
  left: 0;
  top: 0;
  padding: 40px 40px;
}
@media (max-width: 1500px) {
  .features__item-four .content {
    padding: 30px 25px;
  }
}
@media (max-width: 1199.98px) {
  .features__item-four .content {
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item-four .content {
    padding: 30px 30px;
  }
}
.features__item-four .content .title {
  margin-bottom: 12px;
  font-size: 34px;
  color: var(--tg-color-white-default);
  letter-spacing: -0.03em;
}
@media (max-width: 1199.98px) {
  .features__item-four .content .title {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
@media (max-width: 767.98px) {
  .features__item-four .content .title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item-four .content .title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .features__item-four .content .title br {
    display: none;
  }
}
.features__item-four .content p {
  margin-bottom: 0;
  font-size: 18px;
  color: #BEBBF0;
}
@media (max-width: 1199.98px) {
  .features__item-four .content p {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .features__item-four .content p br {
    display: none;
  }
}
.features__item-four .content-two .title {
  color: var(--tg-heading-color);
}
.features__item-four .content-two p {
  color: var(--tg-body-color);
}
.features__item-five {
  padding: 0 32px;
  border: none;
}
@media (max-width: 1199.98px) {
  .features__item-five {
    padding: 0;
  }
}
.features__item-five .content p {
  width: 100%;
}
.features__img img {
  width: 100%;
  object-fit: cover;
}
.features__content {
  padding: 32px 40px 40px;
}
@media (max-width: 1199.98px) {
  .features__content {
    padding: 32px 25px 30px;
  }
}
.features__content .title {
  margin-bottom: 12px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
@media (max-width: 1199.98px) {
  .features__content .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__content .title {
    font-size: 20px;
  }
}
.features__content p {
  margin-bottom: 0;
  font-size: 18px;
}

.plugin__item {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 250px;
  text-align: center;
  border: 1px solid #DBDBDB;
  margin: -1px 0px 0px 0;
  border-left: none;
}
@media (max-width: 767.98px) {
  .plugin__item {
    height: 220px;
  }
}
.plugin__item-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid #DBDBDB;
}
@media (max-width: 991.98px) {
  .plugin__item-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .plugin__item-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plugin__item .icon {
  margin-bottom: 20px;
}
.plugin__item .content .title {
  margin-bottom: 12px;
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .plugin__item .content .title {
    font-size: 18px;
  }
}
.plugin__item .content span {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  padding: 5px 8px 7px;
}

.element__img {
  margin-top: 90px;
}
@media (max-width: 991.98px) {
  .element__img {
    margin-top: 50px;
  }
}
.element__img img {
  width: 100%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 991.98px) {
  .element__img img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
  }
}

/*=============================
    	05. Demo
===============================*/
.counter__title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .counter__title {
    flex-wrap: wrap;
    text-align: center;
    gap: 15px;
  }
}
.counter__title .counter {
  min-width: 202px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  line-height: 0.8;
  letter-spacing: -0.12em;
  font-weight: 400;
}
@media (max-width: 1500px) {
  .counter__title .counter {
    min-width: 165px;
  }
}
.counter__title .counter .counter-number {
  font-size: 200px;
  font-weight: 800;
}
@media (max-width: 1500px) {
  .counter__title .counter .counter-number {
    font-size: 170px;
  }
}
@media (max-width: 1199.98px) {
  .counter__title .counter .counter-number {
    font-size: 150px;
  }
}
@media (max-width: 767.98px) {
  .counter__title .counter .counter-number {
    font-size: 120px;
  }
}
.counter__title .counter .plus {
  font-size: 130px;
  color: var(--tg-theme-primary);
  line-height: 0.6;
  transform: translateX(15px);
}
@media (max-width: 1500px) {
  .counter__title .counter .plus {
    font-size: 100px;
  }
}
@media (max-width: 991.98px) {
  .counter__title .counter .plus {
    font-size: 80px;
    transform: translateX(7px);
  }
}

.demo__area {
  background: #F6F6F7;
}
.demo__item {
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.05);
  background: var(--tg-color-white-default);
  padding: 12px 12px 32px 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.demo__thumb {
  margin-bottom: 24px;
}
.demo__thumb img {
  width: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.demo__content {
  padding: 0 20px;
}
.demo__content .title {
  margin-bottom: 4px;
  font-size: 20px;
}
.demo__content span {
  display: block;
  line-height: 1.5;
}
.demo__details-area {
  background: var(--tg-heading-color);
}
.demo__details-item-wrap {
  position: relative;
  height: 100vh;
}
.demo__details-content .title {
  margin-bottom: 12px;
  color: #E8E8E8;
  font-size: 54px;
  letter-spacing: -0.03em;
}
.demo__details-content p {
  margin-bottom: 24px;
  color: #9F9F9F;
  font-size: 18px;
}
.demo__details-content .tg-btn {
  background: var(--tg-color-white-default);
  font-size: 16px;
  padding: 16px 19px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}
.demo__details-content .tg-btn:hover {
  background: var(--tg-theme-primary);
}

.tp-text-bounce-trigger {
  background: var(--tg-heading-color);
}

.coming__soon-demo {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 991.98px) {
  .coming__soon-demo {
    min-height: 300px;
  }
}
.coming__soon-demo .icon {
  width: 72px;
  height: 72px;
  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);
  margin: 0 auto 48px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.coming__soon-demo .icon::before, .coming__soon-demo .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--tg-theme-primary);
  z-index: -1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.coming__soon-demo .icon::before {
  animation: pulse1 1.5s linear infinite;
}

.coming__soon-demo .icon::after {
  animation: pulse2 1.5s linear infinite;
}

.inner__demo-img {
  position: relative;
}
.inner__demo-img::after, .inner__demo-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #fff 100%);
}
.inner__demo-img::after {
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #fff 100%);
}
.inner__demo-img img {
  width: 100%;
}

/* scroll animation section */
.scroll-section {
  position: relative;
  overflow: visible !important;
  background: #000;
  height: 300vh;
}

/* pin container */
.pin-area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.demo__details-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

.item.active {
  opacity: 1;
  z-index: 2;
}

.main-area {
  overflow: visible !important;
}

/*=============================
    	04. Testimonial
===============================*/
.testimonial__area {
  background: var(--tg-color-gray-1);
}
.testimonial__item-wrap {
  position: relative;
  height: 1000px;
  overflow: hidden;
}
.testimonial__item-wrap::after, .testimonial__item-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, #f6f6f7 0%, rgba(246, 246, 247, 0) 100%);
  z-index: 1;
}
.testimonial__item-wrap::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.testimonial__item {
  background: var(--tg-color-white-default);
  padding: 32px 32px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  box-shadow: 0 4px 54px 0 rgba(14, 14, 15, 0.04);
  margin-bottom: 30px;
}
.testimonial__item:last-child {
  margin-bottom: 0;
}
.testimonial__item-inner {
  animation: friskTestimonialScroll 50s linear infinite;
  transition: all 0.5s ease-in;
  animation-duration: 50s;
}
.testimonial__item-inner:hover {
  animation-play-state: paused;
}
.testimonial__content p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5;
}
.testimonial__content-bottom .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.testimonial__content-bottom span {
  display: block;
  line-height: 1.5;
}
.testimonial__content-bottom span strong {
  font-weight: 700;
  color: var(--tg-heading-color);
}

.average__rating {
  text-align: center;
  margin-bottom: 48px;
}
.average__rating span {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-top: 6px;
}

/*=============================
    	04. Footer
===============================*/
.footer__bg {
  background-size: cover;
  background-position: center;
  padding: 205px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .footer__bg {
    padding: 170px 0;
  }
}
@media (max-width: 991.98px) {
  .footer__bg {
    padding: 120px 0;
  }
}
@media (max-width: 767.98px) {
  .footer__bg {
    padding: 80px 0;
  }
}
.footer__content {
  padding: 0 50px;
}
@media (max-width: 1800px) {
  .footer__content {
    padding: 0;
  }
}
.footer__content .sub-title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #E8E8E8;
  margin-bottom: 24px;
}
.footer__content .title {
  margin-bottom: 24px;
  font-size: 80px;
  letter-spacing: -0.03em;
  color: #e8e8e8;
}
@media (max-width: 1500px) {
  .footer__content .title {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .footer__content .title {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .footer__content .title {
    font-size: 40px;
  }
}
.footer__content .title span {
  color: var(--tg-theme-primary);
}
.footer__content p {
  margin-bottom: 48px;
  color: #9F9F9F;
  font-size: 20px;
}
@media (max-width: 1500px) {
  .footer__content p {
    margin-bottom: 30px;
  }
}
.footer__img-wrap img {
  position: absolute;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .footer__img-wrap img {
    display: none;
  }
}
.footer__img-wrap img:nth-child(1) {
  top: 139px;
  left: -17px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
@media (max-width: 1500px) {
  .footer__img-wrap img:nth-child(1) {
    max-width: 280px;
  }
}
@media (max-width: 1199.98px) {
  .footer__img-wrap img:nth-child(1) {
    max-width: 220px;
    top: 40px;
  }
}
.footer__img-wrap img:nth-child(2) {
  bottom: -124px;
  left: 90px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
}
@media (max-width: 1500px) {
  .footer__img-wrap img:nth-child(2) {
    max-width: 350px;
  }
}
@media (max-width: 1199.98px) {
  .footer__img-wrap img:nth-child(2) {
    left: 50px;
  }
}
.footer__img-wrap img:nth-child(3) {
  top: 0;
  right: 430px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1500px) {
  .footer__img-wrap img:nth-child(3) {
    max-width: 200px;
    right: 300px;
  }
}
@media (max-width: 1199.98px) {
  .footer__img-wrap img:nth-child(3) {
    display: none;
  }
}
.footer__img-wrap img:nth-child(4) {
  top: 260px;
  right: 0px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 1500px) {
  .footer__img-wrap img:nth-child(4) {
    max-width: 250px;
  }
}
@media (max-width: 1199.98px) {
  .footer__img-wrap img:nth-child(4) {
    top: 50px;
    max-width: 220px;
  }
}
.footer__img-wrap img:nth-child(5) {
  bottom: 0px;
  right: 284px;
  -webkit-border-radius: 14px 14px 0 0;
  -moz-border-radius: 14px 14px 0 0;
  -o-border-radius: 14px 14px 0 0;
  -ms-border-radius: 14px 14px 0 0;
  border-radius: 14px 14px 0 0;
}
@media (max-width: 1500px) {
  .footer__img-wrap img:nth-child(5) {
    max-width: 320px;
    right: 150px;
  }
}
@media (max-width: 1199.98px) {
  .footer__img-wrap img:nth-child(5) {
    right: 50px;
    max-width: 300px;
  }
}

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