@charset "UTF-8";
/*======================================================================================
Theme Name: Tovix 
Author: pixel-drop
Author URI: https://themeforest.net/user/pixel-drop/portfolio
Description: Tovix - Creative Agency HTML Templatee
Service Html Template 
Version: 1.0.0
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #F8431D;
  --header: #000000;
  --text: #000000;
  --border: #000000;
  --bg: #F2F2F2;
  --bg2: #0F172A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--bg);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

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

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

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

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

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

h1 {
  font-size: 190px;
  font-weight: 700;
  line-height: 111%;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 130px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 66px;
  font-weight: 700;
  line-height: 111%;
}
@media (max-width: 1600px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

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

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

span {
  margin: 0px;
}

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 16px 40px 14px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme);
  z-index: 1;
  border-radius: 0px;
}
.theme-btn i {
  margin-left: 5px;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}
.theme-btn::after {
  content: "";
  background-color: rgba(11, 13, 23, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.theme-btn span {
  font-size: 16px;
  position: relative;
  top: -1px;
  font-weight: 700;
  transition: all 500ms ease;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover img {
  filter: brightness(0);
}

.link-btn {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Unbounded", sans-serif;
}
.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}

.tw-hover-btn {
  position: relative;
  overflow: hidden;
}

.theme-btn-main {
  width: 166px;
  height: 166px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.theme-btn-text,
.theme-btn-icon {
  position: relative;
  z-index: 3;
}

.tw-btn-circle-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--theme);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 1;
  bottom: -15px;
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

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

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

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

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

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

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

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: 500 5em "Unbounded", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Unbounded", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  background-color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--header);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top:hover {
  background-color: var(--theme);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: all 0.6s ease;
}
.search_popup.search-opened {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 999999;
}
.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}
@media (max-width: 575px) {
  .search_popup {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.search_wrapper .search_top {
  margin-bottom: 80px;
}
.search_wrapper .search_top .search_logo {
  max-width: 200px;
}
.search_wrapper .search_top .search_logo a {
  display: block;
}
@media (max-width: 575px) {
  .search_wrapper .search_top .search_logo {
    max-width: 150px;
  }
}
.search_wrapper .search_top .search_close {
  margin-left: auto;
  margin-top: 10px;
}
.search_wrapper .search_top .search_close .search_close_btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}
.search_wrapper .search_top .search_close .search_close_btn svg {
  width: 30px;
  height: 30px;
}
.search_wrapper .search_top .search_close .search_close_btn:hover {
  color: var(--white);
  transform: rotate(90deg);
}
@media (max-width: 575px) {
  .search_wrapper .search_top {
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .search_wrapper .search_top {
    margin-bottom: 40px;
  }
}
.search_wrapper .search_form .search_input {
  position: relative;
  height: 80px;
  transform: translateY(-40px);
  transition: all 0.4s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}
.search_wrapper .search_form .search_input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition-delay: 0.3s;
  transition: all 0.4s ease-in-out;
}
.search_wrapper .search_form .search_input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search_wrapper .search_form .search_input input::placeholder {
  font-size: 24px;
}
.search_wrapper .search_form .search_input input ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: all 0.5s;
}
.search_wrapper .search_form .search_input input:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}
@media (max-width: 575px) {
  .search_wrapper .search_form .search_input input {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .search_wrapper .search_form .search_input input {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 18px;
  }
}
.search_wrapper .search_form .search_input button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--white);
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  cursor: zoom-out;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.8;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.35s;
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* CSS */
.text-anims {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
  opacity: 1;
  transform: scale(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes text-fill {
  0% {
    background-position: 100% 0;
    -webkit-text-stroke-color: #000;
  }
  50% {
    background-position: 0% 0;
    -webkit-text-stroke-color: transparent;
  }
  100% {
    background-position: 100% 0;
    -webkit-text-stroke-color: #000;
  }
}
/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
  border-radius: 8px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white) !important;
  position: relative;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 0px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  display: none;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .menu_search .search_btn {
  color: var(--header);
}
@media (max-width: 1399px) {
  .header-main .header-right .header-button {
    display: none;
  }
}
.header-main .header-right .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .header-1 {
    top: 0;
  }
}
.header-1 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-3 {
  border-bottom: 1px solid var(--header);
  background: #fff;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    display: none;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper .star-shape {
  position: absolute;
  right: 438px;
  top: 262px;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .star-shape {
    right: 230px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .star-shape {
    right: 130px;
    top: 200px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .star-shape {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 200px 0 100px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 150px 0 80px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: #000;
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--theme);
  font-size: 130px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
  font-weight: 700;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 110px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 85px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
.breadcrumb-wrapper .page-heading .stroke-fill {
  font-size: 130px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  color: transparent;
  -webkit-text-stroke: 2.2px #000;
  background: linear-gradient(90deg, var(--theme) 0%, var(--theme) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  animation: text-fill 3s ease-in-out infinite;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .stroke-fill {
    font-size: 90px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .stroke-fill {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .stroke-fill {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .stroke-fill {
    font-size: 35px;
  }
}

.breadcrumb-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 180px;
  padding-bottom: 100px;
}
@media (max-width: 1399px) {
  .breadcrumb-top-item {
    gap: 20px;
    padding-top: 160px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-top-item {
    padding-bottom: 50px;
    flex-wrap: wrap;
    padding-top: 130px;
  }
}
.breadcrumb-top-item h2 {
  color: var(--theme);
  font-size: 100px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .breadcrumb-top-item h2 {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-top-item h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-top-item h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-top-item h2 {
    font-size: 45px;
  }
}
.breadcrumb-top-item p {
  max-width: 428px;
  font-size: 20px;
  font-weight: 400;
}

.error-items {
  text-align: center;
  position: relative;
}
.error-items .error-image {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .error-items .error-image {
    margin-bottom: 15px;
  }
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .error-items h2 {
    margin-bottom: 30px;
  }
}

.footer-widget-wrapper {
  padding: 80px 0 80px;
}
.footer-widget-wrapper .footer-text h2 {
  color: var(--white);
  font-size: 146px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .footer-widget-wrapper .footer-text h2 {
    font-size: 166px;
  }
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-text h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper .footer-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper .footer-text h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .footer-widget-wrapper .footer-text h2 {
    font-size: 40px;
  }
}
.footer-widget-wrapper .footer-text .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-text .icon-item {
    justify-content: start;
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper .footer-text .icon-item .icon {
  background-color: var(--white);
  text-align: center;
  border-radius: 100px;
  width: 180px;
  height: 180px;
  line-height: 180px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-text .icon-item .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .footer-widget-wrapper .footer-text .icon-item .icon img {
    width: 55px;
  }
}
.footer-widget-wrapper .footer-text .icon-item span {
  font-size: 180px;
  text-transform: uppercase;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 2.22px;
  -webkit-text-stroke-color: var(--white);
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-text .icon-item span {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper .footer-text .icon-item span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper .footer-text .icon-item span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .footer-widget-wrapper .footer-text .icon-item span {
    font-size: 50px;
  }
}
.footer-widget-wrapper .footer-bottom-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 90px;
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-bottom-item {
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.footer-widget-wrapper .footer-bottom-item .footer-left span {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
}
.footer-widget-wrapper .footer-bottom-item .footer-left .list li {
  display: flex;
  align-items: center;
  gap: 78px;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-bottom-item .footer-left .list li a {
  color: var(--white);
}
.footer-widget-wrapper .footer-bottom-item .footer-right {
  display: flex;
  align-items: start;
  gap: 85px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-bottom-item .footer-right {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .widget-title {
  margin-bottom: 24px;
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .widget-title h3 {
  font-weight: 500;
  color: var(--white);
  font-size: 20px;
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .widget-title h3 {
  font-weight: 500;
  color: var(--white);
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .list-item li {
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .list-item li {
    font-size: 16px;
  }
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .list-item li:not(:last-child) {
  margin-bottom: 12px;
}
.footer-widget-wrapper .footer-bottom-item .footer-right .single-footer-widget .list-item li a {
  color: var(--white);
}
.footer-widget-wrapper .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-wrapper {
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.footer-widget-wrapper .footer-wrapper p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.footer-widget-wrapper .contact-btn {
  background-color: var(--white);
  font-size: 61px;
  font-weight: 500;
  color: var(--header);
  width: 100%;
  text-transform: uppercase;
  padding: 30px 0;
  display: inline-block;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .contact-btn {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper .contact-btn {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper .contact-btn {
    font-size: 30px;
  }
}
.footer-widget-wrapper .contact-btn i {
  margin-left: 10px;
}
.footer-widget-wrapper .contact-btn:hover {
  background-color: var(--header);
  color: var(--white);
  border-radius: 100px;
}

.footer-widget-wrapper-2 {
  padding: 120px 0 100px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-2 {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-2 {
    padding: 80px 0 80px;
  }
}
.footer-widget-wrapper-2 .footer-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-2 .footer-top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-widget-wrapper-2 .footer-top-item .footer-left-content p {
  color: var(--white);
  max-width: 302px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.footer-widget-wrapper-2 .footer-top-item .footer-left-content .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper-2 .footer-top-item .footer-left-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  color: var(--header);
  background-color: var(--white);
}
.footer-widget-wrapper-2 .footer-top-item .footer-left-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper-2 .footer-top-item .footer-right {
  display: flex;
  align-items: start;
  gap: 68px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-2 .footer-top-item .footer-right {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .widget-title {
  margin-bottom: 24px;
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .widget-title h2 {
  font-weight: 500;
  color: var(--white);
  font-size: 20px;
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .list-item li {
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .list-item li {
    font-size: 16px;
  }
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .list-item li:not(:last-child) {
  margin-bottom: 12px;
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .list-item li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper-2 .footer-top-item .footer-right .single-footer-widget .list-item li a:hover {
  color: var(--theme);
}

.footer-section-2 {
  background-color: #000000;
  position: relative;
  z-index: 9;
}
.footer-section-2 .title-1 {
  color: var(--white);
  position: absolute;
  bottom: 0;
  z-index: -1;
  font-size: 353.19px;
  font-weight: 700;
  line-height: 75%;
  letter-spacing: -17.66px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .footer-section-2 .title-1 {
    display: none;
  }
}
.footer-section-2 .title-1 .tp-letter-span {
  display: inline-block;
}

.footer-botttom-2 .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 380px;
  padding-top: 15px;
}
@media (max-width: 1399px) {
  .footer-botttom-2 .footer-wrapper {
    margin-bottom: 20px;
  }
}
.footer-botttom-2 .footer-wrapper p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrapper-3 {
  padding: 60px 0 90px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 {
    padding: 100px 0 90px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 {
    padding: 80px 0 60px;
  }
}
.footer-widget-wrapper-3 .footer-top-items-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-top-items-3 {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-top-items-3 a img {
    width: 150px;
  }
}
.footer-widget-wrapper-3 .footer-top-items-3 form {
  max-width: 464px;
  width: 100%;
}
.footer-widget-wrapper-3 .footer-top-items-3 .form-clt {
  position: relative;
}
.footer-widget-wrapper-3 .footer-top-items-3 .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: #000000;
  line-height: 1;
  padding: 20px;
  max-width: 464px;
}
.footer-widget-wrapper-3 .footer-top-items-3 .form-clt input::placeholder {
  color: #000000;
}
.footer-widget-wrapper-3 .footer-top-items-3 .form-clt .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  padding: 12px 30px;
}
.footer-widget-wrapper-3 .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper-3 .single-footer-widget .widget-title {
  margin-bottom: 24px;
}
.footer-widget-wrapper-3 .single-footer-widget .widget-title h2 {
  font-weight: 500;
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .single-footer-widget .widget-title h2 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 .single-footer-widget .widget-title h2 {
    font-size: 20px;
  }
}
.footer-widget-wrapper-3 .single-footer-widget .list-item li {
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .single-footer-widget .list-item li {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 .single-footer-widget .list-item li {
    font-size: 16px;
  }
}
.footer-widget-wrapper-3 .single-footer-widget .list-item li:not(:last-child) {
  margin-bottom: 12px;
}
.footer-widget-wrapper-3 .single-footer-widget .list-item li a {
  color: rgba(255, 255, 255, 0.9);
}
.footer-widget-wrapper-3 .single-footer-widget .list-item li a:hover {
  color: var(--white);
}
.footer-widget-wrapper-3 .single-footer-widget .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-widget-wrapper-3 .single-footer-widget .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 12px;
  text-align: center;
  display: inline-block;
  color: var(--header);
  background-color: var(--white);
}
.footer-widget-wrapper-3 .single-footer-widget .social-icon a:hover {
  background-color: var(--header);
  color: var(--white);
}

.footer-bottom-3 .footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 15px;
  margin-bottom: 100px;
}
@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-bottom-3 .footer-wrapper-3 p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.footer-section-3 {
  position: relative;
  z-index: 1;
}
.footer-section-3 .hand-shape {
  position: absolute;
  top: 45px;
  left: 45%;
}
@media (max-width: 1399px) {
  .footer-section-3 .hand-shape {
    display: none;
  }
}
.footer-section-3 .title {
  position: absolute;
  bottom: 0;
  z-index: -1;
  font-size: 353.19px;
  font-weight: 700;
  line-height: 75%;
  letter-spacing: -17.66px;
  text-transform: uppercase;
  color: #FF5A37;
}
@media (max-width: 1399px) {
  .footer-section-3 .title {
    display: none;
  }
}
.footer-section-3 .title .tp-letter-span {
  display: inline-block;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .sub-title-2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial;
  color: initial;
  margin-left: 0;
}
.section-title .sub-title-2::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 14px;
  border-radius: 50px;
  height: 14px;
  background-color: var(--theme);
}
.section-title h2 {
  color: var(--theme);
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .section-title h2 {
    margin-bottom: 10px;
  }
}
.section-title .stroke-fill {
  font-size: 66px;
  font-weight: 700;
  -webkit-text-stroke-width: 2.22px;
  -webkit-text-stroke-color: #000;
  color: transparent;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  margin-left: 280px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--theme) 0%, var(--theme) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  animation: text-fill 3s ease-in-out infinite;
}
@media (max-width: 1600px) {
  .section-title .stroke-fill {
    font-size: 50px;
    margin-left: 230px;
  }
}
@media (max-width: 1399px) {
  .section-title .stroke-fill {
    font-size: 50px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .section-title .stroke-fill {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title .stroke-fill {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title .stroke-fill {
    font-size: 25px;
  }
}

.section-title-2 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }
  .section-title-2 br {
    display: none;
  }
}
.section-title-2 .sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}
.section-title-2 .sub-title::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 14px;
  border-radius: 50px;
  height: 14px;
  background-color: var(--theme);
}
.section-title-2 h2 {
  font-size: 46px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .section-title-2 h2 {
    font-size: 40px;
  }
  .section-title-2 h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .section-title-2 h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .section-title-2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title-2 h2 {
    font-size: 25px;
  }
}
.section-title-2 h2 span {
  color: rgba(0, 0, 0, 0.5);
}

.section-title-3 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-3 {
    margin-bottom: 0;
  }
  .section-title-3 br {
    display: none;
  }
}
.section-title-3 h2 span {
  color: var(--theme);
}

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

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

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

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

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.bg-4 {
  background: #F2F2F2;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper {
    margin-top: 30px;
  }
}
.about-wrapper .about-image {
  overflow: hidden;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image.style-2 {
  margin-top: 120px;
  transform: rotate(-15deg);
  margin-right: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image.style-2 {
    margin-right: 0;
    transform: rotate(0);
  }
}
.about-wrapper .about-image.style-3 {
  margin-top: 120px;
  transform: rotate(15deg);
  margin-left: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image.style-3 {
    margin-left: 0;
    transform: rotate(0);
    margin-top: 0;
  }
}

.about-wrapper-3 .about-image {
  overflow: hidden;
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content .section-title-3 h2 {
  font-size: 56px;
}
@media (max-width: 1600px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 50px;
  }
  .about-wrapper-3 .about-content .section-title-3 h2 br {
    display: none;
  }
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 25px;
  }
}
@media (max-width: 470px) {
  .about-wrapper-3 .about-content .section-title-3 h2 {
    font-size: 25px;
  }
}
.about-wrapper-3 .about-content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
  max-width: 645px;
  margin-top: 15px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content p {
    font-size: 16px;
  }
}
.about-wrapper-3 .about-content .count-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 24px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .count-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.about-wrapper-3 .about-content .count-item h3 {
  font-size: 80px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .count-item h3 {
    font-size: 50px;
  }
}
.about-wrapper-3 .about-content .count-item h4 {
  color: #676767;
  font-family: "Inter", sans-serif;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .count-item h4 {
    margin-top: 0;
  }
}
.about-wrapper-3 .about-content .theme-btn {
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .theme-btn {
    margin-top: 20px;
  }
}

.about-bg-image img {
  width: 100%;
  height: 100%;
}

.brand-slider.style-2 {
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .brand-slider.style-2 {
    margin-top: 30px;
  }
}

.contact-item .contact-form-items .form-clt {
  position: relative;
}
.contact-item .contact-form-items .form-clt span {
  font-size: 24px;
  font-weight: 400;
  color: var(--header);
  display: inline-block;
  margin-bottom: 15px;
}
.contact-item .contact-form-items .form-clt input, .contact-item .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: rgba(0, 0, 0, 0.6);
  background-color: var(--white);
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .contact-item .contact-form-items .form-clt input, .contact-item .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-item .contact-form-items .form-clt input, .contact-item .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-item .contact-form-items .form-clt input::placeholder, .contact-item .contact-form-items .form-clt textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.contact-item .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
  resize: none;
}
.contact-item .contact-form-items .theme-btn {
  width: 100%;
}

.faq-content {
  margin-top: 48px;
}
@media (max-width: 575px) {
  .faq-content {
    margin-top: 30px;
  }
}
.faq-content .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 20px !important;
}
.faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  box-shadow: none;
  padding: 24px 20px;
  font-family: "Inter", sans-serif;
  color: var(--white);
}
@media (max-width: 1399px) {
  .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 16px;
  }
}
@media (max-width: 575px) {
  .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-content .faq-items .accordion .accordion-item .accordion-body {
  background-color: var(--theme);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--white);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  max-width: 484px;
}
@media (max-width: 575px) {
  .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-content .faq-items .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-content .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .faq-content .faq-items .accordion .accordion-button::before {
    right: 8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--header);
  background-color: #D9D9D9;
}

.marque-section {
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .marque-section {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .marque-section {
    margin-top: 80px;
  }
}
.marque-section .marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  line-height: 190px;
}
.marque-section .marquee.slide-right {
  transform: scaleX(-1);
}
.marque-section .marquee.slide-right .text,
.marque-section .marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.marque-section .marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}
.marque-section .marquee .text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 240px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  display: flex;
  align-items: center;
  gap: 50px;
  transition: all 0.4s ease-in-out;
}
.marque-section .marquee .text:hover {
  color: var(--theme);
}
@media (max-width: 1399px) {
  .marque-section .marquee .text {
    gap: 30px;
    font-size: 60px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .marque-section .marquee .text {
    gap: 20px;
    font-size: 50px;
  }
}

.award-card-wrapper {
  position: relative;
}
.award-card-wrapper::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  background: var(--theme);
  transition: all 500ms ease;
}
.award-card-wrapper .award-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid var(--theme);
}
@media (max-width: 1399px) {
  .award-card-wrapper .award-card-item {
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--theme);
  }
}
.award-card-wrapper .award-card-item span {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
@media (max-width: 1399px) {
  .award-card-wrapper .award-card-item span {
    font-size: 16px;
  }
}
.award-card-wrapper .award-card-item p {
  font-size: 22px;
  font-weight: 400;
  color: var(--header);
}
@media (max-width: 1399px) {
  .award-card-wrapper .award-card-item p {
    font-size: 16px;
  }
}
.award-card-wrapper:hover .award-card-item {
  position: relative;
  z-index: 999;
}
.award-card-wrapper:hover .award-card-item span {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.award-card-wrapper:hover .award-card-item p {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.award-card-wrapper:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.award-section .award-top {
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .award-section .award-top {
    margin-bottom: 30px;
  }
}

.feature-bg-section {
  height: 634px;
  position: relative;
  margin-bottom: 210px;
}
@media (max-width: 1399px) {
  .feature-bg-section {
    overflow: hidden;
    margin-bottom: -100px;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .feature-bg-section {
    height: 580px;
    margin-bottom: -80px;
  }
}
@media (max-width: 767px) {
  .feature-bg-section {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .feature-bg-section {
    height: 380px;
  }
}

.feature-bg-box {
  background-color: var(--theme);
  padding: 48px 0;
  position: absolute;
  bottom: -200px;
  left: 320px;
  width: 100%;
  max-width: 649px;
}
@media (max-width: 1399px) {
  .feature-bg-box {
    left: 0px;
    bottom: 0;
  }
}
.feature-bg-box p {
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 48px;
  line-height: 130%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 48px;
  padding-left: 48px;
  max-width: 553px;
}
@media (max-width: 1399px) {
  .feature-bg-box p {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.feature-bg-box .theme-btn {
  background-color: var(--white);
  color: var(--header);
  margin-left: 48px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .feature-bg-box .theme-btn {
    margin-left: 30px;
  }
}
.feature-bg-box .theme-btn:hover {
  color: var(--white);
}

.work-process-wrapper .work-process-content .work-process-item {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--header);
  padding-bottom: 30px;
  margin-bottom: 30px;
  max-width: 545px;
  width: 100%;
}
.work-process-wrapper .work-process-content .work-process-item.style-2 {
  margin-top: 30px;
}
.work-process-wrapper .work-process-content .work-process-item span {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.work-process-wrapper .work-process-content .work-process-item p {
  font-size: 28px;
  font-weight: 400;
  color: var(--header);
}
@media (max-width: 1399px) {
  .work-process-wrapper .work-process-content .work-process-item p {
    font-size: 20px;
  }
}
.work-process-wrapper .work-process-content .theme-btn {
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .work-process-wrapper .work-process-content .theme-btn {
    margin-top: 15px;
  }
}
.work-process-wrapper .work-process-image {
  margin-right: -320px;
  margin-left: 50px;
  max-width: 900px;
  height: 830px;
}
@media (max-width: 1399px) {
  .work-process-wrapper .work-process-image {
    height: initial;
    max-width: initial;
    margin-left: 0;
    margin-right: 0;
  }
}
.work-process-wrapper .work-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terms-condition-content h2 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .terms-condition-content h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .terms-condition-content h2 {
    font-size: 20px;
  }
}
.terms-condition-content p {
  max-width: 757px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.terms-condition-content h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 0;
  margin-top: 5px;
}

.working-process-wrapper {
  padding: 150px 248px;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .working-process-wrapper {
    padding: 30px;
  }
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .working-process-wrapper .working-process-main-box {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .working-process-wrapper .working-process-main-box {
    margin-top: 30px;
  }
}
.working-process-wrapper .working-process-main-box.style-2 {
  margin-top: 310px;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box.style-2 {
    margin-top: 30px;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .working-process-wrapper .working-process-main-box.style-2 {
    margin-left: 0;
  }
}
.working-process-wrapper .working-process-main-box.style-3 {
  margin-top: 265px;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box.style-3 {
    margin-top: 30px;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .working-process-wrapper .working-process-main-box.style-3 {
    margin-left: 0;
  }
}
.working-process-wrapper .working-process-main-box.mt-top {
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box.mt-top {
    margin-top: 30px;
  }
}
.working-process-wrapper .working-process-main-box .working-process-boxs {
  border-radius: 40px;
  background: #F2F2F2;
  padding: 48px 48px;
  width: 100%;
  max-width: 400px;
  position: relative;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box .working-process-boxs {
    padding: 30px;
    max-width: initial;
    width: initial;
  }
}
.working-process-wrapper .working-process-main-box .working-process-boxs::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  background: var(--theme);
  transition: all 500ms ease;
  border-radius: 40px;
}
.working-process-wrapper .working-process-main-box .working-process-boxs h3 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box .working-process-boxs h3 {
    font-size: 25px;
  }
}
.working-process-wrapper .working-process-main-box .working-process-boxs p {
  font-size: 24px;
  font-weight: 500;
  color: #676767;
}
@media (max-width: 1399px) {
  .working-process-wrapper .working-process-main-box .working-process-boxs p {
    font-size: 16px;
  }
}
.working-process-wrapper .working-process-main-box .number {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: var(--header);
  background: #F2F2F2;
  position: relative;
  margin: 0 auto;
}
.working-process-wrapper .working-process-main-box .number::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background: var(--theme);
  border-radius: 40px;
  transition: all 500ms ease;
  z-index: -1;
}
.working-process-wrapper .working-process-main-box .number::before {
  position: absolute;
  content: "";
  background: #9A9A9A;
  height: 70px;
  width: 1px;
  top: 80px;
  left: 40px;
}
.working-process-wrapper .working-process-main-box .number.style-2::before {
  top: initial;
  bottom: 80px;
}
.working-process-wrapper .working-process-main-box:hover .working-process-boxs::before {
  opacity: 1;
  transform: scale(1, 1);
}
.working-process-wrapper .working-process-main-box:hover .working-process-boxs h3 {
  position: relative;
  z-index: 999;
  color: var(--white);
}
.working-process-wrapper .working-process-main-box:hover .working-process-boxs p {
  position: relative;
  z-index: 999;
  color: var(--white);
}
.working-process-wrapper .working-process-main-box:hover .number {
  z-index: 99999;
  color: var(--white);
}
.working-process-wrapper .working-process-main-box:hover .number::after {
  opacity: 1;
  transform: scale(1, 1);
}

.hero-1 {
  padding: 200px 0 0px;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 150px 0 0px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 120px 0 0px;
  }
}
.hero-1 .icon {
  background-color: #F2F2F2;
  border-radius: 100px;
  width: 202px;
  height: 202px;
  line-height: 202px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 37.5%;
  z-index: 999;
  text-align: center;
}
@media (max-width: 1600px) {
  .hero-1 .icon {
    top: 42%;
  }
}
@media (max-width: 1399px) {
  .hero-1 .icon {
    display: none;
  }
}
.hero-1 .hero-content h1 {
  color: var(--theme);
  text-transform: uppercase;
  line-height: 80%;
}
.hero-1 .hero-content .tp-letter-span {
  display: inline-block;
}
.hero-1 .hero-content .stroke-fill {
  color: transparent;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--header);
  background: transparent;
  font-size: 211.299px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  margin-left: 280px;
  background: linear-gradient(90deg, var(--theme) 0%, var(--theme) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  animation: text-fill 3s ease-in-out infinite;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .stroke-fill {
    margin-left: 32px;
    font-size: 120px;
    -webkit-text-stroke-width: 1px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content .stroke-fill {
    margin-left: 32px;
    font-size: 80px;
    -webkit-text-stroke-width: 1px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .stroke-fill {
    margin-left: 10px;
    font-size: 33px;
    -webkit-text-stroke-width: 1px;
  }
}
.hero-1 .hero-content .hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-1 .hero-content .hero-bottom h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-bottom h3 {
    font-size: 20px;
  }
}
.hero-1 .hero-content .hero-bottom h3 img {
  color: var(--theme);
  margin-right: 10px;
}
.hero-1 .hero-content .hero-bottom p {
  font-size: 24px;
  font-weight: 500;
  max-width: 399px;
  color: var(--header);
  text-align: right;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-bottom p {
    font-size: 20px;
    text-align: left;
  }
}
.hero-1 .hero-content .hero-bottom p b {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.hero-1 .hero-bottom-image {
  margin-top: 150px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-bottom-image {
    margin-top: 30px;
  }
}
.hero-1 .hero-bottom-image .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-2 {
  padding: 190px 0 160px;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 150px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 130px 0 80px;
  }
}
.hero-2 .hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content .hero-image {
    flex-basis: 100%;
  }
}
.hero-2 .hero-content .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-content .content p {
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 70px;
  max-width: 409px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.hero-2 .hero-content .content p span {
  color: var(--header);
}

.hero-3 {
  padding: 0px 0 0;
  border-bottom: 1px solid var(--header);
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-3 {
    padding-top: 160px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding-top: 130px;
  }
}
.hero-3 .line-shape {
  position: absolute;
  left: 320px;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 910px;
  max-width: 1296px;
}
@media (max-width: 1600px) {
  .hero-3 .line-shape {
    left: 83px;
    max-width: 1280px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .line-shape {
    display: none;
  }
}
.hero-3 .line-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .social-item {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  left: 27.5%;
  top: 58%;
  transform: rotate(-45deg);
}
@media (max-width: 1600px) {
  .hero-3 .social-item {
    left: 18.5%;
    top: 62%;
    transform: rotate(-47deg);
  }
}
@media (max-width: 1399px) {
  .hero-3 .social-item {
    display: none;
  }
}
.hero-3 .social-item a {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  font-size: 23px;
  text-transform: capitalize;
}
.hero-3 .social-item a:hover {
  color: var(--header);
}
.hero-3 .social-item-2 {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  right: 37.5%;
  top: 50%;
  transform: rotate(45deg);
}
.hero-3 .social-item-2 a {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 23px;
}
.hero-3 .social-item-2 a:hover {
  color: var(--header);
}
@media (max-width: 1600px) {
  .hero-3 .social-item-2 {
    right: 32.5%;
    top: 53%;
  }
}
@media (max-width: 1399px) {
  .hero-3 .social-item-2 {
    display: none;
  }
}
.hero-3 .hero-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-top-item {
    gap: 30px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-top-item {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-top-item .hero-image {
  max-width: 339px;
  overflow: hidden;
}
.hero-3 .hero-top-item .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-top-item .hero-content {
  margin-top: 210px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-top-item .hero-content {
    margin-top: 0;
  }
}
.hero-3 .hero-top-item .hero-content p {
  font-size: 24px;
  font-weight: 500;
  color: var(--header);
  max-width: 409px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-top-item .hero-content p {
    font-size: 16px;
  }
}
.hero-3 .hero-top-item .hero-content p span {
  color: rgba(0, 0, 0, 0.6);
}
.hero-3 .hero-top-item .hero-content .hand-image {
  max-width: 127px;
  margin-top: 30px;
  margin-left: 200px;
}
@media (max-width: 575px) {
  .hero-3 .hero-top-item .hero-content .hand-image {
    margin-left: 0;
  }
}
.hero-3 .hero-top-item .hero-content .hand-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .icon {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.hero-3 h2 {
  color: var(--theme);
  font-size: 170px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 73%;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .hero-3 h2 {
    margin-top: 30px;
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .hero-3 h2 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .hero-3 h2 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hero-3 h2 {
    font-size: 50px;
  }
}
.hero-3 .tp-letter-span {
  display: inline-block;
}

.project-wrapper .project-card-item {
  background-color: var(--white);
  padding: 24px;
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .project-wrapper .project-card-item {
    margin-bottom: 30px;
  }
}
.project-wrapper .project-card-item .project-image {
  position: relative;
  overflow: hidden;
}
.project-wrapper .project-card-item .project-image .icon {
  background-color: var(--white);
  color: var(--theme);
  font-size: 40px;
  text-align: center;
  border-radius: 100px;
  width: 117px;
  height: 117px;
  line-height: 117px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -50%;
  transition: all 0.4s ease-in-out;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.project-wrapper .project-card-item .project-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.project-wrapper .project-card-item .project-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.project-wrapper .project-card-item .product-list {
  padding: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .project-wrapper .project-card-item .product-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.project-wrapper .project-card-item .product-list li {
  color: var(--header);
  font-size: 20px;
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .project-wrapper .project-card-item .product-list li {
    font-size: 16px;
  }
}
.project-wrapper .project-card-item .product-list li span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
.project-wrapper .project-card-item .product-list li:hover {
  color: var(--theme);
}
.project-wrapper .project-card-item:hover .project-image .icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.project-wrapper .project-card-item:hover .project-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.project-wrapper .project-card-item:hover .project-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

@media (max-width: 1399px) {
  .project-section {
    margin-bottom: -80px;
  }
}
@media (max-width: 991px) {
  .project-section {
    margin-bottom: -80px;
  }
}

.project-card-items-2 {
  margin-top: 30px;
}
.project-card-items-2 .project-thumb {
  position: relative;
  overflow: hidden;
}
.project-card-items-2 .project-thumb img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-card-items-2 .project-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.project-card-items-2 .project-thumb .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #282828;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-thumb .project-content {
    padding: 18px 20px;
  }
}
.project-card-items-2 .project-thumb .project-content h3 {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-thumb .project-content h3 {
    font-size: 20px;
  }
}
.project-card-items-2 .project-thumb .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.project-card-items-2 .project-thumb .project-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.project-card-items-2 .project-thumb .project-content .view-btn {
  color: var(--white);
  text-decoration: underline;
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.project-card-items-2:hover .project-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.project-card-items-2:hover .project-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.project-card-items-2:hover .project-thumb .project-content {
  background: #FF4B22;
  z-index: 9999;
}

.project-card-item-3 {
  margin-top: 30px;
}
.project-card-item-3.style-top {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .project-card-item-3.style-top {
    margin-top: 30px;
  }
}
.project-card-item-3 .project-image {
  max-width: 363px;
  height: 290px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .project-card-item-3 .project-image {
    max-width: initial;
    height: initial;
  }
}
.project-card-item-3 .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .project-card-item-3 .project-image img {
    object-fit: initial;
  }
}
.project-card-item-3 .project-image.style-2 {
  max-width: 733px;
  margin-left: 40px;
  height: 720px;
}
@media (max-width: 1399px) {
  .project-card-item-3 .project-image.style-2 {
    max-width: initial;
    margin-left: 0;
    height: initial;
  }
}
.project-card-item-3 .project-image.style-3 {
  max-width: 733px;
  margin-left: 0px;
  margin-right: 40px;
  height: 720px;
}
@media (max-width: 1399px) {
  .project-card-item-3 .project-image.style-3 {
    max-width: initial;
    height: initial;
    margin-right: 0;
  }
}
.project-card-item-3 .content {
  margin-top: 30px;
}
.project-card-item-3 .content.style-cont {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .project-card-item-3 .content.style-cont {
    margin-left: 0;
  }
}
.project-card-item-3 .content h3 {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .project-section-3 {
    margin-top: -30px;
  }
}

.project-section-inner {
  margin-bottom: 120px;
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .project-section-inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .project-section-inner {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.project-details-wrapper .project-card-item {
  background-color: var(--white);
  padding: 24px;
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-card-item {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .project-card-item .project-image {
  position: relative;
  overflow: hidden;
}
.project-details-wrapper .project-card-item .project-image .icon {
  background-color: var(--white);
  color: var(--theme);
  font-size: 40px;
  text-align: center;
  border-radius: 100px;
  width: 117px;
  height: 117px;
  line-height: 117px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -50%;
  transition: all 0.4s ease-in-out;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.project-details-wrapper .project-card-item .project-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.project-details-wrapper .project-card-item .project-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.project-details-wrapper .project-card-item .product-list {
  padding: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-card-item .product-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.project-details-wrapper .project-card-item .product-list li {
  color: var(--header);
  font-size: 20px;
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-card-item .product-list li {
    font-size: 16px;
  }
}
.project-details-wrapper .project-card-item .product-list li span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
.project-details-wrapper .project-card-item .product-list li:hover {
  color: var(--theme);
}
.project-details-wrapper .project-card-item:hover .project-image .icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.project-details-wrapper .project-card-item:hover .project-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.project-details-wrapper .project-card-item:hover .project-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.project-details-wrapper .details-content {
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content {
    margin-top: 30px;
  }
}
.project-details-wrapper .details-content h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .details-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .details-content h2 {
    font-size: 25px;
  }
}
.project-details-wrapper .details-content p {
  max-width: 880px;
  color: var(--header);
  margin-bottom: 80px;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content p {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .details-content .details-list {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content .details-list {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .details-content .details-list.style-2 {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content .details-list.style-2 {
    margin-top: 30px;
  }
}
.project-details-wrapper .details-content .details-list li {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.project-details-wrapper .details-content .details-list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: var(--header);
  top: 10px;
  left: 0;
}
.project-details-wrapper .details-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .details-list li span {
  font-weight: 400;
}
.project-details-wrapper .details-content .details-thumb {
  overflow: hidden;
}
.project-details-wrapper .details-content .details-thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .details-content .theme-btn {
  width: 100%;
  margin-top: 80px;
  border-radius: 15px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-content .theme-btn {
    margin-top: 30px;
  }
}

.service-card-item {
  padding: 10px 0;
  transition: all 0.4s ease-in-out;
  margin-bottom: 20px;
  position: relative;
}
.service-card-item::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  background: #F8431D url(../../assets/img/home-1/dot-shape.png);
  transition: all 500ms ease;
}
.service-card-item .service-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.service-card-item .service-content span {
  font-weight: 700;
  margin-top: 20px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  font-family: "Unbounded", sans-serif;
}
.service-card-item .service-content h3 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .service-card-item .service-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .service-card-item .service-content h3 {
    font-size: 24px;
  }
}
.service-card-item .service-content h3 a {
  color: rgba(0, 0, 0, 0.3);
}
.service-card-item .service-content h3 a:hover {
  color: var(--white);
}
.service-card-item .hover-image {
  width: 266px;
  height: 294px;
  position: absolute;
  border-radius: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(10deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 30px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
}
@media (max-width: 991px) {
  .service-card-item .hover-image {
    display: none !important;
  }
}
.service-card-item:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-card-item:hover .service-content span {
  color: var(--white);
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.service-card-item:hover .service-content h3 {
  position: relative;
  z-index: 999;
}
.service-card-item:hover .service-content h3 a {
  color: var(--white);
}
.service-card-item:hover .hover-image {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.service-section {
  position: relative;
}
@media (max-width: 1399px) {
  .service-section {
    margin-bottom: -100px;
  }
}
@media (max-width: 991px) {
  .service-section {
    margin-bottom: -80px;
  }
}
.service-section .shape {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 190px;
  right: 190px;
}
.service-section .shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .service-section .shape {
    display: none;
  }
}

.service-wrapper-2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.service-wrapper-2.style-2 {
  margin-top: 30px;
}
.service-wrapper-2::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  transition: all 500ms ease;
}
.service-wrapper-2 .service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
}
@media (max-width: 1399px) {
  .service-wrapper-2 .service-item {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
  }
}
.service-wrapper-2 .service-item .content {
  display: flex;
  align-items: center;
  gap: 95px;
}
@media (max-width: 1399px) {
  .service-wrapper-2 .service-item .content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.service-wrapper-2 .service-item .content span {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.service-wrapper-2 .service-item .content h3 {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 1399px) {
  .service-wrapper-2 .service-item .content h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-2 .service-item .content h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-2 .service-item .content h3 {
    font-size: 22px;
  }
}
.service-wrapper-2 .service-item p {
  color: var(--header);
  max-width: 260px;
}
.service-wrapper-2 .service-item .hover-image {
  width: 233px;
  height: 257px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(10deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 0px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
}
@media (max-width: 991px) {
  .service-wrapper-2 .service-item .hover-image {
    display: none !important;
  }
}
.service-wrapper-2:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-wrapper-2:hover .service-item .content span {
  color: var(--white);
  position: relative;
}
.service-wrapper-2:hover .service-item .content h3 a {
  color: var(--white);
  position: relative;
}
.service-wrapper-2:hover .service-item p {
  color: var(--white);
  position: relative;
}
.service-wrapper-2:hover .service-item .hover-image {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.service-wrapper-3 .service-card-items-3 {
  padding: 50px;
  background-color: var(--white);
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 {
    margin-bottom: 30px;
    padding: 30px;
  }
}
.service-wrapper-3 .service-card-items-3::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme);
}
.service-wrapper-3 .service-card-items-3 h3 {
  font-size: 48px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-3 .service-card-items-3 h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-3 .service-card-items-3 h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-3 .service-card-items-3 h3 {
    font-size: 20px;
  }
}
.service-wrapper-3 .service-card-items-3 h3 a:hover {
  color: var(--white);
}
.service-wrapper-3 .service-card-items-3 p {
  font-size: 24px;
  font-weight: 500;
  max-width: 913px;
  line-height: 133%;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.service-wrapper-3 .service-card-items-3 .service-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 .service-list {
    flex-wrap: wrap;
  }
}
.service-wrapper-3 .service-card-items-3 .service-list li {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease-in-out;
  padding: 5px 15px;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 .service-list li {
    font-size: 20px;
  }
}
.service-wrapper-3 .service-card-items-3 .service-list li:hover {
  background-color: var(--white);
  color: var(--header) !important;
  border: 1px solid var(--white);
}
.service-wrapper-3 .service-card-items-3 .service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  margin-top: 120px;
  font-size: 32px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  padding: 40px 30px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-card-items-3 .service-btn {
    margin-top: 30px;
    padding: 25px;
  }
}
.service-wrapper-3 .service-card-items-3 .service-btn:hover {
  background-color: var(--header);
  color: var(--white);
  border-radius: 40px;
}
.service-wrapper-3 .service-card-items-3:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-wrapper-3 .service-card-items-3:hover h3 {
  position: relative;
}
.service-wrapper-3 .service-card-items-3:hover h3 a {
  color: var(--white);
}
.service-wrapper-3 .service-card-items-3:hover p {
  position: relative;
  color: var(--white);
}
.service-wrapper-3 .service-card-items-3:hover .service-list {
  position: relative;
}
.service-wrapper-3 .service-card-items-3:hover .service-list li {
  border: 1px solid var(--white);
  color: var(--white);
}
.service-wrapper-3 .service-card-items-3:hover .service-btn {
  position: relative;
}

.team-card-items {
  padding: 10px 10px 22px;
  background-color: var(--white);
}
.team-card-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.team-card-items .team-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.team-card-items .team-content {
  margin-top: 30px;
}
.team-card-items .team-content h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.team-card-items .team-content h2 a:hover {
  color: var(--theme);
}
.team-card-items .team-content p {
  font-size: 18px;
  margin-top: 10px;
}
.team-card-items:hover .team-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.team-card-items:hover .team-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-details-wrapper h2 {
  font-size: 48px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .team-details-wrapper h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper h2 {
    font-size: 25px;
  }
}
.team-details-wrapper p {
  max-width: 880px;
  margin-top: 10px;
  margin-bottom: 100px;
}
@media (max-width: 1399px) {
  .team-details-wrapper p {
    margin-bottom: 30px;
  }
}
.team-details-wrapper .team-details-content .content {
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .content {
    margin-bottom: 30px;
  }
}
.team-details-wrapper .team-details-content .content h3 {
  font-size: 48px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .content h3 {
    font-size: 40px;
  }
  .team-details-wrapper .team-details-content .content h3 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-content .content h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper .team-details-content .content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-content .content h3 {
    font-size: 25px;
  }
}
.team-details-wrapper .team-details-content .content h4 {
  font-size: 26px;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .content h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-content .content h4 {
    font-size: 18px;
  }
}
.team-details-wrapper .team-details-content .content h4::before {
  position: absolute;
  content: "";
  background-color: var(--header);
  border-radius: 50px;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
}
.team-details-wrapper .team-details-content .content span {
  color: #6F6F6F;
}
.team-details-wrapper .details-image {
  overflow: hidden;
}
.team-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}

.team-details-section {
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .team-details-section {
    margin-top: 60px;
  }
}

.testimonial-top-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 250px;
}
@media (max-width: 1399px) {
  .testimonial-top-item {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.testimonial-top-item .testimonial-main-box {
  position: relative;
  z-index: 9;
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item {
  background-color: var(--white);
  transform: rotate(9.11deg);
  padding: 35px 30px;
  margin-top: 40px;
  max-width: 325px;
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item {
    padding: 25px;
    margin-top: 0;
    transform: rotate(0);
  }
}
@media (max-width: 767px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item {
    max-width: initial;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item.style-2 {
  opacity: 0.2;
  position: absolute;
  top: -70px;
  left: -115px;
  margin-top: 0;
  z-index: -1;
  transform: rotate(23.46deg);
}
@media (max-width: 1600px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item.style-2 {
    left: -40px;
  }
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item.style-2 {
    display: none;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item.style-3 {
  opacity: 0.2;
  position: absolute;
  top: -70px;
  left: -115px;
  margin-top: 0;
  z-index: -1;
  transform: rotate(-28.18deg);
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item.style-3 {
    display: none;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item.style-4 {
  opacity: 0.2;
  position: absolute;
  top: -40px;
  right: -121px;
  margin-top: 0;
  z-index: -1;
  transform: rotate(-10.188deg);
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item.style-4 {
    display: none;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item.style-5 {
  opacity: 0.2;
  position: absolute;
  top: -50px;
  right: -100px;
  margin-top: 0;
  z-index: -1;
  transform: rotate(14.76deg);
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item.style-5 {
    display: none;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item .star {
  color: var(--theme);
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .testimonial-top-item .testimonial-main-box .testimonial-box-item p {
    font-size: 16px;
  }
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item p span {
  color: rgba(0, 0, 0, 0.6);
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item .client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item .client-item .content h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonial-top-item .testimonial-main-box .testimonial-box-item .client-item .content span {
  color: var(--header);
}

.testimonial-section {
  position: relative;
}
.testimonial-section .section-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .testimonial-section .section-title {
    display: none;
  }
}

.testimonial-wrapper-2 {
  margin-top: 48px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-2 .testimonial-box {
  background-color: var(--white);
  padding: 60px 40px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-box {
    padding: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content .quate-icon {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-box .testimonial-content .quate-icon {
    margin-bottom: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content p {
  font-size: 24px;
  font-weight: 400;
  color: var(--header);
  line-height: 125%;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-box .testimonial-content p {
    font-size: 16px;
  }
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content p b {
  font-weight: 500;
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content p span {
  color: rgba(0, 0, 0, 0.6);
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-box .testimonial-content .info-item {
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content .info-item .cont h3 {
  font-size: 21px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-box .testimonial-content .info-item .cont h3 {
    font-size: 16px;
  }
}
.testimonial-wrapper-2 .testimonial-box .testimonial-content .info-item .cont span {
  font-size: 14px;
  color: var(--header);
  font-weight: 400;
}
.testimonial-wrapper-2 .array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
.testimonial-wrapper-2 .array-buttons .array-prev {
  background-color: rgba(0, 0, 0, 0.1);
  width: 55px;
  height: 55px;
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-2 .array-buttons .array-prev:hover {
  background-color: var(--theme);
}
.testimonial-wrapper-2 .array-buttons .array-next {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-2 .array-buttons .array-next:hover {
  background-color: var(--theme);
}

.testimonial-card-item-3 {
  border-radius: 24px;
  background: #F2F2F2;
  padding: 55px 40px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .testimonial-card-item-3 {
    padding: 30px;
  }
}
.testimonial-card-item-3::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme);
  border-radius: 12px;
}
.testimonial-card-item-3 p {
  color: var(--header);
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  max-width: 376px;
}
@media (max-width: 1600px) {
  .testimonial-card-item-3 p {
    font-size: 22px;
  }
}
@media (max-width: 1399px) {
  .testimonial-card-item-3 p {
    font-size: 16px;
  }
}
.testimonial-card-item-3 .client-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 170px;
}
@media (max-width: 1399px) {
  .testimonial-card-item-3 .client-item {
    margin-top: 100px;
  }
}
.testimonial-card-item-3 .client-item span {
  color: var(--header);
  font-size: 18px;
  font-weight: 500;
}
.testimonial-card-item-3:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}
.testimonial-card-item-3:hover p {
  color: var(--white);
  position: relative;
}
.testimonial-card-item-3:hover .client-item {
  position: relative;
}
.testimonial-card-item-3:hover .client-item span {
  color: var(--white);
}

.testimonial-section-3 .testimonial-slider-3 {
  margin-left: -100px;
  margin-right: -100px;
}
@media (max-width: 1399px) {
  .testimonial-section-3 .testimonial-slider-3 {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}
.array-button .array-prev {
  border-radius: 100px;
  border: 1px solid #E6E8EB;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-button .array-next {
  border-radius: 100px;
  background-color: var(--theme);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.array-button .array-next:hover {
  background-color: var(--header);
}

.swiper-dot {
  position: relative;
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .swiper-dot {
    margin-top: 30px;
  }
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

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

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

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

.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Unbounded", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.actually-area .bg-area {
  position: absolute;
  top: 40%;
  left: 51%;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--header);
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.tilt_scale {
  transition: transform 0.2s ease;
  display: inline-block;
}

.no-break {
  white-space: nowrap; /* Keeps "My Background and Expertise" together */
}

/* Optional: styling for words split animation */
.split-word {
  display: inline-block; /* Required for animation */
  opacity: 0;
}

.reveal-img {
  opacity: 0; /* start invisible */
  transform: translateX(-600px); /* start left */
}

.arrow-path {
  width: 220px;
  height: 130px;
  color: black;
  stroke-dasharray: 1000;
  animation: draw 10s linear infinite;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.image-wrapper {
  position: relative;
  transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
  transform: translateY(0);
  opacity: 1;
}

/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
  display: inline-block; /* Needed for transform animations */
  color: inherit;
  text-decoration: inherit;
}

.project-section-3 .line-ani {
  margin-top: -25px;
}
@media (max-width: 1399px) {
  .project-section-3 .line-ani {
    display: none;
  }
}

.brand-container {
  max-width: 1660px;
  margin: 0 auto;
}

.gt-text-scale-anim {
  white-space: pre-wrap;
  transform-origin: top left;
}

.gt-letter-span {
  display: inline-block;
}

.gt-word-span {
  display: inline-block;
}

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

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

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

.custom-container {
  max-width: 1323px;
  margin: 0 auto;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}
.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}
.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}
.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}
.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}
.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}
.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}
.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}
.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}
.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}
.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.text_invert-2 > div {
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.tp {
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */