@charset "UTF-8";
/*======================================================================================
Theme Name: Infitech 
Author: Pixel-plus
Author URI: https://themeforest.net/user/Pixel-plus/portfolio
Description: Infitech - IT Service & Solution HTML Template
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=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #F94D00;
  --header: #0B0D17;
  --text: #534F5A;
  --border: #02060A;
  --bg: #EFEDE5;
  --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: "Plus Jakarta Sans", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 95%;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}
@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: 48px;
  font-weight: 600;
  line-height: 117%;
}
@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: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 133%;
  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: 100px;
}
.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: "Plus Jakarta Sans", sans-serif;
}
.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}

.tw-hover-btn {
  position: relative;
  overflow: hidden;
}
.tw-hover-btn:hover i {
  color: #fff !important;
}

.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;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}

.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 "Plus Jakarta Sans", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Plus Jakarta Sans", 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: "Plus Jakarta Sans", 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(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  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(--white);
  color: var(--theme);
}
.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 borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-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 scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
  background-color: var(--theme);
  position: relative;
  margin-bottom: 30px;
}
.header-top-section .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}
.header-top-wrapper .header-left .list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .header-left .list li {
  color: var(--white);
}
.header-top-wrapper .header-left .list li i {
  margin-right: 5px;
}
.header-top-wrapper .header-left .list li a {
  color: var(--white);
}
.header-top-wrapper .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .header-right span {
  color: var(--white);
}
.header-top-wrapper .header-right span i {
  margin-right: 5px;
}
.header-top-wrapper .header-right .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-top-wrapper .header-right .social-icon a {
  color: var(--theme);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--white);
  opacity: 0.6;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  border-radius: 100px;
}
.header-top-wrapper .header-right .social-icon a:hover {
  background-color: var(--white);
  opacity: initial;
  color: var(--header);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.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: rgba(255, 255, 255, 0.7);
  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::-webkit-scrollbar {
  display: none;
}
.header-main .main-menu ul li .has-homemenu {
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  margin: auto;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 650px;
}
.header-main .main-menu ul li .has-homemenu.style-2 {
  left: -895px;
}
.header-main .main-menu ul li .has-homemenu.style-3 {
  left: -454px;
}
.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 a {
  width: initial;
  display: initial;
  padding-right: 0;
  padding: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb a img {
  width: 100%;
  height: 100%;
}
.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;
  display: grid;
  gap: 16px;
}
@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: 100px;
}
.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: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: 14px;
  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: rgba(255, 255, 255, 0.7);
}
.header-main .header-right .header-btn {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1399px) {
  .header-main .header-right .header-btn {
    gap: 16px;
  }
}
.header-main .header-right .header-btn span {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.header-main .header-right .header-btn span i {
  color: var(--theme);
  margin-right: 10px;
}
@media (max-width: 1600px) {
  .header-main .header-right .header-btn span {
    display: none;
  }
}
.header-main .header-right .header-btn span a {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1399px) {
  .header-main .header-right .header-btn .header-button {
    display: none;
  }
}
.header-main .header-right .header-btn .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  margin-top: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .header-1 {
    top: 0;
    margin-top: 0;
  }
}
.header-1 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}
.header-1.header-2 {
  margin-top: 30px;
  border-bottom: none;
}
.header-1.header-2.dark-mods {
  margin-top: 20px;
}
.header-1.header-2.dark-mods .header-main {
  background-color: transparent;
  backdrop-filter: none;
}
.header-1.header-2.dark-mods .header-main ul li a {
  color: var(--white);
}
.header-1.header-2.dark-mods .header-main ul li .submenu {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--header);
  border-top: 6px solid var(--header);
}
.header-1.header-2 .header-main {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  padding: 0 20px;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main {
    background-color: transparent;
    padding: 10px 0;
    border-radius: 0;
    backdrop-filter: initial;
  }
}
.header-1.header-2 .header-main .header-right {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right {
    gap: 30px;
  }
}
.header-1.header-4 {
  margin-top: 0;
}
.header-1.header-4 .header-main {
  background-color: var(--white);
  padding: 10px 30px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.header-1.header-4 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-1.header-4 .header-main .header-right .menu_search .search_btn {
  color: var(--header);
}
.header-1.header-4 .header-main .header-right .header-btn .sidebar__toggle {
  color: var(--header);
}
.header-1.header-5 {
  background-color: var(--white);
}
.header-1.header-5.dark-mod {
  background-color: transparent;
}
.header-1.header-5.dark-mod .header-main ul li a {
  color: var(--white);
}
.header-1.header-5.dark-mod .header-main ul li .submenu {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--header);
  border-top: 6px solid var(--header);
}
.header-1.header-5 .header-main {
  border-radius: 0;
  background-color: transparent;
  padding: 10px 0;
}
.header-1.header-5.header-6 {
  background-color: transparent;
}
.header-1.header-5.header-6 .header-main .header-left .logo .header-logo-4 {
  display: none;
}
.header-1.header-5.header-6 .header-main .header-left .logo .header-logo-5 {
  display: block;
}
.header-1.header-5.header-6 .header-main ul li a {
  color: var(--white);
}
.header-1.header-5.header-6 .header-main ul li .submenu li a {
  color: var(--header);
}
.header-1.header-5.header-6 .header-main .header-right .menu_search .search_btn {
  color: var(--white);
}

.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;
}
.sticky.header-1 {
  margin-top: 0;
}
.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}
.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .menu_search .search_btn {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .header-btn h6 {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .header-btn h6 a {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 {
  margin-top: 0;
}
.sticky.header-2.dark-mods {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--header);
  margin-top: 0;
}
.sticky.header-2.dark-mods .header-main ul li a {
  color: var(--white);
}
.sticky.header-5.dark-mod {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--header);
}
.sticky.header-5.dark-mod .header-main ul li a {
  color: var(--white);
}
.sticky.header-5.dark-mod .header-main ul li .submenu {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--header);
  border-top: 6px solid var(--header);
}
.sticky.header-6 {
  background-color: var(--white) !important;
}
.sticky.header-6 .header-main .header-left .logo .header-logo-4 {
  display: block !important;
}
.sticky.header-6 .header-main .header-left .logo .header-logo-5 {
  display: none !important;
}
.sticky.header-6 .header-main .header-right .menu_search .search_btn {
  color: var(--header) !important;
}

.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;
  margin-top: 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    margin-top: 0;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 200px 0 120px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 500;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-items {
  text-align: center;
  position: relative;
}
.error-items .error-image {
  margin-bottom: 30px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items p {
  max-width: 722px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .error-items p {
    margin-bottom: 30px;
  }
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper.style-4 {
  padding: 190px 0 120px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-4 {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-4 {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: var(--white);
  opacity: 0.8;
  max-width: 352px;
  margin-bottom: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  left: 1098.76px;
  opacity: 0.6;
  color: var(--header);
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.footer-widget-wrapper .footer-widget-items .list-area li a {
  color: var(--white);
  opacity: 0.8;
}
.footer-widget-wrapper .footer-widget-items .list-area li a:hover {
  color: var(--theme);
  margin-left: 4px;
}
.footer-widget-wrapper .footer-widget-items .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .contact-item form {
  position: relative;
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .contact-item form input {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
.footer-widget-wrapper .footer-widget-items .contact-item form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-widget-wrapper .footer-widget-items .contact-item .theme-btn {
  border-radius: 8px;
}
.footer-widget-wrapper .footer-widget-items .contact-item .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  left: 1098.76px;
  opacity: 0.6;
  color: var(--header);
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.footer-widget-wrapper .footer-widget-items .contact-content h4 {
  color: rgba(255, 255, 255, 0.7);
  line-height: 162%;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .contact-content h4 a {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-widget-items .contact-content h4 br {
    display: none;
  }
}
.footer-widget-wrapper.style-wrapper-3 {
  padding: 70px 0 60px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-wrapper-3 {
    padding: 50px 0 60px;
  }
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .widget-head h3 {
  color: var(--header);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content p {
  color: rgba(2, 6, 10, 0.7);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  opacity: initial;
  color: #fff;
  background-color: #02060A;
  text-align: center;
  opacity: 0.6;
  text-align: center;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .list-area li a {
  color: rgba(2, 6, 10, 0.7);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form {
  position: relative;
  margin-bottom: 15px;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input {
  width: 100%;
  border: none;
  border: 1px solid rgba(2, 6, 10, 0.1);
  backdrop-filter: blur(16px);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1;
  color: rgba(2, 6, 10, 0.7);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input::placeholder {
  color: rgba(2, 6, 10, 0.7);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn {
  background-color: var(--header);
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn:hover {
  color: var(--white);
}
.footer-widget-wrapper.style-wrapper-3-new {
  padding: 70px 0 60px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-wrapper-3-new {
    padding: 50px 0 60px;
  }
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .footer-content p {
  color: var(--white);
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  opacity: initial;
  color: var(--header);
  background-color: var(--white);
  text-align: center;
  opacity: 0.6;
  text-align: center;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .list-area li a {
  color: var(--white);
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item form {
  position: relative;
  margin-bottom: 15px;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item form input {
  width: 100%;
  border: none;
  border: 1px solid var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1;
  color: var(--white);
  background-color: transparent;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item form input::placeholder {
  color: var(--white);
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item .theme-btn::after {
  background-color: var(--white);
  border-radius: 8px;
}
.footer-widget-wrapper.style-wrapper-3-new .footer-widget-items .contact-item .theme-btn:hover {
  color: var(--header);
}
.footer-widget-wrapper.style-5 .footer-top-content {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 80px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-5 .footer-top-content .theme-btn-main {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-5 .footer-top-content {
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.footer-widget-wrapper.style-5 .footer-top-content .section-title h2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-5 .footer-top-content .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-5 .footer-top-content .section-title h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-5 .footer-top-content .section-title h2 {
    font-size: 30px;
  }
}
.footer-widget-wrapper.style-5 .footer-top-content .theme-btn {
  margin-top: 30px;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.footer-bottom-wrapper p {
  color: rgba(255, 255, 255, 0.87);
}
.footer-bottom-wrapper p span {
  color: var(--theme);
}
.footer-bottom-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-wrapper .footer-list li a {
  color: rgba(255, 255, 255, 0.87);
}
.footer-bottom-wrapper .footer-list li a:hover {
  color: var(--theme);
}
.footer-bottom-wrapper.style-3 {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
}
.footer-bottom-wrapper.style-3 p {
  color: var(--header);
}
.footer-bottom-wrapper.style-3 p span {
  color: var(--theme);
}
.footer-bottom-wrapper.style-3 .footer-list li a {
  color: var(--header);
}

.footer-section {
  padding-bottom: 80px;
}
.footer-section.style-2 {
  padding-bottom: 30px;
}
@media (max-width: 1399px) {
  .footer-section {
    padding-bottom: 30px;
  }
}

.footer-area {
  margin: 0 30px 0px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .footer-area {
    margin: 0 15px 0px;
  }
}

.footer-newsletter-box {
  padding: 50px 50px 50px 42px;
  backdrop-filter: blur(16px);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-newsletter-box {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}
.footer-newsletter-box h2 {
  color: var(--white);
  position: relative;
}
@media (max-width: 1399px) {
  .footer-newsletter-box h2 br {
    display: none;
  }
}
.footer-newsletter-box .newsletter-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .footer-newsletter-box .newsletter-content {
    flex-wrap: wrap;
  }
}
.footer-newsletter-box .newsletter-content form {
  position: relative;
}
.footer-newsletter-box .newsletter-content form input {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  width: 376px;
}
@media (max-width: 767px) {
  .footer-newsletter-box .newsletter-content form input {
    width: 250px;
  }
}
.footer-newsletter-box .newsletter-content form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter-box .newsletter-content .theme-btn {
  border-radius: 8px;
}

.footer-section-3 {
  position: relative;
}
.footer-section-3 .bottom-shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.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 {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  opacity: 0.8;
  background: var(--white);
  padding: 6px 9px;
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
}
.section-title .sub-title img {
  line-height: 1;
  margin-right: 5px;
  margin-top: -3px;
}
.section-title .sub-title.style-2 {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.section-title .sub-title.style-3 {
  background: #EFEDE5;
  backdrop-filter: blur(16px);
}
.section-title h2 {
  color: var(--header);
}
.section-title h2 span {
  color: rgba(15, 23, 42, 0.3);
}
@media (max-width: 1399px) {
  .section-title h2 br {
    display: none;
  }
}

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

.header-bg {
  background-color: rgb(2, 6, 10);
}

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

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

/*---------------------------------------
05. Sections
---------------------------------------*/
@media (max-width: 1399px) {
  .about-wrapper {
    margin-top: 30px;
  }
}
.about-wrapper .about-image {
  overflow: hidden;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.about-wrapper .about-content {
  margin-left: 25px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-item {
  display: flex;
  align-items: start;
  gap: 55px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0;
  }
}
.about-wrapper .about-content .about-item .count-item {
  min-width: 260px;
}
.about-wrapper .about-content .about-item .count-item h2 {
  color: var(--theme);
  font-size: 134px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-item .count-item h2 {
    font-size: 80px;
  }
}
.about-wrapper .about-content .about-item .count-item h3 {
  line-height: 156%;
  font-size: 18px;
  font-weight: 600;
}
.about-wrapper .about-content .about-item .content-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
}
.about-wrapper .about-content .about-item .content-box p {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-item .content-box p span {
  color: var(--header);
  text-decoration: underline;
}
.about-wrapper .about-content .about-item .content-box .theme-btn {
  margin-top: 5px;
  display: inline-block;
}

.about-section .section-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-section .section-title {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper .about-image {
  max-width: 548px;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.about-wrapper .about-content .text {
  margin-top: 20px;
  max-width: 533px;
  margin-bottom: 30px;
}
.about-wrapper .about-content .about-list {
  margin-bottom: 30px;
}
.about-wrapper .about-content .about-list li {
  color: var(--header);
  font-weight: 600;
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper .about-content .about-list li i {
  margin-right: 10px;
  color: var(--theme);
}

.about-wrapper-3 .about-conter-items .about-sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 50px;
  color: var(--header);
  text-transform: uppercase;
  background: var(--white);
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
}
.about-wrapper-3 .about-conter-items .about-sub img {
  margin-right: 5px;
  margin-top: -2px;
}
.about-wrapper-3 .about-conter-items .about-sub.style-2 {
  color: var(--white);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}
.about-wrapper-3 .about-conter-items h2 {
  color: var(--theme);
  font-size: 215.467px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -13.99px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-conter-items h2 {
    font-size: 130px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-conter-items h2 {
    font-size: 100px;
    letter-spacing: initial;
  }
  .about-wrapper-3 .about-conter-items h2 sup {
    top: 0 !important;
  }
}
.about-wrapper-3 .about-conter-items h2 sup {
  top: -1.1em;
  right: 30px;
  font-size: 92px;
}
.about-wrapper-3 .about-conter-items h3 {
  color: var(--header);
  letter-spacing: -1.5px;
}
.about-wrapper-3 .about-content {
  font-weight: 600;
  color: var(--header);
}
.about-wrapper-3 .about-content .about-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
  line-height: 155.556%;
  max-width: 700px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-text {
    font-size: 16px;
    margin-top: 25px;
  }
}
.about-wrapper-3 .about-image {
  margin-top: 60px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    height: 380px;
  }
  .about-wrapper-3 .about-image img {
    object-fit: cover !important;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image {
    margin-top: 30px;
  }
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper-3 .about-image .about-info {
  background-color: var(--white);
  border-radius: 7.667px;
  box-shadow: 0 3.833px 28.75px 0 rgba(31, 41, 55, 0.1);
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 30px;
}
.about-wrapper-3 .about-image .about-info img {
  width: initial;
  height: initial;
}
.about-wrapper-3 .about-image .about-info h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-top: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
}

.about-section-3 {
  position: relative;
  z-index: 9;
  margin: 0 30px;
}
@media (max-width: 1399px) {
  .about-section-3 {
    margin: 0 15px;
  }
}

.about-wrapper-4 {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.about-wrapper-4 .count-item {
  min-width: 260px;
}
.about-wrapper-4 .count-item h2 {
  color: var(--theme);
  font-size: 195px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .count-item h2 {
    font-size: 80px;
  }
}
.about-wrapper-4 .count-item h5 {
  line-height: 156%;
  color: var(--white);
}
.about-wrapper-4 .about-right-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-right-item {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-right-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-4 .about-right-item .about-image {
  overflow: hidden;
  border-radius: 12px;
}
.about-wrapper-4 .about-right-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.about-wrapper-4 .about-right-item .content p {
  color: rgb(255, 255, 255);
  max-width: 405px;
  opacity: 0.8;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-right-item .content p {
    margin-bottom: 30px;
  }
}

.about-section-4 {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .about-section-4 {
    margin: 0 15px;
  }
}
.about-section-4 .section-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-section-4 .section-title {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-5 {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}
.about-wrapper-5 .about-left-item {
  display: flex;
  align-items: start;
  gap: 95px;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-left-item {
    gap: 0px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-5 .about-left-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-5 .about-left-item .count-item {
  min-width: 260px;
}
.about-wrapper-5 .about-left-item .count-item h2 {
  font-size: 145px;
  font-weight: 600;
  line-height: 80%;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-left-item .count-item h2 {
    font-size: 80px;
  }
}
.about-wrapper-5 .about-left-item .count-item h3 {
  line-height: 156%;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.about-wrapper-5 .about-left-item .about-image {
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-left-item .about-image {
    flex-basis: 100%;
  }
}
.about-wrapper-5 .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper-5 .about-right-item {
  display: flex;
  align-items: center;
  gap: 90px;
  align-items: start;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-right-item {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-5 .about-right-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-5 .about-right-item .about-image-5 {
  overflow: hidden;
  border-radius: 10px;
}
.about-wrapper-5 .about-right-item .about-image-5 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper-5 .about-right-item .theme-btn-main {
  border: 1px solid var(--header);
  color: var(--header);
}
.about-wrapper-5 .about-right-item .theme-btn-main.dark-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-right-item .theme-btn-main {
    height: 130px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-5 .about-right-item .theme-btn-main {
    height: 166px;
  }
}
.about-wrapper-5 .about-right-item .theme-btn-main:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.about-section-5 .section-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-section-5 .section-title {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-section-5 .section-title .cont {
  margin-top: -10px;
}
.about-section-5 .section-title .cont p {
  max-width: 759px;
  margin-top: 20px;
}

.about-wrapper-6 .about-left-items {
  max-width: 585px;
  position: relative;
}
.about-wrapper-6 .about-left-items .top-text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .about-wrapper-6 .about-left-items .top-text {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
.about-wrapper-6 .about-left-items .top-text li {
  font-weight: 500;
  border-radius: 10px;
  background: #1A1A1A;
  padding: 17px 23px;
}
.about-wrapper-6 .about-left-items .top-text li span {
  color: var(--white);
}
.about-wrapper-6 .about-left-items .skill-counter {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper-6 .about-left-items .skill-counter {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-6 .about-left-items .skill-counter {
    flex-wrap: wrap;
  }
}
.about-wrapper-6 .about-left-items .skill-counter.pl-none {
  padding-left: 0;
  border-left: none;
}
.about-wrapper-6 .about-left-items .skill-counter .content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--theme);
}
.about-wrapper-6 .about-left-items .middle-line {
  position: relative;
  height: 1px;
  width: 100%;
  background: rgba(2, 6, 10, 0.12);
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-wrapper-6 .about-left-items .middle-line.style-midle {
  background-color: rgba(255, 255, 255, 0.3);
}
.about-wrapper-6 .about-left-items .title {
  text-align: right;
  color: var(--header);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 50px;
}
.about-wrapper-6 .about-left-items .title span {
  color: #888;
}
.about-wrapper-6 .about-left-items .vec-shape {
  position: absolute;
  right: 0;
  bottom: 60px;
}
.about-wrapper-6 .about-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-6 .about-btn {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.about-section-6 {
  position: relative;
  z-index: 9;
}
.about-section-6 .circle-shape {
  position: absolute;
  bottom: -60%;
  right: 0;
  z-index: -1;
}

@media (max-width: 450px) {
  .about-wrapper-7 .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.about-wrapper-7 .top-content .theme-btn-main {
  border: 1px solid rgba(2, 6, 10, 0.1);
  color: var(--header);
}
.about-wrapper-7 .top-content .theme-btn-main.btn-2 {
  border: 1px solid var(--white);
  color: var(--white);
}
@media (max-width: 1399px) {
  .about-wrapper-7 .top-content .theme-btn-main {
    width: 115px;
    height: 115px;
  }
}
.about-wrapper-7 .top-content .theme-btn-main:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.about-wrapper-7 .sub-title {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.about-wrapper-7 .sub-title2 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.about-wrapper-7 .about-btn-content {
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 42px;
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-btn-content {
    margin-top: 0;
  }
}
.about-wrapper-7 .about-btn-content .arrow-shape {
  width: 95.854px;
  height: 50.183px;
  transform: rotate(-165deg);
  margin-right: 45px;
}
.about-wrapper-7 .about-btn-content .arrow-shape.style-arrow img {
  filter: brightness(0) invert(1);
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-btn-content .arrow-shape {
    display: none;
  }
}
.about-wrapper-7 .about-right-content {
  margin-left: 28px;
}
@media (max-width: 1399px) {
  .about-wrapper-7 .about-right-content {
    margin-left: 0;
  }
}
.about-wrapper-7 .about-right-content .section-title .sub-title-6 {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  text-transform: capitalize;
}
.about-wrapper-7 .about-right-content .section-title .title {
  color: #121212;
  font-size: 32px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-wrapper-7 .about-right-content .section-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-right-content .section-title .title {
    font-size: 25px;
    line-height: 32px;
  }
}
.about-wrapper-7 .about-right-content .section-title .text {
  color: var(--text);
  line-height: 28px;
  text-transform: capitalize;
  max-width: 860px;
}
.about-wrapper-7 .about-right-content .about-main-content {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 991px) {
  .about-wrapper-7 .about-right-content .about-main-content {
    margin-top: 30px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper-7 .about-right-content .about-main-content {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-7 .about-right-content .about-main-content {
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-right-content .about-main-content {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-right-content .about-main-content .about-info {
    display: flex;
    gap: 10px;
  }
}
.about-wrapper-7 .about-right-content .about-main-content .about-info .about-info-item {
  margin-bottom: 43px;
}
.about-wrapper-7 .about-right-content .about-main-content .about-info .about-info-item:last-child {
  margin-bottom: 0;
}
.about-wrapper-7 .about-right-content .about-main-content .about-info .about-info-item P {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-right-content .about-main-content .about-info .about-info-item P {
    font-size: 14px;
  }
}
.about-wrapper-7 .about-right-content .about-main-content .about-info .about-info-item span {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  display: inline-block;
}
.about-wrapper-7 .about-right-content .about-main-content .about-video {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about-wrapper-7 .about-right-content .about-main-content .about-video .thumb {
  position: relative;
  width: 380px;
  height: 504px;
  overflow: hidden;
  border-radius: 10px;
}
.about-wrapper-7 .about-right-content .about-main-content .about-video .thumb img {
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .about-wrapper-7 .about-right-content .about-main-content .about-video .thumb {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 450px) {
  .about-wrapper-7 .about-right-content .about-main-content .about-video .thumb {
    width: 100%;
  }
  .about-wrapper-7 .about-right-content .about-main-content .about-video .thumb img {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-7 .about-right-content .about-main-content .about-video .thumb.thumb-one {
    display: none;
  }
}
.about-wrapper-7 .about-right-content .about-main-content .about-video .thumb .neon-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.about-wrapper-7 .about-right-content .about-main-content .about-video .thumb-one {
  margin-top: 120px;
}

.about-wrapper-8 .about-image {
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-image {
    max-width: 400px;
  }
  .about-wrapper-8 .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper-8 .about-image .bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  display: none;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-image .bg-shape img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper-8 .about-image .grap-shape {
  position: absolute;
  bottom: 40px;
  left: 35px;
  display: none;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-image .grap-shape {
    display: none;
  }
}
.about-wrapper-8 .about-image .box-shape {
  position: absolute;
  right: 25px;
  top: 32%;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-image .box-shape {
    display: none;
  }
}
.about-wrapper-8 .about-image .emoji-shape {
  position: absolute;
  top: 20%;
  left: 164px;
  animation: bounce-x 7s infinite linear;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-image .emoji-shape {
    display: none;
  }
}
.about-wrapper-8 .about-content {
  margin-left: 10px;
}
@media (max-width: 1399px) {
  .about-wrapper-8 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper-8 .about-content .circle-progress-bar-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-8 .about-content .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-8 .about-content .circle-progress-bar-wrapper {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-content .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .content h3 {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
}
@media (max-width: 575px) {
  .about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 20px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  color: var(--header);
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: #DFE2FF !important;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme) !important;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: var(--bg) !important;
}
.about-wrapper-8 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}

.about-section-8 {
  position: relative;
}
.about-section-8 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .about-section-8 .left-shape {
    display: none;
  }
}

.about-wrapper-two .about-card .about-card-wrapper-two {
  border-radius: 40px;
  background: #F4F4F2;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 77px;
}
@media (max-width: 1399px) {
  .about-wrapper-two .about-card .about-card-wrapper-two {
    gap: 30px;
  }
}
.about-wrapper-two .about-card .about-card-wrapper-two .icon {
  width: 62px;
  height: 62px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-wrapper-two .about-card .about-card-wrapper-two .card-content span {
  color: var(--header);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 85px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
.about-wrapper-two .about-card .about-card-wrapper-two .card-content .text {
  color: var(--text);
  text-transform: capitalize;
}
.about-wrapper-two .about-card .about-card-wrapper-three {
  flex-direction: row;
  height: 100%;
  background: var(--theme);
  align-items: center;
  gap: 25px;
  padding: 26px 26px 26px 30px;
  border-radius: 382px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-wrapper-two .about-card .about-card-wrapper-three {
    gap: 30px;
  }
}
.about-wrapper-two .about-card .about-card-wrapper-three .card-content span {
  color: var(--header);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 85px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
.about-wrapper-two .about-card .about-card-wrapper-three .card-content .text {
  color: var(--header);
  text-transform: capitalize;
  font-size: 14px;
}
.about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap .thumb {
  position: relative;
}
.about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap .thumb img {
  border-radius: 100%;
}
@media (max-width: 1399px) {
  .about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap .thumb img {
    max-width: 100%;
  }
}
.about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap .thumb.thumb-two {
  position: relative;
}
.about-wrapper-two .about-card .about-card-wrapper-three .thumb-wrap .thumb.thumb-two .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-page-area-new .main-content .card-item {
  padding: 30px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(18, 18, 18, 0.2);
  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
}
@media (max-width: 500px) {
  .about-page-area-new .main-content .card-item {
    padding: 20px 0;
  }
}
.about-page-area-new .main-content .card-item .icon {
  margin-bottom: 30px;
  display: inline-block;
}
.about-page-area-new .main-content .card-item:last-child {
  margin-bottom: 0;
}
.about-page-area-new .main-content .card-item .title {
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--text);
  margin-bottom: 30px;
}
.about-page-area-new .main-content .card-item .text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: capitalize;
  color: var(--text);
}

.about-page-area-three .about-page-wrapper .thumb {
  position: relative;
}
@media (max-width: 1399px) {
  .about-page-area-three .about-page-wrapper .thumb img {
    width: 100%;
    height: 100%;
  }
}
.about-page-area-three .about-page-wrapper .title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 24%;
  letter-spacing: -0.01em;
  color: var(--white);
  position: absolute;
  left: 255px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .about-page-area-three .about-page-wrapper .title {
    font-size: 80px;
    left: 170px;
  }
}
@media (max-width: 1199px) {
  .about-page-area-three .about-page-wrapper .title {
    font-size: 50px;
    left: 150px;
  }
}
@media (max-width: 991px) {
  .about-page-area-three .about-page-wrapper .title {
    font-size: 50px;
    left: 100px;
  }
}
@media (max-width: 767px) {
  .about-page-area-three .about-page-wrapper .title {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .about-page-area-three .about-page-wrapper .title {
    font-size: 30px;
  }
}
.about-page-area-three .about-page-wrapper .text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--white);
  position: absolute;
  right: 255px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .about-page-area-three .about-page-wrapper .text {
    right: 170px;
  }
}
@media (max-width: 1199px) {
  .about-page-area-three .about-page-wrapper .text {
    right: 150px;
  }
}
@media (max-width: 991px) {
  .about-page-area-three .about-page-wrapper .text {
    font-size: 40px;
    right: 100px;
  }
}
@media (max-width: 767px) {
  .about-page-area-three .about-page-wrapper .text {
    display: none;
  }
}

.we-do-section .we-do-line {
  border-top: 1px solid rgba(18, 18, 18, 0.2);
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .we-do-section .we-do-line {
    display: none;
  }
}
.we-do-section .we-do-line .dot-1 {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000;
  position: absolute;
  left: 33%;
  top: -5px;
}
.we-do-section .we-do-line .dot-2 {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000;
  position: absolute;
  left: 67%;
  top: -5px;
}
.we-do-section .we-do-item {
  max-width: 340px;
}
.we-do-section .we-do-item h3 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: initial;
}
.we-do-section .we-do-item p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 15px;
}

.brand-section {
  margin: 30px;
  margin-bottom: 0;
}

.brand-box-1 {
  height: 125px;
  line-height: 125px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}
.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-box-1 .brand-img-1 img {
  opacity: 0.4;
  transition: all 0.6s ease;
  transform: translateY(0);
}
.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}
.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}
.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-slider.style-2 {
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .brand-slider.style-2 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .brand-slider.style-2 {
    margin-top: 80px;
  }
}
.brand-slider.style-2 .brand-box-1 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-slider.style-2 .brand-box-1 .brand-img-1 img {
  opacity: 0.4;
  transition: all 0.6s ease;
  transform: translateY(0);
}
.brand-slider.style-2 .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}
.brand-slider.style-2 .brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}
.brand-slider.style-2 .brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section-4 {
  margin: 0 30px 30px;
}
@media (max-width: 1399px) {
  .brand-section-4 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .brand-section-4 {
    margin-bottom: 80px;
  }
}

.brand-section-5 {
  margin: 0;
  margin-top: -125px;
}
@media (max-width: 1399px) {
  .brand-section-5 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .brand-section-5 {
    margin-top: 80px;
  }
}

.brand-section-3 {
  background-color: var(--theme);
  margin: 0 30px;
  margin-top: 30px;
  padding: 60px 30px 30px;
  border-radius: 14px;
}
.brand-section-3 .brand-box-1 {
  border: none;
  background: rgba(255, 255, 255, 0.15);
}
.brand-section-3 .brand-box-1 .brand-img-1 {
  filter: brightness(0) invert(1) !important;
}
.brand-section-3 .brand-box-1 .brand-img-1 img {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
}

.brand-wrapper-7 h6 {
  text-align: center;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-size: 20px;
}

.marquee-wrap-7 {
  overflow: hidden;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 99;
}
.marquee-wrap-7.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .marquee-wrap-7.mb-50 {
    margin-bottom: 30px;
  }
}

.marquee-content {
  display: flex;
  gap: 17px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content-two {
  display: flex;
  gap: 17px;
  animation: marquee-two 20s linear infinite;
  width: max-content;
}
.marquee-content-two:hover {
  animation-play-state: paused;
}

.brand-logo-7 {
  flex: 0 0 auto;
  border: 1px solid rgba(18, 18, 18, 0.2);
  width: 290px;
  padding: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .brand-logo-7 {
    padding: 20px;
    width: 200px;
  }
}
@media (max-width: 575px) {
  .brand-logo-7 {
    padding: 10px;
    width: 190px;
  }
}
.brand-logo-7::before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--black);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.brand-logo-7 svg path {
  fill: var(--text);
}
.brand-logo-7:hover::before {
  width: 100%;
}
.brand-logo-7:hover svg path {
  fill: var(--white);
}
.brand-logo-7.style-logo {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.brand-logo-7.style-logo::before {
  background-color: var(--white);
}
.brand-logo-7.style-logo:hover svg path {
  fill: var(--header);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-two {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.brand-area-eight .brand-wrapper-8 .sub-title {
  color: var(--text);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
  color: var(--black);
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title .no-split {
    width: 160px;
    display: inline-block;
  }
}
@media (max-width: 500px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title .no-split {
    width: 120px;
  }
}
@media (max-width: 470px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title .no-split {
    width: 90px;
  }
}
@media (max-width: 991px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 500px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 470px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 450px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8 .title {
    font-size: 16px;
    line-height: 26px;
  }
}
.brand-area-eight .brand-wrapper-8 .brand-content-8.style-2 .title {
  color: var(--text);
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
  max-width: 1410px;
  text-transform: lowercase;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8.style-2 .title {
    font-size: 47px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8.style-2 .title {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8.style-2 .title {
    font-size: 30px;
    line-height: 37px;
  }
}
@media (max-width: 450px) {
  .brand-area-eight .brand-wrapper-8 .brand-content-8.style-2 .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.contact-section-3 {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .contact-section-3 {
    margin: 0 15px;
  }
}

.contact-us-wrapper .contact-content .contact-left-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-content .contact-left-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.contact-us-wrapper .contact-content .contact-left-item .content h4 {
  color: var(--white);
  margin-bottom: 30px;
}
.contact-us-wrapper .contact-content .contact-left-item .content h6 {
  font-weight: 500;
  color: var(--white);
  opacity: 0.7;
  line-height: 162%;
  margin-bottom: 5px;
}
.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 {
  opacity: initial;
}
.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 a {
  color: var(--white);
  opacity: initial;
}
.contact-us-wrapper .contact-content .contact-left-item .content h6 a {
  color: var(--white);
}
.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color {
  font-weight: 700;
  font-size: 17px;
}
.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color a {
  color: var(--theme);
}
.contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
    border-left: none;
    padding-left: 0;
  }
}
.contact-us-wrapper .contact-content p {
  max-width: 420px;
  margin-bottom: 30px;
  color: var(--white);
  opacity: 0.8;
}
.contact-us-wrapper .contact-content .link-btn {
  color: var(--white);
  text-decoration: underline;
}
.contact-us-wrapper .contact-content .link-btn i {
  color: var(--white);
}
.contact-us-wrapper .contact-content .link-btn:hover {
  color: var(--theme);
}
.contact-us-wrapper .contact-content .link-btn:hover i {
  color: var(--theme);
}
.contact-us-wrapper .contact-box {
  margin-left: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 3px solid #F94D00;
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 60px 30px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-box {
    margin-left: 0;
    padding: 30px;
  }
}
.contact-us-wrapper .contact-box .contact-form-box .form-clt input, .contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease-in-out;
}
.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover, .contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover {
  color: var(--white);
  border: 1px solid var(--white);
}
.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover::textarea, .contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover::textarea {
  color: var(--white);
}
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
  color: rgba(255, 255, 255, 0.7);
  resize: none;
}
.contact-us-wrapper .contact-box .contact-form-box .theme-btn {
  border-radius: 8px;
  text-align: center;
  width: 100%;
}

.contact-info-box {
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 9;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .contact-info-box {
    flex-wrap: wrap;
    padding: 20px;
  }
}
@media (max-width: 1399px) {
  .contact-info-box .contact-image {
    flex-basis: 100%;
  }
}
.contact-info-box .contact-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 1399px) {
  .contact-info-box .contact-image img {
    border-radius: 8px;
  }
}
.contact-info-box .content h2 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 133%;
  text-transform: capitalize;
}
.contact-info-box .content p {
  max-width: 258px;
  margin-bottom: 20px;
}
.contact-info-box .content .view-btn {
  font-weight: 600;
  color: var(--header);
  text-decoration: underline;
}
.contact-info-box .content .view-btn i {
  margin-left: 5px;
}
.contact-info-box .content h3 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.contact-info-box .content h3 i {
  margin-right: 5px;
}
.contact-info-box .content h3 a {
  color: var(--header);
}
.contact-info-box::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 8px;
}
.contact-info-box.active::before {
  opacity: 1;
  transform: scale(1, 1);
}
.contact-info-box.active .icon {
  background-color: var(--header);
}
.contact-info-box.active .icon i {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.contact-info-box.active .content h2, .contact-info-box.active .content p {
  color: var(--white);
}
.contact-info-box.active .content .view-btn {
  color: var(--white);
}
.contact-info-box.active .content h3 i {
  color: var(--white);
}
.contact-info-box.active .content h3 a {
  color: var(--white);
}

.contact-wrapper-inner {
  border-radius: 10px;
  background: var(--white);
  padding: 80px 60px;
}
@media (max-width: 1199px) {
  .contact-wrapper-inner {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper-inner {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-inner {
    padding: 30px;
  }
}
.contact-wrapper-inner .contact-left-items p {
  margin-top: 20px;
  margin-bottom: 50px;
}
.contact-wrapper-inner .contact-left-items .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(2, 6, 10, 0.12);
}
.contact-wrapper-inner .contact-left-items .icon-item.style-2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-wrapper-inner .contact-left-items .icon-item .icon {
  width: 56px;
  height: 56x;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  border-radius: 100px;
  color: var(--white);
  font-size: 25px;
  background-color: var(--theme);
}
.contact-wrapper-inner .contact-left-items .icon-item h3 {
  font-weight: 500;
  font-size: 18px;
}
.contact-wrapper-inner .contact-left-items .icon-item h3 a {
  color: var(--header);
}
.contact-wrapper-inner .contact-left-items .icon-item h6 {
  font-weight: 500;
  line-height: 162%;
}
.contact-wrapper-inner .contact-right-items {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .contact-wrapper-inner .contact-right-items {
    margin-left: 0;
  }
}
.contact-wrapper-inner .contact-right-items .contact-form-box {
  margin-top: 30px;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt input, .contact-wrapper-inner .contact-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding: 15px 20px;
  border-radius: 4px;
  border: none;
  background: rgb(239, 237, 229);
  text-transform: capitalize;
  border: 1px solid rgba(2, 6, 10, 0.12);
  resize: none;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt input::placeholder, .contact-wrapper-inner .contact-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 80px;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt .form .single-select {
  border: none;
  background: rgb(239, 237, 229);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.contact-wrapper-inner .contact-right-items .contact-form-box .theme-btn {
  width: 100%;
  border-radius: 8px;
}

.newsletter-box-4 {
  padding: 50px 50px 50px 42px;
  backdrop-filter: blur(16px);
  border-radius: 10px;
  background-color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -100px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .newsletter-box-4 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .newsletter-box-4 {
    margin-bottom: 80px;
  }
}
.newsletter-box-4 h2 {
  color: var(--white);
  position: relative;
}
@media (max-width: 1399px) {
  .newsletter-box-4 h2 br {
    display: none;
  }
}
.newsletter-box-4 .newsletter-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .newsletter-box-4 .newsletter-content {
    flex-wrap: wrap;
  }
}
.newsletter-box-4 .newsletter-content form {
  position: relative;
}
.newsletter-box-4 .newsletter-content form input {
  width: 100%;
  border: none;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1;
  color: rgba(2, 6, 10, 0.5);
  width: 376px;
}
@media (max-width: 767px) {
  .newsletter-box-4 .newsletter-content form input {
    width: 250px;
  }
}
.newsletter-box-4 .newsletter-content form input::placeholder {
  color: rgba(2, 6, 10, 0.5);
}
.newsletter-box-4 .newsletter-content .theme-btn {
  border-radius: 8px;
  background-color: var(--header);
}
.newsletter-box-4 .newsletter-content .theme-btn::before {
  background-color: var(--white);
}
.newsletter-box-4 .newsletter-content .theme-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
}
.newsletter-box-4 .newsletter-content .theme-btn:hover {
  color: var(--header);
}

.contact-inner-section-2 {
  border-top: 1px solid rgba(2, 6, 10, 0.12);
  margin-top: 30px;
  padding-top: 30px;
}

.contact-area .contact-wrapper-7 {
  background: #121212;
  margin: 0 40px;
  position: relative;
  z-index: 5;
  padding-bottom: 120px;
  padding-top: 120px;
}
@media (max-width: 1399px) {
  .contact-area .contact-wrapper-7 {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .contact-area .contact-wrapper-7 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact-area .contact-wrapper-7 {
    margin: 0;
  }
}
.contact-area .contact-wrapper-7 .contact-shape {
  position: absolute;
  bottom: 0;
  right: 94px;
  z-index: -1;
}
.contact-area .contact-wrapper-7 .contact-shape img {
  max-width: 100%;
  height: auto !important;
}
.contact-area .contact-wrapper-7 .contact-cta-wrap {
  border-radius: 10px;
  background: var(--theme);
  padding: 40px;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .contact-area .contact-wrapper-7 .contact-cta-wrap {
    margin-right: 0;
  }
}
.contact-area .contact-wrapper-7 .contact-cta-wrap .contact-cta {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contact-area .contact-wrapper-7 .contact-cta-wrap .contact-cta {
    margin-bottom: 30px;
  }
}
.contact-area .contact-wrapper-7 .contact-cta-wrap .contact-cta:last-child {
  margin-bottom: 0;
}
.contact-area .contact-wrapper-7 .contact-cta-wrap .contact-cta .title {
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-area .contact-wrapper-7 .contact-cta-wrap .contact-cta .text {
  color: var(--white);
  letter-spacing: -0.16px;
  text-transform: capitalize;
}
.contact-area .contact-wrapper-7 .contact-form .section-title {
  margin-bottom: 70px !important;
}
.contact-area .contact-wrapper-7 .contact-form .form-group input, .contact-area .contact-wrapper-7 .contact-form .form-group textarea {
  outline: none;
  width: 100%;
  color: var(--white);
  padding: 0px 0 20px;
  border: none;
  background: transparent;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  resize: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-area .contact-wrapper-7 .contact-form .form-group input::placeholder, .contact-area .contact-wrapper-7 .contact-form .form-group textarea::placeholder {
  color: var(--white);
}
.contact-area .contact-wrapper-7 .contact-form .form-group textarea {
  margin-bottom: 0;
  height: 50px;
  min-height: 50px !important;
  padding: 60px 0 40px 0;
  overflow: hidden;
}
.contact-area .contact-wrapper-7 .contact-form .form-group .form .single-select {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--white);
  padding-bottom: 15px;
  border-radius: 0;
}
.contact-area .contact-wrapper-7 .contact-form .form-group .form .single-select .current {
  color: var(--white);
}
.contact-area .contact-wrapper-7 .contact-form .form-group .form .single-select::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-area .contact-wrapper-7 .contact-form .form-group .form .single-select .list {
  width: 100%;
  background-color: var(--bg);
}
.contact-area .contact-wrapper-7 .contact-form .form-group .form .single-select .list li {
  color: var(--header);
}

.contact-section-7 {
  position: relative;
}
.contact-section-7::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
}

.contact-wrapper-7 {
  background-color: var(--white);
  padding: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 9;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .contact-wrapper-7 {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper-7 {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-7 {
    padding: 30px;
  }
}
.contact-wrapper-7 .contact-form-area {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 40px;
}
@media (max-width: 575px) {
  .contact-wrapper-7 .contact-form-area {
    padding: 30px;
  }
}
.contact-wrapper-7 .contact-form-area h3 {
  font-size: 30px;
  margin-bottom: 25px;
}
.contact-wrapper-7 .contact-form-area .form-clt input, .contact-wrapper-7 .contact-form-area .form-clt textarea {
  outline: none;
  border: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 20px 20px;
  line-height: 1;
  color: var(--text);
}
.contact-wrapper-7 .contact-form-area .form-clt textarea {
  padding-bottom: 110px;
}
.contact-wrapper-7 .contact-form-area .form-clt .single-select {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.contact-wrapper-7 .contact-form-area .theme-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .contact-wrapper-7 .contact-form-area .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
.contact-wrapper-7 .contact-form-area .theme-btn:hover {
  background-color: var(--header);
}
.contact-wrapper-7 .contact-map {
  position: relative;
}
.contact-wrapper-7 .contact-map iframe {
  width: 100%;
  height: 630px;
  border-radius: 20px;
}
.contact-wrapper-7 .contact-info-wrapper {
  position: absolute;
  top: 0;
  left: 90px;
  right: 90px;
  max-width: 430px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border-radius: 0px 0px 8px 8px;
}
@media (max-width: 767px) {
  .contact-wrapper-7 .contact-info-wrapper {
    left: 20px;
    right: 20px;
  }
}
.contact-wrapper-7 .contact-info-wrapper .shape-left {
  position: absolute;
  top: 0;
  left: -28px;
  display: none;
}
.contact-wrapper-7 .contact-info-wrapper .shape-right {
  position: absolute;
  top: 0;
  right: -28px;
  display: none;
}
.contact-wrapper-7 .contact-info-wrapper h2 {
  color: var(--header);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-wrapper-7 .contact-info-wrapper .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(249, 77, 0, 0.3);
}
@media (max-width: 767px) {
  .contact-wrapper-7 .contact-info-wrapper .contact-info {
    flex-wrap: wrap;
  }
}
.contact-wrapper-7 .contact-info-wrapper .contact-info .content h3 {
  color: var(--header);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-wrapper-7 .contact-info-wrapper .contact-info .content h3 a {
  color: var(--header);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-wrapper-7 .contact-info-wrapper .contact-info .icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: var(--header);
  border-radius: 50%;
  color: var(--theme);
}

.contact-inner-wrapper .contact-inner-box-items {
  padding: 50px 50px;
  border-radius: 12px;
  background-color: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box {
  margin-top: 30px;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt input, .contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--white);
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-transform: capitalize;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt input::placeholder, .contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--white);
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--white);
  padding-bottom: 20px;
  border-radius: 0;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--white);
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.contact-inner-wrapper .contact-inner-box-items .contact-form-box .form-clt .form .single-select .list li {
  color: var(--header);
}
@media (max-width: 767px) {
  .contact-inner-wrapper .contact-inner-box-items {
    padding: 30px;
  }
}

.contact-inner-section {
  position: relative;
  margin: 0 30px;
  border-radius: 12px;
  z-index: 9;
}
.contact-inner-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 12px;
  opacity: 0.4;
  background: var(--header);
}

.cta-banner-4 .cta-content {
  text-align: center;
}
.cta-banner-4 .cta-content h2 {
  color: var(--white);
  font-size: 122.704px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3.408px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .cta-banner-4 .cta-content h2 {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .cta-banner-4 .cta-content h2 {
    font-size: 60px;
  }
  .cta-banner-4 .cta-content h2 img {
    display: none;
  }
}
@media (max-width: 470px) {
  .cta-banner-4 .cta-content h2 {
    font-size: 42px;
  }
}

.scrolling-wraps {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  margin-top: -14px;
}
.scrolling-wraps .comm {
  display: flex;
  align-items: center;
  animation: scrolls 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wraps .comm .cmn-textslide {
  font-size: 60px;
  font-weight: 800;
  line-height: 80px;
  text-transform: capitalize;
  color: var(--header);
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scrolling-wraps .comm .cmn-textslide img {
  margin-right: 10px;
}
.scrolling-wraps .comm .cmn-textslide.stroke-text {
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke: 1px #17012C;
  -webkit-text-fill-color: transparent;
}
.scrolling-wraps:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wraps .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wraps {
    gap: 14px;
  }
  .scrolling-wraps .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wraps .comm {
    gap: 12px;
  }
}

.marquee-section-7 {
  position: relative;
  z-index: 99;
}

.mycustom-marques.style-2 {
  border: 1px solid var(--header);
  background: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  transform: rotate(1.913deg);
  margin-top: -15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .mycustom-marques.style-2 {
    margin-top: 0;
    transform: rotate(0);
  }
}
.mycustom-marques.style-2 .scrolling-wraps .comm .cmn-textslide {
  font-size: 30px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--header);
  padding-top: 10px;
}
.mycustom-marques.style-2.bg-2 {
  background-color: var(--header);
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.mycustom-marques.style-2.bg-2 .scrolling-wrap .comm .cmn-textslide {
  color: var(--white);
  padding-top: 0;
}
.mycustom-marques.style-3 {
  background: var(--theme);
  transform: rotate(-2.772deg);
  margin-top: -52px;
  position: relative;
  z-index: 7;
}
@media (max-width: 1399px) {
  .mycustom-marques.style-3 {
    margin-top: 0;
    transform: rotate(0);
  }
}
@media (max-width: 1399px) {
  .mycustom-marques.style-3 .scrolling-wraps .comm {
    animation: scroll2 60s linear infinite;
  }
}
.mycustom-marques.style-3 .scrolling-wraps .comm .cmn-textslide {
  font-size: 30px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--header);
  padding-top: 0;
}
.mycustom-marques.style-3 .scrolling-wraps:hover .comm {
  animation-play-state: paused;
}
.mycustom-marques.style-3.bg-3 {
  background-color: var(--theme);
  border: none;
  box-shadow: none;
  margin-top: -70px;
}
@media (max-width: 1399px) {
  .mycustom-marques.style-3.bg-3 {
    margin-top: 0;
  }
}
.mycustom-marques.style-3.bg-3 .scrolling-wraps .comm .cmn-textslide {
  color: var(--white);
  padding-top: 0;
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.cta-area-three .cta-wrapper.faq-cta {
  margin-top: -230px;
}
@media (max-width: 767px) {
  .cta-area-three .cta-wrapper.faq-cta {
    margin-top: 0;
    padding-top: 50px;
  }
}
.cta-area-three .cta-wrapper .cta-content {
  border-radius: 20px;
  background: #F4F4F2;
  margin: 0 60px;
  padding: 100px 195px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1899px) {
  .cta-area-three .cta-wrapper .cta-content {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .cta-area-three .cta-wrapper .cta-content {
    padding: 20px;
    margin: 0;
  }
}
.cta-area-three .cta-wrapper .cta-content .bg-shape {
  position: absolute;
  bottom: 0;
  right: 33%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .cta-area-three .cta-wrapper .cta-content .bg-shape {
    display: none;
  }
}
.cta-area-three .cta-wrapper .cta-content .cta-content-wrap {
  display: flex;
  align-items: center;
  gap: 212px;
}
@media (max-width: 1399px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap {
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title {
  color: var(--black);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 85px;
  letter-spacing: -2.4px;
}
@media (max-width: 1600px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title {
    font-size: 50px;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 450px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title {
    font-size: 30px;
    line-height: 45px;
  }
}
.cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span {
  color: var(--header);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 85px;
  letter-spacing: -2.4px;
  position: relative;
}
@media (max-width: 1600px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span {
    font-size: 50px;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 450px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span {
    font-size: 30px;
    line-height: 45px;
  }
}
.cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span img {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .cta-area-three .cta-wrapper .cta-content .cta-content-wrap .title span img {
    display: none;
  }
}
.cta-area-three .cta-wrapper .cta-content .theme-btn-main {
  width: 120px;
  height: 120px;
  color: var(--header);
  border: 1px solid var(--header);
  font-size: 40px;
}
.cta-area-three .cta-wrapper .cta-content .theme-btn-main:hover {
  border: 1px solid var(--theme);
}

.faq-items {
  margin-top: 30px;
  text-align: center;
}
.faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 8px !important;
}
.faq-items .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  padding: 24px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
}
@media (max-width: 1399px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 20px;
    padding: 24px 16px;
  }
}
@media (max-width: 575px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 575px) {
  .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-items .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
}
.faq-items .accordion .accordion-button::after {
  display: none;
}
.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: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-items .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme);
}

.faq-wrapper-3 .faq-content .section-title h2 {
  font-size: 122px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content .section-title h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .faq-wrapper-3 .faq-content .section-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper-3 .faq-content .section-title h2 {
    font-size: 40px;
  }
}
.faq-wrapper-3 .faq-content .text {
  max-width: 420px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.faq-wrapper-3 .faq-content .link-btn {
  text-decoration: underline;
  color: var(--header);
}
.faq-wrapper-3 .faq-content .link-btn i {
  color: var(--header);
}
.faq-wrapper-3 .faq-content .link-btn:hover {
  color: var(--theme);
}
.faq-wrapper-3 .faq-content .link-btn:hover i {
  color: var(--theme);
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 8px !important;
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  padding: 24px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
}
@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 575px) {
  .faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper-3 .faq-items-3 .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: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-items-3 .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme);
}

.counter-wrapper .counter-box-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 25px;
}
.counter-wrapper .counter-box-item .counter-top-item {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 175px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-box-item .counter-top-item {
    margin-bottom: 30px;
  }
}
.counter-wrapper .counter-box-item .counter-top-item h2 {
  color: var(--white);
  font-size: 64px;
  line-height: 80%;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-box-item .counter-top-item h2 {
    font-size: 55px;
  }
}
.counter-wrapper .counter-box-item .counter-top-item .top-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.counter-wrapper .counter-box-item .counter-top-item .top-right span {
  width: 8px;
  height: 8px;
  line-height: 8px;
  border-radius: 8px;
  border: 1px solid var(--theme);
  transition: all 0.4s ease-in-out;
}
.counter-wrapper .counter-box-item h4 {
  color: rgb(255, 255, 255);
}
.counter-wrapper .counter-box-item:hover .counter-top-item .top-right span {
  background-color: var(--theme);
}
.counter-wrapper .counter-content {
  margin-left: 150px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content {
    margin-left: 0;
  }
}
.counter-wrapper .counter-content .text {
  color: rgb(255, 255, 255);
  margin-top: 20px;
  max-width: 299px;
  margin-bottom: 30px;
  opacity: 0.8;
}
.counter-wrapper .counter-content .video-circle {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  text-align: center;
  z-index: 2;
}
.counter-wrapper .counter-content .video-circle img {
  width: initial;
  height: initial;
}
.counter-wrapper .counter-content .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.counter-wrapper .counter-content .video-circle .ripple::before, .counter-wrapper .counter-content .video-circle .ripple::after {
  width: 72px;
  height: 72px;
  box-shadow: 0 0 0 0 rgba(249, 77, 0, 0.5);
}
.counter-wrapper .counter-content .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
}
.counter-wrapper .counter-content .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
.counter-wrapper .counter-content .video-circle img {
  margin-left: 0;
}

.counter-section {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .counter-section {
    margin: 0 15px;
  }
}

.feature-top-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 120px;
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .feature-top-item {
    margin-top: 100px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .feature-top-item {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.feature-top-item .section-title-area {
  align-items: start;
}
@media (max-width: 1399px) {
  .feature-top-item .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-top-item .section-title-area .section-title p {
  max-width: 299px;
  color: rgb(255, 255, 255);
  opacity: 0.8;
}
.feature-top-item .section-title-area .section-right {
  display: flex;
  align-items: center;
  gap: 205px;
}
@media (max-width: 1399px) {
  .feature-top-item .section-title-area .section-right {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-top-item .box-slider {
  margin-top: 48px;
}

.feature-icon-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1.13258px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.1212px);
  border-radius: 9.78671px;
  padding: 34px;
  text-align: center;
  position: relative;
  width: 122px;
  height: 122px;
}
.feature-icon-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: solid 1px var(--theme);
  border-left: solid 1px var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 4px;
}
.feature-icon-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: solid 1px var(--theme);
  border-right: solid 1px var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 4px;
}
.feature-icon-item:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.feature-icon-item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.feature-icon-item:hover img {
  animation: jello 1s;
}

.feature-icon-item-2 {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1399px) {
  .feature-icon-item-2 {
    flex-wrap: wrap;
  }
}
.feature-icon-item-2 .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white);
  border-radius: 4px;
}
.feature-icon-item-2 .content span {
  font-size: 24px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.feature-icon-item-2 .content p {
  max-width: 290px;
  margin-top: 10px;
}
.feature-icon-item-2:hover .icon img {
  animation: jello 1s;
}

.feature-section-2 {
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  margin-bottom: 120px;
}
@media (max-width: 1399px) {
  .feature-section-2 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .feature-section-2 {
    margin-bottom: 80px;
  }
}

.video-bg-section {
  position: relative;
  margin: 0 30px;
  border-radius: 16px;
  height: 872px;
}
@media (max-width: 1399px) {
  .video-bg-section {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .video-bg-section {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .video-bg-section {
    margin: 0 15px;
    height: 400px;
  }
}
.video-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(2, 6, 10, 0) 0%, #02060A 90.52%);
  opacity: 0.9;
  border-radius: 0px 0px 16px 16px;
}
.video-bg-section .marquee {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
  line-height: 95px;
}
@media (max-width: 991px) {
  .video-bg-section .marquee {
    line-height: 75px;
  }
}
@media (max-width: 575px) {
  .video-bg-section .marquee {
    line-height: 60px;
  }
}
.video-bg-section .marquee .text {
  font-size: 125px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .video-bg-section .marquee .text {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .video-bg-section .marquee .text {
    font-size: 80px;
  }
}

.marque-section-3 .marquee {
  background-color: transparent;
  margin-bottom: 0;
  line-height: 0px;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .marque-section-3 .marquee {
    line-height: 75px;
  }
}
@media (max-width: 575px) {
  .marque-section-3 .marquee {
    line-height: 60px;
  }
}
.marque-section-3 .marquee .text {
  font-size: 125px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .marque-section-3 .marquee .text {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .marque-section-3 .marquee .text {
    font-size: 80px;
  }
}

.feature-card-items-3 {
  display: flex;
  align-items: start;
  gap: 20px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .feature-card-items-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-card-items-3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme);
  border-radius: 10px;
  transform: scale(0.5);
  opacity: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}
.feature-card-items-3 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #EFEDE5;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .feature-card-items-3 .content h3 {
    font-size: 20px;
  }
}
.feature-card-items-3 .content p {
  margin-top: 10px;
  max-width: 485px;
}
.feature-card-items-3:hover::before {
  transform: scale(1);
  opacity: 1;
}
.feature-card-items-3:hover .icon {
  position: relative;
  z-index: 999;
}
.feature-card-items-3:hover .icon img {
  position: relative;
  z-index: 999;
  animation: jello 1s;
}
.feature-card-items-3:hover .content h3 {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.feature-card-items-3:hover .content p {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.feature-section-3 .section-title-area p {
  max-width: 533px;
}

.video-play-section {
  margin: 0 30px;
  border-radius: 20px;
  padding: 390px 0 120px;
  position: relative;
}
@media (max-width: 1399px) {
  .video-play-section {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .video-play-section {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .video-play-section {
    margin: 0 15px;
  }
}

.video-play-box {
  background-color: var(--header);
  padding: 50px 30px;
  border-radius: 10px;
  max-width: 415px;
  width: 100%;
}
@media (max-width: 575px) {
  .video-play-box {
    padding: 30px;
  }
}
.video-play-box h3 {
  font-size: 32px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .video-play-box h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .video-play-box h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .video-play-box h3 {
    font-size: 20px;
  }
}
.video-play-box .play-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .video-play-box .play-item {
    flex-wrap: wrap;
  }
}
.video-play-box .play-item .video-btn {
  width: 124px;
  height: 76px;
  line-height: 76px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 1399px) {
  .video-play-box .play-item .video-btn {
    width: 76px;
  }
}
.video-play-box .play-item h4 {
  color: var(--white);
  opacity: 0.8;
}

.video-play-box-5 {
  background-color: var(--theme);
  padding: 50px 30px;
  max-width: 461px;
  width: 100%;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  clip-path: polygon(100% 0, 100% 20%, 100% 75%, 72% 75%, 72% 100%, 0 100%, 0 0);
}
@media (max-width: 575px) {
  .video-play-box-5 {
    padding: 30px;
  }
}
.video-play-box-5 h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.video-play-box-5 h3 {
  font-size: 32px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .video-play-box-5 h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .video-play-box-5 h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .video-play-box-5 h3 {
    font-size: 20px;
  }
}
.video-play-box-5 .play-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .video-play-box-5 .play-item {
    flex-wrap: wrap;
  }
}
.video-play-box-5 .play-item .video-btn {
  width: 76px;
  height: 76px;
  line-height: 76px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--header);
  color: var(--white);
  position: relative;
  position: relative;
}
.video-play-box-5 .play-item .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #02060A;
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .video-play-box-5 .play-item .video-btn {
    width: 76px;
  }
}
.video-play-box-5 .play-item h4 {
  color: var(--white);
  text-decoration: underline;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}

.video-play-section-5 {
  padding: 390px 0 0;
  position: relative;
}
@media (max-width: 1399px) {
  .video-play-section-5 {
    padding: 100px 0 0;
  }
}
@media (max-width: 991px) {
  .video-play-section-5 {
    padding: 80px 0 0;
  }
}

.feature-bg-wrapper-5 h2 {
  text-transform: capitalize;
  color: var(--white);
  font-size: 64px;
}
@media (max-width: 1399px) {
  .feature-bg-wrapper-5 h2 {
    font-size: 40px;
  }
  .feature-bg-wrapper-5 h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .feature-bg-wrapper-5 h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .feature-bg-wrapper-5 h2 {
    font-size: 25px;
  }
}
.feature-bg-wrapper-5 .feature-item-5 {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .feature-bg-wrapper-5 .feature-item-5 {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .feature-bg-wrapper-5 .feature-item-5 {
    flex-wrap: wrap;
  }
}
.feature-bg-wrapper-5 .feature-item-5 .feature-main-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 645px;
}
.feature-bg-wrapper-5 .feature-item-5 .feature-main-box .feature-box-5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-bg-wrapper-5 .feature-item-5 .feature-main-box .feature-box-5 .feature-card-5 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px;
}
.feature-bg-wrapper-5 .feature-item-5 .feature-main-box .feature-box-5 .feature-card-5 span {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.feature-bg-wrapper-5 .feature-item-5 .feature-main-box .feature-box-5 .feature-card-5 h3 {
  color: var(--white);
}
.feature-bg-wrapper-5 .feature-item-5 .feature-right-item p {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  max-width: 300px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.feature-bg-wrapper-5 .feature-item-5 .feature-right-item .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.feature-bg-wrapper-5 .feature-item-5 .feature-right-item .info-item .content h4 {
  color: var(--white);
}
.feature-bg-wrapper-5 .feature-item-5 .feature-right-item .info-item .content span {
  color: rgb(255, 255, 255);
  opacity: 0.8;
}

.counter-bg-section-5 {
  position: relative;
  z-index: 9;
}
.counter-bg-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(81.08deg, #02060A 36.19%, rgba(2, 6, 10, 0.5) 58.58%);
  opacity: 0.8;
  z-index: -1;
}
.counter-bg-section-5 .section-title p {
  color: var(--white);
  opacity: 0.8;
  max-width: 452px;
  margin-top: 30px;
}

.counter-bg-wrapper-5 {
  margin-top: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .counter-bg-wrapper-5 {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.counter-bg-wrapper-5 .counter-content {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}
@media (max-width: 1399px) {
  .counter-bg-wrapper-5 .counter-content {
    flex-wrap: wrap;
  }
}
.counter-bg-wrapper-5 .counter-content h2 {
  font-size: 100px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .counter-bg-wrapper-5 .counter-content h2 {
    font-size: 70px;
  }
}
.counter-bg-wrapper-5 .counter-content h3 {
  color: var(--white);
  max-width: 218px;
  line-height: 156%;
  font-size: 18px;
  font-weight: 600;
}

.choose-us-wrapper-3 .choose-us-image {
  position: relative;
  border-radius: 12px;
}
.choose-us-wrapper-3 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.choose-us-wrapper-3 .choose-us-image .grap-shape {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.choose-us-wrapper-3 .choose-us-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-list {
  margin-top: 30px;
}
.choose-us-wrapper-3 .choose-us-content .choose-list.style-2 li .content h3 {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-content .choose-list.style-2 li .content p {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-content .choose-list li {
  display: flex;
  gap: 15px;
  padding: 26px 30px;
  border-bottom: 1px solid #E6EAEB;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .choose-us-content .choose-list li {
    flex-wrap: wrap;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-list li .icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .choose-us-content .choose-list li .icon {
    height: 70px;
    max-width: 70px;
    line-height: 70px;
  }
  .choose-us-wrapper-3 .choose-us-content .choose-list li .icon img {
    width: 30px;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-list li .content h3 {
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .choose-list li .content p {
  color: var(--header);
  margin-top: 10px;
  max-width: 415px;
}
.choose-us-wrapper-3 .choose-us-content .choose-list li.active {
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  border-radius: 8px;
}
.choose-us-wrapper-3 .choose-us-content .choose-list li.active .icon {
  background-color: var(--theme);
}
.choose-us-wrapper-3 .choose-us-content .choose-list li.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.choose-us-wrapper-3 .choose-us-content .choose-list li.active .content h3 {
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .choose-list li.active .content p {
  color: var(--header);
}

.work-process-box-style-4 {
  margin-top: 40px;
  background-color: #FBF9EF;
  padding: 36px 30px;
  position: relative;
  z-index: 9;
}
.work-process-box-style-4 .content {
  position: relative;
  z-index: 99;
}
.work-process-box-style-4 .content span {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  background-color: var(--header);
  font-weight: 600;
  margin-bottom: 28px;
  transition: all 0.4s ease-in-out;
}
.work-process-box-style-4 .content h3 {
  font-size: 32px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .work-process-box-style-4 .content h3 {
    font-size: 24px;
  }
}
.work-process-box-style-4 .content p {
  font-size: 18px;
  color: var(--white);
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.work-process-box-style-4 .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 100%;
  transform-origin: left top;
  transition: all 0.5s 0s ease-out;
  bottom: 0;
}
.work-process-box-style-4 .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.4;
  background: var(--black);
  z-index: 9;
}
.work-process-box-style-4 .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-process-box-style-4 .work-btn {
  display: inline-block;
  color: var(--header);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  margin-top: 175px;
  font-size: 16px;
  position: relative;
  z-index: 99;
}
.work-process-box-style-4 .work-btn i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.work-process-box-style-4 .work-btn:hover i {
  background-color: var(--theme);
  color: var(--white);
}
.work-process-box-style-4.active .content span {
  color: var(--white);
  background-color: var(--theme);
}
.work-process-box-style-4.active .content h3 {
  color: var(--white);
}
.work-process-box-style-4.active .content p {
  opacity: 1;
  visibility: visible;
}
.work-process-box-style-4.active .work-btn {
  color: var(--white) !important;
}
.work-process-box-style-4.active .work-btn i {
  background-color: var(--theme) !important;
}
.work-process-box-style-4.active .bg-image {
  transform: scale(1);
}

.award-section {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
}

.award-section-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: -70px;
}
@media (max-width: 1399px) {
  .award-section-2 {
    margin-bottom: -30px;
  }
}
@media (max-width: 991px) {
  .award-section-2 {
    margin-bottom: -40px;
  }
}

.award-wrapper .title {
  color: var(--theme);
  font-size: 122.704px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3.408px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .award-wrapper .title {
    letter-spacing: initial;
  }
}
@media (max-width: 1199px) {
  .award-wrapper .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .award-wrapper .title {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  .award-wrapper .title {
    font-size: 38px;
  }
}
.award-wrapper .award-box-items {
  background-color: var(--white);
  margin-top: 30px;
}
.award-wrapper .award-box-items .icon {
  padding: 30px;
}
.award-wrapper .award-box-items .award-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  border-top: 1px solid #DFDCD2;
  padding: 30px;
}
.award-wrapper .award-box-items:hover .icon img {
  animation: gelatine 0.6s;
}

.choose-us-section-6 {
  background-color: #1A1A1A;
  margin: 0 60px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .choose-us-section-6 {
    margin: 0 30px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 1199px) {
  .choose-us-section-6 {
    margin: 0 20px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.choose-us-wrapper-6 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-6 {
    margin-top: 30px;
  }
}
.choose-us-wrapper-6 .choose-us-box-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-6 .choose-us-box-list li {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.choose-us-wrapper-6 .choose-us-box-list li .content h2 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.choose-us-wrapper-6 .choose-us-box-list li .content h2 a {
  color: #888;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-6 .choose-us-box-list li .content h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-6 .choose-us-box-list li .content h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-6 .choose-us-box-list li .content h2 {
    font-size: 35px;
  }
}
@media (max-width: 470px) {
  .choose-us-wrapper-6 .choose-us-box-list li .content h2 {
    font-size: 30px;
  }
}
.choose-us-wrapper-6 .choose-us-box-list li .content p {
  max-width: 475px;
}
.choose-us-wrapper-6 .choose-us-box-list li .arrow-icon {
  display: inline-block;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
}
.choose-us-wrapper-6 .choose-us-box-list li:hover .content h2 a {
  color: var(--white);
}
.choose-us-wrapper-6 .choose-us-box-list li:hover .content p {
  color: var(--white);
}
.choose-us-wrapper-6 .choose-us-box-list li:hover .arrow-icon {
  background-color: var(--theme);
  color: var(--white);
}
.choose-us-wrapper-6 .choose-us-image {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-6 .choose-us-image {
    margin-left: 0;
  }
}
.choose-us-wrapper-6 .choose-us-image img {
  width: 100%;
  height: 100%;
}

.award-wrapper .award-content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .award-wrapper .award-content {
    margin-top: 30px;
  }
}
.award-wrapper .award-content ul {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding-top: 30px;
}
.award-wrapper .award-content ul li {
  display: flex;
  align-items: center;
  gap: 80px;
}
.award-wrapper .award-content .award-list-items {
  display: flex;
  align-items: center;
  gap: 85px;
}
@media (max-width: 1199px) {
  .award-wrapper .award-content .award-list-items {
    gap: 40px;
  }
}
.award-wrapper .award-content .award-list-items.bb-bottom span {
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
}
.award-wrapper .award-content .award-list-items span {
  width: 100%;
  display: inline-block;
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding: 30px 0;
}
.award-wrapper .award-content .award-list-items.style-item span {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1199px) {
  .award-wrapper .award-image img {
    width: 100%;
    height: 100%;
  }
}

.video-wrapper-6 {
  text-align: center;
  position: relative;
}
.video-wrapper-6 .video-thumb {
  position: relative;
}
.video-wrapper-6 .video-thumb img {
  width: 100%;
  height: 100%;
}
.video-wrapper-6 .video {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrapper-6 .video .video-btn {
  width: 78px;
  height: 78px;
  line-height: 78px;
  text-align: center;
  border-radius: 140px;
  background-color: var(--white);
  color: #121212;
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.video-wrapper-6 .video .video-btn:hover {
  background-color: var(--theme);
}
.video-wrapper-6 .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}
.video-wrapper-6 .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.video-wrapper-6 .text-tansprot {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(191, 247, 71, 0.8);
  font-size: 160px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  letter-spacing: -4.8px;
  text-transform: uppercase;
  color: transparent;
  margin-top: 150px;
}

.solutions-area-one .solutions-wrapper {
  position: relative;
  background: var(--white);
  z-index: 9;
}
.solutions-area-one .solutions-wrapper .section-title-two {
  margin-bottom: 75px;
}
@media (max-width: 767px) {
  .solutions-area-one .solutions-wrapper .section-title-two {
    margin-bottom: 40px;
  }
}
.solutions-area-one .solutions-wrapper .section-title-two .title-left-content {
  width: 33%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-height: 100%;
}
.solutions-area-one .solutions-wrapper .section-title-two .title-left-content .text {
  max-width: 451px;
}
@media (max-width: 991px) {
  .solutions-area-one .solutions-wrapper .section-title-two .title-left-content .text {
    display: none;
  }
}
@media (max-width: 767px) {
  .solutions-area-one .solutions-wrapper .section-title-two .title-right-content .title {
    font-size: 45px;
    line-height: 55px;
  }
}
.solutions-area-one .solutions-wrapper .section-title-two .title-right-content .title {
  max-width: 857px;
}
.solutions-area-one .solutions-wrapper .solutions-content .thumb {
  display: flex;
  align-items: end;
  gap: 133px;
  margin-top: -200px;
  margin-bottom: 57px;
}
.solutions-area-one .solutions-wrapper .solutions-content .text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: capitalize;
  color: #555555;
  max-width: 450px;
  margin-bottom: 50px;
}
.solutions-area-one .solutions-wrapper .solutions-content .left-bottom-content .award-info .info-items {
  display: flex;
  align-items: center;
  gap: 85px;
}
.solutions-area-one .solutions-wrapper .solutions-content .left-bottom-content .award-info .info-items span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #555555;
  width: 40px;
}
.solutions-area-one .solutions-wrapper .solutions-content .left-bottom-content .award-info .info-items .info-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: capitalize;
  color: #555555;
  padding-top: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
  width: 100%;
}
.solutions-area-one .solutions-wrapper .solutions-content .main-thumb {
  margin-left: 45px;
}
@media (max-width: 991px) {
  .solutions-area-one .solutions-wrapper .solutions-content .main-thumb {
    margin-left: 0;
  }
}

.solutions-wrapper1 .solutions-content .thumb {
  display: flex;
  align-items: end;
  gap: 140px;
  margin-bottom: 40px;
  margin-left: -20px;
  margin-top: 55px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .solutions-wrapper1 .solutions-content .thumb {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .solutions-wrapper1 .solutions-content .thumb {
    gap: 30px;
    flex-wrap: wrap;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .solutions-wrapper1 .solutions-content .thumb {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.solutions-wrapper1 .solutions-content .thumb .thumb1 {
  width: 100%;
  max-width: 312px;
  border-radius: 10px;
}
.solutions-wrapper1 .solutions-content .text {
  max-width: 430px;
  color: #555555;
  font-weight: 400;
  margin-bottom: 40px;
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content {
  max-width: 570px;
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content ul {
  border-top: 1px solid rgba(18, 18, 18, 0.2);
  padding-top: 30px;
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content ul li {
  display: flex;
  align-items: center;
  gap: 80px;
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content .award-list-items {
  display: flex;
  align-items: center;
  gap: 85px;
}
@media (max-width: 1199px) {
  .solutions-wrapper1 .solutions-content .left-bottom-content .award-content .award-list-items {
    gap: 40px;
  }
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content .award-list-items.bb-bottom span {
  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
}
.solutions-wrapper1 .solutions-content .left-bottom-content .award-content .award-list-items span {
  width: 100%;
  display: inline-block;
  border-top: 1px solid rgba(18, 18, 18, 0.2);
  padding: 20px 0;
}
.solutions-wrapper1 .award-right1 .section-title {
  margin-left: -30%;
  width: 860px;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .solutions-wrapper1 .award-right1 .section-title {
    width: initial;
  }
}
@media (max-width: 991px) {
  .solutions-wrapper1 .award-right1 .section-title {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .solutions-wrapper1 .award-right1 .section-title .title {
    font-size: 64px;
  }
}
@media (max-width: 1199px) {
  .solutions-wrapper1 .award-right1 .section-title .title {
    font-size: 55px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .solutions-wrapper1 .award-right1 .section-title .title {
    font-size: 42px;
    line-height: 130%;
  }
}
.solutions-wrapper1 .award-right1 .main-thumb {
  border-radius: 10px;
}
.solutions-wrapper1 .award-right1 .main-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.gallery-area-one .gallery-wrapper {
  position: relative;
  z-index: 5;
  height: auto;
}
@media (max-width: 1199px) {
  .gallery-area-one .gallery-wrapper {
    height: 450px;
  }
  .gallery-area-one .gallery-wrapper img {
    object-fit: cover;
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  .gallery-area-one .gallery-wrapper {
    height: 350px;
  }
}
.gallery-area-one .gallery-wrapper img {
  width: 100%;
}

.audience-wrapper .audience-content .ratting-image {
  margin-top: 100px;
}
.audience-wrapper .audience-content .client-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.audience-wrapper .audience-content .client-items .client-logo img {
  filter: brightness(0) opacity(0.8);
}
.audience-wrapper .audience-content .client-items .client-logo.style-2 img {
  filter: brightness(0) invert(1);
}
.audience-wrapper .audience-content .client-items .client-img {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.audience-wrapper .audience-content .client-items .client-img .star-icon .star {
  font-size: 14px;
  color: var(--theme);
}
.audience-wrapper .audience-content .client-items .client-img .star-icon span {
  color: var(--header);
  font-size: 14px;
  line-height: 1;
}
.audience-wrapper .audience-right {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .audience-wrapper .audience-right {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.audience-wrapper .audience-right .audience-img {
  max-width: 333px;
}
.audience-wrapper .audience-right .audience-img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.audience-wrapper .audience-right .counter-box-area {
  padding: 28px;
  border-radius: 0px 20px 10px 0px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 575px) {
  .audience-wrapper .audience-right .counter-box-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.audience-wrapper .audience-right .counter-box-area h2 {
  font-size: 40px;
  font-weight: 600;
}
.audience-wrapper .audience-right .counter-box-area .content {
  margin-top: 150px;
  max-width: 235px;
}
@media (max-width: 767px) {
  .audience-wrapper .audience-right .counter-box-area .content {
    margin-top: 30px;
  }
}
.audience-wrapper .audience-right .counter-box-area .content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}
.audience-wrapper .audience-right .counter-box-area .content p {
  font-size: 16px;
}

.feature-box-itemss {
  margin-top: 30px;
  background-color: #F2F5F7;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
}
.feature-box-itemss::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}
.feature-box-itemss h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 25px;
}
.feature-box-itemss h4 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
.feature-box-itemss .feature-info-box {
  background-color: var(--white);
  margin-top: 55px;
  border-radius: 7px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .feature-box-itemss .feature-info-box {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.feature-box-itemss .feature-info-box ul {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .feature-box-itemss .feature-info-box ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.feature-box-itemss .feature-info-box ul li {
  border-radius: 50px;
  border: 1px solid #E6E8EB;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 0 12px;
  height: 30px;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
}
.feature-box-itemss .feature-info-box ul li:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.feature-box-itemss .feature-info-box .icon {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 43px;
  border-radius: 50%;
  background-color: var(--header);
  text-align: center;
  color: var(--white);
}
.feature-box-itemss .feature-info-box .icon:hover {
  background-color: var(--theme);
}
.feature-box-itemss:hover h3, .feature-box-itemss:hover h4, .feature-box-itemss:hover p {
  color: var(--white);
}
.feature-box-itemss:hover h4 a {
  color: var(--white);
}
.feature-box-itemss:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.audience-section {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding-top: 120px;
}
@media (max-width: 1399px) {
  .audience-section {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .audience-section {
    padding-top: 80px;
  }
}
.audience-section.style-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.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;
}
.swiper-dot.dark-style .swiper-pagination-bullet {
  background-color: var(--white);
}
@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;
}

.ripple-2 {
  position: relative;
}
.ripple-2::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.ripple-2::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.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(--white);
  color: var(--header);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", 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(--header);
  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;
}

/* 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, 119, 34) 50%, rgb(0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.text_invert-2 > div.style-2 {
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(255, 119, 34) 50%);
}

.our-clint {
  display: flex;
  align-items: center;
  gap: 40px;
}
.our-clint ul {
  display: flex;
  align-items: center;
}
.our-clint ul li {
  margin-left: -25px;
}
.our-clint ul li img {
  border: 2px solid var(--black);
  border-radius: 100%;
}
.our-clint .text {
  color: var(--text);
  letter-spacing: -0.16px;
  text-transform: capitalize;
  max-width: 116px;
}

.color-header {
  color: var(--header);
}

.white-border {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.menu-thumb {
  position: inherit !important;
}

.hero-2 {
  padding: 200px 0 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 170px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 150px 0 80px;
  }
}
.hero-2 .hero-content {
  margin-bottom: 120px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content {
    margin-bottom: 30px;
  }
}
.hero-2 .hero-content h1 {
  color: var(--white);
}
.hero-2 .hero-content p {
  color: #FFFFFF;
  opacity: 0.7;
  max-width: 470px;
  margin-top: 20px;
}
.hero-2 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}
.hero-2 .hero-imagee {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.hero-2 .hero-imagee img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.hero-2 .hero-box {
  background-color: var(--theme);
  border-radius: 10px;
  padding: 30px;
  position: absolute;
  right: 265px;
  top: 400px;
  z-index: 999;
}
@media (max-width: 1399px) {
  .hero-2 .hero-box {
    display: none;
  }
}
.hero-2 .hero-box .top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-2 .hero-box .top-item .group-image-item {
  display: flex;
  align-items: center;
}
.hero-2 .hero-box .top-item .group-image-item .group-image img {
  margin-left: 0;
  width: initial;
  height: initial;
  border: 2px solid var(--white);
  border-radius: 100px;
}
.hero-2 .hero-box .top-item .group-image-item .group-image.style-2 {
  margin-left: -15px;
}
.hero-2 .hero-box .top-item .group-image-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -15px;
  background-color: var(--header);
}
.hero-2 .hero-box .top-item h2 {
  color: var(--white);
}
.hero-2 .hero-box h3 {
  max-width: 346px;
  color: var(--white);
  margin-bottom: 40px;
}
.hero-2 .hero-box .theme-btn {
  background-color: var(--header);
}
.hero-2 .hero-box .theme-btn::before {
  background-color: var(--white);
}
.hero-2 .hero-box .theme-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
}
.hero-2 .hero-box .theme-btn:hover {
  color: var(--header);
}

.hero-3 {
  background-color: var(--bg);
  margin: 0 30px;
  border-radius: 16px;
  padding: 35px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  margin-top: 88px;
}
@media (max-width: 1399px) {
  .hero-3 {
    margin: 0 15px;
    padding-top: 160px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding-bottom: 0;
    padding-top: 130px;
  }
}
.hero-3 .line-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
}
.hero-3 .line-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-content {
  margin-bottom: 120px;
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.hero-3 .hero-content h1 {
  font-size: 70px;
  font-weight: 600;
  color: var(--header);
  line-height: 108.571%;
  letter-spacing: -2.075px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
    line-height: 130% !important;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 33px;
  }
}
@media (max-width: 470px) {
  .hero-3 .hero-content h1 {
    font-size: 33px;
  }
}
.hero-3 .hero-content p {
  font-size: 18px;
  line-height: 155.556%;
  color: var(--header);
  max-width: 630px;
}
@media (max-width: 767px) {
  .hero-3 .hero-content p {
    font-size: 16px;
  }
}
.hero-3 .hero-content .hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hero-3 .hero-content .hero-btn {
    margin-top: 25px;
    flex-wrap: wrap;
  }
}
.hero-3 .hero-content .hero-btn h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}
.hero-3 .hero-content .hero-btn h2 i {
  font-size: 18px;
  margin-right: 3px;
}
.hero-3 .hero-content .hero-btn h2 a {
  color: var(--header);
}
.hero-3 .hero-content .hero-btn h2:hover {
  color: var(--theme);
}
.hero-3 .hero-content .hero-btn h2:hover a {
  color: var(--theme);
}
.hero-3 .hero-image {
  position: relative;
  text-align: center;
}
.hero-3 .hero-image img {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image img {
    margin-left: 0;
    width: 100%;
  }
}
.hero-3 .hero-image .video-circle {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 50%;
  background-color: var(--header);
  text-align: center;
  z-index: 2;
  position: absolute;
  right: -40px;
  top: 20%;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image .video-circle {
    display: none;
  }
}
.hero-3 .hero-image .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.hero-3 .hero-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
}
.hero-3 .hero-image .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
.hero-3 .hero-image .video-circle img {
  margin-left: 0;
}
.hero-3 .hero-image .box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  position: absolute;
  bottom: 60px;
  margin-left: -50px;
  text-align: left;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image .box {
    display: none;
  }
}
.hero-3 .hero-image .box .group-image-item {
  display: flex;
  align-items: center;
}
.hero-3 .hero-image .box .group-image-item .group-image img {
  margin-left: 0;
  width: initial;
  height: initial;
  border: 2px solid var(--white);
  border-radius: 100px;
}
.hero-3 .hero-image .box .group-image-item .group-image.style-2 {
  margin-left: -15px;
}
.hero-3 .hero-image .box .group-image-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -15px;
  background-color: var(--header);
}
.hero-3 .hero-image .box h3 {
  color: var(--white);
  margin-top: 10px;
  font-size: 20px;
}
.hero-3 .hero-image::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  content: "";
  width: 562px;
  height: 442px;
  box-shadow: 8px 16px 30px rgba(31, 41, 55, 0.07);
  background-color: var(--white);
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image::before {
    display: none;
  }
}

.hero-4 {
  padding: 180px 0 0;
}
@media (max-width: 991px) {
  .hero-4 {
    padding: 140px 0 0;
  }
}
.hero-4 .hero-content h1 {
  color: var(--header);
  font-size: 122.704px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3.408px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    letter-spacing: initial;
  }
  .hero-4 .hero-content h1 br {
    display: none;
  }
}
@media (max-width: 1399px) {
  .hero-4 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 470px) {
  .hero-4 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-4 .hero-content h1 .text {
  color: var(--theme);
  opacity: 0.87;
  font-size: 136px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 .text {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 img {
    display: none;
  }
}
.hero-4 .hero-content .hero-bottom {
  margin-top: 60px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-bottom {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
    align-items: center;
  }
}
.hero-4 .hero-content .hero-bottom .social-icon {
  gap: 6px;
}
.hero-4 .hero-content .hero-bottom .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
}
.hero-4 .hero-content .hero-bottom .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.hero-4 .hero-content .hero-bottom .content {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--text);
  max-width: 430px;
  padding-top: 30px;
}
.hero-4 .hero-content .hero-bottom .content.style-4 {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-bottom .content {
    padding-top: 20px;
  }
}
.hero-4 .hero-content .hero-bottom .content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 400px;
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-bottom .content p {
    font-size: 16px;
  }
}
.hero-4 .hero-image {
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-image {
    height: 550px;
  }
  .hero-4 .hero-image img {
    object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-image {
    margin-top: 80px;
    height: 450px;
  }
  .hero-4 .hero-image img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-image {
    margin-top: 50px;
    height: 350px;
  }
  .hero-4 .hero-image img {
    object-fit: cover;
  }
}
.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-5 {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-5 {
    padding: 170px 0 0px;
  }
}
@media (max-width: 991px) {
  .hero-5 {
    padding: 150px 0 0px;
  }
}
.hero-5 .hero-content .sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  background: var(--white);
  padding: 6px 9px;
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
}
.hero-5 .hero-content .sub img {
  line-height: 1;
  margin-right: 5px;
  margin-top: -3px;
}
.hero-5 .hero-content h1 {
  font-size: 69px;
  margin-bottom: 30px;
  line-height: 109%;
}
@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 35px;
  }
}
.hero-5 .hero-content h1 span {
  color: rgb(249, 77, 0);
}
.hero-5 .hero-content h1 b {
  color: rgb(255, 194, 167);
  font-weight: 600;
}
.hero-5 .hero-content p {
  max-width: 464px;
}
.hero-5 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hero-5 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
.hero-5 .hero-content .hero-button .theme-btn.style-btn {
  background-color: var(--white);
  color: var(--header);
}
.hero-5 .hero-content .hero-button .theme-btn.style-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.hero-5 .hero-content .hero-button .theme-btn.style-btn:after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.hero-5 .hero-content .hero-button .theme-btn.style-btn:hover {
  color: var(--white);
}
.hero-5 .hero-content.hero-dark .sub {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.hero-5 .hero-content.hero-dark h1 {
  color: var(--white);
}
.hero-5 .hero-content.hero-dark p {
  color: var(--white);
}
.hero-5 .hero-image-5 {
  margin-right: -310px;
  margin-top: 88px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .hero-5 .hero-image-5 {
    margin-right: 0;
    margin-top: 0;
  }
}
.hero-5 .hero-image-5 img {
  width: 100%;
  height: 100%;
}

.hero-6 {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-6 {
    padding-top: 150px;
    text-align: center;
  }
}
.hero-6 .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 130px;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 1399px) {
  .hero-6 .line-shape {
    display: none;
  }
}
.hero-6 .hero-info {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 150px;
  bottom: 150px;
}
@media (max-width: 1399px) {
  .hero-6 .hero-info {
    right: 80px;
    bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-6 .hero-info {
    display: none;
  }
}
.hero-6 .hero-info span {
  color: var(--header);
}
.hero-6 .vec-shape {
  position: absolute;
  right: 16%;
  bottom: 28%;
}
@media (max-width: 1399px) {
  .hero-6 .vec-shape {
    display: none;
  }
}
.hero-6 .container {
  max-width: 1585px;
}
@media (max-width: 1199px) {
  .hero-6 .hero-content {
    text-align: center;
  }
}
.hero-6 .hero-content p {
  font-size: 18px;
  color: #888;
  font-weight: 500;
  letter-spacing: 5.4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .hero-6 .hero-content p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.hero-6 .hero-content h1 {
  line-height: 80%;
  margin-bottom: 40px;
  font-size: 80px;
}
@media (max-width: 1600px) {
  .hero-6 .hero-content h1 {
    font-size: 80px;
    line-height: 95%;
  }
}
@media (max-width: 1399px) {
  .hero-6 .hero-content h1 {
    font-size: 65px;
    line-height: 115%;
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .hero-6 .hero-content h1 {
    margin-bottom: 30px;
    font-size: 100px;
    line-height: 80%;
  }
}
@media (max-width: 767px) {
  .hero-6 .hero-content h1 {
    font-size: 70px;
    line-height: 110%;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content h1 {
    font-size: 68px;
    line-height: 110%;
    margin-bottom: 25px;
  }
}
@media (max-width: 470px) {
  .hero-6 .hero-content h1 {
    font-size: 48px;
    line-height: 110%;
    margin-bottom: 20px;
  }
}
.hero-6 .hero-content h1 b {
  color: var(--theme);
}
.hero-6 .hero-content h1 strong, .hero-6 .hero-content h1 span {
  font-size: 65px;
  color: var(--theme);
}
@media (max-width: 767px) {
  .hero-6 .hero-content h1 strong, .hero-6 .hero-content h1 span {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content h1 strong, .hero-6 .hero-content h1 span {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  .hero-6 .hero-content h1 strong, .hero-6 .hero-content h1 span {
    font-size: 40px;
  }
}
.hero-6 .hero-content .social-link {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .hero-6 .hero-content .social-link {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-6 .hero-content .social-link {
    margin-top: 50px;
    justify-content: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .hero-6 .hero-content .social-link {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hero-6 .hero-content .social-link {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content .social-link {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.hero-6 .hero-content .social-link a {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.hero-6 .hero-content .social-link a:hover {
  color: var(--theme);
}
.hero-6 .hero-image {
  margin-left: -150px;
  margin-top: 100px;
}
@media (max-width: 1600px) {
  .hero-6 .hero-image {
    max-width: 550px;
  }
  .hero-6 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .hero-6 .hero-image {
    max-width: 440px;
  }
  .hero-6 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .hero-6 .hero-image {
    margin-left: 0;
    max-width: 600px;
    margin: 30px auto 0;
  }
  .hero-6 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-6 .content .video-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .hero-6 .content .video-btn {
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-6 .content .video-btn {
    margin-top: 50px;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .hero-6 .content .video-btn {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .hero-6 .content .video-btn {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-6 .content .video-btn {
    margin-top: 20px;
  }
}
.hero-6 .content .video-btn span {
  margin-bottom: 0;
}
.hero-6 .content .video-btn .icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 1px solid rgba(102, 102, 102, 0.16);
  border-radius: 100px;
  border: 1px solid rgba(193, 193, 193, 0.16);
  background: #171914;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-6 .content .video-btn .icon i {
  color: var(--theme);
}
.hero-6 .content .video-btn .text {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--header);
}
.hero-6 .content p {
  max-width: 390px;
  color: var(--header);
}
@media (max-width: 1199px) {
  .hero-6 .content p {
    margin: 0 auto;
  }
}

.hero-area-one .tp-letter-span {
  display: inline-block;
}
.hero-area-one .hero-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 220px 0 80px 0;
}
@media (max-width: 1399px) {
  .hero-area-one .hero-wrapper {
    padding: 170px 0 100px 0;
  }
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper {
    padding: 150px 0 100px 0;
  }
}
.hero-area-one .hero-wrapper .content__img {
  position: absolute;
  width: 300px;
  height: 400px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-area-one .hero-wrapper .content__img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-repeat: no-repeat;
}
.hero-area-one .hero-wrapper .hero-line-one {
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1899px) {
  .hero-area-one .hero-wrapper .hero-line-one {
    left: 20%;
  }
}
.hero-area-one .hero-wrapper .hero-line-two {
  position: absolute;
  bottom: 0;
  right: 200px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1899px) {
  .hero-area-one .hero-wrapper .hero-line-two {
    right: 20%;
  }
}
.hero-area-one .hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.hero-area-one .hero-wrapper .container {
  position: relative;
}
.hero-area-one .hero-wrapper .hero-section-title {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-area-one .hero-wrapper .hero-section-title {
    margin-bottom: 0;
  }
}
.hero-area-one .hero-wrapper .hero-section-title h1 {
  color: var(--white);
  font-size: 170px;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .hero-area-one .hero-wrapper .hero-section-title h1 {
    font-size: 110px;
  }
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper .hero-section-title h1 {
    margin-bottom: 0 !important;
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .hero-area-one .hero-wrapper .hero-section-title h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-area-one .hero-wrapper .hero-section-title h1 {
    font-size: 45px;
  }
}
.hero-area-one .hero-wrapper .hero-section-title .title {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 140px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -6px;
  text-transform: uppercase;
  text-align: center;
  line-height: 90px;
}
@media (max-width: 1399px) {
  .hero-area-one .hero-wrapper .hero-section-title .title {
    font-size: 90px;
    line-height: 80%;
    letter-spacing: 0;
  }
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper .hero-section-title .title {
    font-size: 65px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .hero-area-one .hero-wrapper .hero-section-title .title {
    font-size: 45px;
    line-height: 85px;
  }
}
@media (max-width: 575px) {
  .hero-area-one .hero-wrapper .hero-section-title .title {
    font-size: 34px;
    line-height: 53px;
  }
}
.hero-area-one .hero-wrapper .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper .hero-content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-area-one .hero-wrapper .hero-content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.hero-area-one .hero-wrapper .hero-content .title-two {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 170px;
  font-style: normal;
  font-weight: 400;
  line-height: 180px;
  letter-spacing: -6px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1399px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 90px;
    line-height: 130%;
  }
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 105px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 80px;
    line-height: 85px;
  }
}
@media (max-width: 500px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 70px;
    line-height: 75px;
  }
}
@media (max-width: 470px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (max-width: 450px) {
  .hero-area-one .hero-wrapper .hero-content .title-two {
    font-size: 47px;
    line-height: 53px;
  }
}
.hero-area-one .hero-wrapper .hero-content .text {
  color: var(--text);
  max-width: 300px;
  letter-spacing: -0.16px;
  text-transform: capitalize;
  margin-left: -26px;
}
@media (max-width: 1600px) {
  .hero-area-one .hero-wrapper .hero-content .text {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .hero-area-one .hero-wrapper .hero-content .text {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .hero-area-one .hero-wrapper .hero-content .our-clint {
    gap: 3px;
  }
}
@media (max-width: 767px) {
  .hero-area-one .hero-wrapper .hero-content .our-clint {
    display: none;
  }
}
.hero-area-one .hero-wrapper .hero-content .our-clint .text {
  max-width: 116px;
}

.hero-7 {
  padding: 130px 0 0;
  position: relative;
}
.hero-7 .mike-shape {
  position: absolute;
  top: 20%;
  left: 20px;
}
.hero-7 .mike-shape img {
  animation: bounce-x 7s infinite linear;
}
.hero-7 .arrow-shape {
  position: absolute;
  bottom: 5%;
  left: 3%;
  animation: moving 7s infinite linear;
}
.hero-7 .energy-shape {
  position: absolute;
  right: 40px;
  top: 15%;
}
.hero-7 .arrow-shape-2 {
  position: absolute;
  top: 50%;
  right: 30px;
  animation: moving 7s infinite linear;
  display: none;
}
.hero-7 .rocket-shape {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 7;
}
.hero-7 .container-fluid {
  padding: 0 141px;
}
@media (max-width: 1600px) {
  .hero-7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-7 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-7 .container-fluid {
    padding: 0 30px;
  }
}
.hero-7 .hero-title {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .hero-7 .hero-title img {
    width: 100%;
    height: 100%;
  }
}
.hero-7 .hero-content {
  position: relative;
  z-index: 9;
}
.hero-7 .hero-content span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
}
.hero-7 .hero-content h1 {
  margin-bottom: 20px;
  line-height: 128%;
}
.hero-7 .hero-content p {
  max-width: 510px;
}
.hero-7 .hero-image {
  position: relative;
  z-index: 8;
  margin-left: -146px;
  z-index: 9;
}
.hero-7 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  width: 600px;
  height: 600px;
  border-radius: 100%;
  top: 56%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-7 .hero-image::before {
    display: none;
  }
}
@media (max-width: 1399px) {
  .hero-7 .hero-image {
    margin-left: 0;
  }
  .hero-7 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-7 .hero-image .bg-shape {
  position: absolute;
  top: 70%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: none;
}
.hero-7 .video-btn {
  position: relative;
  z-index: 9;
  display: inline-block;
  width: 151px;
  height: 151px;
  border: 0.5px solid var(--header);
  border-radius: 50%;
  text-align: center;
  line-height: 151px;
  font-size: 24px;
  color: var(--header);
}
.hero-7 .video-btn img {
  animation: cir36 10s linear infinite;
  position: absolute;
  top: 12px;
  left: 10px;
  filter: brightness(0) opacity(0.8);
}
@media (max-width: 1199px) {
  .hero-7 .video-right {
    margin-bottom: 60px;
  }
}
.hero-7 .video-right p {
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  line-height: 175%;
  margin-top: 30px;
}
.hero-7 .video-right .client-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.hero-7 .video-right .client-items .client-logo img {
  filter: brightness(0) opacity(0.8);
}
.hero-7 .video-right .client-items .client-logo.style-2 img {
  filter: brightness(0) invert(1);
}
.hero-7 .video-right .client-items .client-img {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-7 .video-right .client-items .client-img .star-icon .star {
  font-size: 14px;
  color: var(--theme);
}
.hero-7 .video-right .client-items .client-img .star-icon span {
  color: var(--header);
  font-size: 14px;
  line-height: 1;
}

.news-card-items {
  margin-top: 30px;
  border-radius: 10px;
}
.news-card-items .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.news-card-items .news-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);
}
.news-card-items .news-top-content {
  background-color: var(--white);
  padding-top: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.news-card-items .news-top-content .news-content {
  padding: 0 24px 30px;
}
.news-card-items .news-top-content .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-top-content .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items .news-top-content .news-content span {
  color: #02060A;
  font-weight: 500;
  display: inline-block;
  margin-top: 40px;
}
.news-card-items .news-top-content .read-button {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  padding: 15px 30px;
}
.news-card-items:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.news-card-items:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-card-items-2 {
  margin-top: 30px;
  border-radius: 10px;
}
.news-card-items-2.style-2 {
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.news-card-items-2.style-2 .news-image {
  height: 248px;
}
.news-card-items-2.style-2 .news-image img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0px;
}
.news-card-items-2.style-2 .news-top-content {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0px;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .news-card-items-2.style-2 .news-top-content {
    padding-top: 15px;
  }
}
.news-card-items-2.style-2 .news-top-content .news-content span {
  margin-top: 40px;
  display: inline-block;
}
.news-card-items-2 .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.news-card-items-2 .news-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);
}
.news-card-items-2 .news-top-content {
  background-color: var(--white);
  padding-top: 23px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.news-card-items-2 .news-top-content .news-content {
  padding: 0 24px 30px;
}
.news-card-items-2 .news-top-content .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-2 .news-top-content .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-2 .news-top-content .news-content span {
  color: #02060A;
  font-weight: 500;
  display: inline-block;
  margin-top: 30px;
}
.news-card-items-2 .news-top-content .read-button {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  padding: 15px 30px;
}
.news-card-items-2:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.news-card-items-2:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-wrapper {
  margin-top: 48px;
  margin-left: -70%;
  margin-right: -30%;
}
@media (max-width: 1399px) {
  .news-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
  }
}
.news-wrapper .news-card-items-3 {
  border-radius: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .news-wrapper .news-card-items-3 {
    flex-wrap: wrap;
  }
}
.news-wrapper .news-card-items-3 .news-image {
  position: relative;
  overflow: hidden;
  height: 313px;
}
@media (max-width: 1399px) {
  .news-wrapper .news-card-items-3 .news-image {
    height: initial;
    flex-basis: 100%;
  }
}
.news-wrapper .news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: inline-block;
  transition: all 500ms ease;
}
@media (max-width: 1399px) {
  .news-wrapper .news-card-items-3 .news-image img {
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
  }
}
.news-wrapper .news-card-items-3 .news-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);
}
.news-wrapper .news-card-items-3 .news-content {
  padding: 47px 30px;
  background-color: var(--white);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 1399px) {
  .news-wrapper .news-card-items-3 .news-content {
    padding: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
  }
}
.news-wrapper .news-card-items-3 .news-content .list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.news-wrapper .news-card-items-3 .news-content .list span {
  color: var(--header);
}
.news-wrapper .news-card-items-3 .news-content .list span.style-2 {
  color: var(--theme);
}
.news-wrapper .news-card-items-3 .news-content h3 {
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .news-wrapper .news-card-items-3 .news-content h3 br {
    display: none;
  }
}
.news-wrapper .news-card-items-3 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper .news-card-items-3 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-wrapper .news-card-items-3 .news-content .theme-btn {
  background: #EFEDE5;
  color: var(--theme);
}
.news-wrapper .news-card-items-3 .news-content .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.news-wrapper .news-card-items-3 .news-content .theme-btn::after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.news-wrapper .news-card-items-3 .news-content .theme-btn:hover {
  color: var(--white);
}
.news-wrapper .news-card-items-3:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.news-wrapper .news-card-items-3:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 30px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4.style-2 {
  border-bottom: none;
  margin-bottom: 0;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
  overflow: hidden;
  border-radius: 12px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 12px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
  margin-right: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h2 {
    font-size: 25px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h2 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
  margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 10px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 24px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--white);
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    padding: 30px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text .icon {
  float: right;
  margin-top: -30px;
  color: var(--theme);
  font-size: 40px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--white);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}
@media (max-width: 1399px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--white);
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 50px 30px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #e5e5e5;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--white);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg);
  border: none;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 5px;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .gt-main-sideber .gt-single-sideber-widget {
    padding: 25px;
  }
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: var(--bg);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 6px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 600;
  font-size: 22px;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--bg);
  padding: 22px 25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h4 {
    font-size: 16px;
  }
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h4 a:hover {
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--text);
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--bg);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-card-items-5 {
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .news-card-items-5 {
    flex-wrap: wrap;
  }
}
.news-card-items-5 .news-image {
  position: relative;
  overflow: hidden;
  height: 313px;
}
@media (max-width: 1399px) {
  .news-card-items-5 .news-image {
    flex-basis: 100%;
  }
}
.news-card-items-5 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: inline-block;
  transition: all 500ms ease;
}
@media (max-width: 1399px) {
  .news-card-items-5 .news-image img {
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    object-fit: cover;
  }
}
.news-card-items-5 .news-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);
}
.news-card-items-5 .news-content {
  padding: 47px 30px;
  background-color: var(--white);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 1399px) {
  .news-card-items-5 .news-content {
    padding: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
  }
}
.news-card-items-5 .news-content span {
  color: #02060A;
  opacity: 0.7;
}
.news-card-items-5 .news-content h3 {
  margin-bottom: 26px;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .news-card-items-5 .news-content h3 br {
    display: none;
  }
}
.news-card-items-5 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-5 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-5 .news-content .theme-btn {
  background: #EFEDE5;
  color: var(--theme);
}
.news-card-items-5 .news-content .theme-btn::before {
  background-color: var(--theme);
}
.news-card-items-5 .news-content .theme-btn::after {
  background-color: rgba(249, 77, 0, 0.3);
}
.news-card-items-5 .news-content .theme-btn:hover {
  color: var(--white);
}
.news-card-items-5:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.news-card-items-5:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-section-5 {
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding-top: 120px;
}
@media (max-width: 1399px) {
  .news-section-5 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .news-section-5 {
    padding-top: 80px;
  }
}

.news-left-items {
  margin-top: 30px;
  border: 1px solid #DFDCD2;
  padding: 15px;
  border-radius: 10px;
}
.news-left-items.styles-2 {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.news-left-items .thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
  border-radius: 10px;
}
.news-left-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}
.news-left-items .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);
}
.news-left-items .content {
  padding: 20px 15px 15px;
}
.news-left-items .content.style-2 li {
  color: var(--white);
}
.news-left-items .content.style-2 h3 a {
  color: var(--white);
}
.news-left-items .content.style-2 .link-btn {
  color: var(--white);
}
.news-left-items .content.style-2 .link-btn i {
  color: var(--white);
}
.news-left-items .content.style-2 .link-btn:hover {
  color: var(--theme);
}
.news-left-items .content.style-2 .link-btn:hover i {
  color: var(--white);
}
.news-left-items .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.news-left-items .content ul li {
  color: var(--header);
}
.news-left-items .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  background-color: var(--white);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}
.news-left-items .content ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-left-items .content h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-left-items .content h3 {
    font-size: 24px;
  }
}
.news-left-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-left-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
  color: var(--theme);
}
.news-left-items .content .link-btn {
  color: var(--header);
  margin-top: 20px;
}
.news-left-items .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
  color: var(--header);
}
.news-left-items .content .link-btn:hover {
  color: var(--theme);
}
.news-left-items .content .link-btn:hover i {
  color: var(--theme);
}
.news-left-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-left-items:hover .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);
}

.news-right-list {
  margin-top: 30px;
}
.news-right-list.styles-2 .news-box-style-4 {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.news-right-list li:not(:last-child) {
  margin-bottom: 30px;
}
.news-right-list li .news-box-style-4 {
  border: 1px solid #DFDCD2;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 {
    gap: 18px;
  }
}
.news-right-list li .news-box-style-4 .thumb {
  max-width: 293px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
  height: 253px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 227px;
  }
}
@media (max-width: 1199px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 222px;
  }
}
@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 200px;
  }
}
.news-right-list li .news-box-style-4 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  object-fit: cover;
  border-radius: 10px;
}
.news-right-list li .news-box-style-4 .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);
}
.news-right-list li .news-box-style-4 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.news-right-list li .news-box-style-4 .content ul li {
  color: var(--header);
}
.news-right-list li .news-box-style-4 .content ul li:not(:last-child) {
  margin-bottom: 0;
}
.news-right-list li .news-box-style-4 .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  background-color: var(--white);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}
.news-right-list li .news-box-style-4 .content ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 .content h3 {
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  .news-right-list li .news-box-style-4 .content h3 {
    font-size: 18px;
  }
}
.news-right-list li .news-box-style-4 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.news-right-list li .news-box-style-4 .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
  color: var(--theme);
}
.news-right-list li .news-box-style-4 .content .link-btn {
  color: var(--header);
  margin-top: 20px;
}
.news-right-list li .news-box-style-4 .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
  color: var(--header);
}
.news-right-list li .news-box-style-4 .content .link-btn:hover {
  color: var(--theme);
}
.news-right-list li .news-box-style-4 .content .link-btn:hover i {
  color: var(--theme);
}
.news-right-list li .news-box-style-4 .content.style-2 ul li {
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 ul li a {
  color: var(--header);
  background-color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 h3 {
  font-size: 24px;
  font-weight: 600;
}
.news-right-list li .news-box-style-4 .content.style-2 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
  color: var(--theme);
}
.news-right-list li .news-box-style-4 .content.style-2 .link-btn {
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 .link-btn i {
  color: var(--white);
}
.news-right-list li .news-box-style-4 .content.style-2 .link-btn:hover {
  color: var(--theme);
}
.news-right-list li .news-box-style-4 .content.style-2 .link-btn:hover i {
  color: var(--theme);
}
.news-right-list li .news-box-style-4:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-right-list li .news-box-style-4:hover .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);
}

.news-main-box-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 25px;
  background-color: #060606;
  padding-left: 25px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .news-main-box-items {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .news-main-box-items .news-content {
    margin-bottom: 30px;
  }
}
.news-main-box-items .news-content h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .news-main-box-items .news-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .news-main-box-items .news-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .news-main-box-items .news-content h3 {
    font-size: 22px;
  }
}
.news-main-box-items .news-content h3 a {
  color: var(--white);
}
.news-main-box-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-main-box-items .news-content ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1199px) {
  .news-main-box-items .news-content ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-main-box-items .news-content ul li .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-main-box-items .news-content ul li .client-info .client-content .name {
  font-size: 16px;
  font-weight: 500;
}
.news-main-box-items .news-content ul li .client-info .client-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.news-main-box-items .news-content ul li span {
  border-radius: 4px;
  background: var(--theme);
  padding: 5px 10px;
  line-height: 1;
  color: var(--white);
  margin-right: 10px;
  line-height: 1;
}
.news-main-box-items .news-content ul li span.color-2 {
  border-radius: 4px;
  background: var(--bg);
  color: var(--theme);
}
.news-main-box-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.news-box-items-7 {
  margin-top: 30px;
  padding: 16px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}
.news-box-items-7 .news-image {
  border-radius: 12px;
  overflow: hidden;
}
.news-box-items-7 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
}
.news-box-items-7 .news-content {
  padding: 25px 14px;
}
.news-box-items-7 .news-content .post-cat {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .news-box-items-7 .news-content .post-cat {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-box-items-7 .news-content .post-cat li {
  font-size: 14px;
  font-weight: 400;
}
.news-box-items-7 .news-content .post-cat li svg {
  margin-right: 5px;
}
.news-box-items-7 .news-content h3 {
  line-height: 140%;
  font-size: 18px;
  font-weight: 600;
}
.news-box-items-7 .news-content h3 a:hover {
  color: var(--theme);
}
.news-box-items-7 .news-content .news-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.news-box-items-7 .news-content .news-btn .link-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #535353;
  text-transform: capitalize;
}
.news-box-items-7 .news-content .news-btn .link-btn:hover {
  color: var(--theme);
}
.news-box-items-7 .news-content .news-btn img {
  display: none;
}
.news-box-items-7:hover .news-image img {
  transform: scale(1.1);
}

.news-section-7 {
  position: relative;
  z-index: 7;
}
.news-section-7 .container-fluid {
  padding: 0 175px;
}
@media (max-width: 1600px) {
  .news-section-7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .news-section-7 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .news-section-7 .container-fluid {
    padding: 0 30px;
  }
}
.news-section-7 .left-shape {
  position: absolute;
  top: -180px;
  left: 0;
  z-index: -1;
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 8px;
  background-color: var(--white);
  padding: 50px 30px;
  position: relative;
  z-index: 9;
}
.pricing-box-items .nexella-hover-bx {
  background: var(--theme);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}
.pricing-box-items .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pricing-box-items .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-box-items .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-box-items .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.pricing-box-items .pricing-header {
  margin-bottom: 30px;
}
.pricing-box-items .pricing-header span {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  color: #02060A;
}
.pricing-box-items .pricing-header h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .pricing-box-items .pricing-header h3 {
    font-size: 55px;
  }
}
.pricing-box-items .pricing-header h3 sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(2, 6, 10, 0.7);
  letter-spacing: initial;
  margin-left: -12px;
}
.pricing-box-items .pricing-header p {
  color: rgba(2, 6, 10, 0.8);
}
.pricing-box-items .theme-btn {
  background-color: var(--header);
  width: 100%;
  color: var(--white);
  display: inline-block;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .pricing-box-items .theme-btn {
    margin-top: 30px;
  }
}
.pricing-box-items .theme-btn::before {
  background-color: var(--white);
  border-radius: 8px;
}
.pricing-box-items .theme-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
.pricing-box-items .theme-btn:hover {
  color: var(--header);
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(2, 6, 10, 0.7);
}
@media (max-width: 1199px) {
  .pricing-box-items .pricing-list span {
    letter-spacing: inherit;
  }
}
.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}
.pricing-box-items .pricing-list ul li {
  color: rgba(2, 6, 10, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-box-items .pricing-list ul li i {
  font-size: 18px;
  color: var(--theme);
}
.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pricing-box-items:hover .pricing-header span {
  color: var(--white);
}
.pricing-box-items:hover .pricing-header h3 {
  color: var(--white);
}
.pricing-box-items:hover .pricing-header h3 sub {
  color: var(--white);
}
.pricing-box-items:hover .pricing-header p {
  color: var(--white);
}
.pricing-box-items:hover .pricing-list span {
  color: var(--white);
}
.pricing-box-items:hover .pricing-list ul li {
  color: var(--white);
}
.pricing-box-items:hover .pricing-list ul li i {
  color: var(--white);
}

.pricing-section-2 {
  margin: 0 30px;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .pricing-section-2 {
    margin: 0 15px;
  }
}
.pricing-section-2 .section-title-area .nav {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 70px;
  padding: 10px;
}
.pricing-section-2 .section-title-area .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  color: var(--header);
  padding: 12px 32px;
  border-radius: 70px;
}
@media (max-width: 575px) {
  .pricing-section-2 .section-title-area .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}
.pricing-section-2 .section-title-area .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}

.pricing-card-items-3 {
  padding: 50px 30px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  position: relative;
}
@media (max-width: 1399px) {
  .pricing-card-items-3 {
    padding: 30px;
  }
}
.pricing-card-items-3 .nexella-hover-bx {
  background: var(--theme);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}
.pricing-card-items-3 .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pricing-card-items-3 .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-card-items-3 .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-card-items-3 .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.pricing-card-items-3 .pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.pricing-card-items-3 .pricing-header h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-card-items-3 .pricing-header h2 {
  color: var(--white);
}
.pricing-card-items-3 .pricing-header h2 span {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-card-items-3 .pricing-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}
.pricing-card-items-3 .pricing-list {
  margin-bottom: 40px;
}
.pricing-card-items-3 .pricing-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card-items-3 .pricing-list li i {
  font-size: 18px;
  color: var(--theme);
}
.pricing-card-items-3 .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-card-items-3 .theme-btn {
  background-color: var(--white);
  width: 100%;
  color: var(--header);
  display: inline-block;
  border-radius: 8px;
}
.pricing-card-items-3 .theme-btn::before {
  background-color: var(--header);
  border-radius: 8px;
}
.pricing-card-items-3 .theme-btn:after {
  background-color: rgba(11, 13, 23, 0.3);
  border-radius: 8px;
}
.pricing-card-items-3 .theme-btn:hover {
  color: var(--white);
}
.pricing-card-items-3:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pricing-card-items-3:hover .pricing-header {
  border-bottom: 1px solid var(--white);
}
.pricing-card-items-3:hover .pricing-header h2 span {
  color: var(--white);
}
.pricing-card-items-3:hover .pricing-header p {
  color: var(--white);
}
.pricing-card-items-3:hover .pricing-list li {
  color: var(--white);
}
.pricing-card-items-3:hover .pricing-list li i {
  color: var(--white);
}

.pricing-section-3 {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .pricing-section-3 {
    margin: 0 15px;
  }
}
.pricing-section-3 .nav-top {
  text-align: center;
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .pricing-section-3 .nav-top {
    margin-top: 30px;
  }
}
.pricing-section-3 .nav-top .nav {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 70px;
  padding: 10px;
}
.pricing-section-3 .nav-top .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
  padding: 12px 32px;
  border-radius: 70px;
}
@media (max-width: 575px) {
  .pricing-section-3 .nav-top .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}
.pricing-section-3 .nav-top .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}

.pricing-card-items-4 {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: 8px;
  margin-top: 30px;
  position: relative;
}
.pricing-card-items-4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme);
  border-radius: 10px;
  transform: scale(0.5);
  opacity: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .pricing-card-items-4 {
    padding: 30px;
  }
}
.pricing-card-items-4 .pricing-header {
  margin-bottom: 25px;
}
.pricing-card-items-4 .pricing-header p {
  margin-top: 10px;
}
.pricing-card-items-4 .pricing-list {
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .pricing-card-items-4 .pricing-list {
    margin-bottom: 30px;
  }
}
.pricing-card-items-4 .pricing-list li {
  color: var(--header);
  font-weight: 500;
  position: relative;
  padding-left: 13px;
}
.pricing-card-items-4 .pricing-list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: rgb(249, 77, 0);
  top: 10px;
  left: 0;
}
.pricing-card-items-4 .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-card-items-4 .theme-btn {
  background-color: rgb(239, 237, 229);
  width: 100%;
  color: var(--header);
  display: inline-block;
  border-radius: 8px;
}
.pricing-card-items-4 .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.pricing-card-items-4 .theme-btn:after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.pricing-card-items-4 .theme-btn:hover {
  color: var(--white);
}
.pricing-card-items-4:hover::before {
  transform: scale(1);
  opacity: 1;
}
.pricing-card-items-4:hover .pricing-header {
  position: relative;
  z-index: 999;
}
.pricing-card-items-4:hover .pricing-header h3 {
  color: var(--white);
}
.pricing-card-items-4:hover .pricing-header p {
  color: var(--white);
}
.pricing-card-items-4:hover .pricing-list li {
  color: var(--white);
}
.pricing-card-items-4:hover .pricing-list li::before {
  background-color: var(--white);
}

.pricing-box-items-6 {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  padding: 0px 40px 40px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items-6 .pricing-header h2 {
  font-size: 40px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.pricing-box-items-6 .pricing-header p {
  margin-top: 5px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items-6 .circle-icon {
  width: 60px;
  border: 1px solid var(--header);
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--text);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin-top: 40px;
}
.pricing-box-items-6 ul {
  margin-top: 40px;
}
.pricing-box-items-6 ul li {
  transition: all 0.4s ease-in-out;
}
.pricing-box-items-6 ul li i {
  margin-right: 18px;
}
.pricing-box-items-6 ul li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items-6 h2 {
  color: #303030;
  margin-top: 40px;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.pricing-box-items-6.style-2 .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items-6.style-2 .pricing-header span {
  border-radius: 100px;
  background: var(--bg);
  color: var(--theme);
  line-height: 1;
  padding: 10px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items-6:hover {
  border-radius: 10px;
  border: 1px solid var(--theme);
  background: var(--theme);
}
.pricing-box-items-6:hover .pricing-header h2 {
  color: var(--white);
}
.pricing-box-items-6:hover .pricing-header p {
  color: var(--white);
}
.pricing-box-items-6:hover .pricing-header .pricing-top p {
  color: var(--white);
}
.pricing-box-items-6:hover .circle-icon {
  background-color: var(--white);
  color: var(--header);
  border: 1px solid var(--white);
}
.pricing-box-items-6:hover h2 {
  color: var(--white);
}
.pricing-box-items-6:hover ul li {
  color: var(--white);
}

.pricing-content-6 {
  margin-left: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .pricing-content-6 {
    margin-left: 0;
  }
}
.pricing-content-6 .section-title h2 {
  font-size: 50px;
}
.pricing-content-6 .shape-1 {
  position: absolute;
  z-index: -1;
  left: 10%;
}
@media (max-width: 1399px) {
  .pricing-content-6 .shape-1 {
    display: none;
  }
}
.pricing-content-6 .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 150px;
  margin-left: 90px;
}
@media (max-width: 1399px) {
  .pricing-content-6 .client-info {
    margin-left: 0;
    margin-top: 30px;
  }
}

.pricing-box-items-7 {
  border-radius: 20px;
  border: 1px solid #D4DCFF;
  background: var(--white);
  padding: 30px;
}
.pricing-box-items-7 .pricing-header {
  border-radius: 16px;
  background: #17012C;
  padding: 24px;
  position: relative;
}
.pricing-box-items-7 .pricing-header .icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: none;
}
.pricing-box-items-7 .pricing-header span {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.pricing-box-items-7 .pricing-header h2 {
  color: var(--white);
  font-size: 40px;
  margin-top: 20px;
}
.pricing-box-items-7 .pricing-header h2 sub {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  margin-left: -5px;
}
.pricing-box-items-7 .price-list {
  margin-top: 30px;
}
.pricing-box-items-7 .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items-7 .price-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-box-items-7 .price-list li .price-1 {
  font-weight: 500;
}
.pricing-box-items-7 .price-list li .price-1.color-2 i {
  color: #FF1010;
}
.pricing-box-items-7 .price-list li .price-1 i {
  color: var(--theme);
  margin-right: 5px;
}
.pricing-box-items-7 .price-button {
  margin-top: 40px;
}
.pricing-box-items-7 .price-button .theme-btn {
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 16px;
  background: #17012C;
  display: inline-block;
  color: var(--white);
  font-weight: 700;
}
.pricing-box-items-7 .price-button .theme-btn i {
  margin-left: 10px;
}
.pricing-box-items-7 .price-button .theme-btn:hover {
  background-color: var(--theme);
}
.pricing-box-items-7.style-2 .pricing-header {
  background: rgba(249, 77, 0, 0.8);
}
.pricing-box-items-7.style-2 .price-button .theme-btn {
  border: 1.5px solid var(--theme);
  display: inline-block;
  color: var(--theme);
  background: transparent;
}
.pricing-box-items-7.style-2 .price-button .theme-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.pricing-content-7 .pricing-tab-header {
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .pricing-content-7 .pricing-tab-header {
    margin-bottom: 0;
  }
}
.pricing-content-7 .pricing-tab-header .arrow-shape {
  position: absolute;
  left: 48.5%;
  top: 0;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .pricing-content-7 .pricing-tab-header .arrow-shape {
    display: none;
  }
}
.pricing-content-7 .pricing-tab-header .nav {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  max-width: 210px;
}
@media (max-width: 991px) {
  .pricing-content-7 .pricing-tab-header .nav {
    max-width: 325px;
  }
}
@media (max-width: 575px) {
  .pricing-content-7 .pricing-tab-header .nav {
    gap: 15px;
    max-width: 225px;
  }
}
.pricing-content-7 .pricing-tab-header .nav .nav-link {
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .pricing-content-7 .pricing-tab-header .nav .nav-link {
    padding: 14px 45px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .pricing-content-7 .pricing-tab-header .nav .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.pricing-content-7 .pricing-tab-header .nav .nav-link.active {
  position: relative;
  background-color: var(--theme);
  color: var(--white);
}
.pricing-content-7 .pricing-tab-header .save-text {
  font-weight: 500;
  color: var(--theme);
  font-size: 18px;
  text-align: center;
  margin-left: 60%;
}

.pricing-section-7 {
  position: relative;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
}
.pricing-section-7 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .pricing-section-7 .left-shape {
    display: none;
  }
}
.pricing-section-7 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .pricing-section-7 .right-shape {
    display: none;
  }
}
.pricing-section-7.style-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  margin-bottom: 120px;
  padding: 30px 0;
  background-color: var(--theme);
}
.marquee.style-3 {
  margin: 0 30px;
  background-color: var(--theme);
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 1399px) {
  .marquee.style-3 {
    margin: 0 15px;
  }
}
.marquee.style-3 .marquee-group .text {
  color: var(--white);
  font-size: 70px;
}
.marquee.style-3 .marquee-group .text img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1399px) {
  .marquee {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .marquee {
    margin-bottom: 80px;
  }
}
.marquee.slide-right {
  transform: scaleX(-1);
}
.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.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;
}
.marquee .text {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .marquee .text {
    gap: 30px;
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .marquee .text {
    gap: 20px;
    font-size: 50px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.project-box-wrapper {
  margin-top: 48px;
}
.project-box-wrapper .project-card-items {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 100px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .project-box-wrapper .project-card-items {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-box-wrapper .project-card-items h4 {
  position: absolute;
  top: 55px;
  left: 55px;
}
@media (max-width: 991px) {
  .project-box-wrapper .project-card-items h4 {
    display: none;
  }
}
.project-box-wrapper .project-card-items .project-content h3 {
  font-size: 80px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .project-box-wrapper .project-card-items .project-content h3 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .project-box-wrapper .project-card-items .project-content h3 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .project-box-wrapper .project-card-items .project-content h3 {
    font-size: 30px;
  }
}
.project-box-wrapper .project-card-items .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-box-wrapper .project-card-items .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-box-wrapper .project-card-items .project-content p {
  max-width: 601px;
  margin-bottom: 25px;
}
.project-box-wrapper .project-card-items .project-content .list {
  margin-top: 150px;
}
@media (max-width: 1399px) {
  .project-box-wrapper .project-card-items .project-content .list {
    margin-top: 30px;
  }
}
.project-box-wrapper .project-card-items .project-content .list li a {
  border: 1px solid rgba(2, 6, 10, 0.1);
  border-radius: 35px;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 8px;
  margin: 0 2px;
}
.project-box-wrapper .project-card-items .project-content .list li a:hover {
  background-color: rgb(239, 237, 229);
  color: var(--theme);
}
.project-box-wrapper .project-card-items .project-thumb {
  overflow: hidden;
}
@media (max-width: 1399px) {
  .project-box-wrapper .project-card-items .project-thumb {
    flex-basis: 100%;
  }
}
.project-box-wrapper .project-card-items .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-section-2 .section-title-area {
  margin-bottom: 80px;
}
.project-section-2 .section-title-area .content p {
  max-width: 471px;
  margin-bottom: 15px;
}
.project-section-2 .section-title-area .content .project-btn {
  color: var(--header);
  text-decoration: underline;
  font-weight: 600;
}
.project-section-2 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .project-section-2 .container-fluid {
    padding: 0 15px;
  }
}

.project-card-items-2.mt-200 {
  margin-top: 200px;
}
@media (max-width: 1399px) {
  .project-card-items-2.mt-200 {
    margin-top: 0;
  }
}
.project-card-items-2.mt-100 {
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .project-card-items-2.mt-100 {
    margin-top: 0;
  }
}
.project-card-items-2 .project-image {
  max-width: 590px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-image {
    max-width: initial;
  }
}
.project-card-items-2 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-card-items-2 .project-image.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}
.project-card-items-2 .project-image.tp-clip-anim .tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.project-card-items-2 .project-image.tp-clip-anim .mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}
.project-card-items-2 .project-image.tp-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.project-card-items-2.style-2 {
  margin-left: 230px;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-2 {
    margin-left: 0;
  }
}
.project-card-items-2.style-2 .project-image {
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-2 .project-image {
    max-width: initial;
  }
}
.project-card-items-2.style-3 {
  margin-top: 320px;
  max-width: 1000px;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-3 {
    margin-top: 0;
    max-width: initial;
  }
}
.project-card-items-2.style-3 .project-image {
  max-width: 1000px;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-3 .project-image {
    max-width: initial;
  }
}
.project-card-items-2.style-4 {
  margin-left: 12px;
  max-width: 590px;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-4 {
    max-width: initial;
    margin-left: 0;
  }
}
.project-card-items-2 .project-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card-items-2 .project-content.dark-content h3 a {
  color: var(--white);
}
.project-card-items-2 .project-content.dark-content .list li a {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.project-card-items-2 .project-content.dark-content .list li a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-content {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.project-card-items-2 .project-content h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .project-card-items-2 .project-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .project-card-items-2 .project-content h3 {
    font-size: 20px;
  }
}
.project-card-items-2 .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-items-2 .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-card-items-2 .project-content .list li a {
  border: 1px solid rgba(2, 6, 10, 0.1);
  border-radius: 35px;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 8px;
  margin: 0 2px;
  color: var(--header);
}
.project-card-items-2 .project-content .list li a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.project-card-items-inner .project-image {
  height: 562px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .project-card-items-inner .project-image {
    max-width: initial;
    height: 350px;
  }
}
.project-card-items-inner .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.project-card-items-inner .project-image.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}
.project-card-items-inner .project-image.tp-clip-anim .tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.project-card-items-inner .project-image.tp-clip-anim .mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}
.project-card-items-inner .project-image.tp-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.project-card-items-inner .project-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .project-card-items-inner .project-content {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.project-card-items-inner .project-content h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .project-card-items-inner .project-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 1399px) {
  .project-card-items-inner .project-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .project-card-items-inner .project-content h3 {
    font-size: 20px;
  }
}
.project-card-items-inner .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-items-inner .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-card-items-inner .project-content .list li a {
  border: 1px solid rgba(2, 6, 10, 0.1);
  border-radius: 35px;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 8px;
  margin: 0 2px;
}
.project-card-items-inner .project-content .list li a:hover {
  background-color: var(--white);
  color: var(--theme);
}

.project-details-wrapper .project-details-content .details-image {
  border-radius: 12px;
  margin-bottom: 30px;
}
.project-details-wrapper .project-details-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-details-wrapper .project-details-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-details-content h3 {
    font-size: 25px;
  }
}
.project-details-wrapper .project-details-content .details-thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-details-content .project-details-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 28px;
}
.project-details-wrapper .project-details-content .project-details-box h3 {
  margin-top: 0;
  font-size: 24px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .project-details-box h3 {
    font-size: 20px;
  }
}
.project-details-wrapper .project-details-content .project-details-box p {
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.project-details-wrapper .project-details-content .project-details-box .details-list li {
  font-weight: 600;
  color: var(--header);
}
.project-details-wrapper .project-details-content .project-details-box .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .project-details-box .details-list li {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-content .project-details-box .details-list li {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-content .project-details-box .details-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.project-details-wrapper .project-details-content .video-image {
  margin-top: 30px;
  position: relative;
}
.project-details-wrapper .project-details-content .video-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-details-content .video-image .video-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--header);
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-details-wrapper .project-details-content .video-image .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 100px;
}
.project-details-wrapper .project-details-content .slider-button {
  border-top: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
  margin-top: 65px;
  padding: 25px 0;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .slider-button {
    margin-top: 30px;
  }
}
.project-details-wrapper .project-details-content .slider-button span {
  font-weight: 500;
}
.project-details-wrapper .project-details-content .slider-button .cmn-next,
.project-details-wrapper .project-details-content .slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid var(--header);
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .slider-button .cmn-next,
  .project-details-wrapper .project-details-content .slider-button .cmn-prev {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
.project-details-wrapper .project-details-content .slider-button .cmn-next i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev i {
  color: var(--theme);
  font-size: 24px;
  transition: all 0.4s;
}
.project-details-wrapper .project-details-content .slider-button .cmn-next:hover,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}
.project-details-wrapper .project-details-content .slider-button .cmn-next:hover i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover i {
  color: var(--white);
}
.project-details-wrapper .project-details-content .slider-button .previus-text {
  font-size: 22px;
  color: var(--header);
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .slider-button .previus-text {
    font-size: 18px;
  }
}
.project-details-wrapper .project-details-content .slider-button .icon-gird {
  font-size: 40px;
  color: #0F172A;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .slider-button .icon-gird {
    font-size: 30px;
  }
}
.project-details-wrapper .project-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-sidebar .sidebar-widget {
    padding: 30px;
  }
}
.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 20px;
}
.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}
.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 i {
  color: var(--theme);
  font-size: 16px;
  margin-right: 7px;
}
.project-details-wrapper .project-details-sidebar .project-list-item li {
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.project-details-wrapper .project-details-sidebar .project-list-item li:not(:last-child) {
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.project-details-wrapper .project-details-sidebar .project-list-item li span.style-2 {
  font-weight: 400;
}
.project-details-wrapper .project-details-sidebar .project-list-item li a {
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  border-radius: 8px;
}
.project-details-wrapper .project-details-sidebar .project-list-item li a:hover {
  color: var(--theme);
}
.project-details-wrapper .project-details-sidebar .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.project-details-wrapper .project-details-sidebar .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  opacity: 0.6;
  color: var(--white);
  background-color: rgb(2, 6, 10);
  text-align: center;
}
.project-details-wrapper .project-details-sidebar .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.project-details-wrapper .sidebar-widget-image {
  position: relative;
  border-radius: 8px;
  padding: 40px 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .sidebar-widget-image {
    padding: 30px 20px;
  }
}
.project-details-wrapper .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #02060A;
  opacity: 0.6;
  border-radius: 8px;
}
.project-details-wrapper .sidebar-widget-image .content {
  position: relative;
  z-index: 999;
}
.project-details-wrapper .sidebar-widget-image .content h3 {
  color: var(--white);
  font-size: 32px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .sidebar-widget-image .content h3 {
    font-size: 24px;
  }
}
.project-details-wrapper .sidebar-widget-image .content p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.project-details-wrapper .sidebar-widget-image .content .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.project-details-wrapper .sidebar-widget-image .content .icon-item .icon {
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border-radius: 100px;
  border-radius: 100px;
  color: var(--white);
  font-size: 25px;
  background-color: var(--theme);
}
.project-details-wrapper .sidebar-widget-image .content .icon-item h4 {
  font-size: 18px;
  font-weight: 600;
}
.project-details-wrapper .sidebar-widget-image .content .icon-item h4 a {
  color: var(--white);
}
.project-details-wrapper .sidebar-widget-image .content .theme-btn {
  border-radius: 8px;
  width: 100%;
}

.marque-bg-section-4 {
  margin: 0 40px;
  border-radius: 20px;
  height: 518px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .marque-bg-section-4 {
    margin: 0 30px;
    height: 550px;
  }
}
@media (max-width: 1399px) {
  .marque-bg-section-4 {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .marque-bg-section-4 {
    margin: 0 15px;
    height: 350px;
  }
}
.marque-bg-section-4 .marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
  line-height: 530px;
}
@media (max-width: 991px) {
  .marque-bg-section-4 .marquee {
    line-height: 75px;
  }
}
@media (max-width: 575px) {
  .marque-bg-section-4 .marquee {
    line-height: 60px;
  }
}
.marque-bg-section-4 .marquee .marquee-group {
  display: flex;
  align-items: center;
  gap: 50px;
}
.marque-bg-section-4 .marquee .marquee-group .hover-image {
  width: 393px;
  height: 393px;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(10deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -300px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
  visibility: hidden;
  will-change: transform;
}
@media (max-width: 991px) {
  .marque-bg-section-4 .marquee .marquee-group .hover-image {
    display: none !important;
  }
}
.marque-bg-section-4 .marquee .text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 125px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  cursor: none;
}
@media (max-width: 991px) {
  .marque-bg-section-4 .marquee .text {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .marque-bg-section-4 .marquee .text {
    font-size: 80px;
  }
}
.marque-bg-section-4 .marquee:hover .marquee-group .hover-image {
  opacity: 1;
  visibility: visible;
}

.project-section-4 {
  margin: 0 15px;
}
@media (max-width: 575px) {
  .project-section-4 {
    margin: 0 15px;
  }
}
.project-section-4 .section-title-area {
  margin-bottom: -60px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .project-section-4 .section-title-area {
    margin-bottom: 35px;
    gap: 0;
  }
  .project-section-4 .section-title-area br {
    display: none;
  }
}
.project-section-4 .section-title-area .section-title h2 {
  font-size: 122.704px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3.408px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .project-section-4 .section-title-area .section-title h2 {
    letter-spacing: initial;
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .project-section-4 .section-title-area .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .project-section-4 .section-title-area .section-title h2 {
    font-size: 40px;
  }
}

.project-style-image-4 {
  overflow: hidden;
  position: relative;
  z-index: 9;
  height: 626px;
}
@media (max-width: 1399px) {
  .project-style-image-4 {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .project-style-image-4 {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .project-style-image-4 {
    height: 350px;
  }
}
.project-style-image-4 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  object-fit: cover;
}
.project-style-image-4 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-style-image-4 .content {
  background-color: var(--white);
  padding: 30px;
  padding-right: 45px;
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  width: fit-content;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s ease;
  z-index: 10;
}
.project-style-image-4 .content h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .project-style-image-4 .content h3 {
    font-size: 24px;
  }
}
.project-style-image-4 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.project-style-image-4 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-style-image-4 .content ul {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.project-style-image-4 .content ul li a {
  display: inline-block;
  border-radius: 18px;
  border: 1px solid #EBE8E6;
  background: #FAF8EF;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 6px 10px;
}
.project-style-image-4 .content ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-style-image-4:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.project-style-image-4:hover 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-style-image-4:hover .content {
  clip-path: inset(0 0 0 0);
}

.project-wrapper-5 .project-content-5 h2 {
  color: var(--white);
  font-size: 85px;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .project-wrapper-5 .project-content-5 h2 {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .project-wrapper-5 .project-content-5 h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .project-wrapper-5 .project-content-5 h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .project-wrapper-5 .project-content-5 h2 {
    font-size: 30px;
  }
}
.project-wrapper-5 .project-content-5 .tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .project-wrapper-5 .project-content-5 .tag {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.project-wrapper-5 .project-content-5 .tag span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}
.project-wrapper-5 .project-content-5 .tag span a {
  color: var(--white);
}
.project-wrapper-5 .project-content-5 .tag span:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.project-wrapper-5 .project-content-5 .theme-btn-main {
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
}
.project-wrapper-5 .project-content-5 .theme-btn-main:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.project-wrapper-5 .prject-card-wrapper-5 {
  margin-left: 100px;
}
@media (max-width: 1399px) {
  .project-wrapper-5 .prject-card-wrapper-5 {
    margin-left: 0;
  }
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h3 {
  font-size: 32px;
}
@media (max-width: 1600px) {
  .project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h3 {
    font-size: 20px;
  }
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .left-content h4 {
  color: var(--white);
  margin-top: 5px;
  font-size: 18px;
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .tags {
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  transition: all 0.4s ease-in-out;
  line-height: 1;
  border-radius: 4px;
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .tags span a {
  color: var(--white);
}
.project-wrapper-5 .prject-card-wrapper-5 .project-card-items-5 .project-content .tags span:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card-inner-items-5 {
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 30px;
}
.project-card-inner-items-5 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.project-card-inner-items-5 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-card-inner-items-5 .project-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-card-inner-items-5 .project-content .left-content h3 {
  font-size: 32px;
}
@media (max-width: 1600px) {
  .project-card-inner-items-5 .project-content .left-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .project-card-inner-items-5 .project-content .left-content h3 {
    font-size: 20px;
  }
}
.project-card-inner-items-5 .project-content .left-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-inner-items-5 .project-content .left-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-card-inner-items-5 .project-content .left-content h5 {
  margin-top: 5px;
}
.project-card-inner-items-5 .project-content .tags {
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-card-inner-items-5 .project-content .tags span {
  border: 1px solid rgba(2, 6, 10, 0.1);
  padding: 6px 10px;
  transition: all 0.4s ease-in-out;
  line-height: 1;
  border-radius: 100px;
}
.project-card-inner-items-5 .project-content .tags span a {
  color: var(--header);
}
.project-card-inner-items-5 .project-content .tags span:hover {
  background: rgba(2, 6, 10, 0.1);
  border: 1px solid rgba(2, 6, 10, 0.1);
}

.project-wrapper-3 .section-title p {
  color: var(--header);
  font-size: 18px;
  font-weight: 500;
  max-width: 277px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.project-wrapper-3 .project-box-items-3 li {
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li {
    display: block;
  }
}
.project-wrapper-3 .project-box-items-3 li:not(:last-child) {
  margin-bottom: 30px;
}
.project-wrapper-3 .project-box-items-3 li .thumb {
  max-width: 330px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li .thumb {
    max-width: initial;
    margin-bottom: 15px;
  }
}
.project-wrapper-3 .project-box-items-3 li .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-wrapper-3 .project-box-items-3 li .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-wrapper-3 .project-box-items-3 li .content {
  position: relative;
}
.project-wrapper-3 .project-box-items-3 li .content span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
  display: inline-block;
}
.project-wrapper-3 .project-box-items-3 li .content h3 {
  color: var(--header);
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .project-wrapper-3 .project-box-items-3 li .content h3 {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper-3 .project-box-items-3 li .content h3 {
    font-size: 24px;
  }
}
.project-wrapper-3 .project-box-items-3 li .content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-wrapper-3 .project-box-items-3 li .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-wrapper-3 .project-box-items-3 li .content .icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header);
  color: var(--white);
  font-size: 18px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li .content .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    margin-top: 12px;
  }
}
.project-wrapper-3 .project-box-items-3 li .content .icon:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-wrapper-3 .project-box-items-3 li:hover .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-wrapper-3 .project-box-items-3 li:hover .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-section-3 {
  margin: 0 30px;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .project-section-3 {
    margin: 0 15px;
  }
}
.project-section-3 .line-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.project-section-3 .line-shape img {
  width: 100%;
}

.project-section-6 .section-title h2 {
  font-size: 300px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .project-section-6 .section-title h2 {
    margin-left: 0;
    font-size: 200px;
  }
}
@media (max-width: 991px) {
  .project-section-6 .section-title h2 {
    font-size: 150px;
  }
}
@media (max-width: 767px) {
  .project-section-6 .section-title h2 {
    font-size: 120px;
  }
}
@media (max-width: 575px) {
  .project-section-6 .section-title h2 {
    font-size: 90px;
  }
}
.project-section-6 .project-btn-all {
  position: relative;
  z-index: 999;
  text-align: center;
  margin-top: 50px;
}
.project-section-6 .project-btn-all .theme-btn.con-btn {
  background-color: var(--header);
}
.project-section-6 .project-btn-all .theme-btn.con-btn::before {
  background-color: var(--white);
}
.project-section-6 .project-btn-all .theme-btn.con-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
}
.project-section-6 .project-btn-all .theme-btn.con-btn:hover {
  color: var(--header);
}

.project-box-items-6 {
  margin-top: 30px;
  position: relative;
  z-index: 99;
}
.project-box-items-6 .thumb {
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .project-box-items-6 .thumb {
    height: 500px;
  }
}
.project-box-items-6 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  border: 2px solid transparent;
  object-fit: cover;
}
.project-box-items-6 .thumb .content {
  position: absolute;
  bottom: 20px;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  right: 40px;
}
.project-box-items-6 .thumb .content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.project-box-items-6 .thumb .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
  text-transform: capitalize;
}
.project-box-items-6 .thumb .content h3 a {
  color: var(--white);
}
.project-box-items-6 .thumb .content h3 a:hover {
  color: var(--theme);
}
.project-box-items-6 .thumb .circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: #060606;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.project-box-items-6 .thumb:hover .content {
  opacity: 1;
  visibility: visible;
}
.project-box-items-6 .thumb:hover .circle-icon {
  opacity: 1;
  visibility: visible;
}
.project-box-items-6:hover .thumb img {
  border: 2px solid var(--theme);
  border-radius: 10px;
}

.project-area-one {
  position: relative;
  z-index: 1;
}
.project-area-one .project-wrapper-7 .sub-title {
  margin-bottom: 50px;
}
.project-area-one .project-wrapper-7 .card-items {
  position: relative;
  z-index: 0;
}
.project-area-one .project-wrapper-7 .card-items .card-single-item {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
.project-area-one .project-wrapper-7 .card-items .card-single-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item.items-2 {
    flex-direction: column;
    align-items: start;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100%;
  transition: 150ms ease-in-out;
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-btn svg path {
  transition: 150ms ease-in-out;
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-btn:hover {
  background: var(--theme);
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-btn:hover path {
  fill: var(--white);
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    align-items: start;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content .title {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-align: start;
}
@media (max-width: 1399px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content .title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .card-text-content .card-content .text {
  color: var(--text);
  line-height: normal;
  text-transform: capitalize;
  text-align: start;
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .project-image img {
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .project-image img {
    max-width: 100%;
    height: auto !important;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .project-image.project-image-fast {
  margin-left: 105px;
}
@media (max-width: 991px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .project-image.project-image-fast {
    margin-left: 0;
  }
}
.project-area-one .project-wrapper-7 .card-items .card-single-item .project-image.project-image-last {
  margin-right: 105px;
}
@media (max-width: 991px) {
  .project-area-one .project-wrapper-7 .card-items .card-single-item .project-image.project-image-last {
    margin-right: 0;
  }
}

.case-study-wrapper .case-study-box-items {
  margin-top: 30px;
}
.case-study-wrapper .case-study-box-items .thumb {
  position: relative;
  height: 326px;
}
.case-study-wrapper .case-study-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .case-study-wrapper .case-study-box-items .thumb {
    height: 350px;
  }
  .case-study-wrapper .case-study-box-items .thumb img {
    object-fit: cover;
  }
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items {
  position: absolute;
  top: 30px;
  left: 30px;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a {
  border-radius: 33px;
  border: 0.5px solid var(--white);
  background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(25px);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 11px 15px;
  line-height: 1;
  display: inline-block;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a i {
  margin-left: 10px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title img {
  width: initial;
  height: initial;
  border-radius: 0;
  margin-right: 10px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title a {
  color: var(--white);
}
.case-study-wrapper .case-study-box-items .thumb .number {
  right: 30px;
  bottom: 30px;
  position: absolute;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
}
.case-study-wrapper .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 30px;
  }
}
.case-study-wrapper .main-box .box {
  background-image: url(../img/home-8/case-studies/05.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 92px !important;
  height: 328px;
  position: relative;
  overflow: hidden;
  list-style: none;
  border-radius: 24px;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
  overflow: hidden;
  background-color: var(--theme);
}
.case-study-wrapper .main-box .box .title-items {
  position: relative;
  z-index: 9;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .title-items {
    display: none;
  }
}
.case-study-wrapper .main-box .box .title-items h3 {
  position: absolute;
  top: 40%;
  left: 70%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.case-study-wrapper .main-box .box .title-items h3 a {
  color: var(--white);
  display: ruby-text;
}
.case-study-wrapper .main-box .box .title-items .number {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .title-items .number {
    display: none;
  }
}
.case-study-wrapper .main-box .box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 24px;
  background: var(--theme);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box::before {
    display: none;
  }
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box {
    width: initial !important;
  }
}
.case-study-wrapper .main-box .box .number-hover {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .number-hover {
    opacity: 1;
    visibility: visible;
  }
}
.case-study-wrapper .main-box .box .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  right: 30px;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}
.case-study-wrapper .main-box .box .project-content h3 {
  margin-bottom: 10px;
}
.case-study-wrapper .main-box .box .project-content h3 a {
  color: var(--white);
}
.case-study-wrapper .main-box .box .project-content p {
  color: var(--white);
  line-height: 162%;
}
.case-study-wrapper .main-box .box .project-content .link-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
}
.case-study-wrapper .main-box .box .project-content .link-btn i {
  color: var(--white);
}
.case-study-wrapper .main-box .box .project-content .icon {
  transform: rotate(-40deg);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.case-study-wrapper .main-box .box .project-content .icon:hover {
  transform: rotate(0);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box {
    width: 328px !important;
  }
  .case-study-wrapper .main-box .box::before {
    border: 0.5px solid var(--white);
    background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(25px);
  }
  .case-study-wrapper .main-box .box .number-hover {
    opacity: 1;
    visibility: visible;
  }
  .case-study-wrapper .main-box .box .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }
  .case-study-wrapper .main-box .box .title-items {
    opacity: 0;
    visibility: hidden;
  }
}
.case-study-wrapper .main-box .box.active {
  width: 328px !important;
}
.case-study-wrapper .main-box .box.active::before {
  border: 0.5px solid var(--white);
  background: rgba(249, 77, 0, 0.5);
}
.case-study-wrapper .main-box .box.active .number-hover {
  opacity: 1;
  visibility: visible;
}
.case-study-wrapper .main-box .box.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.case-study-wrapper .main-box .box.active .title-items {
  opacity: 0;
  visibility: hidden;
}

.case-study-section {
  position: relative;
}
.case-study-section .overlay-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.case-study-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 40px;
}
@media (max-width: 1600px) {
  .case-study-section .left-shape {
    display: none;
  }
}
.case-study-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media (max-width: 1600px) {
  .case-study-section .right-shape {
    display: none;
  }
}

.project-carousel-item .project-carousel-image {
  position: relative;
  height: 420px;
}
@media (max-width: 1399px) {
  .project-carousel-item .project-carousel-image {
    height: initial;
  }
}
.project-carousel-item .project-carousel-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .project-carousel-item .project-carousel-image img {
    object-fit: initial;
  }
}
.project-carousel-item .project-carousel-image .project-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 35px 30px;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.project-carousel-item .project-carousel-image .project-content::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 58px;
  content: "";
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.project-carousel-item .project-carousel-image .project-content p {
  color: var(--theme);
  font-weight: 500;
  margin-bottom: 5px;
}
.project-carousel-item .project-carousel-image .project-content h2 {
  font-weight: bold;
  font-size: 20px;
  font-weight: 600;
}
.project-carousel-item .project-carousel-image .project-content h2 a {
  color: var(--header);
}
.project-carousel-item .project-carousel-image .project-content h2 a:hover {
  color: var(--theme);
}
.project-carousel-item .project-carousel-image .project-content .arrow-icon {
  width: 85px;
  height: 100%;
  line-height: 130px;
  background-color: rgba(249, 77, 0, 0.1);
  text-align: center;
  color: var(--theme);
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
.project-carousel-item .project-carousel-image .project-content .arrow-icon i {
  transform: rotate(-40deg);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.project-carousel-item .project-carousel-image .project-content .arrow-icon i:hover {
  transform: rotate(0);
}

.project-carousel-section .swiper-dot {
  border: 2px dotted var(--theme);
  width: 146px;
  height: 41px;
  line-height: 37px;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  z-index: 9;
}

.service-box-item {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 12px;
  position: relative;
}
.service-box-item::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;
}
.service-box-item .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 100px;
  margin-bottom: 30px;
}
.service-box-item .content h3 {
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .service-box-item .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .service-box-item .content h3 {
    font-size: 20px;
  }
}
.service-box-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-item .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-box-item .content .theme-btn {
  background-color: var(--white);
  width: 100%;
  color: var(--header);
  display: inline-block;
  margin-top: 120px;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .service-box-item .content .theme-btn {
    margin-top: 30px;
  }
}
.service-box-item .content .theme-btn::before {
  background-color: var(--header);
  border-radius: 8px;
}
.service-box-item .content .theme-btn:after {
  background-color: rgba(11, 13, 23, 0.3);
  border-radius: 8px;
}
.service-box-item .content .theme-btn:hover {
  color: var(--white);
}
.service-box-item:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-box-item:hover .content h3 {
  position: relative;
}
.service-box-item:hover .content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-item:hover .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.service-box-item:hover .content p {
  position: relative;
  color: var(--white);
}
.service-box-item:hover .icon {
  position: relative;
  background-color: var(--header);
}
.service-box-item:hover .icon img {
  animation: jello 1s;
}

.service-section {
  position: relative;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  width: 1860px;
  left: 30px;
  border-radius: 16px;
}
@media (max-width: 1899px) {
  .service-section::before {
    width: 100%;
    left: 0;
  }
}
.service-section .service-slider {
  margin-left: -180px;
  margin-right: -180px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .service-section .service-slider {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .service-section .service-slider {
    margin-top: 30px;
  }
}

.global-service-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  margin-top: 30px;
  position: relative;
}
.global-service-box.style-2 {
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .global-service-box {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.global-service-box::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  transition: all 500ms ease;
  border-radius: 8px;
}
.global-service-box .global-content {
  flex-basis: 20%;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .global-service-box .global-content {
    flex-basis: initial;
  }
}
.global-service-box .global-content .content {
  display: flex;
  gap: 15px;
}
.global-service-box .global-content .content span {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.2;
  line-height: 1;
  color: var(--white);
  opacity: 0.4;
}
.global-service-box .global-content .content h3 {
  text-transform: capitalize;
  line-height: 90%;
}
.global-service-box .global-content .content h3 a {
  color: var(--white);
}
.global-service-box .global-content .content h3 a:hover {
  color: var(--white);
}
.global-service-box .text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 395px;
  position: relative;
  z-index: 9;
}
.global-service-box .icon {
  display: inline-block;
  color: var(--white);
  opacity: 0.3;
  font-size: 20px;
  position: relative;
  z-index: 9;
  transition: all 0.3s ease;
}
.global-service-box .icon:hover {
  color: var(--white);
}
.global-service-box:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.global-service-box:hover .global-content .content span {
  color: var(--white);
  opacity: initial;
}
.global-service-box:hover .text {
  color: var(--white);
}
.global-service-box:hover .icon {
  color: var(--white);
  opacity: initial;
}

.service-section-2 {
  margin: 0 30px;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .service-section-2 {
    margin: 0 15px;
  }
}

.service-card-items-3 {
  margin-top: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
}
.service-card-items-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.service-card-items-3 .service-content {
  margin-top: 30px;
}
.service-card-items-3 .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-card-items-3 .service-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-card-items-3 .service-content p {
  margin-bottom: 30px;
  margin-top: 10px;
}
.service-card-items-3 .service-content .theme-btn {
  width: 100%;
  background-color: rgb(239, 237, 229);
  border-radius: 8px;
  color: var(--header);
}
.service-card-items-3 .service-content .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.service-card-items-3 .service-content .theme-btn::after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.service-card-items-3 .service-content .theme-btn:hover {
  color: var(--white);
}

.service-box-style-3 {
  margin-top: 30px;
  background-color: var(--white);
  padding: 45px 30px;
  border-radius: 8px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .service-box-style-3 {
    padding: 30px;
  }
}
.service-box-style-3::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 8px;
}
.service-box-style-3 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
}
.service-box-style-3 .content {
  margin-top: 40px;
}
.service-box-style-3 .content h3 {
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .service-box-style-3 .content h3 {
    font-size: 21px;
  }
}
.service-box-style-3 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-style-3 .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.service-box-style-3 .content p {
  font-size: 18px;
  color: var(--header);
  opacity: 0.8;
  line-height: 155.556%;
}
.service-box-style-3 .content .link-btn {
  color: var(--header);
  margin-top: 20px;
}
.service-box-style-3 .content .link-btn i {
  margin-left: 6px;
  margin-right: 0;
}
.service-box-style-3 .content .link-btn:hover {
  color: var(--theme);
}
.service-box-style-3 .number {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  transform: rotate(90deg);
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.service-box-style-3:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-box-style-3:hover .icon {
  background-color: var(--header);
}
.service-box-style-3:hover .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.service-box-style-3:hover .content h3 a {
  color: var(--white);
}
.service-box-style-3:hover .content p {
  color: var(--white);
}
.service-box-style-3:hover .content .link-btn {
  color: var(--white);
}
.service-box-style-3:hover .number {
  opacity: initial;
  color: var(--white);
  visibility: visible;
}

.service-section-3 {
  margin: 0 30px;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .service-section-3 {
    margin: 0 15px;
  }
}
.service-section-3 .array-button .array-prev, .service-section-3 .array-button .array-next {
  background-color: var(--white);
  color: var(--header);
}
.service-section-3 .array-button .array-prev:hover, .service-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}
.service-section-3 .swiper-dot.style-2 .swiper-pagination-bullet {
  background-color: var(--white);
}
.service-section-3 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header);
}
.service-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.service-details-wrapper .service-details-content .details-image {
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}
.service-details-wrapper .service-details-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.service-details-wrapper .service-details-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-content h3 {
    font-size: 25px;
  }
}
.service-details-wrapper .service-details-content .service-box-area {
  margin-top: 40px;
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items {
  background-color: #F2F5F7;
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-content .service-box-area .service-box-items {
    flex-wrap: wrap;
  }
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100px;
  background-color: rgb(239, 237, 229);
  transition: all 0.4s ease-in-out;
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items .content h3 {
  font-size: 24px;
  margin-top: 0;
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items .content p {
  margin-top: 10px;
  max-width: 254px;
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items:hover .icon {
  background-color: var(--theme);
}
.service-details-wrapper .service-details-content .service-box-area .service-box-items:hover .icon img {
  filter: brightness(0) invert(1);
}
.service-details-wrapper .service-details-content .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.service-details-wrapper .service-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget {
    padding: 30px;
  }
}
.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 20px;
}
.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h2 {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}
.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h2 i {
  color: var(--theme);
  font-size: 16px;
  margin-right: 7px;
}
.service-details-wrapper .service-details-sidebar .service-list-item li {
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.service-details-wrapper .service-details-sidebar .service-list-item li a {
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  border-radius: 8px;
}
.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
  color: var(--theme);
}
.service-details-wrapper .sidebar-widget-image {
  position: relative;
  border-radius: 8px;
  padding: 40px 30px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .sidebar-widget-image {
    padding: 30px 20px;
  }
}
.service-details-wrapper .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #02060A;
  opacity: 0.6;
  border-radius: 8px;
}
.service-details-wrapper .sidebar-widget-image .content {
  position: relative;
  z-index: 999;
}
.service-details-wrapper .sidebar-widget-image .content h3 {
  color: var(--white);
  font-size: 32px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .sidebar-widget-image .content h3 {
    font-size: 24px;
  }
}
.service-details-wrapper .sidebar-widget-image .content p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.service-details-wrapper .sidebar-widget-image .content .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.service-details-wrapper .sidebar-widget-image .content .icon-item .icon {
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border-radius: 100px;
  border-radius: 100px;
  color: var(--white);
  font-size: 25px;
  background-color: var(--theme);
}
.service-details-wrapper .sidebar-widget-image .content .icon-item h3 {
  font-size: 18px;
  font-weight: 600;
}
.service-details-wrapper .sidebar-widget-image .content .icon-item h3 a {
  color: var(--white);
}
.service-details-wrapper .sidebar-widget-image .content .theme-btn {
  border-radius: 8px;
  width: 100%;
}

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

.service-box-style-4 {
  margin-top: 30px;
}
.service-box-style-4 .service-list-wrap {
  position: relative;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding: 50px 30px;
}
.service-box-style-4 .service-list-wrap.style-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap {
    padding: 40px 10px;
  }
}
.service-box-style-4 .service-list-wrap.active-block {
  background-color: var(--theme);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-box-style-4 .service-list-wrap .service-acc-btn {
  position: relative;
  padding-left: 275px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 200px;
  }
}
@media (max-width: 1199px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 90px;
  }
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 20px;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn .number {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn .number {
    top: -30px;
    left: 20px;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: var(--header);
  border: 1px solid var(--header);
  text-align: center;
}
.service-box-style-4 .service-list-wrap .service-acc-btn .icon.text-white {
  border: 1px solid var(--white);
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn h3 {
    font-size: 24px;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 a {
  color: var(--header);
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 a:hover {
  color: var(--theme);
}
.service-box-style-4 .service-list-wrap .service-acc-content {
  margin-top: 35px;
  display: none;
  position: relative;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-content {
    margin-top: 25px;
  }
}
.service-box-style-4 .service-list-wrap .service-wrap {
  display: flex;
  gap: 100px;
  width: 100%;
  padding-left: 275px;
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-wrap {
    padding-left: 200px;
  }
}
@media (max-width: 1199px) {
  .service-box-style-4 .service-list-wrap .service-wrap {
    padding-left: 90px;
  }
}
@media (max-width: 991px) {
  .service-box-style-4 .service-list-wrap .service-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-wrap {
    padding-left: 20px;
  }
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--white) !important;
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text .text {
  max-width: 465px;
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text .text p {
  font-size: 18px;
  line-height: 155.556%;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-wrap .item-text .text p {
    font-size: 16px;
  }
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-box-style-4 .service-list-wrap .service-wrap .item-text ul li i {
  font-size: 20px;
  margin-right: 8px;
}

.service-section-4 .service-box-style-4 .block:last-child {
  margin-bottom: 0;
}
.service-section-4 .service-box-style-4 .block .service-acc-btn {
  transition: all 0.3s ease;
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active {
  color: var(--theme);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active span {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active h3 {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon {
  background-color: var(--white);
  color: var(--header);
  border: 1px solid var(--theme);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon:before {
  content: "\f00d";
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap .item-text h4 {
  color: var(--white) !important;
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap .item-text .text {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap .item-text .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap .item-text .theme-btn:hover {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap .item-text ul li {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-content {
  display: none;
}
.service-section-4 .service-box-style-4 .block .service-acc-content.current {
  display: block;
}

.services-box-items {
  padding: 30px;
  background-color: var(--white);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .services-box-items {
    padding: 20px;
  }
}
.services-box-items::before, .services-box-items::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--theme);
  transition: transform 0.6s ease;
  z-index: 2;
}
.services-box-items::before {
  top: 0;
  transform: translateY(-100%);
}
.services-box-items::after {
  bottom: 0;
  transform: translateY(100%);
}
.services-box-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 100px;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .services-box-items .icon {
    margin-bottom: 30px;
  }
}
.services-box-items .icon img {
  filter: brightness(0) invert(1);
}
.services-box-items .content h3 {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .services-box-items .content h3 {
    font-size: 20px;
  }
}
.services-box-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.services-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.services-box-items .content p {
  max-width: 360px;
}
.services-box-items .content .link-btn {
  color: var(--header);
  margin-top: 20px;
}
.services-box-items .content .link-btn:hover {
  color: var(--theme);
}
.services-box-items:hover::before {
  transform: translateY(0);
}
.services-box-items:hover::after {
  transform: translateY(0);
}
.services-box-items:hover .icon {
  position: relative;
  z-index: 999;
  background-color: var(--white);
}
.services-box-items:hover .icon img {
  filter: initial;
  animation: jello 1s;
}
.services-box-items:hover .content h3 {
  position: relative;
  z-index: 999;
}
.services-box-items:hover .content h3 a {
  color: var(--white);
}
.services-box-items:hover .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.services-box-items:hover .content p {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.services-box-items:hover .content .link-btn {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.services-box-items:hover .content .link-btn i {
  color: var(--white);
}

.service-card-inner-item-5 {
  padding: 50px 30px;
  background-color: var(--white);
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .service-card-inner-item-5 {
    padding: 30px;
  }
}
.service-card-inner-item-5 .content h3 {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .service-card-inner-item-5 .content h3 {
    font-size: 20px;
  }
}
.service-card-inner-item-5 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-card-inner-item-5 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-card-inner-item-5 .content p {
  max-width: 360px;
}
.service-card-inner-item-5 .service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(2, 6, 10, 0.1);
  padding-top: 50px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .service-card-inner-item-5 .service-bottom {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.service-card-inner-item-5 .service-bottom .theme-btn {
  background: #EFEDE5;
  color: var(--theme);
  border-radius: 8px;
}
.service-card-inner-item-5 .service-bottom .theme-btn::before {
  background-color: var(--theme);
  border-radius: 8px;
}
.service-card-inner-item-5 .service-bottom .theme-btn::after {
  background-color: rgba(249, 77, 0, 0.3);
  border-radius: 8px;
}
.service-card-inner-item-5 .service-bottom .theme-btn:hover {
  color: var(--white);
}

.service-security-wrapper .service-security-content {
  margin-right: 70px;
}
@media (max-width: 1399px) {
  .service-security-wrapper .service-security-content {
    margin-right: 0;
  }
}
.service-security-wrapper .service-security-content .theme-btn {
  margin-top: 30px;
}
.service-security-wrapper .service-security-content .service-security-image {
  margin-top: 30px;
  height: 294px;
}
@media (max-width: 1399px) {
  .service-security-wrapper .service-security-content .service-security-image {
    height: initial;
  }
}
.service-security-wrapper .service-security-content .service-security-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .service-security-wrapper .service-security-content .service-security-image img {
    object-fit: initial;
  }
}
.service-security-wrapper .service-security-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .service-security-wrapper .service-security-box {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .service-security-wrapper .service-security-box {
    flex-wrap: wrap;
    padding: 25px;
  }
}
.service-security-wrapper .service-security-box span {
  position: absolute;
  right: 30px;
  top: 30px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
}
.service-security-wrapper .service-security-box .icon {
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}
.service-security-wrapper .service-security-box .icon img {
  transition: all 0.4s ease-in-out;
}
.service-security-wrapper .service-security-box .content h3 {
  color: var(--white);
}
.service-security-wrapper .service-security-box .content p {
  color: var(--white);
  opacity: 0.8;
  max-width: 290px;
  margin-top: 10px;
}
.service-security-wrapper .service-security-box:hover .icon {
  background-color: var(--theme);
}
.service-security-wrapper .service-security-box:hover .icon img {
  filter: brightness(0) invert(1);
}

.service-security-section {
  margin: 0 30px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .service-security-section {
    margin: 0 15px;
  }
}

.service-area-one {
  position: relative;
  z-index: 1;
}
.service-area-one .service-wrapper-7 .section-title {
  margin-bottom: 62px;
}
.service-area-one .service-wrapper-7 .section-title .sub-title {
  margin-bottom: 40px;
}
.service-area-one .service-wrapper-7 .section-title .title {
  max-width: 744px;
  margin: 0 auto;
}
.service-area-one .service-wrapper-7 .service-card {
  position: relative;
  width: 100%;
  height: 450px;
  background: var(--white);
  perspective: 1000px;
  cursor: pointer;
  /* White Card */
  /* Black Card */
}
.service-area-one .service-wrapper-7 .service-card.style-2 .title {
  text-transform: initial !important;
  font-weight: 500 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.service-area-one .service-wrapper-7 .service-card.style-2 .number {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.service-area-one .service-wrapper-7 .service-card .card-front,
.service-area-one .service-wrapper-7 .service-card .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  backface-visibility: hidden;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-card .card-front,
  .service-area-one .service-wrapper-7 .service-card .card-back {
    padding: 25px;
  }
}
.service-area-one .service-wrapper-7 .service-card .card-front {
  color: var(--white);
  background-color: var(--bg);
}
.service-area-one .service-wrapper-7 .service-card .card-front .card-top-part {
  margin-bottom: 89px;
}
.service-area-one .service-wrapper-7 .service-card .card-front .card-top-part .number {
  color: var(--white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.service-area-one .service-wrapper-7 .service-card .card-front .title {
  color: var(--black);
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-card .card-front .title {
    font-size: 26px;
    line-height: 30px;
  }
}
.service-area-one .service-wrapper-7 .service-card .card-front .avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 93px;
}
.service-area-one .service-wrapper-7 .service-card .card-front .avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-right: -25px;
}
.service-area-one .service-wrapper-7 .service-card .card-front .avatars .count {
  font-size: 14px;
  font-weight: 600;
  background: #000;
  color: var(--white);
  border-radius: 20px;
  padding: 3px 10px;
}
.service-area-one .service-wrapper-7 .service-card .card-front .service-card-shape {
  display: flex;
  align-items: center;
  justify-content: end;
}
.service-area-one .service-wrapper-7 .service-card .card-back {
  background: #000;
  color: var(--white);
  transform: rotateY(180deg);
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-top-part {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 37px;
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-top-part .number {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-top-part .title {
  color: var(--white);
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-card .card-back .card-top-part .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.service-area-one .service-wrapper-7 .service-card .card-back .services {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.service-area-one .service-wrapper-7 .service-card .card-back .services li {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-card .card-back .services li {
    font-size: 14px;
  }
}
.service-area-one .service-wrapper-7 .service-card .card-back .review {
  margin-bottom: 46px;
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-card .card-back .review {
    margin-bottom: 20px;
  }
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-bottom-content {
  display: flex;
  justify-content: space-between;
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-bottom-content .btn {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-bottom-content .btn:hover {
  background: #00c853;
  border-color: #00c853;
  color: #000;
}
.service-area-one .service-wrapper-7 .service-card .card-back .card-bottom-content svg path {
  fill: var(--theme);
}
.service-area-one .service-wrapper-7 .service-card:hover .card-front {
  transform: rotateY(180deg);
}
.service-area-one .service-wrapper-7 .service-card:hover .card-back {
  transform: rotateY(360deg);
}
.service-area-one .service-wrapper-7 .service-btn-7 .theme-btn-main {
  color: var(--header);
  border: 1px solid var(--header);
  justify-content: center;
  text-align: center !important;
  margin: 0 auto;
}
.service-area-one .service-wrapper-7 .service-btn-7 .theme-btn-main.style-service {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1399px) {
  .service-area-one .service-wrapper-7 .service-btn-7 .theme-btn-main {
    width: 120px;
    height: 120px;
  }
}
.service-area-one .service-wrapper-7 .service-btn-7 .theme-btn-main:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.service-box-items-7 {
  margin-top: 30px;
  display: flex;
  gap: 17px;
  padding: 40px 20px;
  position: relative;
  border: 1px solid #e3c0c0;
  border-radius: 20px;
}
.service-box-items-7 .content h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}
.service-box-items-7 .content h3 a:hover {
  color: var(--theme);
}
.service-box-items-7 .content p {
  font-family: "DM Sans", sans-serif;
  margin-bottom: 5px;
}

.service-section-7 {
  position: relative;
}
.service-section-7 .left-shape {
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media (max-width: 1899px) {
  .service-section-7 .left-shape {
    display: none;
  }
}
.service-section-7 .right-shape {
  position: absolute;
  top: 25%;
  right: 50px;
  animation: bounce-x 7s infinite linear;
}
@media (max-width: 1899px) {
  .service-section-7 .right-shape {
    display: none;
  }
}
.service-section-7 .bg-shape {
  position: absolute;
  top: 9px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .service-section-7 .bg-shape {
    display: none;
  }
}
.service-section-7 .bg-shape-2 {
  position: absolute;
  top: 15%;
  right: 0;
}
.service-section-7 .right-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .service-section-7 .right-shape-3 {
    display: none;
  }
}

.service-section-5 {
  position: relative;
}
.service-section-5 .text-item {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}
.service-section-5 .text-item h4 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .service-section-5 .text-item {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.service-section-5 .text-item.style-text h4 {
  color: var(--white);
}
.service-section-5 .array-button .array-prev {
  position: absolute;
  top: 55%;
  left: 100px;
  border: 1px solid var(--header);
}
@media (max-width: 1600px) {
  .service-section-5 .array-button .array-prev {
    display: none;
  }
}
.service-section-5 .array-button .array-prev:hover {
  border: 1px solid var(--theme);
}
.service-section-5 .array-button .array-next {
  position: absolute;
  top: 55%;
  right: 100px;
}
@media (max-width: 1600px) {
  .service-section-5 .array-button .array-next {
    display: none;
  }
}
.service-section-5 .array-button.style-2 .array-prev {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.team-section {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .team-section {
    margin: 0 15px 0;
  }
}

.team-wrapper {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .team-wrapper {
    margin-top: 30px;
  }
}
.team-wrapper .team-left-content .text {
  max-width: 299px;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 30px;
}
.team-wrapper .team-card-item {
  position: relative;
}
.team-wrapper .team-card-item .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.team-wrapper .team-card-item .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.team-wrapper .team-card-item .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.team-wrapper .team-card-item .team-image .social-icon a {
  display: inline-block;
  width: 26.73px;
  height: 26.73px;
  border-radius: 100px;
  left: 1098.76px;
  opacity: 0.6;
  color: var(--header);
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.team-wrapper .team-card-item .team-image .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  opacity: initial;
}
.team-wrapper .team-card-item .team-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: 9;
  border-radius: 8px;
}
.team-wrapper .team-card-item .team-content {
  margin-top: 20px;
}
.team-wrapper .team-card-item .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-wrapper .team-card-item .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-wrapper .team-card-item .team-content p {
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.team-wrapper .team-card-item:hover .social-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.team-wrapper .team-card-item:hover .team-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.team-wrapper .team-card-item:hover .team-image::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.team-wrapper .team-card-item.style-inner .team-content h3 a {
  color: var(--header);
}
.team-wrapper .team-card-item.style-inner:hover .team-content p {
  color: var(--text);
}

.team-details-wrapper .team-details-image {
  overflow: hidden;
  border-radius: 12px;
}
.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.team-details-wrapper .team-details-content {
  margin-left: 30px;
  background-color: #F2F5F7;
  border-radius: 10px;
  padding: 45px 40px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .team-details-content .offer {
  background-color: var(--theme);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
}
.team-details-wrapper .team-details-content h2 {
  margin-top: 30px;
}
.team-details-wrapper .team-details-content .team-infrom {
  margin-top: 30px;
}
.team-details-wrapper .team-details-content .team-infrom li {
  display: flex;
  gap: 100px;
  align-items: center;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .team-infrom li {
    display: grid;
    gap: 20px;
  }
}
.team-details-wrapper .team-details-content .team-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  flex-basis: 28%;
}
.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
  margin-bottom: 12px;
}
.team-details-wrapper .team-details-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
}
.team-details-wrapper .team-details-content .social-icon {
  display: flex;
  margin-top: 30px;
  gap: 15px;
}
.team-details-wrapper .team-details-content .social-icon a {
  color: var(--white);
  background: rgba(2, 6, 10, 0.5);
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}
.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-details-wrapper .team-middle-items .team-skill-area {
  margin-top: 60px;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
    margin-right: 0;
  }
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
  background-color: rgba(249, 77, 0, 0.5);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 69%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 98%;
  }
}
.team-details-wrapper .team-middle-items .team-skill-area .career-content h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
  display: flex;
  gap: 20px;
}
.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-bottom-items {
  margin-top: 120px;
  border-radius: 10px;
  background: var(--white);
  padding: 80px 60px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 100px;
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper .team-bottom-items {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-bottom-items {
    padding: 30px;
  }
}
.team-details-wrapper .team-bottom-items .team-left-items p {
  margin-top: 20px;
}
.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
  display: flex;
  gap: 10px;
  border-radius: 70px;
  border: 1px solid #3D4857;
  display: inline-flex;
  padding: 20px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}
.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
  color: var(--header);
}
.team-details-wrapper .team-bottom-items .team-right-items {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 0;
  }
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
  margin-top: 30px;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input, .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding: 15px 20px;
  border-radius: 4px;
  border: none;
  background: rgb(239, 237, 229);
  text-transform: capitalize;
  border: 1px solid rgba(2, 6, 10, 0.12);
  resize: none;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder, .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 80px;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
  border: none;
  background: rgb(239, 237, 229);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .theme-btn {
  width: 100%;
  border-radius: 8px;
}

.team-box-item-3 {
  margin-top: 30px;
}
.team-box-item-3 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.team-box-item-3 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  transition: all 500ms ease;
}
.team-box-item-3 .thumb 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-box-item-3 .thumb .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  left: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.team-box-item-3 .thumb .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--theme);
  font-size: 14px;
  transition: all 0.3s ease;
}
.team-box-item-3 .thumb .social-icon a:hover {
  background-color: var(--header);
}
.team-box-item-3 .content {
  margin-top: 20px;
  position: relative;
}
.team-box-item-3 .content .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 32px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(31, 41, 55, 0.35);
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
}
.team-box-item-3 .content .icon:hover {
  background-color: var(--theme);
}
.team-box-item-3 .content h3 {
  font-weight: 600;
}
.team-box-item-3 .content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  transition: all 0.3s ease;
}
.team-box-item-3 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-box-item-3:hover .thumb img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.team-box-item-3:hover .thumb img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.team-box-item-3:hover .thumb .social-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.team-section-3 {
  position: relative;
  z-index: 9;
  background-color: var(--white);
}
.team-section-3 .line-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.team-section-3 .line-shape img {
  width: 100%;
}

.team-wrapper-7 {
  max-width: 1240px;
  margin: 0 auto;
}
.team-wrapper-7 .team-image {
  text-align: center;
  position: relative;
  z-index: 999;
  max-width: 525px;
}
@media (max-width: 1199px) {
  .team-wrapper-7 .team-image {
    max-width: initial;
  }
}
.team-wrapper-7 .team-image .shape-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: none;
}
@media (max-width: 1399px) {
  .team-wrapper-7 .team-image .shape-image {
    display: none;
  }
}
@media (max-width: 991px) {
  .team-wrapper-7 .team-image .shape-image {
    display: block;
  }
}
@media (max-width: 575px) {
  .team-wrapper-7 .team-image .shape-image {
    display: none;
  }
}
.team-wrapper-7 .team-image img {
  width: 100%;
  height: 100%;
}
.team-wrapper-7 .team-content {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1399px) {
  .team-wrapper-7 .team-content {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .team-wrapper-7 .team-content {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.team-wrapper-7 .team-content p {
  font-weight: 500;
}
.team-wrapper-7 .team-content .list-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .team-wrapper-7 .team-content .list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.team-wrapper-7 .team-content .list-items ul li {
  font-weight: 600;
  color: var(--header);
}
.team-wrapper-7 .team-content .list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}
.team-wrapper-7 .team-content .list-items ul li svg {
  margin-right: 5px;
}

.team-section-7.style-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1399px) {
  .team-section-7 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .team-section-7 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.group {
  position: relative;
  z-index: 5;
}
.group .cta-area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.group .cta-area .cta-area-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.group .cta-area .cta-area-inner .area-bg {
  position: absolute;
  height: 390px;
  width: 390px;
  background-color: var(--black);
  border-radius: 100%;
  z-index: -1;
}
.group .cta-area .cta-area-inner .section-content .section-title-wrapper .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.group .cta-area .cta-area-inner .section-content .section-title-wrapper .title-wrapper .title {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}
.group .cta-area .icon {
  height: auto;
}

.team-members {
  background: transparent;
  padding: 6rem 0;
  z-index: 9999;
  position: relative;
  margin-top: -800px;
}
@media (max-width: 1899px) {
  .team-members {
    margin-top: -655px;
  }
}
@media (max-width: 1399px) {
  .team-members {
    margin-top: -620px;
  }
}
@media (max-width: 991px) {
  .team-members {
    margin-top: -520px;
  }
}
@media (max-width: 767px) {
  .team-members {
    margin-top: -678px;
  }
}
.team-members.team-members-page {
  margin-top: 0;
  padding: 0;
}
.team-members.team-members-page .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.team-members.team-members-page .section-title .slider-control {
  margin-left: 30px;
}
.team-members.team-members-page .section-title .title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #121212;
  max-width: 810px;
}
@media (max-width: 991px) {
  .team-members.team-members-page .section-title .title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .team-members.team-members-page .section-title .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.team-members.team-members-page .section-title .slider-control .array-nav {
  flex-direction: row;
}
.team-members .team-slider-active .swiper-slide.swiper-slide-active .team-card .thumb .social-links {
  display: block;
}
.team-members .team-slider-active .swiper-slide.swiper-slide-active .team-member-info {
  opacity: 1;
  visibility: visible;
}
.team-members .team-slider-active .swiper-slide.swiper-slide-active .team-member-info .name {
  color: var(--white);
}
.team-members .team-slider-active .swiper-slide.swiper-slide-active .team-member-info .name a {
  color: var(--white);
}
.team-members .team-slider-active .swiper-slide.swiper-slide-active .team-member-info .designation {
  color: var(--white);
}
.team-members .team-card .team-member-info {
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.team-members .team-card .team-member-info .name {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.24px;
  margin-bottom: 12px;
}
.team-members .team-card .team-member-info .name a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  transition: all 0.4s ease-in-out;
}
.team-members .team-card .team-member-info .name a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #fff 0%, #fff 100%);
}
.team-members .team-card .team-member-info .designation {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: -0.14px;
}
.team-members .team-card .thumb {
  position: relative;
  overflow: hidden;
}
.team-members .team-card .thumb img {
  width: 100%;
}
.team-members .team-card .thumb .thumb-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  transition: all 0.5s ease-in-out;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
}
.team-members .team-card .thumb:hover img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.team-members .team-card .thumb:hover img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.team-members .team-card .thumb:hover .thumb-2 {
  opacity: 1;
  visibility: visible;
}
.team-members .team-card .thumb .social-links {
  position: absolute;
  bottom: 65px;
  right: -65px;
  background: var(--black);
  transform: rotate(-45deg);
  padding: 10px 15px;
  width: 320px;
  display: none;
}
.team-members .team-card .thumb .social-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.team-members .team-card .thumb .social-links ul li a {
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.team-members .team-card .thumb .social-links ul li a svg path {
  fill: var(--white);
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.team-members .team-card .thumb .social-links ul li a:hover {
  background: var(--theme);
  border: 1px solid transparent;
}
.team-members .team-card .thumb .social-links ul li a:hover svg path {
  fill: var(--black);
}

.testimonial-section {
  margin: 0 30px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .testimonial-section {
    margin: 0 15px;
  }
}

.testimonial-wrapper-1 {
  margin-right: -35%;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 {
    margin-right: 0;
  }
}
.testimonial-wrapper-1 .testimonial-content {
  text-align: left;
  margin-top: 0;
}
.testimonial-wrapper-1 .testimonial-content .section-title .sub-title {
  background-color: rgb(239, 237, 229);
}
.testimonial-wrapper-1 .testimonial-content .theme-btn {
  margin-top: 30px;
}
.testimonial-wrapper-1 .testimonial-content .array-button {
  margin-top: 200px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-content .array-button {
    margin-top: 30px;
  }
}
.testimonial-wrapper-1 .testimonial-content .array-button .array-prev {
  border: 1px solid var(--header);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  z-index: 999;
}
.testimonial-wrapper-1 .testimonial-content .array-button .array-prev:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}
.testimonial-wrapper-1 .testimonial-content .array-button .array-next {
  background-color: var(--theme);
  color: var(--white);
  z-index: 999;
}
.testimonial-wrapper-1 .testimonial-content .array-button .array-next:hover {
  background-color: var(--header);
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-content .array-button {
    display: none;
  }
}
.testimonial-wrapper-1 .testimonial-box-item {
  background-color: rgb(239, 237, 229);
  padding: 60px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-box-item {
    padding: 30px;
  }
}
.testimonial-wrapper-1 .testimonial-box-item .star {
  color: var(--theme);
  margin-bottom: 20px;
}
.testimonial-wrapper-1 .testimonial-box-item p {
  font-weight: 500;
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  padding-bottom: 30px;
  line-height: 136%;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-box-item p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.testimonial-wrapper-1 .testimonial-box-item .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-box-item .client-info-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.testimonial-wrapper-1 .testimonial-box-item .client-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-wrapper-1 .testimonial-box-item .client-info-item .info-item img {
  border-radius: 5px;
}
.testimonial-wrapper-1 .testimonial-box-item .client-info-item .swiper-dot {
  margin-top: 0;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-1 .testimonial-box-item .client-info-item .swiper-dot {
    margin-top: 0;
  }
}

.testimonial-content {
  margin-top: 30px;
  text-align: center;
}
.testimonial-content .star {
  color: var(--theme);
  margin-bottom: 20px;
}
.testimonial-content p {
  font-size: 24px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 885px;
  margin-bottom: 40px;
  margin: 0 auto;
  color: #02060A;
  opacity: 0.7;
  line-height: 158%;
}
@media (max-width: 1399px) {
  .testimonial-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-content p {
    font-size: 16px;
  }
}
.testimonial-content .client-image {
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .testimonial-content .client-image {
    margin-top: 30px;
  }
}
.testimonial-content .client-image img {
  border-radius: 6px;
}
.testimonial-content h3 {
  margin-top: 30px;
  margin-bottom: 5px;
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 410px;
  right: 410px;
  transform: translateY(-50%);
  z-index: 99;
}
@media (max-width: 1899px) {
  .testimonial-section-2 .array-button {
    left: 200px;
    right: 200px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-2 .array-button {
    display: none;
  }
}
.testimonial-section-2 .array-button .array-prev {
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  z-index: 999;
}
.testimonial-section-2 .array-button .array-prev:hover {
  background-color: var(--theme);
}
.testimonial-section-2 .array-button .array-next {
  background-color: var(--theme);
  color: var(--white);
  z-index: 999;
}
.testimonial-section-2 .array-button .array-next:hover {
  background-color: var(--header);
}

.testimonial-wrapper-3 {
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 {
    margin-top: 30px;
  }
}
.testimonial-wrapper-3 .testimonial-thumb {
  overflow: hidden;
  border-radius: 8px;
}
.testimonial-wrapper-3 .testimonial-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.testimonial-wrapper-3 .testimonial-box-3 {
  background-color: var(--white);
  border-radius: 8px;
  padding: 60px 32px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box-3 {
    padding: 30px;
  }
}
.testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
    display: none;
  }
}
.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
  color: var(--theme);
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
    margin-bottom: 25px;
  }
}
.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
  font-size: 22px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgba(2, 6, 10, 0.7);
  max-width: 575px;
  border-bottom: 1px solid rgba(2, 6, 10, 0.1);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item img {
  border-radius: 5px;
}

.testimonial-section-4 {
  margin: 0 30px;
}
@media (max-width: 1399px) {
  .testimonial-section-4 {
    margin: 0 15px;
  }
}
.testimonial-section-4 .swiper-dot.style-2 .swiper-pagination-bullet {
  background-color: var(--white) !important;
}
.testimonial-section-4 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header) !important;
}
.testimonial-section-4 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme) !important;
}

.testimonial-box-style-4 {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--white);
}
.testimonial-box-style-4 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-bottom: 40px;
}
.testimonial-box-style-4 h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--header);
  opacity: 0.8;
  line-height: 125%;
}
@media (max-width: 1600px) {
  .testimonial-box-style-4 h3 {
    font-size: 20px;
    line-height: 135%;
  }
}
@media (max-width: 575px) {
  .testimonial-box-style-4 h3 {
    font-size: 18px;
  }
}
.testimonial-box-style-4 .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid #DFDCD2;
  margin-top: 30px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .testimonial-box-style-4 .client-info-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-box-style-4 .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
@media (max-width: 1600px) {
  .testimonial-box-style-4 .client-info-item .client-info h4 {
    font-size: 18px;
  }
}
.testimonial-box-style-4 .client-info-item .client-info span {
  font-weight: 400;
  color: var(--header);
  font-size: 16px;
}
.testimonial-box-style-4 .client-info-item .star {
  color: var(--theme);
}
.testimonial-box-style-4.style-2 {
  background-color: var(--header);
}
.testimonial-box-style-4.style-2 h3 {
  color: var(--white);
  opacity: 0.8;
}
.testimonial-box-style-4.style-2 .client-info-item {
  border-top: 1px solid rgba(223, 220, 210, 0.12);
}
.testimonial-box-style-4.style-2 .client-info-item .client-info h4 {
  color: var(--white);
}
.testimonial-box-style-4.style-2 .client-info-item .client-info span {
  color: var(--white);
}
.testimonial-box-style-4.style-2 .client-info-item .star {
  color: var(--theme);
}

.testimonial-wrapper-5 {
  margin-right: -25%;
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 {
    margin-right: 0;
    margin-top: 30px;
  }
}
.testimonial-wrapper-5 .testimonial-box {
  background-color: var(--white);
  text-align: center;
  padding: 114.5px 0;
  border-right: 1px solid rgba(2, 6, 10, 0.1);
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 .testimonial-box {
    padding: 92.5px 0;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-5 .testimonial-box {
    padding: 30px;
  }
}
.testimonial-wrapper-5 .testimonial-box h2 {
  font-size: 128px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 .testimonial-box h2 {
    font-size: 100px;
  }
}
.testimonial-wrapper-5 .testimonial-box .star {
  color: var(--theme);
  margin-top: 10px;
  margin-bottom: 5px;
}
.testimonial-wrapper-5 .testimonial-box h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonial-wrapper-5 .testimonial-content-box {
  background-color: var(--white);
  padding: 50px 35px;
  border-right: 1px solid rgba(2, 6, 10, 0.1);
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 .testimonial-content-box {
    padding: 50px 30px;
  }
}
.testimonial-wrapper-5 .testimonial-content-box p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: rgb(83, 79, 90);
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 .testimonial-content-box p {
    margin-top: 30px;
    font-size: 16px;
  }
}
.testimonial-wrapper-5 .testimonial-content-box .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-5 .testimonial-content-box .info-item {
    margin-top: 30px;
  }
}

.testimonial-box-items-3 {
  margin-top: 30px;
  padding: 50px 30px;
  background-color: var(--white);
  border-radius: 10px;
}
@media (max-width: 575px) {
  .testimonial-box-items-3 {
    padding: 30px 25px;
  }
}
.testimonial-box-items-3 .star {
  color: var(--theme);
  margin-bottom: 20px;
}
.testimonial-box-items-3 h3 {
  font-size: 20px;
  line-height: 140%;
  opacity: 0.8;
  color: var(--header);
}
@media (max-width: 1399px) {
  .testimonial-box-items-3 h3 {
    font-size: 16px;
  }
}
.testimonial-box-items-3 .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .testimonial-box-items-3 .client-info {
    margin-top: 25px;
  }
}
.testimonial-box-items-3 .client-info .thumb img {
  border-radius: 50%;
  border: 3px solid var(--white);
}
.testimonial-box-items-3 .client-info .info-content h4 {
  font-size: 20px;
  font-weight: 600;
}
.testimonial-box-items-3 .client-info .info-content span {
  color: var(--header);
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 9;
  left: 11%;
  right: 11%;
}
@media (max-width: 1199px) {
  .testimonial-section-3 .array-button {
    display: none;
  }
}
.testimonial-section-3 .array-button .array-prev, .testimonial-section-3 .array-button .array-next {
  background-color: var(--white);
  color: var(--header);
}
.testimonial-section-3 .array-button .array-prev:hover, .testimonial-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}
.testimonial-section-3 .swiper-dot.style-2 .swiper-pagination-bullet {
  background-color: var(--white);
}
.testimonial-section-3 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header);
}
.testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}
.testimonial-section-3.testi-sec-2 .array-button .array-prev, .testimonial-section-3.testi-sec-2 .array-button .array-next {
  background-color: var(--white);
  color: var(--header);
}
.testimonial-section-3.testi-sec-2 .array-button .array-prev:hover, .testimonial-section-3.testi-sec-2 .array-button .array-next:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}
.testimonial-section-3.testi-sec-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header);
}
.testimonial-section-3.testi-sec-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.testimonial-wrapper-6 {
  margin-right: -71%;
  position: relative;
}
.testimonial-wrapper-6 .array-button-6 {
  display: grid;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3%;
  z-index: 999;
}
@media (max-width: 1600px) {
  .testimonial-wrapper-6 .array-button-6 {
    display: none;
  }
}
.testimonial-wrapper-6 .array-button-6.style-button .array-prev, .testimonial-wrapper-6 .array-button-6.style-button .array-next {
  border: 1px solid var(--white);
  color: var(--white);
}
.testimonial-wrapper-6 .array-button-6 .array-prev, .testimonial-wrapper-6 .array-button-6 .array-next {
  border-radius: 100px;
  border: 1.5px solid rgba(2, 6, 10, 0.1);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.testimonial-wrapper-6 .array-button-6 .array-prev:hover, .testimonial-wrapper-6 .array-button-6 .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 {
    margin-right: 0;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 {
  padding: 36px;
  background-color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 {
    display: block;
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 {
    padding: 24px;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 .thumb {
  max-width: 335px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .thumb {
    max-width: initial;
    height: 500px;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.testimonial-wrapper-6 .testimonial-box-items-6 .thumb .info-title {
  background-color: var(--white);
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.testimonial-wrapper-6 .testimonial-box-items-6 .thumb .info-title h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--header);
  margin-bottom: 5px;
}
.testimonial-wrapper-6 .testimonial-box-items-6 .content {
  max-width: 740px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content {
    margin-top: 20px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content {
    padding: 0 15px;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 .content .quote-icon {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content .quote-icon {
    margin-bottom: 10px;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 .content p {
  font-size: 24px;
  font-weight: 400;
  color: var(--header);
  text-transform: capitalize;
  line-height: 187%;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content p {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content p {
    font-size: 16px;
  }
}
.testimonial-wrapper-6 .testimonial-box-items-6 .content .clutech-image {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-6 .testimonial-box-items-6 .content .clutech-image {
    margin-top: 30px;
  }
}

.testimonial-area-one {
  background-color: #F9EFF1;
  position: relative;
}
.testimonial-area-one .testimonial-one-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-area-one .tastimonial-one-array-prev, .testimonial-area-one .tastimonial-one-array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.testimonial-area-one .tastimonial-one-array-prev:hover, .testimonial-area-one .tastimonial-one-array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-area-one .tastimonial-one-array-prev:hover path, .testimonial-area-one .tastimonial-one-array-next:hover path {
  fill: #fff;
}
.testimonial-area-one .testimonial-wrapper-7 {
  position: relative;
  z-index: 5;
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-content {
  background: var(--white);
  width: 100%;
  padding: 78px 50px;
  position: relative;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-content {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-content {
    padding: 20px 20px;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-content::before {
  content: "";
  width: 272px;
  height: 100%;
  background: var(--black);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 1399px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-content::before {
    display: none;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-img-slider {
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-img-slider {
    display: none;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-img-slider .swiper-wrapper .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-img-slider .swiper-wrapper .swiper-slide img {
  width: 90px;
  height: 90px;
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-img-slider .swiper-slide.swiper-slide-active img {
  width: 136px;
  height: 136px;
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-text-slider {
  padding: 0 20px 0 30px;
  border-left: 1px solid var(--border);
}
@media (max-width: 991px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-text-slider {
    border: none;
  }
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-text-slider {
    padding: 0;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .icon {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .icon {
    margin-bottom: 10px;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .text {
  color: var(--text);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 38px;
  text-transform: capitalize;
  max-width: 1074px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .text {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .slider-button-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .slider-button-content {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .slider-button-content .bottom-title .title {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.testimonial-area-one .testimonial-wrapper-7 .testimonial-slider-content .slider-button-content .bottom-title .text {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-transform: uppercase;
}
.testimonial-area-one .bg-shape {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .testimonial-area-one .bg-shape {
    right: -10%;
  }
}
@media (max-width: 1399px) {
  .testimonial-area-one .bg-shape {
    display: none;
  }
}
.testimonial-area-one .bg-shape img {
  height: 100% !important;
}

.testimonial-box-items-7 {
  margin-top: 30px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 30px;
  position: relative;
}
@media (max-width: 470px) {
  .testimonial-box-items-7 {
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 30px;
  }
}
.testimonial-box-items-7 .icon {
  top: 40px;
  right: 30px;
  position: absolute;
}
.testimonial-box-items-7 .icon img {
  filter: brightness(0) opacity(0.8);
}
.testimonial-box-items-7::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  border-radius: 16px;
  z-index: -1;
  left: 48px;
  width: calc(100% - 48px);
}
@media (max-width: 470px) {
  .testimonial-box-items-7::before {
    width: calc(100% - 0px);
    left: 0;
  }
}
.testimonial-box-items-7 .testimonial-img {
  border: 4px solid var(--white);
  box-shadow: var(--box-shadow);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  background-color: var(--white);
  position: relative;
  z-index: 9;
}
.testimonial-box-items-7 .testimonial-img .shape-img {
  position: absolute;
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: none;
}
@media (max-width: 470px) {
  .testimonial-box-items-7 .testimonial-img .shape-img {
    display: none;
  }
}
.testimonial-box-items-7 .content {
  max-width: 370px;
}
.testimonial-box-items-7 .content .client-info {
  margin-bottom: 10px;
}
.testimonial-box-items-7 .content .client-info .star {
  color: #F68B21;
}
.testimonial-box-items-7 .content .client-info h3 {
  font-weight: 600;
  font-size: 18px;
}
.testimonial-box-items-7 .content p {
  font-weight: 400;
}

.testimonial-wrapper-7 .testimonial-left {
  margin-top: 30px;
}
.testimonial-wrapper-7 .testimonial-left .client-img {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
}
.testimonial-wrapper-7 .testimonial-left .client-img .content .star {
  color: var(--theme);
}
.testimonial-wrapper-7 .testimonial-left .client-img .content p {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */