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

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

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

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

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

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

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

h1 {
  font-size: 270px;
  font-weight: 600;
  line-height: 111%;
  text-transform: capitalize;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 265px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 230px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 195px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 145px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 70px;
  }
}

h2 {
  font-size: 86px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 30px;
  }
}

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

h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
}
@media (min-width: 1400px) {
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

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

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

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

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

span {
  margin: 0px;
}

.theme-btn {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  background: var(--theme);
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
  transition: color 0.4s ease;
}
.theme-btn i {
  margin-left: 8px;
}
.theme-btn::before, .theme-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0px;
  background: var(--header);
  z-index: -1;
  transition: transform 0.45s ease;
}
.theme-btn::before {
  transform: translateX(-100%);
}
.theme-btn::after {
  transform: translateX(100%);
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before {
  transform: translateX(-49%);
}
.theme-btn:hover::after {
  transform: translateX(49%);
}

.link-btn {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Inter", sans-serif;
  text-decoration: underline;
}
.link-btn i {
  margin-left: 10px;
}
.link-btn:hover {
  color: var(--theme);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preloader--one {
  z-index: 9999999;
  flex-flow: column;
  flex: none;
  place-content: flex-end center;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: fixed;
  top: -1px;
  bottom: -1px;
  left: 0%;
  overflow: visible;
}
.preloader--one .top-block--wrap {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 1px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}
.preloader--one .top-block--wrap .block {
  transform-origin: top;
}
.preloader--one .block {
  flex: none;
  width: 20%;
  height: 100%;
  transform-origin: top;
}
.preloader--one .bottom-block--wrap {
  flex-flow: row;
  flex: 1 0 0;
  place-content: flex-end center;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  height: 1px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}
.preloader--one .bottom-block--wrap .block {
  transform-origin: bottom;
}

.preloader--two {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}
.preloader--two #black {
  width: 100%;
  height: 100vh;
  background-color: #161616;
}
.preloader--two .reveal {
  overflow: hidden;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  font-weight: 400;
  line-height: 1.1;
  font-family: var(--body-font) !important;
}
@media (max-width: 575px) {
  .preloader--two .reveal {
    font-size: 100px;
  }
}
.preloader--two .top {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translate(-50%);
}
.preloader--two .child {
  display: inline-block;
}

.preloader--four {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--theme);
  width: 100%;
  height: 100%;
  z-index: 9999999;
}
.preloader--four .loading--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  z-index: 100;
  color: var(--white);
  font-family: "Poppins", sans-serif !important;
}
@media (max-width: 575px) {
  .preloader--four .loading--text {
    font-size: 80px;
  }
}
.preloader--four .overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.preloader--four .block {
  position: fixed;
  width: 5.1%;
  height: 100%;
  background: var(--header);
  transform-origin: left;
}
.preloader--four .block-1 {
  left: 0;
}
.preloader--four .block-2 {
  left: 5%;
}
.preloader--four .block-3 {
  left: 10%;
}
.preloader--four .block-4 {
  left: 15%;
}
.preloader--four .block-5 {
  left: 20%;
}
.preloader--four .block-6 {
  left: 25%;
}
.preloader--four .block-7 {
  left: 30%;
}
.preloader--four .block-8 {
  left: 35%;
}
.preloader--four .block-9 {
  left: 40%;
}
.preloader--four .block-10 {
  left: 45%;
}
.preloader--four .block-11 {
  left: 50%;
}
.preloader--four .block-12 {
  left: 55%;
}
.preloader--four .block-13 {
  left: 60%;
}
.preloader--four .block-14 {
  left: 65%;
}
.preloader--four .block-15 {
  left: 70%;
}
.preloader--four .block-16 {
  left: 75%;
}
.preloader--four .block-17 {
  left: 80%;
}
.preloader--four .block-18 {
  left: 85%;
}
.preloader--four .block-19 {
  left: 90%;
}
.preloader--four .block-20 {
  left: 95%;
}

.preloader--three {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  overflow: hidden;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader--three .loading--text {
  font-size: 150px;
  font-weight: 400;
  line-height: 1.1;
  font-family: var(--body-font) !important;
  color: var(--white);
}
.preloader--three .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}

.preloader--five {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999999;
}
.preloader--five .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.preloader--five .progress-container {
  width: 300px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.preloader--five .progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: rgb(255, 255, 255);
}
.preloader--five .percentage {
  position: fixed;
  bottom: 32px;
  right: 32px;
  font-family: var(--body-font);
  font-size: 25rem;
  line-height: 0.8;
  color: rgb(255, 255, 255);
  opacity: 0.2;
}
.preloader--five .text-container {
  height: 100px;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
}
.preloader--five .loading-text {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--white);
  font-size: 50px;
  position: absolute;
  width: 100%;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes byeBye {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

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

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
}
.header-1.header-2 {
  background-color: var(--white);
  box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.03);
}

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

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

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

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

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

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

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 170px 0 100px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 150px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--header);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--header);
}
.breadcrumb-wrapper .page-heading p {
  font-size: 48px;
  font-weight: 500;
  max-width: 832px;
  margin-top: 15px;
  line-height: 54px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading p {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading p {
    font-size: 25px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading p {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .nav {
  display: flex;
  margin-top: 30px;
  gap: 40px;
  border-bottom: 2px solid rgb(0, 0, 0);
  padding-bottom: 10px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.breadcrumb-wrapper .page-heading .nav li .nav-link {
  transition: all 0.4s ease-in-out;
  background: transparent;
  line-height: 1;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 48px;
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .nav li .nav-link {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .nav li .nav-link {
    font-size: 35px;
  }
}
.breadcrumb-wrapper .page-heading .nav li .nav-link.active {
  color: rgba(0, 0, 0, 0.3);
}
.breadcrumb-wrapper .page-heading.style-2 p {
  font-size: 20px;
  font-weight: 400;
  max-width: 688px;
  line-height: 28px;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading.style-2 p {
    font-size: 16px;
  }
}

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

.breadcrumb-wrapper-one .page-heading {
  padding: 180px 0 100px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-one .page-heading {
    padding: 150px 0 100px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-one .page-heading {
    padding: 120px 0 80px;
  }
}
.breadcrumb-wrapper-one .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper-one .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper-one .page-heading .breadcrumb-items li {
  color: var(--header);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper-one .page-heading .breadcrumb-items li a {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper-one .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper-one .page-heading .breadcrumb-items li i {
  color: var(--header);
}
.breadcrumb-wrapper-one .page-heading p {
  font-size: 48px;
  font-weight: 500;
  max-width: 832px;
  margin-top: 15px;
  line-height: 54px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-one .page-heading p {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-one .page-heading p {
    font-size: 25px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper-one .page-heading p {
    font-size: 16px;
  }
}

.footer-wrapper {
  padding: 70px 0 100px;
}
@media (max-width: 991px) {
  .footer-wrapper {
    padding: 80px 0 80px;
  }
}
.footer-wrapper h2 {
  font-size: 123.95px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--white);
  margin-bottom: 80px;
  padding-bottom: 75px;
  border-bottom: 1px solid rgb(77, 77, 77);
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1399px) {
  .footer-wrapper h2 {
    font-size: 70px;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .footer-wrapper h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .footer-wrapper h2 {
    font-size: 34px;
  }
}
.footer-wrapper h2 span {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-wrapper .single-footer-widget .footer-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 402px;
  margin-top: 35px;
}
.footer-wrapper .single-footer-widget .footer-content .search-widget {
  margin-top: 160px;
}
@media (max-width: 1399px) {
  .footer-wrapper .single-footer-widget .footer-content .search-widget {
    margin-top: 130px;
  }
}
@media (max-width: 991px) {
  .footer-wrapper .single-footer-widget .footer-content .search-widget {
    margin-top: 75px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper .single-footer-widget .footer-content .search-widget {
    margin-top: 50px;
  }
}
.footer-wrapper .single-footer-widget .footer-content .search-widget form {
  width: 100%;
  position: relative;
  max-width: 407px;
}
.footer-wrapper .single-footer-widget .footer-content .search-widget form input {
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 20px;
  width: 100%;
  border: none;
  color: #E6E6E6;
  border-radius: 6px;
  border-bottom: 1px solid rgb(77, 77, 77);
  max-width: 407px;
  border-radius: 0;
  padding-right: 40px;
}
.footer-wrapper .single-footer-widget .footer-content .search-widget form input::placeholder {
  color: #E6E6E6;
}
.footer-wrapper .single-footer-widget .footer-content .search-widget form button {
  position: absolute;
  right: 8px;
  top: 7px;
  color: var(--white);
}
.footer-wrapper .single-footer-widget .list-area li {
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid rgb(77, 77, 77);
  margin-bottom: 24px;
  padding-bottom: 12px;
}
.footer-wrapper .single-footer-widget .list-area li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme);
  margin-left: 4px;
}
.footer-wrapper .single-footer-widget .footer-contact h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}
.footer-wrapper .single-footer-widget .footer-contact span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  margin-bottom: 20px;
}
.footer-wrapper .single-footer-widget .footer-contact span a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-wrapper .single-footer-widget .footer-contact span.style-2 {
  text-decoration: underline;
}
.footer-wrapper .single-footer-widget .footer-contact .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .footer-wrapper .single-footer-widget .footer-contact .social-icon {
    margin-top: 30px;
  }
}
.footer-wrapper .single-footer-widget .footer-contact .social-icon a {
  color: var(--white);
}

.footer-bottom {
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .footer-bottom {
    margin-top: 0px;
  }
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
}
.footer-bottom .footer-bottom-wrapper .bottom-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-bottom .footer-bottom-wrapper .bottom-list li {
  font-size: 14px;
  font-weight: 400;
}
.footer-bottom .footer-bottom-wrapper .bottom-list li a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom .footer-bottom-wrapper .bottom-list li a:hover {
  color: var(--theme);
}

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

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .sub-title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(227, 87, 45);
  background: linear-gradient(90deg, rgba(227, 87, 45, 0.1) 0%, rgba(227, 87, 45, 0) 100%);
  padding: 8px 9px;
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.section-title .sub-title.bg-2 {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .section-title h2 br {
    display: none;
  }
}

.section-title-2 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }
  .section-title-2 br {
    display: none;
  }
}
.section-title-2 h2 {
  font-size: 140px;
  font-weight: 500;
}
@media (max-width: 1399px) {
  .section-title-2 h2 {
    font-size: 100px;
  }
  .section-title-2 h2 br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .section-title-2 h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .section-title-2 h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .section-title-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .section-title-2 h2 {
    font-size: 35px;
  }
}

.section-title-3 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-3 {
    margin-bottom: 0;
  }
  .section-title-3 br {
    display: none;
  }
}
.section-title-3 h2 {
  font-size: 90px;
  font-weight: 500;
}
@media (max-width: 1399px) {
  .section-title-3 h2 {
    font-size: 80px;
  }
  .section-title-3 h2 br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .section-title-3 h2 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .section-title-3 h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .section-title-3 h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title-3 h2 {
    font-size: 40px;
  }
}

.section-title-4 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-4 {
    margin-bottom: 0;
  }
  .section-title-4 br {
    display: none;
  }
}
.section-title-4 h2 {
  font-size: 76px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .section-title-4 h2 {
    font-size: 60px;
  }
  .section-title-4 h2 br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .section-title-4 h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .section-title-4 h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title-4 h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .section-title-4 h2 {
    font-size: 30px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  align-items: end;
  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 .content p {
  font-family: "Geist", sans-serif;
  max-width: 470px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .section-title-area .content p {
    font-size: 16px;
  }
}
.section-title-area .content .link-btns {
  color: var(--theme);
  font-size: 24px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin-top: 24px;
  display: inline-block;
  position: relative;
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.section-title-area .content .link-btns i {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.section-title-area .content .link-btns i.icon-default {
  opacity: 1;
  transform: translateY(0);
}
.section-title-area .content .link-btns i.icon-hover {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
}
.section-title-area .content .link-btns:hover {
  background-size: 100% 100%;
}
.section-title-area .content .link-btns:hover i.icon-default {
  opacity: 0;
  transform: translateY(-10px);
}
.section-title-area .content .link-btns:hover i.icon-hover {
  opacity: 1;
  transform: translateY(0);
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

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

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

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

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

/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper .about-left-item .about-image {
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
}
.about-wrapper .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about-wrapper .about-left-item p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.about-wrapper .about-left-item p b {
  font-weight: 700;
}
.about-wrapper .about-content {
  margin-left: 168px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .section-title h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.about-wrapper .about-content .section-title h2 span {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .section-title h2 {
    font-size: 35px;
  }
  .about-wrapper .about-content .section-title h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .section-title h2 {
    font-size: 25px;
  }
}
.about-wrapper .about-content .arrow-icon {
  margin-top: 60px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .arrow-icon {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .count-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .count-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .count-item .count-content p {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .count-item .count-content p {
    font-size: 22px;
  }
}
.about-wrapper .about-content .count-item .count-content h3 {
  color: var(--theme);
  margin-top: 10px;
  font-size: 68px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 110%;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .count-item .count-content h3 {
    font-size: 60px;
  }
}

.about-section-2 .section-title h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  line-height: 139%;
}
.about-section-2 .section-title h2 span {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1399px) {
  .about-section-2 .section-title h2 {
    font-size: 35px;
  }
  .about-section-2 .section-title h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .about-section-2 .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section-2 .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .about-section-2 .section-title h2 {
    font-size: 25px;
  }
}

.about-wrapper-5 .about-image {
  border-radius: 30px;
  overflow: hidden;
}
.about-wrapper-5 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.about-wrapper-5 .about-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-5 .about-content h2 {
  font-size: 38px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 80px;
  line-height: 146%;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-content h2 {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-content h2 {
    font-size: 20px;
  }
}

.about-image-6 {
  text-align: right;
  max-width: 800px;
  margin-left: auto;
  overflow: hidden;
}
.about-image-6 img {
  width: 100%;
  height: 100%;
}

.brand-section h2 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .brand-section h2 {
    margin-bottom: 30px;
  }
}
.brand-section .brand-slider {
  position: relative;
}
.brand-section .brand-slider::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 10%, rgba(255, 255, 255, 0) 100%);
  height: 32px;
  width: 250px;
  z-index: 999;
}
@media (max-width: 1399px) {
  .brand-section .brand-slider::before {
    display: none;
  }
}
.brand-section .brand-slider::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #FFFFFF 10%, rgba(255, 255, 255, 0) 100%);
  height: 32px;
  width: 230px;
  z-index: 999;
}
@media (max-width: 1399px) {
  .brand-section .brand-slider::after {
    display: none;
  }
}

.contact-main-box {
  background-color: rgb(231, 230, 230);
  padding: 40px;
}
@media (max-width: 1399px) {
  .contact-main-box {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .contact-main-box {
    margin-top: 30px;
  }
}
.contact-main-box .contact-form-box {
  padding: 40px;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .contact-main-box .contact-form-box {
    padding: 20px;
  }
}
.contact-main-box .contact-form-box .form-clt span {
  font-weight: 500;
  font-size: 26px;
  color: #000000;
  opacity: 0.7;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .contact-main-box .contact-form-box .form-clt span {
    font-size: 20px;
  }
}
.contact-main-box .contact-form-box .form-clt input, .contact-main-box .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgba(0, 0, 0, 0.3);
  padding: 13px;
  border: none;
  background: rgb(231, 230, 230);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .contact-main-box .contact-form-box .form-clt input, .contact-main-box .contact-form-box .form-clt textarea {
    padding-top: 5px;
  }
}
.contact-main-box .contact-form-box .form-clt input::placeholder, .contact-main-box .contact-form-box .form-clt textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
  resize: none;
}
.contact-main-box .contact-form-box .form-clt textarea {
  padding-bottom: 40px;
}
.contact-main-box .contact-form-box .theme-btn {
  width: 100%;
  justify-content: center;
  background-color: var(--header);
}
.contact-main-box .contact-form-box .theme-btn::before, .contact-main-box .contact-form-box .theme-btn::after {
  background-color: var(--theme);
}

.contact-us-wrapper-2 .contact-box-2 {
  background-color: rgb(246, 246, 246);
  border-radius: 16px;
  padding: 30px 24px;
}
.contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt input, .contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  padding: 13px;
  border: none;
  background: rgb(255, 255, 255);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt input, .contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt textarea {
    padding-top: 5px;
  }
}
.contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt input::placeholder, .contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
  resize: none;
}
.contact-us-wrapper-2 .contact-box-2 .contact-form-box-2 .form-clt textarea {
  padding-bottom: 100px;
}
.contact-us-wrapper-2 .contact-us-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-us-content {
    margin-left: 0;
  }
}
.contact-us-wrapper-2 .contact-us-content .info-item {
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-us-content .info-item {
    margin-bottom: 30px;
  }
}
.contact-us-wrapper-2 .contact-us-content .info-item span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  margin-top: 0;
}
.contact-us-wrapper-2 .contact-us-content .info-item p {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-us-content .info-item p {
    font-size: 16px;
  }
}
.contact-us-wrapper-2 .contact-us-content .info-item p a {
  color: rgb(0, 0, 0);
}
.contact-us-wrapper-2 .contact-us-content span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  display: inline-block;
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-us-content span {
    margin-top: 30px;
  }
}
.contact-us-wrapper-2 .contact-us-content .social-item {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .contact-us-content .social-item {
    flex-wrap: wrap;
  }
}
.contact-us-wrapper-2 .contact-us-content .social-item a {
  background-color: rgb(246, 246, 246);
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  padding: 8px 22px;
  border-radius: 8px;
}
.contact-us-wrapper-2 .contact-us-content .social-item a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.contact-us-wrapper-2 .contact-us-content .social-item a i {
  margin-right: 10px;
}

.cta-content {
  text-align: center;
  position: relative;
}
.cta-content h2 {
  font-size: 180px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .cta-content h2 {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .cta-content h2 {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .cta-content h2 {
    font-size: 60px;
  }
}
.cta-content h2 span {
  color: rgba(0, 0, 0, 0.3);
}
.cta-content .cta-button {
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .cta-content .cta-button {
    margin-top: 30px;
  }
}
.cta-content .cta-button .icon-btn {
  width: 202px;
  height: 202px;
  line-height: 202px;
  text-align: center;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 100px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 1399px) {
  .cta-content .cta-button .icon-btn {
    width: 160px;
    height: 160px;
    line-height: 160px;
  }
}
.cta-content .like {
  position: absolute;
  left: 0;
  top: 225px;
  animation: byeBye 1.2s ease-in-out infinite;
}
@media (max-width: 1399px) {
  .cta-content .like {
    display: none;
  }
}

.cta-area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cta-area-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-area-inner .area-bg {
  position: absolute;
  height: 500px;
  width: 500px;
  background-color: var(--header);
  border-radius: 100%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .cta-area-inner .area-bg {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 1199px) {
  .cta-area-inner .area-bg {
    height: 260px;
    width: 260px;
  }
}
@media (max-width: 991px) {
  .cta-area-inner .area-bg {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .cta-area-inner .area-bg {
    height: 160px;
    width: 160px;
  }
}
.cta-area .section-title {
  font-size: 170px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--white) !important;
  display: inline-block;
  font-size: 4vw;
}
.cta-area .section-title a {
  color: var(--white) !important;
}
.cta-area .section-title a:hover {
  color: var(--white);
}
.cta-area .section-content {
  text-align: center;
}

.cta-wrapper-3 .circle-box {
  width: 518px;
  height: 518px;
  border-radius: 100%;
  background-color: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 .circle-box {
    width: 340px;
    height: 340px;
  }
}
.cta-wrapper-3 .circle-box h2 {
  font-size: 82px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box h2 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 .circle-box h2 {
    font-size: 50px;
  }
}
.cta-wrapper-3 .circle-box-2 {
  width: 856px;
  height: 856px;
  border-radius: 100%;
  background-color: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .cta-wrapper-3 .circle-box-2 {
    width: 750px;
    height: 750px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box-2 {
    width: 650px;
    height: 650px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box-2 {
    width: 520px;
    height: 520px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 .circle-box-2 {
    width: 340px;
    height: 340px;
  }
}
.cta-wrapper-3 .circle-box-2 h2 {
  font-size: 140px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .cta-wrapper-3 .circle-box-2 h2 {
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box-2 h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box-2 h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 .circle-box-2 h2 {
    font-size: 50px;
  }
}
.cta-wrapper-3 .circle-box-3 {
  width: 1670px;
  height: 1670px;
  border-radius: 100%;
  background-color: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
}
@media (max-width: 1600px) {
  .cta-wrapper-3 .circle-box-3 {
    width: 950px;
    height: 950px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box-3 {
    width: 750px;
    height: 750px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box-3 {
    width: 520px;
    height: 520px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-3 .circle-box-3 {
    width: 340px;
    height: 340px;
  }
}
.cta-wrapper-3 .circle-box-3 h2 {
  font-size: 280px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .cta-wrapper-3 .circle-box-3 h2 {
    font-size: 150px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper-3 .circle-box-3 h2 {
    font-size: 110px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-3 .circle-box-3 h2 {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-3 .circle-box-3 h2 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {
  .cta-section-3 {
    overflow: hidden;
  }
}

.cta-section {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 60px;
  padding-top: 60px !important;
}
@media (max-width: 1399px) {
  .cta-section {
    margin-top: 30px;
    padding-top: 30px !important;
  }
}

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

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

.process-wrapper {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .process-wrapper {
    margin-top: 30px;
  }
}
.process-wrapper .process-image {
  border-radius: 30px;
  overflow: hidden;
}
.process-wrapper .process-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.process-wrapper .process-main-item {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .process-wrapper .process-main-item {
    margin-top: 30px;
  }
}
.process-wrapper .process-main-item .process-card-item {
  display: flex;
  align-items: center;
  gap: 110px;
  justify-content: end;
}
@media (max-width: 991px) {
  .process-wrapper .process-main-item .process-card-item {
    flex-wrap: wrap;
    gap: 0px;
    justify-content: start;
  }
}
.process-wrapper .process-main-item .process-card-item .process-item {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .process-wrapper .process-main-item .process-card-item .process-item {
    margin-top: 30px;
  }
}
.process-wrapper .process-main-item .process-card-item .process-item .content {
  margin-top: 18px;
}
.process-wrapper .process-main-item .process-card-item .process-item .content h3 {
  font-weight: 600;
  margin-bottom: 12px;
}
.process-wrapper .process-main-item .process-card-item .process-item .content p {
  max-width: 360px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Geist", sans-serif;
}
@media (max-width: 1399px) {
  .process-wrapper .process-main-item .process-card-item .process-item .content p {
    font-size: 16px;
  }
}

.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(211, 211, 211);
  padding-top: 15px;
  margin-top: 45px;
}
.counter-wrapper-2.style-2 {
  margin-top: 60px;
  border-top: none;
  padding-top: 0;
}
@media (max-width: 1399px) {
  .counter-wrapper-2.style-2 {
    margin-top: 30px;
  }
}
@media (max-width: 1399px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.counter-wrapper-2 .counter-item h3 {
  font-size: 68px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--theme);
}
@media (max-width: 1399px) {
  .counter-wrapper-2 .counter-item h3 {
    font-size: 60px;
  }
}
.counter-wrapper-2 .counter-item h3 span {
  color: var(--header);
}
.counter-wrapper-2 .counter-item p {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 24px;
}

.feature-wrapper-2 {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .feature-wrapper-2 {
    margin-top: 30px;
  }
}
.feature-wrapper-2 .feature-thumb {
  margin-left: -300px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .feature-wrapper-2 .feature-thumb {
    margin-left: 0;
  }
}
.feature-wrapper-2 .feature-thumb img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-right-item {
  margin-left: 200px;
}
@media (max-width: 1399px) {
  .feature-wrapper-2 .feature-right-item {
    margin-left: 0;
  }
}
.feature-wrapper-2 .feature-right-item .feature-thumb-2 {
  overflow: hidden;
}
.feature-wrapper-2 .feature-right-item .feature-thumb-2 img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-right-item .shape {
  margin-top: 30px;
}
.feature-wrapper-2 .feature-right-item .shape img {
  width: 100%;
  height: 100%;
}

.Feature-section-2 .section-title h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  line-height: 139%;
}
.Feature-section-2 .section-title h2 span {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1399px) {
  .Feature-section-2 .section-title h2 {
    font-size: 35px;
  }
  .Feature-section-2 .section-title h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .Feature-section-2 .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .Feature-section-2 .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .Feature-section-2 .section-title h2 {
    font-size: 25px;
  }
}

.bg-thumb-2 img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}
.bg-thumb-2:hover img {
  transform: perspective(400px) rotateX(0.09deg) rotateY(0) scaleX(1.1) scaleY(1.1);
}

.split-image {
  position: relative;
  height: 1216px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
@media (max-width: 1399px) {
  .split-image {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .split-image {
    height: 580px;
  }
}
@media (max-width: 767px) {
  .split-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .split-image {
    height: 380px;
  }
}
.split-image span {
  background-image: url("../../assets/img/home-3/thumb-bg.jpg");
  background-size: 400% 100%;
  background-position: calc(var(--i) * 33.33%) 50%;
  transform: translateY(-100%);
  opacity: 0;
}

.bg-thumb-5 {
  position: relative;
}
@media (max-width: 991px) {
  .bg-thumb-5 {
    height: 500px;
  }
  .bg-thumb-5 img {
    object-fit: cover;
  }
}
.bg-thumb-5 img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
}
.bg-thumb-5 .content-box {
  background-color: var(--white);
  padding: 58px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 55px;
  left: 315px;
}
@media (max-width: 1399px) {
  .bg-thumb-5 .content-box {
    left: 50px;
  }
}
@media (max-width: 991px) {
  .bg-thumb-5 .content-box {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 1399px) {
  .bg-thumb-5 .content-box {
    padding: 30px;
  }
}
.bg-thumb-5 .content-box h2 {
  font-size: 64px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .bg-thumb-5 .content-box h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .bg-thumb-5 .content-box h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .bg-thumb-5 .content-box h2 {
    font-size: 30px;
  }
}
.bg-thumb-5 .content-box p {
  max-width: 491px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 50px;
  font-weight: 400;
  margin-top: 20px;
  font-size: 20px;
}
@media (max-width: 1399px) {
  .bg-thumb-5 .content-box p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

.feature-section-4 {
  background-color: var(--header);
}
.feature-section-4 .section-title-area .theme-btn {
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
}
.feature-section-4 .section-title-area .theme-btn::before, .feature-section-4 .section-title-area .theme-btn::after {
  background-color: var(--theme);
}
.feature-section-4 .section-title-area .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.feature-section-4 .feature-box-style-4 .block:last-child {
  margin-bottom: 0;
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn {
  transition: all 0.3s ease;
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn.active {
  color: var(--theme);
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn.active span {
  color: var(--white);
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn.active h3 {
  color: var(--white);
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn.active .icon {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-btn.active .icon img {
  filter: brightness(0) invert(1);
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-content .feature-wrap-4 .item-text p {
  font-size: 32px;
  font-weight: 400;
  max-width: 590px;
  line-height: 36px;
  margin-bottom: 15px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .feature-section-4 .feature-box-style-4 .block .feature-acc-content .feature-wrap-4 .item-text p {
    font-size: 16px;
    line-height: 28px;
  }
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-content {
  display: none;
}
.feature-section-4 .feature-box-style-4 .block .feature-acc-content.current {
  display: block;
}

.feature-box-style-4 {
  margin-top: 30px;
}
.feature-box-style-4 .feature-list-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 0px;
}
.feature-box-style-4 .feature-list-wrap.style-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-box-style-4 .feature-list-wrap.active-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn {
  position: relative;
  padding-left: 275px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-btn {
    padding-left: 200px;
  }
}
@media (max-width: 1199px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-btn {
    padding-left: 90px;
  }
}
@media (max-width: 575px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-btn {
    padding-left: 0px;
  }
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn .number {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 575px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-btn .number {
    top: -30px;
    left: 0px;
  }
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: var(--header);
  border: 1px solid rgb(255, 255, 255);
  text-align: center;
  background-color: transparent;
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn .icon img {
  filter: brightness(0) invert(1);
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn .icon.text-white {
  border: 1px solid var(--white);
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn h3 {
  font-size: 52px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 125%;
  color: rgb(255, 255, 255);
}
@media (max-width: 1399px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-btn h3 {
    font-size: 30px;
    line-height: 172%;
  }
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn h3 a {
  color: var(--white);
}
.feature-box-style-4 .feature-list-wrap .feature-acc-btn h3 a:hover {
  color: var(--theme);
}
.feature-box-style-4 .feature-list-wrap .feature-acc-content {
  margin-top: 35px;
  display: none;
  position: relative;
}
@media (max-width: 575px) {
  .feature-box-style-4 .feature-list-wrap .feature-acc-content {
    margin-top: 25px;
  }
}
.feature-box-style-4 .feature-list-wrap .feature-wrap-4 {
  margin-left: 280px;
}
@media (max-width: 1399px) {
  .feature-box-style-4 .feature-list-wrap .feature-wrap-4 {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .feature-box-style-4 .feature-list-wrap .feature-wrap-4 {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .feature-box-style-4 .feature-list-wrap .feature-wrap-4 {
    padding-left: 0px;
  }
}
.feature-box-style-4 .feature-list-wrap .feature-wrap-4 .item-text p {
  font-size: 32px;
  font-weight: 400;
  max-width: 590px;
  line-height: 36px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .feature-box-style-4 .feature-list-wrap .feature-wrap-4 .item-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

.our-mission-wrapper .our-mission-image {
  overflow: hidden;
}
.our-mission-wrapper .our-mission-image img {
  width: 100%;
  height: 100%;
}
.our-mission-wrapper .mission-content {
  margin-left: 50px;
  margin-top: 150px;
}
@media (max-width: 1399px) {
  .our-mission-wrapper .mission-content {
    margin-top: 0;
    margin-left: 0;
  }
}
.our-mission-wrapper .mission-content p {
  color: var(--white);
  font-size: 32px;
  font-weight: 400;
  max-width: 558px;
  margin-top: 15px;
  margin-bottom: 90px;
  line-height: 36px;
}
@media (max-width: 1399px) {
  .our-mission-wrapper .mission-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.our-mission-wrapper .mission-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.our-mission-wrapper .mission-content .theme-btn::before, .our-mission-wrapper .mission-content .theme-btn::after {
  background-color: var(--theme);
}
.our-mission-wrapper .mission-content .theme-btn:hover {
  color: var(--white);
}
.our-mission-wrapper .mission-content .our-mission-image-2 {
  overflow: hidden;
  margin-top: 220px;
  max-width: 550px;
  margin-left: -70px;
}
@media (max-width: 1399px) {
  .our-mission-wrapper .mission-content .our-mission-image-2 {
    max-width: initial;
    margin-top: 30px;
    margin-left: 0;
  }
}
.our-mission-wrapper .mission-content .our-mission-image-2 img {
  width: 100%;
  height: 100%;
}

.our-award-wining-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding: 35px 0;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.our-award-wining-wrapper::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme);
  background: var(--theme);
  transition: all 500ms ease;
}
@media (max-width: 1399px) {
  .our-award-wining-wrapper {
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.our-award-wining-wrapper.style-top {
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .our-award-wining-wrapper.style-top {
    margin-top: 30px;
  }
}
.our-award-wining-wrapper.style-2 {
  border-top: none;
}
.our-award-wining-wrapper span {
  font-size: 22px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}
@media (max-width: 1399px) {
  .our-award-wining-wrapper span {
    font-size: 16px;
  }
}
.our-award-wining-wrapper:hover {
  padding: 35px 30px;
}
@media (max-width: 575px) {
  .our-award-wining-wrapper:hover {
    padding: 30px 5px;
  }
}
.our-award-wining-wrapper:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.our-award-wining-wrapper:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.our-award-wining-section .award-button {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 1399px) {
  .our-award-wining-section .award-button {
    margin-top: 30px;
  }
}

.hero-1 {
  padding: 180px 0 100px;
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 140px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 130px 0 80px;
  }
}
.hero-1 .hero-content .top-item {
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-1 .hero-content .top-item .left-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-1 .hero-content .top-item .left-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.hero-1 .hero-content .top-item .left-item span {
  font-size: 14px;
}
.hero-1 .hero-content .top-item .left-item span b {
  color: var(--theme);
}
.hero-1 .hero-content .top-item p {
  font-weight: 500;
  margin-left: 100px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .top-item p {
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .top-item .thumb {
    flex-basis: 100%;
  }
}
.hero-1 .hero-content .top-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.hero-1 .hero-content .email {
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
}
.hero-1 .hero-content .email .er-word--span {
  display: inline-flex;
  gap: 0;
}
.hero-1 .hero-content .email .er-letter--span {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.hero-1 .hero-content .button-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -30px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .button-item {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content .button-item {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.hero-1 .hero-content .button-item .radius-btn {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  padding: 38px 63px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .button-item .radius-btn {
    padding: 25px 50px;
    margin-top: 30px;
  }
  .hero-1 .hero-content .button-item .radius-btn img {
    width: 250px;
  }
}
.hero-1 .hero-content .button-item .radius-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme);
  filter: blur(3.5px);
  z-index: 0;
  border-radius: 100px;
}
.hero-1 .hero-content .button-item .radius-btn img {
  position: relative;
  z-index: 1;
}
.hero-1 .hero-content .button-item h2 {
  font-size: 227px;
  font-weight: 275;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .button-item h2 {
    font-size: 160px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content .button-item h2 {
    font-size: 90px;
  }
}
.hero-1 .hero-content p {
  font-weight: 700;
  font-size: 20px;
  max-width: 491px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content p {
    font-size: 16px;
    margin-top: 30px;
  }
}

.hero-2 {
  padding: 280px 0 140px;
  position: relative;
}
@media (max-width: 1600px) {
  .hero-2 {
    overflow: hidden;
  }
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 160px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 140px 0 80px;
  }
}
.hero-2 .thumb-1 {
  position: absolute;
  top: 165px;
  right: 125px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-2 .thumb-1 {
    display: none;
  }
}
.hero-2 .thumb-1 img {
  width: 100%;
  height: 100%;
  transform: rotate(15deg);
}
.hero-2 .thumb-2 {
  position: absolute;
  left: 120px;
  bottom: 140px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-2 .thumb-2 {
    display: none;
  }
}
.hero-2 .thumb-2 img {
  width: 100%;
  height: 100%;
}
.hero-2 .shape {
  position: absolute;
  right: 190px;
  bottom: -135px;
}
@media (max-width: 1600px) {
  .hero-2 .shape {
    right: 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .shape {
    display: none;
  }
}
.hero-2 .hero-content .email {
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  font-size: 362px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content .email {
    font-size: 345px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .email {
    font-size: 290px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .email {
    font-size: 240px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content .email {
    font-size: 180px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content .email {
    font-size: 120px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content .email {
    font-size: 80px;
  }
}
.hero-2 .hero-content .email .er-word--span {
  display: inline-flex;
  gap: 0;
}
.hero-2 .hero-content .email .er-letter--span {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.hero-2 .hero-content .content {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .content {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content .content {
    text-align: left;
  }
}
.hero-2 .hero-content .content p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 20px;
  max-width: 490px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .content p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content .content p {
    text-align: left;
  }
}
.hero-2 .hero-content .content .theme-btn {
  margin-top: 35px;
  margin-left: -280px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .content .theme-btn {
    margin-left: 0;
  }
}

.hero-3 {
  padding: 200px 0 150px;
}
@media (max-width: 1399px) {
  .hero-3 {
    padding: 180px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding: 140px 0 80px;
  }
}
.hero-3 .hero-content .hero-top-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-top-image {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content .hero-top-image {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content .hero-top-image .hero-image {
    flex-basis: 100%;
  }
}
.hero-3 .hero-content .hero-top-image .hero-image img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}
.hero-3 .hero-content .hero-top-image .hero-image:hover img {
  transform: perspective(400px) rotateX(0.09deg) rotateY(0) scaleX(1.1) scaleY(1.1);
}
.hero-3 .hero-content h1 {
  font-size: 384px;
  font-weight: 500;
  margin-left: -170px;
  text-transform: uppercase;
  margin-bottom: 100px;
}
@media (max-width: 1600px) {
  .hero-3 .hero-content h1 {
    margin-left: -80px;
    font-size: 300px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    margin-left: 0;
    font-size: 275px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 190px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 90px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 80px;
  }
}
.hero-3 .hero-content span {
  font-size: 384px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  margin-left: 475px;
  text-transform: uppercase;
}
@media (max-width: 1899px) {
  .hero-3 .hero-content span {
    margin-left: 380px;
  }
}
@media (max-width: 1600px) {
  .hero-3 .hero-content span {
    font-size: 300px;
    margin-left: 475px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .hero-content span {
    margin-left: 0;
    font-size: 275px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content span {
    font-size: 190px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content span {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content span {
    font-size: 80px;
  }
}
.hero-3 .hero-content p {
  font-weight: 500;
  font-size: 40px;
  max-width: 1000px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: 0;
  text-transform: uppercase;
  line-height: 139%;
}
.hero-3 .hero-content p b {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1399px) {
  .hero-3 .hero-content p {
    font-size: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content p {
    font-size: 16px;
    margin-top: 30px;
  }
}

.hero-5 {
  padding: 500px 0 0;
  margin-top: 88px;
}
@media (max-width: 1399px) {
  .hero-5 {
    margin-top: 60px;
    padding: 350px 0 0px;
  }
}
@media (max-width: 991px) {
  .hero-5 {
    padding: 250px 0 0px;
  }
}
.hero-5 .hero-content p {
  text-transform: capitalize;
  color: var(--white);
  font-weight: 500;
  margin-top: 5px;
  font-size: 20px;
  max-width: 303px;
}
@media (max-width: 1399px) {
  .hero-5 .hero-content p {
    font-size: 16px;
  }
}
.hero-5 .marquee {
  position: relative;
  --duration: 50s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}
.hero-5 .marquee.slide-right {
  transform: scaleX(-1);
}
.hero-5 .marquee.slide-right .text,
.hero-5 .marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.hero-5 .marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll var(--duration) linear infinite;
  padding-right: 50px;
}
.hero-5 .marquee .text {
  color: var(--white);
  font-weight: 500;
  font-size: 234px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 258px;
  font-family: "Poppins", sans-serif;
  color: rgb(245, 230, 230);
}
@media (max-width: 1199px) {
  .hero-5 .marquee .text {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .hero-5 .marquee .text {
    gap: 30px;
    font-size: 120px;
    line-height: 160px;
  }
}

.hero-4 {
  padding-top: 160px;
  overflow: hidden;
  z-index: 9;
}
.hero-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 0, 0);
  bottom: 52%;
  top: initial;
  z-index: -1;
  top: initial;
}
@media (max-width: 1399px) {
  .hero-4::before {
    bottom: 71%;
  }
}
@media (max-width: 1199px) {
  .hero-4::before {
    bottom: 75%;
  }
}
@media (max-width: 991px) {
  .hero-4::before {
    bottom: 80%;
  }
}
@media (max-width: 767px) {
  .hero-4::before {
    bottom: 90%;
  }
}
@media (max-width: 575px) {
  .hero-4::before {
    margin-top: 30px;
  }
}
.hero-4 .hero-item {
  text-align: center;
  position: relative;
}
.hero-4 .hero-item .bold-text {
  font-size: 478px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 0.8;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .bold-text {
    font-size: 350px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-item .bold-text {
    font-size: 230px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-item .bold-text {
    font-size: 130px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-item .bold-text {
    font-size: 130px;
  }
}
.hero-4 .hero-item .middle-images {
  margin: 50px auto;
  position: relative;
  z-index: 5;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .middle-images {
    margin: 30px auto;
  }
  .hero-4 .hero-item .middle-images img {
    width: 100%;
    height: 100%;
  }
}
.hero-4 .hero-item .middle-images .hero-thumb-2 {
  position: absolute;
  top: 15px;
  left: 330px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .middle-images .hero-thumb-2 {
    display: none;
  }
}
.hero-4 .hero-item .middle-images .hero-thumb-3 {
  position: absolute;
  top: 0;
  left: 305px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .middle-images .hero-thumb-3 {
    display: none;
  }
}
.hero-4 .hero-item .studio-text {
  font-size: 250px;
  text-transform: uppercase;
  color: #fff;
  font-style: italic;
  margin: 0;
  display: block;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .studio-text {
    font-size: 230px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-item .studio-text {
    font-size: 170px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-item .studio-text {
    font-size: 130px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-item .studio-text {
    font-size: 90px;
  }
}
.hero-4 .hero-item .bottom-main-image {
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-item .bottom-main-image {
    margin-top: 30px;
  }
}
.hero-4 .hero-item .bottom-main-image img {
  width: 100%;
  max-width: 1000px;
}

.news-card-item {
  margin-top: 30px;
}
.news-card-item .thumb--wrap {
  width: 100%;
  overflow: hidden;
  height: 292px;
}
.news-card-item .thumb--wrap.hover--img {
  position: relative;
  border-radius: 20px;
}
.news-card-item .thumb--wrap.hover--img canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.news-card-item .thumb--wrap.hover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  border-radius: 20px;
}
.news-card-item .news-content {
  margin-top: 20px;
}
.news-card-item .news-content .tag {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.news-card-item .news-content .tag span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}
.news-card-item .news-content h3 {
  line-height: 110%;
  font-size: 28px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .news-card-item .news-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .news-card-item .news-content h3 {
    font-size: 20px;
  }
}
.news-card-item .news-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.news-card-item .news-content h3 a:hover {
  background-size: 100% 100%;
}
.news-card-item .news-content p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(13, 29, 24);
  margin-bottom: 15px;
  margin-top: 10px;
}

.news-main-items {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .news-main-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-main-items .news-image {
  overflow: hidden;
  text-align: left;
}
.news-main-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-main-items .thumb--wrap-2 {
  overflow: hidden;
}
.news-main-items .thumb--wrap-2.hover--img {
  position: relative;
}
.news-main-items .thumb--wrap-2.hover--img canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.news-main-items .thumb--wrap-2.hover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
}
.news-main-items .news-content h3 {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 125%;
}
@media (max-width: 1399px) {
  .news-main-items .news-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .news-main-items .news-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .news-main-items .news-content h3 {
    font-size: 20px;
  }
}
.news-main-items .news-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.news-main-items .news-content h3 a:hover {
  background-size: 100% 100%;
}
.news-main-items .news-content span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}

.news-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.news-details-wrapper .details-content {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content {
    margin-top: 20px;
  }
}
.news-details-wrapper .details-content h3 {
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content h3 {
    font-size: 32px;
  }
}
.news-details-wrapper .details-content p {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content p {
    font-size: 16px;
  }
}
.news-details-wrapper .details-content .list-2 {
  margin-top: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content .list-2 {
    margin-bottom: 15px;
  }
}
.news-details-wrapper .details-content .list-2 li {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content .list-2 li {
    font-size: 16px;
  }
}
.news-details-wrapper .details-content .list-2 li:not(:last-child) {
  margin-bottom: 5px;
}
.news-details-wrapper .details-content .list-2 li span {
  font-weight: 600;
  position: relative;
}
.news-details-wrapper .details-content .list-2 li span::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--header);
  border-radius: 30px;
  top: 10px;
  left: -10px;
}
.news-details-wrapper .details-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}
.news-details-wrapper .details-content .tags {
  margin-bottom: 30px;
}
.news-details-wrapper .details-content .tags span {
  font-size: 18px;
  font-weight: 400;
}
.news-details-wrapper .details-content .slider-button {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .details-content .slider-button {
    margin-top: 25px;
  }
}
.news-details-wrapper .details-content .slider-button .cmn-prev {
  border: 1px solid var(--header);
  border-radius: 100px;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.news-details-wrapper .details-content .slider-button .cmn-prev img {
  margin-right: 5px;
}
.news-details-wrapper .details-content .slider-button .cmn-next {
  border: 1px solid var(--header);
  border-radius: 100px;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.news-details-wrapper .details-content .slider-button .cmn-next img {
  margin-left: 5px;
}

.news-card-item-inner {
  margin-bottom: 30px;
}
.news-card-item-inner .thumb--wrap {
  width: 100%;
  overflow: hidden;
  height: 413px;
}
.news-card-item-inner .thumb--wrap.hover--img {
  position: relative;
  border-radius: 20px;
}
.news-card-item-inner .thumb--wrap.hover--img canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.news-card-item-inner .thumb--wrap.hover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  border-radius: 20px;
}
.news-card-item-inner .news-content {
  margin-top: 20px;
}
.news-card-item-inner .news-content .tag {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.news-card-item-inner .news-content .tag span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}
.news-card-item-inner .news-content h2 {
  line-height: 110%;
  font-size: 45px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .news-card-item-inner .news-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .news-card-item-inner .news-content h2 {
    font-size: 20px;
  }
}
.news-card-item-inner .news-content h2 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.news-card-item-inner .news-content h2 a:hover {
  background-size: 100% 100%;
}
.news-card-item-inner .news-content p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(13, 29, 24);
  margin-bottom: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
}

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

.project-card-item {
  margin-top: 30px;
}
.project-card-item .thumb--wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
  height: 460px;
}
.project-card-item .thumb--wrap.hover--img {
  position: relative;
  border-radius: 20px;
}
.project-card-item .thumb--wrap.hover--img canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.project-card-item .thumb--wrap.hover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  border-radius: 20px;
}
.project-card-item .project-content {
  margin-top: 30px;
}
.project-card-item .project-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-card-item .project-content h3 a:hover {
  background-size: 100% 100%;
}
.project-card-item .project-content span {
  border-radius: 100px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  background-color: #F832FB;
  margin-top: 20px;
  padding: 4px 16px;
}
.project-card-item .project-content span.bg-2 {
  background-color: var(--theme);
}
.project-card-item .project-content span.bg-3 {
  background-color: rgb(3, 168, 100);
}
.project-card-item .project-content span.bg-4 {
  background-color: rgb(47, 211, 251);
}

.project-card-items-2 {
  max-width: 770px;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .project-card-items-2 {
    max-width: initial;
    width: initial;
    margin-top: 30px;
  }
}
.project-card-items-2 .project-img {
  display: block;
  overflow: hidden;
  position: relative;
  height: 690px;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-img {
    height: initial;
  }
}
.project-card-items-2 .project-img img {
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 100%;
}
.project-card-items-2 .project-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .project-card-items-2 .project-img canvas {
    display: none;
  }
}
.project-card-items-2 .project-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card-items-2 .project-content .content h3 {
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-content .content h3 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .project-card-items-2 .project-content .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .project-card-items-2 .project-content .content h3 {
    font-size: 20px;
  }
}
.project-card-items-2 .project-content .content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-card-items-2 .project-content .content h3 a:hover {
  background-size: 100% 100%;
}
.project-card-items-2 .project-content .content span {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
}
.project-card-items-2 .project-content .icon {
  width: 61px;
  height: 61px;
  line-height: 61px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .project-card-items-2 .project-content .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
.project-card-items-2 .project-content .icon:hover {
  background-color: var(--header);
}
.project-card-items-2.style-2 {
  max-width: initial;
  width: initial;
}
.project-card-items-2.style-2 .project-img {
  height: initial;
}
.project-card-items-2.style-3 {
  max-width: 1137px;
  width: 100%;
  margin-left: 55px;
}
@media (max-width: 1399px) {
  .project-card-items-2.style-3 {
    max-width: initial;
    margin-left: 0;
    width: initial;
  }
}
.project-card-items-2.style-3 .project-img {
  height: initial;
}

.project-section-2 {
  position: relative;
  z-index: 9;
}
.project-section-2 .line-shape {
  position: absolute;
  top: 370px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .project-section-2 .line-shape {
    display: none;
  }
}
.project-section-2 .line-shape img {
  width: 100%;
  height: 100%;
}
.project-section-2 .project-button {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .project-section-2 .project-button {
    margin-top: 30px;
  }
}

.marquee {
  position: relative;
  --duration: 80s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}
.marquee.slide-right {
  transform: scaleX(-1);
}
.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll var(--duration) linear infinite;
  padding-right: 50px;
}
.marquee .text {
  color: rgb(0, 0, 0);
  font-size: 234px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1199px) {
  .marquee .text {
    gap: 30px;
    font-size: 150px;
  }
  .marquee .text img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .marquee .text {
    gap: 30px;
    font-size: 80px;
  }
  .marquee .text img {
    width: 80px;
  }
}

.project-card-items-3 .project-image {
  height: 520px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .project-card-items-3 .project-image {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .project-card-items-3 .project-image {
    height: 350px;
  }
}
.project-card-items-3 .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card-items-3 .project-content {
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .project-card-items-3 .project-content {
    text-align: center;
  }
}
.project-card-items-3 .project-content h3 {
  font-size: 24px;
  font-weight: 500;
}
.project-card-items-3 .project-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-card-items-3 .project-content h3 a:hover {
  background-size: 100% 100%;
}

.project-slider-active .swiper-slide {
  width: 420px;
  pointer-events: none;
  margin-top: 48px;
}

.project-slider-active .swiper-slide-active,
.project-slider-active .swiper-slide-prev,
.project-slider-active .swiper-slide-next,
.project-slider-active .swiper-slide-prev-prev,
.project-slider-active .swiper-slide-next-next {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1399px) {
  .project-section-3 {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .project-section-3 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.project-section-3 .project-slider-active .swiper-slide-active .project-card-items-3 .project-content {
  opacity: 1;
  visibility: visible;
}

.project-card-items-5 {
  margin-top: 30px;
}
.project-card-items-5 .project-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}
@media (max-width: 1399px) {
  .project-card-items-5 .project-img {
    height: initial;
  }
}
.project-card-items-5 .project-img img {
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.project-card-items-5 .project-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .project-card-items-5 .project-img canvas {
    display: none;
  }
}
.project-card-items-5 .project-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card-items-5 .project-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .project-card-items-5 .project-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .project-card-items-5 .project-content h3 {
    font-size: 20px;
  }
}
.project-card-items-5 .project-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-card-items-5 .project-content h3 a:hover {
  background-size: 100% 100%;
}
.project-card-items-5 .project-content span {
  font-size: 18px;
  font-weight: 400;
}
.project-card-items-5 .project-content span a {
  color: rgb(0, 0, 0);
}
.project-card-items-5 .project-content span a:hover {
  color: var(--theme);
}

.project-section-5 .section-title-area p {
  text-align: right;
  max-width: 491px;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
  .project-section-5 .section-title-area p {
    text-align: left;
  }
}
.project-section-5 .project-button {
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .project-section-5 .project-button {
    margin-top: 30px;
  }
}

.project-wrapper-4 {
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .project-wrapper-4 {
    margin-top: 30px;
  }
}
.project-wrapper-4 .project-card-items-4 {
  position: relative;
  z-index: 999;
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb {
  position: relative;
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.15);
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb .content-overlay {
  position: absolute;
  left: 20px;
  bottom: -20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb .content-overlay h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
  color: var(--white);
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb .content-overlay h3 a:hover {
  background-size: 100% 100%;
}
.project-wrapper-4 .project-card-items-4 .project-image__thumb .content-overlay p {
  color: var(--white);
  font-size: 16px;
}
.project-wrapper-4 .project-card-items-4:hover .project-image__thumb .content-overlay {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media (max-width: 1399px) {
  .project-section-4 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .project-section-4 {
    margin-top: 80px;
  }
}
.project-section-4 .section-title-area .theme-btn {
  color: var(--header);
  border: 1px solid var(--header);
  background-color: transparent;
}
.project-section-4 .section-title-area .theme-btn::before, .project-section-4 .section-title-area .theme-btn::after {
  background-color: var(--theme);
}
.project-section-4 .section-title-area .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.marquee-6 {
  position: relative;
  --duration: 20s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}
.marquee-6.slide-right {
  transform: scaleX(-1);
}
.marquee-6.slide-right .text,
.marquee-6.slide-right .stroke-text {
  transform: scaleX(-1);
}
.marquee-6 .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll var(--duration) linear infinite;
  padding-right: 50px;
}
.marquee-6 .text {
  color: var(--white);
  font-weight: 600;
  font-size: 270px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 280px;
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
}
@media (max-width: 1199px) {
  .marquee-6 .text {
    gap: 30px;
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .marquee-6 .text {
    gap: 30px;
    font-size: 130px;
    line-height: 160px;
  }
}
.marquee-6 .text img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .marquee-6 .text img {
    height: 160px;
  }
}

.project-details-wrapper .project-details-post .project-details-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .project-details-top-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.project-details-wrapper .project-details-post .project-details-top-item .content span {
  font-size: 18px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .project-details-top-item .content span {
    font-size: 16px;
  }
}
.project-details-wrapper .project-details-post .project-details-top-item .content p {
  color: rgb(0, 0, 0);
  font-size: 32px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .project-details-top-item .content p {
    font-size: 25px;
  }
}
.project-details-wrapper .project-details-post .details-thumb {
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-thumb {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .project-details-post .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
.project-details-wrapper .project-details-post .details-content h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-content h2 {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-post .details-content h2 {
    font-size: 30px;
  }
}
.project-details-wrapper .project-details-post .details-content p {
  max-width: 960px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.project-details-wrapper .project-details-post .thumb {
  overflow: hidden;
  border-radius: 20px;
}
.project-details-wrapper .project-details-post .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-details-wrapper .project-details-post .details-lsit {
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-lsit {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .project-details-post .details-lsit li {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-lsit li {
    padding: 20px;
  }
}
.project-details-wrapper .project-details-post .details-lsit li span {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .details-lsit li span {
    font-size: 18px;
    margin-left: 0;
  }
}
.project-details-wrapper .project-details-post .details-lsit li span::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--header);
  border-radius: 30px;
  top: 12px;
  left: -15px;
}
.project-details-wrapper .project-details-post .counter-items {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-post .counter-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-details-wrapper .project-details-post .counter-items .content h3 {
  font-size: 48px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 140%;
}
.project-details-wrapper .project-details-post .counter-items .content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.project-card-items-inner-1 .project-card .project-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.project-card-items-inner-1 .project-card .project-img img {
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-card-items-inner-1 .project-card .project-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .project-card-items-inner-1 .project-card .project-img canvas {
    display: none;
  }
}
.project-card-items-inner-1 .project-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card-items-inner-1 .project-content h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .project-card-items-inner-1 .project-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .project-card-items-inner-1 .project-content h2 {
    font-size: 20px;
  }
}
.project-card-items-inner-1 .project-content h2 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-card-items-inner-1 .project-content h2 a:hover {
  background-size: 100% 100%;
}
.project-card-items-inner-1 .project-content span {
  font-size: 18px;
  font-weight: 400;
}
.project-card-items-inner-1 .project-content span a {
  color: rgb(0, 0, 0);
}
.project-card-items-inner-1 .project-content span a:hover {
  color: var(--theme);
}

.project-tab-item .project-image {
  border-radius: 20px;
  overflow: hidden;
}
.project-tab-item .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-tab-item .project-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-tab-item .project-content h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .project-tab-item .project-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .project-tab-item .project-content h2 {
    font-size: 20px;
  }
}
.project-tab-item .project-content h2 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.project-tab-item .project-content h2 a:hover {
  background-size: 100% 100%;
}
.project-tab-item .project-content .tags {
  display: flex;
  align-items: center;
  gap: 0;
}
.project-tab-item .project-content .tags span {
  font-size: 18px;
  font-weight: 400;
  border: 1px solid var(--header);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card-item {
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 110px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 40px;
  margin-top: 40px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-card-item {
    gap: 90px;
  }
}
@media (max-width: 767px) {
  .service-card-item {
    padding-bottom: 30px;
    margin-top: 30px;
  }
}
.service-card-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: var(--white);
  border-radius: 100px;
  position: absolute;
  right: 125px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 991px) {
  .service-card-item .icon {
    display: none;
  }
}
.service-card-item .hover-image {
  width: 280px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 30px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-999px, -999px) rotate(0deg);
}
@media (max-width: 991px) {
  .service-card-item .hover-image {
    display: none !important;
  }
}
.service-card-item span {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  min-width: 40px;
}
@media (max-width: 1399px) {
  .service-card-item span {
    margin-top: 14px;
  }
}
.service-card-item .cont h3 {
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .service-card-item .cont h3 {
    font-size: 30px;
  }
}
.service-card-item .cont p {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  max-width: 542px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
}
.service-card-item:hover .icon {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.service-card-item:hover .cont p {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}
.service-card-item.style-2 {
  border-bottom: none;
}

@media (max-width: 1399px) {
  .service-section {
    overflow: hidden;
  }
}

.service-card-item-2 {
  display: flex;
  align-items: center;
  gap: 56px;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 1399px) {
  .service-card-item-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-card-item-2.style-2 {
  padding-bottom: 0;
  border-bottom: none;
}
.service-card-item-2 .icon {
  position: absolute;
  right: 0;
  top: 50px;
  width: 61px;
  height: 61px;
  line-height: 61px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .service-card-item-2 .icon {
    display: none;
  }
}
.service-card-item-2 .content {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1399px) {
  .service-card-item-2 .content {
    gap: 25px;
  }
}
.service-card-item-2 .content span {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.service-card-item-2 .content h3 {
  font-size: 64px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .service-card-item-2 .content h3 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .service-card-item-2 .content h3 {
    font-size: 30px;
  }
}
.service-card-item-2 .content h3 a {
  color: rgba(255, 255, 255, 0.5);
}
.service-card-item-2 p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  max-width: 466px;
  font-family: "Roboto", sans-serif;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1399px) {
  .service-card-item-2 p {
    max-width: 350px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service-card-item-2 p {
    max-width: 466px;
  }
}
@media (max-width: 575px) {
  .service-card-item-2 p {
    opacity: 1;
    visibility: visible;
  }
}
.service-card-item-2:hover .icon {
  opacity: 1;
  visibility: visible;
}
.service-card-item-2:hover p {
  opacity: 1;
  visibility: visible;
}

.service-area .service-top-content {
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .service-area .service-top-content {
    margin-bottom: 30px;
  }
}
.service-area .service-list-wrap {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .service-area .service-list-wrap {
    margin-left: 0;
  }
}
.service-area .service-list-wrap .service-item {
  margin-bottom: 50px;
}
.service-area .service-list-wrap .service-item .service-title {
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .service-area .service-list-wrap .service-item .service-title {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .service-area .service-list-wrap .service-item .service-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .service-area .service-list-wrap .service-item .service-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .service-area .service-list-wrap .service-item .service-title {
    font-size: 30px;
  }
}
.service-area .service-list-wrap .service-item .service-title a {
  color: rgba(0, 0, 0, 0.2);
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), rgba(0, 0, 0, 0.2) 5px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
  transition: all 0.4s ease-in-out;
  padding-bottom: 20px;
}
.service-area .service-list-wrap .service-item .service-title a:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--header) 5px);
  color: var(--header);
}
.service-area .service-content {
  position: relative;
}
.service-area .service-content .service-img-wrapper {
  position: relative;
  height: 220px;
}
@media (max-width: 991px) {
  .service-area .service-content .service-img-wrapper {
    height: 200px;
  }
}
.service-area .service-content .service-img-wrapper .hover-image {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.service-area .service-content .service-img-wrapper .hover-image img {
  width: 100%;
  height: 100%;
}
.service-area .service-content p {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  max-width: 412px;
  line-height: 150%;
  margin-top: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .service-area .service-content p {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-area .service-content p span {
  color: rgba(0, 0, 0, 0.5);
}

.service-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .service-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-wrap .service-list {
  background: var(--theme);
  padding: 100px 70px;
}
@media (max-width: 1399px) {
  .service-wrap .service-list {
    padding: 100px 25px;
  }
}
@media (max-width: 991px) {
  .service-wrap .service-list {
    padding: 100px 70px;
  }
}
@media (max-width: 767px) {
  .service-wrap .service-list {
    padding: 30px 25px;
  }
}
.service-wrap .service-list a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 48px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-bottom: 40px;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 1399px) {
  .service-wrap .service-list a {
    font-size: 33px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .service-wrap .service-list a {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrap .service-list a {
    font-size: 30px;
  }
}
.service-wrap .service-list a span {
  font-size: 18px;
  font-weight: 400;
  margin-right: 8px;
  font-style: italic;
}
.service-wrap .service-list a:hover, .service-wrap .service-list a.active {
  color: var(--white);
}
.service-wrap .service-image {
  position: relative;
  overflow: hidden;
  height: 476px;
}
.service-wrap .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.service-wrap .service-image .theme-btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  padding: 15px 0;
  text-align: center;
  background-color: var(--header);
  border-radius: 0;
}
.service-wrap .service-image .theme-btn img {
  width: initial;
  height: initial;
}

.service-section-4 {
  background-color: var(--header);
}
.service-section-4 .section-title-area .theme-btn {
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
}
.service-section-4 .section-title-area .theme-btn::before, .service-section-4 .section-title-area .theme-btn::after {
  background-color: var(--theme);
}
.service-section-4 .section-title-area .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-section-4 .service-box-style-4 .block:last-child {
  margin-bottom: 0;
}
.service-section-4 .service-box-style-4 .block .service-acc-btn {
  transition: all 0.3s ease;
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active {
  color: var(--theme);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active span {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active h3 {
  color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon {
  background-color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon img {
  filter: brightness(0);
  opacity: initial;
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 {
  padding: 24px;
  background-color: var(--white);
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .service-image img {
  width: 100%;
  height: 100%;
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .item-text p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  line-height: 140%;
  max-width: 323px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 230px;
}
@media (max-width: 1399px) {
  .service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .item-text p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .item-text p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .item-text .tag {
  display: flex;
  align-items: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 0;
}
.service-section-4 .service-box-style-4 .block .service-acc-content .service-wrap-4 .item-text .tag li {
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
.service-section-4 .service-box-style-4 .block .service-acc-content {
  display: none;
}
.service-section-4 .service-box-style-4 .block .service-acc-content.current {
  display: block;
}

.service-box-style-4 {
  margin-top: 30px;
}
.service-box-style-4 .service-list-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 0px;
}
.service-box-style-4 .service-list-wrap.style-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.service-box-style-4 .service-list-wrap.active-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.service-box-style-4 .service-list-wrap .service-acc-btn {
  position: relative;
  padding-left: 275px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 200px;
  }
}
@media (max-width: 1199px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 90px;
  }
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn {
    padding-left: 0px;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn .number {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn .number {
    top: -30px;
    left: 0px;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: var(--header);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  background-color: transparent;
}
.service-box-style-4 .service-list-wrap .service-acc-btn .icon img {
  opacity: 0.4;
}
.service-box-style-4 .service-list-wrap .service-acc-btn .icon.text-white {
  border: 1px solid var(--white);
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 {
  font-size: 52px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 125%;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-acc-btn h3 {
    font-size: 30px;
    line-height: 172%;
  }
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 a {
  color: var(--white);
}
.service-box-style-4 .service-list-wrap .service-acc-btn h3 a:hover {
  color: var(--theme);
}
.service-box-style-4 .service-list-wrap .service-acc-content {
  margin-top: 35px;
  display: none;
  position: relative;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-acc-content {
    margin-top: 25px;
  }
}
.service-box-style-4 .service-list-wrap .service-wrap-4 {
  display: flex;
  gap: 35px;
  margin-left: 280px;
}
@media (max-width: 1399px) {
  .service-box-style-4 .service-list-wrap .service-wrap-4 {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .service-box-style-4 .service-list-wrap .service-wrap-4 {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .service-box-style-4 .service-list-wrap .service-wrap-4 {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-wrap-4 {
    padding-left: 20px;
    flex-wrap: wrap;
  }
}
.service-box-style-4 .service-list-wrap .service-wrap-4 .item-text h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--white) !important;
}
.service-box-style-4 .service-list-wrap .service-wrap-4 .item-text .text {
  max-width: 465px;
}
.service-box-style-4 .service-list-wrap .service-wrap-4 .item-text .text p {
  font-size: 18px;
  line-height: 155.556%;
}
@media (max-width: 575px) {
  .service-box-style-4 .service-list-wrap .service-wrap-4 .item-text .text p {
    font-size: 16px;
  }
}

.service-inner-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .service-inner-items {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .service-inner-items {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.service-inner-items .service-box {
  background-color: rgb(246, 246, 246);
  padding: 30px 35px;
  border-radius: 30px;
  max-width: 693px;
  width: 100%;
}
@media (max-width: 991px) {
  .service-inner-items .service-box {
    width: initial;
    max-width: initial;
    flex-basis: 100%;
  }
}
.service-inner-items .service-box h3 {
  font-family: "Geist", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 112%;
}
@media (max-width: 1399px) {
  .service-inner-items .service-box h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .service-inner-items .service-box h3 {
    font-size: 25px;
  }
}
.service-inner-items .service-box h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.service-inner-items .service-box h3 a:hover {
  background-size: 100% 100%;
}
.service-inner-items .service-box .service-list {
  margin-bottom: 120px;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .service-inner-items .service-box .service-list {
    margin-bottom: 30px;
  }
}
.service-inner-items .service-box .service-list li {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding: 15px 20px;
  border-bottom: 1px solid rgb(0, 0, 0);
}
@media (max-width: 1399px) {
  .service-inner-items .service-box .service-list li {
    font-size: 16px;
  }
}
.service-inner-items .service-box .service-list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--header);
  border-radius: 30px;
  top: 25px;
  left: 5px;
}
@media (max-width: 991px) {
  .service-inner-items .service-card {
    flex-basis: 100%;
  }
}
.service-inner-items .service-card .service-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}
.service-inner-items .service-card .service-img img {
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.service-inner-items .service-card .service-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .service-inner-items .service-card .service-img canvas {
    display: none;
  }
}

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

.team-card-items {
  margin-top: 30px;
}
.team-card-items .team-image {
  border-radius: 20px;
}
.team-card-items .team-image__thumb {
  position: relative;
  border-radius: 20px;
}
.team-card-items .team-image__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.team-card-items .team-image__thumb .gt--hover-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 20px;
}
.team-card-items .team-content {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}
.team-card-items .team-content h3 {
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .team-card-items .team-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .team-card-items .team-content h3 {
    font-size: 20px;
  }
}
.team-card-items .team-content h3 a {
  display: inline !important;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--theme) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s ease;
}
.team-card-items .team-content h3 a:hover {
  background-size: 100% 100%;
}
.team-card-items .team-content p {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 400;
  margin-top: 5px;
}

.team-section .team-button {
  margin-top: 50px;
}
.team-section .team-button .theme-btn {
  text-align: center;
}

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

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 20px;
  background-color: rgb(234, 232, 232);
  gap: 24px;
  width: 100%;
  max-width: 994px;
  margin-left: 50px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    flex-wrap: wrap;
  }
}
.testimonial-wrapper .testimonial-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 570px;
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content {
    padding: 25px;
  }
}
.testimonial-wrapper .testimonial-content h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Geist", sans-serif;
  text-transform: none;
  line-height: 140%;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content h3 {
    font-size: 20px;
  }
}
.testimonial-wrapper .testimonial-content p {
  font-weight: 500;
  margin-top: 5px;
  font-size: 16px;
  color: rgb(0, 0, 0);
  opacity: 0.7;
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content p {
    font-size: 15px;
  }
}
.testimonial-wrapper .testimonial-content .info-content {
  margin-top: 90px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content .info-content {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content .info-content {
    margin-top: 30px;
  }
}
.testimonial-wrapper .testimonial-content .info-content h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 5px;
}
.testimonial-wrapper .testimonial-content .info-content h4::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 187px;
  background-color: var(--header);
  height: 1px;
}
.testimonial-wrapper .testimonial-content .info-content span {
  font-weight: 500;
  color: rgb(250, 88, 13);
}
.testimonial-wrapper .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.testimonial-section {
  position: relative;
}
.testimonial-section .section-title {
  margin-left: 155px;
}
@media (max-width: 1399px) {
  .testimonial-section .section-title {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .testimonial-section .array-buttons {
    display: none;
  }
}
.testimonial-section .array-buttons.style-4 .array-prev {
  top: 530px;
}
.testimonial-section .array-buttons.style-4 .array-next {
  top: 530px;
}
.testimonial-section .array-buttons .array-prev {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: rgb(0, 0, 0);
  border-radius: 100px;
  position: absolute;
  left: 335px;
  top: 420px;
  transition: all 0.4s ease-in-out;
  z-index: 9999;
}
@media (max-width: 1899px) {
  .testimonial-section .array-buttons .array-prev {
    left: 200px;
  }
}
@media (max-width: 1600px) {
  .testimonial-section .array-buttons .array-prev {
    left: 100px;
  }
}
.testimonial-section .array-buttons .array-prev:hover {
  background-color: var(--theme);
}
.testimonial-section .array-buttons .array-next {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: rgb(0, 0, 0);
  border-radius: 100px;
  position: absolute;
  right: 290px;
  top: 420px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1899px) {
  .testimonial-section .array-buttons .array-next {
    right: 160px;
  }
}
@media (max-width: 1600px) {
  .testimonial-section .array-buttons .array-next {
    right: 55px;
  }
}
.testimonial-section .array-buttons .array-next:hover {
  background-color: var(--theme);
}

.testimonial-wrapper-2 {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-sections__thumb {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-sections__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.15);
}
.testimonial-wrapper-2 .testimonial-sections__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-wrapper-2 .testimonial-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content {
    margin-left: 0;
  }
}
.testimonial-wrapper-2 .testimonial-content .content p {
  font-size: 40px;
  font-weight: 600;
  max-width: 619px;
  color: rgb(0, 0, 0);
  margin-bottom: 80px;
  line-height: 135%;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content .content p {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-content .content h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content .content h3 {
    font-size: 25px;
  }
}
.testimonial-wrapper-2 .testimonial-content .content span {
  font-weight: 400;
  font-size: 16px;
}
.testimonial-wrapper-2 .testimonial-content .array-button-2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 245px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content .array-button-2 {
    margin-top: 160px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .array-button-2 {
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-content .array-button-2 .array-prev, .testimonial-wrapper-2 .testimonial-content .array-button-2 .array-next {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-2 .testimonial-content .array-button-2 .array-prev:hover, .testimonial-wrapper-2 .testimonial-content .array-button-2 .array-next:hover {
  background-color: var(--header);
}

.testimonial-card-items-3 {
  padding-top: 28px;
  padding-bottom: 28px;
  background-color: rgb(247, 247, 247);
  max-width: 630px;
  width: 100%;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3 {
    max-width: initial;
    width: initial;
  }
}
.testimonial-card-items-3.style-1 {
  margin-top: -260px;
  margin-bottom: 215px;
  position: relative;
  z-index: 999;
  margin-left: 80px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3.style-1 {
    margin-left: 0;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.testimonial-card-items-3.style-2 {
  margin-top: 260px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3.style-2 {
    margin-top: 30px;
  }
}
.testimonial-card-items-3.style-3 {
  margin-left: 160px;
}
@media (max-width: 1600px) {
  .testimonial-card-items-3.style-3 {
    margin-left: 60px;
  }
}
@media (max-width: 1399px) {
  .testimonial-card-items-3.style-3 {
    margin-top: 30px;
    margin-left: 0;
  }
}
.testimonial-card-items-3 .star {
  color: rgb(255, 77, 6);
  padding-left: 32px;
  border-bottom: 1px solid rgb(137, 137, 137);
  padding-bottom: 15px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3 .star {
    padding-left: 20px;
  }
}
.testimonial-card-items-3 .star i {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-card-items-3 p {
  font-weight: 500;
  font-size: 22px;
  line-height: 132%;
  color: #000000;
  opacity: 0.7;
  margin-top: 20px;
  padding-left: 32px;
  max-width: 508px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3 p {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.testimonial-card-items-3 .info-cont {
  margin-top: 350px;
  padding-left: 32px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-3 .info-cont {
    margin-top: 100px;
    padding-left: 20px;
  }
}
.testimonial-card-items-3 .info-cont h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  line-height: 140%;
}
.testimonial-card-items-3 .info-cont h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 1px;
  width: 187px;
  background-color: var(--header);
  left: 0;
}
.testimonial-card-items-3 .info-cont span {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 77, 6);
}

@media (max-width: 1399px) {
  .testimonial-section-3 {
    padding-top: 0 !important;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-3 {
    margin-top: 15px !important;
  }
}
.testimonial-section-3 .text {
  text-align: center;
  text-transform: uppercase;
  font-size: 140px;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  display: block;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .text {
    font-size: 130px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-3 .text {
    font-size: 100px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-3 .text {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-3 .text {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .testimonial-section-3 .text {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-3 .text {
    font-size: 35px;
  }
}

.testimonial-card-items-5 {
  margin-bottom: 250px;
}
@media (max-width: 575px) {
  .testimonial-card-items-5 {
    margin-bottom: 150px;
  }
}
.testimonial-card-items-5 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.testimonial-card-items-5 .testimonial-content {
  background-color: var(--theme);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 35px 30px;
  margin-top: -16px;
}
.testimonial-card-items-5 .testimonial-content h2 {
  font-size: 52px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .testimonial-card-items-5 .testimonial-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .testimonial-card-items-5 .testimonial-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .testimonial-card-items-5 .testimonial-content h2 {
    font-size: 25px;
  }
}
.testimonial-card-items-5 .testimonial-content p {
  font-size: 24px;
  font-weight: 400;
  max-width: 482px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 100px;
  margin-top: 10px;
  line-height: 36px;
}
@media (max-width: 1399px) {
  .testimonial-card-items-5 .testimonial-content p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.testimonial-card-items-5 .testimonial-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  opacity: 0.8;
  font-family: "Inter", sans-serif;
}
.testimonial-card-items-5 .testimonial-content span {
  font-size: 15px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.testimonial-section-5 {
  position: relative;
}
.testimonial-section-5 .marquee {
  position: relative;
  --duration: 50s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-section-5 .marquee.slide-right {
  transform: scaleX(-1);
}
.testimonial-section-5 .marquee.slide-right .text,
.testimonial-section-5 .marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.testimonial-section-5 .marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll var(--duration) linear infinite;
  padding-right: 50px;
}
.testimonial-section-5 .marquee .text {
  color: var(--white);
  font-weight: 500;
  font-size: 234px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 258px;
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
}
@media (max-width: 1199px) {
  .testimonial-section-5 .marquee .text {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-5 .marquee .text {
    gap: 30px;
    font-size: 120px;
    line-height: 160px;
  }
}

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

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

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

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

.p-relative {
  position: relative;
}

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

.page-nav-wrap {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.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(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Poppins", 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(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-relative {
  position: relative;
}

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

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.wrap-img-distortion {
  position: relative;
}

.wrap-distort-canvas {
  position: absolute;
  inset: 0;
  display: inline-block;
  pointer-events: none;
  object-fit: cover;
}

.gt--hover-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.color-theme {
  color: var(--theme) !important;
}

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

.wt-about-title2 {
  color: #fff;
}
.wt-about-title2 span {
  color: rgba(255, 255, 255, 0.6) !important;
}

.fzz-28 {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .fzz-28 {
    font-size: 20px;
  }
}

.menu-thumb {
  position: inherit !important;
}/*# sourceMappingURL=main.css.map */