﻿@charset "UTF-8";
/*======================================================================================
Theme Name: Brevon 
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Brevon - Multipurpose Business PHP 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=Inter:wght@100;200;300;400;500;600;700;800;900&family=Public+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #59bde2;
  --theme2: #EC4899;
  --theme3: #05A4BF;
  --theme4: #F72;
  --theme5: #F6D258;
  --theme6: #A9E1FF;
  --header: #0F172A;
  --header2: #290F1C;
  --header3: #1F2937;
  --header4: #000;
  --text: #3D4857;
  --border: #FCFCFC;
  --bg: #F2F5F7;
  --bg2: #0F172A;
  --bg3: #F7F2F5;
  --bg4: #E6F8FB;
  --bg5: #FBF9EF;
  --bg6: #F5EFDC;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  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: "Inter", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
}

@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: 500;
  line-height: 120%;
}

@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: 36px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 133.333%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  background-color: #59bde2;
  padding: 5.5px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-transform: capitalize;
}

.theme-btn .btn_inner {
  position: relative;
  z-index: 1;
  padding: 15px 30px 15px 60px;
  width: 100%;
  text-align: center;
}

.theme-btn .btn_inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  inset-inline-start: 0;
  width: 45px;
  height: 100%;
  background-color: var(--header);
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
}

.theme-btn .btn_inner .btn_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  min-width: 45px;
  height: 100%;
  z-index: 2;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}

.theme-btn .btn_inner .btn_icon>span {
  overflow: hidden;
  position: relative;
  display: inline-flex;
}

.theme-btn .btn_inner .btn_icon>span i:first-child,
.theme-btn .btn_inner .btn_icon>span i:last-child {
  transition: transform 0.4s ease-in-out 0s;
}

.theme-btn .btn_inner .btn_icon>span i:last-child {
  position: absolute;
  transform: translateX(-150%);
}

.theme-btn .btn_inner .btn_text {
  display: inline-flex;
  overflow: hidden;
  color: var(--white);
  text-shadow: 0 23px 0 currentColor;
  white-space: nowrap;
}

.theme-btn .btn_inner .btn_text>span {
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: 0.5s;
}

.theme-btn:hover .btn_inner::before {
  width: 100%;
}

.theme-btn:hover .btn_inner .btn_icon i:first-child {
  transform: translateX(150%);
}

.theme-btn:hover .btn_inner .btn_icon i:last-child {
  transform: translateX(0);
}

.theme-btn:hover .btn_inner .btn_text {
  color: var(--white);
}

.theme-btn:hover .btn_inner .btn_text>span {
  transform: translateY(-24px);
}

.gt-theme-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
  text-transform: capitalize;
}

.gt-theme-btn-main.style-2 {
  background-color: var(--theme3);
  border-radius: 70px;
  padding: 7px 30px;
  padding-right: 7px;
}

.gt-theme-btn-main.style-2 .gt-theme-btn-arrow-left,
.gt-theme-btn-main.style-2 .gt-theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  background: var(--header3);
  color: var(--white);
}

.gt-theme-btn-main.style-2 .gt-theme-btn {
  background-color: transparent;
  padding: 0;
  margin-right: 17px;
  font-weight: 600;
}

.gt-theme-btn-main.style-2:hover {
  padding-right: 30px;
  padding-left: 9px;
}

.gt-theme-btn-main.style-2:hover .gt-theme-btn {
  background-color: transparent;
}

.gt-theme-btn-main.style-2:hover .gt-theme-btn-arrow-left {
  left: 5px;
}

.gt-theme-btn-main.style-4 .gt-theme-btn {
  background-color: var(--theme4);
  color: var(--white);
}

.gt-theme-btn-main.style-4 .gt-theme-btn-arrow-left,
.gt-theme-btn-main.style-4 .gt-theme-btn-arrow-right {
  background-color: var(--theme4);
  color: var(--white);
}

.gt-theme-btn-main.style-4:hover .gt-theme-btn {
  background-color: var(--header4);
  color: var(--white);
}

.gt-theme-btn-main.style-4:hover .gt-theme-btn-arrow-left,
.gt-theme-btn-main.style-4:hover .gt-theme-btn-arrow-right {
  background-color: var(--header4);
  color: var(--white);
}

.gt-theme-btn-main.style-5 .gt-theme-btn {
  background-color: var(--theme5);
  color: var(--header4);
}

.gt-theme-btn-main.style-5 .gt-theme-btn-arrow-left,
.gt-theme-btn-main.style-5 .gt-theme-btn-arrow-right {
  background-color: var(--theme5);
  color: var(--header4);
}

.gt-theme-btn-main.style-5:hover .gt-theme-btn {
  color: var(--white);
}

.gt-theme-btn-main.style-5:hover .gt-theme-btn-arrow-left,
.gt-theme-btn-main.style-5:hover .gt-theme-btn-arrow-right {
  color: var(--white);
}

.gt-theme-btn-main:hover .gt-theme-btn-arrow-left {
  scale: 1;
}

.gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
  scale: 0;
}

.gt-theme-btn-main:hover .gt-theme-btn {
  transform: translateX(56px);
}

.gt-theme-btn-main .gt-theme-btn-arrow-left,
.gt-theme-btn-main .gt-theme-btn-arrow-right {
  width: 53px;
  height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme2);
  color: var(--white);
  border-radius: 50%;
  transition: 0.4s;
  text-align: center;
}

@media (max-width: 575px) {

  .gt-theme-btn-main .gt-theme-btn-arrow-left,
  .gt-theme-btn-main .gt-theme-btn-arrow-right {
    width: 48px;
    height: 48px;
  }
}

.gt-theme-btn-main .gt-theme-btn-arrow-left {
  scale: 0;
  position: absolute;
  left: 3px;
}

.gt-theme-btn-main .gt-theme-btn {
  background: var(--theme2);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 30px;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  align-items: center;
  gap: 30px;
  border-radius: 40px;
  transition: 0.4s;
}

@media (max-width: 575px) {
  .gt-theme-btn-main .gt-theme-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

.gt-theme-btn-main:hover .gt-theme-btn {
  background-color: var(--header);
}

.gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
  background-color: var(--header);
}

.link-btn {
  display: inline-block;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

.link-btn i {
  margin-right: 5px;
}

.link-btn:hover {
  color: var(--theme);
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/*---------------------------------------
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 {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
  font-family: "Inter", sans-serif;
}

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

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

.mobile-menus.style-2 .mean-nav ul li a {
  font-size: 18px !important;
  font-weight: 600 !important;
  font-family: "Public Sans", sans-serif !important;
}

@media (max-width: 767px) {
  .mobile-menus.style-2 .mean-nav ul li a {
    font-size: 18px !important;
  }
}

.mobile-menus .mean-nav ul li a {
  font-size: 30px !important;
  font-weight: 600 !important;
  font-family: "Public Sans", sans-serif !important;
}

@media (max-width: 767px) {
  .mobile-menus .mean-nav ul li a {
    font-size: 18px !important;
  }
}

.mobile-menus .mean-container .mean-nav ul li li a {
  font-size: 16px !important;
}

.mobile-menus .mean-nav {
  max-width: 530px;
}

@media (max-width: 1199px) {
  .mobile-menus .mean-nav {
    max-width: initial;
  }
}

.back-to-top {
  border-radius: 50% !important;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.back-to-top.color-2 {
  background-color: var(--theme2);
  color: var(--white);
}

.back-to-top.color-2:hover {
  background-color: var(--header);
}

.back-to-top.color-3 {
  background-color: var(--theme3);
  color: var(--white);
}

.back-to-top.color-3:hover {
  background-color: var(--header);
}

.back-to-top.color-4 {
  background-color: var(--theme4);
  color: var(--white);
}

.back-to-top.color-4:hover {
  background-color: var(--header);
}

.back-to-top.color-5 {
  background-color: var(--theme5);
  color: var(--black);
}

.back-to-top.color-5:hover {
  background-color: var(--header);
  color: var(--white);
}

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

.cursor-outer.color-2 {
  border: 1px solid var(--theme2);
  background-color: var(--theme2);
}

.cursor-outer.color-3 {
  border: 1px solid var(--theme3);
  background-color: var(--theme3);
}

.cursor-outer.color-4 {
  border: 1px solid var(--theme4);
  background-color: var(--theme4);
}

.cursor-outer.color-5 {
  border: 1px solid var(--theme5);
  background-color: var(--theme5);
}

.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%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

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

.cursor-inner {
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner.color-2 {
  background-color: var(--theme2);
}

.cursor-inner.color-3 {
  background-color: var(--theme3);
}

.cursor-inner.color-4 {
  background-color: var(--theme4);
}

.cursor-inner.color-5 {
  background-color: var(--theme5);
}

.cursor-inner span {
  color: var(--white);
  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 {
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  /* $theme-color */
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__content.style-2 .search-popup__form .search-btn {
  color: var(--white);
  background-color: var(--theme2);
  transition: all 0.4s ease-in-out;
}

.search-popup__content.style-2 .search-popup__form .search-btn:hover {
  background-color: var(--header);
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
  background-color: var(--header);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: #fff;
}

.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 "Inter", sans-serif, "Public Sans", sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Inter", 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: "Inter", 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);
}

.preloader.color-2 .animation-preloader .spinner {
  border-top-color: var(--theme2);
}

.preloader.color-2 .animation-preloader .txt-loading .letters-loading {
  color: var(--theme2);
}

.preloader.color-2 p {
  color: var(--theme2);
}

.preloader.color-3 .animation-preloader .spinner {
  border-top-color: var(--theme3);
}

.preloader.color-3 .animation-preloader .txt-loading .letters-loading {
  color: var(--theme3);
}

.preloader.color-3 p {
  color: var(--theme3);
}

.preloader.color-4 .animation-preloader .spinner {
  border-top-color: var(--theme4);
}

.preloader.color-4 .animation-preloader .txt-loading .letters-loading {
  color: var(--theme4);
}

.preloader.color-4 p {
  color: var(--theme4);
}

.preloader.color-5 .animation-preloader .spinner {
  border-top-color: var(--theme5);
}

.preloader.color-5 .animation-preloader .txt-loading .letters-loading {
  color: var(--theme5);
}

.preloader.color-5 p {
  color: var(--theme5);
}

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

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}

.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: 500;
  color: var(--header);
  font-family: "Inter", sans-serif;
  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) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  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: 4px solid var(--theme);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  left: -250px;
  visibility: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  left: 25px;
  right: 25px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-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: 5.5px;
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--black);
  border-radius: 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  margin-left: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb a {
  padding: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Public Sans", sans-serif;
}

.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 {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 20px;
}

.header-1 .container {
  max-width: 1800px;
}

.header-1 .mean__menu-wrapper {
  border-radius: 70px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 0 35px;
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .header-1 .mean__menu-wrapper {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}

.header-1 .mean__menu-wrapper .search-toggler {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.header-1 .mean__menu-wrapper .search-toggler:hover {
  color: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu li a {
  padding: 14px 0;
}

.header-1 .mean__menu-wrapper .main-menu ul li a {
  color: rgba(255, 255, 255, 0.75);
}

.header-1 .mean__menu-wrapper .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-1 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 4px solid var(--theme);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
  background: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 5.5px;
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--black);
  border-radius: 30px;
}

.header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  margin-left: 0;
}

.header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  font-family: "Inter", sans-serif;
}

.header-1 .mean__menu-wrapper .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-1 .mean__menu-wrapper .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-1 .sidebar__toggle {
  color: var(--white);
}

.header-1 .sidebar__toggle:hover {
  color: var(--theme);
}

.header-1 .header-right .search-toggler,
.header-1 .header-right .sidebar__toggle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 575px) {

  .header-1 .header-right .search-toggler,
  .header-1 .header-right .sidebar__toggle {
    width: 42px;
    height: 42px;
    line-height: 42px;
  }
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-section-2 .container {
  max-width: 1845px;
}

.header-section-2 .header-top-2 {
  background-color: var(--header2);
  padding: 14px 0;
}

.header-section-2 .header-top-2 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 575px) {
  .header-section-2 .header-top-2 p {
    font-size: 14px;
  }
}

.header-section-2 .header-top-2 p a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .header-section-2 .header-top-2 p a {
    font-size: 14px;
  }
}

.header-section-2 .header-top-2 p a i {
  margin-left: 5px;
}

.header-section-2 .header-top-2 p a:hover {
  color: var(--theme2);
}

.header-section-2 .header-2 {
  background-color: var(--white);
}

@media (max-width: 575px) {
  .header-section-2 .header-2 .logo img {
    width: 120px;
  }
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a {
  color: var(--header2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--theme2) !important;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 4px solid var(--theme2);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
  background: var(--theme2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--theme2) !important;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a {
  color: var(--theme2) !important;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  left: 15px;
  right: 15px;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
  width: initial;
  justify-content: initial;
  display: initial;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 9px 25px;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  font-family: "Inter", sans-serif;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover>a {
  color: var(--theme2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover>a::after {
  color: var(--theme2);
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-section-2 .header-2 .header-right {
  gap: 15px;
}

.header-section-2 .header-2 .search-toggler {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #E6E8EB;
  text-align: center;
  border-radius: 50%;
}

.header-section-2 .header-2 .search-toggler:hover {
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid var(--theme2);
}

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn {
  padding: 8px 24px;
}

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-left,
.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-right {
  width: 45px;
  height: 45px;
}

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-left {
  left: 12px;
}

.header-3 {
  position: relative;
  z-index: 999;
}

.header-3 .mega-menu-wrapper {
  margin: 0 30px;
}

.header-3 .header-right {
  gap: 20px;
}

.header-3 .header-right .social-icon {
  gap: 8px;
}

@media (max-width: 1399px) {
  .header-3 .header-right .social-icon {
    display: none !important;
  }
}

.header-3 .header-right .social-icon a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--header3);
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

.header-3 .header-right .social-icon a:hover {
  background-color: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li a {
  color: var(--header3);
}

.header-3 .mean__menu-wrapper .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-3 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--theme3) !important;
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header3);
  border-top: 4px solid var(--theme3);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li a {
  color: var(--header3);
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
  background: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a {
  color: var(--theme3) !important;
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  left: 15px;
  right: 15px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
  width: initial;
  justify-content: initial;
  display: inline-block;
  padding-right: 7px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main:hover .gt-theme-btn {
  padding-right: 25px;
  padding-left: 5px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main:hover .gt-theme-btn-arrow-left {
  top: 6px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 9px 25px;
  display: inline-block;
  padding-right: 0;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  font-family: "Inter", sans-serif;
}

.header-3 .mean__menu-wrapper .main-menu ul li:hover>a {
  color: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li:hover>a::after {
  color: var(--theme3);
}

.header-3 .mean__menu-wrapper .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-4 .container {
  max-width: 1860px;
}

@media (max-width: 575px) {
  .header-4 .logo img {
    width: 120px;
  }
}

.header-4 .mean__menu-wrapper .main-menu ul li a {
  color: var(--header4);
}

.header-4 .mean__menu-wrapper .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-4 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--theme4) !important;
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 4px solid var(--theme4);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li a {
  color: var(--header4);
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
  background: var(--theme4);
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--theme4) !important;
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a {
  color: var(--theme4) !important;
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme4);
}

.header-4 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme4);
}

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  left: 15px;
  right: 15px;
}

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
  width: initial;
  justify-content: initial;
  display: initial;
}

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 9px 25px;
}

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  font-family: "Inter", sans-serif;
}

.header-4 .mean__menu-wrapper .main-menu ul li:hover>a {
  color: var(--theme4);
}

.header-4 .mean__menu-wrapper .main-menu ul li:hover>a::after {
  color: var(--theme4);
}

.header-4 .mean__menu-wrapper .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-4 .header-right {
  gap: 15px;
}

.header-4 .mean__menu-wrapper {
  border-radius: 66.111px;
  border: 1px solid #EBE8E6;
  padding: 0 35px;
  display: flex;
  align-items: center;
  background-color: var(--white);
}

@media (max-width: 1199px) {
  .header-4 .mean__menu-wrapper {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}

.header-4 .sidebar__toggle {
  width: 51px;
  height: 51px;
  line-height: 51px;
  border-radius: 50%;
  border-radius: 66.111px;
  border: 1px solid #EBE8E6;
  background: var(--white);
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header4);
}

.header-4 .sidebar__toggle:hover {
  background-color: var(--theme4);
  border: 1px solid var(--theme4);
  color: var(--white);
}

.header-4 .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-5 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-5 .container {
  max-width: 1840px;
}

.header-5 .header-left {
  display: flex;
  align-items: center;
  gap: 95px;
}

.header-5 .header-right {
  gap: 15px;
}

.header-5 .header-right .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-5 .mean__menu-wrapper .main-menu ul li a {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-5 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--header4) !important;
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 4px solid var(--theme5);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li a {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
  background: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--header4) !important;
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a {
  color: var(--header4) !important;
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li:hover>a::after {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  left: 15px;
  right: 15px;
}

.header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
  width: initial;
  justify-content: initial;
  display: initial;
}

.header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 9px 25px;
}

.header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
  margin-left: -5px;
}

.header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  font-family: "Inter", sans-serif;
}

.header-5 .mean__menu-wrapper .main-menu ul li:hover>a {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li:hover>a::after {
  color: var(--header4);
}

.header-5 .mean__menu-wrapper .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-5 .header-main {
  padding: 0;
}

@media (max-width: 1199px) {
  .header-5 .header-main {
    padding: 10px 0;
  }
}

.header-5 .contact-info {
  display: inline-block;
  background-color: var(--white);
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  border-radius: 38px;
}

@media (max-width: 767px) {
  .contact-info-section .contact-info-box .icon {
    flex: 0 0 64px;
    min-width: 64px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .contact-info-section .contact-info-box {
    padding: 28px 22px;
    gap: 12px;
    align-items: flex-start;
  }

  .contact-info-section .contact-info-box .icon {
    flex: 0 0 56px;
    min-width: 56px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .header-5 .contact-info {
    display: none;
  }
}

.header-5 .contact-info .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  background-color: var(--theme6);
  color: var(--header4);
  font-size: 20px;
  display: inline-block;
  text-align: center;
}

.header-5 .contact-info .text {
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-left: 10px;
  color: var(--header4);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky.header-1 {
  background-color: var(--header);
  padding: 12px 0;
  box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}

.sticky.header-2 {
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-3 {
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-4 {
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-5 {
  background-color: var(--theme6);
}

.sticky.header-5 .header-main {
  padding: 10px 0;
}

.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.style-3 {
  border-left: 2px solid var(--theme3);
}

.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__close {
  background-color: var(--theme3);
}

.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}

.offcanvas__info.style-3 .offcanvas__wrapper .social-icon a:hover {
  color: var(--theme3);
  border: 1px solid var(--theme3);
}

.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme3);
}

.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__info.style-2 {
  border-left: 2px solid var(--theme2);
}

.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__close {
  background-color: var(--theme2);
}

.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}

.offcanvas__info.style-2 .offcanvas__wrapper .social-icon a:hover {
  color: var(--theme2);
  border: 1px solid var(--theme2);
}

.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme2);
}

.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__info.style-4 {
  border-left: 2px solid var(--theme4);
}

.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__close {
  background-color: var(--theme4) !important;
}

.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}

.offcanvas__info.style-4 .offcanvas__wrapper .social-icon a:hover {
  color: var(--theme4);
  border: 1px solid var(--theme4);
}

.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme4);
}

.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__info.style-5 {
  border-left: 2px solid var(--theme5);
}

.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__close {
  background-color: var(--theme5) !important;
}

.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__close i {
  color: var(--black);
}

.offcanvas__info.style-5 .offcanvas__wrapper .social-icon a:hover {
  color: var(--theme5);
  border: 1px solid var(--theme5);
}

.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme5);
}

.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact span {
  text-transform: initial;
}

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

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__logo img {
    width: 130px;
  }
}

.offcanvas__wrapper .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .social-icon {
  margin-top: 40px;
  gap: 16px;
  display: flex;
  align-items: center;
}

.offcanvas__wrapper .social-icon a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  border: 1px solid #E6E8EB;
  background: transparent;
  text-align: center;
  font-size: 18px;
}

.offcanvas__wrapper .social-icon a i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

.offcanvas__wrapper .social-icon a:hover {
  color: var(--theme);
  border: 1px solid var(--theme);
}

.offcanvas__wrapper .social-icon a:hover i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.offcanvas__wrapper .offcanvas__contact {
  margin-top: 0;
}

.offcanvas__wrapper .offcanvas__contact h4 {
  font-size: 26px;
}

.offcanvas__wrapper .offcanvas__contact ul {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__contact ul {
    display: none;
  }
}

.offcanvas__wrapper .offcanvas__contact ul li {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__contact ul li {
    font-size: 14px;
  }
}

.offcanvas__wrapper .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.offcanvas__wrapper .offcanvas__contact ul li a {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 99999;
  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;
  border-radius: 0 0 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 150px 0 80px;
  z-index: 9;
  text-align: center;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper {
    background-size: contain;
    background-position: center center;
    background-color: #0f172a;
    background-repeat: no-repeat;
  }

  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 96px;
    padding-bottom: 48px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 55px;
  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: 26px;
  }
}

.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: 12px;
}

.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 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-area {
  background-color: var(--bg2);
  margin: 0 30px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 1399px) {
  .footer-area {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.footer-area.footer-area-3 {
  background-color: var(--header3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-area.footer-area-3::before {
  position: absolute;
  top: -16%;
  right: -17%;
  content: "";
  width: 610px;
  height: 610px;
  border-radius: 50%;
  border: 100px solid var(--theme3);
  z-index: -1;
}

@media (max-width: 1899px) {
  .footer-area.footer-area-3::before {
    top: -35%;
    right: -20%;
  }
}

@media (max-width: 1600px) {
  .footer-area.footer-area-3::before {
    top: -30%;
    right: -26%;
  }
}

@media (max-width: 1399px) {
  .footer-area.footer-area-3::before {
    display: none;
  }
}

.footer-area.footer-area-3 .footer-lets-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .footer-area.footer-area-3 .footer-lets-text {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-area.footer-area-3 .footer-lets-text {
    padding-bottom: 80px;
  }
}

.footer-area.footer-area-3 .footer-lets-text .lets-title {
  position: relative;
  max-width: 650px;
}

.footer-area.footer-area-3 .footer-lets-text .lets-title .gt-theme-btn-main {
  position: absolute;
  bottom: 13px;
  right: 0;
}

@media (max-width: 1199px) {
  .footer-area.footer-area-3 .footer-lets-text .lets-title .gt-theme-btn-main {
    position: static;
    margin-top: 30px;
  }
}

.footer-area.footer-area-3 .footer-lets-text h2 {
  color: var(--white);
  font-size: 110.859px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -3.079px;
}

@media (max-width: 1199px) {
  .footer-area.footer-area-3 .footer-lets-text h2 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .footer-area.footer-area-3 .footer-lets-text h2 {
    font-size: 75px;
  }

  .footer-area.footer-area-3 .footer-lets-text h2 br {
    display: none;
  }
}

@media (max-width: 575px) {
  .footer-area.footer-area-3 .footer-lets-text h2 {
    font-size: 55px;
  }
}

.footer-area.footer-area-3 .footer-lets-text p {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 155.556%;
  letter-spacing: -1px;
  max-width: 400px;
  padding-right: 130px;
}

@media (max-width: 1399px) {
  .footer-area.footer-area-3 .footer-lets-text p {
    padding-right: 0;
  }
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme3);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 h3 {
    font-size: 26px;
  }
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 20px;
  border-radius: 8px;
  line-height: 1;
  color: var(--header3);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form input::placeholder {
  color: var(--header3);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form .email-btn {
  color: var(--theme3);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: var(--white);
  margin-top: 20px;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: inline-grid;
  place-items: center;
  transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
  background: var(--white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .check {
  width: 14px;
  height: 14px;
  transform: scale(0);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  color: var(--white);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:checked+.box {
  background: var(--theme3);
  border-color: var(--theme3);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:checked+.box .check {
  transform: scale(1);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:focus+.box {
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
  border-color: var(--theme3);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}

.footer-area.style-footer-area-4 {
  margin: 0;
  border-radius: 0;
  padding: 0 !important;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .widget-head h3 {
  color: var(--header4) !important;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(0, 0, 0, 0.7);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme4);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 h3 {
  color: var(--header4);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 h3 {
    font-size: 26px;
  }
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 20px;
  border-radius: 0;
  line-height: 1;
  border: 1px solid var(--header4);
  color: var(--header3);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form input::placeholder {
  color: var(--header4);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form .email-btn {
  color: var(--theme4);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: var(--header4);
  margin-top: 20px;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: inline-grid;
  place-items: center;
  transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
  background: var(--white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .check {
  width: 14px;
  height: 14px;
  transform: scale(0);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  color: var(--white);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked+.box {
  background: var(--theme4);
  border-color: var(--theme4);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked+.box .check {
  transform: scale(1);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:focus+.box {
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
  border-color: var(--theme4);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}

.footer-area.style-footer-area-4 .footer-content p {
  color: var(--header4) !important;
}

.footer-area.style-footer-area-4 .footer-content .social-icon {
  gap: 8px;
  margin-top: 30px;
}

.footer-area.style-footer-area-4 .footer-content .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white);
  text-align: center;
}

.footer-area.style-footer-area-4 .footer-content .social-icon a:hover {
  background-color: var(--theme4);
}

.footer-section {
  padding-bottom: 30px;
}

.footer-widget-wrapper {
  padding: 70px 0 100px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    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 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 310px;
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: #F2F5F7;
  font-size: 16px;
  line-height: 162.5%;
}

.footer-widget-wrapper .footer-widget-items .footer-content .footer-btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 70px;
  border: 1px solid #3D4857;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-family: "Inter", sans-serif;
  padding: 0 30px;
  padding-left: 7px;
  margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-content .footer-btn .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .footer-widget-items .footer-content .footer-btn:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.footer-widget-wrapper .footer-widget-items .footer-content .footer-btn:hover .icon {
  background-color: var(--header);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .footer-widget-items .contact-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  font-family: "Inter", sans-serif;
}

.footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .contact-list li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper.style-2 .footer-widget-items .widget-head h3 {
  color: var(--header2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content p {
  color: var(--header2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: rgba(41, 15, 28, 0.35);
  color: var(--white);
  font-size: 14px;
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .contact-list li {
  color: rgba(41, 15, 28, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  font-family: "Inter", sans-serif;
}

.footer-widget-wrapper.style-2 .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper.style-2 .footer-widget-items .contact-list li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(61, 72, 87, 0.6);
  padding: 25px 0;
}

.footer-bottom.style-bottom-4 {
  border-top: 1px solid #DFDCD2;
}

.footer-bottom.style-bottom-4 p {
  color: var(--header4) !important;
}

.footer-bottom.style-bottom-4 p b {
  color: var(--theme4) !important;
}

.footer-bottom.style-bottom-4 .footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom.style-bottom-4 .footer-list li a {
  color: var(--header4) !important;
}

.footer-bottom.style-bottom-4 .footer-list li a:hover {
  color: var(--theme4) !important;
}

.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}

.footer-bottom .footer-bottom-wrapper p {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom .footer-bottom-wrapper p b {
  color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom .footer-bottom-wrapper .social-icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: rgba(61, 72, 87, 0.5);
  color: var(--white);
  font-size: 14px;
}

.footer-bottom .footer-bottom-wrapper .social-icon a:hover {
  background-color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.footer-bottom .footer-bottom-wrapper .footer-list li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
  color: var(--theme);
}

.footer-bottom.footer-bottom-2 {
  border-top: 1px solid rgba(41, 15, 28, 0.1);
}

.footer-bottom.footer-bottom-2 p {
  color: var(--header2);
}

.footer-bottom.footer-bottom-2 p b {
  color: var(--theme2);
}

.footer-bottom.footer-bottom-2 .footer-list li {
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom.footer-bottom-2 .footer-list li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-bottom.footer-bottom-2 .footer-list li a:hover {
  color: var(--theme2);
}

.footer-bottom.style-3 p b {
  color: var(--theme3);
}

.footer-bottom.style-3 .footer-list li a:hover {
  color: var(--theme3);
}

.footer-widget-wrapper-5 {
  position: relative;
  z-index: 9;
  padding: 120px 0 90px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-5 {
    padding: 80px 0 80px;
  }
}

.footer-widget-wrapper-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme6);
  z-index: -1;
  width: 50%;
  clip-path: polygon(50% 0%, 100% 0, 100% 91%, 94% 100%, 0 100%, 0% 60%, 0 0);
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5::before {
    display: none;
  }
}

.footer-widget-wrapper-5 .footer-left-item {
  overflow: hidden;
  position: relative;
  z-index: 99;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-5 .footer-left-item {
    margin-bottom: 40px;
  }
}

.footer-widget-wrapper-5 .footer-left-item h2 {
  color: var(--header4);
  font-size: 48px;
  font-weight: 600;
  line-height: 120.833%;
  letter-spacing: -2px;
  max-width: 590px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 34px;
  }
}

@media (max-width: 470px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 28px;
  }
}

.footer-widget-wrapper-5 .footer-left-item form {
  position: relative;
  margin-top: 25px;
  max-width: 580px;
  width: 100%;
}

.footer-widget-wrapper-5 .footer-left-item form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 30px;
  border-radius: 0;
  line-height: 1;
  color: var(--text);
}

.footer-widget-wrapper-5 .footer-left-item form input::placeholder {
  color: var(--text);
}

.footer-widget-wrapper-5 .footer-left-item form .email-btn {
  background: var(--theme5);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 0;
  color: var(--header4);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.footer-widget-wrapper-5 .footer-left-item form .email-btn:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper-5 .footer-left-item ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 135px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-left-item ul {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.footer-widget-wrapper-5 .footer-left-item ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header4);
  font-family: "Inter", sans-serif;
}

.footer-widget-wrapper-5 .footer-left-item ul li a {
  color: var(--header4);
}

.footer-widget-wrapper-5 .footer-right-item {
  padding-left: 65px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item {
    padding-left: 0;
  }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 75px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item .footer-header-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item::before {
  position: absolute;
  bottom: 0;
  left: -78px;
  right: 0;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item p {
  color: var(--header4);
  max-width: 270px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head {
  color: var(--header4);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li a {
  color: var(--header4);
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover a {
  color: var(--header4);
}

.footer-widget-wrapper-5 .footer-right-item .social-icon {
  gap: 6px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item .social-icon {
    display: flex !important;
  }
}

.footer-widget-wrapper-5 .footer-right-item .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header4);
  color: var(--white);
}

.footer-widget-wrapper-5 .footer-right-item .social-icon a:hover {
  background-color: var(--theme5);
  color: var(--header4);
}

.footer-bottom-5 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-5 .footer-bottom-wrapper-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .footer-bottom-5 .footer-bottom-wrapper-5 {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

.footer-bottom-5 .footer-bottom-wrapper-5 p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--header4);
}

.footer-bottom-5 .footer-bottom-wrapper-5 p b {
  color: var(--header4);
  font-weight: 500;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li {
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li .dots {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--header4);
  display: inline-block;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a {
  color: var(--header4);
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a:hover {
  color: var(--theme2);
}

.footer-section-3 {
  padding-bottom: 100px;
}

@media (max-width: 1399px) {
  .footer-section-3 {
    padding-bottom: 0;
  }
}

.footer-section-3 .footer-area-3 {
  margin-bottom: 30px;
}

.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 {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.section-title .sub-title img {
  line-height: 1;
  margin-right: 5px;
  margin-top: -3px;
}

.section-title h2 {
  color: var(--header2);
  font-weight: 600;
}

.section-title h2 span {
  color: rgba(15, 23, 42, 0.3);
}

.section-title.style-2 .sub-title {
  color: var(--theme2);
}

.section-title.style-2 h2 span {
  color: var(--theme2);
  text-decoration: underline;
  border-bottom: 4px solid var(--theme2);
}

.section-title.style-3 .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-radius: 50px;
  color: var(--theme3);
  text-transform: uppercase;
  background-color: var(--bg4);
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
}

.section-title.style-3 h2 {
  font-weight: 600;
  color: var(--header3);
}

.section-title.style-4 .sub-title {
  color: var(--theme4);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title.style-4 h2 {
  font-weight: 600;
  color: var(--header4);
}

.section-title.style-4 h2 span {
  color: rgba(0, 0, 0, 0.3);
}

.section-title.style-5 .sub-title {
  color: var(--header4);
  background-color: var(--theme6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 12px;
  border-radius: 18px;
}

.section-title.style-5 h2 {
  color: var(--header4);
  font-weight: 600;
}

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

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.section-title-2 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }

  .section-title-2 br {
    display: none;
  }
}

.section-title-2 h6 {
  border-radius: 6px;
  background: rgba(191, 247, 71, 0.1);
  display: inline-block;
  padding: 8px 15px;
  line-height: 1;
  color: var(--theme);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Public Sans", sans-serif;
  margin-bottom: 24px;
}

.section-title-2 h6 img {
  margin-right: 7px;
}

.section-title-2 h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 128%;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .section-title-2 h2 {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {
  .section-title-2 h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .section-title-2 h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .section-title-2 h2 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .section-title-2 h2 {
    font-size: 34px;
  }
}

.section-title-2 h2 span {
  color: var(--theme);
}

.section-title-2 .prtoject-title {
  font-size: 200px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 1199px) {
  .section-title-2 .prtoject-title {
    font-size: 150px;
  }
}

@media (max-width: 575px) {
  .section-title-2 .prtoject-title {
    font-size: 140px;
  }
}

@media (max-width: 470px) {
  .section-title-2 .prtoject-title {
    font-size: 100px;
  }
}

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

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

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

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

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

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

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

.section-padding {
  padding: 20px 0;
}

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

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

.section-padding-2 {
  padding: 60px 0;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
  padding: 130px 0 0;
  position: relative;
  z-index: 9;
  border-radius: 0 0 20px 20px;
}

@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 170px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    padding-top: 210px;
  }
}

.hero-1 .brevon-text {
  position: absolute;
  right: 0;
  opacity: 0.2;
  top: 20%;
}

@media (max-width: 1199px) {
  .hero-1 .brevon-text {
    display: none;
  }
}

.hero-1 .light-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.hero-1 .hero-content h6 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.hero-1 .hero-content h6 span {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 20px;
  height: 23px;
  display: inline-block;
  line-height: 23px;
  padding: 0 10px;
  margin-right: 10px;
}

.hero-1 .hero-content h1 {
  color: var(--white);
  margin-top: 25px;
  line-height: 110%;
}

.hero-1 .hero-content h1 span {
  color: rgba(255, 255, 255, 0.3);
}

.hero-1 .hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-top: 25px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content p {
    line-height: 150%;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}

.hero-1 .hero-content .theme-btn {
  margin-top: 30px;
}

.hero-1 .hero-content .hero-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 120px;
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-info {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.hero-1 .hero-content .hero-info .info-content h3 {
  color: var(--white);
  font-size: 38px;
  font-weight: 500;
}

.hero-1 .hero-content .hero-info .info-content p {
  margin-top: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
}

.hero-1 .hero-image {
  position: relative;
}

@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: -130px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }

  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-1 .hero-image .box-1 {
  position: absolute;
  top: 46%;
  left: 11%;
}

@media (max-width: 1199px) {
  .hero-1 .hero-image .box-1 {
    display: none;
  }
}

.hero-1 .hero-image .box-2 {
  position: absolute;
  right: 0;
  bottom: 110px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-image .box-2 {
    display: none;
  }
}

.hero-2 {
  padding: 50px 0 30px;
}

.hero-2 .hero-content {
  text-align: center;
}

.hero-2 .hero-content h6 {
  color: var(--header2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 133.302px;
  border: 1.025px solid #EBE6E8;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 3px;
  padding-left: 15px;
  margin-bottom: 15px;
}

@media (max-width: 470px) {
  .hero-2 .hero-content h6 {
    font-size: 12px;
  }
}

.hero-2 .hero-content h1 {
  color: var(--header2);
  font-size: 76px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -2px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-2 .hero-content p {
  color: var(--header2);
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  max-width: 600px;
  margin: 20px auto 30px;
}

@media (max-width: 767px) {
  .hero-2 .hero-content p {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 16px;
  }
}

.hero-2 .hero-banner-items {
  margin: 0 30px;
}

.hero-2 .hero-image-items {
  position: relative;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-image-items {
    height: 550px;
  }

  .hero-2 .hero-image-items img {
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-image-items {
    height: 450px;
  }
}

.hero-2 .hero-image-items img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.hero-2 .hero-image-items h3 {
  font-size: 32px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -1px;
  position: absolute;
  top: 60px;
  left: 50px;
}

@media (max-width: 1600px) {
  .hero-2 .hero-image-items h3 {
    left: 25px;
    top: 25px;
    right: 25px;
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-image-items h3 {
    font-size: 24px;
  }
}

.hero-2 .hero-image-items .content {
  position: absolute;
  bottom: 60px;
  left: 50px;
  right: 50px;
}

@media (max-width: 1600px) {
  .hero-2 .hero-image-items .content {
    left: 25px;
    bottom: 25px;
    right: 25px;
  }
}

.hero-2 .hero-image-items .content h2 {
  color: var(--white);
  font-size: 140.818px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1399px) {
  .hero-2 .hero-image-items .content h2 {
    font-size: 70px;
  }
}

.hero-2 .hero-image-items .content p {
  color: var(--white);
  font-size: 18px;
}

.hero-2 .hero-image-items .content .link-btn {
  color: var(--white);
  text-decoration: underline;
}

.hero-2 .hero-image-items .content .link-btn:hover {
  color: var(--theme2);
}

.hero-2 .hero-image-items .video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 15px;
  display: flex;
  align-items: center;
}

.hero-2 .hero-image-items .video-text span {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}

.hero-2 .hero-image-items .video-text .video-btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
}

.hero-2 .hero-image-items .video-text .video-btn:hover {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
}

.hero-3 {
  background-color: var(--bg4);
  margin: 0 30px;
  border-radius: 16px;
  padding: 35px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  margin-top: 100px;
}

@media (max-width: 1399px) {
  .hero-3 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
    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;
}

.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(--header3);
  line-height: 108.571%;
  letter-spacing: -2.075px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 54px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 470px) {
  .hero-3 .hero-content h1 {
    font-size: 37px;
  }
}

.hero-3 .hero-content p {
  font-size: 18px;
  line-height: 155.556%;
  color: var(--header3);
  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 h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--header3);
}

.hero-3 .hero-content .hero-btn h4 i {
  font-size: 18px;
  margin-right: 3px;
}

.hero-3 .hero-content .hero-btn h4 a {
  color: var(--header3);
}

.hero-3 .hero-content .hero-btn h4:hover {
  color: var(--theme3);
}

.hero-3 .hero-content .hero-btn h4:hover a {
  color: var(--theme3);
}

.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(--header3);
  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 .ripple::before,
.hero-3 .hero-image .video-circle .ripple::after {
  width: 72px;
  height: 72px;
  box-shadow: 0 0 0 0 rgba(5, 164, 191, 0.5);
}

.hero-3 .hero-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme3);
  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(--header3);
}

.hero-3 .hero-image .video-circle img {
  margin-left: 0;
}

.hero-3 .hero-image .grap-shape {
  position: absolute;
  bottom: -30px;
  left: -23%;
}

@media (max-width: 1199px) {
  .hero-3 .hero-image .grap-shape {
    display: none;
  }
}

.hero-3 .hero-image .vec-shape {
  position: absolute;
  top: 18%;
  left: -5%;
}

@media (max-width: 1199px) {
  .hero-3 .hero-image .vec-shape {
    display: none;
  }
}

.hero-3 .hero-image .vec-shape img {
  margin-left: 0;
}

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

.hero-4 .hero-content h1 {
  color: var(--header4);
  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: 100px;
  }
}

@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 90px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 470px) {
  .hero-4 .hero-content h1 {
    font-size: 36px;
  }
}

.hero-4 .hero-content h1 .text {
  color: var(--theme4);
  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(--header4);
  color: var(--white);
}

.hero-4 .hero-content .hero-bottom .social-icon a:hover {
  background-color: var(--theme4);
}

.hero-4 .hero-content .hero-bottom .content {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--header4);
  max-width: 430px;
  padding-top: 30px;
}

@media (max-width: 575px) {
  .hero-4 .hero-content .hero-bottom .content {
    padding-top: 20px;
  }
}

.hero-4 .hero-content .hero-bottom .content p {
  color: var(--header4);
  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: 600px;
  }

  .hero-4 .hero-image img {
    object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .hero-4 .hero-image {
    margin-top: 80px;
    height: 500px;
  }

  .hero-4 .hero-image img {
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-image {
    margin-top: 50px;
    height: 600px;
  }

  .hero-4 .hero-image img {
    object-fit: cover;
  }
}

.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-5 {
  background-color: var(--theme6);
  padding: 200px 0 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .hero-5 {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero-5 {
    padding-top: 150px;
  }
}

.hero-5 .hero-content h1 {
  font-size: 82px;
  font-weight: 600;
  color: var(--header4);
  line-height: 100%;
}

@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-content h1 {
    font-size: 70px;
  }

  .hero-5 .hero-content h1 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 65px;
    line-height: 130% !important;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 470px) {
  .hero-5 .hero-content h1 {
    font-size: 40px;
  }
}

.hero-5 .hero-content p {
  color: var(--header4);
  font-size: 18px;
  line-height: 155.556%;
  max-width: 465px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .hero-5 .hero-content p {
    font-size: 16px;
    margin-top: 25px;
  }
}

.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn-arrow-left,
.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn-arrow-right {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn {
  background-color: var(--theme5);
}

.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
  background-color: var(--theme5);
}

.hero-5 .hero-content .social-icon {
  gap: 6px;
  margin-top: 150px;
}

@media (max-width: 1199px) {
  .hero-5 .hero-content .social-icon {
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-content .social-icon {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-content .social-icon {
    margin-top: 40px;
  }
}

.hero-5 .hero-content .social-icon span {
  font-size: 16px;
  font-weight: 500;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  display: inline-block;
  margin-right: 5px;
}

.hero-5 .hero-content .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: var(--header4);
  text-align: center;
  color: var(--theme6);
}

.hero-5 .hero-content .social-icon a:hover {
  background-color: var(--theme5);
  color: var(--header4);
}

.hero-5 .hero-image {
  position: absolute;
  right: 0;
  top: -10px;
  bottom: 0;
  max-width: 892px;
}

@media (max-width: 1199px) {
  .hero-5 .hero-image {
    position: relative;
    margin-top: 30px;
    left: initial;
    right: initial;
    bottom: initial;
    max-width: initial;
  }

  .hero-5 .hero-image img {
    width: 100%;
  }
}

.hero-5 .hero-image img {
  height: 900px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1600px) {
  .hero-5 .hero-image img {
    max-width: 750px;
    height: 900px;
  }
}

@media (max-width: 1399px) {
  .hero-5 .hero-image img {
    max-width: 620px;
    height: 800px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-image img {
    max-width: initial;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-image img {
    height: 550px;
  }
}

.hero-5 .hero-image .hero-info {
  background: rgba(253, 252, 247, 0.08);
  backdrop-filter: blur(15px);
  padding: 35px 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: inline-block;
}

@media (max-width: 1399px) {
  .hero-5 .hero-image .hero-info {
    right: 0;
    left: initial;
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-image .hero-info {
    padding: 22px;
    top: 0;
    bottom: initial;
    right: initial;
  }
}

.hero-5 .hero-image .hero-info img {
  width: initial;
  height: initial;
}

.hero-5 .hero-image .hero-info::before {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 20px;
  height: 20px;
  content: "";
  background-color: var(--theme5);
  z-index: 99;
}

@media (max-width: 1199px) {
  .hero-5 .hero-image .hero-info::before {
    display: none;
  }
}

.hero-5 .hero-image .hero-info span {
  font-size: 16px;
  font-weight: 600;
  color: #F8FAFC;
  font-family: "Inter", sans-serif;
  display: block;
  max-width: 270px;
  margin-top: 20px;
}

.hero-5 .hero-image .hero-counter {
  position: absolute;
  bottom: 0;
  left: -22%;
  z-index: 9;
  background-color: var(--theme5);
  padding: 34px 35px;
}

@media (max-width: 1399px) {
  .hero-5 .hero-image .hero-counter {
    left: -26%;
    padding: 28px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-image .hero-counter {
    left: 0;
    padding: 28px;
  }
}

.hero-5 .hero-image .hero-counter h2 {
  font-size: 52px;
  font-weight: 600;
  color: var(--header4);
  margin-bottom: 40px;
}

.hero-5 .hero-image .hero-counter h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--header4);
}

.hero-5 .vec-shape {
  position: absolute;
  left: 37%;
  bottom: 25%;
  animation: rounded 5s linear infinite;
}

@media (max-width: 1199px) {
  .hero-5 .vec-shape {
    display: none;
  }
}

.hero-5 .scroll-down {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 99;
  cursor: pointer;
}

@media (max-width: 1600px) {
  .hero-5 .scroll-down {
    left: 20px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .scroll-down {
    display: none;
  }
}

.about-section {
  margin: 0 30px;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .about-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.about-wrapper .about-image {
  border-radius: 16px;
  max-width: 730px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content {
    padding-bottom: 40px;
  }
}

@media (max-width: 1600px) {
  .about-wrapper .about-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper .about-content h2 {
    font-size: 36px;
  }

  .about-wrapper .about-content h2 br {
    display: none;
  }
}

@media screen and (max-width: 1350px) {
  .about-wrapper .about-content h2 {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-content h2 {
    font-size: 33px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .about-wrapper .about-content h2 {
    font-size: 27px;
  }
}

.about-wrapper .about-content .theme-btn {
  margin-top: 30px;
  background-color: var(--header);
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .theme-btn {
    margin-top: 22px;
  }
}

.about-wrapper .about-content .theme-btn .btn_inner::before {
  background-color: var(--theme);
}

.about-wrapper .about-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items {
    display: block;
  }
}

.about-wrapper .about-content .about-conter-items .counter-box {
  max-width: 300px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items .counter-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}

.about-wrapper .about-content .about-conter-items .counter-box h6 {
  font-size: 16px;
  font-weight: 600;
}

.about-wrapper .about-content .about-conter-items .counter-box h2 {
  font-size: 72px;
  font-weight: 500;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}

.about-wrapper .about-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #1F2937;
  margin-top: 15px;
}

.about-wrapper .about-content .about-conter-items .counter-box.active {
  background-color: var(--theme);
}

.about-wrapper .about-content .about-conter-items .counter-box.active h6 {
  color: var(--white);
}

.about-wrapper .about-content .about-conter-items .counter-box.active h2 {
  color: var(--white);
}

.about-wrapper .about-content .about-conter-items .counter-box.active p {
  color: var(--white);
}

.about-wrapper .about-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}

.about-wrapper .about-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-wrapper .about-content .about-conter-items .about-vide-bg .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.about-wrapper .about-content .about-conter-items .about-vide-bg .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.about-wrapper-2 .about-image-items .thumb {
  border-radius: 8px;
}

.about-wrapper-2 .about-image-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.about-wrapper-2 .about-image-items .content {
  padding: 35px 30px;
  border-radius: 8px;
  background-color: var(--bg3);
  margin-top: 30px;
}

@media (max-width: 470px) {
  .about-wrapper-2 .about-image-items .content {
    padding: 25px;
  }
}

.about-wrapper-2 .about-image-items .content h3,
.about-wrapper-2 .about-image-items .content p {
  color: var(--header2);
}

.about-wrapper-2 .about-image-items .content p {
  margin-top: 10px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .content p {
    font-size: 16px;
  }
}

.about-wrapper-2 .about-content {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-2 .about-content h2 {
  font-size: 44px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content h2 {
    font-size: 40px;
    line-height: 140%;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 470px) {
  .about-wrapper-2 .about-content h2 {
    font-size: 24px;
  }
}

.about-wrapper-2 .about-content .about-list-item {
  margin-top: 90px;
  margin-left: 100px;
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-content .about-list-item {
    margin-top: 30px;
    margin-left: 0;
  }
}

.about-wrapper-2 .about-content .about-list-item ul {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content .about-list-item ul {
    margin-top: 25px;
  }
}

.about-wrapper-2 .about-content .about-list-item ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--header2);
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content .about-list-item ul li {
    font-size: 16px;
  }
}

.about-wrapper-2 .about-content .about-list-item ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-2 .about-content .about-list-item ul li i {
  font-size: 20px;
  color: var(--header2);
}

.about-section-2 {
  border-top: 1px solid #EBE6E8;
}

.about-wrapper-3 .about-conter-items .about-sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-radius: 50px;
  color: var(--theme3);
  text-transform: uppercase;
  background-color: var(--bg4);
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
}

.about-wrapper-3 .about-conter-items h2 {
  color: var(--header3);
  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: 150px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-conter-items h2 {
    font-size: 120px;
    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(--header3);
  letter-spacing: -1.5px;
}

.about-wrapper-3 .about-content {
  font-weight: 600;
  color: var(--header3);
}

.about-wrapper-3 .about-content .about-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--header3);
  line-height: 155.556%;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: justify;
}

@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: 600px;
  }

  .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 h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-top: 20px;
}

.about-wrapper-3 .home-about-image {
  margin-top: 32px;
  height: auto !important;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.about-wrapper-3 .home-about-image img {
  width: 100%;
  height: auto !important;
  display: block;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .home-about-image {
    height: auto !important;
  }
}

.home-about-section {
  padding-bottom: 120px;
}

.home-about-section::before {
  top: auto;
  bottom: 0;
  height: 170px;
}

.about-section-3 {
  position: relative;
  z-index: 9;
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .about-section-3 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .home-about-section {
    padding-bottom: 90px;
  }

  .home-about-section::before {
    height: 140px;
  }
}

.about-section-3 .about-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  top: 65%;
  z-index: -1;
}

.about-section-3 .about-line img {
  width: 100%;
}

.about-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  /* background-color: var(--bg4); */
  top: 65%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: -1;
}

.about-wrapper-5 .about-left-items .about-thumb {
  height: 488px;
}

.about-wrapper-5 .about-left-items .about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-wrapper-5 .about-left-items .about-bottom-content {
  background: #FFFDF5;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .about-wrapper-5 .about-left-items .about-bottom-content {
    flex-wrap: wrap;
    padding: 30px;
  }
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-counter {
  padding-top: 5px;
  padding-bottom: 10px;
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-counter .sub-text {
  background-color: var(--theme5);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--header4);
  padding: 5px 8px;
  line-height: 1;
  border-radius: 17px;
  margin-bottom: 45px;
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-counter h2 {
  color: var(--header4);
  font-size: 48px;
  font-weight: 600;
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-counter p {
  font-weight: 500;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  opacity: 0.88;
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-line {
  width: 1px;
  height: 202px;
  background: #F0ECDF;
  display: inline-block;
}

@media (max-width: 575px) {
  .about-wrapper-5 .about-left-items .about-bottom-content .about-line {
    display: none;
  }
}

.about-wrapper-5 .about-left-items .about-bottom-content .content {
  max-width: 475px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.about-wrapper-5 .about-left-items .about-bottom-content .content p {
  color: var(--header4);
  line-height: 162.5%;
  margin-bottom: 30px;
  opacity: 0.88;
}

@media (max-width: 1399px) {
  .about-wrapper-5 .about-left-items .about-bottom-content .content p {
    margin-bottom: 15px;
  }
}

.about-wrapper-5 .about-content .about-icon-wrap {
  background-color: #FFFDF5;
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}

.about-wrapper-5 .about-content .about-icon-wrap::before {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  content: "";
  background: #F0ECDF;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .about-wrapper-5 .about-content .about-icon-wrap::before {
    display: none;
  }
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item {
  padding: 30px;
  transition: all 0.4s ease-in-out;
  width: 261px;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content {
  margin-top: 25px;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--header4);
  margin-bottom: 15px;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content p {
  line-height: 162.5%;
  color: var(--header4);
  font-size: 15px;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item.active {
  background-color: var(--theme5);
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.about-wrapper-5 .about-content .award-items-box {
  padding: 34px 30px;
  background-color: var(--theme6);
}

@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .award-items-box {
    padding: 18px 30px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .award-items-box {
    height: 100%;
    padding: 34px 30px;
  }
}

.about-wrapper-5 .about-content .award-items-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  margin-top: 18px;
}

@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .award-items-box p {
    font-size: 14px;
  }
}

.about-wrapper-5 .about-content .award-items-box:hover img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.about-wrapper-5 .about-content .about-small-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .about-inner-section .section-title-area {
    flex-wrap: wrap;
    justify-content: start;
  }
}

.about-inner-section .section-title-area .about-content {
  max-width: 420px;
  margin-left: auto;
}

.about-inner-section .section-title-area {
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 1199px) {
  .about-inner-section .section-title-area .about-content {
    margin-left: initial;
  }
}

.about-inner-section .section-title-area .about-content p {
  color: var(--header);
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
}

.about-inner-section .section-title-area .about-content .about-info {
  margin-top: 30px;
}

.about-inner-section .section-title-area .about-content .about-info .client-image {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-inner-section .section-title-area .about-content .about-info .video-btn {
  display: inline-block;
  width: 57px;
  height: 57px;
  line-height: 57px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--white);
  margin-left: -10px;
}

.about-inner-section .section-title-area .about-content .about-info span {
  color: var(--header);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 10px;
}

.about-inner-section .about-inner-image {
  margin-top: 50px;
}

.about-inner-section .about-inner-image .fix {
  border-radius: 12px;
}

.about-inner-section .about-inner-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .about-inner-section .about-inner-image img {
    height: 550px;
    object-fit: cover;
  }
}

.about-inner-section .about-counter-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 99;
  padding: 0 30px;
}

.about-inner-section .about-counter-wrapper .about-counter-item {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  padding: 30px;
}

.about-inner-section .about-counter-wrapper .about-counter-item h6 {
  color: var(--header);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.about-inner-section .about-counter-wrapper .about-counter-item h2 {
  font-size: 72px;
  font-weight: 500;
  color: var(--theme);
  margin-top: 50px;
}

@media (max-width: 767px) {
  .about-inner-section .about-counter-wrapper .about-counter-item h2 {
    font-size: 50px;
    margin-top: 30px;
  }
}

.about-inner-section .about-counter-wrapper .about-counter-item p {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
  margin-top: 10px;
}

.actually-area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-inner.actually-area {
  height: auto;
  display: block;
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .actually-area {
    height: initial;
    padding: 100px 0;
  }

  .actually-area br {
    display: none;
  }
}

.feature-box-items {
  margin-top: 30px;
  background-color: var(--bg);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
}

.feature-box-items::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-items h6 {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

.feature-box-items h3 {
  margin-bottom: 20px;
}

.feature-box-items .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-items .feature-info-box {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.feature-box-items .feature-info-box ul {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .feature-box-items .feature-info-box ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.feature-box-items .feature-info-box ul li {
  border-radius: 50px;
  border: 1px solid #E6E8EB;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Inter", sans-serif;
  padding: 0 12px;
  height: 30px;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
}

.feature-box-items .feature-info-box ul li:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.feature-box-items .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-items .feature-info-box .icon:hover {
  background-color: var(--theme);
}

.feature-box-items:hover h6,
.feature-box-items:hover h3,
.feature-box-items:hover p {
  color: var(--white);
}

.feature-box-items:hover h3 a {
  color: var(--white);
}

.feature-box-items:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-wrapper {
  margin-right: -40%;
}

@media (max-width: 1600px) {
  .feature-wrapper {
    margin-right: -35%;
  }
}

@media (max-width: 1399px) {
  .feature-wrapper {
    margin-right: -55%;
  }
}

@media (max-width: 575px) {
  .feature-wrapper {
    margin-right: 0;
  }
}

.counter-feature-section {
  border-radius: 16px 16px 0 0;
  height: 700px !important;
  position: relative;
  overflow: hidden;
  padding-top: 150px !important;
}

@media (max-width: 991px) {
  .counter-feature-section {
    height: 790px !important;
    padding-top: 100px !important;
  }
}

.counter-feature-section-area {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .counter-feature-section-area {
    margin: 0;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.feature-counter-content h2 {
  color: var(--white);
  font-size: 72px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
}

@media (max-width: 1399px) {
  .feature-counter-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .feature-counter-content h2 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .feature-counter-content h2 {
    font-size: 60px;
    line-height: 120% !important;
  }
}

@media (max-width: 767px) {
  .feature-counter-content h2 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .feature-counter-content h2 {
    font-size: 44px;
  }
}

@media (max-width: 470px) {
  .feature-counter-content h2 {
    font-size: 34px;
  }
}

.feature-counter-content p {
  color: var(--white);
  font-weight: 400;
  line-height: 160.556%;
  max-width: 570px;
  margin-top: 25px;
}

.feature-counter-content .gt-theme-btn-main {
  margin-top: 30px;
}

.feature-counter-content .gt-theme-btn-main .gt-theme-btn-arrow-left,
.feature-counter-content .gt-theme-btn-main .gt-theme-btn-arrow-right {
  background-color: var(--white);
  color: var(--header2);
}

.feature-counter-content .gt-theme-btn-main .gt-theme-btn {
  background-color: var(--white);
  color: var(--header2);
}

.feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
  background-color: var(--theme2);
  color: var(--white);
}

.feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn {
  background-color: var(--theme2);
  color: var(--white);
}

.feature-counter-box-items {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 60px 60px;
}

@media (max-width: 1399px) {
  .feature-counter-box-items {
    padding: 40px 30px;
    max-width: 400px;
  }
}

.feature-counter-box-items h2 {
  color: var(--white);
  font-size: 196.501px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -10px;
  font-family: "Public Sans", sans-serif;
}

@media (max-width: 1399px) {
  .feature-counter-box-items h2 {
    font-size: 100px;
  }
}

.feature-counter-box-items h2 sup {
  font-size: 50px;
  line-height: 1;
  top: -2.2em;
  right: 30px;
}

@media (max-width: 1399px) {
  .feature-counter-box-items h2 sup {
    font-size: 50px;
    line-height: 1;
    top: -1em;
    right: 0px;
  }
}

.feature-counter-box-items p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 991px) {
  .feature-counter-box-items p {
    font-size: 16px;
    line-height: 160%;
  }
}

@media (max-width: 470px) {
  .feature-counter-box-items p {
    font-size: 15px;
  }
}

.choose-us-wrapper-2 {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-2 {
    margin-top: 30px;
  }
}

.choose-us-wrapper-2 .choose-us-wrap-item {
  display: flex;
  gap: 70px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-wrap-item {
    gap: 34px;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-wrap-item {
    gap: 20px;
  }
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
  background-color: var(--bg3);
  max-width: 535px;
  padding: 45px;
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--white);
  transition: all 500ms ease;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(41, 15, 28, 0.1);
  z-index: -1;
  border-radius: 12px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
    max-width: initial;
  }
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content h3 {
  color: var(--header2);
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content p {
  color: var(--header2);
  margin-top: 15px;
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.choose-us-wrapper-2 .choose-us-wrap-item .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .choose-us-wrapper-2 .choose-us-wrap-item .left {
    display: none;
  }
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number {
  width: 60px;
  height: 60px;
  background: var(--header2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 9;
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number-line {
  width: 8px;
  height: 100%;
  border: 1px solid var(--bg3);
  border-top: none;
  position: relative;
  overflow: hidden;
  background-color: var(--bg3);
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number-line-fill {
  width: 100%;
  height: 100%;
  background: var(--theme2);
  border-radius: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.choose-us-wrapper-2 .choose-us-image {
  margin-left: -30px;
  height: 520px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .choose-us-image {
    height: 280px;
    border-radius: 14px;
  }

  .choose-list li {
    align-items: flex-start;
  }
}


.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.choose-us-wrapper-3 .choose-us-image {
  position: relative;
  border-radius: 12px;
}

.choose-us-wrapper-3 .choose-us-image img,
.choose-us-wrapper-3 .choose-us-image video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.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 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: #e43338;
  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(--header3);
}

.choose-us-wrapper-3 .choose-us-content .choose-list li .content p {
  color: var(--header3);
  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(--theme3);
}

.choose-us-wrapper-3 .choose-us-content .choose-list li.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.feature-box-style-3 {
  margin-top: 30px;
  border: 1px solid #F0ECDF;
  padding: 40px 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .feature-box-style-3 {
    padding: 30px 28px;
  }
}

.feature-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(--bg6);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-box-style-3 .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme6);
  transition: all 0.4s ease-in-out;
}

.feature-box-style-3 .content {
  margin-top: 25px;
  overflow: hidden;
}

.feature-box-style-3 .content h3 {
  color: var(--header4);
  margin-bottom: 15px;
}

.feature-box-style-3 .content .arrow-btn {
  font-size: 16px;
  position: relative;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  color: var(--header4);
  font-weight: 600;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.feature-box-style-3 .content .arrow-btn::before {
  position: absolute;
  font-weight: 600;
  color: var(--header4);
  font-size: 16px;
  left: -95px;
  top: -2px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  content: "Explore more";
}

.feature-box-style-3.active {
  border: 1px solid var(--bg6);
}

.feature-box-style-3.active::before {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-box-style-3.active .icon {
  background-color: var(--theme5);
}

.feature-box-style-3.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.feature-box-style-3.active .content .arrow-btn {
  transform: translateX(95px);
}

.feature-box-style-3.active .content .arrow-btn i {
  margin-left: 14px;
}

.feature-box-style-3.active .content .arrow-btn::before {
  opacity: 1;
}

.counter-box-style-5 {
  margin-top: 30px;
  position: relative;
  padding: 105px 30px;
  z-index: 9;
  text-align: center;
}

@media (max-width: 767px) {
  .counter-box-style-5 {
    padding: 70PX 30PX;
  }
}

@media (max-width: 575px) {
  .counter-box-style-5 {
    background-color: var(--white);
    border-radius: 16px;
  }
}

.counter-box-style-5 .icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  text-align: center;
  line-height: 85px;
  background-color: var(--bg6);
  position: absolute;
  z-index: 9;
  top: 0;
  right: 30px;
}

.counter-box-style-5 .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 72px;
  line-height: 72px;
  border-radius: 50%;
  height: 72px;
  background-color: var(--theme5);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.counter-box-style-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 308 340"><path fill-rule="evenodd" clip-rule="evenodd" d="M154 0L308 84.7917V254.375L154 339.167L0 254.375V84.7917L154 0Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: #FFFDF5;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .counter-box-style-5::before {
    display: none;
  }
}

.counter-box-style-5 h2 {
  font-size: 82px;
  font-weight: 600;
  color: var(--header4);
}

@media (max-width: 767px) {
  .counter-box-style-5 h2 {
    font-size: 70px;
  }
}

.counter-box-style-5 p {
  color: var(--header4);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 18px;
}

.counter-box-style-5.active::before {
  background-color: var(--theme5);
}

.counter-box-style-5.active .icon::before {
  background-color: var(--theme6);
}

.counter-box-style-5.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.work-process-box-style-4 {
  margin-top: 40px;
  background-color: var(--bg5);
  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: "Inter", sans-serif;
  font-size: 20px;
  background-color: var(--header4);
  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: "Inter", sans-serif;
  color: var(--header4);
  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(--header4);
  font-family: "Inter", 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(--header4);
  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(--theme4);
  color: var(--white);
}

.work-process-box-style-4.active .content span {
  color: var(--white);
  background-color: var(--theme4);
}

.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(--theme4) !important;
}

.work-process-box-style-4.active .bg-image {
  transform: scale(1);
}

.award-section {
  border-top: 1px solid #EBE8E6;
}

.award-wrapper .title {
  color: var(--theme4);
  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: 80px;
  }
}

@media (max-width: 575px) {
  .award-wrapper .title {
    font-size: 58px;
  }
}

@media (max-width: 470px) {
  .award-wrapper .title {
    font-size: 44px;
  }
}

.award-wrapper .award-box-items {
  background-color: var(--bg5);
  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(--header4);
  border-top: 1px solid #DFDCD2;
  padding: 30px;
}

.award-wrapper .award-box-items:hover .icon img {
  animation: gelatine 0.6s;
}

.service-card-item {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  z-index: 9;
}

.service-card-item::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-card-item .icon {
  width: 72px;
  height: 68.494px;
  line-height: 68.494px;
  border-radius: 6px;
  background-color: var(--white);
  text-align: center;
}

.service-card-item .content {
  margin-top: 30px;
}

.service-card-item .content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .service-card-item .content h3 {
    font-size: 22px;
  }
}

.service-card-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-card-item .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-card-item.active::before {
  opacity: 1;
  transform: scale(1, 1);
}

.service-card-item.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.service-card-item.active .content h3 {
  color: var(--white);
}

.service-card-item.active .content p {
  color: var(--white);
}

.service-card-item.style-2 {
  background-color: var(--bg3);
  overflow: hidden;
}

.service-card-item.style-2 .icon {
  border-radius: 50%;
  border: 1px solid #EBE6E8;
  transition: all 0.4s ease-in-out;
}

.service-card-item.style-2 .icon img {
  transition: all 0.4s ease-in-out;
}

.service-card-item.style-2 .content h3 {
  color: var(--header2);
}

.service-card-item.style-2 .content p {
  color: var(--header2);
}

.service-card-item.style-2::before {
  border-radius: 8px;
  border: 1px solid #EBE6E8;
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  background-color: var(--white);
}

.service-card-item.style-2:hover .icon {
  background-color: var(--theme2);
}

.service-card-item.style-2:hover .icon img {
  filter: brightness(0) invert(1);
}

.global-service-box {
  background-color: var(--bg3);
  padding: 58px 30px;
  border: 1px solid #EBE6E8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  margin-top: 30px;
  position: relative;
}

@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(--white);
  transition: all 500ms ease;
  border-radius: 8px;
}

.global-service-box .global-content {
  flex-basis: 30%;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .global-service-box .global-content {
    flex-basis: initial;
  }
}

.global-service-box .content {
  display: flex;
  gap: 40px;
}

.global-service-box .content span {
  font-size: 32px;
  font-weight: 600;
  opacity: 0.2;
  writing-mode: vertical-lr;
  line-height: 1;
}

.global-service-box .content h3 {
  text-transform: capitalize;
}

.global-service-box .content h3 a:hover {
  color: var(--theme2);
}

.global-service-box .text {
  color: var(--header2);
  max-width: 395px;
  position: relative;
  z-index: 9;
}

.global-service-box .icon {
  display: inline-block;
  border: 1.103px solid #EBE6E8;
  background: var(--white);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  color: var(--header2);
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 9;
  transition: all 0.3s ease;
}

.global-service-box .icon:hover {
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid var(--theme2);
}

.global-service-box .hover-image {
  width: 250px;
  height: 250px;
  position: absolute;
  border-radius: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(10deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 30px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
}

@media (max-width: 991px) {
  .global-service-box .hover-image {
    display: none !important;
  }
}

.global-service-box:hover .hover-image {
  opacity: 1;
  visibility: visible;
}

.global-service-box:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.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;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.service-section-3 .array-button .array-prev,
.service-section-3 .array-button .array-next {
  background-color: var(--white);
  color: var(--header3);
}

.service-section-3 .array-button .array-prev:hover,
.service-section-3 .array-button .array-next:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
  color: var(--white);
}

.service-section-3 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header3);
}

.service-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
}

.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: 991px) {
  .service-box-style-3 {
    padding: 30px 35px;
  }
}

@media (max-width: 767px) {
  .service-box-style-3 {
    padding: 30px 30px;
  }
}

@media (max-width: 575px) {
  .service-box-style-3 {
    padding: 30px 25px;
  }
}

.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(--header3);
  -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(--header3);
  transition: all 0.4s ease-in-out;
}

.service-box-style-3 .content {
  margin-top: 40px;
}

.service-box-style-3 .content h3 {
  margin-bottom: 20px;
}

.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(--header3);
  opacity: 0.8;
  line-height: 155.556%;
}

.service-box-style-3 .content .link-btn {
  color: var(--header3);
  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(--theme3);
}

.service-box-style-3 .number {
  color: var(--white);
  font-family: "Inter", 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(--theme3);
}

.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: 0.15;
  visibility: visible;
}

.service-wrapper-5 {
  margin-top: 60px;
}

.service-wrapper-5 .bb-top {
  border-top: 1px solid #F0ECDF;
}

.service-wrapper-5 .bb-bottom {
  border-bottom: 1px solid #F0ECDF;
}

.service-wrapper-5 .service-box-style-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .service-wrapper-5 .service-box-style-5 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
  }
}

.service-wrapper-5 .service-box-style-5 .thumb {
  transition: all 0.4s ease-in-out;
  height: 213px;
  flex-basis: 26%;
}

@media (max-width: 1199px) {
  .service-wrapper-5 .service-box-style-5 .thumb {
    flex-basis: initial;
  }

  .service-wrapper-5 .service-box-style-5 .thumb img {
    width: 250px !important;
  }
}

@media (max-width: 991px) {
  .service-wrapper-5 .service-box-style-5 .thumb {
    height: initial;
    flex-basis: 100%;
  }

  .service-wrapper-5 .service-box-style-5 .thumb img {
    width: 100% !important;
  }
}

.service-wrapper-5 .service-box-style-5 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 195px;
  transition: all 0.4s ease-in-out;
  opacity: 0.15;
  background: #F7CF4B;
  mix-blend-mode: overlay;
}

@media (max-width: 1399px) {
  .service-wrapper-5 .service-box-style-5 .thumb img {
    width: 140px;
  }
}

.service-wrapper-5 .service-box-style-5 .service-text {
  display: flex;
  align-items: center;
  gap: 180px;
}

@media (max-width: 1399px) {
  .service-wrapper-5 .service-box-style-5 .service-text {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.service-wrapper-5 .service-box-style-5 .title {
  font-size: 24px;
  font-weight: 500;
  max-width: 280px;
}

.service-wrapper-5 .service-box-style-5 .title a {
  color: var(--header4);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-wrapper-5 .service-box-style-5 .title a:hover {
  color: var(--header4);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
}

.service-wrapper-5 .service-box-style-5 .text {
  opacity: 0.88;
  color: var(--header4);
  width: 100%;
  max-width: 272px;
}

.service-wrapper-5 .service-box-style-5 .arrow-icon {
  font-size: 30px;
  transform: rotate(-40deg);
  display: inline-block;
  color: var(--header4);
}

.service-wrapper-5 .service-box-style-5 .arrow-icon:hover {
  color: var(--theme5);
}

.service-wrapper-5 .service-box-style-5.active .thumb img {
  width: 338px;
  opacity: 1;
}

@media (max-width: 1399px) {
  .service-wrapper-5 .service-box-style-5.active .thumb img {
    width: 280px;
  }
}

.service-box-style-4 {
  margin-top: 30px;
}

.service-box-style-4 .service-list-wrap {
  position: relative;
  border-bottom: 1px solid #EBE8E6;
  padding: 50px 30px;
}

@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(--bg5);
  border-bottom: 1px solid var(--bg5);
}

.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: "Inter", sans-serif;
  color: var(--header4);
  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(--header4);
  border: 1px solid var(--header4);
  text-align: center;
}

.service-box-style-4 .service-list-wrap .service-acc-btn h3 {
  font-size: 30px;
  font-weight: 600;
}

.service-box-style-4 .service-list-wrap .service-acc-btn h3 a {
  color: var(--header4);
}

.service-box-style-4 .service-list-wrap .service-acc-btn h3 a:hover {
  color: var(--theme4);
}

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

.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(--header4);
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", 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 .service-acc-content.current {
  display: block;
}

.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-btn.active .icon {
  background-color: var(--theme4);
  color: var(--white);
  border: 1px solid var(--theme4);
}

.service-section-4 .service-box-style-4 .block .service-acc-btn.active {
  color: var(--theme);
}

.service-section-4 .aservice-box-style-4 .block:last-child {
  margin-bottom: 0;
}

.service-details-wrapper .service-top-img {
  border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.service-details-wrapper .service-details-content {
  margin-top: 30px;
}

.service-details-wrapper .service-details-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}

.service-details-wrapper .service-details-content .service-list-items {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .service-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
  font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
  color: var(--theme);
  margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

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

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  display: block;
  text-align: center;
  font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h5 {
  font-size: 18px;
  font-weight: 500;
  max-width: 143px;
  margin-top: 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items p {
  margin-top: 10px;
}

.service-details-wrapper .service-details-sidebar {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: #F2F5F7;
  margin-bottom: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 i {
  color: var(--theme);
  font-size: 16px;
  margin-right: 7px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
  margin-bottom: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
  position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  padding: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
  margin-top: 15px;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
  position: absolute;
  top: 50px;
  left: 50px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li {
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a {
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 20px 24px;
  line-height: 1;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.project-section {
  margin: 0 30px;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .project-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  margin-top: -7px;
  margin-bottom: 80px;
}

.marquee.slide-right {
  transform: scaleX(-1);
}

.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}

.marquee.style-2 {
  background-color: var(--theme);
  padding: 30px 0;
}

.marquee.style-2 .text {
  color: var(--white);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -6.255px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1199px) {
  .marquee.style-2 .text {
    gap: 30px;
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .marquee.style-2 .text {
    gap: 20px;
    font-size: 50px;
  }
}

.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 {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -6.255px;
  color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .marquee .text {
    letter-spacing: initial;
  }
}

@media (max-width: 1199px) {
  .marquee .text {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .marquee .text {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .marquee .text {
    font-size: 50px;
  }
}

.marquee .text span {
  margin-top: -10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.marquee .text:hover {
  color: var(--white);
}

.marquee .text:hover span {
  color: var(--theme);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.project-box-items {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .project-box-items {
    display: block;
  }
}

.project-box-items .content {
  padding: 80px 75px;
  position: relative;
}

@media (max-width: 1199px) {
  .project-box-items .content {
    padding: 45px;
  }
}

@media (max-width: 767px) {
  .project-box-items .content {
    padding: 30px;
  }
}

.project-box-items .content .number {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  font-size: 166.588px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -10.412px;
  color: transparent;
  position: absolute;
  bottom: -50px;
  left: 75px;
}

@media (max-width: 1199px) {
  .project-box-items .content .number {
    display: none;
  }
}

.project-box-items .content span {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.project-box-items .content h3 {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -3px;
}

@media (max-width: 767px) {
  .project-box-items .content h3 {
    font-size: 36px;
    letter-spacing: initial;
    text-transform: capitalize;
  }
}

@media (max-width: 575px) {
  .project-box-items .content h3 {
    font-size: 28px;
  }
}

.project-box-items .content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-items .content .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .project-box-items .content .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.project-box-items .content .icon:hover {
  background-color: var(--white);
  color: var(--header);
}

@media (max-width: 1199px) {
  .project-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 0;
  }
}

.project-box-items .thumb img {
  border-radius: 0 12px 12px 0;
}

.project-box-area {
  margin-bottom: 240px;
}

.marquee-section3 .marquee {
  background-color: var(--theme2);
  border-radius: 0 0 16px 16px;
  padding: 20px 0;
}

.marquee-section3 .marquee .text {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: initial;
  text-transform: capitalize;
}

.marquee-section2.style-marque-3 .marquee {
  margin: 0 30px;
  background-color: var(--theme3);
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 1399px) {
  .marquee-section2.style-marque-3 .marquee {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.marquee-section2.style-marque-4 .marquee {
  background-color: var(--theme5);
  border-radius: 0;
}

.marquee-section2.style-marque-4 .marquee .text {
  color: transparent;
  font-size: 96.552px;
  font-weight: 600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--header4);
}

@media (max-width: 991px) {
  .marquee-section2.style-marque-4 .marquee .text {
    font-size: 78px;
  }
}

@media (max-width: 767px) {
  .marquee-section2.style-marque-4 .marquee .text {
    font-size: 65px;
  }
}

@media (max-width: 575px) {
  .marquee-section2.style-marque-4 .marquee .text {
    font-size: 50px;
  }
}

.marquee-section2.style-marque-4 .marquee .text:hover {
  color: var(--header4);
}

.marquee-section2.style-marque-5 .marquee {
  background-color: var(--theme4);
}

.marquee-section2.style-marque-5 .marquee .text {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -1.838px;
  text-transform: capitalize;
}

.project-section-2 {
  margin: 0 30px;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .project-section-2 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.project-section-2 .section-title-area p {
  color: var(--header2);
}

.project-section-2 .section-title-area .array-button .array-prev,
.project-section-2 .section-title-area .array-button .array-next {
  background-color: var(--white);
  color: var(--header2);
}

.project-section-2 .section-title-area .array-button .array-prev:hover,
.project-section-2 .section-title-area .array-button .array-next:hover {
  background-color: var(--theme2);
  color: var(--white);
}

@media (max-width: 1399px) {
  .project-section-2 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.project-section-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header2);
}

.project-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
}

.project-image-items-2 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
}

.project-image-items-2 .post-box {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  border: 1px solid var(--white);
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  border-radius: 18px;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -1px;
  z-index: 9;
}

.project-image-items-2 .post-box:hover {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
}

.project-image-items-2::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--bg3);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 9;
}

.project-image-items-2 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-image-items-2 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-image-items-2 .project-title {
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  z-index: 9;
}

.project-image-items-2 .project-title a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-image-items-2 .project-title a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.project-image-items-2 .arrow-icon {
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 10px;
  text-align: center;
  background-color: var(--header2);
  color: var(--white);
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.project-image-items-2 .arrow-icon:hover {
  background-color: var(--theme2);
}

.project-image-items-2: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-image-items-2: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-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;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.project-section-3 .line-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.project-section-3 .line-shape img {
  width: 100%;
}

@media (max-width: 1399px) {
  .project-section-3 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

@media (max-width: 1399px) {
  .project-section-3 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.project-wrapper-3 .section-title p {
  color: var(--header3);
  font-size: 18px;
  font-weight: 500;
  /* max-width: 270px; */
  margin-top: 20px;
  margin-bottom: 30px;
}

.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(--header3);
  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(--header3);
  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(--header3);
  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(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 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: #e43338;
  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(--theme3);
  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-box-style-5 {
  max-width: 480px;
  border: 1px solid #F0ECDF;
  padding: 20px;
  background-color: var(--white);
  position: relative;
  z-index: 99;
}

@media (max-width: 991px) {
  .project-box-style-5 {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .project-box-style-5 {
    max-width: initial;
    margin-top: 30px;
  }
}

.project-box-style-5 .thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.project-box-style-5 .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  background: #000;
  z-index: 99;
  transform: scale(1.1);
  transition: all 0.6s ease;
}

.project-box-style-5 .thumb .arrow-icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme5);
  color: var(--header4);
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.4s ease-in-out;
}

.project-box-style-5 .thumb .arrow-icon:hover {
  background-color: var(--theme6);
}

.project-box-style-5 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-box-style-5 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-box-style-5.style-2 {
  max-width: initial;
}

.project-box-style-5.style-top {
  margin-top: 150px;
}

@media (max-width: 767px) {
  .project-box-style-5.style-top {
    margin-top: 30px;
  }
}

.project-box-style-5.style-top2 {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .project-box-style-5.style-top2 {
    margin-top: 30px;
  }
}

.project-box-style-5.style-3 {
  margin-left: auto;
}

.project-box-style-5 .content {
  padding: 20px 10px 10px;
  position: relative;
}

.project-box-style-5 .content .year-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 25px;
  right: 30px;
}

@media (max-width: 991px) {
  .project-box-style-5 .content .year-text {
    right: 15px;
    top: 15px;
    font-size: 16px;
  }
}

.project-box-style-5 .content h3 {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .project-box-style-5 .content h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .project-box-style-5 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .project-box-style-5 .content h3 {
    font-size: 24px;
  }
}

.project-box-style-5 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header4);
}

.project-box-style-5 .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
}

.project-box-style-5 .content ul {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.project-box-style-5 .content ul li a {
  display: inline-block;
  border-radius: 18px;
  background: #F5EFDC;
  font-size: 16px;
  font-weight: 500;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  padding: 3px 14px;
}

.project-box-style-5 .content ul li a:hover {
  background-color: var(--theme6);
}

.project-box-style-5:hover .thumb::before {
  opacity: 0.4;
  visibility: visible;
  transform: scale(1);
}

.project-box-style-5:hover .thumb .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.project-box-style-5: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-box-style-5: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-5 .section-title .link-btn {
  text-decoration: underline;
  color: var(--header4);
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-top: 30px;
}

.project-section-5 .project-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

@media (max-width: 767px) {
  .project-section-5 .project-button {
    margin-top: 30px;
  }
}

.project-section-5 .project-btn {
  display: inline-block;
  width: 160px;
  height: 160px;
  font-size: 16px;
  color: var(--header4);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  background: #F5EFDC;
  box-shadow: 0 4.051px 30.38px 0 rgba(31, 41, 55, 0.1);
  text-align: center;
  border-radius: 50%;
  text-transform: capitalize;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.project-section-5 .project-btn::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 50px;
  height: 50px;
  background-color: var(--theme5);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.project-section-5 .project-btn span {
  display: block;
}

.project-section-5 .project-btn:hover::before {
  width: 100%;
  height: 100%;
}

.wt-hover-btn-item {
  display: inline-block;
  position: relative;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.project-section-4 {
  margin: 0 30px;
}

.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: 1199px) {
  .project-section-4 .section-title-area .section-title h2 {
    letter-spacing: initial;
  }
}

@media (max-width: 1199px) {
  .project-section-4 .section-title-area .section-title h2 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .project-section-4 .section-title-area .section-title h2 {
    font-size: 58px;
  }
}

.project-style-image-4 {
  overflow: hidden;
  position: relative;
  z-index: 9;
  height: 626px;
}

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

.project-style-image-4 .content h3 a:hover {
  color: var(--theme4);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 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(--header4);
  font-family: "Inter", sans-serif;
  padding: 6px 10px;
}

.project-style-image-4 .content ul li a:hover {
  background-color: var(--theme4);
  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-details-wrapper .details-top-img {
  border-radius: 12px;
}

@media (max-width: 991px) {
  .project-details-wrapper .details-top-img {
    height: 600px;
  }

  .project-details-wrapper .details-top-img img {
    object-fit: cover;
  }
}

.project-details-wrapper .details-top-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.project-details-wrapper .project-details-content {
  margin-top: 30px;
}

.project-details-wrapper .project-details-content h3 {
  font-size: 25px;
  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 .project-list-items {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content .project-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.project-details-wrapper .project-details-content .project-list-items ul li {
  font-weight: 500;
}

.project-details-wrapper .project-details-content .project-list-items ul li i {
  color: var(--theme);
  margin-right: 10px;
}

.project-details-wrapper .project-details-content .project-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.project-details-wrapper .project-details-content .details-image-2 {
  margin-top: 30px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .project-details-wrapper .project-details-content .details-image-2 {
    height: 550px;
  }

  .project-details-wrapper .project-details-content .details-image-2 img {
    object-fit: cover;
  }
}

.project-details-wrapper .project-details-content .details-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-details-wrapper .project-details-content .details-img-3 {
  margin-top: 20px;
}

.project-details-wrapper .project-details-content .details-img-3 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-details-wrapper .project-details-content .slider-button {
  border-top: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
  margin-top: 65px;
  padding: 25px 0;
}

.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 #E4E4E4;
}

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

.project-details-wrapper .project-details-content .slider-button .icon-gird {
  font-size: 40px;
  color: #0F172A;
}

.project-details-wrapper .project-details-sidebar {
  margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: #F2F5F7;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-sidebar .sidebar-widget {
    padding: 30px 25px;
  }
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--theme);
  display: inline-block;
  padding-bottom: 20px;
}

.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 .sidebar-widget .project-infrom li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
  margin-bottom: 30px;
}

.angle-product-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  transform: perspective(1000px) rotateY(-16deg) rotateX(3deg) rotateZ(-2deg);
  transform-origin: center center;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.22));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.angle-product-img:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) rotateZ(-1deg);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.26));
}

@media (max-width: 767px) {
  .angle-product-img {
    max-width: 280px;
    transform: perspective(900px) rotateY(-8deg) rotateX(2deg) rotateZ(-1deg);
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-main-view {
  border: 1px solid #e4e9ee;
  border-radius: 10px;
  background: #f8f9fb;
  min-height: 320px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-view img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-thumb {
  border: 1px solid #d9e1e9;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.product-thumb img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--theme3);
  box-shadow: 0 0 0 2px rgba(11, 163, 208, 0.15);
}

.product-intro-text {
  max-width: 95%;
}

.product-feature-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-feature-card {
  background: #f7f9fc;
  border: 1px solid #e4e9ee;
  border-radius: 10px;
  padding: 18px;
}

.product-feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-feature-card p {
  margin: 0;
  color: var(--header);
}

@media (max-width: 991px) {
  .product-main-view {
    min-height: 280px;
  }

  .product-main-view img {
    max-height: 240px;
  }

  .product-feature-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .product-thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image {
  position: relative;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  padding: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .icon {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 35px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content h3 {
  margin-top: 15px;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn {
  margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .white-logo {
  position: absolute;
  top: 50px;
  left: 50px;
}

.project-box-items-inner .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-box-items-inner .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-box-items-inner .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-box-items-inner .project-content-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

@media (max-width: 1199px) {
  .project-box-items-inner .project-content-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-box-items-inner .project-content-area .content .text {
  border-radius: 18px;
  border: 1px solid #E6E8EB;
  background: #F2F5F7;
  padding: 6px 8px;
}

.project-box-items-inner .project-content-area .content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .project-box-items-inner .project-content-area .content h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .project-box-items-inner .project-content-area .content h3 {
    font-size: 24px;
  }
}

.project-box-items-inner .project-content-area .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-box-items-inner .project-content-area .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-items-inner .project-content-area .circle-check {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  font-size: 20px;
  border: 1.417px solid #E6E8EB;
  background: #F2F5F7;
  transition: all 0.4s ease-in-out;
}

.project-box-items-inner .project-content-area .circle-check:hover {
  background-color: var(--theme);
  color: var(--white);
}

.project-box-items-inner: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-section-5 .gt-title5 h2 {
  font-size: 220px;
  line-height: 1;
  color: var(--header4);
}

@media (max-width: 1399px) {
  .project-section-5 .gt-title5 h2 {
    font-size: 180px;
  }
}

@media (max-width: 1199px) {
  .project-section-5 .gt-title5 h2 {
    font-size: 150px;
  }
}

@media (max-width: 991px) {
  .project-section-5 .gt-title5 h2 {
    font-size: 130px;
  }
}

@media (max-width: 767px) {
  .project-section-5 .gt-title5 h2 {
    font-size: 90px;
  }
}

@media (max-width: 575px) {
  .project-section-5 .gt-title5 h2 {
    font-size: 70px;
  }
}

.testimonial-warpper {
  position: relative;
  z-index: 9;
  padding: 60px;
  margin-top: 60px;
  padding-top: 0;
  max-width: 1100px;
  margin: 60px auto 0;
}

@media (max-width: 1199px) {
  .testimonial-warpper {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .testimonial-warpper {
    margin: 30px auto 0;
    padding: 32px;
  }
}

@media (max-width: 575px) {
  .testimonial-warpper {
    padding: 28px;
  }
}

@media (max-width: 470px) {
  .testimonial-warpper {
    padding: 24px;
  }
}

.testimonial-warpper .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -25px;
  right: -25px;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 1399px) {
  .testimonial-warpper .array-button {
    display: none;
  }
}

.testimonial-warpper .array-button .array-prev,
.testimonial-warpper .array-button .array-next {
  background-color: var(--white);
}

.testimonial-warpper .testi-client {
  max-width: 215px;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .testimonial-warpper .testi-client {
    margin: 0 auto 30px;
  }
}

.testimonial-warpper .testi-client .client-img img {
  width: 60px;
  height: 60px;
  border: 2.25px solid var(--white);
  border-radius: 50%;
}

.testimonial-warpper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  border-radius: 12px;
  z-index: -1;
  top: 35px;
  height: initial;
}

@media (max-width: 1199px) {
  .testimonial-warpper::before {
    top: 0;
    height: 100%;
  }
}

.testimonial-warpper .testimonial-content-1 {
  max-width: 870px;
  text-align: center;
  margin: 0 auto;
}

.testimonial-warpper .testimonial-content-1 h3 {
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .testimonial-warpper .testimonial-content-1 h3 {
    letter-spacing: initial;
  }
}

@media (max-width: 575px) {
  .testimonial-warpper .testimonial-content-1 h3 {
    font-size: 18px;
  }
}

.testimonial-warpper .testimonial-content-1 .testi-info {
  margin-top: 45px;
}

@media (max-width: 767px) {
  .testimonial-warpper .testimonial-content-1 .testi-info {
    margin-top: 30px;
  }
}

.testimonial-warpper .testimonial-content-1 .testi-info h4 {
  font-size: 20px;
  font-weight: 500;
}

.testimonial-warpper .testimonial-content-1 .testi-info p {
  font-size: 14px;
}

.testimonial-section-2 {
  margin: 0 30px;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .testimonial-section-2 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.testimonial-section-2 .section-title-area p {
  color: var(--header2);
}

.testimonial-box-items {
  margin-top: 30px;
  border-radius: 12px;
  padding: 50px 70px;
  padding-top: 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .testimonial-box-items {
    padding: 50px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-items {
    padding: 40px 25px;
  }
}

.testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 50px;
  z-index: -1;
  border-radius: 12px;
  height: initial;
}

@media (max-width: 1399px) {
  .testimonial-box-items::before {
    top: 90px;
  }
}

.testimonial-box-items .quote-icon {
  width: 98px;
  height: 98px;
  line-height: 98px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme2);
  margin: 0 auto 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .testimonial-box-items .quote-icon {
    margin-bottom: 28px;
  }
}

.testimonial-box-items .content {
  text-align: center;
}

.testimonial-box-items .content h3 {
  font-size: 26px;
  color: var(--header2);
  line-height: 161.538%;
}

@media (max-width: 1600px) {
  .testimonial-box-items .content h3 {
    font-size: 22px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-items .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-items .content h3 {
    font-size: 18px;
  }
}

.testimonial-box-items .content .client-info {
  border-top: 1px solid rgba(41, 15, 28, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .testimonial-box-items .content .client-info {
    padding-top: 28px;
    margin-top: 28px;
  }
}

.testimonial-box-items .content .client-info h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--header2);
}

.testimonial-box-items .content .client-info h4 span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.testimonial-box-items .content .client-info .star {
  color: var(--theme2);
  margin-top: 10px;
}

.testimonial-section-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header2);
}

.testimonial-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
}

.testimonial-box-items-3 {
  margin-top: 30px;
  padding: 50px 30px;
  background-color: var(--bg4);
  border-radius: 10px;
  height: 380px;
}

.testimonial-box-items-3.style-2 {
  background-color: var(--bg);
}

.testimonial-box-items-3.style-2 .star {
  color: var(--theme);
}

.testimonial-box-items-3.style-2 h4 {
  color: var(--header);
}

.testimonial-box-items-3.style-2 .client-info .inffo-content h5 {
  color: var(--header);
}

@media (max-width: 575px) {
  .testimonial-box-items-3 {
    padding: 30px 25px;
  }
}

.testimonial-box-items-3 .star {
  color: var(--theme3);
  margin-bottom: 20px;
}

.testimonial-box-items-3 h4 {
  font-size: 20px;
  line-height: 140%;
  opacity: 0.8;
  color: var(--header3);
}

@media (max-width: 575px) {
  .testimonial-box-items-3 h4 {
    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 .inffo-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-box-items-3 .client-info .inffo-content span {
  color: var(--header3);
}

.testimonial-section-3 {
  position: relative;
}

.testimonial-section-3 .array-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  top: auto;
  transform: none;
  z-index: 9;
  left: auto;
  right: auto;
  margin: 20px auto 30px;
}

@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(--header3);
}

.testimonial-section-3 .array-button .array-prev:hover,
.testimonial-section-3 .array-button .array-next:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
  color: var(--white);
}

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header3);
}

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
}

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

.industries-serve-section .industries-slider {
  padding-left: 10px;
  padding-right: 10px;
}

.industry-image-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-image-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.home-product-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-slider-3 .swiper-wrapper {
  align-items: stretch;
}

.service-slider-3 .swiper-slide {
  height: auto;
}

.home-product-image-card {
  min-height: 320px;
  padding: 18px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-product-slide-title {
  margin: 18px 10px 0;
  color: var(--header3);
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.home-product-slide:hover .home-product-image-card {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.home-product-slide:hover .home-product-slide-title {
  color: var(--theme3);
}

@media (max-width: 767px) {
  .industry-image-card {
    min-height: 240px;
  }

  .industry-image-card img {
    max-height: 240px;
  }

  .home-product-image-card {
    min-height: 240px;
    padding: 14px;
  }

  .home-product-slide-title {
    font-size: 18px;
    min-height: 48px;
  }
}

.industries-serve-section .industries-dot .swiper-pagination-bullet {
  background-color: var(--header3);
}

.industries-serve-section .industries-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
}

.testimonial-section-5 .content {
  max-width: 400px;
}

.testimonial-section-5 .content p {
  color: var(--header4);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  margin-bottom: 30px;
}

.testimonial-box-style-5 {
  max-width: 530px;
  border-right: 1px solid #F0ECDF;
  padding-right: 50px;
  opacity: 0.2;
}

@media (max-width: 575px) {
  .testimonial-box-style-5 {
    padding-right: 0;
  }
}

.testimonial-box-style-5 .star {
  color: var(--header4);
  margin-bottom: 30px;
}

.testimonial-box-style-5 p {
  color: var(--header4);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -1.5px;
  opacity: 0.88;
}

@media (max-width: 575px) {
  .testimonial-box-style-5 p {
    font-size: 16px;
  }
}

.testimonial-box-style-5 .client-info {
  border-top: 1px solid #F0ECDF;
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-box-style-5 .info-content h4 {
  color: var(--header4);
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .testimonial-box-style-5 .info-content h4 {
    font-size: 18px;
  }
}

.testimonial-box-style-5 .info-content span {
  opacity: 0.72;
  color: var(--header4);
}

.testimonial-wrapper-5 {
  padding: 80px 60px;
  position: relative;
  z-index: 9;
  margin-top: 60px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-5 {
    padding: 40px 30px;
  }
}

.testimonial-wrapper-5 .testi-left .array-button {
  display: flex;
  align-items: center;
  margin-top: 180px;
}

@media (max-width: 767px) {
  .testimonial-wrapper-5 .testi-left .array-button {
    margin-top: 30px;
  }
}

.testimonial-wrapper-5 .testi-left .array-button .array-prev,
.testimonial-wrapper-5 .testi-left .array-button .array-next {
  color: var(--header4);
}

.testimonial-wrapper-5 .testi-left .array-button .array-prev:hover,
.testimonial-wrapper-5 .testi-left .array-button .array-next:hover {
  background-color: var(--theme5);
  border: 1px solid var(--theme5);
}

.testimonial-wrapper-5 .testi-left .array-button .line {
  width: 1px;
  height: 30px;
  background: #F0ECDF;
}

.testimonial-wrapper-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFDF5;
  z-index: -1;
  width: 1000%;
}

.testimonial-wrapper-5 .testimonial-slider-5 {
  margin-right: -72%;
}

@media (max-width: 1600px) {
  .testimonial-wrapper-5 .testimonial-slider-5 {
    margin-right: -55%;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-5 .testimonial-slider-5 {
    margin-right: -120%;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-5 .testimonial-slider-5 {
    margin-right: -75%;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-5 .testimonial-slider-5 {
    margin-right: 0;
  }
}

.testimonial-wrapper-5 .swiper-slide.swiper-slide-active .testimonial-box-style-5 {
  opacity: 1;
}

.testimonial-section-4 {
  margin: 0 30px;
}

.testimonial-section-4 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--header4) !important;
}

.testimonial-section-4 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme4) !important;
}

.testimonial-box-style-4 {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--bg5);
}

.testimonial-box-style-4 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme4);
  margin-bottom: 40px;
}

.testimonial-box-style-4 h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--header4);
  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(--header4);
}

@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(--header4);
  font-size: 16px;
}

.testimonial-box-style-4 .client-info-item .star {
  color: var(--theme4);
}

.testimonial-box-style-4.style-2 {
  background-color: var(--header4);
}

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

.pricing-box-items {
  margin-top: 30px;
  background-color: var(--bg);
  border-radius: 8px;
  border: 1px solid #E6E8EB;
  padding: 40px 30px;
}

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

.pricing-box-items .pricing-header h3 {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -3px;
  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: var(--text);
  letter-spacing: initial;
  margin-left: -12px;
}

.pricing-box-items .pricing-btn {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-family: "Inter", sans-serif;
  background-color: var(--bg2);
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  text-align: center;
  border-radius: 48px;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-btn i {
  margin-right: 8px;
}

.pricing-box-items .pricing-btn:hover {
  background-color: var(--theme);
}

.pricing-box-items .pricing-list {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
}

.pricing-box-items .pricing-list h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

@media (max-width: 1199px) {
  .pricing-box-items .pricing-list h5 {
    letter-spacing: inherit;
  }
}

.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
  color: var(--text);
  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(--header);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items.active {
  background-color: var(--header);
}

.pricing-box-items.active .pricing-header {
  margin-bottom: 30px;
}

.pricing-box-items.active .pricing-header span,
.pricing-box-items.active .pricing-header h3,
.pricing-box-items.active .pricing-header p,
.pricing-box-items.active .pricing-header sub {
  color: var(--white) !important;
}

.pricing-box-items.active .pricing-btn {
  background-color: var(--theme);
}

.pricing-box-items.active .pricing-btn:hover {
  background-color: var(--white);
  color: var(--header);
}

.pricing-box-items.active .pricing-list {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.pricing-box-items.active .pricing-list h5 {
  color: var(--white);
}

.pricing-box-items.active .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items.active .pricing-list ul li {
  color: var(--white);
}

.pricing-box-items.active .pricing-list ul li i {
  color: var(--theme);
}

.pricing-section .nav {
  height: 60px;
  line-height: 60px;
  background-color: var(--header);
  padding: 7px;
  border-radius: 70px;
  display: flex;
  align-items: center;
}

.pricing-section .nav .nav-item .nav-link {
  padding: 0;
  height: 47px;
  line-height: 47px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border-radius: 66.667px;
}

.pricing-section .nav .nav-item .nav-link.active {
  background-color: var(--theme);
}

.team-section-3 {
  margin: 0 30px;
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .team-section-3 {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.team-section-3 .section-title p {
  color: var(--header3);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 155.556%;
  max-width: 270px;
  margin-top: 25px;
  margin-bottom: 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(--theme3);
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-box-item-3 .thumb .social-icon a:hover {
  background-color: var(--header3);
}

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

.team-box-item-3 .content h3 {
  font-weight: 600;
}

.team-box-item-3 .content h3 a {
  color: var(--header3);
  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(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.team-box-item-3.style-2 .thumb .social-icon a {
  width: 40px;
  color: var(--white);
  background-color: var(--theme);
}

.team-box-item-3.style-2 .thumb .social-icon a:hover {
  background-color: var(--header3);
}

.team-box-item-3.style-2 .content .icon {
  background-color: rgba(31, 41, 55, 0.35);
}

.team-box-item-3.style-2 .content .icon:hover {
  background-color: var(--theme);
}

.team-box-item-3.style-2 .content h3 {
  font-weight: 600;
}

.team-box-item-3.style-2 .content h3 a {
  color: var(--header);
}

.team-box-item-3.style-2 .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;
}

.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-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 h5 {
  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(61, 72, 87, 0.5);
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme);
}

.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: #E6E8EB;
  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(--header);
  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: #F2F5F7;
  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-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  text-transform: capitalize;
}

.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: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: transparent;
  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%;
}

.news-box-items {
  margin-top: 30px;
  border-radius: 0 0 10px 10px;
  background-color: var(--bg);
}

.news-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-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-box-items .content {
  padding: 25px;
}

.news-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.news-box-items .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--header);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-box-items .content ul li a:hover {
  background-color: var(--theme);
}

.news-box-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-box-items .content .news-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-box-items .content .news-bottom .link-btn {
  display: inline-block;
  color: #e43338;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

.news-box-items .content .news-bottom .link-btn i {
  margin-right: 5px;
}

.news-box-items .content .news-bottom .link-btn:hover {
  color: var(--theme);
}

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

.products-listing-section .product-listing-card {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.products-listing-section .product-listing-card .thumb {
  aspect-ratio: 1/1;
  max-height: 260px;
}

.products-listing-section .product-listing-card .thumb img {
  height: 100%;
}

.news-box-items-2 {
  box-shadow: 0 4px 30px rgba(41, 15, 28, 0.1);
  border-radius: 12px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

@media (max-width: 470px) {
  .news-box-items-2 {
    display: block;
  }
}

.news-box-items-2 .thumb {
  max-width: 260px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 470px) {
  .news-box-items-2 .thumb {
    max-width: initial;
    margin-bottom: 25px;
  }
}

.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-items-2 .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-box-items-2 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.news-box-items-2 .content ul li {
  color: var(--header2);
  text-transform: capitalize;
}

.news-box-items-2 .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--theme2);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-box-items-2 .content ul li a:hover {
  background-color: var(--header2);
}

.news-box-items-2 .content h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 1600px) {
  .news-box-items-2 .content h3 {
    font-size: 25px;
  }
}

@media (max-width: 1399px) {
  .news-box-items-2 .content h3 {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .news-box-items-2 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .news-box-items-2 .content h3 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .news-box-items-2 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .news-box-items-2 .content h3 {
    font-size: 18px;
  }
}

.news-box-items-2 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header2);
}

.news-box-items-2 .content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.news-box-items-2 .content .link-btn {
  color: var(--header2);
  margin-top: 30px;
}

.news-box-items-2 .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
}

.news-box-items-2 .content .link-btn:hover {
  color: var(--theme2);
}

.news-box-items-2: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-box-items-2: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-box-style-5 {
  margin-top: 30px;
  border: 1px solid #F0ECDF;
  padding: 20px;
  position: relative;
  padding-bottom: 0;
}

.news-box-style-5 .thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.news-box-style-5 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-style-5 .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-box-style-5 .content {
  padding: 25px 10px;
}

.news-box-style-5 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-box-style-5 .content ul li {
  color: rgba(0, 0, 0, 0.8);
}

.news-box-style-5 .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header4);
  background-color: #F0ECDF;
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-box-style-5 .content ul li a:hover {
  background-color: var(--theme6);
}

.news-box-style-5 .content ul li span {
  color: rgba(0, 0, 0, 0.7);
}

.news-box-style-5 .content h3 {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .news-box-style-5 .content h3 {
    font-size: 19px;
  }
}

@media (max-width: 1199px) {
  .news-box-style-5 .content h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .news-box-style-5 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .news-box-style-5 .content h3 {
    font-size: 22px;
  }
}

.news-box-style-5 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header4);
}

.news-box-style-5 .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
}

.news-box-style-5 .content .news-btn {
  display: inline-block;
  color: var(--header4);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-top: 30px;
}

.news-box-style-5 .content .news-btn i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--header4);
  color: var(--white);
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.news-box-style-5 .content .news-btn:hover i {
  background-color: var(--theme5);
  color: var(--header4);
}

.news-box-style-5: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-box-style-5: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-left-items {
  margin-top: 30px;
  border: 1px solid #DFDCD2;
  padding: 15px;
}

.news-left-items .thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.news-left-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.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 ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-left-items .content ul li {
  color: var(--header4);
}

.news-left-items .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--header4);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-left-items .content ul li a:hover {
  background-color: var(--theme4);
}

.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;
  color: var(--header4);
}

.news-left-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 100%);
  color: var(--theme4);
}

.news-left-items .content .link-btn {
  color: var(--header4);
  margin-top: 20px;
}

.news-left-items .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
}

.news-left-items .content .link-btn:hover {
  color: var(--theme4);
}

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

@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;
}

@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;
}

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

.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(--white);
  background-color: var(--header4);
  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(--theme4);
}

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

.news-right-list li .news-box-style-4 .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 100%);
  color: var(--theme4);
}

.news-right-list li .news-box-style-4 .content .link-btn {
  color: var(--header4);
  margin-top: 20px;
}

.news-right-list li .news-box-style-4 .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
}

.news-right-list li .news-box-style-4 .content .link-btn:hover {
  color: var(--theme4);
}

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

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 30px;
}

.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 h3 {
  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 h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    font-size: 25px;
  }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 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 h3 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 h3 {
  margin-bottom: 20px;
  font-size: 42px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 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(--bg);
  border-radius: 8px;
}

.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 svg {
  float: right;
  margin-top: -30px;
}

.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 var(--border);
  border-bottom: 1px solid var(--border);
  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(--bg);
  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: 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(--bg);
  border-radius: 8px;
}

.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 h5 {
  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(--bg);
  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(--white);
  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: #F2F5F7;
  padding: 30px;
  border-radius: 8px;
}

.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(--white);
  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(--white);
  padding: 22px 25px;
  font-family: "Inter", 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 h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Public Sans", sans-serif;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 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(--white);
  font-family: "Inter", 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);
}

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

.brand-box-1 {
  height: 125px;
  line-height: 125px;
  border: 1px solid #E6E8EB;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.brand-box-1.style-4 {
  border-radius: 0;
  border: 1px solid #DFDCD2;
}

.brand-box-1.style-4::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(--bg5);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.brand-box-1.style-4:hover {
  border: 1px solid var(--bg5);
}

.brand-box-1.style-4:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.brand-box-1.style-4:hover .brand-img-1 {
  opacity: 1;
  filter: brightness(1.4);
}

.brand-box-1.style-4:hover .brand-img-1 img {
  filter: brightness(1.4);
}

.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.8;
  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-box-1.style-border-5 {
  border: 1px solid #F0ECDF;
  border-radius: 0;
}

.brand-section-2 {
  background-color: var(--theme3);
  margin: 0 30px;
  margin-top: 30px;
  padding: 60px 30px 30px;
  border-radius: 14px;
}

.brand-section-2 .brand-box-1 {
  border: none;
  background: rgba(255, 255, 255, 0.15);
}

.brand-section-2 .brand-box-1 .brand-img-1 {
  filter: brightness(0) invert(1) !important;
}

.brand-section-2 .brand-box-1 .brand-img-1 img {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
}

.faq-section {
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .faq-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.faq-image-1 {
  border-radius: 16px;
  position: relative;
}

@media (max-width: 1899px) {
  .faq-image-1 {
    height: 830px;
  }

  .faq-image-1 img {
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .faq-image-1 {
    height: initial;
  }
}

.faq-image-1 .incrase-box {
  background-color: var(--header);
  padding: 30px;
  padding-top: 60px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-radius: 8px;
  display: flex;
  align-items: end;
  gap: 50px;
}

@media (max-width: 575px) {
  .faq-image-1 .incrase-box {
    display: none;
  }
}

.faq-image-1 .incrase-box h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  position: absolute;
  top: 30px;
  left: 30px;
}

.faq-image-1 .incrase-box h3 {
  color: var(--white);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
}

.faq-image-1 .incrase-box img {
  width: initial;
  height: initial;
  border-radius: 0;
}

.faq-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.faq-content-1 {
  background-color: var(--bg);
  border-radius: 16px;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

@media (max-width: 1199px) {
  .faq-content-1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.faq-content-1 .accordion-box {
  position: relative;
  margin-top: 50px;
  max-width: 600px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}

@media (max-width: 767px) {
  .faq-content-1 .accordion-box {
    margin-top: 30px;
  }
}

.faq-content-1 .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
  padding-left: 66px;
}

@media (max-width: 767px) {
  .faq-content-1 .accordion-box .block {
    padding-left: 40px;
  }
}

.faq-content-1 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}

.faq-content-1 .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}

.faq-content-1 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  color: var(--header);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-content-1 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-content-1 .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-content-1 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  max-width: 455px;
}

@media (max-width: 1199px) {
  .faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-content-1 .accordion-box .block .acc-content.current {
  display: block;
}

.faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f062";
  color: var(--theme);
}

.faq-content-1 .accordion-box .block .acc-btn.active {
  color: var(--theme);
}

.faq-content-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-items-2 .accordion-box {
  position: relative;
  margin-top: 50px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}

@media (max-width: 767px) {
  .faq-items-2 .accordion-box {
    margin-top: 30px;
  }
}

.faq-items-2 .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
}

@media (max-width: 767px) {
  .faq-items-2 .accordion-box .block {
    padding-left: 40px;
    line-height: 1.3;
  }
}

.faq-items-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header3);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .faq-items-2 .accordion-box .block .acc-btn {
    padding-right: 40px;
  }
}

@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}

.faq-items-2 .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}

.faq-items-2 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 16px;
  line-height: 18px;
  color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header3);
}

.faq-items-2 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}

@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-items-2 .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-items-2 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 18px;
  font-weight: 400;
  color: var(--header3);
  opacity: 0.8;
  max-width: 675px;
}

@media (max-width: 1199px) {
  .faq-items-2 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-items-2 .accordion-box li {
  position: relative;
}

.faq-items-2 .accordion-box li .number {
  color: var(--header3);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1.5px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

@media (max-width: 991px) {
  .faq-items-2 .accordion-box li .number {
    display: none;
  }
}

.faq-items-2 .accordion-box .block .acc-content.current {
  display: block;
}

.faq-items-2 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
}

.faq-items-2 .accordion-box .block .acc-btn.active .icon {
  background-color: var(--theme3);
}

.faq-items-2 .accordion-box .block .acc-btn.active {
  color: var(--theme3);
}

.faq-items-2 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-items-2.style-faq-2 .accordion-box {
  position: relative;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.faq-items-2.style-faq-2 .accordion-box .block {
  position: relative;
  background-color: #F2F5F7;
  margin-bottom: 10px;
  border-bottom: none;
  margin-bottom: 30px;
  border-radius: 8px;
  line-height: 1;
  padding: 30px 30px;
}

@media (max-width: 767px) {
  .faq-items-2.style-faq-2 .accordion-box .block {
    padding-left: 30px;
    line-height: 1.3;
  }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 20px;
    padding-right: 60px !important;
  }
}

@media (max-width: 575px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 18px;
    padding-right: 60px !important;
  }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active {
  color: var(--theme);
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 1199px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    padding-right: 0;
  }
}

@media (max-width: 470px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn .icon {
  color: var(--white);
  background-color: var(--header);
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-content {
  margin-top: 22px;
}

@media (max-width: 470px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-about {
  border-top: 1px solid #E6E8EB;
}

.cta-newsletter-section {
  position: relative;
  border-radius: 16px 16px 0 0;
  margin: 0 30px;
  padding: 80px 0;
}

@media (max-width: 1399px) {
  .cta-newsletter-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.cta-newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-newsletter-wrapper.style-2 h2 {
  font-size: 78px;
  font-weight: 500;
  line-height: 112.821%;
  letter-spacing: -3.306px;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper.style-2 h2 {
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .cta-newsletter-wrapper.style-2 h2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper.style-2 h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .cta-newsletter-wrapper.style-2 h2 {
    font-size: 35px;
  }
}

.cta-newsletter-wrapper.style-2 .content {
  max-width: 420px;
}

.cta-newsletter-wrapper.style-2 .content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 144.444%;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper.style-2 .content p {
    line-height: 160%;
  }
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper.style-2 .content p {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
}

.cta-newsletter-wrapper h2 {
  color: var(--white);
  font-size: 69.677px;
  font-weight: 500;
  letter-spacing: -2.98px;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper h2 {
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .cta-newsletter-wrapper h2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .cta-newsletter-wrapper h2 {
    font-size: 35px;
  }
}

.cta-newsletter-wrapper h2 span {
  color: rgba(255, 255, 255, 0.5);
}

.cta-newsletter-wrapper .newsletter-form {
  width: 100%;
  max-width: 430px;
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper .newsletter-form {
    max-width: initial;
  }
}

.cta-newsletter-wrapper .newsletter-form p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

.cta-newsletter-wrapper .newsletter-form form {
  position: relative;
  margin-top: 25px;
}

.cta-newsletter-wrapper .newsletter-form form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 30px;
  border-radius: 48px;
  line-height: 1;
  color: var(--text);
}

.cta-newsletter-wrapper .newsletter-form form input::placeholder {
  color: var(--text);
}

.cta-newsletter-wrapper .newsletter-form form .email-btn {
  background: var(--header);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.cta-newsletter-wrapper .newsletter-form form .email-btn:hover {
  background-color: var(--theme);
}

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

.cta-banner-4 .cta-content .gt-theme-btn-main {
  margin-top: 32px;
}

.cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn {
  background-color: var(--white);
  color: var(--header4);
}

.cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
  background-color: var(--white);
  color: var(--header4);
}

.contact-info-box {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 9;
  height: 190px;
}

.contact-info-box .icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}

.contact-info-box .content h4 {
  font-size: 20px;
  color: var(--header);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-info-box .content p {
  line-height: 162.5%;
}

.contact-info-box .content p a {
  color: var(--text);
}

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

.contact-info-box.active .icon i {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.contact-info-box.active .content h4,
.contact-info-box.active .content p {
  color: var(--white);
}

.contact-info-box.active .content p a {
  color: var(--white);
}

.contact-wrapper .contact-map iframe {
  width: 100%;
  height: 600px;
  border-radius: 12px;
}

.contact-wrapper .contact-box-items {
  padding: 50px 50px;
  border-radius: 12px;
  background-color: var(--bg);
}

@media (max-width: 767px) {
  .contact-wrapper .contact-box-items {
    padding: 30px;
  }
}

.contact-wrapper .contact-box-items.style-2 {
  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-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input,
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input::placeholder,
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea::placeholder {
  color: var(--white);
}

.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select {
  border: none;
  color: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select .current {
  color: var(--white);
}

.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.contact-wrapper .contact-box-items .contact-form-box {
  margin-top: 30px;
}

.contact-wrapper .contact-box-items .contact-form-box .form-clt input,
.contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  text-transform: capitalize;
}

.contact-wrapper .contact-box-items .contact-form-box .form-clt input::placeholder,
.contact-wrapper .contact-box-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}

.contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}

.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}

.contact-wrapper .contact-box-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 .contact-box-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}

.contact-section-2 {
  position: relative;
  margin: 0 30px;
  border-radius: 12px;
  z-index: 9;
}

.contact-section-2::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);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.array-button .array-prev,
.array-button .array-next {
  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,
.array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.swiper-dot {
  position: relative;
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #E6E8EB;
  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;
}

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

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

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

.home-banner-section {
  margin-top: 89px;
}

@media (max-width: 991px) {
  .home-banner-section {
    margin-top: 82px;
  }
}

.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}

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

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #e43338;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: #59bde2;
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.box-user {
  position: sticky;
  top: 0px;
  padding-top: 60px;
}

.text_invert>div {
  background-image: linear-gradient(to right, rgb(0, 0, 0) 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 {
  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;
}

.actually-area .t_line>div {
  background-image: linear-gradient(to right, var(--header) 50%, rgba(15, 23, 42, 0.2980392157) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.dark .actually-area .t_line>div {
  background-image: linear-gradient(to right, var(--header) 50%, rgba(15, 23, 42, 0.2980392157) 51%);
}

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

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

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

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

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

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

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.image-wrapper {
  position: relative;
  transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

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

/* preloader ??? ??? active class ??? ??? */
.image-wrapper.active .animated-image {
  transform: translateY(0);
  opacity: 1;
}

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

.project-section-3 .line-ani {
  margin-top: -25px;
}

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

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

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

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

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

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

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

.body-bg-5 {
  background-color: #FFFDF5 !important;
}

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

.max-weight-inst {
  max-width: initial !important;
}

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



/* whatsapp */
.whatsapp-ico {
  fill: #fff;
  width: 56px;
  height: 56px;
  padding: 10px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-ico svg {
  width: 100%;
  height: 100%;
}

.whatsapp-ico:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {
  .whatsapp-ico {
    width: 50px;
    height: 50px;
    padding: 9px;
    left: 14px;
    bottom: 14px;
  }
}

/* product details */
.product-feature-card .feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.product-feature-card .feature-head h3 {
  margin-bottom: 0;
}

.product-feature-card .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f2742;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.product-feature-card.feature-card-1 {
  background: #e8f7fb;
  border-left: 4px solid #00a3cc;
  padding: 20px;
  border-radius: 10px;
}

.product-feature-card.feature-card-2 {
  background: #eef7ff;
  border-left: 4px solid #2d79c7;
  padding: 20px;
  border-radius: 10px;
}

.product-feature-card.feature-card-3 {
  background: #f1f8f1;
  border-left: 4px solid #2c9b5b;
  padding: 20px;
  border-radius: 10px;
}

.product-feature-card.feature-card-4 {
  background: #fff4e9;
  border-left: 4px solid #e58a23;
  padding: 20px;
  border-radius: 10px;
}

.product-spec-table thead th {
  background: #0f2742;
  color: #fff;
  border-color: #0f2742;
}

.product-spec-table tbody tr:nth-child(odd) th,
.product-spec-table tbody tr:nth-child(odd) td {
  background: #f5fbff;
}

.product-spec-table tbody th {
  background: #e6f3fb;
  color: #0f2742;
}




/* Wrapper */
.details-image-2 {
  width: 100%;
  overflow-x: auto;
}

/* Table */
.details-image-2 table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: Arial, sans-serif;
}

/* Header */
.details-image-2 thead th {
  background: #0f2b46;
  /* dark blue */
  color: #fff;
  padding: 14px;
  font-size: 16px;
  text-transform: uppercase;
}

/* Left column (labels) */
.details-image-2 tbody th {
  background: #e9edf1;
  color: #0f2b46;
  font-weight: 600;
  text-align: left;
  padding: 12px;
}

/* Data cells */
.details-image-2 td {
  padding: 12px;
  text-align: center;
  color: #000;
}

/* Zebra rows */
.details-image-2 tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

/* Borders */
.details-image-2 th,
.details-image-2 td {
  border: 1px solid #dcdcdc;
}

/* ============================================================
   Products Listing Page Styles
   ============================================================ */
.products-grid-section {
  padding: 80px 0 100px;
}

@media (max-width: 767px) {
  .industry-image-card {
    height: 140px;
  }

  .products-grid-section {
    padding: 50px 0 70px;
  }
}

@media (max-width: 575px) {
  .products-grid-section .row>[class*='col-'] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-card .product-card-thumb {
    height: 140px;
    padding: 6px;
  }

  .product-card .product-card-body {
    padding: 10px 12px 14px;
  }

  .product-card .product-card-body h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .product-card .product-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .product-card .product-card-body .product-card-excerpt {
    font-size: 12px;
    margin-bottom: 10px;
    /* -webkit-line-clamp: 2; */
  }

  .product-card .product-card-footer .view-details-link {
    font-size: 12px;
  }

  .product-card .product-card-footer .view-details-link i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 10px;
  }
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--theme, #f0b72f);
}

.product-card .product-card-thumb {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 280 / 300;
}

.product-card .product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.products-grid-section .product-card {
  min-height: 610px;
}

.products-grid-section .product-card .product-card-thumb {
  min-height: 360px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.products-grid-section .product-card .product-card-thumb img {
  object-fit: contain;
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.06);
}

.product-card .product-badge {
  display: inline-block;
  background: var(--header, #1a1a2e);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-card .product-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .product-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--header, #1a1a2e);
}

.product-card .product-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.product-card .product-card-body h3 a:hover {
  color: var(--theme, #f0b72f);
}

.product-card .product-card-body .product-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-card .product-card-footer {
  margin-top: auto;
}

.product-card .product-card-footer .view-details-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--header, #1a1a2e);
  text-decoration: none;
  transition: all 0.3s;
}

.product-card .product-card-footer .view-details-link i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: var(--header, #1a1a2e);
  color: #fff;
  font-size: 12px;
  transition: all 0.3s;
}

.product-card:hover .product-card-footer .view-details-link {
  color: var(--theme, #f0b72f);
}

.product-card:hover .product-card-footer .view-details-link i {
  background: var(--theme, #f0b72f);
}

@media (max-width: 991px) {
  .products-grid-section .product-card {
    min-height: 560px;
  }

  .products-grid-section .product-card .product-card-thumb {
    min-height: 300px;
    padding: 14px;
  }
}

@media (max-width: 575px) {
  .products-grid-section .product-card {
    min-height: 100%;
  }

  .products-grid-section .product-card .product-card-thumb {
    height: 190px;
    min-height: 190px;
    padding: 10px;
  }
}

/* Section heading */
.products-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.products-section-head .section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--theme, #f0b72f);
  margin-bottom: 10px;
}

.products-section-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
}

@media (max-width: 767px) {
  .products-section-head h2 {
    font-size: 28px;
  }
}

/* ============================================================
   Product Details Page Styles
   ============================================================ */
.product-detail-section {
  margin-top: 32px;
}

.product-detail-section h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  position: relative;
  padding-bottom: 10px;
}

.product-detail-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--theme, #f0b72f);
  border-radius: 2px;
}

.product-detail-section p {
  line-height: 1.75;
  color: #555;
}

.product-detail-section p:last-child,
.product-detail-section ul:last-child,
.product-detail-section ol:last-child,
.product-detail-section table:last-child {
  margin-bottom: 0;
}

/* Product content card */
.product-content-card {
  padding: 32px 34px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media (max-width: 575px) {
  .product-content-card {
    padding: 20px 16px;
  }
}

.product-content-card>h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  margin-bottom: 4px;
}

@media (max-width: 575px) {
  .product-content-card>h2 {
    font-size: 24px;
  }
}

/* Category Badge */
.product-category-badge {
  display: inline-block;
  background: var(--theme, #f0b72f);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Gallery Styles */
.product-gallery-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 16px;
}

.product-main-view {
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.product-main-view a {
  display: block;
  width: 100%;
  text-align: center;
}

.product-main-view img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.4s ease;
  padding: 10px;
}

.product-main-view img:hover {
  transform: scale(1.03);
}

.product-thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f8f9fa;
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--theme, #f0b72f);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sidebar sticky */
.product-sidebar-sticky {
  position: sticky;
  top: 30px;
}

/* Sidebar CTA */
.product-sidebar-cta {
  background: linear-gradient(135deg, var(--header, #1a1a2e) 0%, #2d2d4e 100%);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

.product-sidebar-cta h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-sidebar-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-sidebar-cta .theme-btn {
  display: inline-flex;
}

/* Related Products Sidebar List */
.related-products-sidebar {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 24px;
  margin-top: 20px;
}

.related-products-sidebar h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--header, #1a1a2e);
}

.related-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s;
}

.related-product-item:not(:last-child) {
  margin-bottom: 8px;
}

.related-product-item:hover {
  background: #f8f9fa;
}

.related-product-item .rp-thumb {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 4px;
}

.related-product-item .rp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-item .rp-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--header, #1a1a2e);
  line-height: 1.4;
}

.related-product-item:hover .rp-name {
  color: var(--theme, #f0b72f);
}

/* Spec table styling */
.spec-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.spec-table-wrap table th,
.spec-table-wrap table td {
  padding: 12px 16px;
  border: 1px solid #e5e8ec;
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}

.spec-table-wrap table th {
  background: var(--header, #1a1a2e);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.spec-table-wrap table td:first-child,
.spec-table-wrap table th:first-child {
  text-align: left;
  font-weight: 600;
  background-color: #f2f5f7;
  color: var(--header, #1a2a2e);
}

.spec-table-wrap table th:first-child {
  background: #217fbd;
  color: #fff;
}

.spec-table-wrap table tbody tr:nth-child(even) {
  background-color: #fafbfc;
}

.spec-table-wrap table tbody tr:hover {
  background-color: #f0f4f8;
}

/* FAQ enhanced */
.product-faq-list .faq-item+.faq-item {
  margin-top: 16px;
}

/* List items enhanced */
.project-list-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-list-items ul {
  flex: 1;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list-items ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.project-list-items ul li i {
  color: var(--theme, #f0b72f);
  margin-right: 8px;
}

/* All Products link */
.all-products-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--theme, #f0b72f);
  text-decoration: none;
  transition: all 0.3s;
}

.all-products-link:hover {
  color: var(--header, #1a1a2e);
}

/* ============================================================
   Footer Contact List Styles
   ============================================================ */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list li i {
  color: #59bde2;
  font-size: 18px;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact-list li strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list li a:hover {
  color: var(--theme, #f0b72f);
}

/* ============================================================
   Blog Details Page Styles
   ============================================================ */

/* Hero Image */
.blog-details-hero {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-height: 480px;
}

.blog-details-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-details-hero:hover img {
  transform: scale(1.03);
}

/* Post Meta Bar */
.blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-meta-bar .meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.blog-meta-bar .meta-item i {
  color: var(--theme, #f0b72f);
  font-size: 13px;
}

.blog-meta-bar .meta-category {
  display: inline-block;
  background: var(--theme, #f0b72f);
  color: #fff;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Title */
.blog-detail-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--header, #1a1a2e);
}

@media (max-width: 767px) {
  .blog-detail-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .blog-detail-title {
    font-size: 22px;
  }
}

/* Blog SEO Description / Intro */
.blog-intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  padding: 18px 22px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f2f5f7 100%);
  border-left: 4px solid var(--theme, #f0b72f);
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
  font-style: italic;
}

/* Blog Content Body */
.blog-content-body {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
}

.blog-content-body p {
  margin-bottom: 18px;
}

.blog-content-body h1,
.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4,
.blog-content-body h5,
.blog-content-body h6 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--header, #1a1a2e);
}

.blog-content-body h2 {
  font-size: 28px;
}

.blog-content-body h3 {
  font-size: 24px;
}

.blog-content-body h4 {
  font-size: 20px;
}

.blog-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-content-body ul,
.blog-content-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.blog-content-body ul li,
.blog-content-body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-content-body blockquote {
  border-left: 4px solid var(--theme, #f0b72f);
  padding: 20px 24px;
  margin: 24px 0;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.blog-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-content-body table th,
.blog-content-body table td {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.blog-content-body table th {
  background: var(--header, #1a1a2e);
  color: #fff;
  font-weight: 600;
}

.blog-content-body a {
  color: var(--theme, #f0b72f);
  text-decoration: underline;
  transition: color 0.3s;
}

.blog-content-body a:hover {
  color: var(--header, #1a1a2e);
}

/* Tags & Share Block */
.blog-tag-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  margin-top: 32px;
}

.blog-tag-share .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-share .blog-tags a {
  display: inline-block;
  padding: 7px 18px;
  background: #f2f5f7;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-tag-share .blog-tags a:hover {
  background: var(--theme, #f0b72f);
  color: #fff;
}

.blog-tag-share .blog-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-tag-share .blog-social span {
  font-weight: 600;
  font-size: 15px;
  color: var(--header, #1a1a2e);
  margin-right: 6px;
}

.blog-tag-share .blog-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f5f7;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-tag-share .blog-social a:hover {
  background: var(--theme, #f0b72f);
  color: #fff;
  transform: translateY(-2px);
}

/* Prev/Next Navigation */
.blog-prev-next {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.blog-prev-next .pn-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: var(--header, #1a1a2e);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.blog-prev-next .pn-item:hover {
  background: #fff;
  border-color: var(--theme, #f0b72f);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.blog-prev-next .pn-item.pn-next {
  text-align: right;
  flex-direction: row-reverse;
}

.blog-prev-next .pn-item .pn-thumb {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-prev-next .pn-item .pn-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-prev-next .pn-item .pn-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme, #f0b72f);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.blog-prev-next .pn-item .pn-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 575px) {
  .blog-prev-next {
    flex-direction: column;
  }

  .blog-prev-next .pn-item .pn-thumb {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
}

/* Sidebar Enhancements */
.gt-main-sideber .gt-recent-post-area .gt-recent-items .gt-recent-thumb {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
}

.gt-main-sideber .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gt-main-sideber .gt-recent-post-area .gt-recent-items .gt-recent-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-main-sideber .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  font-size: 13px;
}

/* Sidebar widget product items */
.gt-main-sideber .gt-recent-post-area .gt-recent-items .gt-recent-thumb.product-thumb-side {
  background: #fff;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Sticky sidebar */
.sticky-style {
  position: sticky;
  top: 100px;
}

/* Blog card wrapper */
.blog-detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.blog-detail-card-body {
  padding: 28px 30px;
}

@media (max-width: 575px) {
  .blog-detail-card-body {
    padding: 20px 16px;
  }
}

/* Author box */
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f2f5f7 100%);
  border-radius: 10px;
  margin-top: 32px;
}

.blog-author-box .author-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--theme, #f0b72f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.blog-author-box .author-info .author-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme, #f0b72f);
  letter-spacing: 0.5px;
}

.blog-author-box .author-info .author-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--header, #1a1a2e);
}

/* Sidebar CTA Widget */
.sidebar-cta-widget {
  background: linear-gradient(135deg, var(--header, #1a1a2e) 0%, #2d2d4e 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #fff;
}

.sidebar-cta-widget h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sidebar-cta-widget p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 20px;
}

.sidebar-cta-widget .theme-btn {
  display: inline-flex;
}

/* Reading time badge */
.reading-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #777;
}

.reading-time-badge i {
  color: var(--theme, #f0b72f) !important;
}

/* ============================================================
   Legal Pages (Terms & Conditions, Privacy Policy)
   ============================================================ */
.legal-page-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media (max-width: 575px) {
  .legal-page-content {
    padding: 24px 18px;
  }
}

.legal-page-content .legal-updated {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--theme, #f0b72f);
  display: inline-block;
}

.legal-page-content h2::after {
  content: '';
  display: block;
}

.legal-page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--header, #1a1a2e);
  margin-top: 22px;
  margin-bottom: 10px;
}

.legal-page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.legal-page-content ul,
.legal-page-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page-content ul li,
.legal-page-content ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 8px;
}

.legal-page-content a {
  color: var(--theme, #f0b72f);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.legal-page-content a:hover {
  color: var(--header, #1a1a2e);
  text-decoration: underline;
}

.legal-page-content .legal-contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.legal-page-content .legal-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-page-content .legal-contact-list li:last-child {
  border-bottom: none;
}

.legal-page-content .legal-contact-list li i {
  color: var(--theme, #f0b72f);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ============================================================
   Gallery Page Styles
   ============================================================ */
.gallery-section {
  padding: 50px 0;
}

.gallery-page-shell {
  max-width: 1140px;
  margin: 0 auto;
}

.gallery-page-title {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.gallery-live-layout .gallery {
  margin: 35px -38px -38px 0;
  font-size: 0;
}

.gallery-live-layout .gallery-item {
  display: inline-block;
  width: 100%;
  max-width: 25%;
  margin: 0;
  padding: 0 38px 38px 0;
  vertical-align: top;
  text-align: center;
}

.gallery-live-layout .gallery-icon {
  display: block;
}

.gallery-live-layout .gallery-icon a {
  display: block;
}

.gallery-live-layout .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

.gallery-live-layout .gallery-caption {
  text-align: center;
}

.gallery-empty-state {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .gallery-live-layout .gallery {
    margin-right: -24px;
    margin-bottom: -24px;
  }

  .gallery-live-layout .gallery-item {
    max-width: 33.33%;
    padding-right: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-page-title {
    font-size: 34px;
  }

  .gallery-live-layout .gallery {
    margin-top: 15px;
    margin-right: -16px;
    margin-bottom: -16px;
  }

  .gallery-live-layout .gallery-item {
    max-width: 50%;
    padding-right: 16px;
    padding-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .gallery-live-layout .gallery-item {
    max-width: 100%;
  }
}

.gallery-lightbox.mfp-bg {
  background: rgba(22, 22, 22, 0.88);
  opacity: 1;
}

.gallery-lightbox .mfp-container {
  padding: 90px 40px 130px;
}

.gallery-lightbox .mfp-image-holder .mfp-content {
  max-width: min(560px, calc(100vw - 120px));
}

.gallery-lightbox .mfp-figure {
  cursor: default;
}

.gallery-lightbox .mfp-figure:after {
  display: none;
}

.gallery-lightbox .mfp-figure figure {
  background: transparent;
}

.gallery-lightbox .mfp-img {
  width: auto;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}

.gallery-lightbox .mfp-bottom-bar {
  top: auto;
  bottom: -78px;
  left: 50%;
  width: min(90vw, 900px);
  margin-top: 0;
  transform: translateX(-50%);
}

.gallery-lightbox .mfp-title {
  padding-right: 0;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox .mfp-counter {
  top: 24px;
  left: 24px;
  right: auto;
  margin-right: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-lightbox .mfp-close {
  display: none !important;
}

.gallery-lightbox .mfp-arrow {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  opacity: 1;
}

.gallery-lightbox .mfp-arrow:before,
.gallery-lightbox .mfp-arrow:after {
  border: 0;
  width: auto;
  height: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.gallery-lightbox .mfp-arrow:after {
  display: none;
}

.gallery-lightbox .mfp-arrow-left {
  left: 34px;
}

.gallery-lightbox .mfp-arrow-left:before {
  content: "\f104";
}

.gallery-lightbox .mfp-arrow-right {
  right: 34px;
}

.gallery-lightbox .mfp-arrow-right:before {
  content: "\f105";
}

.gallery-lightbox .gallery-lightbox-toolbar {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1047;
  display: flex;
  align-items: center;
  gap: 22px;
}

.gallery-lightbox .gallery-lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  opacity: 0.96;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.gallery-lightbox .gallery-lightbox-btn:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.gallery-lightbox .gallery-lightbox-btn.is-active {
  color: #8cf55f;
}

.gallery-lightbox.gallery-lightbox-zoomed .mfp-img {
  transform: scale(1.12);
}

@media (max-width: 991px) {
  .gallery-lightbox .mfp-container {
    padding: 88px 24px 112px;
  }

  .gallery-lightbox .mfp-image-holder .mfp-content {
    max-width: min(520px, calc(100vw - 72px));
  }

  .gallery-lightbox .mfp-arrow-left {
    left: 10px;
  }

  .gallery-lightbox .mfp-arrow-right {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .gallery-lightbox .mfp-container {
    padding: 78px 18px 110px;
  }

  .gallery-lightbox .mfp-image-holder .mfp-content {
    max-width: calc(100vw - 36px);
  }

  .gallery-lightbox .gallery-lightbox-toolbar {
    top: 18px;
    right: 18px;
    gap: 16px;
  }

  .gallery-lightbox .gallery-lightbox-btn {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }

  .gallery-lightbox .mfp-counter {
    top: 20px;
    left: 18px;
    font-size: 16px;
  }

  .gallery-lightbox .mfp-arrow {
    width: 54px;
    height: 54px;
    margin-top: -27px;
  }

  .gallery-lightbox .mfp-arrow:before,
  .gallery-lightbox .mfp-arrow:after {
    font-size: 40px;
  }

  .gallery-lightbox .mfp-bottom-bar {
    bottom: -70px;
    width: calc(100vw - 32px);
  }

  .gallery-lightbox .mfp-title {
    font-size: 16px;
  }
}

/* ============================================================
   About Us Page Styles
   ============================================================ */

/* ── Story Section ── */
.about-story-section {
  padding: 80px 0 60px;
}

.about-story-images {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #59bde2;
  color: #fff;
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(240, 183, 47, 0.4);
  z-index: 2;
}

@media (max-width: 991px) {
  .about-experience-badge {
    bottom: 16px;
    right: 16px;
  }
}

.about-exp-number {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.about-exp-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.3;
}

.about-story-content h6 {
  margin-bottom: 14px;
}

.about-story-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  line-height: 1.3;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .about-story-content h2 {
    font-size: 24px;
  }
}

.about-story-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 12px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1 1 200px;
  min-width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.about-highlight-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.about-highlight-item i {
  font-size: 22px;
  color: #59bde2;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.about-highlight-item strong {
  display: block;
  font-size: 15px;
  color: var(--header, #1a1a2e);
}

.about-highlight-item span {
  font-size: 12px;
  color: #888;
}

/* ── Counters Strip ── */
.about-counters-section {
  padding: 50px 0;
  background: var(--header, #1a1a2e);
}

.about-counters-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.about-counter-box {
  flex: 1 1 180px;
  min-width: 160px;
  color: #fff;
}

.about-counter-box .counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240, 183, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.about-counter-box .counter-icon i {
  font-size: 22px;
  color: #59bde2;
}

.about-counter-box h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.about-counter-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── Mission / Vision / Values Cards ── */
.about-mission-section {
  padding: 80px 0;
}

/* ── Our Strategy Section ── */
.about-strategy-section {
  padding: 80px 0;
  background: #fff;
}

.strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.strategy-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(273deg, #72c7e7, #e43338);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-icon i {
  font-size: 22px;
  color: #fff;
}

.strategy-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  margin-bottom: 10px;
  line-height: 1.4;
}

.strategy-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 767px) {
  .strategy-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .strategy-icon {
    margin: 0 auto;
  }
}

.about-mission-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.about-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.mission-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(273deg, #72c7e7, #e43338);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-card-icon i {
  font-size: 24px;
  color: #fff;
}

.about-mission-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  margin-bottom: 12px;
}

.about-mission-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ── Why Choose Us ── */
.about-why-section {
  padding: 80px 0;
}

.about-why-section h6 {
  margin-bottom: 12px;
}

.about-why-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--header, #1a1a2e);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .about-why-section h2 {
    font-size: 24px;
  }
}

.about-why-section>.container>.row>.col-lg-6:first-child>p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-why-list li:last-child {
  border-bottom: none;
}

.about-why-list li i {
  font-size: 20px;
  color: #59bde2;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-why-list li strong {
  display: block;
  font-size: 15px;
  color: var(--header, #1a1a2e);
  margin-bottom: 2px;
}

.about-why-list li span {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.about-why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-why-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── CTA Section ── */
/* .about-cta-section {
  padding: 0 0 80px;
} */

.about-cta-card {
  background: linear-gradient(135deg, var(--header, #1a1a2e) 0%, #2a2a4e 100%);
  border-radius: 16px;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.about-cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.about-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 480px;
}

@media (max-width: 575px) {
  .about-cta-card {
    padding: 30px 22px;
    text-align: center;
    justify-content: center;
  }

  .about-cta-content h3 {
    font-size: 20px;
  }
}

.status-page-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.status-page-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.status-page-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0ea5e9 0%, #22c55e 100%);
}

.status-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.status-page-code {
  font-size: clamp(72px, 12vw, 144px);
  font-weight: 800;
  line-height: 0.9;
  color: #0f172a;
  margin: 0 0 20px;
}

.status-page-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #0f172a;
}

.status-page-text {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.status-page-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.status-page-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 767px) {
  .status-page-section {
    padding: 90px 0;
  }

  .status-page-card {
    padding: 40px 24px;
    border-radius: 22px;
  }

  .status-page-text {
    font-size: 16px;
  }
}


/* ==================================================
   Page-specific styles moved from inline PHP templates
================================================== */

/* ---------- index2.php ---------- */
#product-section {
  margin-top: 100px;
}

#productCarousel .carousel-item {
  height: 450px;
}



/* Optional: better spacing inside */
.product-row {
  height: 100%;
}

/* Image full height */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content full height + alignment */
.product-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Keep button at bottom */
.product-content .btn {
  margin-top: auto;
}

/* Mobile fix */
@media (max-width: 768px) {
  #productCarousel .carousel-item {
    height: auto;
  }

  .product-img {
    height: 250px;
  }
}

/* Position wrapper */
.product-carousel-wrapper {
  position: relative;
}

/* Custom controls outside */
/* Wrapper must control positioning */
.product-carousel-wrapper {
  position: relative;
}

/* Custom Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* Position OUTSIDE */
.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

/* Arrow icons styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  /* black arrows */
  width: 20px;
  height: 20px;
}

/* Hover effect */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #000;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0);
  /* white arrows on hover */
}

/* Hide default opacity fade */
.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
}

.product-image-box {
  height: 450px;
  background: #fff;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .product-image-box {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-image-box {
    height: 250px;
    padding: 15px;
  }

  .product-carousel-wrapper {
    height: 660px;
  }
}

.product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.demo-product-row {
  min-height: 460px;
}

.demo-product-image-box {
  /* background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%); */
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  height: 100%;
  min-height: 440px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-product-image-box img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.demo-product-image-box:hover img {
  transform: scale(1.03);
}

.demo-product-card {
  background: linear-gradient(180deg, #fcfcfc 0%, #f4f4f4 100%);
  border-radius: 20px;
  padding: 34px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.demo-product-title {
  font-size: 30px;
  line-height: 1.2;
  color: #111;
}

.demo-product-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.demo-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-product-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.demo-product-list li::before {
  content: '✔';
  color: #59bde2;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.demo-product-btn {
  width: auto !important;
  font-size: 14px;
  padding: 4px;
  border-radius: 40px;
  align-self: flex-start;
}

.demo-product-btn .btn_inner {
  padding: 7px 16px;
}

.demo-product-btn .btn_text span {
  font-size: 13px;
}

.demo-product-btn .btn_icon {
  transform: scale(0.88);
  transform-origin: center;
}


@media (max-width: 991px) {
  .demo-product-title {
    font-size: 24px;
  }

  .demo-product-card {
    padding: 26px 22px;
  }

  .demo-product-image-box {
    min-height: 340px;
    padding: 24px;
  }

  .demo-product-image-box img {
    max-height: 280px;
  }
}

@media (max-width: 767px) {
  .demo-product-row {
    min-height: auto;
  }

  .demo-product-image-box {
    min-height: 250px;
    height: 250px;
    padding: 18px;
    border-radius: 16px;
  }

  .demo-product-image-box img {
    max-height: 210px;
  }

  .demo-product-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .demo-product-title {
    font-size: 22px;
  }

  .demo-product-desc,
  .demo-product-list li {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .demo-product-image-box {
    height: 220px;
    min-height: 220px;
  }

  .demo-product-card {
    padding: 20px 16px;
  }

  .demo-product-title {
    font-size: 20px;
  }

  .demo-product-btn .btn_inner {
    padding: 6px 14px;
  }

  .demo-product-btn .btn_text span {
    font-size: 12px;
  }

  .product-carousel-wrapper {
    height: auto;
  }
}

/* ---------- onepro.php ---------- */
/* =============================================
       HERO SECTION — ORIGINAL UNTOUCHED
    ============================================= */
.product-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
}

/* =============================================
       PRODUCT DETAILS SECTION — ORIGINAL UNTOUCHED
    ============================================= */
.product-details-section {
  padding: 60px 0;
}

.product-left-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.product-left-content .subtitle {
  font-size: 16px;
  color: #f45c1f;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-left-content>p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.product-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Hide mobile button on desktop, desktop button on mobile */
.product-buttons-mobile {
  display: none;
}

@media (max-width: 991px) {
  .product-buttons-desktop {
    display: none !important;
  }
  .product-buttons-mobile {
    display: block !important;
  }
  .product-buttons-mobile .product-buttons {
    justify-content: center;
    padding: 20px 0;
  }
}

/* SLIDER — ORIGINAL UNTOUCHED */
.product-slider-wrapper {
  /* background: #fff; */
  /* border-radius: 12px; */
  padding: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.slider {
  position: relative;
}

.slides {
  position: relative;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: none;
  transition: opacity 0.3s ease;
}

#img1:checked~.slides .s1,
#img2:checked~.slides .s2,
#img3:checked~.slides .s3,
#img4:checked~.slides .s4,
#img5:checked~.slides .s5 {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnails label {
  cursor: pointer;
  display: inline-block;
}

.thumbnails label img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#img1:checked~.thumbnails label[for="img1"] img,
#img2:checked~.thumbnails label[for="img2"] img,
#img3:checked~.thumbnails label[for="img3"] img,
#img4:checked~.thumbnails label[for="img4"] img,
#img5:checked~.thumbnails label[for="img5"] img {
  opacity: 1;
  border-color: #fd0008;
}

.thumbnails label img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* =============================================
       SHARED — consistent section spacing
    ============================================= */
.page-section {
  padding: 60px 0;
}

.page-section.bg-white {
  background: #fff;
}

.page-section.bg-grey {
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: #3b82f6;
  margin: 0 auto 35px;
  border-radius: 2px;
}

/* =============================================
       VIDEO
    ============================================= */
.video-thumb-wrap {
  position: relative;
  display: inline-block;
  max-width: 700px;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* removes black bars */
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #e43439;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: background 0.2s, transform 0.2s;
}

.video-thumb-wrap:hover .video-play-btn {
  background: #e43439;
  transform: translate(-50%, -50%) scale(1.1);
}

/* =============================================
       KEY FEATURES CARDS
    ============================================= */
.feature-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.feature-card-body {
  padding: 20px;
}

.feature-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.feature-card-body p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* =============================================
       PRODUCT DESCRIPTION
    ============================================= */
.desc-text {
  /* max-width: 860px; */
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.desc-text p+p {
  margin-top: 16px;
}

/* =============================================
       BENEFITS
    ============================================= */
.benefits-img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: '✔';
  color: #3b82f6;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
       BOTTOM DETAILS SECTION (grey bg)
    ============================================= */

/* SUB-SECTION TITLES */
.detail-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.detail-divider {
  width: 36px;
  height: 3px;
  background: #3b82f6;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* INTRO / OVERVIEW */
.detail-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  max-width: 800px;
}

/* KEY FEATURES CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 7px 0;
  color: #444;
  font-size: 15px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '✔';
  color: #f45c1f;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
       SPECS TABLE
    ============================================= */
.spec-dropdown-wrap {
  position: relative;
  display: inline-block;
}

.spec-dropdown-btn {
  padding: 7px 16px;
  border: 2px solid #6b2119;
  background: #e43439;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  justify-content: space-between;
  font-size: 14px;
}

.spec-dropdown-arrow {
  font-size: 11px;
}

.spec-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 90px;
  background: #fff;
  border: 2px solid #e43439;
  border-radius: 4px;
  z-index: 99;
  overflow: hidden;
}

.spec-dropdown-menu.open {
  display: block;
}

.spec-dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #e43439;
  font-size: 14px;
  transition: background 0.15s;
}

.spec-dropdown-item:hover,
.spec-dropdown-item.active {
  background: #e43439;
  color: #fff;
}

.spec-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin-top: 16px;
}

.spec-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.spec-table-wrap table th {
  background-color: #e43439;
  color: #fff;
  padding: 12px 14px;
  border: 1px solid #6b2119;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.spec-table-wrap table td {
  background-color: #dbeeff;
  padding: 10px 14px;
  border: 1px solid #b8d4ef;
  color: #333;
  font-size: 13px;
  vertical-align: top;
}

.spec-table-wrap table tr:hover td {
  background-color: #c8e0f8;
}

.spec-table-hidden {
  display: none;
}

/* =============================================
       WHY CHOOSE US CARDS
    ============================================= */
.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  background: #fff0eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-card-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.why-card-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* =============================================
       CTA STRIP
    ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--header, #1a1a2e) 0%, #2d2d4e 100%);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}

.cta-strip h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.cta-strip p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  padding: 13px 36px;
  background: #fff;
  color: #2b41c0;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: #ffe8e2;
  transform: translateY(-2px);
  color: #2b3ac0;
  text-decoration: none;
}

/* image slider arrow  */
/* ARROW BUTTONS */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 5;
  padding: 0 10px;
}

.arrow {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #e43439;
  transform: scale(1.1);
}

.other-products {
  padding: 60px 0;
}

.product-slider {
  position: relative;
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: 20px;
}

.product-item {
  text-align: center;
}

.product-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.other-products .btn {
  display: inline-block;
  padding: 8px 16px;
  background: #e43439;
  color: #fff;
  text-decoration: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  /* important */
}

.slider-nav .prev,
.slider-nav .next {
  pointer-events: all;
  /* re-enable click */

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;

  font-size: 16px;
}

/* Proper alignment */
.slider-nav .prev {
  left: 10px;
}

.slider-nav .next {
  right: 10px;
}

.slider-nav button {
  background: #e43439;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.slider-text {
  text-align: center;
  margin-top: 20px;
}

.slider-text a h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e43439;
  text-decoration: underline;
  cursor: pointer;
}

.slider-text a h4:hover {
  color: #c0392b;
}


/* other products image  */
.product-img-box {
  width: 100%;
  height: 180px;
  /* fixed height = equal cards */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* optional */
  border-radius: 10px;
  padding: 10px;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 768px) {
  .product-hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .product-left-content h2 {
    font-size: 28px;
  }

  .slides img {
    height: 300px;
  }

  .thumbnails label img {
    width: 80px;
    height: 60px;
  }

  .product-buttons {
    flex-direction: column;
  }

  .cta-strip {
    padding: 36px 20px;
  }

  .cta-strip h3 {
    font-size: 22px;
  }
}


/* Mobile tweaks */
/* Desktop - EXACTLY 4 items */
@media (min-width: 993px) {
  .product-track {
    display: flex;
    gap: 20px;
  }

  .product-item {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}

@media (max-width: 992px) {
  .product-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .slider-nav .prev {
    left: 5px;
  }

  .slider-nav .next {
    right: 5px;
  }

  .slider-nav button {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .slider-nav .prev,
  .slider-nav .next {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-item {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .thumbnails {
    flex-wrap: nowrap;
    /* ❌ remove wrapping */
    overflow-x: auto;
    /* ✅ enable horizontal scroll */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .thumbnails::-webkit-scrollbar {
    display: none;
    /* optional: hide scrollbar */
  }

  .thumbnails label {
    flex: 0 0 auto;
    /* prevent shrinking */
  }

  .thumbnails label img {
    width: 70px;
    /* slightly smaller for mobile */
    height: 55px;
  }
}

/* ---------- product2.php ---------- */
/* HERO SECTION */
.product-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
}

@media(max-width: 768px) {
  .product-hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }
}

/* PRODUCT DETAILS SECTION */
.product-details-section {
  padding: 100px 0;
}

.product-left-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.product-left-content .subtitle {
  font-size: 16px;
  color: #f45c1f;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-left-content>p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.product-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* SLIDER STYLING */
.product-slider-wrapper {
  /* border-radius: 12px; */
  padding: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.slider {
  position: relative;
}

.slides {
  position: relative;
}

.slides img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  display: none;
  transition: opacity 0.3s ease;
}

/* Show active slide */
#img1:checked~.slides .s1,
#img2:checked~.slides .s2,
#img3:checked~.slides .s3,
#img4:checked~.slides .s4,
#img5:checked~.slides .s5 {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* THUMBNAILS */
.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnails label {
  cursor: pointer;
  display: inline-block;
}

.thumbnails label img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#img1:checked~.thumbnails label[for="img1"] img,
#img2:checked~.thumbnails label[for="img2"] img,
#img3:checked~.thumbnails label[for="img3"] img,
#img4:checked~.thumbnails label[for="img4"] img,
#img5:checked~.thumbnails label[for="img5"] img {
  opacity: 1;
  border-color: #fd0008;
}

.thumbnails label img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media(max-width: 768px) {
  .product-details-section {
    padding: 60px 0;
  }

  .product-left-content h2 {
    font-size: 28px;
  }

  .slides img {
    height: 300px;
  }

  .thumbnails label img {
    width: 80px;
    height: 60px;
  }

  .product-buttons {
    flex-direction: column;
  }
}

/* PRODUCT GRID */
.product-list-section {
  padding: 80px 0 120px;
}

.product-list-section .section-title {
  margin-bottom: 60px;
}

.product-block {
  padding: 70px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-block:first-child {
  border-top: none;
}

.product-block-content {
  max-width: 560px;
}

.product-block-content .product-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #e43439;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-block-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a1a1a;
}

.product-block-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 22px;
}

.product-block-content .gt-theme-btn-main {
  min-width: 170px;
}

@media(max-width: 991px) {
  .product-block {
    padding: 50px 0;
  }

  .product-block-content {
    max-width: 100%;
  }
}

/* Hide mobile title on desktop */
.mobile-title {
  display: none;
}

@media (max-width: 768px) {

  /* Stack layout */
  .product-section .row {
    display: flex;
    flex-direction: column;
  }

  /* Show mobile title */
  .mobile-title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* Hide original title */
  .product-block-content h3 {
    display: none;
  }

  /* Order control */
  .product-main-view {
    order: 2;
  }

  .product-block-content {
    order: 3;
  }
}

/* Hide mobile elements on desktop */
.mobile-title,
.mobile-label {
  display: none;
}

@media (max-width: 768px) {

  /* Show mobile title + label */
  .mobile-title,
  .mobile-label {
    display: block;
  }

  .mobile-label {
    font-size: 13px;
    color: #f45c1f;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase
  }

  .mobile-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* Hide original ones */
  .product-block-content h3,
  .product-block-content .product-label {
    display: none;
  }

  /* Stack layout */
  .product-section .row {
    display: flex;
    flex-direction: column;
  }
}

/* ==================================================
   Shared polish for index2.php, onepro.php, product2.php
================================================== */
.home-banner-section .carousel-item {
  min-height: clamp(320px, 52vw, 650px);
  background: #eef2f5;
}

.home-banner-section .carousel-item img,
.product-hero img {
  display: block;
}

.home-banner-section .carousel-item img {
  height: clamp(320px, 52vw, 650px);
  object-fit: cover;
}

.home-banner-section .carousel-indicators [data-bs-target],
#productCarousel+.d-flex [data-bs-target] {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #e43439;
  opacity: 0.35;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.home-banner-section .carousel-indicators .active,
#productCarousel+.d-flex .active {
  width: 28px;
  opacity: 1;
}

.home-about-section .about-wrapper-3,
.demo-product-card,
.demo-product-image-box,
.product-block-content,
.product-main-view,
/* .product-slider-wrapper, */
.why-card,
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.demo-product-card:hover,
.product-section .row:hover .product-block-content,
.product-section .row:hover .product-main-view,
.why-card:hover,
.feature-card:hover {
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.product-btn-sm,
.other-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-section:nth-of-type(even) {
  background: #ffffff;
}

.product-section .row {
  padding: 34px 0;
}

.product-main-view {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.06);
}

.product-main-view img {
  border-radius: 12px;
}

.product-block-content {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-block-content p:last-of-type {
  margin-bottom: 26px;
}

.product-video-block {
  text-align: center;
  margin-bottom: 60px;
}

.product-hero {
  height: 600px;
}

/* .product-slider-wrapper {
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
} */
.banner-disclaimer{
    position: absolute;
    left: -234px;
    top: 150%;
    transform: rotate(-90deg);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .banner-disclaimer {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: block;
        text-align: center;
        padding: 10px 15px;
        font-size: 10px;
        letter-spacing: 1px;
        background-color: #f8f8f8;
        color: #555;
        white-space: normal;
    }
}

.disclaimer{
    position: absolute;
    left: -234px;
    top: 150%;
    transform: rotate(-90deg);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .disclaimer {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: block;
        text-align: center;
        padding: 10px 15px;
        font-size: 10px;
        letter-spacing: 1px;
        background-color: #f8f8f8;
        color: #555;
        white-space: normal;
        margin-top: 8px;
        border-radius: 6px;
    }
}
.slides img {
  background: #fff;
}

.thumbnails {
  justify-content: center;
}

.thumbnails label img {
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.spec-table-wrap {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.other-products .product-track {
  transition: transform 0.35s ease;
}

.other-products .product-item {
  padding: 20px 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.other-products .product-item h3 {
  min-height: 48px;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.other-products .product-img-box {
  margin-bottom: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.other-products .btn {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.other-products .btn:hover {
  background: #be2429;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .product-hero {
    height: 380px;
  }

  .product-block-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {

  .home-banner-section .carousel-item,
  .home-banner-section .carousel-item img {
    min-height: 300px;
    height: 300px;
  }

  .product-section .row {
    padding: 20px 0;
  }

  .product-block-content {
    padding: 22px 18px;
  }

  .product-video-block {
    margin-bottom: 36px;
  }

  .other-products .product-item h3 {
    min-height: auto;
  }
}

/* ==================================================
   Responsive refinement for home, products, and detail pages
================================================== */
#smooth-content {
  overflow: clip;
}


.product-label,
.mobile-label {
  letter-spacing: 0.08em;
}

.home-about-section .about-wrapper-3 {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(228, 52, 57, 0.04), transparent 32%),
    #ffffff;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.06);
}

.home-about-image {
  margin-top: 26px;
  border-radius: 16px;
  overflow: hidden;
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* like your image behavior */
  display: block;
}

#productCarousel .carousel-item {
  height: auto;
}

#productCarousel .carousel-inner {
  overflow: visible;
  min-height: 460px;
}

.product-carousel-wrapper {
  padding-inline: clamp(0px, 4vw, 34px);
}

.demo-product-row {
  min-height: auto;
}

.demo-product-image-box,
.demo-product-card {
  min-height: clamp(330px, 34vw, 460px);
}

/* .demo-product-image-box {
    background:
        radial-gradient(circle at 18% 18%, rgba(228, 52, 57, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
} */

.demo-product-card {
  background:
    linear-gradient(135deg, rgba(244, 92, 31, 0.08), transparent 36%),
    #ffffff;
  display: flex;
  flex-direction: column;
}

.demo-product-card>div:first-child {
  flex: 1 1 auto;
}

.demo-product-card>.mt-4 {
  margin-top: auto !important;
  padding-top: 16px;
}

.demo-product-title,
.product-block-content h3,
.product-left-content h1 {
  text-wrap: balance;
}

.demo-product-desc,
.product-block-content p,
.desc-text {
  text-wrap: pretty;
}

.product-section {
  position: relative;
}

.product-section .container {
  position: relative;
  z-index: 1;
}

.product-section .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-block: clamp(34px, 6vw, 72px);
}

.product-section+.product-section {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.product-main-view {
  min-height: clamp(280px, 34vw, 440px);
  padding: clamp(16px, 3vw, 30px);
}

.product-main-view a {
  width: 100%;
}

.product-main-view img {
  width: 100%;
  max-height: clamp(240px, 30vw, 380px);
  object-fit: contain;
  display: block;
}

.product-block-content {
  max-width: 600px;
}

.product-block-content .theme-btn {
  margin-top: 4px;
}

.mobile-title,
.mobile-label {
  color: #111827;
}

.mobile-label {
  color: #e43439;
}

.product-hero {
  height: clamp(320px, 48vw, 560px);
  margin-top: 89px;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.product-details-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-left-content {
  height: 100%;
  padding: clamp(22px, 4vw, 36px);
  /* border: 1px solid rgba(15, 23, 42, 0.06); */
  /* border-radius: 18px; */
  /* background: #ffffff; */
  /* box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06); */
}

.product-left-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 600;
}

.product-slider-wrapper {
  padding: clamp(14px, 2.5vw, 22px);
  /* border-radius: 18px; */
}

.slides {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f6f8fb;
}

.slides img {
  height: 100%;
  object-fit: contain;
  padding: clamp(12px, 2vw, 20px);
}

.slider-arrows {
  padding: 0 clamp(8px, 2vw, 16px);
}

.arrow,
.slider-nav .prev,
.slider-nav .next {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.desc-text {
  max-width: 980px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.05);
}

.footer-section-5 .footer-area-5 {
  padding: clamp(42px, 6vw, 74px) 0;
}

.footer-section-5 .footer-item,
.footer-section-5 .footer-right-item {
  height: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.benefits-list {
  text-align: left !important;
}

.spec-table-wrap {
  background: #ffffff;
}

.spec-table-wrap table th,
.spec-table-wrap table td {
  line-height: 1.45;
}

.page-section.hero-5 {
  background:
    linear-gradient(135deg, rgba(228, 52, 57, 0.05), transparent 36%),
    #f8fafc;
}

.why-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.why-card-icon {
  color: #e43439;
}

.cta-strip {
  overflow: hidden;
  position: relative;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.15), transparent 34%);
  pointer-events: none;
}

.cta-strip>* {
  position: relative;
  z-index: 1;
}

.other-products {
  background: #ffffff;
}

.other-products .product-slider {
  padding-inline: 4px;
}

@media (max-width: 1199px) {
  .product-carousel-wrapper {
    padding-inline: 20px;
  }

  .carousel-control-prev {
    left: 4px;
  }

  .carousel-control-next {
    right: 4px;
  }
}

@media (max-width: 991px) {
  .home-banner-section {
    margin-top: 82px;
  }

  .home-about-section .about-wrapper-3 {
    border-radius: 16px;
  }

  .demo-product-image-box,
  .demo-product-card {
    min-height: 330px;
  }

  .product-section .row {
    row-gap: 18px;
  }

  .product-block-content {
    max-width: 100%;
  }

  .product-hero {
    margin-top: 82px;
  }

  .product-left-content {
    margin-top: 4px;
  }

  .slides {
    aspect-ratio: 16 / 11;
  }

  .page-section {
    padding: 48px 0;
  }
}

@media (max-width: 767px) {

  .home-banner-section .carousel-item,
  .home-banner-section .carousel-item img {
    min-height: 240px;
    height: 240px;
  }

  .home-about-section {
    padding-top: 54px;
  }

  .home-about-section .about-wrapper-3 {
    padding: 22px 18px;
  }

  .about-content .theme-btn,
  .product-btn-sm,
  .product-buttons .theme-btn,
  .product-block-content .theme-btn,
  .cta-strip .theme-btn {
    width: 100%;
    max-width: 320px;
  }

  .product-carousel-wrapper {
    padding-inline: 12px;
    position: relative;
  }

  .demo-product-image-box {
    min-height: 230px;
    height: 230px;
  }

  .demo-product-image-box img {
    max-height: 190px;
  }

  .demo-product-card {
    min-height: auto;
  }

  .product-section .row {
    padding-block: 30px;
  }

  .product-section .col-lg-6 {
    margin-bottom: 0 !important;
  }

  .product-main-view {
    min-height: 230px;
    padding: 16px;
  }

  .product-main-view img {
    max-height: 210px;
  }

  .product-block-content {
    padding: 20px 18px;
    text-align: left;
  }

  .product-block-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .mobile-title {
    font-size: 22px;
    line-height: 1.25;
    text-wrap: balance;
  }

  .product-hero {
    height: 260px;
  }

  .product-details-section {
    padding: 38px 0;
  }

  .product-left-content {
    padding: 20px 18px;
  }

  .product-left-content h1 {
    font-size: 27px;
  }

  .slides {
    aspect-ratio: 1 / 1;
  }

  .arrow {
    width: 38px;
    height: 38px;
  }

  .thumbnails {
    justify-content: flex-start;
  }

  .desc-text {
    padding: 20px 16px;
    text-align: left;
  }

  .section-title h2,
  .section-title .text-anim {
    font-size: 28px;
    line-height: 1.2;
  }

  .benefits-list li {
    text-align: left;
  }

  .spec-table-wrap {
    margin-inline: -12px;
    border-radius: 0;
  }

  .spec-table-wrap table {
    min-width: 760px;
  }

  .spec-table-wrap table th,
  .spec-table-wrap table td {
    padding: 10px;
    font-size: 12px;
  }

  .why-card {
    padding: 18px 16px;
  }

  .cta-strip {
    padding: 34px 18px;
    border-radius: 12px;
  }

  .other-products {
    padding: 44px 0;
  }

  .other-products .product-item {
    padding: 18px 12px;
  }

  .slider-text.section-padding {
    padding: 28px 0 0;
  }
}

@media (max-width: 575px) {

  .home-banner-section .carousel-item,
  .home-banner-section .carousel-item img {
    min-height: 210px;
    height: 210px;
  }

  .demo-product-title {
    font-size: 21px;
  }

  .demo-product-list li {
    padding: 7px 0;
  }

  .product-hero {
    height: 220px;
  }

  .product-left-content h1 {
    font-size: 24px;
  }

  .product-buttons {
    gap: 10px;
  }

  .video-play-btn {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .footer-section-5 .footer-item,
  .footer-section-5 .footer-right-item {
    padding: 20px 16px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .other-products .product-img-box {
    height: 160px;
  }
}

/* ==================================================
   Requested carousel and responsive banner fixes
================================================== */
.home-banner-section .carousel-item {
  min-height: 0;
  height: auto;
  background: #f6f8fb;
}

.home-banner-section .carousel-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

#productCarousel+.d-flex {
  display: none !important;
}

#productCarousel {
  touch-action: pan-y pinch-zoom;
}

#productCarousel .carousel-inner {
  cursor: grab;
  overflow: hidden;
  border-radius: 22px;
  min-height: 460px;
}

#productCarousel .carousel-inner:active {
  cursor: grabbing;
}

#productCarousel .carousel-item {
  min-height: auto;
}

#productCarousel .carousel-item .container {
  max-width: 1140px;
}

#productCarousel {
  position: static;
}

#productCarousel .product-carousel-control {
  display: flex;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  top: 230px;
  transform: translateY(-50%);
}

#productCarousel .product-carousel-control:hover {
  background: #e43439;
}

#productCarousel .product-carousel-control:hover .carousel-control-prev-icon,
#productCarousel .product-carousel-control:hover .carousel-control-next-icon {
  filter: invert(1);
}

#productCarousel .carousel-control-prev {
  left: 12px;
}

#productCarousel .carousel-control-next {
  right: 12px;
}

#homeBannerCarousel .carousel-control-prev,
#homeBannerCarousel .carousel-control-next {
  width: 46px;
  height: 46px;
  top: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  opacity: 1;
  transform: translateY(-50%);
}

#homeBannerCarousel .carousel-control-prev {
  left: 18px;
}

#homeBannerCarousel .carousel-control-next {
  right: 18px;
}

#homeBannerCarousel .carousel-control-prev-icon,
#homeBannerCarousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

#homeBannerCarousel .carousel-control-prev:hover,
#homeBannerCarousel .carousel-control-next:hover {
  background: #e43439;
}

#homeBannerCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#homeBannerCarousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0);
}

@media (max-width: 767px) {
  #productCarousel .carousel-inner {
    border-radius: 16px;
    min-height: auto;
  }

  #productCarousel .product-carousel-control {
    width: 38px;
    height: 38px;
    top: 115px;
  }

  #productCarousel .carousel-control-prev {
    left: 8px;
  }

  #productCarousel .carousel-control-next {
    right: 8px;
  }

  #homeBannerCarousel .carousel-control-prev,
  #homeBannerCarousel .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  #homeBannerCarousel .carousel-control-prev {
    left: 10px;
  }

  #homeBannerCarousel .carousel-control-next {
    right: 10px;
  }

  #homeBannerCarousel .carousel-control-prev-icon,
  #homeBannerCarousel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
}

.footer-section-5 .product-info-panel {
  color: #1f2937;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.footer-section-5 .key-features-panel {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(239, 246, 255, 0.94)),
    #eff6ff;
  border-color: rgba(59, 130, 246, 0.22);
}

.footer-section-5 .benefits-panel {
  background:
   linear-gradient(352deg, rgb(255 0 0 / 38%), rgba(255, 241, 242, 0.96)), #fff1f2;
  border-color: rgba(228, 52, 57, 0.22);
}

.footer-section-5 .key-features-panel .section-title h2 {
  color: #3eb2de;
}

.footer-section-5 .benefits-panel .section-title h2 {
  color: #e43338;
}

.footer-section-5 .key-features-panel .benefits-list li::before {
  color: #2563eb;
}

.footer-section-5 .benefits-panel .benefits-list li::before {
  color: #e43439;
}

.other-products .product-slider {
  overflow: visible;
  padding-inline: 54px;
}

.other-products .product-track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transform: none !important;
  padding: 4px 0 18px;
}

.other-products .product-track::-webkit-scrollbar {
  display: none;
}

.other-products .product-item {
  scroll-snap-align: start;
}

.other-products .slider-nav {
  left: 0;
  right: 0;
  padding: 0;
  transform: translateY(-58%);
}

.other-products .slider-nav .prev,
.other-products .slider-nav .next {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

@media (max-width: 991px) {
  .home-banner-section .carousel-item img {
    height: auto;
    max-height: none;
  }

  .footer-section-5 .product-info-panel {
    min-height: 100%;
  }
}

@media (max-width: 767px) {
  .other-products .product-slider {
    padding-inline: 42px;
  }

  .other-products .product-track {
    gap: 14px;
    padding-bottom: 14px;
  }

  .other-products .product-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .other-products .slider-nav {
    transform: translateY(-65%);
  }

  .other-products .slider-nav .prev,
  .other-products .slider-nav .next {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

@media (max-width: 420px) {
  .other-products .product-slider {
    padding-inline: 36px;
  }
}

.other-products .slider-nav {
  pointer-events: none;
}

.other-products .slider-nav button {
  pointer-events: auto;
  padding: 0;
  line-height: 1;
}

.other-products .slider-nav .prev {
  left: auto;
}

.other-products .slider-nav .next {
  right: auto;
}

.other-products .slider-nav .prev:hover,
.other-products .slider-nav .next:hover {
  background: #be2429;
  transform: scale(1.06);
}

@media (max-width: 767px) {
  .other-products .slider-nav {
    top: 48%;
  }
}

.other-products .product-slider {
  overflow: visible;
  padding-inline: 0;
}

.other-products .product-track {
  overflow: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: auto;
  will-change: transform;
  gap: 20px;
}

.other-products .product-track::-webkit-scrollbar {
  display: none;
}

.other-products .product-item {
  scroll-snap-align: none;
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}

.other-products .slider-nav {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 20;
}

@media (max-width: 767px) {
  .other-products .product-track {
    gap: 0;
  }

  .other-products .product-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .other-products .slider-nav {
    width: 100%;
    left: 0;
  }

  .home-banner-section .carousel-item,
  .home-banner-section .carousel-item img {
    height: auto;
    min-height: 0;
  }

  .home-banner-section {
    background: #f6f8fb;
  }

  .footer-section-5 .key-features-panel,
  .footer-section-5 .benefits-panel {
    border-radius: 16px;
  }
}

.product-feature-benefits-section .footer-widget-wrapper-5 {
  background: transparent;
  padding: 0;
}

.product-feature-benefits-section .footer-widget-wrapper-5::before,
.product-feature-benefits-section .footer-widget-wrapper-5::after,
.product-feature-benefits-section .footer-area-5::before,
.product-feature-benefits-section .footer-area-5::after {
  display: none;
}

.product-feature-benefits-section .footer-area-5,
.product-feature-benefits-section.section-bg-5,
.product-feature-benefits-section .section-bg-5 {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(228, 52, 57, 0.08), transparent 34%),
    #f8fafc !important;
}

.product-feature-benefits-section {
  background: #f8fafc;
}

@media (max-width: 767px) {
  .product-hero {
    height: auto;
    min-height: 0;
    margin-top: 82px;
    background: #f6f8fb;
  }

  .product-hero img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-hero::after {
    display: none;
  }

  .product-feature-benefits-section .row {
    row-gap: 22px;
  }

  .product-details-section .row {
    display: flex;
  }

  .product-info-column {
    order: 1 !important;
    width: 100%;
  }

  .product-info-column .product-left-content {
    display: block;
  }

  .product-detail-title {
    width: 100%;
    margin-bottom: 18px;
  }

  .product-gallery-column {
    order: 2 !important;
    width: 100%;
  }

  .product-buttons {
    width: 100%;
    margin: 18px 0 22px;
  }
}

.product-hero {
  height: auto;
  min-height: 0;
  margin-top: 89px;
  background: #f6f8fb;
}

.product-hero img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-hero::after {
  display: none;
}

.product-hero-banner-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.product-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(transparent 5%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
  z-index: 1;
}

.product-hero-title {
  color: #ffff;
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .product-hero-overlay {
    padding: 14px 12px;
  }

  .product-hero-title {
    font-size: clamp(18px, 5vw, 26px);
  }
}

@media (max-width: 991px) {
  .product-hero {
    margin-top: 82px;
  }
}

.product-list-clean .product-block-content,
.product-list-clean .product-main-view {
  position: relative;
  border: 0;
}

.product-list-clean .disclaimer,
.product-slider-wrapper .disclaimer {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: block;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .product-list-clean .disclaimer,
  .product-slider-wrapper .disclaimer {
    white-space: normal;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-radius: 6px;
    font-size: 10px;
    color: #555;
  }
}

.product-list-clean .product-main-view {
  box-shadow: none;
  background: transparent;
}

.product-list-clean .product-block-content {
  padding: 0;
}

.product-list-clean .row:hover .product-block-content,
.product-list-clean .row:hover .product-main-view,
.product-list-clean .product-main-view img:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 575px) {
  .product-feature-benefits-section .row {
    row-gap: 18px;
  }
}

/* ---------- product2.php page-scoped animations ---------- */
body.product2-page .product-list-clean {
  overflow: hidden;
}

body.product2-page .product-list-clean .row {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

body.product2-page .product-list-clean.is-visible .row {
  opacity: 1;
  transform: translateY(0);
}

body.product2-page .product-list-clean .product-main-view,
body.product2-page .product-list-clean .product-block-content {
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

body.product2-page .product-list-clean .product-main-view {
  opacity: 0;
  transform: translateX(-42px) scale(0.96);
}

body.product2-page .product-list-clean .product-block-content {
  opacity: 0;
  transform: translateX(42px);
}

body.product2-page .product-list-clean.is-reverse .product-main-view {
  transform: translateX(42px) scale(0.96);
}

body.product2-page .product-list-clean.is-reverse .product-block-content {
  transform: translateX(-42px);
}

body.product2-page .product-list-clean.is-visible .product-main-view,
body.product2-page .product-list-clean.is-visible .product-block-content {
  opacity: 1;
  transform: translateX(0) scale(1);
}

body.product2-page .product-list-clean .product-main-view img {
  transition: transform 0.9s ease;
}

body.product2-page .product-list-clean.is-visible .product-main-view img {
  transform: scale(1.02);
}

body.product2-page .product-list-clean .product-label,
body.product2-page .product-list-clean h3,
body.product2-page .product-list-clean p,
body.product2-page .product-list-clean .theme-btn,
body.product2-page .product-list-clean .mobile-label,
body.product2-page .product-list-clean .mobile-title {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.product2-page .product-list-clean .product-label,
body.product2-page .product-list-clean h3,
body.product2-page .product-list-clean p,
body.product2-page .product-list-clean .theme-btn {
  opacity: 0;
  transform: translateY(18px);
}

body.product2-page .product-list-clean.is-visible .product-label,
body.product2-page .product-list-clean.is-visible h3,
body.product2-page .product-list-clean.is-visible p,
body.product2-page .product-list-clean.is-visible .theme-btn {
  opacity: 1;
  transform: translateY(0);
}

body.product2-page .product-list-clean.is-visible .product-label {
  transition-delay: 0.08s;
}

body.product2-page .product-list-clean.is-visible h3 {
  transition-delay: 0.16s;
}

body.product2-page .product-list-clean.is-visible p:nth-of-type(1) {
  transition-delay: 0.24s;
}

body.product2-page .product-list-clean.is-visible p:nth-of-type(2) {
  transition-delay: 0.32s;
}

body.product2-page .product-list-clean.is-visible .theme-btn {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {

  body.product2-page .product-list-clean .row,
  body.product2-page .product-list-clean .product-main-view,
  body.product2-page .product-list-clean .product-block-content,
  body.product2-page .product-list-clean .product-label,
  body.product2-page .product-list-clean h3,
  body.product2-page .product-list-clean p,
  body.product2-page .product-list-clean .theme-btn,
  body.product2-page .product-list-clean .mobile-label,
  body.product2-page .product-list-clean .mobile-title,
  body.product2-page .product-list-clean .product-main-view img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991px) {

  body.product2-page .product-list-clean .product-main-view,
  body.product2-page .product-list-clean .product-block-content,
  body.product2-page .product-list-clean.is-reverse .product-main-view,
  body.product2-page .product-list-clean.is-reverse .product-block-content {
    transform: translateY(28px);
  }

  body.product2-page .product-list-clean.is-visible .product-main-view,
  body.product2-page .product-list-clean.is-visible .product-block-content {
    transform: translateY(0);
  }
}

/* ---------- onepro.php page-scoped layout ---------- */
body.onepro-page .product-detail-shell {
  /* --detail-shell-border: rgba(15, 23, 42, 0.08); */
  margin-top: 0;
  margin-bottom: 0;
  /* border: 1px solid var(--detail-shell-border); */
  /* border-radius: 24px; */
  overflow: hidden;
  /* background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
  /* box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08); */
}

body.onepro-page .product-detail-shell>[class*='col-'] {
  padding: 0;
}

body.onepro-page .product-info-column,
body.onepro-page .product-gallery-column {
  display: flex;
}

body.onepro-page .product-left-content,
body.onepro-page .product-slider-wrapper {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.onepro-page .product-left-content {
  padding: clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--detail-shell-border);
}

body.onepro-page .product-slider-wrapper {
  padding: clamp(18px, 3vw, 28px);
}

body.onepro-page .slides .slide-link {
  display: none;
  width: 100%;
  height: 100%;
}

body.onepro-page #img1:checked~.slides .s1,
body.onepro-page #img2:checked~.slides .s2,
body.onepro-page #img3:checked~.slides .s3,
body.onepro-page #img4:checked~.slides .s4,
body.onepro-page #img5:checked~.slides .s5 {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

body.onepro-page .slides .slide-link img {
  display: block;
  width: 100%;
  height: 100%;
}

body.onepro-page .thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

body.onepro-page .thumbnails label {
  width: 100%;
}

body.onepro-page .thumbnails label img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 991px) {
  body.onepro-page .product-detail-shell {
    border-radius: 20px;
  }

  body.onepro-page .product-left-content {
    border-right: 0;
    /* border-top: 1px solid var(--detail-shell-border);  */
  }

  body.onepro-page .thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  body.onepro-page .thumbnails {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
  }

  body.onepro-page .thumbnails::-webkit-scrollbar {
    display: none;
  }

  body.onepro-page .thumbnails label {
    flex: 0 0 72px;
    scroll-snap-align: start;
  }

  body.onepro-page .thumbnails label img {
    height: 58px;
    padding: 4px;
  }
}

/* INDEX4 PAGE STYLES START */
body.index4-page .home-about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.index4-page .choose-list .icon i {
  font-size: 24px;
  color: var(--theme);
}

body.index4-page .choose-list .choose-item-cost p:last-child {
  display: none;
}

body.index4-page .project-wrapper-3 .section-title.strategy-copy p {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.index4-page .footer-section-3,
body.index4-page .footer-section-3 .footer-area-3 {
  padding-top: 0;
}

/* INDEX4 PAGE STYLES END */

.header-section-3 .mega-menu-wrapper>.container {
  position: relative;
}

.header-section-3 .logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-section-3 .logo img {
  display: block;
  max-height: 56px;
  width: auto;
}

@media (max-width: 991px) {
  .header-section-3 .logo img {
    max-height: 48px;
  }
}

@media (max-width: 575px) {
  .header-section-3 .logo img {
    max-height: 42px;
  }
}

/*---------------------------------------
   Our Presence Section (About Page)
---------------------------------------*/
.our-presence-section {
  background: var(--white);
}

.our-presence-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
}

.our-presence-section .section-title p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.presence-region-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  letter-spacing: 0.5px;
}

.presence-region-title i {
  color: var(--theme);
  margin-right: 6px;
}

.presence-country-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #00baff1c;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
}

.presence-country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(89, 189, 226, 0.18);
  border-left: 3px solid var(--theme);
}

.presence-country-card i {
  color: var(--theme);
  font-size: 14px;
  flex-shrink: 0;
}

.presence-country-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--header3);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .our-presence-section .section-title h2 {
    font-size: 26px;
  }

  .presence-region-title {
    font-size: 16px;
  }

  .presence-country-card {
    padding: 10px 14px;
  }

  .presence-country-card span {
    font-size: 13px;
  }
}
