@charset "UTF-8";
/*======================================================================================
Theme Name: Orixo
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Orixo - Creative Agency & Portfolio 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=Instrument+Serif:ital@0;1&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap");
:root {
  --body: #101010;
  --black: #000;
  --white: #fff;
  --theme: #FF471C;
  --header: #fff;
  --text: #B1B1B1;
  --border: #FCFCFC;
  --bg: #272727;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

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

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: "Urbanist", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 84px;
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 110% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 117%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
}
@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-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
  text-transform: capitalize;
  border-radius: 10px;
}
.theme-btn-main.style-2 {
  background-color: var(--theme);
  padding: 7px 25px;
  padding-right: 7px;
  border-radius: 70px;
}
.theme-btn-main.style-2 .theme-btn-arrow-left,
.theme-btn-main.style-2 .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  background: var(--white);
  border-radius: 50%;
  color: #000;
}
.theme-btn-main.style-2 .theme-btn-arrow-left img,
.theme-btn-main.style-2 .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}
.theme-btn-main.style-2 .theme-btn {
  background-color: transparent;
  padding: 0;
  margin-right: 25px;
}
.theme-btn-main.style-2:hover {
  padding-right: 25px;
  padding-left: 7px;
}
.theme-btn-main.style-2:hover .theme-btn {
  background-color: transparent;
}
.theme-btn-main.style-2:hover .theme-btn-arrow-left {
  left: 7px;
}
.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  border-radius: 50%;
  transition: 0.4s;
  text-align: center;
}
.theme-btn-main .theme-btn-arrow-left i,
.theme-btn-main .theme-btn-arrow-right i {
  font-weight: 400;
}
.theme-btn-main .theme-btn-arrow-left {
  scale: 0;
  position: absolute;
  left: 7px;
}
.theme-btn-main .theme-btn {
  background: var(--theme);
  color: var(--header);
  font-weight: 600;
  font-size: 18px;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
}
@media (max-width: 575px) {
  .theme-btn-main .theme-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}
.theme-btn-main:hover .theme-btn-arrow-left {
  scale: 1;
}
.theme-btn-main:hover .theme-btn-arrow-left img {
  animation: cir36 10s linear infinite;
}
.theme-btn-main:hover .theme-btn-arrow-right {
  scale: 0;
}
.theme-btn-main:hover .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}
.theme-btn-main:hover .theme-btn {
  transform: translateX(60px);
  background-color: var(--header);
}
.theme-btn-main.bg-white-style {
  background-color: var(--white);
}
.theme-btn-main.bg-white-style .theme-btn-arrow-left,
.theme-btn-main.bg-white-style .theme-btn-arrow-right {
  background: var(--theme);
  color: #fff;
}
.theme-btn-main.bg-white-style .theme-btn {
  color: #101010;
}
.theme-btn-main.bg-black-style {
  background-color: #101010;
}
.theme-btn-main.bg-black-style .theme-btn-arrow-left,
.theme-btn-main.bg-black-style .theme-btn-arrow-right {
  background: var(--theme);
  color: #fff;
}
.theme-btn-main.bg-black-style .theme-btn {
  color: #fff;
}
.theme-btn-main.border-style {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-btn-main.border-style .theme-btn-arrow-left,
.theme-btn-main.border-style .theme-btn-arrow-right {
  color: var(--theme);
  background: #fff;
}
.theme-btn-main.border-style .theme-btn {
  color: #fff;
}

@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: #fff;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  border: none;
  font-family: "Urbanist", 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;
}

.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__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: #000000;
  transition: all 500ms ease;
  border-radius: 4px;
  padding-right: 80px;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: #000000;
}

.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: 4px;
  font-size: 20px;
  color: var(--header);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--header);
  color: var(--white);
}

.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 */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Architectural CAD Drafting Corners --- */
.bracket { 
    position: absolute; 
    width: 60px; 
    height: 60px; 
    border: none; /* Ensures the old L-shape borders are dead */
}

.bracket::before, .bracket::after {
    content: '';
    position: absolute;
    background-color: #c5a059;
    opacity: 0.6;
}

.bracket .node {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid #c5a059;
    background: #111111;
    z-index: 2;
}

/* Top Left */
.bracket.tl { top: 40px; left: 40px; }
.bracket.tl::before { top: 20px; left: 0; width: 100%; height: 1px; }
.bracket.tl::after { top: 0; left: 20px; width: 1px; height: 100%; }
.bracket.tl .node { top: 17px; left: 17px; }

/* Top Right */
.bracket.tr { top: 40px; right: 40px; }
.bracket.tr::before { top: 20px; right: 0; width: 100%; height: 1px; }
.bracket.tr::after { top: 0; right: 20px; width: 1px; height: 100%; }
.bracket.tr .node { top: 17px; right: 17px; }

/* Bottom Left */
.bracket.bl { bottom: 40px; left: 40px; }
.bracket.bl::before { bottom: 20px; left: 0; width: 100%; height: 1px; }
.bracket.bl::after { bottom: 0; left: 20px; width: 1px; height: 100%; }
.bracket.bl .node { bottom: 17px; left: 17px; }

/* Bottom Right */
.bracket.br { bottom: 40px; right: 40px; }
.bracket.br::before { bottom: 20px; right: 0; width: 100%; height: 1px; }
.bracket.br::after { bottom: 0; right: 20px; width: 1px; height: 100%; }
.bracket.br .node { bottom: 17px; right: 17px; }
/* Logo */


@media (max-width:900px){
.pre-logo {
  font-size: 30px;
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  position: relative;
  line-height: 1;
  text-align: center;
}

}

@media (min-width:1200px) and (max-width:1950px){
.pre-logo {
  font-size: 36px;
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  position: relative;
  line-height: 1;
  text-align: center;
}


}

@media (min-width:1400px) and (max-width:1950px){
 
.choose-us-wrapper-3 .choose-us-content .about-small-image
{
  height: 260px !important;
}

.about-page-style-3 .section-title-area .section-title .sec-content{
  gap: 50px;
}

}

.pre-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  letter-spacing: inherit;
  color: #fff;
  white-space: nowrap;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.pre-logo-fill.reveal {
  -webkit-clip-path: inset(0% 0 0 0);
  clip-path: inset(0% 0 0 0);
}

/* Loader Ring */
.loader-ring {
  position: relative;
  width: 72px;
  height: 72px;
}

.loader-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ring-spin 2s linear infinite;
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
}

.ring-arc {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 180 226;
  animation: arc-chase 2s ease-in-out infinite;
}

.ring-arc.a1 {
  stroke: rgba(255, 71, 28, 0.9);
  filter: drop-shadow(0 0 5px rgba(255, 71, 28, 0.9));
}

.ring-arc.a2 {
  stroke: rgba(255, 71, 28, 0.9);
  stroke-dasharray: 60 346;
  animation: arc-chase2 2s ease-in-out infinite;
}

.ring-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 71, 28, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 71, 28, 0.9);
  animation: dot-breathe 2s ease-in-out infinite;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes arc-chase {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: -180;
  }
  100% {
    stroke-dashoffset: -406;
  }
}
@keyframes arc-chase2 {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: -80;
  }
  100% {
    stroke-dashoffset: -406;
  }
}
@keyframes dot-breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}
/* Counter */
.pre-count {
  font-size: 18px;
  color: #fff;
}

.pre-count span {
  font-weight: 700;
}

/* Page hidden initially */
#page {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#page.visible {
  opacity: 1;
}

@-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 scale-up-two {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.15);
    transform: scale(0.15);
  }
}
@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
---------------------------------------*/
.sticky-menu {
  background-color: #191a18;
  animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
  border-radius: 0;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  padding: 18px 150px;
  border: none;
}
@media (max-width: 1899px) {
  .sticky-menu {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1399px) {
  .sticky-menu {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1199px) {
  .sticky-menu {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (max-width: 991px) {
  .sticky-menu {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .sticky-menu {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .sticky-menu {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sticky-menu .header-main .navbar .navbar-nav .nav-item > .sub-menu {
  top: 150%;
}
.sticky-menu .header-main .navbar .navbar-nav .nav-item .has-homemenu {
  top: 130%;
}

.sticky-menu .mobile-menu-area {
  background-color: #191a18;
}

/* ===============================
   NAVBAR
================================= */
.header-main .navbar .navbar-nav .menu-thumb {
  position: inherit !important;
}
.header-main .navbar .navbar-nav .has-homemenu::-webkit-scrollbar {
  display: none;
}
.header-main .navbar .navbar-nav .has-homemenu {
  -ms-overflow-style: none;
}
.header-main .navbar .navbar-nav .nav-item {
  position: relative;
  margin-inline-end: 30px;
}
.header-main .navbar .navbar-nav .nav-item:last-child {
  margin-inline-end: 0;
}
.header-main .navbar .navbar-nav .nav-item .nav-link {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}
.header-main .navbar .navbar-nav .nav-item .nav-link i {
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-left: 3px;
  transition: all 0.4s ease-in-out;
}
.header-main .navbar .navbar-nav .nav-item {
  /* ===============================
     FIRST LEVEL SUBMENU
  ================================= */
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu {
  min-width: 235px;
  background-color: #171414;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li {
  position: relative;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li a {
  color: var(--header);
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li a:hover {
  color: var(--theme);
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li a i {
  font-size: 12px;
  transition: all 0.4s ease-in-out;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li:not(:last-child) a {
  border-bottom: 1px solid #211e1e;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.header-main .navbar .navbar-nav .nav-item > .sub-menu li:hover i {
  transform: rotate(90deg);
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu {
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  margin: auto;
  overflow: hidden;
  margin: auto;
  max-height: 740px;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  border-radius: 10px;
  position: relative;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(255, 71, 28, 0) 0%, #FF471C 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: "";
  border-radius: 10px;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.header-main .navbar .navbar-nav .nav-item .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;
  max-width: 160px;
  margin: 20px auto 0;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 16px 18px;
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 30px;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--white);
  color: #000;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  margin-left: 10px;
  transform: initial;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-content {
  text-align: center;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .hometitle {
  text-align: center;
  font-family: "Urbanist", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 0;
  padding-top: 15px;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu:hover .homemenu-thumb::before {
  visibility: visible;
  opacity: 1;
}
.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu:hover .homemenu-thumb .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .navbar .navbar-nav .nav-item {
  /* SHOW FIRST LEVEL */
}
.header-main .navbar .navbar-nav .nav-item:hover > .sub-menu,
.header-main .navbar .navbar-nav .nav-item .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.header-main .navbar .navbar-nav .nav-item:hover .nav-link i {
  transform: rotate(-180deg);
}
.header-main .sidebar__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-main .sidebar__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}
.header-main .sidebar__toggle span:last-child, .header-main .sidebar__toggle span:first-child {
  width: 25px;
}
.header-main .sidebar__toggle.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}
.header-main .sidebar__toggle.mobile_menu_bar span {
  background-color: var(--white);
}
.header-main .sidebar__toggle:hover span {
  width: 100%;
}

/* ===============================
   NESTED SUBMENU (LEVEL 2+)
================================= */
.sub-menu li {
  position: relative;
  /* CHILD SUBMENU */
}
.sub-menu li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  min-width: 235px;
  background-color: #171414;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}
.sub-menu li > .sub-menu li a {
  padding: 12px 18px;
}
.sub-menu li {
  /* SHOW CHILD */
}
.sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-area {
  z-index: 999999;
  width: 100%;
  transition: all 0.4s ease-in-out;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
}
.mobile-menu-area .mobile-topbar {
  width: 100%;
}
.mobile-menu-area .mobile-topbar .bars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.mobile-menu-area .mobile-topbar .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-area .mobile-topbar .bars span:last-child, .mobile-menu-area .mobile-topbar .bars span:first-child {
  width: 25px;
}
.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}
.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar span {
  background-color: var(--white);
}
.mobile-menu-area .mobile-topbar .bars:hover span {
  width: 100%;
}
.mobile-menu-area {
  /* =========================
     OVERLAY
  ========================= */
}
.mobile-menu-area .mobile-menu-overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(252, 245, 234, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.mobile-menu-area .mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-area {
  /* =========================
     MAIN MENU (FIXED)
  ========================= */
}
.mobile-menu-area .mobile-menu-main {
  width: 390px;
  height: 100%;
  background-color: #0c0c0c;
  position: fixed;
  top: 0;
  left: -390px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}
@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main {
    width: 300px;
  }
}
.mobile-menu-area .mobile-menu-main .logo {
  padding: 30px;
}
@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main .logo img {
    width: 200px;
  }
}
.mobile-menu-area .mobile-menu-main .close-mobile-menu {
  position: absolute;
  top: 34px;
  right: 10px;
}
.mobile-menu-area .mobile-menu-main .close-mobile-menu i {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list {
  padding-top: 10px;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  width: 100%;
  padding: 12px 30px;
  padding-right: 10px;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a i {
  width: 32px;
  height: 32px;
  background-color: var(--white);
  color: #000;
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  margin-right: 15px;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: var(--theme);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover i {
  background-color: var(--theme);
  color: var(--white);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul {
  padding-left: 0;
  display: none;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul a {
  padding-left: 40px;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul li:last-child a {
  border-bottom: 0;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li:last-child a {
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
}
.mobile-menu-area .mobile-menu-main .off-contact-area {
  padding: 30px;
  padding-top: 0;
}
.mobile-menu-area .mobile-menu-main .off-contact-info {
  margin-top: 30px;
}
.mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
    font-size: 20px;
  }
}
.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details {
  margin-top: 14px;
}
.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
  color: #C1D2CE;
}
@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}
.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
    font-size: 15px;
  }
}
.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p a {
  color: var(--white);
}
.mobile-menu-area .mobile-menu-main .social-icon-list {
  margin-top: 30px;
}
.mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
    font-size: 20px;
  }
}
.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(193, 210, 206, 0.0705882353);
  color: var(--white);
  font-size: 14px;
}
.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.mobile-menu-area {
  /* 🔥 ACTIVE STATE */
}
.mobile-menu-area .mobile-menu-main.active {
  left: 15px !important;
}
.mobile-menu-area .mobile-menu-action-btn {
  padding: 20px;
}
.mobile-menu-area .mobile-menu-action-btn a {
  color: var(--theme);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.mobile-menu-area .mobile-menu-action-btn a i {
  font-size: 14px;
  margin-left: 8px;
}
.mobile-menu-area .mobile-menu-action-btn a:hover {
  background-color: var(--header);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  z-index: 2000;
}

/* Mobile Menu Main */
.mobile-menu-main {
  z-index: 2001;
}

/*=============================
	12. Offcanvas CSS Start
===============================*/
.offcanvas-overlay {
  backdrop-filter: blur(15px);
  background-color: rgba(252, 245, 234, 0.1);
  z-index: 999;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  cursor: crosshair;
}
.offcanvas-overlay.active {
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu {
  max-width: 450px;
  z-index: 9999;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 20px;
  right: -450px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  background-color: #0c0c0c;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}
.offcanvas-menu .offcasvas-close {
  width: 50px;
  height: 50px;
  background: var(--theme);
}
.offcanvas-menu .header-top {
  margin-bottom: 30px;
}
.offcanvas-menu .action-title {
  font-size: 24px;
  display: block;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--header);
}
.offcanvas-menu .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}
.offcanvas-menu .news-btn i {
  margin-left: 7px;
}
.offcanvas-menu .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.offcanvas-menu .news-btn .text-default,
.offcanvas-menu .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.offcanvas-menu .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.offcanvas-menu .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.offcanvas-menu .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.offcanvas-menu .news-btn i {
  transition: transform 0.4s ease;
}
.offcanvas-menu .offcanvas_gallery {
  height: 264px;
  position: relative;
  margin-top: 30px;
}
.offcanvas-menu .offcanvas_gallery .gallery_img {
  --i: 0;
  max-width: 146px;
  width: 100%;
  aspect-ratio: 146/167;
  object-fit: cover;
  position: absolute;
  left: calc(var(--i) * 82px);
  bottom: calc(var(--i) * 32px);
  z-index: 0;
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-radius: 8px;
}
.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(2) {
  --i: 1;
}
.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(3) {
  --i: 2;
}
.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(4) {
  --i: 3;
}
.offcanvas-menu .offcanvas_gallery .gallery_img:hover {
  z-index: 1;
  transform: translateY(-5px) scale(1.02);
}
.offcanvas-menu .offcanvas_gallery .gallery_img:hover ~ .gallery_img {
  z-index: 0;
}
.offcanvas-menu .off-contact-info {
  margin-top: 40px;
}
.offcanvas-menu .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .info-title {
    font-size: 20px;
  }
}
.offcanvas-menu .off-contact-info .contact-details {
  margin-top: 14px;
}
.offcanvas-menu .off-contact-info .contact-details .sub-info {
  color: #C1D2CE;
}
@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}
.offcanvas-menu .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details p {
    font-size: 15px;
  }
}
.offcanvas-menu .off-contact-info .contact-details p a {
  color: var(--white);
}
.offcanvas-menu .social-icon-list {
  margin-top: 30px;
}
.offcanvas-menu .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .offcanvas-menu .social-icon-list .follow-title {
    font-size: 20px;
  }
}
.offcanvas-menu .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.offcanvas-menu .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(193, 210, 206, 0.0705882353);
  color: var(--white);
  font-size: 14px;
}
.offcanvas-menu .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.offcanvas-menu.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  right: 15px;
}

/* ===============================
   HEADER
================================= */
.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 150px;
}
@media (max-width: 1899px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1399px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1199px) {
  .header-1 {
    padding-left: 90px;
    padding-right: 90px;
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .header-1 {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .header-1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .header-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-1 .menu-right-info {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-1 .menu-right-info .search-toggler {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
}
.header-2 .mobile-menu-area {
  padding-left: 30px;
  padding-right: 30px;
}
.header-2 .mobile-menu-main {
  left: initial !important;
  right: -390px !important;
}
.header-2 .mobile-menu-area .mobile-menu-main.active {
  right: 15px !important;
  left: initial !important;
}
.header-2 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .header-2 .header-right {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-2 .header-right .theme-btn-main {
    display: none;
  }
}
.header-2 .header-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}
@media (max-width: 1199px) {
  .header-2 .header-text {
    display: none;
  }
}

.header-3 {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  padding: 18px 30px;
}
@media (max-width: 1199px) {
  .header-3 {
    top: 0;
  }
}
.header-3 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .header-3 .header-right {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-3 .header-right .theme-btn-main {
    display: none;
  }
}

.header-4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  padding: 18px 60px;
}
.header-4 .navbar-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
}
.header-4 .navbar-nav .nav-item {
  margin-inline-end: 0 !important;
}
.header-4 .navbar-nav .nav-item .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  line-height: 1;
  text-transform: uppercase;
  padding: 9px 8px;
  color: rgba(255, 255, 255, 0.5) !important;
}
.header-4 .navbar-nav .nav-item .nav-link:hover {
  color: var(--white) !important;
}
.header-4 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .header-4 .header-right {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-4 .header-right .theme-btn-main {
    display: none;
  }
}
.header-4 .header-call-info {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  border-radius: 100px;
  padding: 11px 15px;
}
.header-4 .header-call-info .call-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper .light-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 180px 0 0;
  z-index: 9;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 150px 0 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 110px;
  position: relative;
  z-index: 9;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 116%;
  font-weight: 600;
}
.breadcrumb-wrapper .page-heading h1 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 70px;
  }
  .breadcrumb-wrapper .page-heading h1 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items ul {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items ul {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items ul li {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items ul li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items .title {
  font-size: 160px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 150px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 70px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 60px;
  }
}

.error-items {
  text-align: center;
  position: relative;
}
.error-items .error-image {
  margin: 0 auto 40px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .error-items h2 {
    font-size: 53px;
  }
}
@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items p {
  margin: 0 auto 30px;
  font-size: 18px;
  font-weight: 400;
  max-width: 390px;
}

.footer-widget-wrapper {
  padding: 20px 0 30px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 20px 0 30px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 20px 0 30px;
  }
}
.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 span {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 310px;
}
.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
  gap: 8px;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.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.9);
}
.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 .footer-contact .talk-title {
  font-size: 55px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .footer-widget-wrapper .footer-widget-items .footer-contact .talk-title {
    font-size: 42px;
  }
}
.footer-widget-wrapper .footer-widget-items .footer-contact p {
  font-size: 18px;
  color: var(--white);
}
.footer-widget-wrapper .footer-widget-items .footer-contact .mail-text {
  color: var(--white);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  margin-top: 15px;
}
.footer-widget-wrapper .footer-widget-items .footer-contact .number-text {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}
.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon {
  gap: 8px;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}
.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon a:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper .footer-form-3 .subscribe-text {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .footer-widget-wrapper .footer-form-3 .subscribe-text {
    font-size: 26px;
  }
}
.footer-widget-wrapper .footer-form-3 .subscribe-text span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.footer-widget-wrapper .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}
.footer-widget-wrapper .footer-form-3 form input {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  border-radius: 0;
  line-height: 1;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  padding-right: 44px;
  font-size: 16px;
  font-weight: 500;
}
.footer-widget-wrapper .footer-form-3 form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-form-3 form .email-btn {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}
.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: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}
.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-widget-wrapper .footer-form-3 .sq-checkbox .box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  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: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  flex-shrink: 0;
}
.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-widget-wrapper .footer-form-3 .sq-checkbox input:checked + .box {
  background: var(--theme);
  border-color: var(--theme);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked + .box .check {
  transform: scale(1);
}
.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(--theme);
}
.footer-widget-wrapper .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}
.footer-widget-wrapper .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}
.footer-widget-wrapper .footer-form-3.style-3 form input {
  border-radius: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 0;
}
.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.9);
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.footer-bottom .footer-bottom-wrapper p b {
  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: "Urbanist", sans-serif;
  color: rgb(223, 220, 210);
}
.footer-bottom .footer-bottom-wrapper .footer-list li a {
  color: rgba(255, 255, 255, 0.87);
}
.footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
  color: var(--theme);
}

.footer-section .container {
  max-width: 1675px;
}

.footer-widget-wrapper-2 {
  padding: 70px 0 100px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper-2 {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper-2 .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper-2 .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper-2 .footer-widget-items .widget-head h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
}
.footer-widget-wrapper-2 .footer-widget-items .footer-content {
  max-width: 310px;
}
.footer-widget-wrapper-2 .footer-widget-items .footer-content p {
  color: #F2F5F7;
  font-size: 16px;
  line-height: 162.5%;
}
.footer-widget-wrapper-2 .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: "Urbanist", sans-serif;
  padding: 0 30px;
  padding-left: 7px;
  margin-top: 30px;
}
.footer-widget-wrapper-2 .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-2 .footer-widget-items .footer-content .footer-btn:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.footer-widget-wrapper-2 .footer-widget-items .footer-content .footer-btn:hover .icon {
  background-color: var(--header);
}
.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper-2 .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: "Urbanist", sans-serif;
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper-2 .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper-2 .footer-widget-items .contact-list li:hover {
  color: var(--theme);
}
.footer-widget-wrapper-2 .footer-widget-items .contact-list li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget-wrapper-2 .footer-widget-items .contact-list li a:hover {
  color: var(--theme);
}
.footer-widget-wrapper-2 .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-widget-wrapper-2 .footer-widget-items .footer-form-3 h3 {
    font-size: 26px;
  }
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 18px 20px;
  border-radius: 8px;
  line-height: 1;
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  padding-right: 50px;
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form input::placeholder {
  color: #272727;
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form .email-btn {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}
.footer-widget-wrapper-2 .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-widget-wrapper-2 .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-widget-wrapper-2 .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-widget-wrapper-2 .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-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input:checked + .box {
  background: var(--theme);
  border-color: var(--theme);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input:checked + .box .check {
  transform: scale(1);
}
.footer-widget-wrapper-2 .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(--theme);
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}
.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .widget-head h3 {
  color: var(--header);
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content p {
  color: var(--header);
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}
.footer-widget-wrapper-2.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-2.style-2 .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li a {
  color: rgba(41, 15, 28, 0.7);
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper-2.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: "Urbanist", sans-serif;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-2.style-2 .footer-widget-items .contact-list li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-section-2 {
  padding-bottom: 30px;
}
.footer-section-2 .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-section-2 .footer-lets-text {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .footer-section-2 .footer-lets-text {
    padding-bottom: 80px;
  }
}
.footer-section-2 .footer-lets-text .lets-title {
  position: relative;
  max-width: 650px;
}
.footer-section-2 .footer-lets-text .lets-title .theme-btn-main {
  position: absolute;
  bottom: 13px;
  right: -50px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-section-2 .footer-lets-text .lets-title .theme-btn-main .theme-btn {
  color: var(--white);
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-lets-text .lets-title .theme-btn-main {
    position: static;
    margin-top: 30px;
  }
}
.footer-section-2 .footer-lets-text h2 {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -3.079px;
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 75px;
  }
  .footer-section-2 .footer-lets-text h2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 55px;
  }
}
.footer-section-2 .footer-lets-text .text {
  padding-right: 130px;
}
@media (max-width: 1399px) {
  .footer-section-2 .footer-lets-text .text {
    padding-right: 0;
  }
}
.footer-section-2 .footer-lets-text .text .social-icon {
  gap: 8px;
  margin-top: 30px;
}
.footer-section-2 .footer-lets-text .text .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}
.footer-section-2 .footer-lets-text .text .social-icon a:hover {
  background-color: var(--theme);
}
.footer-section-2 .footer-lets-text p {
  color: #B1B1B1;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 155.556%;
  letter-spacing: -1px;
  max-width: 270px;
}
.footer-section-2 .footer-area {
  margin: 0 30px;
  border-radius: 16px;
  position: relative;
}
@media (max-width: 1399px) {
  .footer-section-2 .footer-area {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-area {
    margin: 0 20px;
  }
}
.footer-section-2 .footer-area .footer-right-image {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1899px) {
  .footer-section-2 .footer-area .footer-right-image {
    display: none;
  }
}

.footer-section-3 {
  padding-bottom: 90px;
}
@media (max-width: 1600px) {
  .footer-section-3 {
    padding-bottom: 35px;
  }
}
@media (max-width: 1399px) {
  .footer-section-3 {
    padding-bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .footer-section-3 {
    padding-bottom: 20px;
  }
}

.footer-area-3 {
  background-color: #FBF9EF;
  border-radius: 20px;
  margin: 60px;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 1600px) {
  .footer-area-3 {
    margin: 35px;
    margin-top: 60px;
  }
}
@media (max-width: 1399px) {
  .footer-area-3 {
    margin: 25px;
    margin-top: 60px;
  }
}
@media (max-width: 1199px) {
  .footer-area-3 {
    margin: 0 20px;
    margin-top: 60px;
  }
}
.footer-area-3::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50.7%;
  height: 100%;
  width: 1px;
  background: rgba(16, 16, 16, 0.2);
  content: "";
}
@media (max-width: 1199px) {
  .footer-area-3::before {
    display: none;
  }
}

.footer-widget-wrapper-5 {
  position: relative;
  z-index: 9;
  padding: 120px 0 0;
}
@media (max-width: 991px) {
  .footer-widget-wrapper-5 {
    padding: 80px 0 0;
  }
}
.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: #272727;
  font-size: 48px;
  font-weight: 600;
  line-height: 120.833%;
  letter-spacing: -2px;
  max-width: 590px;
}
.footer-widget-wrapper-5 .footer-left-item h2 span {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
@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: #110000;
  padding: 22px 30px;
  border-radius: 100px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--text);
  padding-right: 70px;
}
.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(--theme);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  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: 600;
  color: #101010;
  font-family: "Urbanist", sans-serif;
}
.footer-widget-wrapper-5 .footer-left-item ul li a {
  color: #101010;
}
.footer-widget-wrapper-5 .footer-right-item {
  position: relative;
  padding-bottom: 80px;
  padding-left: 100px;
}
.footer-widget-wrapper-5 .footer-right-item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
@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: -100px;
  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: #101010;
  max-width: 270px;
  font-size: 16px;
}
.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head h3 {
  color: #101010;
  font-size: 20px;
  font-weight: 700;
}
.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: "Urbanist", 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: #101010;
}
.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(--theme);
}
.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;
  font-size: 16px;
  border-radius: 50%;
  background-color: transparent;
  color: #101010;
  border: 1px solid rgba(16, 16, 16, 0.1);
}
.footer-widget-wrapper-5 .footer-right-item .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.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: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #101010;
}
.footer-bottom-5 .footer-bottom-wrapper-5 p b {
  color: #101010;
  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;
  text-transform: capitalize;
}
.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li .dots {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #101010;
  display: inline-block;
}
.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a {
  color: #101010;
}
.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a:hover {
  color: var(--theme);
}

.footer-section-4 {
  position: relative;
}
.footer-section-4 .gt-line-shape-animation {
  height: 280px;
  position: absolute;
  bottom: -130px;
  left: 0;
  right: 0;
  z-index: -1;
}
.footer-section-4 .container {
  max-width: 1631px;
}
.footer-section-4 .footer-top-wrapper-4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-section-4 .footer-top-wrapper-4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-section-4 .footer-top-wrapper-4 .footer-left p {
  font-size: 16px;
  margin-top: 27px;
}
.footer-section-4 .footer-top-wrapper-4 .footer-left p b {
  color: var(--theme);
  font-weight: 400;
}
.footer-section-4 .footer-top-wrapper-4 .content {
  display: flex;
  align-items: end;
  gap: 100px;
}
@media (max-width: 991px) {
  .footer-section-4 .footer-top-wrapper-4 .content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-section-4 .footer-top-wrapper-4 .content .title {
  font-size: 48px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .footer-section-4 .footer-top-wrapper-4 .content .title {
    font-size: 42px;
  }
}
@media (max-width: 470px) {
  .footer-section-4 .footer-top-wrapper-4 .content .title {
    font-size: 38px;
  }
}
.footer-section-4 .footer-top-wrapper-4 .content .title span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main {
  background-color: var(--white);
}
.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn {
  color: #101010;
}
.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn-arrow-left, .footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: var(--white);
}

.footer-widget-wrapper-4 {
  padding: 60px 0 150px;
}
@media (max-width: 575px) {
  .footer-widget-wrapper-4 {
    padding-bottom: 50px;
  }
}
.footer-widget-wrapper-4 .footer-content {
  max-width: 535px;
}
.footer-widget-wrapper-4 .footer-content .contact-details-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-widget-wrapper-4 .footer-content .contact-details-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
  }
}
.footer-widget-wrapper-4 .footer-content .contact-details-items .content span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 10px;
}
.footer-widget-wrapper-4 .footer-content .contact-details-items .content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.footer-widget-wrapper-4 .footer-content form {
  position: relative;
  margin-top: 38px;
}
.footer-widget-wrapper-4 .footer-content form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  padding: 22px 30px;
  border-radius: 100px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--text);
  padding-right: 70px;
}
.footer-widget-wrapper-4 .footer-content form input::placeholder {
  color: var(--text);
}
.footer-widget-wrapper-4 .footer-content form .email-btn {
  background: var(--theme);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}
.footer-widget-wrapper-4 .footer-content form .email-btn:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper-4 .footer-widget-items .widget-head {
  margin-bottom: 18px;
}
.footer-widget-wrapper-4 .footer-widget-items .widget-head h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li a {
  color: #fff;
}
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper-4 .gt-list-wrap {
  display: flex;
  align-items: center;
  gap: 130px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .gt-list-wrap {
    gap: 80px;
  }
}
.footer-widget-wrapper-4 .footer-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper-4 .footer-contact ul li a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-style: italic;
}

.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 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  color: var(--white);
  font-style: italic;
}
.section-title h2 {
  color: var(--header);
}
.section-title h2 .style-font {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.section-title h2 .style-color {
  color: #797979;
}

.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: 30px;
}
@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }
  .section-title-2 br {
    display: none;
  }
}
.section-title-2 .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title-2 .title {
  font-size: 100px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 100%;
}
@media (max-width: 1399px) {
  .section-title-2 .title {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .section-title-2 .title {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .section-title-2 .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title-2 .title {
    font-size: 42px;
  }
}
@media (max-width: 470px) {
  .section-title-2 .title {
    font-size: 38px;
  }
}
@media (max-width: 500px) {
  .section-title-2 .title {
    font-size: 32px;
  }
}

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

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

.section-bg-2 {
  background-color: #FBF3E6 !important;
}

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

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

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

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
  padding: 150px 0 30px;
  padding-left: 150px;
  padding-right: 65px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-1 .hero-line {
  position: absolute;
  top: 10.2%;
  bottom: 0;
  right: 30%;
}
@media (max-width: 1899px) {
  .hero-1 .hero-line {
    display: none;
  }
}
.hero-1 .hero-line img {
  height: 100%;
}
@media (max-width: 1899px) {
  .hero-1 {
    padding-left: 60px;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 150px 0 30px;
    padding-left: 60px;
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-1 {
    padding: 200px 0 30px;
    padding-left: 90px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 190px 0 30px;
    padding-left: 50px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-1 {
    padding: 170px 0 30px;
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .hero-1 {
    padding: 150px 0 30px;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 80px;
  }
}
.hero-1 .hero-circle {
  position: absolute;
  top: 20%;
  left: 35%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-1 .hero-circle {
    left: 20%;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-circle {
    display: none;
  }
}
.hero-1 .hero-circle::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.4) 0%, #101010 66.01%);
  width: 611px;
  height: 609px;
  z-index: 1;
}
.hero-1 .hero-circle img {
  animation: cir36 10s linear infinite;
}
.hero-1 .hero-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 145px;
  margin-top: 170px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-list {
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-list {
    padding-right: 30px;
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-list {
    margin-top: 50px;
  }
}
.hero-1 .hero-list ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .hero-1 .hero-list ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.hero-1 .hero-list ul li {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #797979;
  transition: all 0.4s ease-in-out;
}
.hero-1 .hero-list ul li:hover {
  color: var(--white);
}
.hero-1 .hero-list ul li a {
  color: #797979;
}
.hero-1 .hero-list ul li a:hover {
  color: var(--white);
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
.hero-1 .hero-content p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero-1 .hero-content h1 {
  letter-spacing: -0.02em;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 100%;
  }
}
.hero-1 .hero-content h1 span {
  color: var(--theme);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 56px;
  letter-spacing: -0.02em;
  margin-bottom: -30px;
  display: inline-block;
  font-weight: 400;
}
@media (max-width: 1899px) {
  .hero-1 .hero-content h1 span {
    font-size: 45px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 span {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 span {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 30px;
  }
}
.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-button {
    justify-content: center;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    text-align: center;
    flex-wrap: wrap;
  }
}
.hero-1 .hero-right-items {
  max-width: 471px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .hero-1 .hero-right-items {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-right-items {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-right-items {
    margin-top: 20px;
  }
}
.hero-1 .hero-right-items .hero-small-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-1 .hero-right-items .small-thumb {
  max-width: 106px;
  height: 200px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.hero-1 .hero-right-items .small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero-1 .hero-right-items .small-thumb.active {
  max-width: 219px;
}
.hero-1 .hero-right-items .text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 385px;
  margin-top: 130px;
  line-height: 150%;
}
@media (max-width: 1199px) {
  .hero-1 .hero-right-items .text {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-right-items .text {
    margin-top: 40px;
  }
}
.hero-1 .hero-right-items .text b {
  font-weight: 500;
  color: var(--white);
}
.hero-1 .hero-right-items .sign {
  margin-top: 30px;
}

.hero-section-2 .brand-section {
  padding: 30px 17px;
}
.hero-section-2 .brand-section .brand-box-1 {
  background: rgba(255, 255, 255, 0.1);
}

.hero-2 {
  padding: 200px 50px 115px;
  padding-right: 120px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1600px) {
  .hero-2 {
    padding: 180px 50px 115px;
  }
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 150px 40px 115px;
  }
}
.hero-2 .hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33%;
}
@media (max-width: 1899px) {
  .hero-2 .hero-line {
    right: 37%;
  }
}
@media (max-width: 1600px) {
  .hero-2 .hero-line {
    right: 40%;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-line {
    display: none;
  }
}
.hero-2 .hero-line img {
  height: 100%;
}
.hero-2 .hero-content h1 {
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
@media (max-width: 1899px) {
  .hero-2 .hero-content h1 {
    font-size: 160px;
  }
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 130px;
  }
}
@media screen and (max-width: 1300px) {
  .hero-2 .hero-content h1 {
    font-size: 110px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 38px;
  }
}
.hero-2 .hero-content h1 .text-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-1 {
    display: initial;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-1 img {
    display: none;
  }
}
.hero-2 .hero-content h1 .text-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-2 {
    display: initial;
  }
}
.hero-2 .hero-content h1 .text-2 img {
  border-radius: 100px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 .text-2 img {
    width: 250px;
  }
}
@media screen and (max-width: 1300px) {
  .hero-2 .hero-content h1 .text-2 img {
    width: 220px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-2 img {
    display: none;
  }
}
.hero-2 .hero-content h1 .text-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-3 {
    display: initial;
  }
}
.hero-2 .hero-content h1 .text-3 img {
  border-radius: 100px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-3 img {
    display: none;
  }
}
.hero-2 .hero-right-items {
  max-width: 425px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .hero-2 .hero-right-items {
    margin-left: initial;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-right-items {
    margin: 40px auto 0;
    text-align: center;
  }
}
.hero-2 .hero-right-items .text {
  color: var(--white);
  margin-bottom: 30px;
}
.hero-2 .hero-right-items .sign {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 50px;
}
.hero-2 .hero-right-items .hero-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  .hero-2 .hero-right-items .hero-counter {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
}
.hero-2 .hero-right-items .hero-counter .counter-text p {
  color: var(--white);
  margin-top: 5px;
}
.hero-2 .hero-right-items .hero-counter .counter-text p br {
  display: block;
}
.hero-2 .hero-right-items .hero-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 47px;
}
@media (max-width: 991px) {
  .hero-2 .hero-right-items .hero-list {
    margin-top: 30px;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.hero-2 .hero-right-items .hero-list ul li {
  text-transform: uppercase;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.hero-2 .hero-right-items .hero-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.hero-3 {
  padding: 60px 40px 60px;
  margin: 0 30px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  margin-top: 120px;
}
@media (max-width: 1600px) {
  .hero-3 {
    margin: 0 28px;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-3 {
    margin: 0 25px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 110px;
  }
}
@media (max-width: 1199px) {
  .hero-3 {
    margin: 0 18px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 82px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #101010 0%, rgba(16, 16, 16, 0) 55%);
  border-radius: 20px;
  z-index: -1;
}
.hero-3 .hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .hero-3 .hero-list li {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-list li:not(:last-child) {
  margin-bottom: 10px;
}
.hero-3 .hero-list li a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 20px;
  padding: 9px 14px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.hero-3 .hero-list li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}
.hero-3 .hero-list li:nth-of-type(2) {
  margin-left: 20px;
}
@media (max-width: 575px) {
  .hero-3 .hero-list li:nth-of-type(2) {
    margin-left: 0;
  }
}
.hero-3 .hero-title {
  font-size: 120px;
  letter-spacing: -0.01em;
  font-size: 120px;
  font-weight: 600;
  margin-top: 320px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-title {
    font-size: 90px;
    margin-top: 280px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-title {
    font-size: 75px;
    margin-top: 250px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-title {
    font-size: 65px;
    margin-top: 230px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-title {
    font-size: 52px;
    margin-top: 190px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-title {
    font-size: 40px;
    margin-top: 150px;
  }
}
.hero-3 .hero-title span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  line-height: 110%;
}
.hero-3 .hero-info-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .hero-3 .hero-info-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 280px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.animation-infinite-rtl {
  animation: ShapeAnimRTL 50s linear infinite;
  height: 635px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
  background-size: cover;
}

@keyframes ShapeAnimRTL {
  0% {
    background-position: top right;
  }
  100% {
    background-position: top right 3000px;
  }
}
.hero-4 {
  padding: 150px 0 200px;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-4 {
    padding-top: 180px;
  }
}
.hero-4 .rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-4 .rain.back-row {
  display: none;
  z-index: 1;
  bottom: 60px;
  opacity: 0.5;
}
.hero-4 .back-row-toggle .rain.back-row {
  display: block;
}
.hero-4 .drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}
@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(90vh);
  }
  100% {
    transform: translateY(90vh);
  }
}
.hero-4 .stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  animation: stem 0.5s linear infinite;
}
@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-4 .splat-toggle .splat {
  display: block;
}
@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.hero-4 .toggles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.hero-4 .toggle {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 51px;
  box-sizing: border-box;
  text-align: center;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero-4 .toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.hero-4 .toggle:active {
  background-color: rgba(255, 255, 255, 0.3);
}
.hero-4 .toggle.active {
  background-color: rgba(255, 255, 255, 0.4);
}
.hero-4 .splat-toggle {
  top: 20px;
}
.hero-4 .back-row-toggle {
  top: 90px;
  line-height: 12px;
  padding-top: 14px;
}
.hero-4 .single-toggle {
  top: 160px;
}
.hero-4 .single-toggle .drop {
  display: none;
}
.hero-4 .single-toggle .drop:nth-child(10) {
  display: block;
}
.hero-4 .line-2 {
  height: 635px;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero-4 .gt-line-shape-animation {
  height: 280px;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero-4 .container {
  max-width: 1650px;
}
.hero-4 .hero-content {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}
.hero-4 .hero-content .hero-sub {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #797979;
  letter-spacing: 10px;
  margin-bottom: 15px;
}
@media (max-width: 470px) {
  .hero-4 .hero-content .hero-sub {
    font-size: 14px;
  }
}
.hero-4 .hero-content .title {
  letter-spacing: -0.01em;
  font-size: 110px;
  line-height: 100%;
}
@media (max-width: 1600px) {
  .hero-4 .hero-content .title {
    font-size: 88px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .title {
    font-size: 78px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .title {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content .title {
    font-size: 78px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content .title {
    font-size: 62px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .title {
    font-size: 52px;
  }
}
@media (max-width: 470px) {
  .hero-4 .hero-content .title {
    font-size: 40px;
  }
}
.hero-4 .hero-content .title b {
  font-style: italic;
  font-weight: 400;
}
.hero-4 .hero-content p {
  font-size: 20px;
  font-weight: 600;
  max-width: 595px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content p {
    font-size: 17px;
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content p {
    margin: 30px auto 0;
  }
}
@media (max-width: 470px) {
  .hero-4 .hero-content p {
    font-size: 15px;
    margin-top: 25px;
  }
}
.hero-4 .hero-content p b {
  font-weight: 400;
  color: var(--white);
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}
@media (max-width: 991px) {
  .hero-4 .hero-content .hero-button {
    margin-top: 40px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
.hero-4 .hero-image {
  margin-left: -270px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-left: -100px;
  }
  .hero-4 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-image {
    margin-left: 0;
    max-width: 500px;
    margin-top: 80px;
    margin: 0 auto;
  }
}
.hero-4 .hero-image .bg-circle {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-4 .hero-image .bg-circle {
    top: 0;
  }
}

.about-wrapper .about-image {
  max-width: 660px;
  position: relative;
}
.about-wrapper .about-image .about-circle {
  position: absolute;
  bottom: -40px;
  left: -20%;
  z-index: -1;
  animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .about-circle {
    display: none;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-content .text {
  margin-top: 25px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 49px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
  }
}
.about-wrapper .about-content .about-counter-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-counter-items {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-counter-items .content h2 {
  font-size: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.about-wrapper .about-content .about-counter-items .content h2 .plus {
  font-weight: 300;
  font-size: 40px;
}
.about-wrapper .about-content .about-counter-items .about-small {
  border-radius: 20px;
}
.about-wrapper .about-content .about-counter-items .about-small img {
  border-radius: 20px;
}

.about-wrapper-2 .section-title-area {
  gap: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.about-wrapper-2 .section-title-area .about-info p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
}
.about-wrapper-2 .section-title-area .about-info p b {
  font-weight: 700;
  color: var(--white);
}
.about-wrapper-2 .section-title-area h2 {
  letter-spacing: -0.02em;
}
.about-wrapper-2 .about-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-top-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-2 .about-top-items .about-counter h2 {
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-2 .about-top-items .about-counter h2 .plus {
  font-size: 40px;
  font-weight: 300;
}
.about-wrapper-2 .about-top-items .content-box {
  max-width: 690px;
}
.about-wrapper-2 .about-top-items .content-box h2 {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 14px;
}
.about-wrapper-2 .about-top-items .content-box .theme-btn-main {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-top-items .about-vec {
    display: none;
  }
}
.about-wrapper-2 .about-video-banner {
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-video-banner {
    height: 550px;
  }
}
.about-wrapper-2 .about-video-banner img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about-wrapper-2 .about-video-banner .video-circle {
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-video-banner .video-circle {
    display: none;
  }
}
.about-wrapper-2 .about-video-banner .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.about-wrapper-2 .about-video-banner .video-circle .text-circle img {
  width: initial;
  height: initial;
}
.about-wrapper-2 .about-video-banner .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--theme);
  text-align: center;
  width: 58.5px;
  height: 58.5px;
  line-height: 58.5px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}
.about-wrapper-2 .about-video-banner .video-circle .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.about-wrapper-2 .about-video-banner .video-circle img {
  margin-left: 0;
}
.about-wrapper-2 .about-video-banner .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-video-banner .incrase-box {
    display: none;
  }
}
.about-wrapper-2 .about-video-banner .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
.about-wrapper-2 .about-video-banner .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}

.about-wrapper-3 {
  /* margin-bottom: 60px; */
}
.about-wrapper-3 .about-image {
  border-radius: 20px;
  max-width: 658px;
  position: relative;
}
.about-wrapper-3 .about-image .video-circle {
  width: 124px;
  height: 124px;
  line-height: 124px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 35px;
  bottom: 35px;
  backdrop-filter: blur(20px);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.about-wrapper-3 .about-image .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.about-wrapper-3 .about-image .video-circle .text-circle img {
  width: initial;
  height: initial;
}
.about-wrapper-3 .about-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}
.about-wrapper-3 .about-image .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}
.about-wrapper-3 .about-image .video-circle img {
  margin-left: 0;
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about-wrapper-3 .about-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content .section-title h2 {
  font-size: 42px;
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  .about-wrapper-3 .about-content .section-title h2 {
    font-size: 28px;
  }
}
.about-wrapper-3 .about-content .text {
  font-size: 16px;
  margin-top: 20px;
}
.about-wrapper-3 .about-content .about-list-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-items {
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px;
  }
}
.about-wrapper-3 .about-content .about-list-items .list-items ul {
  margin-bottom: 50px;
}
.about-wrapper-3 .about-content .about-list-items .list-items ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-wrapper-3 .about-content .about-list-items .list-items ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-3 .about-content .about-list-items .about-counter-items {
  background-color: #FBF9EF;
  padding: 35px 20px;
  border-radius: 8px;
  max-width: 220px;
  width: 100%;
}
.about-wrapper-3 .about-content .about-list-items .about-counter-items p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-wrapper-3 .about-content .about-list-items .about-counter-items h2 {
  color: var(--theme);
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
}
.about-wrapper-3 .about-content .about-list-items .about-counter-items .plus {
  font-weight: 400;
  font-size: 44px;
  position: relative;
  top: -30px;
}

.about-video-banner-about-page {
  position: relative;
}
@media (max-width: 1199px) {
  .about-video-banner-about-page {
    height: 550px;
  }
}
.about-video-banner-about-page img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about-video-banner-about-page .video-circle {
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
}
@media (max-width: 1199px) {
  .about-video-banner-about-page .video-circle {
    display: none;
  }
}
.about-video-banner-about-page .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.about-video-banner-about-page .video-circle .text-circle img {
  width: initial;
  height: initial;
}
.about-video-banner-about-page .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--theme);
  text-align: center;
  width: 58.5px;
  height: 58.5px;
  line-height: 58.5px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}
.about-video-banner-about-page .video-circle .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.about-video-banner-about-page .video-circle img {
  margin-left: 0;
}
.about-video-banner-about-page .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 40px;
  left: 240px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}
@media (max-width: 1399px) {
  .about-video-banner-about-page .incrase-box {
    left: 50px;
  }
}
@media (max-width: 575px) {
  .about-video-banner-about-page .incrase-box {
    display: none;
  }
}
.about-video-banner-about-page .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
.about-video-banner-about-page .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}

.about-page-style-3 .section-title-area {
  border-bottom: none;
  padding-bottom: 40px;
  align-items: start;
}
.about-page-style-3 .section-title-area .section-title h2 {
  font-size: 45px;
}
@media (max-width: 1199px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 41px;
  }
}
@media (max-width: 767px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 39px;
  }
}
@media (max-width: 575px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 36px;
  }
}
.about-page-style-3 .section-title-area .section-title .sec-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-page-style-3 .section-title-area .section-title .sec-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-page-style-3 .section-title-area .section-title .sec-content p {
  max-width: 810px;
}
@media (max-width: 1399px) {
  .about-page-style-3 .section-title-area .section-title .sec-content p {
    max-width: 600px;
  }
}

.choose-us-section {
  background-color: #272727;
  border-radius: 16px;
  margin: 0 30px;
}
@media (max-width: 1399px) {
  .choose-us-section {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .choose-us-section {
    margin: 0 20px;
  }
}
.choose-us-section .about-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .choose-us-section .about-text {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }
}
.choose-us-section .about-text a {
  text-decoration: underline;
  text-transform: capitalize;
}
.choose-us-section .about-text a:hover {
  color: var(--theme);
}
.choose-us-section .section-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .choose-us-section .section-title {
    margin-bottom: 30px;
  }
}

.counter-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .counter-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .counter-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.counter-wrapper .counter-box {
  border-radius: 10px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-box {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper .counter-box {
    max-width: initial;
  }
}
.counter-wrapper .counter-box .text {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
.counter-wrapper .counter-box h2 {
  font-size: 72px;
  font-weight: 600;
  color: var(--theme);
  line-height: 1;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}
.counter-wrapper .counter-box p {
  font-size: 16px;
  margin-top: 15px;
}

.video-banner {
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 1199px) {
  .video-banner {
    height: 500px;
  }
}
.video-banner img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.video-banner .video-circle {
  width: 208px;
  height: 208px;
  line-height: 208px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 2;
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(20px);
}
@media (max-width: 991px) {
  .video-banner .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.video-banner .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.video-banner .video-circle .text-circle img {
  width: initial;
  height: initial;
}
.video-banner .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 94px;
  height: 94px;
  line-height: 94px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
}
.video-banner .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}
.video-banner .video-circle img {
  margin-left: 0;
}

.choose-us-section-2 {
  background: linear-gradient(91.27deg, #FAFBFB 31.78%, rgba(250, 251, 251, 0.7) 99.22%);
  border-radius: 20px;
  margin: 0 30px;
  padding: 35px;
}
@media (max-width: 1399px) {
  .choose-us-section-2 {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .choose-us-section-2 {
    margin: 0 20px;
    padding: 28px;
  }
}

.choose-us-wrapper-2 {
  position: relative;
  z-index: 9;
}
.choose-us-wrapper-2 .choose-line {
  position: absolute;
  top: 0;
  bottom: -10%;
  right: -10%;
  opacity: 0.1;
  z-index: -1;
}
.choose-us-wrapper-2 .choose-line img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-image {
  border-radius: 16px;
  border: 1px solid rgba(16, 16, 16, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 30px;
  max-width: 634px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-image {
    max-width: initial;
  }
  .choose-us-wrapper-2 .choose-us-image img {
    max-width: 500px;
  }
}
.choose-us-wrapper-2 .choose-us-image img {
  animation: cir36 10s linear infinite;
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-content .section-title .sub-title {
  color: var(--theme);
}
.choose-us-wrapper-2 .choose-us-content .section-title h2 {
  color: #101010;
  font-size: 48px;
  letter-spacing: -2px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 30px;
  }
}
.choose-us-wrapper-2 .choose-us-content .theme-btn-main {
  margin-top: 30px;
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    display: block;
  }
}
.choose-us-wrapper-2 .choose-us-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) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box .sub-text {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #101010;
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box h2 {
  font-weight: 600;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #101010;
  margin-top: 15px;
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
    flex-basis: 100%;
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg:hover img {
  transform: scale(1.1) rotate(2deg);
}

.choose-us-wrapper-3 .about-left-items {
  max-width: 651px;
}
.choose-us-wrapper-3 .about-left-items .about-thumb {
  /* height: 488px; */
  border-radius: 20px;
}
.choose-us-wrapper-3 .about-left-items .about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content {
  background: #FFFDF5;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  margin-top: 30px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content {
    flex-wrap: wrap;
    padding: 30px;
  }
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter {
  padding-top: 5px;
  padding-bottom: 10px;
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter .sub-text {
  background-color: var(--theme);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  padding: 5px 8px;
  line-height: 1;
  border-radius: 17px;
  margin-bottom: 45px;
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter h2 {
  color: #000000;
  font-size: 48px;
  font-weight: 600;
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter p {
  font-weight: 500;
  color: #000000;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-line {
  width: 1px;
  height: 180px;
  background: #F0ECDF;
  display: inline-block;
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .about-line {
    display: none;
  }
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .content {
  max-width: 375px;
  padding-top: 5px;
  padding-bottom: 10px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .content {
    max-width: 300px;
  }
}
.choose-us-wrapper-3 .about-left-items .about-bottom-content .content p {
  color: #000000;
  line-height: 162.5%;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .content p {
    margin-bottom: 15px;
  }
}
.choose-us-wrapper-3 .choose-us-content .section-title h2 {
  letter-spacing: -1px;
}
.choose-us-wrapper-3 .choose-us-content .choose-icon-items {
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .choose-icon-items {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .choose-icon-items {
    flex-wrap: wrap;
  }
}

@media (min-width:1200px) and (max-width:1950px){
.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items {
  max-width: 210px;
}

}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content {
  margin-top: 15px;
}
.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content .title {
  font-size: 24px;
  font-weight: 700;
}
.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  margin-top: 4px;
}
.choose-us-wrapper-3 .choose-us-content .award-items-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Urbanist", sans-serif;
  margin-top: 18px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .award-items-box p {
    font-size: 14px;
  }
}
.choose-us-wrapper-3 .choose-us-content .award-items-box:hover img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image {
  max-width: 470px;
  width: 100%;
  height: 206px;
  border-radius: 20px;
  position: relative;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle {
  width: 124px;
  height: 124px;
  line-height: 124px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 2;
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(20px);
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .text-circle img {
  width: initial;
  height: initial;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}
.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle img {
  margin-left: 0;
}
.choose-us-wrapper-3 .choose-us-content .about-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.work-process-wrapper-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 470px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.work-process-wrapper-3 .line-1 {
  position: absolute;
  left: 200px;
  right: 0;
  text-align: center;
  top: 33%;
  transform: translateY(-50%);
  z-index: -1;
  max-width: 1000px;
}
@media (max-width: 1399px) {
  .work-process-wrapper-3 .line-1 {
    display: none;
  }
}
.work-process-wrapper-3 .line-1 img {
  width: 100%;
}
.work-process-wrapper-3 .work-process-items-3 {
  margin-top: 30px;
}
.work-process-wrapper-3 .work-process-items-3 .icon {
  width: 104px;
  height: 104px;
  line-height: 104px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(39, 39, 39);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.work-process-wrapper-3 .work-process-items-3 .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--theme);
  top: 100%;
  left: 0;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}
.work-process-wrapper-3 .work-process-items-3 .content {
  text-align: center;
  margin-top: 18px;
}
.work-process-wrapper-3 .work-process-items-3 .content .title {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .work-process-wrapper-3 .work-process-items-3 .content .title {
    font-size: 20px;
  }
}
.work-process-wrapper-3 .work-process-items-3 .content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(121, 121, 121);
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .work-process-wrapper-3 .work-process-items-3 .content p br {
    display: none;
  }
}
.work-process-wrapper-3 .work-process-items-3:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}
.work-process-wrapper-3 .work-process-items-3.active .icon::before {
  top: 0;
}

.choose-us-wrapper-33 .choose-us-image {
  position: relative;
  border-radius: 12px;
  height: 760px;
}
@media (max-width: 991px) {
  .choose-us-wrapper-33 .choose-us-image {
    height: 580px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-image {
    height: 480px;
  }
}
.choose-us-wrapper-33 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.choose-us-wrapper-33 .choose-us-image .grap-shape {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-33 .choose-us-image .grap-shape {
    max-width: 200px;
    right: 15px;
    bottom: 15px;
  }
}
@media (max-width: 1199px) {
  .choose-us-wrapper-33 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-33 .choose-us-content .section-title h2 {
  letter-spacing: -2px;
}
.choose-us-wrapper-33 .choose-us-content .choose-list {
  margin-top: 30px;
  max-width: 570px;
}
.choose-us-wrapper-33 .choose-us-content .choose-list li {
  display: flex;
  gap: 20px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-content .choose-list li {
    flex-wrap: wrap;
  }
}
.choose-us-wrapper-33 .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: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-content .choose-list li .icon {
    height: 70px;
    max-width: 70px;
    line-height: 70px;
  }
  .choose-us-wrapper-33 .choose-us-content .choose-list li .icon img {
    width: 30px;
  }
}
.choose-us-wrapper-33 .choose-us-content .choose-list li .content h3 {
  color: var(--header);
  text-transform: capitalize;
  font-weight: 700;
}
.choose-us-wrapper-33 .choose-us-content .choose-list li .content p {
  color: var(--header);
  margin-top: 10px;
  max-width: 415px;
  font-size: 16px;
  font-weight: 400;
}
.choose-us-wrapper-33 .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-33 .choose-us-content .choose-list li.active h3 {
  color: #101010;
}
.choose-us-wrapper-33 .choose-us-content .choose-list li.active p {
  color: #101010;
}
.choose-us-wrapper-33 .choose-us-content .choose-list li.active .icon {
  background-color: var(--theme);
}
.choose-us-wrapper-33 .choose-us-content .choose-list li.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.choose-us-section-4 {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 0 60px;
}
@media (max-width: 1899px) {
  .choose-us-section-4 {
    margin: 0 40px;
  }
}
@media (max-width: 1600px) {
  .choose-us-section-4 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .choose-us-section-4 {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .choose-us-section-4 {
    margin: 0 20px;
  }
}

.award-section-4 {
  border-radius: 20px;
  margin: 0 60px;
  padding-bottom: 0 !important;
}
@media (max-width: 1899px) {
  .award-section-4 {
    margin: 0 35px;
  }
}
@media (max-width: 1600px) {
  .award-section-4 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .award-section-4 {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .award-section-4 {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .award-section-4 {
    padding-bottom: 80px !important;
  }
}

.award-wrapper-4 {
  position: relative;
}
.award-wrapper-4 .award-content ul {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}
.award-wrapper-4 .award-content ul li {
  display: flex;
  align-items: center;
  gap: 80px;
}
.award-wrapper-4 .award-content .award-list-items {
  display: flex;
  align-items: center;
  gap: 85px;
}
@media (max-width: 1199px) {
  .award-wrapper-4 .award-content .award-list-items {
    gap: 40px;
  }
}
.award-wrapper-4 .award-content .award-list-items.bb-bottom span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.award-wrapper-4 .award-content .award-list-items span {
  width: 100%;
  display: inline-block;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}
.award-wrapper-4 .award-image {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .award-wrapper-4 .award-image {
    display: none;
  }
}

.why-choose-us-wrapper-5 .section-title h2 {
  font-size: 48px;
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 36px;
  }
}
.why-choose-us-wrapper-5 .thumb {
  margin-top: 30px;
  border-radius: 10px;
}
.why-choose-us-wrapper-5 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.why-choose-us-wrapper-5 .choose-us-content {
  margin-top: 30px;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .choose-us-content {
    margin-left: 0;
  }
}
.why-choose-us-wrapper-5 .choose-us-content .theme-btn-main {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}
.why-choose-us-wrapper-5 .choose-us-content .theme-btn-main .theme-btn-arrow-left, .why-choose-us-wrapper-5 .choose-us-content .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: var(--white);
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    display: block;
  }
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
  max-width: 300px;
  background-color: #FBF9EF;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box .sub-text {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #101010;
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box h2 {
  font-weight: 600;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #101010;
  margin-top: 15px;
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
    flex-basis: 100%;
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg:hover img {
  transform: scale(1.1) rotate(2deg);
}

.service-section .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-section .section-title-area .client-info .content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.service-section .section-title-area .client-info .content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.service-section .service-box-style .block .service-acc-content.current {
  display: block;
}
.service-section .service-box-style .block .service-acc-content.current h4 {
  color: #101010;
}
.service-section .service-box-style .block .service-acc-btn.active .icon:before {
  content: "\f00d";
}
.service-section .service-box-style .block .service-acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-section .service-box-style .block .service-acc-btn.active h3 {
  color: #101010;
}
.service-section .service-box-style .block .service-acc-btn.active {
  color: var(--theme);
}
.service-section .service-box-style .block .service-acc-btn.active .number {
  color: var(--theme);
}
.service-section .service-box-style .block:last-child {
  margin-bottom: 0;
}

.service-box-style {
  margin-top: 30px;
}
.service-box-style .service-list-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 75px;
  position: relative;
}
.service-box-style .service-list-wrap .service-box {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-box {
    display: none;
  }
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap {
    padding: 40px 10px;
  }
}
.service-box-style .service-list-wrap.active-block {
  background-color: #FBF9EF;
  border-bottom: 1px solid #FBF9EF;
  border-radius: 20px;
}
.service-box-style .service-list-wrap .service-acc-btn {
  position: relative;
  padding-left: 275px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 200px;
  }
}
@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 90px;
  }
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 20px;
  }
}
.service-box-style .service-list-wrap .service-acc-btn .number {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  font-family: "Urbanist", sans-serif;
  color: #797979;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn .number {
    top: -30px;
    left: 20px;
  }
}
.service-box-style .service-list-wrap .service-acc-btn .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: var(--header);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.service-box-style .service-list-wrap .service-acc-btn h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn h3 {
    font-size: 25px;
  }
}
.service-box-style .service-list-wrap .service-acc-btn h3 a {
  color: var(--header);
}
.service-box-style .service-list-wrap .service-acc-btn h3 a:hover {
  color: var(--theme);
}
.service-box-style .service-list-wrap .service-acc-content {
  margin-top: 35px;
  display: none;
  position: relative;
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-content {
    margin-top: 25px;
  }
}
.service-box-style .service-list-wrap .service-wrap {
  display: flex;
  gap: 100px;
  width: 100%;
  padding-left: 275px;
}
@media (max-width: 1399px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 0px;
  }
}
@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 90px;
  }
}
@media (max-width: 991px) {
  .service-box-style .service-list-wrap .service-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 20px;
  }
}
.service-box-style .service-list-wrap .service-wrap .item-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #101010;
}
.service-box-style .service-list-wrap .service-wrap .item-text .text {
  max-width: 465px;
}
.service-box-style .service-list-wrap .service-wrap .item-text .text p {
  font-size: 16px;
  line-height: 155.556%;
  font-weight: 500;
  color: #101010;
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-wrap .item-text .text p {
    font-size: 16px;
  }
}
.service-box-style .service-list-wrap .service-wrap .item-text ul li {
  color: #101010;
  font-family: "Urbanist", sans-serif;
}
.service-box-style .service-list-wrap .service-wrap .item-text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-box-style .service-list-wrap .service-wrap .item-text ul li i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--theme);
}
.service-box-style .service-list-wrap.style-two .service-acc-btn {
  padding-left: 70px;
}
.service-box-style .service-list-wrap.style-two .number {
  top: 6px;
}
.service-box-style .service-list-wrap.style-two .service-wrap {
  padding-left: 70px;
}
@media (max-width: 575px) {
  .service-box-style .service-list-wrap.style-two .service-wrap {
    padding-left: 20px;
  }
}
.service-box-style .service-list-wrap.style-two .service-thumb {
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 170px;
}
@media (max-width: 1399px) {
  .service-box-style .service-list-wrap.style-two .service-thumb {
    display: none;
  }
}
.service-box-style .service-list-wrap.style-two .service-thumb img {
  border-radius: 10px;
}
.service-box-style .service-list-wrap.accordion.block .service-thumb {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-box-style .service-list-wrap.active-block .service-thumb {
  opacity: 1 !important;
  visibility: visible !important;
}

.service-section-2 .section-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
}

.service-box-items-2 {
  margin-top: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
  background-color: #101010;
}
.service-box-items-2 .service-content {
  margin-right: 10px;
}
@media (max-width: 1199px) {
  .service-box-items-2 .service-content {
    margin-right: 0;
  }
}
.service-box-items-2 .service-content p {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #797979;
}
@media (max-width: 1600px) {
  .service-box-items-2 .service-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-box-items-2 .service-content p {
    font-size: 16px;
  }
}
.service-box-items-2 .service-content .title {
  font-size: 65px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 40px;
  line-height: 115%;
}
@media (max-width: 1600px) {
  .service-box-items-2 .service-content .title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .service-box-items-2 .service-content .title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .service-box-items-2 .service-content .title {
    font-size: 32px;
  }
}
.service-box-items-2 .service-content .title:hover a {
  color: var(--theme);
}
.service-box-items-2 .service-content .service-list {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .service-box-items-2 .service-content .service-list {
    margin-top: 25px;
  }
}
.service-box-items-2 .service-content .service-list ul li {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #797979;
}
.service-box-items-2 .service-content .service-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.service-box-items-2 .service-content .title-2 {
  font-size: 24px;
  font-weight: 500;
  color: #797979;
  max-width: 481px;
  margin-top: 90px;
}
@media (max-width: 1600px) {
  .service-box-items-2 .service-content .title-2 {
    font-size: 18px;
    line-height: 130%;
  }
}
@media (max-width: 991px) {
  .service-box-items-2 .service-content .title-2 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-box-items-2 .service-content .title-2 {
    font-size: 16px;
  }
}
.service-box-items-2 .service-content .list-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .service-box-items-2 .service-content .list-items {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .service-box-items-2 .service-content .list-items {
    flex-wrap: wrap;
  }
}
.service-box-items-2 .service-content .list-items li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.service-box-items-2 .service-content .list-items li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}
.service-box-items-2 .service-thumb {
  height: 626px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .service-box-items-2 .service-thumb {
    height: 500px;
  }
}
.service-box-items-2 .service-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 20px;
}
.service-box-items-2 .service-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);
}
.service-box-items-2:hover .service-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.service-box-items-2:hover .service-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);
}

.service-section-3 {
  position: relative;
}
.service-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  left: 30px;
  background-color: var(--bg);
  border-radius: 16px;
  width: calc(100% - 60px);
}
@media (max-width: 1600px) {
  .service-section-3::before {
    width: 100%;
    left: 0;
  }
}
.service-section-3 .array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}
.service-section-3 .array-button .array-prev, .service-section-3 .array-button .array-next {
  border-radius: 100px;
  background-color: var(--white);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: #101010;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.service-section-3 .array-button .array-prev:hover, .service-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.service-section-3 .array-button .swiper-dot .swiper-pagination-bullet {
  background-color: #797979;
}
.service-section-3 .array-button .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.service-box-items-3 {
  margin-top: 30px;
  background-color: #FBF9EF;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
}
.service-box-items-3 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.service-box-items-3::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}
.service-box-items-3 span {
  color: #797979;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 25px;
  display: inline-block;
}
.service-box-items-3 h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
}
.service-box-items-3 h3 a {
  color: #101010;
}
.service-box-items-3 p {
  color: #101010;
}
.service-box-items-3 .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) {
  .service-box-items-3 .feature-info-box {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.service-box-items-3 .feature-info-box ul {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .service-box-items-3 .feature-info-box ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-box-items-3 .feature-info-box ul li {
  border-radius: 50px;
  border: 1px solid #E6E8EB;
  font-size: 16px;
  font-weight: 500;
  color: #101010;
  font-family: "Urbanist", sans-serif;
  padding: 0 12px;
  height: 30px;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
}
.service-box-items-3 .feature-info-box ul li:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-box-items-3 .feature-info-box .icon {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 43px;
  border-radius: 50%;
  background-color: #101010;
  text-align: center;
  color: var(--white);
}
.service-box-items-3.active .shape-1 {
  opacity: 1;
  visibility: visible;
}
.service-box-items-3.active h6, .service-box-items-3.active h3, .service-box-items-3.active p, .service-box-items-3.active span {
  color: var(--white);
}
.service-box-items-3.active h3 a {
  color: var(--white);
}
.service-box-items-3.active::before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-box-items-3.active .icon {
  background-color: var(--theme) !important;
}
.service-box-items-3:hover .shape-1 {
  opacity: 1;
  visibility: visible;
}
.service-box-items-3:hover h6, .service-box-items-3:hover h3, .service-box-items-3:hover p, .service-box-items-3:hover span {
  color: var(--white);
}
.service-box-items-3:hover h3 a {
  color: var(--white);
}
.service-box-items-3:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.service-box-items-3:hover .icon {
  background-color: var(--theme) !important;
}

.service-wrapper-3 {
  margin-right: -40%;
}
@media (max-width: 1600px) {
  .service-wrapper-3 {
    margin-right: -35%;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-3 {
    margin-right: -55%;
  }
}
@media (max-width: 575px) {
  .service-wrapper-3 {
    margin-right: 0;
  }
}

.service-section-4 .section-title-area {
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 50px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.service-section-4 .section-title .title {
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 95%;
}
@media (max-width: 1899px) {
  .service-section-4 .section-title .title {
    font-size: 160px;
  }
}
@media (max-width: 1600px) {
  .service-section-4 .section-title .title {
    font-size: 120px;
  }
}
@media (max-width: 1399px) {
  .service-section-4 .section-title .title {
    font-size: 130px;
  }
}
@media screen and (max-width: 1300px) {
  .service-section-4 .section-title .title {
    font-size: 110px;
  }
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .service-section-4 .section-title .title {
    font-size: 80px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .service-section-4 .section-title .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .service-section-4 .section-title .title {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  .service-section-4 .section-title .title {
    font-size: 38px;
  }
}
.service-section-4 .section-title .title .text-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-1 {
    display: initial;
  }
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-1 img {
    display: none;
  }
}
.service-section-4 .section-title .title .text-2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  letter-spacing: 0.15em;
  font-style: italic;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-2 {
    display: initial;
  }
}
.service-section-4 .section-title .title .text-2 img {
  border-radius: 100px;
}
@media (max-width: 1600px) {
  .service-section-4 .section-title .title .text-2 img {
    width: 250px;
  }
}
@media screen and (max-width: 1300px) {
  .service-section-4 .section-title .title .text-2 img {
    width: 220px;
  }
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-2 img {
    display: none;
  }
}
.service-section-4 .section-title .title .text-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-3 {
    display: initial;
  }
}
.service-section-4 .section-title .title .text-3 img {
  border-radius: 100px;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-3 img {
    display: none;
  }
}
.service-section-4 .top-content {
  max-width: 275px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .service-section-4 .top-content {
    margin-left: initial;
    margin: 0 auto;
  }
}
@media (max-width: 1600px) {
  .service-section-4 .top-content .arrow-icon {
    max-width: 200px;
  }
  .service-section-4 .top-content .arrow-icon img {
    width: 100%;
    height: 100%;
  }
}
.service-section-4 .top-content .content {
  margin-top: 45px;
}
.service-section-4 .top-content .content h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-section-4 .top-content .content h3 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
.service-section-4 .service-box-style .block .service-acc-content.current {
  display: block;
}
.service-section-4 .service-box-style .block .service-acc-content.current h4 {
  color: #101010;
}
.service-section-4 .service-box-style .block .service-acc-btn.active .icon:before {
  content: "\f00d";
}
.service-section-4 .service-box-style .block .service-acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-section-4 .service-box-style .block .service-acc-btn.active h3 {
  color: #101010;
}
.service-section-4 .service-box-style .block .service-acc-btn.active {
  color: var(--theme);
}
.service-section-4 .service-box-style .block .service-acc-btn.active .number {
  color: var(--theme);
}
.service-section-4 .service-box-style .block:last-child {
  margin-bottom: 0;
}

.services-details-section {
  position: relative;
  padding-top: 180px !important;
}
@media (max-width: 1199px) {
  .services-details-section {
    padding-bottom: 0px !important;
  }
}
.services-details-section .title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 120px;
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  .services-details-section .title-area {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .services-details-section .title-area {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
.services-details-section h1 {
  color: var(--white);
  font-size: 110px;
  position: relative;
  z-index: 9;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 116%;
  font-weight: 600;
}
.services-details-section h1 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
@media (max-width: 1399px) {
  .services-details-section h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .services-details-section h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .services-details-section h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .services-details-section h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .services-details-section h1 {
    font-size: 40px;
  }
}
.services-details-section .light-bg {
  position: absolute;
  left: 17%;
  top: -6%;
  z-index: -1;
}
.services-details-section .bg-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.services-details-section .bg-line img {
  width: 100%;
}
@media (max-width: 1199px) {
  .services-details-section {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .services-details-section {
    padding-top: 80px;
  }
}

.service-details-wrapper .service-details-image-top {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}
.service-details-wrapper .service-details-image-top img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.service-details-wrapper .details-top-item {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .details-top-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .details-top-item .left-content h2 {
  font-weight: 600;
  font-size: 65px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 25px;
  }
}
.service-details-wrapper .details-top-item .left-content p {
  max-width: 788px;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .left-content p {
    font-size: 16px;
    max-width: 565px;
  }
}
.service-details-wrapper .details-top-item .details-list li {
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.service-details-wrapper .details-top-item .details-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .details-list li {
    font-size: 16px;
  }
}
.service-details-wrapper .details-top-item .details-list li i {
  margin-right: 5px;
}
.service-details-wrapper .service-details-image {
  overflow: hidden;
  border-radius: 10px;
}
.service-details-wrapper .service-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.service-details-wrapper .service-concept-item {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-concept-item .service-count-left h2 {
  font-size: 280px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left h2 {
    font-size: 100px;
  }
}
.service-details-wrapper .service-concept-item .service-count-left p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
  max-width: 238px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left p {
    font-size: 16px;
  }
}
.service-details-wrapper .service-concept-item .service-count-left .details-thumb {
  margin-top: 50px;
  max-width: 600px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left .details-thumb {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-concept-item .service-count-left .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-radius: 10px;
}
.service-details-wrapper .service-concept-item h2 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 25px;
  }
}
.service-details-wrapper .service-concept-item .service-concept-box {
  background-color: var(--white);
  padding: 38px 30px;
  margin-bottom: 30px;
  margin-left: 80px;
  border-radius: 8px;
  padding-top: 33px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box {
    padding: 35px 30px;
  }
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-concept-box {
    margin-left: 0;
    padding: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-concept-item .service-concept-box h3 {
  font-size: 32px;
  font-weight: 600;
  color: #101010;
  text-transform: capitalize;
}
@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box h3 {
    font-size: 28px;
  }
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-concept-box h3 {
    font-size: 20px;
  }
}
.service-details-wrapper .service-concept-item .service-concept-box p {
  max-width: 680px;
  font-size: 18px;
  font-weight: 400;
  color: rgb(3, 7, 13);
  margin-top: 15px;
}
@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box p {
    font-size: 16px;
  }
}
.service-details-wrapper .service-concept-item .service-concept-box.active {
  background-color: var(--theme);
}
.service-details-wrapper .service-concept-item .service-concept-box.active h3 {
  color: var(--white);
}
.service-details-wrapper .service-concept-item .service-concept-box.active p {
  color: var(--white);
}
.service-details-wrapper .service-concept-item .number-list {
  position: absolute;
  left: 46%;
  transform: translateX(-50%);
  display: grid;
  gap: 180px;
  top: 310px;
}
@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .number-list {
    left: 52%;
  }
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .number-list {
    display: none;
  }
}
.service-details-wrapper .service-concept-item .number-list::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 100%;
  left: 25px;
  top: 0;
}
.service-details-wrapper .service-concept-item .number-list .number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 9;
  color: var(--white);
}

.service-visual-item p {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .service-visual-item p {
    margin-top: 30px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service-visual-item p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.service-visual-item .service-visual-image {
  overflow: hidden;
  border-radius: 10px;
}
.service-visual-item .service-visual-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-visual-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .service-visual-section {
    padding-top: 80px;
    margin-top: 80px;
  }
}

.details-icon-box-item {
  border-radius: 16px;
  padding: 64px 40px;
  background-color: #FBF9EF;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .details-icon-box-item {
    padding: 30px;
  }
}
.details-icon-box-item .content {
  margin-top: 30px;
}
.details-icon-box-item .content .title {
  color: #101010;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .details-icon-box-item .content .title {
    font-size: 22px;
  }
}
.details-icon-box-item .content p {
  color: #4B4B4B;
  font-size: 16px;
}
.details-icon-box-item:hover {
  background-color: #272727;
}
.details-icon-box-item:hover .content .title {
  color: #fff;
}
.details-icon-box-item:hover .content p {
  color: #fff;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.marque-section {
  background-color: var(--theme);
  padding: 14px 0;
}
.marque-section .text {
  color: var(--white);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marque-section .text-3 {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 50px;
}
.marque-section .text-4 {
  font-size: 96px;
  font-weight: 600;
  color: transparent;
  font-size: 96.552px;
  font-weight: 600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--header);
  transition: all 0.4s ease-in-out;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .marque-section .text-4 {
    font-size: 60px;
  }
}
.marque-section .text-4:hover {
  color: var(--header);
}
.marque-section .marquee {
  gap: 60px;
  --duration: 20s !important;
}
.marque-section .marquee-group {
  gap: 60px;
}

.marquee {
  position: relative;
  --duration: 100s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}
.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 .marquee-group .icon-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1.13258px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18.1212px);
  border-radius: 9.78671px;
  width: 123px;
  height: 123px;
  line-height: 123px;
  text-align: center;
  border-radius: 10px;
}

.marque-section-2 .marquee {
  gap: 60px;
  --duration: 30s !important;
}
.marque-section-2 .marquee-group {
  gap: 70px;
}
@media (max-width: 767px) {
  .marque-section-2 .marquee-group {
    gap: 40px;
  }
}
.marque-section-2 .marquee-group .text-2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 125px;
  letter-spacing: -7.20707px;
  line-height: 1;
  color: var(--theme);
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 767px) {
  .marque-section-2 .marquee-group .text-2 {
    font-size: 80px;
    letter-spacing: -4.5px;
    gap: 40px;
  }
}

.powerful-feature-section .section-title {
  margin-bottom: 60px;
}

.powerful-feature-section .marquee {
  --duration: 30s;
}
@media (max-width: 1899px) {
  .powerful-feature-section .marquee {
    gap: 30px !important;
  }
}
.powerful-feature-section .marquee-group {
  gap: 0 !important;
}
@media (max-width: 1899px) {
  .powerful-feature-section .marquee-group {
    gap: 30px !important;
  }
}
.powerful-feature-section .marquee-2 {
  margin-top: 35px;
}
.powerful-feature-section .marquee-2 .marquee-group {
  animation: scrollLTR var(--duration) linear infinite;
}

@keyframes scrollLTR {
  0% {
    transform: translateX(calc(-100% - var(--gap)));
  }
  100% {
    transform: translateX(0);
  }
}
.testimonial-box-style-1 {
  margin-top: 30px;
  padding: 30px;
  background-color: #FBF9EF;
  border-radius: 10px;
}
.testimonial-box-style-1 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-bottom: 40px;
}
.testimonial-box-style-1 h3 {
  font-size: 22px;
  font-weight: 600;
  color: #101010;
  opacity: 0.8;
  line-height: 125%;
  letter-spacing: -1px;
  font-style: italic;
}
@media (max-width: 1600px) {
  .testimonial-box-style-1 h3 {
    font-size: 20px;
    line-height: 135%;
  }
}
@media (max-width: 575px) {
  .testimonial-box-style-1 h3 {
    font-size: 18px;
  }
}
.testimonial-box-style-1 .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-1 .client-info-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-box-style-1 .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 1600px) {
  .testimonial-box-style-1 .client-info-item .client-info h4 {
    font-size: 18px;
  }
}
.testimonial-box-style-1 .client-info-item .client-info span {
  font-weight: 400;
  color: #101010;
  font-size: 16px;
}
.testimonial-box-style-1 .client-info-item .star {
  color: var(--theme);
  font-size: 16px;
}
.testimonial-box-style-1.style-2 {
  background-color: #101010;
}
.testimonial-box-style-1.style-2 h3 {
  color: var(--white);
  opacity: 0.8;
}
.testimonial-box-style-1.style-2 .client-info-item {
  border-top: 1px solid rgba(223, 220, 210, 0.12);
}
.testimonial-box-style-1.style-2 .client-info-item .client-info h4 {
  color: var(--white);
}
.testimonial-box-style-1.style-2 .client-info-item .client-info span {
  color: var(--white);
}
.testimonial-box-style-1.style-2 .client-info-item .star {
  color: var(--theme);
}

.testimonial-section {
  position: relative;
  margin: 0 30px;
}
.testimonial-section .light-bg {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .testimonial-section .light-bg {
    display: none;
  }
}

.testimonial-box-area-2 {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.testimonial-box-area-2 ul li .testi-box-one {
  background: #FBF9EF;
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 415px;
}
.testimonial-box-area-2 ul li .testi-box-one .client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.testimonial-box-area-2 ul li .testi-box-one .client-info .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  line-height: 1;
}
.testimonial-box-area-2 ul li .testi-box-one .client-info .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
}
.testimonial-box-area-2 ul li .testi-box-one .star {
  color: var(--theme);
  font-size: 16px;
  margin-bottom: 10px;
}
.testimonial-box-area-2 ul li .testi-box-one .text {
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  font-style: italic;
}
.testimonial-box-area-2 ul li:not(:last-child) {
  margin-bottom: 24px;
}
.testimonial-box-area-2 .testi-box-two {
  max-width: 393px;
  background: #FBF9EF;
  border-radius: 16px;
}
.testimonial-box-area-2 .testi-box-two .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0px 0px;
}
.testimonial-box-area-2 .testi-box-two .content {
  padding: 32px 32px;
  padding-top: 28px;
}
.testimonial-box-area-2 .testi-box-two .content .text {
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  font-style: italic;
}
.testimonial-box-area-2 .testi-box-two .content .info-content {
  margin-top: 10px;
}
.testimonial-box-area-2 .testi-box-two .content .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}
.testimonial-box-area-2 .testi-box-two .content .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 1;
}
.testimonial-box-area-2 .testi-box-two .content .info-content .star {
  color: var(--theme);
  font-size: 16px;
  margin-top: 10px;
}

.testi-card-two {
  margin-top: 30px;
  background: #FBF9EF;
  border-radius: 16px;
  max-width: 757px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.testi-card-two .thumb {
  border-radius: 16px;
  max-width: 361px;
}
.testi-card-two .thumb img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}
.testi-card-two .content {
  max-width: 330px;
}
.testi-card-two .content .quote-icon {
  margin-bottom: 27px;
}
.testi-card-two .content .text {
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: #101010;
  line-height: 160%;
}
.testi-card-two .content .info-content {
  margin-top: 70px;
}
.testi-card-two .content .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}
.testi-card-two .content .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 1;
  margin-top: 5px;
}
.testi-card-two .content .info-content .star {
  color: var(--theme);
  font-size: 16px;
  margin-top: 10px;
}

.testimonial-section-2 .marquee {
  --duration: 30s;
  gap: 40px;
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1290px;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 9;
}
@media (max-width: 1399px) {
  .testimonial-section-3 .array-button {
    left: 25px;
    right: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-section-3 .array-button {
    display: none;
  }
}
.testimonial-section-3 .array-button .array-prev, .testimonial-section-3 .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: #101010;
  transition: all 0.4s ease-in-out;
}
.testimonial-section-3 .array-button .array-prev:hover, .testimonial-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.tetsimonial-box-items-3 {
  margin-top: 30px;
  background-color: transparent;
  padding: 50px 50px;
  text-align: center;
  opacity: 0.2;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  transition: all 0.5s ease;
  transform: scale(0.95);
}
@media (max-width: 1600px) {
  .tetsimonial-box-items-3 {
    padding: 40px 50px;
  }
}
@media (max-width: 1199px) {
  .tetsimonial-box-items-3 {
    padding: 40px 40px;
  }
}
@media (max-width: 575px) {
  .tetsimonial-box-items-3 {
    padding: 28px;
  }
}
.tetsimonial-box-items-3 .quote-icon {
  margin-bottom: 35px;
}
.tetsimonial-box-items-3 .text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 154%;
  color: #fff;
}
@media (max-width: 1600px) {
  .tetsimonial-box-items-3 .text {
    font-size: 22px;
  }
}
@media (max-width: 1399px) {
  .tetsimonial-box-items-3 .text {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .tetsimonial-box-items-3 .text {
    font-size: 18px;
  }
}
.tetsimonial-box-items-3 .client-info {
  margin-top: 30px;
}
.tetsimonial-box-items-3 .client-info .thumb {
  margin-bottom: 15px;
}
.tetsimonial-box-items-3 .client-info span {
  color: #fff;
  font-size: 16px;
}
.tetsimonial-box-items-3 .client-info p {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.testimonial-slider-3 {
  margin-left: -15%;
  margin-right: -15%;
}
@media (max-width: 767px) {
  .testimonial-slider-3 {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 {
  opacity: 1;
  background-color: #FBF9EF;
  transform: scale(1);
}
.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 .text {
  color: #101010;
}
.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 span {
  color: #101010;
}
.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 p {
  color: #101010;
}

.testimonial-section-3 .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
}
.testimonial-section-3 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section-3 .section-title-area .client-info .content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.testimonial-section-3 .section-title-area .client-info .content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-section-4 .marquee {
  --duration: 40s;
}
.testimonial-section-4 .marquee .testi-text {
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .testimonial-section-4 .marquee .testi-text {
    font-size: 100px;
  }
}
.testimonial-section-4 .marquee .testi-text.style-2 {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.testimonial-wrapper-4 {
  margin-top: 100px;
}
.testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 .quote-icon {
  margin-bottom: 80px;
}
.testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 p {
  font-size: 29px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  color: #fff;
  font-style: italic;
  line-height: 150%;
}
@media (max-width: 575px) {
  .testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 p {
    font-size: 22px;
  }
}
.testimonial-wrapper-4 .testimonial-items-2 .array-button {
  gap: 15px;
  margin-top: 48px;
  display: flex;
  align-items: center;
}
.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-prev, .testimonial-wrapper-4 .testimonial-items-2 .array-button .array-next {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-prev:hover, .testimonial-wrapper-4 .testimonial-items-2 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper-4 .testimonial-right-items {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 60px;
  position: relative;
  padding-left: 75px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-right-items {
    padding-left: 40px;
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-right-items {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
}
.testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
  margin-right: -45%;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
    margin-right: 0;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
    text-align: center;
  }
}
.testimonial-wrapper-4 .testimonial-right-items .testi-slider-box {
  opacity: 0.1;
}
.testimonial-wrapper-4 .testimonial-right-items::before {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  width: 1000%;
  z-index: -1;
}
.testimonial-wrapper-4 .testimonial-right-items .client-image {
  margin-top: 85px;
}
.testimonial-wrapper-4 .testimonial-right-items .info-content {
  margin-top: 30px;
}
.testimonial-wrapper-4 .testimonial-right-items .info-content .name {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.testimonial-wrapper-4 .testimonial-right-items .info-content p {
  text-transform: capitalize;
  font-size: 14px;
  color: #fff;
}
.testimonial-wrapper-4 .testimonial-right-items .number-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 105px;
}
@media (max-width: 470px) {
  .testimonial-wrapper-4 .testimonial-right-items .number-item {
    justify-content: center;
  }
}
.testimonial-wrapper-4 .testimonial-right-items .number-item p {
  font-size: 14px;
  color: #fff;
}
.testimonial-wrapper-4 .testimonial-right-items .number-item span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.testimonial-wrapper-4 .testimonial-right-items .number-item .line {
  height: 1px;
  width: 96px;
  background-color: #fff;
  margin-left: 15px;
}
.testimonial-wrapper-4 .testimonial-right-items .swiper-slide.swiper-slide-active .testi-slider-box {
  opacity: 1;
}

.client-testimonial__main {
  position: relative;
}
.client-testimonial__warpper {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  margin-right: 60px;
}
@media (max-width: 1399px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.testimonial-section-about {
  margin: 0 60px;
  border-radius: 20px;
  background-position: top center !important;
}
@media (max-width: 1899px) {
  .testimonial-section-about {
    margin: 0 35px;
  }
}
@media (max-width: 1600px) {
  .testimonial-section-about {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-about {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-about {
    margin: 0 20px;
  }
}
.testimonial-section-about .section-title {
  margin-bottom: 90px;
}
.testimonial-section-about .section-title h2 {
  font-size: 48px;
}
@media (max-width: 991px) {
  .testimonial-section-about .section-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .testimonial-section-about .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-about .section-title h2 {
    font-size: 36px;
  }
}

.testimonial-box-style-5 {
  margin-top: 30px;
  padding: 30px;
  background-color: #FBF9EF;
  border-radius: 10px;
  position: relative;
  z-index: 99;
}
.testimonial-box-style-5 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-bottom: 40px;
}
.testimonial-box-style-5 h3 {
  font-size: 22px;
  font-weight: 600;
  color: #101010;
  opacity: 0.8;
  line-height: 125%;
  letter-spacing: -1px;
  font-style: italic;
}
@media (max-width: 1600px) {
  .testimonial-box-style-5 h3 {
    font-size: 20px;
    line-height: 135%;
  }
}
@media (max-width: 575px) {
  .testimonial-box-style-5 h3 {
    font-size: 18px;
  }
}
.testimonial-box-style-5 .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-5 .client-info-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-box-style-5 .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 1600px) {
  .testimonial-box-style-5 .client-info-item .client-info h4 {
    font-size: 18px;
  }
}
.testimonial-box-style-5 .client-info-item .client-info span {
  font-weight: 400;
  color: #101010;
  font-size: 16px;
}
.testimonial-box-style-5 .client-info-item .star {
  color: var(--theme);
  font-size: 16px;
}
.testimonial-box-style-5.style-2 {
  background-color: #101010;
  margin-top: 400px;
}
@media (max-width: 1199px) {
  .testimonial-box-style-5.style-2 {
    margin-top: 30px;
  }
}
.testimonial-box-style-5.style-2 h3 {
  color: var(--white);
  opacity: 0.8;
}
.testimonial-box-style-5.style-2 .client-info-item {
  border-top: 1px solid rgba(223, 220, 210, 0.12);
}
.testimonial-box-style-5.style-2 .client-info-item .client-info h4 {
  color: var(--white);
}
.testimonial-box-style-5.style-2 .client-info-item .client-info span {
  color: var(--white);
}
.testimonial-box-style-5.style-2 .client-info-item .star {
  color: var(--theme);
}
.testimonial-box-style-5.style-3 {
  margin-top: 400px;
}
@media (max-width: 1199px) {
  .testimonial-box-style-5.style-3 {
    margin-top: 30px;
  }
}

.pricing-box-items {
  background-color: #FBF9EF;
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items .pricing-header {
  margin-bottom: 30px;
}
.pricing-box-items .pricing-header span {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  color: #101010;
}
.pricing-box-items .pricing-header h3 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 25px;
  color: #101010;
}
@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: #3D4857;
  letter-spacing: initial;
  margin-left: 0;
}
.pricing-box-items .pricing-header p {
  color: #3D4857;
  font-size: 16px;
}
.pricing-box-items .pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 60px;
  padding: 0 30px;
  border-radius: 48px;
  background: #101010;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  margin: auto;
}
.pricing-box-items .pricing-btn .content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.pricing-box-items .pricing-btn .default-content,
.pricing-box-items .pricing-btn .hover-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(0);
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pricing-box-items .pricing-btn .default-content {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}
.pricing-box-items .pricing-btn .hover-content {
  transform: translate(-50%, -50%) translateY(30px);
  opacity: 0;
}
.pricing-box-items .pricing-btn:hover {
  background: var(--theme);
}
.pricing-box-items .pricing-btn:hover .default-content {
  transform: translate(-50%, -50%) translateY(-30px);
  opacity: 0;
}
.pricing-box-items .pricing-btn:hover .hover-content {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
}
.pricing-box-items .pricing-list h4 {
  font-size: 18px;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 1199px) {
  .pricing-box-items .pricing-list h4 {
    letter-spacing: inherit;
  }
}
.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}
.pricing-box-items .pricing-list ul li {
  color: #797979;
  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: #797979;
}
.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items.active {
  background-color: var(--theme);
}
.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(--white);
  color: #101010;
}
.pricing-box-items.active .pricing-btn:hover {
  background-color: #101010;
  color: var(--header);
}
.pricing-box-items.active .pricing-list {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
}
.pricing-box-items.active .pricing-list ul {
  margin-top: 20px;
}
.pricing-box-items.active .pricing-list ul li i {
  color: var(--theme);
}
.pricing-box-items:hover {
  transform: translateY(-10px);
}

.pricing-wrap {
  margin-left: -45px;
}
@media (max-width: 1199px) {
  .pricing-wrap {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .pricing-content-one {
    text-align: center;
    margin-bottom: 30px;
  }
}
.pricing-content-one .pricing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  height: 60px;
  line-height: 60px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 70px;
  padding: 7px;
  border-radius: 70px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .pricing-content-one .pricing-toggle-wrapper {
    margin-top: 20px;
  }
}
.pricing-content-one .pricing-toggle-wrapper .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.4s;
  border-radius: 34px;
}
.pricing-content-one .pricing-toggle-wrapper .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.pricing-content-one .pricing-toggle-wrapper input:checked + .slider {
  background-color: var(--theme);
}
.pricing-content-one .pricing-toggle-wrapper input:checked + .slider:before {
  transform: translateX(26px);
}
.pricing-content-one .pricing-toggle-wrapper .toggle-label {
  padding: 0;
  height: 47px;
  line-height: 47px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border-radius: 66.667px;
  cursor: pointer;
  transition: 0.3s;
}
.pricing-content-one .pricing-toggle-wrapper .toggle-label.active {
  background: var(--theme);
}
.pricing-content-one .price {
  transition: opacity 0.3s ease;
}
.pricing-content-one .price.fade-out {
  opacity: 0;
}
.pricing-content-one .price.fade-in {
  opacity: 1;
}
.pricing-content-one .pricing-shape {
  margin-top: 40px;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .pricing-content-one .pricing-shape {
    display: none;
  }
}

.sec-line-shape img {
  width: 100%;
}

.project-section .section-title {
  margin-left: 180px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .project-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .project-section .section-title {
    margin-bottom: 30px;
  }
}
.project-section .section-title h2 {
  text-transform: uppercase;
  font-size: 200px;
  line-height: 0.9;
}
@media (max-width: 1600px) {
  .project-section .section-title h2 {
    font-size: 170px;
  }
}
@media (max-width: 1399px) {
  .project-section .section-title h2 {
    font-size: 140px;
  }
}
@media (max-width: 1199px) {
  .project-section .section-title h2 {
    line-height: 110%;
    font-size: 125px;
  }
}
@media (max-width: 991px) {
  .project-section .section-title h2 {
    font-size: 111px;
  }
}
@media (max-width: 767px) {
  .project-section .section-title h2 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .project-section .section-title h2 {
    font-size: 80px;
  }
}
@media (max-width: 470px) {
  .project-section .section-title h2 {
    font-size: 60px;
  }
}
.project-section .work-title .last {
  display: inline-block;
  transition: all 0.3s ease;
  margin-left: 290px;
}
@media (max-width: 991px) {
  .project-section .work-title .last {
    margin-left: 150px;
  }
}
@media (max-width: 767px) {
  .project-section .work-title .last {
    margin-left: 0;
  }
}
.project-section .work-title .last .work-title .first,
.project-section .work-title .last .work-title .last {
  display: inline-block;
  will-change: transform;
}
.project-section .container-fluid {
  max-width: 1680px;
}

.project-wrapper {
  margin: 0 30px;
}
@media (max-width: 1399px) {
  .project-wrapper {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper {
    margin: 0 20px;
  }
}
.project-wrapper .text-items {
  margin-left: 255px;
  margin-bottom: 100px;
  margin-top: 30px;
}
@media (max-width: 1600px) {
  .project-wrapper .text-items {
    margin-left: 150px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper .text-items {
    max-width: 400px;
    margin-bottom: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .project-wrapper .text-items {
    text-align: center;
    margin: 30px auto 0;
  }
}
.project-wrapper .text-items p {
  color: #B1B1B1;
}
.project-wrapper .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}
.project-wrapper .text-items .news-btn i {
  margin-left: 7px;
}
.project-wrapper .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.project-wrapper .text-items .news-btn .text-default,
.project-wrapper .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.project-wrapper .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.project-wrapper .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.project-wrapper .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.project-wrapper .text-items .news-btn i {
  transition: transform 0.4s ease;
}

.project-box-items {
  margin-top: 30px;
}
.project-box-items.style-max-width {
  max-width: 578px;
}
@media (max-width: 767px) {
  .project-box-items.style-max-width {
    max-width: initial;
  }
}
.project-box-items.style-left-auto {
  margin-left: auto;
}
@media (max-width: 767px) {
  .project-box-items.style-left-auto {
    margin-left: initial;
  }
}
.project-box-items.style-height-one {
  margin-top: 170px;
}
@media (max-width: 1199px) {
  .project-box-items.style-height-one {
    margin-top: 70px;
  }
}
.project-box-items.style-height-two {
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .project-box-items.style-height-two {
    margin-top: 40px;
  }
}
.project-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .project-box-items .thumb {
    height: 500px;
  }
}
.project-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-box-items .content {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .project-box-items .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-box-items .content .title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
.project-box-items .content .title a:hover {
  color: var(--theme);
}
.project-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-box-items .content ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.project-box-items .content ul li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}

.project-box-items-2 {
  max-width: 795px;
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .project-box-items-2 {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .project-box-items-2.style-auto {
    margin-left: auto;
  }
}
.project-box-items-2 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .project-box-items-2 .thumb {
    height: 500px;
  }
}
.project-box-items-2 .thumb .arrow-icon {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 20px;
  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-items-2 .thumb .arrow-icon:hover {
  background-color: var(--white);
  color: #000;
}
.project-box-items-2 .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(181.38deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 98.83%);
  z-index: 9;
  border-radius: 20px;
}
.project-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 20px;
}
.project-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);
}
.project-box-items-2 .thumb .content-items {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  display: flex;
  border-radius: 10px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .project-box-items-2 .thumb .content-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-box-items-2 .thumb .content-items .content .title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items .content .title {
    font-size: 23px;
  }
}
.project-box-items-2 .thumb .content-items .content .title a {
  color: var(--white);
}
.project-box-items-2 .thumb .content-items .content .title a:hover {
  color: var(--theme);
}
.project-box-items-2 .thumb .content-items .content .tag-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.project-box-items-2 .thumb .content-items .content .tag-items a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  padding: 3px 14px;
}
.project-box-items-2 .thumb .content-items .content .tag-items a:hover {
  background-color: var(--theme);
}
.project-box-items-2 .thumb .content-items .year-text {
  display: inline-block;
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items .year-text {
    font-size: 20px;
  }
}
.project-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);
}
.project-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);
}
.project-box-items-2:hover .thumb .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.project-wrapper-3 .section-title {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .project-wrapper-3 .section-title {
    margin-left: 0;
  }
}
.project-wrapper-3 .section-title p {
  color: #B1B1B1;
  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(--theme);
  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: #101010;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}
@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: #101010;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-wrapper-3 .project-box-items-3 li .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-wrapper-3 .project-box-items-3 li .content .icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: #101010;
  color: var(--white);
  font-size: 18px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li .content .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    margin-top: 12px;
  }
}
.project-wrapper-3 .project-box-items-3 li .content .icon:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-wrapper-3 .project-box-items-3 li:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.project-wrapper-3 .project-box-items-3 li:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-thumb-style-4 {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .project-thumb-style-4 {
    margin-top: 30px;
    height: 500px;
  }
}
.project-thumb-style-4 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}
.project-thumb-style-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-thumb-style-4 .content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 50px;
  position: absolute;
  bottom: -70px;
  left: 30px;
  right: 30px;
  z-index: 8;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .project-thumb-style-4 .content {
    left: 20px;
    right: 20px;
    padding: 18px 20px;
  }
}
.project-thumb-style-4 .content span {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}
.project-thumb-style-4 .content .title {
  text-transform: capitalize;
  max-width: 350px;
  line-height: 125%;
}
.project-thumb-style-4 .content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-thumb-style-4 .content .title a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.project-thumb-style-4 .content .arrow-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-top: 25px;
}
.project-thumb-style-4 .content .arrow-icon:hover {
  background-color: var(--white);
  color: #000;
}
.project-thumb-style-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-thumb-style-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-thumb-style-4:hover .content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media (max-width: 1199px) {
  .project-thumb-style-4:hover .content {
    bottom: 20px;
  }
}

.project-section-4 .theme-btn-main {
  background-color: var(--white);
}
.project-section-4 .theme-btn-main .theme-btn {
  color: #000;
}
.project-section-4 .theme-btn-main .theme-btn-arrow-left, .project-section-4 .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: #fff;
}
.project-section-4 .project-text {
  color: #797979;
  text-transform: capitalize;
  text-align: center;
  margin-top: 90px;
}
.project-section-4 .project-text a {
  color: var(--white);
  text-decoration: underline;
}

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

.award-winning-area .award-winning-box-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items {
    display: block;
  }
}
.award-winning-area .award-winning-box-items .text-items {
  color: var(--theme);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  max-width: 476px;
  border-radius: 100px;
  padding: 30px 26px;
}
@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items .text-items {
    max-width: initial;
    margin-bottom: 30px;
    font-size: 50px;
  }
}
.award-winning-area .award-winning-box-items .text-items.style-2 .marquee {
  gap: 30px;
}
.award-winning-area .award-winning-box-items .text-items.style-2 .marquee-group {
  animation: scrollLTR var(--duration) linear infinite;
}
.award-winning-area .award-winning-box-items .thumb {
  max-width: 919px;
  height: 120px;
}
@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items .thumb {
    margin-bottom: 20px;
  }
}
.award-winning-area .award-winning-box-items .thumb img {
  border-radius: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-box-items-5 {
  max-width: 750px;
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .project-box-items-5 {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .project-box-items-5.style-auto {
    margin-left: auto;
  }
}
.project-box-items-5 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .project-box-items-5 .thumb {
    height: 500px;
  }
}
.project-box-items-5 .thumb .arrow-icon {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  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-items-5 .thumb .arrow-icon:hover {
  background-color: var(--white);
  color: #101010;
}
.project-box-items-5 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}
.project-box-items-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);
}
.project-box-items-5 .content-items {
  z-index: 99;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .project-box-items-5 .content-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-box-items-5 .content-items .content .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1199px) {
  .project-box-items-5 .content-items .content .title {
    font-size: 23px;
  }
}
.project-box-items-5 .content-items .content .title a:hover {
  color: var(--theme);
}
.project-box-items-5 .content-items .content .tag-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.project-box-items-5 .content-items .content .tag-items a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 48px;
  padding: 3px 14px;
}
.project-box-items-5 .content-items .content .tag-items a:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.project-box-items-5 .content-items .year-text {
  display: inline-block;
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 1199px) {
  .project-box-items-5 .content-items .year-text {
    font-size: 20px;
  }
}
.project-box-items-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-items-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-box-items-5:hover .thumb .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.project-details-wrapper .project-details-top-item .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-details-wrapper .project-details-top-item .top-content h2 {
  font-size: 120px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 30px;
  }
}
.project-details-wrapper .project-details-top-item .top-content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 397px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content p {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-top-item .project-details-info-item {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item {
    gap: 30px;
  }
}
.project-details-wrapper .project-details-top-item .project-details-info-item .content {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 180px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item .content {
    padding-right: 0;
    border-right: none;
  }
}
.project-details-wrapper .project-details-top-item .project-details-info-item .content.style-2 {
  border-right: none;
  padding-right: 0;
}
.project-details-wrapper .project-details-top-item .project-details-info-item .content span {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-top-item .project-details-info-item .content p {
  font-size: 18px;
  font-weight: 600;
}
.project-details-wrapper .project-details-top-item .project-details-image {
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 100px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-image {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.project-details-wrapper .project-details-top-item .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.project-details-wrapper .project-details-top-item .left-text h2 {
  font-size: 72px;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 25px;
  }
}
.project-details-wrapper .project-details-top-item .details-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.project-details-wrapper .project-details-top-item .details-content .details-list {
  max-width: 320px;
  width: 100%;
}
.project-details-wrapper .project-details-top-item .details-content .details-list li {
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-content .details-list li {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-top-item .details-content .details-list li i {
  margin-right: 5px;
}
.project-details-wrapper .project-details-top-item .details-image-item {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-image-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.project-details-wrapper .project-details-top-item .details-image-item .thumb {
  overflow: hidden;
  border-radius: 12px;
}
.project-details-wrapper .project-details-top-item .details-image-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.project-details-wrapper .project-details-top-item .details-box {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 12px;
}
.project-details-wrapper .project-details-top-item .details-box .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 120px;
  background-color: var(--theme);
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-box .number {
    margin-bottom: 90px;
  }
}
.project-details-wrapper .project-details-top-item .details-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-top-item .details-box p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .project-details-wrapper .project-details-top-item .details-box p {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-box p {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-top-item .details-bottom-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-bottom-content {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.project-details-wrapper .project-details-top-item .details-bottom-content .right-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 682px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-bottom-content .right-content p {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-top-item .slider-button {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding: 15px 0;
}
.project-details-wrapper .project-details-top-item .slider-button span {
  font-weight: 500;
}
.project-details-wrapper .project-details-top-item .slider-button img {
  filter: brightness(0) invert(1);
}
.project-details-wrapper .project-details-top-item .slider-button .cmn-next,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 8px;
}
.project-details-wrapper .project-details-top-item .slider-button .cmn-next i,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev i {
  transition: all 0.4s;
}
.project-details-wrapper .project-details-top-item .slider-button .cmn-next:hover,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}
.project-details-wrapper .project-details-top-item .slider-button .cmn-next:hover i,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev:hover i {
  color: var(--white);
}
.project-details-wrapper .project-details-top-item .slider-button .previus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.project-section-6 .project-nav .project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .project-section-6 .project-nav .project-top {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.project-section-6 .project-nav .project-top h2 {
  font-size: 170px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
@media (max-width: 1399px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 65px;
  }
}
@media (max-width: 575px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 55px;
  }
}
.project-section-6 .project-nav .nav {
  display: flex;
  margin-bottom: -30px;
  gap: 8px;
}
@media (max-width: 1199px) {
  .project-section-6 .project-nav .nav {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}
.project-section-6 .project-nav .nav li .nav-link {
  transition: all 0.4s ease-in-out;
  padding: 9px 15px;
  border-radius: 100px;
  border: 1px solid rgb(3, 7, 13);
  line-height: 1;
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  letter-spacing: -0.03em;
}
.project-section-6 .project-nav .nav li .nav-link.active {
  position: relative;
  border-radius: 100px;
  background: var(--header);
  color: var(--white);
  border: 1px solid var(--header);
}

.project-details-section .details-thumbs {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
.project-details-section .details-thumbs img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-list-items {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.team-list-items .team-title {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 470px) {
  .team-list-items .team-title {
    display: grid;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
}
.team-list-items .team-title .title {
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  opacity: 0.25;
}
@media (max-width: 1399px) {
  .team-list-items .team-title .title {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .team-list-items .team-title .title {
    font-size: 22px;
  }
}
.team-list-items .team-title .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 51px;
  line-height: 51px;
  border-radius: 100px;
  padding: 0 17px;
  transform: rotate(12deg);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.6);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .team-list-items .team-title .text {
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 0 14px;
  }
}
.team-list-items .team-title .social-icon {
  gap: 5px;
}
.team-list-items .team-title .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}
.team-list-items .team-title .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.team-list-items .team-title.active::after {
  left: 0;
  width: 100%;
}
.team-list-items .team-title.active .title {
  opacity: 1;
}
.team-list-items .team-title.active .title a {
  color: var(--white);
}
.team-list-items .team-title.active .text {
  opacity: 1;
  visibility: visible;
}
.team-list-items .team-title.active .icon {
  background-color: var(--white);
  color: var(--theme);
}

.gt-team-one-image-outer {
  position: relative;
  height: 100%;
  margin-top: 30px;
}
.gt-team-one-image-outer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, #101010 64.42%);
  width: 100%;
  height: 210px;
  z-index: 9;
}
.gt-team-one-image-outer::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgba(255, 71, 28, 0.5);
  filter: blur(117px);
  width: 446px;
  height: 400px;
  z-index: -1;
}

.gt-team-one_images-outer {
  position: relative;
  height: 100%;
}

.gt-team-one-image {
  position: absolute;
  left: 110px;
  top: 0px;
  opacity: 0;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -webkit-transform: rotate(-5deg) translateX(0px);
  transform: rotate(-5deg) translateX(0px);
}
@media (max-width: 991px) {
  .gt-team-one-image {
    display: none;
    position: static;
    max-width: 445px;
  }
}
.gt-team-one-image.active {
  opacity: 1;
  -webkit-transform: rotate(0deg) translateX(0px);
  transform: rotate(0deg) translateX(0px);
}
@media (max-width: 991px) {
  .gt-team-one-image.active {
    display: block;
  }
}
.gt-team-one-image img {
  width: 100%;
  height: 100%;
}

.team-section-3 {
  position: relative;
}
.team-section-3 .circle-line {
  position: absolute;
  bottom: 120px;
  left: 0;
}

@media (max-width: 991px) {
  .team-section-4 .content {
    order: 2;
  }
}
.team-section-4 .content p {
  color: #B1B1B1;
}
.team-section-4 .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}
.team-section-4 .content .news-btn i {
  margin-left: 7px;
}
.team-section-4 .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.team-section-4 .content .news-btn .text-default,
.team-section-4 .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.team-section-4 .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.team-section-4 .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.team-section-4 .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.team-section-4 .content .news-btn i {
  transition: transform 0.4s ease;
}

.team-thumb-4 {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .team-thumb-4 {
    margin-top: 30px;
  }
}
.team-thumb-4 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-thumb-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);
}
.team-thumb-4 .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px 0px 10px 10px;
  z-index: 88;
  padding-top: 25px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-thumb-4 .team-content .title {
  font-size: 24px;
  text-transform: capitalize;
}
.team-thumb-4 .team-content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-thumb-4 .team-content .title a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.team-thumb-4 .team-content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.team-thumb-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);
}
.team-thumb-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);
}
.team-thumb-4:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.team-section-4 {
  position: relative;
}
.team-section-4 .team-left {
  position: absolute;
  top: -100px;
  left: 0;
}
.team-section-4 .team-right {
  position: absolute;
  bottom: -100px;
  right: 0;
}

@media (max-width: 991px) {
  .team-section-5 .section-title-area {
    justify-content: center;
    text-align: center;
  }
}
.team-section-5 .section-title-area .content p {
  max-width: 471px;
}
@media (max-width: 991px) {
  .team-section-5 .section-title-area .content p {
    margin: 0 auto;
  }
}
.team-section-5 .section-title-area .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}
.team-section-5 .section-title-area .content .news-btn i {
  margin-left: 7px;
}
.team-section-5 .section-title-area .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.team-section-5 .section-title-area .content .news-btn .text-default,
.team-section-5 .section-title-area .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.team-section-5 .section-title-area .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.team-section-5 .section-title-area .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.team-section-5 .section-title-area .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.team-section-5 .section-title-area .content .news-btn i {
  transition: transform 0.4s ease;
}

.team-image-items-5 {
  margin-top: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .team-image-items-5 {
    height: 500px;
  }
}
.team-image-items-5 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-image-items-5 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);
}
.team-image-items-5 .team-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .team-image-items-5 .team-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.team-image-items-5 .team-content .content p {
  font-weight: 600;
  margin-bottom: 4px;
  color: rgb(255, 255, 255);
}
.team-image-items-5 .team-content .content .title {
  font-size: 24px;
}
.team-image-items-5 .team-content .content .title a {
  color: var(--white);
}
.team-image-items-5 .team-content .left-items {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1399px) {
  .team-image-items-5 .team-content .left-items {
    gap: 20px;
  }
}
.team-image-items-5 .team-content .left-items .social-icon {
  gap: 10px;
}
.team-image-items-5 .team-content .left-items .social-icon a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
}
.team-image-items-5 .team-content .left-items .social-icon a:hover {
  background-color: var(--theme);
  color: #fff;
}
.team-image-items-5 .team-content .left-items .icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.team-image-items-5 .team-content .left-items .icon:hover {
  background-color: var(--white);
  color: #101010;
}
.team-image-items-5:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.team-image-items-5: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);
}
.team-image-items-5:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-thumb {
  border-radius: 12px;
}
@media (max-width: 1600px) {
  .team-details-wrapper .team-details-thumb {
    height: 860px;
  }
  .team-details-wrapper .team-details-thumb img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-thumb {
    height: 500px;
  }
  .team-details-wrapper .team-details-thumb img {
    object-fit: initial;
  }
}
.team-details-wrapper .team-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.team-details-wrapper .team-details-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .team-details-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 13px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content h2 {
    font-size: 35px;
  }
}
.team-details-wrapper .team-details-content span {
  border: 1px solid rgba(255, 255, 25, 0.12);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content span {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.team-details-wrapper .team-details-content p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content p {
    font-size: 16px;
  }
}
.team-details-wrapper .team-details-content .team-info-content {
  border-top: 1px solid rgba(255, 255, 25, 0.12);
  padding-top: 25px;
  margin-top: 25px;
}
.team-details-wrapper .team-details-content .team-info-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .team-info-content a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .team-info-content a {
    font-size: 16px;
  }
}
.team-details-wrapper .team-details-content .team-info-content .text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  border: none;
  padding: 0;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .team-info-content .text {
    font-size: 16px;
  }
}
.team-details-wrapper .team-details-content .team-info-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.team-details-wrapper .team-details-content .team-info-content .social-icon a {
  color: var(--header);
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--header);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.team-details-wrapper .team-details-content .team-info-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.team-contact-items {
  background: var(--bg);
  padding: 120px 60px;
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .team-contact-items {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .team-contact-items {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .team-contact-items {
    padding: 30px;
  }
}
.team-contact-items .team-left-items h2 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .team-contact-items .team-left-items h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .team-contact-items .team-left-items h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .team-contact-items .team-left-items h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-contact-items .team-left-items h2 {
    font-size: 25px;
  }
}
.team-contact-items .team-left-items p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 460px;
}
@media (max-width: 1399px) {
  .team-contact-items .team-left-items p {
    font-size: 16px;
  }
}
.team-contact-items .team-right-items {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .team-contact-items .team-right-items {
    margin-left: 0;
  }
}
.team-contact-items .team-right-items .contact-form-box {
  margin-top: 30px;
}
.team-contact-items .team-right-items .contact-form-box .form-clt input, .team-contact-items .team-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding: 16px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: capitalize;
  color: var(--header);
  font-size: 16px;
  border-radius: 12px;
}
.team-contact-items .team-right-items .contact-form-box .form-clt input::placeholder, .team-contact-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}
.team-contact-items .team-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select {
  padding: 19px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 12px;
  font-size: 16px;
}
.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}
.team-contact-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-contact-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
  color: #101010;
}
.team-contact-items .team-right-items .contact-form-box .thems-btn2 {
  display: inline-block;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.team-contact-items .team-right-items .contact-form-box .thems-btn2 i {
  margin-left: 5px;
}
.team-contact-items .team-right-items .contact-form-box .thems-btn2:hover {
  background-color: #101010;
}

.team-contact-section .slider-button {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding: 15px 0;
}
.team-contact-section .slider-button span {
  font-weight: 500;
}
.team-contact-section .slider-button .icon-gird {
  filter: brightness(0) invert(1);
}
.team-contact-section .slider-button .cmn-next,
.team-contact-section .slider-button .cmn-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.team-contact-section .slider-button .cmn-next i,
.team-contact-section .slider-button .cmn-prev i {
  color: var(--white);
  transition: all 0.4s;
}
.team-contact-section .slider-button .cmn-next:hover,
.team-contact-section .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}
.team-contact-section .slider-button .cmn-next:hover i,
.team-contact-section .slider-button .cmn-prev:hover i {
  color: var(--white);
}
.team-contact-section .slider-button .previus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.news-section {
  margin: 0 60px;
  border-radius: 16px;
  margin-bottom: 10px;
}
@media (max-width: 1899px) {
  .news-section {
    margin: 0 35px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1600px) {
  .news-section {
    margin: 0 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1399px) {
  .news-section {
    margin: 0 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .news-section {
    margin: 0 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .news-section {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .news-section .text-items {
    order: 2;
  }
}
.news-section .text-items p {
  color: #B1B1B1;
}
.news-section .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}
.news-section .text-items .news-btn i {
  margin-left: 7px;
}
.news-section .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-section .text-items .news-btn .text-default,
.news-section .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-section .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-section .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-section .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-section .text-items .news-btn i {
  transition: transform 0.4s ease;
}
@media (max-width: 991px) {
  .news-section .section-title {
    order: 1;
  }
}
.news-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
}
.news-section.news-section-4 .section-title-area {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.news-box-items {
  margin-top: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
  background-color: #272727;
}
.news-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  height: 170px;
}
.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 6px;
}
.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 {
  margin-left: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .news-box-items .content {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .news-box-items .content {
    margin-top: 30px;
  }
}
.news-box-items .content .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .news-box-items .content .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .news-box-items .content .title {
    font-size: 21px;
  }
}
.news-box-items .content .title a:hover {
  color: var(--theme);
}
.news-box-items .content ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .news-box-items .content ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-box-items .content ul li .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-box-items .content ul li .client-info .client-content .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.news-box-items .content ul li .client-info .client-content p {
  font-size: 14px;
  font-weight: 500;
}
.news-box-items .content ul li .news-line {
  height: 60px;
  width: 1px;
  background-color: rgba(136, 136, 136, 0.2);
}
@media (max-width: 1199px) {
  .news-box-items .content ul li .news-line {
    display: none;
  }
}
.news-box-items .content ul li span {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  line-height: 1;
  color: var(--white);
  margin-right: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.news-box-items .content ul li span.color-2 {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}
@media (max-width: 1199px) {
  .news-box-items .content ul li:nth-child(2) {
    display: none;
  }
}
.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);
}

@media (max-width: 991px) {
  .news-section-2 .section-title-area {
    justify-content: center;
    text-align: center;
  }
}
.news-section-2 .section-title-area .content p {
  max-width: 471px;
}
@media (max-width: 991px) {
  .news-section-2 .section-title-area .content p {
    margin: 0 auto;
  }
}
.news-section-2 .section-title-area .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}
.news-section-2 .section-title-area .content .news-btn i {
  margin-left: 7px;
}
.news-section-2 .section-title-area .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-section-2 .section-title-area .content .news-btn .text-default,
.news-section-2 .section-title-area .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-section-2 .section-title-area .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-section-2 .section-title-area .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-section-2 .section-title-area .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-section-2 .section-title-area .content .news-btn i {
  transition: transform 0.4s ease;
}

.news-wrapper-2 {
  margin-left: -10%;
  margin-right: -10%;
}
@media (max-width: 1199px) {
  .news-wrapper-2 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.news-box-items-2 {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
}
.news-box-items-2 .thumb {
  overflow: hidden;
  position: relative;
}
.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}
.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 {
  margin-top: 25px;
  padding-bottom: 10px;
}
.news-box-items-2 .content ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-box-items-2 .content ul li a {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--theme);
  color: var(--white);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.news-box-items-2 .content ul li p {
  color: rgb(121, 121, 121);
  font-size: 16px;
}
.news-box-items-2 .content ul li p span {
  color: rgba(121, 121, 121, 0.7);
}
.news-box-items-2 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .news-box-items-2 .content .title {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .news-box-items-2 .content .title {
    font-size: 18px;
  }
}
.news-box-items-2 .content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  transition: all 0.4s ease-in-out;
}
.news-box-items-2 .content .title a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items-2 .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}
.news-box-items-2 .content .news-btn i {
  margin-left: 7px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center;
}
.news-box-items-2 .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 30px;
  overflow: hidden;
}
.news-box-items-2 .content .news-btn .text-default,
.news-box-items-2 .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-box-items-2 .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--white);
}
.news-box-items-2 .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-box-items-2 .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-box-items-2 .content .news-btn i {
  transition: transform 0.4s ease;
}
.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-section-3 .section-title-area .text-items p {
  color: #B1B1B1;
}
.news-section-3 .section-title-area .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}
.news-section-3 .section-title-area .text-items .news-btn i {
  margin-left: 7px;
}
.news-section-3 .section-title-area .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-section-3 .section-title-area .text-items .news-btn .text-default,
.news-section-3 .section-title-area .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-section-3 .section-title-area .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-section-3 .section-title-area .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-section-3 .section-title-area .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-section-3 .section-title-area .text-items .news-btn i {
  transition: transform 0.4s ease;
}

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

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

/* ==============================
   Border Line Wrapper
================================= */
.new-border-line {
  width: 100%;
}

/* ==============================
   Common Border Style
================================= */
.new-border-line span {
  display: block;
  width: 100%;
  height: 1px;
}

/* ==============================
   Spacing Between Borders
================================= */
.new-border-line span:not(:last-child) {
  margin-bottom: 5px; /* gap between lines */
}

/* ==============================
   Optional: Different Colors
================================= */
.border-style-1 {
  background-color: rgba(255, 255, 255, 0.15);
}

.border-style-2 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-style-3 {
  background-color: rgba(255, 255, 255, 0.15);
}

.news-box-image-3 {
  margin-top: 30px;
}
.news-box-image-3 .thumb-1 {
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .news-box-image-3 .thumb-1 {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .news-box-image-3 .thumb-1 {
    height: initial;
    height: 500px;
  }
}
.news-box-image-3 .thumb-1 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.news-content-3 {
  margin-left: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .news-content-3 {
    margin-left: 0;
  }
}
.news-content-3 .content {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0;
}
.news-content-3 .content .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .news-content-3 .content .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .news-content-3 .content .title {
    font-size: 21px;
  }
}
.news-content-3 .content .title a:hover {
  color: var(--theme);
}
.news-content-3 .content ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .news-content-3 .content ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-content-3 .content ul li .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-content-3 .content ul li .client-info .client-content .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.news-content-3 .content ul li .client-info .client-content p {
  font-size: 14px;
  font-weight: 500;
}
.news-content-3 .content ul li .news-line {
  height: 60px;
  width: 1px;
  background-color: rgba(136, 136, 136, 0.2);
}
@media (max-width: 1199px) {
  .news-content-3 .content ul li .news-line {
    display: none;
  }
}
.news-content-3 .content ul li span {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  line-height: 1;
  color: var(--white);
  margin-right: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.news-content-3 .content ul li span.color-2 {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}
@media (max-width: 1199px) {
  .news-content-3 .content ul li:nth-child(2) {
    display: none;
  }
}

.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;
  position: relative;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  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 .news-title {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 138%;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 25px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title 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 .news-title 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-main {
  margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
  transform: scale(1.2);
}

.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;
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-content p {
    font-size: 14px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 25px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--theme);
  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;
  color: #fff;
}
.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 rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  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;
  font-size: 16px;
}
@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(--header);
}
.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: var(--bg);
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 28px;
  }
}
.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: 700;
}
@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 rgba(255, 255, 255, 0.1);
}
.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--header);
  font-size: 16px;
}
.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--bg);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 28px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}
@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: transparent;
  border: none;
  padding: 16px 20px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--bg);
  padding: 30px;
  border-radius: 14px;
}
.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: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  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(--header);
  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);
  color: var(--white);
}
.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 .gt-widget-title span {
  font-weight: 600;
  font-size: 22px;
  font-family: "Urbanist", sans-serif;
}
.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;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 25px;
  font-family: "Urbanist", 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(--header);
}
.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(--header);
}
.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 {
  position: relative;
  overflow: hidden;
  max-width: 110px;
  width: 100%;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  border-radius: 8px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  width: 100%;
  height: 100%;
}
.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 .title {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Urbanist", sans-serif;
  display: inline-block;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title 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-size: 14px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb img {
  transform: scale(1.2);
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Urbanist", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
  font-size: 16px;
}
.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(--header);
}

.brand-section {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .brand-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.brand-section .title {
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 157%;
  margin-bottom: 55px;
}
@media (max-width: 1199px) {
  .brand-section .title {
    font-size: 35px;
    line-height: 142%;
  }
}
@media (max-width: 991px) {
  .brand-section .title {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  .brand-section .title {
    font-size: 29px;
  }
}
@media (max-width: 575px) {
  .brand-section .title {
    font-size: 26px;
  }
}
.brand-section .title span {
  display: inline-block;
  height: 45px;
  line-height: 44px;
  border-radius: 10px;
  background-color: var(--theme);
  padding: 0 12px;
}
@media (max-width: 1199px) {
  .brand-section .title span {
    height: initial;
    line-height: initial;
    padding: 0;
    border-radius: 0px;
    background-color: transparent;
  }
}
.brand-section .title span .font-style {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-box-1 {
  height: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 9;
}
.brand-box-1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 10px;
}
.brand-box-1::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 10px;
}
.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 {
  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:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.brand-box-1:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.faq-image-1 {
  border-radius: 16px;
  position: relative;
  height: 100%;
}
@media (max-width: 991px) {
  .faq-image-1 {
    height: initial;
  }
}
.faq-image-1 .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}
@media (max-width: 575px) {
  .faq-image-1 .incrase-box {
    display: none;
  }
}
.faq-image-1 .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
.faq-image-1 .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}
.faq-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.faq-content-1 {
  background-color: #FBF9EF;
  border-radius: 16px;
  padding: 120px 48px;
  padding-right: 90px;
}
@media (max-width: 1199px) {
  .faq-content-1 {
    padding: 100px 40px;
  }
}
@media (max-width: 991px) {
  .faq-content-1 {
    padding: 80px 30px;
  }
}
.faq-content-1 .section-title .sub-title {
  color: #101010;
}
.faq-content-1 .section-title h2 {
  color: #101010;
}
.faq-content-1 .accordion-box {
  position: relative;
  margin-top: 30px;
  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(16, 16, 16, 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: #101010;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
}
@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: "Urbanist", 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: #101010;
  -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: 500;
  color: #101010;
  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 .acc-btn.active .number {
  color: var(--theme);
}
.faq-content-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-wrapper-2 .faq-content .text {
  max-width: 420px;
  margin-top: 20px;
}
.faq-wrapper-2 .faq-content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 15px;
}
.faq-wrapper-2 .faq-content .news-btn i {
  margin-left: 7px;
}
.faq-wrapper-2 .faq-content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.faq-wrapper-2 .faq-content .news-btn .text-default,
.faq-wrapper-2 .faq-content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.faq-wrapper-2 .faq-content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.faq-wrapper-2 .faq-content .news-btn:hover .text-default {
  transform: translateY(-100%);
}
.faq-wrapper-2 .faq-content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}
.faq-wrapper-2 .faq-content .news-btn i {
  transition: transform 0.4s ease;
}
.faq-wrapper-2 .accordion-box {
  position: relative;
  max-width: 870px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .faq-wrapper-2 .accordion-box {
    margin-left: initial;
    max-width: initial;
  }
}
.faq-wrapper-2 .accordion-box .block {
  position: relative;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 17px;
  line-height: 1;
  border-radius: 8px;
}
.faq-wrapper-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: #797979;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 28.5px 25px;
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    padding-right: 60px;
    line-height: 1.4;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    padding: 25px 20px;
    padding-right: 80px;
  }
}
@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    font-size: 18px;
  }
}
.faq-wrapper-2 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 30px;
  top: 22px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  background-color: rgba(255, 71, 28, 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--theme);
  text-align: center;
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn .icon {
    right: 18px;
  }
}
.faq-wrapper-2 .accordion-box .block .acc-btn .icon::before {
  color: var(--theme);
}
.faq-wrapper-2 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 30px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.faq-wrapper-2 .accordion-box .block .acc-content .content {
  position: relative;
}
.faq-wrapper-2 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  max-width: 810px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}
@media (max-width: 1199px) {
  .faq-wrapper-2 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-content .content .text {
    font-size: 16px;
  }
}
.faq-wrapper-2 .accordion-box .block .acc-content.current {
  display: block;
}
.faq-wrapper-2 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
}
.faq-wrapper-2 .accordion-box .block:last-child {
  margin-bottom: 0;
}
.faq-wrapper-2 .active-block .acc-btn {
  color: var(--white) !important;
}
.faq-wrapper-2 .active-block .icon {
  background-color: var(--theme) !important;
  color: var(--white) !important;
}
.faq-wrapper-2 .active-block .icon::before {
  color: var(--white) !important;
}

.faq-wrapper-5 .section-title-area {
  justify-content: start;
  gap: 420px;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .faq-wrapper-5 .section-title-area {
    gap: 30px;
  }
}
.faq-wrapper-5 .faq-image {
  margin-top: 30px;
  height: 750px;
}
@media (max-width: 1600px) {
  .faq-wrapper-5 .faq-image {
    height: 741px;
  }
}
@media (max-width: 991px) {
  .faq-wrapper-5 .faq-image {
    height: 560px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper-5 .faq-image {
    height: 530px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper-5 .faq-image {
    height: 480px;
  }
}
.faq-wrapper-5 .faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1199px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box {
    margin-left: 0;
  }
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1;
  border-radius: 0;
  padding: 29px 0;
}
@media (max-width: 991px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block {
    padding: 25px 0;
  }
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 1399px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
    padding-right: 40px;
    line-height: 1.4;
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
    font-size: 18px;
  }
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: -7px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 30px;
}
@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content {
  position: relative;
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  max-width: 877px;
}
@media (max-width: 1600px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content.current {
  display: block;
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
  color: var(--white);
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn.active {
  color: var(--header);
}
.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}
.lets-talk-section {
  padding-bottom: 80px;
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .lets-talk-section {
    padding-top: 80px;
  }
}
.lets-talk-section .title {
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  font-size: 200px;
  letter-spacing: -6.1112px;
  line-height: 1;
}
.lets-talk-section .title span {
  font-weight: 400;
  font-style: italic;
  font-family: "Instrument Serif", serif;
}
@media (max-width: 1899px) {
  .lets-talk-section .title {
    font-size: 170px;
  }
}
@media (max-width: 1399px) {
  .lets-talk-section .title {
    font-size: 130px;
  }
}
@media (max-width: 1199px) {
  .lets-talk-section .title {
    letter-spacing: initial;
  }
}
@media (max-width: 991px) {
  .lets-talk-section .title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .lets-talk-section .title {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .lets-talk-section .title {
    font-size: 60px;
  }
}
.lets-talk-section .lets-talk-content .theme-btn-main {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-top: 30px;
}
.lets-talk-section .lets-talk-content .theme-btn-main .theme-btn-arrow-left, .lets-talk-section .lets-talk-content .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}
.lets-talk-section .lets-talk-content .theme-btn-main .btn-title {
  color: var(--white);
}

.image-distortion {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-wrapper-3 {
  text-align: center;
}
.cta-wrapper-3 h2 {
  font-size: 150px;
  font-weight: 700;
  letter-spacing: -3.41px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .cta-wrapper-3 h2 {
    font-size: 115px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 h2 {
    letter-spacing: initial;
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 h2 {
    font-size: 77px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-3 h2 {
    font-size: 60px;
  }
}
.cta-wrapper-3 h2 .img-1 {
  position: relative;
  top: -15px;
  left: 15px;
}
@media (max-width: 991px) {
  .cta-wrapper-3 h2 .img-1 {
    display: none;
  }
}
.cta-wrapper-3 h2 .img-1 img {
  border-radius: 10px;
}
.cta-wrapper-3 .theme-btn-main {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-top: 30px;
}
.cta-wrapper-3 .theme-btn-main .theme-btn-arrow-left, .cta-wrapper-3 .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}
.cta-wrapper-3 .theme-btn-main .btn-title {
  color: var(--white);
}

.lets-talk-section-2 {
  margin: 0 60px;
  border-radius: 20px;
  padding: 100px 0;
}
@media (max-width: 1899px) {
  .lets-talk-section-2 {
    margin: 0 35px;
  }
}
@media (max-width: 1600px) {
  .lets-talk-section-2 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .lets-talk-section-2 {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .lets-talk-section-2 {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .lets-talk-section-2 .lets-talk-content-2 {
    text-align: center;
  }
}
.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-top: 50px;
}
.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .theme-btn-arrow-left, .lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}
.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .btn-title {
  color: var(--white);
}

.lets-talk-section-2 {
  position: relative;
  margin-bottom: 120px;
}
.lets-talk-section-2 .like-image {
  position: absolute;
  bottom: 0;
  right: 160px;
}
@media (max-width: 1399px) {
  .lets-talk-section-2 .like-image {
    right: 30px;
  }
}
@media (max-width: 991px) {
  .lets-talk-section-2 .like-image {
    display: none;
  }
}

.lets-deal-wrapper {
  text-align: center;
}
.lets-deal-wrapper .theme-btn-main {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-top: 30px;
}
.lets-deal-wrapper .theme-btn-main .theme-btn-arrow-left, .lets-deal-wrapper .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}
.lets-deal-wrapper .theme-btn-main .btn-title {
  color: var(--white);
}

.contact-wrapper .contact-image {
  border-radius: 20px;
  margin-right: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .contact-wrapper .contact-image {
    height: 500px;
  }
}
.contact-wrapper .contact-image .contact-us {
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 336px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image .contact-us {
    left: 25px;
    bottom: 25px;
    right: 25px;
  }
}
.contact-wrapper .contact-image .contact-us h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0F172A;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image .contact-us h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper .contact-image .contact-us h2 {
    font-size: 28px;
  }
}
.contact-wrapper .contact-image .contact-us p {
  font-size: 16px;
  color: #797979;
  margin-top: 15px;
}
.contact-wrapper .contact-image .contact-us .number-center {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  height: 54px;
  line-height: 54px;
  border: 1px solid var(--theme);
  border-radius: 70px;
  padding: 0 25px;
  margin-top: 28px;
}
.contact-wrapper .contact-image .contact-us .number-center i {
  margin-right: 4px;
}
.contact-wrapper .contact-image .contact-us .number-center:hover {
  background-color: var(--theme);
  color: var(--white);
}
.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.contact-wrapper .contact-box-items {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-box-items {
    margin-left: 0;
  }
}
.contact-wrapper .contact-box-items .text {
  margin-top: 25px;
  max-width: 420px;
}
.contact-wrapper .contact-form-box {
  margin-top: 35px;
}
.contact-wrapper .contact-form-box .form-clt input, .contact-wrapper .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: #797979;
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}
.contact-wrapper .contact-form-box .form-clt input::placeholder, .contact-wrapper .contact-form-box .form-clt textarea::placeholder {
  color: #797979;
}
.contact-wrapper .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-wrapper .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: #797979;
  padding-bottom: 20px;
  border-radius: 0;
}
.contact-wrapper .contact-form-box .form-clt .form .single-select .current {
  color: #797979;
}
.contact-wrapper .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-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.contact-wrapper .contact-form-box .theme-btn-main {
  margin-top: 20px;
}

.contact-us-card-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 30px;
}
.contact-us-card-item .contact-image {
  border-radius: 12px;
}
.contact-us-card-item .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.contact-us-card-item .contact-content {
  margin-top: 30px;
}
.contact-us-card-item .contact-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .contact-us-card-item .contact-content h2 {
    font-size: 28px;
  }
}
.contact-us-card-item .contact-content span {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
}
.contact-us-card-item .contact-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .contact-us-card-item .contact-content h3 {
    font-size: 22px;
  }
}
.contact-us-card-item .contact-content h3 a {
  color: var(--header);
}
.contact-us-card-item .contact-content .thems-btn {
  margin-top: 15px;
  background-color: var(--theme);
  width: 100%;
  text-align: center;
  padding: 18px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  width: 100%;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.contact-us-card-item .contact-content .thems-btn:hover {
  background-color: #fff;
  color: #0F172A;
}

.contact-map-wrapper .contact-map iframe {
  width: 100%;
  height: 686px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .contact-map-wrapper .contact-map iframe {
    height: 580px;
  }
}
@media (max-width: 991px) {
  .contact-map-wrapper .contact-map iframe {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .contact-map-wrapper .contact-map iframe {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .contact-map-wrapper .contact-map iframe {
    height: 350px;
  }
}
.contact-map-wrapper .contact-from-box {
  background-color: var(--bg);
  padding: 70px 60px;
  margin-left: 30px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .contact-map-wrapper .contact-from-box {
    margin-left: 0;
    padding: 30px;
  }
}
.contact-map-wrapper .contact-from-box h2 {
  font-size: 48px;
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .contact-map-wrapper .contact-from-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.contact-map-wrapper .contact-from-box .form-clt input, .contact-map-wrapper .contact-from-box .form-clt textarea {
  outline: none;
  width: 100%;
  padding: 16px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* text-transform: capitalize; */
  color: var(--header);
  font-size: 16px;
  border-radius: 8px;
  
}
.contact-map-wrapper .contact-from-box .form-clt input::placeholder, .contact-map-wrapper .contact-from-box .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-map-wrapper .contact-from-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-map-wrapper .contact-from-box .form-clt .form .single-select {
  padding: 19px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  font-size: 16px;
  border-radius: 8px;
}
.contact-map-wrapper .contact-from-box .form-clt .form .single-select .current {
  color: var(--header);
}
.contact-map-wrapper .contact-from-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-map-wrapper .contact-from-box .form-clt .form .single-select .list {
  width: 100%;
  color: #0F172A;
}
.contact-map-wrapper .contact-from-box .thems-btn {
  background-color: var(--theme);
  width: 100%;
  text-align: center;
  padding: 18px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  width: 100%;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.contact-map-wrapper .contact-from-box .thems-btn:hover {
  background-color: #fff;
  color: #0F172A;
}

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #FBF3E6;
  border-radius: 5px;
}

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

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

.p-relative {
  position: relative;
}

/* ================================
   Split Text Styles
================================ */
.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

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

.body-bg-2 {
  background-color: #FFFCF8;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.array-buttons .array-prev, .array-buttons .array-next {
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover, .array-buttons .array-next:hover {
  color: var(--theme);
}

.page-nav-wrap {
  margin-top: 50px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--header);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--bg);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Urbanist", sans-serif;
}
@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(--header);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--header);
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}

.swiper-dot {
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background-color: #03070D;
  opacity: 1;
  border-radius: 8px;
}
.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;
}

.jump-anim,
.studio-text {
  display: inline-block;
}

.p-relative {
  position: relative;
}

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

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}
.tp-clip-anim .tp-anim-img {
  /* opacity: 0; */
  width: 100%;
  height: 100%;
}
.tp-clip-anim .mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}
.tp-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.container-1680 {
  max-width: 1680px;
}

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


.breadcrumb-wrapper {
    position: relative;
    padding: 120px 0;
}

.breadcrumb-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.page-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-list li a:hover {
    opacity: 0.7;
}


 @media (min-width:1400px){
  .by{
    height: 580px !important;
  }
 }

 .r{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
 }

 .v{
  height: 100%;
 }

 @media (min-width:1200px) and (max-width:1950px){
  .contact-map-wrapper .contact-from-box{
    width: 700px  !important;
    margin: auto;
  }

  .hj{
    padding-left: 65px;
  }
 }

 @media (min-width:1600px) and (max-width:1950px){
 .gv{
  padding-left: 40px;
 }

 .vg{
  padding-right: 30px
 }
 }


 .iti{
  width: 100%;
 }

 .nc{
  font-size: 32px;
 }


.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-center {
    position: relative;
    z-index: 2;
}


.ld{
  padding-top: 40px !important;
  padding-bottom: 20px !important;
}

.lx{

  margin-top: 20px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.ll{
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}


.df{
  width: 200px;
}

.iti__search-input{
  color: #000 !important;
}