@charset "UTF-8";
/*======================================================================================
Theme Name: AEIRA 
Author: KinixThemes
Author URI: https://themeforest.net/user/KinixThemes/portfolio
Description: AEIRA - Digital 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=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #111111;
  --theme2: #5600D6;
  --theme3: #C4EF17;
  --header: #111111;
  --text: #111111;
  --text2: #4B4B4B;
  --border: #02060A;
  --bg: #F8F8F8;
  --bg2: #0F172A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

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

h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 105%;
}

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

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

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

@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}

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

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

h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

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

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

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

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

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

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

span {
  margin: 0px;
}

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  background: var(--header);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  border: 1px solid rgb(17, 17, 17);
}

.theme-btn i {
  transition: all 0.4s ease-in-out;
  margin-left: 5px;
}

.theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.theme-btn:hover {
  color: var(--header);
  z-index: 999;
}

.theme-btn:hover i {
  transform: translate(3px, -3px);
}

.theme-btn:hover::before {
  transform: translateX(0);
}

.theme-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  background: var(--theme2);
  font-family: "DM Sans", serif;
  color: #fff;
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.theme-btn-2 i {
  transition: all 0.4s ease-in-out;
  margin-left: 5px;
}

.theme-btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--header);
  transform: translateX(-101%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.theme-btn-2:hover {
  color: var(--white);
  z-index: 999;
}

.theme-btn-2:hover i {
  transform: translate(3px, -3px);
}

.theme-btn-2:hover::before {
  transform: translateX(0);
}

.theme-btn-3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--theme3);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(1, 1, 1);
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  border-radius: 12px;
}

.theme-btn-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.theme-btn-3:hover {
  color: var(--header);
  z-index: 999;
}

.theme-btn-3:hover i {
  transform: translate(3px, -3px);
}

.theme-btn-3:hover::before {
  transform: translateX(0);
}

.link-btn {
  color: var(--header);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  text-decoration: underline;
}

.link-btn i {
  margin-left: 5px;
  color: var(--header);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: 500 5em "Urbanist", sans-serif, "Urbanist", sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Urbanist", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

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

.back-to-top.style-2 {
  border: none;
}

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

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

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

@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: var(--white);
}

.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(--white);
  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 circle360 {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
  background-color: var(--theme);
  position: relative;
  margin-bottom: 30px;
}

.header-top-section .container-fluid {
  padding: 0 30px;
}

@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}

.header-top-wrapper .header-left .list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .header-left .list li {
  color: var(--white);
}

.header-top-wrapper .header-left .list li i {
  margin-right: 5px;
}

.header-top-wrapper .header-left .list li a {
  color: var(--white);
}

.header-top-wrapper .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .header-right span {
  color: var(--white);
}

.header-top-wrapper .header-right span i {
  margin-right: 5px;
}

.header-top-wrapper .header-right .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-top-wrapper .header-right .social-icon a {
  color: var(--theme);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--white);
  opacity: 0.6;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  border-radius: 100px;
}

.header-top-wrapper .header-right .social-icon a:hover {
  background-color: var(--white);
  opacity: initial;
  color: var(--header);
}

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

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

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

@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

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

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

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
  border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  background: var(--white);
  color: var(--header);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  justify-content: center;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  transition: all 0.4s ease-in-out;
  margin-left: 5px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--header) !important;
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white);
  z-index: 999;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover i {
  transform: translate(3px, -3px);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  transform: translateX(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2 {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white) !important;
  position: relative;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2:hover {
  color: var(--header) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-3 {
  padding: 16px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--header) !important;
  position: relative;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-3:hover {
  color: var(--header) !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: 24px;
}

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

.header-main .header-right .menu_search {
  margin-right: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right .menu_search {
    margin-right: 0;
  }
}

.header-main .header-right .menu_search .search_btn {
  color: rgb(17, 17, 17);
}

@media (max-width: 1099px) {
  .header-main .header-right .theme-btn {
    display: none !important;
  }
}

.header-main .header-right .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  background-color: rgb(229, 229, 229);
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  color: var(--header);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  margin-top: 5px;
  border-bottom: 1px solid rgb(229, 229, 229);
}

@media (max-width: 1399px) {
  .header-1 {
    top: 0;
    margin-top: 0;
  }
}

.header-1 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}

.header-1 .header-main .header-left .logo img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.offcanvas__logo img {
  max-width: 140px;
  height: auto;
}

.footer-left-content>a img {
  max-width: 150px;
  height: auto;
}

.header-1.header-2 {
  border-bottom: none;
  background: #FFFFFF;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.04);
}

.header-1.header-2 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1600px) {
  .header-1.header-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1.header-2 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-2 .header-main .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

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

.header-1.header-2 .header-main .header-right .main-menu ul li {
  font-family: "DM Sans", serif;
  font-size: 18px;
}

.header-1.header-2 .header-main .header-right .main-menu ul li a {
  color: #000000;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right .theme-btn-2 {
    padding: 14px 25px;
  }
}

@media (max-width: 1099px) {
  .header-1.header-2 .header-main .header-right .theme-btn-2 {
    display: none !important;
  }
}

.header-1.header-2 .header-main .header-right .theme-btn-2.style-border {
  background-color: transparent;
  color: rgb(106, 106, 106);
  border: 1px solid rgb(243, 236, 255);
}

.header-1.header-2 .header-main .header-right .theme-btn-2.style-border::before {
  background-color: var(--theme2);
}

.header-1.header-2 .header-main .header-right .theme-btn-2.style-border:hover {
  color: var(--white);
}

.header-1.header-3 {
  background: rgb(1, 1, 1);
  border-bottom: 1px solid rgb(29, 31, 38);
}

.header-1.header-3 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1600px) {
  .header-1.header-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-3 .header-main .header-right {
  display: flex;
  align-items: center;
  gap: 80px;
}

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

.header-1.header-3 .header-main .header-right .main-menu ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .main-menu ul li {
    font-size: 16px;
  }
}

.header-1.header-3 .header-main .header-right .main-menu ul li a {
  color: rgb(188, 188, 188);
  text-transform: uppercase;
}

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

.header-1.header-3 .header-main .header-right .header-button-3 {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-button-3 {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .header-1.header-3 .header-main .header-right .header-button-3 .theme-btn-3 {
    display: none;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-button-3 .theme-btn-3 {
    padding: 12px 25px;
    font-size: 14px;
  }
}

.header-1.header-3 .header-main .header-right .header-button-3 .theme-btn-3.style-border {
  background-color: rgb(28, 31, 18);
  color: var(--white);
}

.header-1.header-3 .header-main .header-right .header-button-3 .theme-btn-3.style-border::before {
  background-color: var(--theme3);
}

.header-1.header-3 .header-main .header-right .header-button-3 .theme-btn-3.style-border:hover {
  color: var(--header);
}

.header-1.header-3 .header-main .header-right .header-button-3 .sidebar__toggle {
  background-color: rgb(28, 31, 18);
  color: var(--white);
}

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

.sticky.header-1 {
  margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}

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

.sticky.header-1 .header-main .header-right .menu_search .search_btn {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 a {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
  color: var(--header);
}

.sticky.header-2 {
  margin-top: 0;
}

.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;
  background: #F8F8F8;
  background-size: cover;
  background-position: center;
}

.breadcrumb-wrapper .text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(75, 75, 75);
  max-width: 223px;
  position: absolute;
  right: 115px;
  bottom: 130px;
}

@media (max-width: 1600px) {
  .breadcrumb-wrapper .text {
    right: 20px;
  }
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .text {
    display: none;
  }
}

.breadcrumb-wrapper .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.breadcrumb-wrapper .bg-shape img {
  width: 100%;
  height: 100%;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 150px 0 90px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 160px;
}

@media (max-width: 1600px) {
  .breadcrumb-wrapper .page-heading {
    gap: 90px;
  }
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 90px;
  }
}

.breadcrumb-wrapper .page-heading .left-content h1 {
  font-size: 96px;
  position: relative;
  z-index: 9;
  font-weight: 500;
}

@media (max-width: 1600px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 50px;
  }

  .breadcrumb-wrapper .page-heading .left-content h1 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading .left-content h1 {
    font-size: 35px;
  }
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items {
  margin-top: 10px;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li {
  color: rgb(75, 75, 75);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}

.breadcrumb-wrapper .page-heading .left-content .breadcrumb-items li i {
  color: var(--white);
}

.breadcrumb-wrapper .page-heading .globe-image {
  animation: sunMove 10s linear infinite;
}

.breadcrumb-wrapper .page-heading .globe-image img {
  width: 100%;
  height: 100%;
}

.error-items {
  text-align: center;
  position: relative;
}

.error-items h2 {
  font-size: 396px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 1399px) {
  .error-items h2 {
    font-size: 290px;
  }
}

@media (max-width: 991px) {
  .error-items h2 {
    font-size: 320px;
  }
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 220px;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 120px;
  }
}

.error-items h3 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .error-items h3 {
    font-size: 30px;
  }
}

.error-items p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.error-items .theme-btn {
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .error-items .theme-btn {
    margin-top: 30px;
  }
}

.error-section {
  position: relative;
  z-index: 9;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .error-section {
    margin-top: 60px;
  }
}

.error-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .error-section .shape {
    display: none;
  }
}

.error-section .shape img {
  width: 100%;
  height: 100%;
}

.footer-widget-wrapper .footer-left-content {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 100px;
  padding-bottom: 55px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-left-content {
    padding-top: 80px;
    padding-bottom: 30px;
    border-right: none;
  }
}

.footer-widget-wrapper .footer-left-content .footer-content-item {
  display: flex;
  align-items: center;
  gap: 65px;
  margin-top: 100px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-left-content .footer-content-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.footer-widget-wrapper .footer-left-content .footer-content-item .contact-info span {
  font-size: 20px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  display: inline-block;
  margin-bottom: 10px;
}

.footer-widget-wrapper .footer-left-content .footer-content-item .contact-info p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  max-width: 246px;
}

.footer-widget-wrapper .footer-left-content .search-widget form {
  width: 100%;
  position: relative;
  max-width: 532px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-left-content .search-widget form {
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-left-content .search-widget form {
    max-width: 532px;
  }
}

.footer-widget-wrapper .footer-left-content .search-widget form input {
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: rgb(75, 75, 75);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 532px;
  border-radius: 100px;
  padding-right: 65px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-left-content .search-widget form input {
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-left-content .search-widget form input {
    max-width: 532px;
  }
}

.footer-widget-wrapper .footer-left-content .search-widget form button {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 100px;
  font-size: 18px;
  background-color: rgb(17, 17, 17);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item {
  display: flex;
  align-items: center;
  gap: 85px;
  margin-top: 110px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-left-content .footer-bottom-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(75, 75, 75);
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item p span {
  font-weight: 500;
  color: rgb(17, 17, 17);
  text-decoration: underline;
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--white);
  line-height: 48px;
  border-radius: 100px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.footer-widget-wrapper .footer-left-content .footer-bottom-item .social-icon a:hover {
  background-color: var(--header);
  color: var(--white);
}

.footer-widget-wrapper .footer-right-content {
  padding-top: 100px;
  padding-bottom: 55px;
  margin-left: 150px;
}

@media (max-width: 1899px) {
  .footer-widget-wrapper .footer-right-content {
    margin-left: 128px;
  }
}

@media (max-width: 1600px) {
  .footer-widget-wrapper .footer-right-content {
    margin-left: 50px;
  }
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-right-content {
    margin-left: 0;
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-right-content {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper .footer-right-content {
    padding-top: 0;
  }
}

.footer-widget-wrapper .footer-right-content .footer-top-content {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-bottom: 150px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-right-content .footer-top-content {
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-right-content .footer-top-content {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper .footer-right-content .footer-top-content h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-right-content .footer-top-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-right-content .footer-top-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper .footer-right-content .footer-top-content h2 {
    font-size: 35px;
  }
}

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

.footer-widget-wrapper .footer-right-content .footer-top-content h2 span {
  font-family: "Instrument Serif", sans-serif;
  font-style: italic;
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items {
  display: flex;
  align-items: center;
  gap: 154px;
  align-items: start;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-right-content .footer-right-contact-items {
    flex-wrap: wrap;
    gap: 70px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper .footer-right-content .footer-right-contact-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .contact-cont h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .contact-cont h4 {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .contact-cont h4 i {
  margin-right: 10px;
  color: rgb(75, 75, 75);
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .contact-cont h4 a {
  color: rgb(75, 75, 75);
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item {
  display: flex;
  align-items: center;
  gap: 114px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item {
    flex-wrap: wrap;
    gap: 100px;
  }
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item .footer-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item .footer-list .list-area li {
  font-size: 16px;
  font-weight: 400;
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item .footer-list .list-area li a {
  color: rgb(75, 75, 75);
}

.footer-widget-wrapper .footer-right-content .footer-right-contact-items .footer-list-item .footer-list .list-area li a:hover {
  color: var(--theme);
  margin-left: 4px;
}

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

.footer-section {
  position: relative;
}

.footer-section::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  height: 1px;
  right: 0;
  width: 1107px;
  top: 300px;
}

@media (max-width: 1899px) {
  .footer-section::before {
    width: 950px;
  }
}

@media (max-width: 1600px) {
  .footer-section::before {
    width: 852px;
  }
}

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

.footer-section::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  height: 352px;
  right: 685px;
  width: 1px;
  bottom: 0;
}

@media (max-width: 1899px) {
  .footer-section::after {
    right: 560px;
  }
}

@media (max-width: 1600px) {
  .footer-section::after {
    right: 530px;
  }
}

@media (max-width: 1399px) {
  .footer-section::after {
    display: none;
  }
}

.footer-widget-wrapper-2 {
  padding: 50px 0 80px;
}

.footer-widget-wrapper-2 .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper-2 .single-footer-widget .widget-title {
  margin-bottom: 30px;
}

.footer-widget-wrapper-2 .single-footer-widget .widget-title h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", serif;
}

.footer-widget-wrapper-2 .single-footer-widget .text {
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  max-width: 292px;
  font-weight: 400;
}

.footer-widget-wrapper-2 .single-footer-widget .list-area li {
  font-size: 16px;
  font-weight: 400;
}

.footer-widget-wrapper-2 .single-footer-widget .list-area li a {
  color: rgb(106, 106, 106);
}

.footer-widget-wrapper-2 .single-footer-widget .list-area li a:hover {
  color: var(--theme2);
  margin-left: 4px;
}

.footer-widget-wrapper-2 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 13px;
}

.footer-widget-wrapper-2 .single-footer-widget .footer-content p {
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  font-weight: 400;
  max-width: 340px;
  margin-bottom: 30px;
}

.footer-widget-wrapper-2 .single-footer-widget .footer-content .search-widget form {
  width: 100%;
  position: relative;
  max-width: 410px;
}

.footer-widget-wrapper-2 .single-footer-widget .footer-content .search-widget form input {
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: rgb(75, 75, 75);
  border-radius: 6px;
  border: 1px solid rgb(243, 236, 255);
  max-width: 410px;
  border-radius: 100px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-2 .single-footer-widget .footer-content .search-widget form input {
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper-2 .single-footer-widget .footer-content .search-widget form input {
    max-width: 532px;
  }
}

.footer-widget-wrapper-2 .single-footer-widget .footer-content .search-widget form button {
  position: absolute;
  right: 8px;
  top: 7px;
  bottom: 7px;
}

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

.footer-widget-wrapper-2 .single-footer-widget .footer-content .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--theme2);
  line-height: 48px;
  border-radius: 100px;
  color: var(--white);
  text-align: center;
}

.footer-widget-wrapper-2 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--header);
  color: var(--white);
}

.footer-bottom-2 {
  border-top: 1px solid rgb(228, 228, 228);
}

.footer-bottom-2 .footer-wrapper-2 {
  padding: 30px 0;
}

.footer-bottom-2 .footer-wrapper-2 p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1399px) {
  .footer-bottom-2 .footer-wrapper-2 p {
    font-size: 17px;
  }
}

.footer-section-3 {
  background-color: rgb(16, 16, 16);
  position: relative;
}

.footer-section-3 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  animation: cir36 10s linear infinite;
}

@media (max-width: 1399px) {
  .footer-section-3 .left-shape {
    display: none;
  }
}

.footer-section-3 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: cir36 10s linear infinite;
}

@media (max-width: 1399px) {
  .footer-section-3 .right-shape {
    display: none;
  }
}

.footer-widget-wrapper-3 {
  padding: 50px 0 80px;
}

.footer-widget-wrapper-3 .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper-3 .single-footer-widget .widget-title {
  margin-bottom: 30px;
}

.footer-widget-wrapper-3 .single-footer-widget .widget-title h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  color: var(--white);
}

.footer-widget-wrapper-3 .single-footer-widget .text {
  color: rgb(188, 188, 188);
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 219px;
  font-weight: 400;
  margin-bottom: 30px;
}

.footer-widget-wrapper-3 .single-footer-widget .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.footer-widget-wrapper-3 .single-footer-widget .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--theme3);
  line-height: 48px;
  color: var(--theme3);
  text-align: center;
  font-size: 20px;
  border-radius: 100px;
}

.footer-widget-wrapper-3 .single-footer-widget .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--header);
}

.footer-widget-wrapper-3 .single-footer-widget .list-area li {
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
}

.footer-widget-wrapper-3 .single-footer-widget .list-area li a {
  color: rgb(255, 255, 255);
}

.footer-widget-wrapper-3 .single-footer-widget .list-area li a:hover {
  color: var(--theme3);
  margin-left: 4px;
}

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

.footer-widget-wrapper-3 .single-footer-widget .footer-content .search-widget form {
  width: 100%;
  position: relative;
  max-width: 368px;
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .search-widget form input {
  background: #1C1F12;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: rgb(255, 255, 255);
  max-width: 368px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 8px;
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .search-widget form input::placeholder {
  color: rgb(255, 255, 255);
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .search-widget form button {
  position: absolute;
  right: 10px;
  top: -5px;
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .term {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .term input {
  width: 12.04px;
  height: 12.04px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(188, 188, 188);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .term input:checked {
  background-color: var(--white);
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .term input:checked::after {
  content: "✓";
  color: var(--header);
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.footer-widget-wrapper-3 .single-footer-widget .footer-content .term label {
  font-size: 14px;
  color: rgb(188, 188, 188);
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}

@media (max-width: 575px) {
  .footer-widget-wrapper-3 .single-footer-widget .footer-content .term label {
    font-size: 12px;
  }
}

.footer-bottom-3 {
  border-top: 1px solid rgb(29, 31, 38);
}

.footer-bottom-3 .footer-wrapper-3 {
  padding: 30px 0;
}

.footer-bottom-3 .footer-wrapper-3 p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 575px) {
  .footer-bottom-3 .footer-wrapper-3 p {
    font-size: 16px;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

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

.section-title span {
  border: 1px solid rgb(75, 75, 75);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 12px;
  line-height: 1;
}

.section-title h2 {
  color: rgb(17, 17, 17);
}

.section-title h2 span {
  font-weight: 400;
  font-style: italic;
  font-family: "Instrument Serif", sans-serif;
  display: block;
  border-radius: 0;
  font-size: 56px;
  border: none;
  padding: 0;
  margin-bottom: 0;
  color: rgb(17, 17, 17);
  text-transform: initial;
}

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

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

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

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

.section-title-2 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

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

.section-title-2 .sub-title {
  background: #F8F8FF;
  border: 1px solid #F3ECFF;
  font-weight: 600;
  color: rgb(103, 29, 214);
  padding: 6px 10px;
  line-height: 1;
  border-radius: 100px;
  font-family: "DM Sans", serif;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title-2 .sub-title img {
  margin-right: 5px;
}

.section-title-2 h2 {
  color: rgb(17, 17, 17);
  font-size: 48px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}

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

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

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

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

.section-title-2 p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  max-width: 786px;
  margin: 0 auto;
}

.section-title-3 {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

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

.section-title-3 .sub-title {
  color: var(--theme3);
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title-3 h2 {
  color: var(--white);
  font-size: 56px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
}

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

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

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

.section-title-3 h2 b {
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.section-title-3 p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(188, 188, 188);
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .section-title-3 p {
    font-size: 16px;
  }
}

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

@media (max-width: 1399px) {
  .section-title-area p br {
    display: none;
  }
}

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

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

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

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

.section-bg-4 {
  background: #F8F8F8;
}

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

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

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

.dark-bg {
  background-color: #010101;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper .about-content .text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  max-width: 714px;
  margin-left: 95px;
  margin-top: 15px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
    margin-bottom: 30px;
    margin-left: 0;
  }
}

.about-wrapper .about-content .icon-item {
  display: flex;
  gap: 24px;
  margin-top: 25px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .icon-item {
    gap: 20px;
  }
}

.about-wrapper .about-content .icon-item .content h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  margin-bottom: 10px;
}

.about-wrapper .about-right-item .about-image {
  overflow: hidden;
  border-radius: 20px;
}

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

.about-wrapper .about-right-item .about-bottom {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  margin-left: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-right-item .about-bottom {
    gap: 0px;
    margin-left: 0;
  }
}

.about-wrapper .about-right-item .about-bottom .content p {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  max-width: 460px;
  color: rgb(75, 75, 75);
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-right-item .about-bottom .content p {
    font-size: 16px;
  }
}

.about-wrapper .about-right-item .about-bottom .content h4 {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 600;
}

.about-wrapper-3 {
  margin-top: 60px;
}

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

.about-wrapper-3 .about-image {
  height: 454px;
  overflow: hidden;
  border-radius: 16px;
}

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

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

@media (max-width: 1399px) {
  .about-wrapper-3 .about-image img {
    object-fit: initial;
  }
}

.about-wrapper-3 .about-content-box {
  background-color: rgb(16, 16, 16);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content-box {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-box {
    padding: 30px;
  }
}

.about-wrapper-3 .about-content-box h3 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 64px;
  font-weight: 800;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content-box h3 {
    font-size: 50px;
  }
}

.about-wrapper-3 .about-content-box p {
  font-weight: 500;
  color: rgb(188, 188, 188);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 24px;
  max-width: 200px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content-box p {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-box p {
    margin-top: 24px;
  }
}

@media (max-width: 1600px) {
  .about-wrapper-4 .about-left-content .section-title h2 span {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-left-content .section-title h2 span {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-left-content .section-title h2 span {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-4 .about-left-content .section-title h2 span {
    font-size: 35px;
  }
}

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

.about-wrapper-4 .about-left-content .text {
  max-width: 393px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-top: 15px;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-left-content .text {
    margin-bottom: 30px;
  }
}

.about-wrapper-4 .about-image {
  position: relative;
  margin-left: 100px;
  margin-right: -70px;
}

@media (max-width: 1600px) {
  .about-wrapper-4 .about-image {
    margin-left: 40px;
    margin-right: -55px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-wrapper-4 .about-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: rgb(106, 82, 224);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.about-wrapper-4 .about-content {
  margin-left: 40px;
}

@media (max-width: 1600px) {
  .about-wrapper-4 .about-content {
    margin-left: 15px;
  }
}

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

.about-wrapper-4 .about-content.style-2 {
  margin-left: 99px;
}

@media (max-width: 1600px) {
  .about-wrapper-4 .about-content.style-2 {
    margin-left: 87px;
  }
}

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

.about-wrapper-4 .about-content .content {
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .content {
    margin-bottom: 30px;
  }
}

.about-wrapper-4 .about-content .content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-wrapper-4 .about-content .content p {
  font-weight: 500;
  max-width: 330px;
  color: rgb(75, 75, 75);
}

@media (max-width: 1600px) {
  .about-wrapper-4 .about-content .content p {
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .content p {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .about-section {
    margin: 0 20px;
  }
}

@media (max-width: 1399px) {
  .about-section {
    margin: 0 0;
  }
}

.brand-box-1 {
  height: 80px;
  line-height: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box-1 .brand-img-1 img {
  transition: all 0.6s ease;
  transform: translateY(0);
}

.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.contact-form-box {
  margin-top: 30px;
}

.contact-form-box .form-clt input,
.contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(75, 75, 75);
  padding-bottom: 15px;
  padding-top: 25px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1399px) {

  .contact-form-box .form-clt input,
  .contact-form-box .form-clt textarea {
    padding-top: 5px;
  }
}

.contact-form-box .form-clt input::placeholder,
.contact-form-box .form-clt textarea::placeholder {
  color: rgb(75, 75, 75);
  resize: none;
}

.contact-form-box .form-clt textarea {
  padding-bottom: 40px;
}

.contact-from-section {
  z-index: 9;
}

.contact-from-section .section-title {
  margin-left: 280px;
}

@media (max-width: 1399px) {
  .contact-from-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.contact-from-section .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .contact-from-section .section-title h2 {
    text-align: center;
  }
}

.contact-from-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .contact-from-section .section-title p {
    margin-left: 0;
    margin: 0 auto;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .contact-from-section .section-title p {
    margin-left: 0;
    max-width: 700px;
  }
}

@media (max-width: 575px) {
  .contact-from-section .section-title p {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}

.contact-from-section.style-2 {
  background-color: var(--white);
  border-radius: 16px;
  margin: 0 15px;
}

.contact-from-section.style-inner {
  border-radius: 16px;
  margin: 2px 15px 0 15px;
  background-color: var(--white);
}

.contact-from-section.style-inner-2 {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  margin: 0 15px;
}

@media (max-width: 575px) {
  .contact-from-section.style-inner-2 {
    margin-top: 5px !important;
  }
}

.contact-from-section.style-inner-2 .bg-shape {
  position: absolute;
  top: -160px;
  left: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 575px) {
  .contact-from-section.style-inner-2 .bg-shape {
    display: none;
  }
}

.contact-from-section.style-inner-2 .bg-shape img {
  width: 100%;
  height: 100%;
}

.conatct-wrapper-2 .contact-content {
  padding: 30px;
  background: #F8F8FF;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.13);
  border-radius: 24px;
}

.conatct-wrapper-2 .contact-content .contact-form-box {
  margin-top: 0 !important;
}

.conatct-wrapper-2 .contact-content .contact-form-box .form-clt input,
.conatct-wrapper-2 .contact-content .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(106, 106, 106);
  border: none;
  background: var(--white);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", serif;
  border-radius: 16px;
  padding: 14px 28px;
}

.conatct-wrapper-2 .contact-content .contact-form-box .form-clt input::placeholder,
.conatct-wrapper-2 .contact-content .contact-form-box .form-clt textarea::placeholder {
  color: rgb(106, 106, 106);
  resize: none;
}

.conatct-wrapper-2 .contact-content .contact-form-box .form-clt textarea {
  padding: 16px 28px 0;
  line-height: initial;
  resize: none;
}

.conatct-wrapper-2 .contact-content .contact-form-box .theme-btn-2 {
  margin-top: 30px;
  border-radius: 14px;
  justify-content: center;
}

@media (max-width: 1399px) {
  .conatct-wrapper-2 .contact-content .contact-form-box .theme-btn-2 {
    margin-top: 15px;
  }
}

.conatct-wrapper-2 .contact-content .contact-form-box span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  margin-top: 0;
}

.conatct-wrapper-2 .contact-content .contact-form-box span i {
  color: rgb(106, 106, 106);
  margin-right: 6px;
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box {
  background-color: var(--white);
  border-radius: 16px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 407px;
  width: 100%;
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box .terms {
  display: flex;
  align-items: center;
  gap: 10px;
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box .terms input {
  width: 26px;
  height: 26px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box .terms input:checked {
  background-color: var(--theme2);
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box .terms input:checked::after {
  content: "✓";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.conatct-wrapper-2 .contact-content .contact-form-box .cheak-box .terms label {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  font-family: "DM Sans", serif;
  cursor: pointer;
}

.conatct-wrapper-2 .contact-content .contact-form-box .termss {
  display: flex;
  align-items: center;
  gap: 10px;
}

.conatct-wrapper-2 .contact-content .contact-form-box .termss input {
  width: 16px;
  height: 16px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(106, 106, 106);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.conatct-wrapper-2 .contact-content .contact-form-box .termss input:checked {
  background-color: var(--theme2);
}

.conatct-wrapper-2 .contact-content .contact-form-box .termss input:checked::after {
  content: "\f00c";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: "Font Awesome 6 Pro";
}

.conatct-wrapper-2 .contact-content .contact-form-box .termss label {
  font-size: 16px;
  color: rgb(106, 106, 106);
  font-weight: 400;
  font-family: "DM Sans", serif;
  cursor: pointer;
}

.conatct-wrapper-2 .map-item {
  margin-left: 20px;
}

@media (max-width: 1399px) {
  .conatct-wrapper-2 .map-item {
    margin-left: 0;
  }
}

.conatct-wrapper-2 .map-item .text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  margin-top: 24px;
  font-family: "DM Sans", serif;
  max-width: 564px;
}

.conatct-wrapper-2 .map-item .contact-map {
  margin-top: 45px;
  position: relative;
}

.conatct-wrapper-2 .map-item .contact-map .shape-1 {
  position: absolute;
  right: -25px;
  top: 80px;
}

@media (max-width: 1399px) {
  .conatct-wrapper-2 .map-item .contact-map .shape-1 {
    right: 30px;
  }
}

.conatct-wrapper-2 .map-item .contact-map .shape-2 {
  position: absolute;
  right: 30px;
  top: 180px;
}

.conatct-wrapper-2 .map-item .contact-map iframe {
  width: 100%;
  height: 525px;
  border-radius: 24px;
  display: block;
}

@media (max-width: 767px) {
  .conatct-wrapper-2 .map-item .contact-map iframe {
    height: 400px;
  }
}

.cta-wrapper-3 .cta-content .theme-btn-3 {
  margin-top: 35px;
  display: inline-block;
}

.cta-wrapper-3 .cta-box {
  background-color: rgb(1, 1, 1);
  padding: 30px 24px;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .cta-wrapper-3 .cta-box {
    padding: 30px 14px;
  }
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt input,
.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(188, 188, 188);
  padding: 15px 20px;
  border: none;
  background: rgb(16, 16, 16);
  text-transform: capitalize;
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgb(16, 16, 16);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt input:hover,
.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt textarea:hover {
  border: 1px solid var(--theme3);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt input::placeholder,
.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt textarea::placeholder {
  color: rgb(188, 188, 188);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select {
  border: none;
  background: rgb(16, 16, 16);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: rgb(188, 188, 188);
  padding-bottom: 18px;
  padding-top: 18px;
  padding-left: 20px;
  border-radius: 0;
  border: 1px solid rgb(16, 16, 16);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select:hover {
  border: 1px solid var(--theme3);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select .current {
  color: rgb(188, 188, 188);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select::after {
  border-bottom: 2px solid rgb(188, 188, 188);
  border-right: 2px solid rgb(188, 188, 188);
  width: 8px;
  height: 8px;
  right: 12px;
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select .list {
  width: 100%;
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .form-clt .form .single-select .list li {
  color: rgb(16, 16, 16);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .terms {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .terms input {
  width: 12.04px;
  height: 12.04px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(188, 188, 188);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .terms input:checked {
  background-color: var(--white);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .terms input:checked::after {
  content: "✓";
  color: var(--header);
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.cta-wrapper-3 .cta-box .contact-form-box-3 .terms label {
  font-size: 14px;
  color: rgb(188, 188, 188);
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}

@media (max-width: 575px) {
  .cta-wrapper-3 .cta-box .contact-form-box-3 .terms label {
    font-size: 12px;
  }
}

.cta-section-3 {
  position: relative;
  z-index: 9;
  background-color: rgb(16, 16, 16);
}

.cta-section-3 .blur-shape {
  position: absolute;
  right: 12%;
  top: -11%;
  z-index: -1;
  z-index: -1;
}

@media (max-width: 1399px) {
  .cta-section-3 .blur-shape {
    display: none;
  }
}

.cta-section-3 .blur-shape img {
  width: 100%;
  height: 100%;
}

.contact-wrapper-3 .contact-left-item .contact-box {
  background-color: var(--theme3);
  padding: 30px;
  border-radius: 6px;
}

.contact-wrapper-3 .contact-left-item .contact-box .icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.contact-wrapper-3 .contact-left-item .contact-box p {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: rgb(1, 1, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 5px;
}

.contact-wrapper-3 .contact-left-item .contact-box a {
  color: rgb(1, 1, 1);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-wrapper-3 .contact-left-item .contact-map {
  margin-top: 24px;
  position: relative;
}

.contact-wrapper-3 .contact-left-item .contact-map .box {
  background: rgba(1, 1, 1, 0.8);
  backdrop-filter: blur(2px);
  padding: 16px;
  position: absolute;
  top: 130px;
  left: 45px;
  text-align: center;
}

.contact-wrapper-3 .contact-left-item .contact-map .box p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-wrapper-3 .contact-left-item .contact-map .box a {
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(255, 255, 255);
}

.contact-wrapper-3 .contact-left-item .contact-map .whatsap-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: rgb(5, 227, 75);
  color: rgb(255, 255, 255);
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-size: 30px;
  border-radius: 10px;
}

.contact-wrapper-3 .contact-left-item .contact-map iframe {
  width: 100%;
  height: 385px;
  display: block;
  border-radius: 8px;
}

.contact-wrapper-3 .contact-content .contact-form {
  margin-top: 30px;
}

.contact-wrapper-3 .contact-content .contact-form .form-clt input,
.contact-wrapper-3 .contact-content .contact-form .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(188, 188, 188);
  padding: 15px 20px;
  border: none;
  background: transparent;
  text-transform: capitalize;
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  border: 1px solid rgb(29, 31, 38);
}

.contact-wrapper-3 .contact-content .contact-form .form-clt input:hover,
.contact-wrapper-3 .contact-content .contact-form .form-clt textarea:hover {
  border: 1px solid var(--theme3);
}

.contact-wrapper-3 .contact-content .contact-form .form-clt input::placeholder,
.contact-wrapper-3 .contact-content .contact-form .form-clt textarea::placeholder {
  color: rgb(188, 188, 188);
}

.contact-wrapper-3 .contact-content .contact-form .theme-btn-3 {
  text-transform: uppercase;
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .contact-us-wrapper-4 .contact-us-content-4 .icon-items {
    margin-bottom: 30px;
  }
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(17, 17, 17, 0.08);
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items .icon img {
  width: 32px;
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items .content p {
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items .content span {
  color: rgb(28, 75, 66);
  font-weight: 500;
  font-size: 20px;
  font-weight: 600;
}

.contact-us-wrapper-4 .contact-us-content-4 .icon-items .content span a {
  color: rgb(28, 75, 66);
}

.contact-us-wrapper-4 .contact-us-from p {
  max-width: 550px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-top: 15px;
}

.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 {
  margin-top: 30px;
}

.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt input,
.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(28, 75, 66);
  padding-bottom: 15px;
  padding-top: 15px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1399px) {

  .contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt input,
  .contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt textarea {
    padding-top: 5px;
  }
}

.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt input::placeholder,
.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt textarea::placeholder {
  color: rgb(28, 75, 66);
  resize: none;
}

.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .form-clt textarea {
  padding-bottom: 30px;
  padding-top: 5px;
}

.contact-us-wrapper-4 .contact-us-from .contact-form-box-4 .theme-btn {
  border: 1px solid rgb(17, 17, 17);
}

.contact-us-section-4 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: var(--white);
  margin: 0 15px;
}

.map-area {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin: 0 15px;
}

.map-area .contact-map iframe {
  width: 100%;
  height: 644px;
  display: block;
}

@media (max-width: 991px) {
  .map-area .contact-map iframe {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .map-area .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .map-area .contact-map iframe {
    height: 350px;
  }
}

.faq-items {
  text-align: center;
  margin-top: 30px;
}

.faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: rgb(16, 16, 16);
  padding: 0;
  border-radius: 8px !important;
}

.faq-items .accordion .accordion-item h2 button {
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  box-shadow: none;
  padding: 24px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

@media (max-width: 1399px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 20px 16px;
    line-height: 140%;
  }
}

.faq-items .accordion .accordion-item .accordion-body {
  background-color: var(--theme3);
  padding-top: 0;
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.faq-items .accordion .accordion-item .accordion-body p {
  color: rgb(1, 1, 1);
  line-height: 28px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 620px;
}

@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(--theme3);
  color: rgb(1, 1, 1) !important;
}

.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: 28px;
  right: 22px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: rgb(1, 1, 1);
  text-align: center;
}

.faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: rgb(255, 255, 255) !important;
}

.faq-items .accordion .accordion-button.collapsed::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: rgb(255, 255, 255);
}

.faq-section {
  position: relative;
}

.faq-section .star-shape {
  position: absolute;
  top: 120px;
  left: 0;
  animation: cir36 10s linear infinite;
}

@media (max-width: 1399px) {
  .faq-section .star-shape {
    display: none;
  }
}

.bg-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.bg-image-section {
  margin: 0 16px;
}

@media (max-width: 1600px) {
  .bg-image-section {
    margin: 0 20px;
  }
}

@media (max-width: 1399px) {
  .bg-image-section {
    margin: 0 16px;
  }
}

.process-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 50px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .process-wrapper {
    padding: 0px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .process-wrapper {
    gap: 30px;
  }
}

.process-wrapper .shape {
  position: absolute;
  left: -10px;
  right: 0;
  top: 32px;
  z-index: -1;
}

.process-wrapper .shape img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .process-wrapper .shape {
    display: none;
  }
}

.process-wrapper .process-card-item {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1399px) {
  .process-wrapper .process-card-item {
    margin-top: 0;
  }
}

.process-wrapper .process-card-item .icon {
  width: 104px;
  height: 104px;
  line-height: 104px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1399px) {
  .process-wrapper .process-card-item .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.process-wrapper .process-card-item .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--theme);
  content: "";
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.process-wrapper .process-card-item .icon img {
  transition: all 0.4s ease-in-out;
}

.process-wrapper .process-card-item .content {
  margin-top: 30px;
}

.process-wrapper .process-card-item .content h3 {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .process-wrapper .process-card-item .content h3 {
    font-size: 25px;
  }
}

.process-wrapper .process-card-item .content p {
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin: 0 auto;
}

.process-wrapper .process-card-item:hover .icon::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
}

.process-wrapper .process-card-item:hover .icon img {
  filter: brightness(0) invert(1);
  animation: jello 1s;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 999;
}

.process-section {
  margin: 0 15px;
  border-radius: 20px;
}

.process-section .section-title {
  margin-left: 440px;
}

@media (max-width: 1399px) {
  .process-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.process-section .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .process-section .section-title h2 {
    text-align: center;
  }
}

.process-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .process-section .section-title p {
    margin: 0 auto;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .process-section .section-title p {
    max-width: 700px;
  }
}

@media (max-width: 575px) {
  .process-section .section-title p {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}

@media (max-width: 1600px) {
  .process-section {
    margin: 0 20px;
  }
}

@media (max-width: 1399px) {
  .process-section {
    margin: 0 15px;
  }
}

.feature-wrapper-2 {
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
  margin-top: 48px;
}

.feature-wrapper-2 .feature-main-item {
  position: relative;
  overflow: hidden;
}

.feature-wrapper-2 .feature-main-item .feature-card-item {
  padding: 38.5px 20px;
  text-align: center;
}

.feature-wrapper-2 .feature-main-item .feature-card-item .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: rgb(243, 236, 255);
  border-radius: 100px;
  margin: 0 auto;
}

.feature-wrapper-2 .feature-main-item .feature-card-item .content {
  margin-top: 40px;
}

.feature-wrapper-2 .feature-main-item .feature-card-item .content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}

.feature-wrapper-2 .feature-main-item .feature-card-item .content p {
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  max-width: 336px;
  margin: 0 auto;
}

.feature-wrapper-2 .feature-main-item .hover-item {
  background-color: var(--theme2);
  padding: 16px 23px;
  transition: all 200ms linear;
  top: 0;
  right: -100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.feature-wrapper-2 .feature-main-item .hover-item .bottom-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.feature-wrapper-2 .feature-main-item .hover-item .content {
  padding-bottom: 30px;
}

.feature-wrapper-2 .feature-main-item .hover-item .content h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  margin-bottom: 5px;
}

.feature-wrapper-2 .feature-main-item .hover-item .content p {
  color: rgb(243, 236, 255);
  margin-bottom: 24px;
}

.feature-wrapper-2 .feature-main-item .hover-item .content .list {
  margin-bottom: 24px;
}

.feature-wrapper-2 .feature-main-item .hover-item .content .list li {
  color: rgb(255, 255, 255);
}

.feature-wrapper-2 .feature-main-item .hover-item .content .list li:not(:last-child) {
  margin-bottom: 5px;
}

.feature-wrapper-2 .feature-main-item .hover-item .content .list li i {
  margin-right: 10px;
  color: rgb(255, 255, 255);
}

.feature-wrapper-2 .feature-main-item .hover-item .content .theme-btn-2 {
  background-color: var(--white);
  color: rgb(0, 0, 0);
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
}

.feature-wrapper-2 .feature-main-item .hover-item .content .theme-btn-2:hover {
  color: var(--white);
}

.feature-wrapper-2 .feature-main-item:hover .hover-item {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.feature-wrapper-2 .feature-bg-box-item {
  background-color: var(--theme2);
  padding: 16px 23px;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .feature-wrapper-2 .feature-bg-box-item {
    padding: 30px 23px;
  }
}

@media (max-width: 991px) {
  .feature-wrapper-2 .feature-bg-box-item {
    padding: 16px 23px;
  }
}

.feature-wrapper-2 .feature-bg-box-item .bottom-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.feature-wrapper-2 .feature-bg-box-item .content h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  margin-bottom: 5px;
}

.feature-wrapper-2 .feature-bg-box-item .content p {
  color: rgb(243, 236, 255);
  margin-bottom: 24px;
}

.feature-wrapper-2 .feature-bg-box-item .content .list {
  margin-bottom: 24px;
}

.feature-wrapper-2 .feature-bg-box-item .content .list li {
  color: rgb(255, 255, 255);
}

.feature-wrapper-2 .feature-bg-box-item .content .list li:not(:last-child) {
  margin-bottom: 5px;
}

.feature-wrapper-2 .feature-bg-box-item .content .list li i {
  margin-right: 10px;
  color: rgb(255, 255, 255);
}

.feature-wrapper-2 .feature-bg-box-item .content .theme-btn-2 {
  background-color: var(--white);
  color: rgb(0, 0, 0);
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
}

.feature-wrapper-2 .feature-bg-box-item .content .theme-btn-2:hover {
  color: var(--white);
}

.showcase-wrapper {
  margin-top: 60px;
  position: relative;
}

@media (max-width: 1399px) {
  .showcase-wrapper {
    margin-top: 30px;
  }
}

.showcase-wrapper .array-button-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .showcase-wrapper .array-button-2 {
    margin-top: 30px;
  }
}

.showcase-wrapper .array-button-2 .array-prev,
.showcase-wrapper .array-button-2 .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: rgb(243, 236, 255);
  color: rgb(86, 0, 214);
  transition: all 0.4s ease-in-out;
  font-size: 22px;
  z-index: 999;
  position: relative;
}

.showcase-wrapper .array-button-2 .array-prev:hover,
.showcase-wrapper .array-button-2 .array-next:hover {
  background-color: var(--theme2);
  color: var(--white);
}

.showcase-wrapper .shwocase-bg-box {
  background-color: var(--theme2);
  padding: 17px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.showcase-wrapper .shwocase-bg-box .icon {
  background-color: var(--white);
  border-radius: 100px;
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
}

.showcase-wrapper .shwocase-bg-box .content {
  margin-top: 30px;
}

.showcase-wrapper .shwocase-bg-box .content h3 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  color: var(--white);
  margin-bottom: 10px;
}

.showcase-wrapper .shwocase-bg-box .content p {
  font-weight: 400;
  font-size: 16px;
  font-family: "DM Sans", serif;
  color: var(--white);
  max-width: 220px;
  margin: 0 auto;
}

.showcase-wrapper .shwocase-bg-box .content .theme-btn-2 {
  background-color: var(--white);
  color: rgb(0, 0, 0);
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.showcase-wrapper .shwocase-bg-box .content .theme-btn-2:hover {
  color: var(--white);
}

.showcase-wrapper .shwocase-bg-box .content-box {
  padding: 14px;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -37px;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  z-index: 999;
  text-align-last: left;
  transition: all 0.4s ease-in-out;
}

.showcase-wrapper .shwocase-bg-box .content-box::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 30px;
  background: var(--white);
  border-radius: 3px;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.showcase-wrapper .shwocase-bg-box .content-box span {
  font-size: 20px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: rgb(0, 0, 0);
}

.showcase-wrapper .shwocase-bg-box .content-box span i {
  margin-right: 4px;
}

.showcase-wrapper .shwocase-bg-box .content-box p {
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  text-align: left;
  max-width: 193px;
}

@media (max-width: 1399px) {
  .showcase-wrapper .shwocase-bg-box .content-box p {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .showcase-wrapper .shwocase-bg-box .content-box p {
    font-size: 16px;
  }
}

.showcase-wrapper .shwocase-bg-box:hover .content-box {
  bottom: 37px;
  opacity: 1;
  visibility: visible;
}

.showcase-wrapper .showcase-card-item {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  background-color: var(--white);
  padding: 45px 30px;
  text-align: center;
  position: relative;
}

.showcase-wrapper .showcase-card-item .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.showcase-wrapper .showcase-card-item .line-shape img {
  width: 100%;
  height: 100%;
}

.showcase-wrapper .showcase-card-item .line-shape-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
}

.showcase-wrapper .showcase-card-item .line-shape-2 img {
  width: 100%;
  height: 100%;
}

.showcase-wrapper .showcase-card-item .line-shape-3 {
  position: absolute;
  left: 0;
  top: 0;
}

.showcase-wrapper .showcase-card-item .line-shape-3 img {
  width: 100%;
  height: 100%;
}

.showcase-wrapper .showcase-card-item .icon {
  background-color: rgb(243, 236, 255);
  border-radius: 100px;
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
}

.showcase-wrapper .showcase-card-item .content {
  margin-top: 30px;
}

.showcase-wrapper .showcase-card-item .content h3 {
  font-weight: 600;
  font-size: 24px;
  font-family: "Outfit", sans-serif;
  margin-bottom: 15px;
}

.showcase-wrapper .showcase-card-item .content p {
  font-weight: 400;
  font-size: 16px;
  font-family: "DM Sans", serif;
  color: rgb(106, 106, 106);
  max-width: 220px;
  margin: 0 auto;
}

.success-stories-wrapper .success-stories-content .text {
  font-family: "DM Sans", serif;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  margin-bottom: 40px;
  max-width: 400px;
}

@media (max-width: 1399px) {
  .success-stories-wrapper .success-stories-content .text {
    margin-bottom: 30px;
  }
}

.success-stories-wrapper .success-right-item {
  position: relative;
}

.success-stories-wrapper .success-right-item .shape {
  position: absolute;
  top: -45px;
  left: -110px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .success-stories-wrapper .success-right-item .shape {
    display: none;
  }
}

.success-stories-wrapper .success-right-item .success-stories-image {
  position: relative;
}

.success-stories-wrapper .success-right-item .success-stories-image .video-btn {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: rgba(243, 236, 255, 0.7);
  backdrop-filter: blur(2px);
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  color: var(--theme2);
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.success-stories-wrapper .success-right-item .success-stories-image .radio-shape {
  position: absolute;
  bottom: 38px;
  left: 38px;
  max-width: 425px;
}

@media (max-width: 1399px) {
  .success-stories-wrapper .success-right-item .success-stories-image .radio-shape {
    display: none;
  }
}

.success-stories-wrapper .success-right-item .success-stories-image .radio-shape img {
  border-radius: 0;
}

.success-stories-wrapper .success-right-item .success-stories-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.smart-agency-section {
  background-color: rgb(243, 243, 255);
}

.smart-agency-wrapper .nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .smart-agency-wrapper .nav {
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.smart-agency-wrapper .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "DM Sans", serif;
  text-transform: capitalize;
  color: rgb(106, 106, 106);
  padding: 10px 32px;
  border-radius: 50px;
  border: 1px solid rgb(243, 236, 255);
  background-color: var(--white);
}

@media (max-width: 575px) {
  .smart-agency-wrapper .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}

.smart-agency-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--theme2);
  color: var(--white);
}

.smart-agency-wrapper .nav .nav-item .nav-link.active img {
  filter: brightness(0) invert(1);
}

.smart-agency-wrapper .smart-agency-box-items {
  background-color: var(--white);
  border-radius: 24px;
  padding: 34px 20px;
  text-align: center;
  position: relative;
}

@media (max-width: 1399px) {
  .smart-agency-wrapper .smart-agency-box-items {
    padding: 30px 20px;
  }
}

.smart-agency-wrapper .smart-agency-box-items::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme2);
  transition: all 500ms ease;
  border-radius: 8px;
}

.smart-agency-wrapper .smart-agency-box-items .icon {
  width: 70px;
  line-height: 70px;
  height: 70px;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  background-color: rgb(243, 236, 255);
}

.smart-agency-wrapper .smart-agency-box-items .content {
  margin-top: 40px;
}

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

.smart-agency-wrapper .smart-agency-box-items .content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}

.smart-agency-wrapper .smart-agency-box-items .content p {
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  max-width: 234px;
  margin: 0 auto;
}

.smart-agency-wrapper .smart-agency-box-items:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.smart-agency-wrapper .smart-agency-box-items:hover .icon {
  background-color: var(--white);
  position: relative;
  z-index: 999;
}

.smart-agency-wrapper .smart-agency-box-items:hover .icon img {
  animation: jello 1s;
}

.smart-agency-wrapper .smart-agency-box-items:hover .content {
  position: relative;
  z-index: 999;
}

.smart-agency-wrapper .smart-agency-box-items:hover .content h3 {
  color: var(--white);
}

.smart-agency-wrapper .smart-agency-box-items:hover .content p {
  color: var(--white);
}

.why-choose-us-wrapper .choose-us-image-items {
  display: flex;
  align-items: start;
  gap: 0;
}

.why-choose-us-wrapper .choose-us-image-items .left-item {
  display: grid;
  gap: 30px;
}

.why-choose-us-wrapper .choose-us-image-items .left-item .choose-us-image img {
  width: 100%;
  height: 100%;
}

.why-choose-us-wrapper .choose-us-image-items .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.why-choose-us-wrapper .why-choose-us-content {
  margin-left: 90px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper .why-choose-us-content {
    margin-left: 0;
  }
}

.why-choose-us-wrapper .why-choose-us-content .text {
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 576px;
  font-weight: 500;
  color: rgb(188, 188, 188);
  margin-top: 15px;
}

.why-choose-us-wrapper .why-choose-us-content .choose-us-item {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper .why-choose-us-content .choose-us-item {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-wrapper .why-choose-us-content .choose-us-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.why-choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item .icon {
  border: 1px solid var(--theme3);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.why-choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item .icon img {
  width: 35px;
}

.why-choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 135%;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item h3 {
    font-size: 20px;
  }
}

.process-wrapper-3 {
  position: relative;
}

.process-wrapper-3::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: rgb(29, 31, 38);
  left: 0;
  right: 0;
  top: 55px;
}

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

.process-wrapper-3 .top-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 160px;
  padding-right: 160px;
  margin-bottom: 30px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .process-wrapper-3 .top-step {
    display: none;
  }
}

.process-wrapper-3 .top-step span {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.process-wrapper-3 .dots-container {
  display: flex;
  width: 100%;
  z-index: 999;
  justify-content: space-between;
  padding-left: 176px;
  padding-right: 180px;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .process-wrapper-3 .dots-container {
    display: none;
  }
}

.process-wrapper-3 .dots-container .dot {
  width: 26px;
  height: 26px;
  background-color: rgb(188, 188, 188);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: -15px;
  z-index: 999;
  position: relative;
}

.process-wrapper-3 .dots-container .dot::before {
  position: absolute;
  content: "";
  background-color: var(--theme3);
  width: 16px;
  height: 16px;
  border-radius: 100px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-wrapper-3 .dots-container .dot.active {
  transform: scale(1.2);
}

.process-wrapper-3 .dots-container .dot.active::before {
  background-color: var(--theme);
}

.process-wrapper-3 .process-card-items-3 {
  text-align: center;
  margin-top: 30px;
}

.process-wrapper-3 .process-card-items-3 .icon {
  text-align: center;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.process-wrapper-3 .process-card-items-3 .icon-2 {
  opacity: 1;
  visibility: visible;
  text-align: center;
  margin: 0 auto;
  display: none;
  transition: all 0.4s ease-in-out;
}

.process-wrapper-3 .process-card-items-3 .content {
  margin-top: 35px;
}

.process-wrapper-3 .process-card-items-3 .content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process-wrapper-3 .process-card-items-3 .content p {
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  color: rgb(188, 188, 188);
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 276px;
}

.process-wrapper-3 .swiper-slide-active .process-card-items-3 .icon {
  display: none;
}

.process-wrapper-3 .swiper-slide-active .process-card-items-3 .icon-2 {
  display: block;
}

.our-story-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  padding: 24px;
  margin-top: 30px;
}

@media (max-width: 1600px) {
  .our-story-box {
    gap: 30px;
    padding: 35px;
  }
}

@media (max-width: 1399px) {
  .our-story-box {
    justify-content: space-between;
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .our-story-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-story-box .story-content {
  margin-left: 16px;
}

@media (max-width: 1600px) {
  .our-story-box .story-content {
    margin-left: 0;
  }
}

.our-story-box .story-content span {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.our-story-box .story-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 1600px) {
  .our-story-box .story-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 1399px) {
  .our-story-box .story-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 1399px) {
  .our-story-box .story-content h3 br {
    display: none;
  }
}

.our-story-box .story-content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 350px;
  color: rgb(75, 75, 75);
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .our-story-box .story-content p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.our-story-box .story-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.our-story-box-2 {
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  padding: 24px;
  margin-top: 30px;
}

.our-story-box-2 .story-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.our-story-box-2 .story-content {
  margin-top: 26px;
}

@media (max-width: 1600px) {
  .our-story-box-2 .story-content {
    margin-top: 20px;
  }
}

@media (max-width: 1399px) {
  .our-story-box-2 .story-content {
    margin-top: 26px;
  }
}

.our-story-box-2 .story-content.style-2 {
  margin-top: 8px;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .our-story-box-2 .story-content.style-2 {
    margin-top: 0;
  }
}

.our-story-box-2 .story-content.style-2 p {
  max-width: 283px;
}

.our-story-box-2 .story-content span {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.our-story-box-2 .story-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.our-story-box-2 .story-content p {
  font-size: 16px;
  font-weight: 500;
  max-width: 273px;
  color: rgb(75, 75, 75);
  margin-top: 15px;
}

.our-story-section .section-title {
  margin-left: 485px;
}

@media (max-width: 1399px) {
  .our-story-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.our-story-section .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .our-story-section .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.our-story-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .our-story-section .section-title p {
    margin: 0 auto;
  }
}

.our-achievement-wrapper {
  margin-top: 48px;
}

.our-achievement-wrapper .achievement-image {
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-image {
    margin-bottom: 30px;
  }
}

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

.our-achievement-wrapper .achievement-count-item {
  display: flex;
  align-items: center;
  gap: 150px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-count-item {
    gap: 50px;
  }
}

.our-achievement-wrapper .achievement-count-item .achievement-count h3 {
  font-size: 56px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-count-item .achievement-count h3 {
    font-size: 50px;
  }
}

.our-achievement-wrapper .achievement-count-item .achievement-count p {
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.our-achievement-wrapper .achievement-award-item {
  margin-left: 70px;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-award-item {
    margin-left: 0;
  }
}

.our-achievement-wrapper .achievement-award-item .award-item {
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px;
}

@media (max-width: 1600px) {
  .our-achievement-wrapper .achievement-award-item .award-item {
    padding: 20px 0;
  }
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-award-item .award-item {
    gap: 30px;
    padding: 25px 0;
  }
}

@media (max-width: 991px) {
  .our-achievement-wrapper .achievement-award-item .award-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-achievement-wrapper .achievement-award-item .award-item.style-2 {
  border-top: none;
}

.our-achievement-wrapper .achievement-award-item .award-item .award-content h4 {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-award-item .award-item .award-content h4 {
    font-size: 25px;
  }
}

.our-achievement-wrapper .achievement-award-item .award-item .award-content p {
  max-width: 532px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .our-achievement-wrapper .achievement-award-item .award-item .award-content p {
    font-size: 16px;
  }
}

.our-achievement-section .section-title {
  margin-left: 485px;
}

@media (max-width: 1600px) {
  .our-achievement-section .section-title {
    margin-left: 400px;
  }
}

@media (max-width: 1399px) {
  .our-achievement-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.our-achievement-section .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .our-achievement-section .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.our-achievement-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .our-achievement-section .section-title p {
    margin: 0 auto;
  }
}

.why-choose-us-box-items-4 {
  padding: 60px 32px 15px;
  height: 100%;
  background: var(--white);
  box-shadow: 10px 10px 40px rgba(75, 57, 165, 0.1);
  border-radius: 16px;
  position: relative;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .why-choose-us-box-items-4 {
    padding: 35px 30px;
    height: initial;
  }
}

.why-choose-us-box-items-4::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme);
  border-radius: 12px;
}

.why-choose-us-box-items-4 .content {
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .why-choose-us-box-items-4 .content {
    margin-top: 30px;
  }
}

.why-choose-us-box-items-4 .content h3 {
  font-size: 28px;
  font-weight: 600;
}

.why-choose-us-box-items-4 .content p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .why-choose-us-box-items-4 .content p {
    font-size: 16px;
  }
}

.why-choose-us-box-items-4:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.why-choose-us-box-items-4:hover .icon img {
  filter: brightness(0) invert(1);
  animation: jello 1s;
}

.why-choose-us-box-items-4:hover .content {
  position: relative;
  z-index: 9;
}

.why-choose-us-box-items-4:hover .content h3 {
  color: var(--white);
}

.why-choose-us-box-items-4:hover .content p {
  color: var(--white);
}

.why-choose-us-section-4 .section-title {
  margin-left: 485px;
}

@media (max-width: 1600px) {
  .why-choose-us-section-4 .section-title {
    margin-left: 400px;
  }
}

@media (max-width: 1399px) {
  .why-choose-us-section-4 .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.why-choose-us-section-4 .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .why-choose-us-section-4 .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.why-choose-us-section-4 .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .why-choose-us-section-4 .section-title p {
    margin: 0 auto;
  }
}

.success-stories-section {
  position: relative;
}

.success-stories-section .progress-circle-item {
  position: absolute;
  right: 406px;
  top: 230px;
  z-index: 999;
  background-color: #F3ECFF;
  border-radius: 100px;
}

@media (max-width: 1899px) {
  .success-stories-section .progress-circle-item {
    right: 270px;
  }
}

@media (max-width: 1600px) {
  .success-stories-section .progress-circle-item {
    right: 150px;
  }
}

@media (max-width: 1399px) {
  .success-stories-section .progress-circle-item {
    display: none;
  }
}

.success-stories-section .progress-circle-item .progress-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}

.success-stories-section .progress-circle-item .progress-wrap svg {
  transform: rotate(-90deg);
}

.success-stories-section .progress-circle-item .progress-wrap circle {
  fill: none;
  stroke-width: 18;
}

.success-stories-section .progress-circle-item .progress-wrap .bg {
  stroke: rgba(86, 0, 214, 0.22);
}

.success-stories-section .progress-circle-item .progress-wrap .progress {
  stroke: rgb(86, 0, 214);
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
}

.success-stories-section .progress-circle-item .progress-wrap .progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-stories-section .progress-circle-item .progress-wrap .progress-text h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.success-stories-section .progress-circle-item .progress-wrap .progress-text span {
  font-size: 14px;
  color: #666;
}

.hero-1 {
  padding: 200px 0 100px;
  border-top: 1px solid rgb(229, 229, 229);
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 180px 0 100px;
  }
}

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

.hero-1 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}

.hero-1 .hero-content span {
  font-size: 96px;
  font-weight: 400;
  font-family: "Instrument Serif", sans-serif;
  color: rgb(17, 17, 17);
  font-style: italic;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content span {
    font-size: 80px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-content span {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content span {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content span {
    font-size: 33px;
  }
}

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

.hero-1 .hero-content h1 {
  font-size: 96px;
  color: rgb(17, 17, 17);
  font-weight: 400;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 80px;
  }
}

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

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

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

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

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 30px;
  }
}

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

.hero-1 .hero-content .hero-button .theme-btn {
  border-radius: 12px;
  padding: 12px 30px;
}

.hero-1 .hero-content .hero-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgb(17, 17, 17);
  color: rgb(17, 17, 17);
}

.hero-1 .hero-content .hero-button .theme-btn.style-2::before {
  background-color: var(--header);
}

.hero-1 .hero-content .hero-button .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.hero-1 .hero-image {
  max-width: 570px;
  margin-left: 315px;
  position: relative;
}

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

.hero-1 .hero-image .text-circles {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  fill: rgba(255, 255, 255, 0.65);
  stroke-width: 0.863px;
  stroke: var(--color-Border, #DDE4E3);
  backdrop-filter: blur(12.9473676682px);
  background-color: rgba(255, 255, 255, 0.65);
  position: absolute;
  left: -60px;
  top: 38%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .hero-1 .hero-image .text-circles {
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
  }
}

.hero-1 .hero-image .text-circles img {
  width: initial;
  height: initial;
  filter: brightness(0) saturate(100%);
}

.hero-1 .hero-image .text-circles .circle360 {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  animation: circle360 10s linear infinite;
}

.hero-1 .hero-image .text-circles .shapee {
  transform: translate(-50%, -50%);
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-1 .hero-bottom {
  position: absolute;
  bottom: 100px;
  right: 36.5%;
}

@media (max-width: 1600px) {
  .hero-1 .hero-bottom {
    right: 32.5%;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-bottom {
    display: none;
  }
}

.hero-1 .hero-bottom .video-button {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: end;
  margin-bottom: 35px;
}

.hero-1 .hero-bottom .video-button span {
  font-size: 15px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  font-family: "Urbanist", sans-serif;
  font-style: italic;
  line-height: 130%;
}

.hero-1 .hero-bottom .video-button .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  color: rgb(0, 0, 0);
}

.hero-1 .hero-bottom p {
  font-size: 13px;
  font-weight: 600;
  color: rgb(75, 75, 75);
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
  max-width: 223px;
  text-align: right;
}

.hero-2 {
  position: relative;
  z-index: 9;
  padding-top: 160px;
}

.hero-2 .left-shape {
  position: absolute;
  left: 0;
  top: 300px;
}

@media (max-width: 1399px) {
  .hero-2 .left-shape {
    display: none;
  }
}

.hero-2 .right-shape {
  position: absolute;
  right: 0;
  top: 200px;
}

@media (max-width: 1399px) {
  .hero-2 .right-shape {
    display: none;
  }
}

.hero-2 .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-2 .bg-shape {
    display: none;
  }
}

.hero-2 .bg-shape img {
  width: 100%;
  height: 100%;
}

.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  z-index: 1;
  bottom: -67%;
  top: initial;
}

@media (max-width: 1399px) {
  .hero-2::before {
    display: none;
  }
}

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

.hero-2 .hero-content span {
  background: #F8F8FF;
  border: 1px solid #F3ECFF;
  font-weight: 600;
  color: rgb(103, 29, 214);
  padding: 6px 10px;
  line-height: 1;
  border-radius: 100px;
  font-family: "DM Sans", serif;
}

.hero-2 .hero-content span img {
  margin-right: 5px;
}

.hero-2 .hero-content h1 {
  font-size: 64px;
  font-weight: 600;
  margin-top: 15px;
  font-family: "Outfit", sans-serif;
  margin-bottom: 15px;
}

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

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

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

.hero-2 .hero-content h1 b {
  color: var(--theme2);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-2 .hero-content p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  margin: 0 auto;
}

.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content .hero-button {
    gap: 10px;
  }
}

.hero-2 .hero-content .hero-button .theme-btn-2.style-2 {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(222, 222, 222);
  color: rgb(0, 0, 0);
}

.hero-2 .hero-content .hero-button .theme-btn-2.style-2::before {
  background-color: var(--theme2);
}

.hero-2 .hero-content .hero-button .theme-btn-2.style-2:hover {
  color: var(--white);
}

.hero-2 .hero-image {
  border-radius: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .hero-2 .hero-image {
    margin-top: 10px;
  }
}

.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 10px solid rgb(243, 236, 255);
}

.hero-2 .hero-image .hero-small {
  position: absolute;
  top: 200px;
  left: -55px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-image .hero-small {
    top: 0;
    left: 0;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-image .hero-small {
    max-width: 200px;
  }
}

.hero-2 .hero-image .hero-small img {
  border: 8px solid var(--white);
}

.hero-3 {
  padding: 180px 0 120px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .hero-3 {
    padding: 170px 0 100px;
  }
}

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

.hero-3 .hero-shape {
  position: absolute;
  right: 0;
  top: -60px;
  z-index: -1;
}

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

.hero-3 .hero-shape img {
  width: 100%;
  height: 100%;
}

.hero-3 .hero-content span {
  color: var(--theme3);
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-3 .hero-content h1 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 115%;
  margin-bottom: 10px;
  margin-top: 5px;
}

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

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

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

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

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

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

.hero-3 .hero-content h2 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 100%;
  margin-left: 50px;
  font-style: italic;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h2 {
    margin-left: 0;
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h2 {
    font-size: 32px;
  }
}

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

.hero-3 .hero-content h2::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  bottom: 0;
  right: 63px;
  height: 1px;
  width: 400px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h2::before {
    display: none;
  }
}

.hero-3 .hero-content h2 img {
  margin-right: 5px;
}

.hero-3 .hero-content .hero-bottom {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-top: 44px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-bottom {
    gap: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content .hero-bottom {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.hero-3 .hero-content .hero-bottom p {
  color: rgb(188, 188, 188);
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 272px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-bottom .theme-btn-3 {
    padding: 12px 25px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content .hero-bottom .theme-btn-3 {
    padding: 12px 32px;
  }
}

.hero-3 .hero-image {
  margin-left: 15px;
  max-width: 558px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-image {
    margin-left: 0;
    max-width: initial;
  }
}

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

.news-wrapper {
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .news-wrapper {
    margin-top: 30px;
  }
}

.news-wrapper .news-card-items {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 16px;
  background-color: var(--white);
}

@media (max-width: 1399px) {
  .news-wrapper .news-card-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.news-wrapper .news-card-items .news-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  height: 464px;
}

@media (max-width: 1399px) {
  .news-wrapper .news-card-items .news-image {
    height: 238px;
    flex-basis: 100%;
  }
}

@media (max-width: 991px) {
  .news-wrapper .news-card-items .news-image {
    height: 267px;
  }
}

.news-wrapper .news-card-items .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  display: inline-block;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .news-wrapper .news-card-items .news-image img {
    border-radius: 16px;
    object-fit: cover;
  }
}

.news-wrapper .news-card-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-wrapper .news-card-items .news-content {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 1399px) {
  .news-wrapper .news-card-items .news-content {
    padding: 0 20px 20px;
  }
}

.news-wrapper .news-card-items .news-content .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news-wrapper .news-card-items .news-content .top-content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.news-wrapper .news-card-items .news-content .top-content span {
  border: 1px solid rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 600;
  color: rgb(75, 75, 75);
  line-height: 1;
  padding: 5px 12px;
  border-radius: 100px;
}

.news-wrapper .news-card-items .news-content h3 {
  font-size: 37px;
  font-weight: 600;
  margin-bottom: 100px;
}

@media (max-width: 1600px) {
  .news-wrapper .news-card-items .news-content h3 {
    font-size: 33px;
  }
}

@media (max-width: 1399px) {
  .news-wrapper .news-card-items .news-content h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .news-wrapper .news-card-items .news-content h3 br {
    display: none;
  }
}

.news-wrapper .news-card-items:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.news-wrapper .news-card-items:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-wrapper .news-cards-items {
  border-radius: 16px;
  background-color: var(--white);
}

.news-wrapper .news-cards-items .news-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-wrapper .news-cards-items .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: inline-block;
  transition: all 500ms ease;
}

.news-wrapper .news-cards-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-wrapper .news-cards-items .news-content {
  padding: 35px 30px;
}

@media (max-width: 1600px) {
  .news-wrapper .news-cards-items .news-content {
    padding: 50px 25px;
  }
}

@media (max-width: 1399px) {
  .news-wrapper .news-cards-items .news-content {
    padding: 35px 20px;
  }
}

@media (max-width: 991px) {
  .news-wrapper .news-cards-items .news-content {
    padding: 35px 30px;
  }
}

.news-wrapper .news-cards-items .news-content .top-content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 17px;
}

@media (max-width: 1600px) {
  .news-wrapper .news-cards-items .news-content .top-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 1399px) {
  .news-wrapper .news-cards-items .news-content .top-content {
    margin-bottom: 17px;
  }
}

.news-wrapper .news-cards-items .news-content .top-content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.news-wrapper .news-cards-items .news-content .top-content span {
  border: 1px solid rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 600;
  color: rgb(75, 75, 75);
  line-height: 1;
  padding: 5px 12px;
  border-radius: 100px;
}

.news-wrapper .news-cards-items .news-content h3 {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .news-wrapper .news-cards-items .news-content h3 br {
    display: none;
  }
}

.news-wrapper .news-cards-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-wrapper .news-cards-items .news-content h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.news-wrapper .news-cards-items .news-content .link-btn {
  display: inline-block;
  margin-top: 26px;
  display: none;
}

@media (max-width: 1399px) {
  .news-wrapper .news-cards-items .news-content .link-btn {
    display: block;
  }
}

.news-wrapper .news-cards-items:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.news-wrapper .news-cards-items:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-section {
  border-radius: 16px;
  margin: 0 16px;
  background-color: rgb(248, 248, 248);
}

@media (max-width: 1600px) {
  .news-section {
    margin: 0 20px;
  }
}

@media (max-width: 1399px) {
  .news-section {
    margin: 0 16px;
  }
}

.news-card-items-2 {
  margin-top: 30px;
}

.news-card-items-2 .news-image {
  position: relative;
}

.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
}

.news-card-items-2 .news-image span {
  font-size: 14px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-family: "DM Sans", serif;
  background-color: rgba(243, 236, 255, 0.7);
  border-radius: 8px;
  padding: 6px 10px;
  position: absolute;
  top: 16px;
  left: 16px;
  line-height: 1;
}

.news-card-items-2 .news-image .icon {
  width: 82px;
  height: 82px;
  line-height: 82px;
  text-align: center;
  border-radius: 100px;
  background-color: rgb(243, 236, 255);
  color: var(--theme2);
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-image .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 1199px) {
  .news-card-items-2 .news-image .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
}

@media (max-width: 991px) {
  .news-card-items-2 .news-image .icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
}

.news-card-items-2 .news-image .icon img {
  width: initial;
  height: initial;
}

.news-card-items-2 .news-content {
  margin-top: 30px;
}

.news-card-items-2 .news-content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}

.news-card-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-items-2 .news-content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.news-card-items-2 .news-content p {
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  max-width: 384px;
  margin-top: 5px;
}

.news-card-items-2 .news-content .tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.news-card-items-2 .news-content .tags span {
  font-weight: 500;
  color: rgb(0, 0, 0);
  border-radius: 8px;
  background-color: rgb(243, 236, 255);
  padding: 8px 10px;
  line-height: 1;
}

.news-card-items-2:hover .news-image .icon {
  background-color: var(--theme2);
}

.news-card-items-2:hover .news-image .icon img {
  filter: brightness(0) invert(1);
}

.news-section-2 .section-title-area .theme-btn-2 {
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .news-section-2 .section-title-area .theme-btn-2 {
    margin-top: 0;
  }
}

.news-section-2 .array-button-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .news-section-2 .array-button-2 {
    margin-top: 30px;
  }
}

.news-section-2 .array-button-2 .array-prev,
.news-section-2 .array-button-2 .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: rgb(243, 236, 255);
  color: rgb(86, 0, 214);
  transition: all 0.4s ease-in-out;
  font-size: 22px;
}

.news-section-2 .array-button-2 .array-prev:hover,
.news-section-2 .array-button-2 .array-next:hover {
  background-color: var(--theme2);
  color: var(--white);
}

.news-card-items-3 {
  margin-top: 30px;
}

.news-card-items-3 .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
  border-radius: 12px;
}

.news-card-items-3 .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-card-items-3 .news-image .news-content {
  position: absolute;
  left: 26px;
  bottom: 30px;
  z-index: 999;
}

.news-card-items-3 .news-image .news-content span {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: rgb(255, 255, 255);
  background: rgba(1, 1, 1, 0.4);
  backdrop-filter: blur(2px);
  padding: 8px 10px;
  margin-bottom: 0;
  display: inline-block;
  line-height: 1;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.news-card-items-3 .news-image .news-content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  color: rgb(156, 159, 170);
  background-color: rgb(1, 1, 1);
  padding: 5px 24px;
  max-width: 177px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}

.news-card-items-3 .news-image .news-content h3 {
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--white);
  padding: 12px 24px;
  max-width: 252px;
  font-size: 16px;
  line-height: 105%;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}

.news-card-items-3 .news-image .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: rgb(1, 1, 1);
}

.news-card-items-3 .news-image .news-content h3 a:hover {
  color: rgb(1, 1, 1);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, rgb(1, 1, 1) 0%, rgb(1, 1, 1) 100%);
}

.news-card-items-3 .news-image .circle-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 98px;
  height: 98px;
  background: rgba(196, 239, 23, 0.63);
  backdrop-filter: blur(2px);
  border-radius: 58.3647px;
  transform: rotate(27.38deg);
  color: rgb(1, 1, 1);
  font-size: 10px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 999;
  text-align: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.news-card-items-3 .news-image .circle-icon img {
  width: 20px;
  height: 20px;
  display: block;
  width: initial;
  height: initial;
  transform: initial;
  opacity: initial;
  filter: initial;
  position: initial;
  transform: rotate(-25deg);
}

.news-card-items-3:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.news-card-items-3:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-card-items-3:hover .news-image .circle-icon {
  right: 20px;
  visibility: visible;
  opacity: 1;
}

.news-card-items-3:hover .news-image .circle-icon img {
  transform: rotate(-25deg);
}

.news-section-3 .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}

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

@media (max-width: 575px) {
  .news-section-3 .nav {
    gap: 10px;
  }
}

.news-section-3 .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 0px;
  background-color: rgb(28, 31, 18);
}

@media (max-width: 575px) {
  .news-section-3 .nav .nav-item .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.news-section-3 .nav .nav-item .nav-link.active {
  background-color: var(--theme3);
  color: rgb(1, 1, 1);
}

.news-section-3 .news-button {
  margin-top: 40px;
}

.news-details-post-item {
  text-align: center;
  max-width: 872px;
  width: 100%;
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .news-details-post-item {
    margin-left: 0;
    max-width: initial;
    width: initial;
  }
}

.news-details-post-item .news-details-image {
  position: relative;
}

.news-details-post-item .news-details-image .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 33px;
  left: 26px;
}

.news-details-post-item .news-details-image .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--white);
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-details-post-item .news-details-image .social-icon a:hover {
  background-color: var(--white);
  color: var(--header);
}

.news-details-post-item .news-details-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 29.94%);
  border-radius: 16px;
}

.news-details-post-item .news-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.news-details-post-item .news-details-content {
  text-align: left;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content {
    margin-top: 30px;
  }
}

.news-details-post-item .news-details-content .top-list-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 18px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .top-list-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.news-details-post-item .news-details-content .top-list-item .list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-details-post-item .news-details-content .top-list-item .list span {
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.news-details-post-item .news-details-content .top-list-item .list span b {
  font-weight: 600;
  color: rgb(17, 17, 17);
}

.news-details-post-item .news-details-content .top-list-item .list-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-details-post-item .news-details-content .top-list-item .list-2 span {
  border: 1px solid rgb(75, 75, 75);
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 600;
  padding: 2px 15px;
  border-radius: 100px;
}

.news-details-post-item .news-details-content h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 35px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .news-details-post-item .news-details-content h2 {
    font-size: 30px;
  }
}

.news-details-post-item .news-details-content p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(75, 75, 75);
  margin-bottom: 24px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.news-details-post-item .news-details-content .sideber-box {
  display: flex;
  align-items: center;
  gap: 38px;
  background: var(--white);
  box-shadow: 0px 4px 17px rgba(13, 23, 52, 0.07);
  border-radius: 16px;
  padding: 55px 13px 55px 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .sideber-box {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.news-details-post-item .news-details-content .sideber-box .content p {
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  font-family: "Instrument Serif", sans-serif;
  margin-bottom: 10px;
  color: rgb(17, 17, 17);
  line-height: 140%;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .sideber-box .content p {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .news-details-post-item .news-details-content .sideber-box .content p {
    font-size: 20px;
  }
}

.news-details-post-item .news-details-content .sideber-box .content span {
  color: rgb(28, 75, 66);
  font-size: 12px;
  font-weight: 600;
}

.news-details-post-item .news-details-content .details-thumb {
  overflow: hidden;
  border-radius: 16px;
}

.news-details-post-item .news-details-content .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.news-details-post-item .news-details-content .preview-box {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(13, 23, 52, 0.1);
  padding: 30px 40px;
  margin-bottom: 55px;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .preview-box {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.news-details-post-item .news-details-content .preview-box .preview-content span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(75, 75, 75);
}

.news-details-post-item .news-details-content .preview-box .preview-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.news-details-post-item .news-details-content .preview-box .preview-content.style-2 span {
  text-align: right;
  display: block;
}

.news-details-post-item .news-details-content .preview-box .preview-content.style-2 h3 {
  text-align: right;
}

.news-details-post-item .news-details-content .comments-area .comments-heading {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-post-item .news-details-content .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-post-item .news-details-content .comments-area .comments-heading h4 {
  font-size: 28px;
  font-weight: 600;
}

.news-details-post-item .news-details-content .comments-area .blog-single-comment {
  border-bottom: 1px solid rgb(221, 228, 227);
  padding-top: 30px;
  padding-bottom: 30px;
}

.news-details-post-item .news-details-content .comments-area .blog-single-comment.style-2 {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .comments-area .blog-single-comment.style-2 {
    margin-left: 0;
  }
}

.news-details-post-item .news-details-content .comments-area .blog-single-comment.bb-none {
  border: none;
}

@media (max-width: 575px) {
  .news-details-post-item .news-details-content .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-post-item .news-details-content .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}

.news-details-post-item .news-details-content .comments-area .blog-single-comment .content .reply {
  font-weight: 700;
  font-size: 14px;
  color: rgb(17, 17, 17);
  text-decoration: underline;
}

.news-details-post-item .news-details-content .comment-form-wrap {
  background-color: rgb(251, 251, 251);
  border-radius: 24px;
  padding: 48px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .comment-form-wrap {
    padding: 30px;
    margin-top: 10px;
  }
}

.news-details-post-item .news-details-content .comment-form-wrap h6 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
}

.news-details-post-item .news-details-content .comment-form-wrap .form-clt input,
.news-details-post-item .news-details-content .comment-form-wrap .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgb(28, 75, 66);
  padding-bottom: 15px;
  padding-top: 15px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1399px) {

  .news-details-post-item .news-details-content .comment-form-wrap .form-clt input,
  .news-details-post-item .news-details-content .comment-form-wrap .form-clt textarea {
    padding-top: 5px;
  }
}

.news-details-post-item .news-details-content .comment-form-wrap .form-clt input::placeholder,
.news-details-post-item .news-details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: rgb(28, 75, 66);
  resize: none;
}

.news-details-post-item .news-details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 30px;
  padding-top: 5px;
}

.news-details-post-item .news-details-content .comment-form-wrap .terms {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1399px) {
  .news-details-post-item .news-details-content .comment-form-wrap .terms {
    flex-wrap: wrap;
  }
}

.news-details-post-item .news-details-content .comment-form-wrap .terms input {
  width: 14px;
  height: 14px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(13, 23, 52);
  border-radius: 0px;
  cursor: pointer;
  position: relative;
}

.news-details-post-item .news-details-content .comment-form-wrap .terms input:checked {
  background-color: var(--theme);
}

.news-details-post-item .news-details-content .comment-form-wrap .terms input:checked::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.news-details-post-item .news-details-content .comment-form-wrap .terms label {
  font-size: 16px;
  color: rgb(75, 75, 75);
  font-weight: 500;
  cursor: pointer;
}

.news-details-post-item .news-details-content .comment-form-wrap .theme-btn {
  border: 1px solid rgb(17, 17, 17);
}

.news-details-section {
  border-radius: 16px;
  background-color: var(--white);
  margin: 0 15px;
  margin-bottom: 2px;
}

.news-grid-items {
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .news-grid-items {
    margin-bottom: 30px;
  }
}

.news-grid-items .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.news-grid-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: inline-block;
  transition: all 500ms ease;
}

.news-grid-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-grid-items .news-content {
  margin-top: 24px;
}

.news-grid-items .news-content .top-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}

@media (max-width: 1600px) {
  .news-grid-items .news-content .top-content {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 7px;
  }
}

@media (max-width: 1399px) {
  .news-grid-items .news-content .top-content {
    margin-bottom: 17px;
  }
}

.news-grid-items .news-content .top-content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-right: 14px;
}

@media (max-width: 1399px) {
  .news-grid-items .news-content .top-content p {
    margin-right: 0;
  }
}

.news-grid-items .news-content .top-content span {
  border: 1px solid rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 600;
  color: rgb(75, 75, 75);
  line-height: 1;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: capitalize;
}

.news-grid-items .news-content h2 {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .news-grid-items .news-content h2 {
    font-size: 25px;
  }

  .news-grid-items .news-content h2 br {
    display: none;
  }
}

@media (max-width: 1399px) {
  .news-grid-items .news-content h2 {
    font-size: 22px;
  }
}

.news-grid-items .news-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-grid-items .news-content h2 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.news-grid-items:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.news-grid-items:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-grid-section {
  border-radius: 16px;
  margin: 0 15px;
  margin-bottom: 2px;
  background-color: var(--white);
}

.news-standard-section {
  border-radius: 16px;
  margin: 0 15px;
  margin-bottom: 2px;
  background-color: var(--white);
}

.news-main-sideber {
  border-left: 1px solid rgb(217, 217, 217);
  padding-left: 78px;
  margin-left: 55px;
  height: 1822px;
}

@media (max-width: 1399px) {
  .news-main-sideber {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    height: initial;
  }
}

.news-main-sideber .search-widget form {
  width: 100%;
  position: relative;
}

.news-main-sideber .search-widget form input {
  background-color: transparent;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: #4B4B4B;
  border-radius: 6px;
  border: 1px solid rgb(217, 217, 217);
}

.news-main-sideber .search-widget form button {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #4B4B4B;
  transition: all 0.3s ease-in-out;
}

.news-main-sideber .single-sideber-widget {
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .news-main-sideber .single-sideber-widget {
    margin-top: 30px;
  }
}

.news-main-sideber .single-sideber-widget .widget-title {
  margin-bottom: 30px;
}

.news-main-sideber .single-sideber-widget .widget-title h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 8px;
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a {
  color: rgb(17, 17, 17);
}

.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: rgb(75, 75, 75);
  font-weight: 500;
  font-size: 14px;
}

.news-main-sideber .single-sideber-widget .categories-thumb-items {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.news-main-sideber .single-sideber-widget .categories-thumb-items .categories-items .categories-thumb {
  margin-bottom: 12px;
}

.news-main-sideber .single-sideber-widget .categories-thumb-items .categories-items .categories-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.news-main-sideber .single-sideber-widget .categories-thumb-items .categories-items h4 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.news-main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  background: #F8F8F8;
  border: 1px solid #D1D1D1;
  font-family: "Urbanist", sans-serif;
  margin-right: 2px;
  margin-bottom: 8px;
  text-transform: capitalize;
  border-radius: 100px;
  color: rgb(17, 17, 17);
}

.news-main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}

.news-main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.pricing-section {
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .pricing-section {
    overflow: hidden;
    margin-top: -100px;
    margin-bottom: -100px;
  }
}

@media (max-width: 991px) {
  .pricing-section {
    overflow: hidden;
    margin-top: -80px;
    margin-bottom: -80px;
  }
}

.pricing-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
  left: 355px;
  width: 1200px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .pricing-section::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 1399px) {
  .pricing-section::before {
    display: none;
  }
}

.pricing-section .top-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 9999;
}

@media (max-width: 1399px) {
  .pricing-section .top-item {
    margin-bottom: 0;
  }
}

.pricing-section .top-item .nav {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #F3ECFF;
  border-radius: 50px;
  padding: 8px;
  margin-top: 35px;
}

.pricing-section .top-item .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: "DM Sans", serif;
  text-transform: capitalize;
  color: var(--header);
  padding: 8px 32px;
  border-radius: 50px;
}

@media (max-width: 575px) {
  .pricing-section .top-item .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}

.pricing-section .top-item .nav .nav-item .nav-link.active {
  background-color: var(--theme2);
  color: var(--white);
}

.pricing-section .pricing-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-shape {
    display: none;
  }
}

.pricing-section .pricing-shape img {
  width: 100%;
  height: 100%;
}

.pricing-card-items {
  margin-top: 30px;
  border: 1px solid #F3ECFF;
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
}

.pricing-card-items span {
  font-weight: 600;
  color: rgb(103, 29, 214);
  font-family: "DM Sans", serif;
  background-color: var(--white);
  border-radius: 100px;
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgb(243, 236, 255), rgb(86, 0, 214)) border-box;
  border: 1.5px solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.pricing-card-items::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme2);
  transition: all 500ms ease;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .pricing-card-items {
    padding: 30px;
  }
}

.pricing-card-items h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.pricing-card-items .pricing-list {
  margin-bottom: 48px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .pricing-card-items .pricing-list {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.pricing-card-items .pricing-list li {
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
}

@media (max-width: 1399px) {
  .pricing-card-items .pricing-list li {
    font-size: 18px;
  }
}

.pricing-card-items .pricing-list li i {
  margin-right: 5px;
  color: var(--theme2);
}

.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}

.pricing-card-items .theme-btn-2 {
  justify-content: center;
  background-color: rgb(243, 236, 255);
  color: rgb(86, 0, 214);
}

.pricing-card-items:hover span {
  opacity: 1;
  visibility: visible;
}

.pricing-card-items:hover h3 {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.pricing-card-items:hover .pricing-list {
  position: relative;
  z-index: 999;
}

.pricing-card-items:hover .pricing-list li {
  color: var(--white);
}

.pricing-card-items:hover .pricing-list li i {
  color: var(--white);
}

.pricing-card-items:hover .theme-btn-2 {
  background-color: var(--white);
  color: var(--theme2);
}

.pricing-card-items:hover .theme-btn-2:hover {
  color: var(--white) !important;
}

.pricing-card-items:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.pricing-card-items-3 {
  margin-top: 30px;
  background-color: rgb(16, 16, 16);
  padding: 24px;
  position: relative;
  z-index: 9;
  border-radius: 10px;
}

.pricing-card-items-3 .nexella-hover-bx {
  background: var(--theme3);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.pricing-card-items-3 .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.pricing-card-items-3 .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.pricing-card-items-3 .pricing-header {
  margin-bottom: 24px;
}

.pricing-card-items-3 .pricing-header .icon {
  background-color: var(--white);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 4px;
}

.pricing-card-items-3 .pricing-header span {
  color: rgb(255, 255, 255);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
}

.pricing-card-items-3 .pricing-header h3 {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.4s ease-in-out;
}

.pricing-card-items-3 .pricing-header h3 span {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}

.pricing-card-items-3 .theme-btn-3 {
  background-color: rgb(28, 31, 18);
  color: var(--white);
  width: 100%;
  justify-content: center;
  padding: 10px 32px;
}

.pricing-card-items-3 .theme-btn-3::before {
  background-color: var(--white);
}

.pricing-card-items-3 .theme-btn-3:hover {
  color: var(--header);
}

.pricing-card-items-3 .pricing-list {
  margin-top: 24px;
}

.pricing-card-items-3 .pricing-list li {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(188, 188, 188);
  transition: all 0.4s ease-in-out;
}

.pricing-card-items-3 .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}

.pricing-card-items-3 .pricing-list li i {
  color: var(--white);
  margin-right: 5px;
}

.pricing-card-items-3:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pricing-card-items-3:hover .pricing-header .icon {
  background-color: rgb(1, 1, 1);
}

.pricing-card-items-3:hover .pricing-header .icon img {
  filter: brightness(0) invert(1);
}

.pricing-card-items-3:hover .pricing-header span {
  color: rgb(1, 1, 1);
}

.pricing-card-items-3:hover .pricing-header h3 {
  color: rgb(1, 1, 1);
}

.pricing-card-items-3:hover .pricing-header h3 span {
  color: rgb(1, 1, 1);
}

.pricing-card-items-3:hover .pricing-list li {
  color: rgb(1, 1, 1);
}

.pricing-card-items-3:hover .pricing-list li i {
  color: rgb(1, 1, 1);
}

.pricing-box-items {
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: var(--white);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  border-radius: 16px;
  padding: 55px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .pricing-box-items {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

.pricing-box-items span {
  position: absolute;
  right: -43px;
  top: 30px;
  background-color: rgb(255, 197, 63);
  color: rgb(17, 17, 17);
  font-size: 14px;
  font-weight: 700;
  padding: 2px 50px;
  transform: rotate(52.02deg);
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .pricing-box-items span {
    display: none;
  }
}

.pricing-box-items .left-content {
  width: 100%;
  max-width: 328px;
}

@media (max-width: 1600px) {
  .pricing-box-items .left-content {
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 1399px) {
  .pricing-box-items .left-content {
    width: 100%;
    max-width: 328px;
  }
}

@media (max-width: 767px) {
  .pricing-box-items .left-content {
    max-width: initial;
    width: initial;
  }
}

.pricing-box-items .left-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.pricing-box-items .left-content p {
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-top: 5px;
}

.pricing-box-items .left-content h4 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .pricing-box-items .left-content h4 {
    margin-bottom: 20px;
    margin-top: 15px;
    font-size: 40px;
  }
}

.pricing-box-items .left-content .theme-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  border: 1px solid rgb(17, 17, 17);
}

.pricing-box-items .left-content .theme-btn:hover {
  border: 1px solid rgb(17, 17, 17);
}

.pricing-box-items .left-content .theme-btn.style-border {
  background-color: transparent;
  border: 1px solid rgb(17, 17, 17);
  color: rgb(17, 17, 17);
  justify-content: center;
  width: 100%;
}

.pricing-box-items .left-content .theme-btn.style-border::before {
  background-color: var(--header);
}

.pricing-box-items .left-content .theme-btn.style-border:hover {
  color: var(--white);
}

.pricing-box-items .right-content {
  border-left: 1px solid rgb(221, 228, 227);
  padding-left: 40px;
}

@media (max-width: 1600px) {
  .pricing-box-items .right-content {
    padding-left: 30px;
  }
}

@media (max-width: 1399px) {
  .pricing-box-items .right-content {
    border-left: none;
    padding-left: 0;
  }
}

.pricing-box-items .right-content p {
  color: rgb(75, 75, 75);
  font-weight: 500;
  max-width: 288px;
}

.pricing-box-items .right-content .price-list {
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .pricing-box-items .right-content .price-list {
    margin-top: 30px;
  }
}

.pricing-box-items .right-content .price-list li {
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 17, 17);
}

.pricing-box-items .right-content .price-list li:not(:last-child) {
  margin-bottom: 12px;
}

.pricing-box-items .right-content .price-list li img {
  margin-right: 10px;
}

.pricing-section-4 {
  background: var(--white);
  border-radius: 0px 0px 16px 16px;
}

@media (max-width: 1600px) {
  .pricing-section-4 {
    margin-bottom: 100px;
  }
}

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

.pricing-section-4 .section-title {
  margin-left: 485px;
}

@media (max-width: 1600px) {
  .pricing-section-4 .section-title {
    margin-left: 400px;
  }
}

@media (max-width: 1399px) {
  .pricing-section-4 .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.pricing-section-4 .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .pricing-section-4 .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.pricing-section-4 .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .pricing-section-4 .section-title p {
    margin: 0 auto;
  }
}

.project-card-item-1 {
  background: #FFFFFF;
  transition: all 0.4s ease-in-out;
  border-radius: 16px;
  max-width: 625px;
}

@media (max-width: 1399px) {
  .project-card-item-1 {
    max-width: initial;
  }
}

@media (max-width: 991px) {
  .project-card-item-1 {
    margin-top: 30px;
  }
}

.project-card-item-1.style-2 {
  margin-left: 35px;
}

@media (max-width: 1399px) {
  .project-card-item-1.style-2 {
    margin-left: 0;
  }
}

.project-card-item-1.style-3 {
  margin-left: 35px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .project-card-item-1.style-3 {
    margin-left: 0;
    margin-top: 30px;
  }
}

.project-card-item-1 .project-image {
  position: relative;
  overflow: hidden;
}

.project-card-item-1 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.54);
  opacity: 0;
  visibility: hidden;
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}

.project-card-item-1 .project-image .theme-btn {
  background-color: var(--white);
  color: rgb(17, 17, 17);
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 30px;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .project-card-item-1 .project-image .theme-btn {
    padding: 12px 20px;
  }
}

.project-card-item-1 .project-image .theme-btn::before {
  background-color: var(--theme);
}

.project-card-item-1 .project-image .theme-btn:hover {
  color: var(--white);
}

.project-card-item-1 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.project-card-item-1 .project-content {
  padding: 35px 50px;
}

@media (max-width: 1399px) {
  .project-card-item-1 .project-content {
    padding: 30px;
  }
}

.project-card-item-1 .project-content span {
  border: 1px solid rgb(75, 75, 75);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 12px;
  line-height: 1;
}

.project-card-item-1 .project-content h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 1399px) {
  .project-card-item-1 .project-content h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .project-card-item-1 .project-content h3 {
    font-size: 20px;
  }
}

.project-card-item-1 .project-content h3 a {
  color: rgb(17, 17, 17);
}

.project-card-item-1 .project-content h3 a:hover {
  color: var(--theme);
}

.project-card-item-1 .project-content p {
  font-size: 18px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
}

.project-card-item-1:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: var(--white);
}

.project-card-item-1:hover .project-image .theme-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.project-card-item-1:hover .project-image::before {
  opacity: 1;
  visibility: visible;
}

.project-section .section-title {
  margin-left: 340px;
}

@media (max-width: 1399px) {
  .project-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.project-section .section-title h2 {
  text-align: left;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .project-section .section-title h2 {
    text-align: center;
  }
}

.project-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-bottom: 48px;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .project-section .section-title p {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .project-section .section-title p {
    margin-bottom: 0px;
  }
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  padding: 24px 0;
  background-color: rgb(16, 16, 16);
}

.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(255, 255, 255);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

@media (max-width: 1199px) {
  .marquee .text {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .marquee .text {
    gap: 30px;
  }
}

.project-section-3 .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

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

@media (max-width: 575px) {
  .project-section-3 .nav {
    gap: 10px;
  }
}

.project-section-3 .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 0px;
  background-color: rgb(28, 31, 18);
  border-radius: 6px;
}

@media (max-width: 575px) {
  .project-section-3 .nav .nav-item .nav-link {
    padding: 6px 15px;
    font-size: 14px;
  }
}

.project-section-3 .nav .nav-item .nav-link.active {
  background-color: var(--theme3);
  color: rgb(1, 1, 1);
}

.project-card-items-3 {
  background-color: rgb(16, 16, 16);
  padding: 24px;
  margin-top: 30px;
  border-radius: 10px;
}

.project-card-items-3 .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.project-card-items-3 .icon-items h3 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.project-card-items-3 .radius-box {
  background-color: rgb(1, 1, 1);
  padding: 16px;
  margin-bottom: 40px;
  border-radius: 12px;
}

.project-card-items-3 .radius-box h4 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.project-card-items-3 .radius-box .progress-wrap {
  margin-top: 24px;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items {
  width: 100%;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 12px;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items .pro-head .title {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items .progress {
  background-color: rgb(16, 16, 16);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 24px;
  width: 100%;
  border-radius: 4px;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme3);
  height: 24px;
  border-radius: 4px;
  width: 0;
}

.project-card-items-3 .radius-box .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.project-card-items-3 .radius-box .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%;
  }
}

.project-card-items-3 .theme-btn-3 {
  width: 100%;
  background-color: rgb(28, 31, 18);
  color: var(--white);
  justify-content: center;
}

.project-card-items-3 .theme-btn-3::before {
  background-color: var(--theme3);
}

.project-card-items-3 .theme-btn-3:hover {
  color: #000;
}

.project-card-item-one {
  border-radius: 14px;
}

.project-card-item-one .project-image {
  position: relative;
  overflow: hidden;
}

.project-card-item-one .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.project-card-item-one .project-content {
  padding: 27px 50px 0;
}

@media (max-width: 1399px) {
  .project-card-item-one .project-content {
    padding: 30px;
  }
}

.project-card-item-one .project-content span {
  border: 1px solid rgb(75, 75, 75);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 12px;
  line-height: 1;
}

.project-card-item-one .project-content h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 1399px) {
  .project-card-item-one .project-content h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .project-card-item-one .project-content h3 {
    font-size: 20px;
  }
}

.project-card-item-one .project-content h3 a {
  color: rgb(17, 17, 17);
}

.project-card-item-one .project-content h3 a:hover {
  color: var(--theme);
}

.project-card-item-one .project-content p {
  font-size: 18px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
}

.project-section-one .section-title {
  margin-left: 470px;
}

@media (max-width: 1399px) {
  .project-section-one .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.project-section-one .section-title h2 {
  text-align: left;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .project-section-one .section-title h2 {
    text-align: center;
  }
}

.project-section-one .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-bottom: 48px;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .project-section-one .section-title p {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .project-section-one .section-title p {
    margin-bottom: 0px;
  }
}

.project-card-item-4 {
  transition: all 0.4s ease-in-out;
  border-radius: 16px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .project-card-item-4.style-1 {
    margin-top: 30px;
  }
}

@media (max-width: 1399px) {
  .project-card-item-4 {
    margin-top: 0;
  }
}

.project-card-item-4.style-2 {
  margin-left: 35px;
}

@media (max-width: 1399px) {
  .project-card-item-4.style-2 {
    margin-left: 0;
  }
}

.project-card-item-4.style-3 {
  margin-left: 35px;
  margin-top: 100px;
}

@media (max-width: 1399px) {
  .project-card-item-4.style-3 {
    margin-left: 0;
    margin-top: 0px;
  }
}

.project-card-item-4.style-4 {
  margin-left: 35px;
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .project-card-item-4.style-4 {
    margin-left: 0;
    margin-top: 0px;
  }
}

.project-card-item-4 .project-image {
  max-width: 625px;
}

.project-card-item-4 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.project-card-item-4 .project-content {
  padding: 30px 50px 0;
}

@media (max-width: 1399px) {
  .project-card-item-4 .project-content {
    padding: 30px 30px 0;
  }
}

.project-card-item-4 .project-content span {
  border: 1px solid rgb(75, 75, 75);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 12px;
  line-height: 1;
}

.project-card-item-4 .project-content h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 1399px) {
  .project-card-item-4 .project-content h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .project-card-item-4 .project-content h3 {
    font-size: 20px;
  }
}

.project-card-item-4 .project-content h3 a {
  color: rgb(17, 17, 17);
}

.project-card-item-4 .project-content h3 a:hover {
  color: var(--theme);
}

.project-card-item-4 .project-content p {
  font-size: 18px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: rgb(75, 75, 75);
}

.project-details-wrapper .details-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-list {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.project-details-wrapper .details-list .list span {
  color: rgb(75, 75, 75);
  font-size: 18px;
  font-weight: 400;
}

.project-details-wrapper .details-list .list p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 600;
}

.project-details-wrapper .project-details-image {
  margin-top: 50px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-image {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

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

.project-details-wrapper .details-content {
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-content {
    margin-bottom: 10px;
  }
}

.project-details-wrapper .details-content p {
  font-size: 24px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  margin-top: 30px;
  line-height: 160%;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-content p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.project-details-wrapper .details-content .details-content-items {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-content .details-content-items {
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 25px;
  }
}

.project-details-wrapper .details-content .details-content-items.style-2 {
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-content .details-content-items.style-2 {
    margin-top: 30px;
  }
}

.project-details-wrapper .details-content .details-content-items h2 {
  font-size: 28px;
  font-weight: 600;
}

.project-details-wrapper .details-content .details-content-items p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  max-width: 730px;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .project-details-wrapper .details-content .details-content-items p {
    font-size: 16px;
  }
}

.project-details-wrapper .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.service-card-items-1 {
  border-top: 1px dashed rgb(42, 42, 42);
  border-bottom: 1px dashed rgb(42, 42, 42);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 991px) {
  .service-card-items-1 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 10px;
  }
}

.service-card-items-1::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.service-card-items-1 .service-left-item {
  display: flex;
  align-items: center;
  gap: 175px;
  position: relative;
}

@media (max-width: 1399px) {
  .service-card-items-1 .service-left-item {
    gap: 150px;
  }
}

@media (max-width: 991px) {
  .service-card-items-1 .service-left-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.service-card-items-1 .service-left-item .left-content {
  max-width: 165px;
  width: 100%;
}

@media (max-width: 991px) {
  .service-card-items-1 .service-left-item .left-content {
    max-width: initial;
    width: initial;
  }
}

.service-card-items-1 .service-left-item .left-content h3 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  margin-top: 20px;
  line-height: 140%;
}

@media (max-width: 1399px) {
  .service-card-items-1 .service-left-item .left-content h3 {
    font-size: 20px;
  }
}

.service-card-items-1 .service-left-item .left-content h3 a {
  color: var(--white);
}

.service-card-items-1 .service-left-item .left-content h3 a:hover {
  color: var(--white);
}

.service-card-items-1 .service-left-item .content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(209, 209, 209);
  font-family: "Urbanist", sans-serif;
  max-width: 380px;
  margin-bottom: 30px;
}

.service-card-items-1 .service-left-item .content .list li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(209, 209, 209);
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 991px) {
  .service-card-items-1 .service-left-item .content .list li {
    font-size: 15px;
  }
}

.service-card-items-1 .service-left-item .content .list li img {
  margin-right: 10px;
}

.service-card-items-1 .service-left-item .content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.service-card-items-1 .arrow-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  display: inline-block;
  position: relative;
}

.service-card-items-1 .hover-image {
  width: 235px;
  height: 334px;
  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: 9999;
  visibility: hidden;
  will-change: transform;
  transform: rotate(-6.25 deg);
}

@media (max-width: 991px) {
  .service-card-items-1 .hover-image {
    display: none !important;
  }
}

.service-card-items-1:hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.service-section {
  background-color: rgb(17, 17, 17);
  border-radius: 16px;
  margin: 0 16px;
}

@media (max-width: 1600px) {
  .service-section {
    margin: 0 20px;
  }
}

@media (max-width: 1399px) {
  .service-section {
    margin: 0 16px;
  }
}

.service-card-items-2 {
  position: relative;
}

@media (max-width: 1399px) {
  .service-card-items-2 {
    margin-top: 30px;
  }
}

.service-card-items-2.mt-30 {
  margin-top: 30px;
}

.service-card-items-2.style-2 {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .service-card-items-2.style-2 {
    margin-left: 0;
  }
}

.service-card-items-2 span {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 100px;
  background-color: rgb(86, 0, 214);
  position: absolute;
  top: 20px;
  right: 65px;
  font-size: 24px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-family: "Outfit", sans-serif;
}

@media (max-width: 1399px) {
  .service-card-items-2 span {
    display: none;
  }
}

.service-card-items-2 span.style-2 {
  left: 20px;
  top: 45%;
}

@media (max-width: 1899px) {
  .service-card-items-2 span.style-2 {
    top: 49%;
  }
}

.service-card-items-2 .service-image {
  position: relative;
  max-width: 370px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-image {
    max-width: initial;
  }
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-image.style-4 {
    margin-top: 30px;
  }
}

.service-card-items-2 .service-image .shape {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
}

.service-card-items-2 .service-image .shape img {
  width: 100%;
  height: 100%;
}

.service-card-items-2 .service-image img {
  width: 100%;
  height: 100%;
}

.service-card-items-2 .service-content {
  margin-top: 170px;
  margin-bottom: 170px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-content {
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

.service-card-items-2 .service-content.style-2 {
  margin-top: 0;
  margin-bottom: 170px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-content.style-2 {
    margin-bottom: 30px;
  }
}

.service-card-items-2 .service-content.style-3 {
  margin-top: 110px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-content.style-3 {
    margin-top: 0px;
  }
}

.service-card-items-2 .service-content h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 1399px) {
  .service-card-items-2 .service-content h3 {
    font-size: 25px;
  }

  .service-card-items-2 .service-content h3 br {
    display: none;
  }
}

.service-card-items-2 .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-card-items-2 .service-content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.service-card-items-2 .service-content p {
  font-size: 18px;
  font-weight: 400;
  font-family: "DM Sans", serif;
  color: rgb(106, 106, 106);
  max-width: 384px;
  margin-top: 15px;
}

.service-section-2 {
  position: relative;
}

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

.service-section-2 .line-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 22%;
}

@media (max-width: 1399px) {
  .service-section-2 .line-shape {
    display: none;
  }
}

.service-section-2 .line-shape img {
  width: 100%;
  height: 100%;
}

.service-section-2 .left-shape {
  position: absolute;
  top: -220px;
  left: 0;
}

@media (max-width: 1399px) {
  .service-section-2 .left-shape {
    display: none;
  }
}

.service-section-2 .right-shape {
  position: absolute;
  bottom: -350px;
  right: 0;
}

@media (max-width: 1399px) {
  .service-section-2 .right-shape {
    display: none;
  }
}

.service-section-2 .star-shape {
  position: absolute;
  right: 48px;
  top: 30px;
}

@media (max-width: 1399px) {
  .service-section-2 .star-shape {
    display: none;
  }
}

.modular-services-wrapper .modular-services-content .text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  margin-top: 15px;
  max-width: 434px;
  margin-bottom: 35px;
}

@media (max-width: 1399px) {
  .modular-services-wrapper .modular-services-content .text {
    margin-bottom: 30px;
  }
}

.modular-services-wrapper .modular-services-content .tag-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.modular-services-wrapper .modular-services-content .tag-list span {
  border: 1px solid rgb(228, 228, 228);
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 500;
  font-family: "DM Sans", serif;
  padding: 12px 15px;
  line-height: 1;
  border-radius: 100px;
}

@media (max-width: 1399px) {
  .modular-services-wrapper .modular-services-content .tag-list span {
    font-size: 15px;
  }
}

.modular-services-wrapper .modular-services-content .tag-list span.style-2 {
  border: 1px solid var(--theme2);
  color: var(--theme2);
  padding: 10px 15px;
}

.modular-services-wrapper .modular-services-content .tag-list span.style-2 img {
  margin-right: 5px;
}

.modular-services-wrapper .modular-services-content .tag-list span i {
  color: rgb(255, 193, 7);
  margin-right: 5px;
}

.modular-services-wrapper .modular-services-content .tag-list span img {
  margin-right: 5px;
}

.modular-services-wrapper .graph-image {
  border-radius: 24px;
}

.modular-services-wrapper .graph-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
}

.modular-services-section {
  position: relative;
  z-index: 9;
}

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

.modular-services-section .blur-shape {
  position: absolute;
  right: 7%;
  top: -188px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .modular-services-section .blur-shape {
    right: -5%;
  }
}

@media (max-width: 1399px) {
  .modular-services-section .blur-shape {
    display: none;
  }
}

.modular-services-section .star-shape {
  position: absolute;
  left: 20px;
  top: -120px;
}

@media (max-width: 1399px) {
  .modular-services-section .star-shape {
    display: none;
  }
}

.service-card-items-3 {
  margin-top: 30px;
  padding: 120px 30px 30px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 10px;
}

.service-card-items-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(16, 16, 16);
  z-index: -1;
  transform: translate(0, 0);
}

.service-card-items-3 .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 100%;
  transform-origin: left right;
  transition: all 0.5s 0s ease-out;
  bottom: 0;
}

.service-card-items-3 .hover-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.service-card-items-3 .arrow-icon {
  position: absolute;
  top: 30px;
  right: 20px;
}

.service-card-items-3 .arrow-icon img {
  transition: all 0.4s ease-in-out;
}

.service-card-items-3 .icon img {
  transition: all 0.4s ease-in-out;
}

.service-card-items-3 h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.service-card-items-3 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.service-card-items-3 h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-card-items-3 p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(188, 188, 188);
  font-weight: 500;
}

.service-card-items-3.active .arrow-icon img,
.service-card-items-3:hover .arrow-icon img {
  filter: brightness(0);
  transform: rotate(45deg);
}

.service-card-items-3.active .icon img,
.service-card-items-3:hover .icon img {
  filter: brightness(0);
}

.service-card-items-3.active h3,
.service-card-items-3:hover h3 {
  position: relative;
  z-index: 999;
}

.service-card-items-3.active h3 a,
.service-card-items-3:hover h3 a {
  color: rgb(1, 1, 1);
}

.service-card-items-3.active h3 a:hover,
.service-card-items-3:hover h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.service-card-items-3.active p,
.service-card-items-3:hover p {
  color: rgb(1, 1, 1);
  position: relative;
  z-index: 999;
}

.service-card-items-3.active .hover-image,
.service-card-items-3:hover .hover-image {
  transform: scale(1);
}

.service-details-wrapper .details-left-content h3 {
  font-size: 28px;
  font-weight: 600;
}

.service-details-wrapper .details-left-content p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  max-width: 499px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-left-content p {
    margin-top: 10px;
    font-size: 16px;
  }
}

.service-details-wrapper .details-image {
  overflow: hidden;
  border-radius: 16px;
}

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

.service-details-wrapper .service-details-list {
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-list {
    margin-left: 0;
  }
}

.service-details-wrapper .service-details-list h3 {
  font-size: 28px;
  font-weight: 600;
}

.service-details-wrapper .service-details-list p {
  max-width: 499px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-list p {
    font-size: 16px;
  }
}

.service-details-wrapper .service-details-list .details-list {
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-list .details-list {
    margin-top: 10px;
  }
}

.service-details-wrapper .service-details-list .details-list li {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.service-details-wrapper .service-details-list .details-list li:not(:last-child) {
  margin-bottom: 12px;
}

.service-details-wrapper .service-details-list .details-list li img {
  margin-right: 5px;
}

.service-details-wrapper .details-thumb {
  overflow: hidden;
  border-radius: 16px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-thumb {
    margin-top: 0;
  }
}

.service-details-wrapper .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.service-details-section {
  border-radius: 16px;
  background-color: var(--white);
  margin: 0 15px;
}

.service-details-section .section-title {
  margin-left: 480px;
}

@media (max-width: 1399px) {
  .service-details-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.service-details-section .section-title h2 {
  text-align: left;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .service-details-section .section-title h2 {
    text-align: center;
  }
}

.service-details-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-bottom: 48px;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .service-details-section .section-title p {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .service-details-section .section-title p {
    margin-bottom: 0px;
  }
}

.service-card-items-inner {
  border-top: 1px dashed rgba(17, 17, 17, 0.1);
  border-bottom: 1px dashed rgba(17, 17, 17, 0.1);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 991px) {
  .service-card-items-inner {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 10px;
  }
}

.service-card-items-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background: rgb(248, 248, 248);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.service-card-items-inner .service-left-item {
  display: flex;
  align-items: center;
  gap: 175px;
  position: relative;
}

@media (max-width: 1399px) {
  .service-card-items-inner .service-left-item {
    gap: 150px;
  }
}

@media (max-width: 991px) {
  .service-card-items-inner .service-left-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.service-card-items-inner .service-left-item .left-content {
  max-width: 165px;
  width: 100%;
}

@media (max-width: 991px) {
  .service-card-items-inner .service-left-item .left-content {
    max-width: initial;
    width: initial;
  }
}

.service-card-items-inner .service-left-item .left-content h3 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  margin-top: 20px;
  line-height: 140%;
}

@media (max-width: 1399px) {
  .service-card-items-inner .service-left-item .left-content h3 {
    font-size: 20px;
  }
}

.service-card-items-inner .service-left-item .left-content h3 a {
  color: rgb(17, 17, 17);
}

.service-card-items-inner .service-left-item .left-content h3 a:hover {
  color: var(--theme);
}

.service-card-items-inner .service-left-item .content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  font-family: "Urbanist", sans-serif;
  max-width: 380px;
  margin-bottom: 30px;
}

.service-card-items-inner .service-left-item .content .list li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 991px) {
  .service-card-items-inner .service-left-item .content .list li {
    font-size: 15px;
  }
}

.service-card-items-inner .service-left-item .content .list li img {
  margin-right: 10px;
}

.service-card-items-inner .service-left-item .content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.service-card-items-inner .arrow-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: rgb(42, 42, 42);
  border: 1px solid rgb(42, 42, 42);
  border-radius: 12px;
  display: inline-block;
  position: relative;
}

.service-card-items-inner .hover-image {
  width: 235px;
  height: 334px;
  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: 9999;
  visibility: hidden;
  will-change: transform;
  transform: rotate(-6.25 deg);
}

@media (max-width: 991px) {
  .service-card-items-inner .hover-image {
    display: none !important;
  }
}

.service-card-items-inner:hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.service-card-items-inner:hover .arrow-icon {
  background-color: rgb(75, 75, 75);
  color: var(--white);
}

.service-section-4 {
  background: var(--white);
  border-radius: 16px;
  margin: 0 15px;
}

.service-section-4 .section-title {
  margin-left: 485px;
}

@media (max-width: 1600px) {
  .service-section-4 .section-title {
    margin-left: 400px;
  }
}

@media (max-width: 1399px) {
  .service-section-4 .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.service-section-4 .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .service-section-4 .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.service-section-4 .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .service-section-4 .section-title p {
    margin: 0 auto;
  }
}

.team-section {
  background-color: rgb(15, 15, 20);
}

.team-section.style-2 {
  margin: 0 15px;
  border-radius: 16px;
}

.team-section.style-2 .section-title {
  margin-left: 480px;
}

.team-section.style-2 .section-title .sub-title {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(255, 255, 255);
}

@media (max-width: 1399px) {
  .team-section.style-2 .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.team-section.style-2 .section-title h2 {
  text-align: left;
  color: rgb(255, 255, 255);
}

.team-section.style-2 .section-title h2 span {
  color: rgb(255, 255, 255);
}

@media (max-width: 1399px) {
  .team-section.style-2 .section-title h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}

.team-section.style-2 .section-title p {
  color: rgb(209, 209, 209);
  font-size: 18px;
  font-weight: 500;
  max-width: 574px;
  margin-left: 95px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .team-section.style-2 .section-title p {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .team-section.style-2 .section-title p {
    margin-bottom: 0px;
  }
}

.team-section .section-title-area .section-title .sub-title {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(255, 255, 255);
}

.team-section .section-title-area .section-title h2 {
  color: rgb(255, 255, 255);
}

.team-section .section-title-area .section-title h2 span {
  color: rgb(255, 255, 255);
}

.team-section .section-title-area .section-title p {
  color: rgb(209, 209, 209);
  font-size: 18px;
  font-weight: 500;
  max-width: 574px;
  margin-left: 95px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .team-section .section-title-area .section-title p {
    margin-left: 0;
  }
}

.team-section .section-title-area .theme-btn {
  background-color: var(--white);
  color: var(--header);
}

.team-wrapper {
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .team-wrapper {
    margin-top: 30px;
  }
}

.team-wrapper .team-card-items .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.team-wrapper .team-card-items .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 69.86%, #FFFFFF 91.16%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 999;
  border-radius: 16px;
}

.team-wrapper .team-card-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: inline-block;
  transition: all 500ms ease;
}

.team-wrapper .team-card-items .team-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-wrapper .team-card-items .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-wrapper .team-card-items .team-image .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 0.971631px solid rgba(0, 0, 0, 0.08);
  line-height: 40px;
  border-radius: 100px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.team-wrapper .team-card-items .team-image .social-icon a:hover {
  background-color: var(--header);
  border: 1px solid var(--header);
  color: var(--white);
}

.team-wrapper .team-card-items .team-content {
  text-align: center;
  margin-top: 30px;
  margin-left: 70px;
}

@media (max-width: 1399px) {
  .team-wrapper .team-card-items .team-content {
    text-align: center !important;
    margin-left: 0;
  }
}

.team-wrapper .team-card-items .team-content h3 {
  text-align: left;
}

@media (max-width: 1399px) {
  .team-wrapper .team-card-items .team-content h3 {
    text-align: center;
  }
}

.team-wrapper .team-card-items .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.team-wrapper .team-card-items .team-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-wrapper .team-card-items .team-content p {
  font-size: 20px;
  font-weight: 500;
  color: rgb(209, 209, 209);
  font-style: italic;
  margin-top: 5px;
  text-align: left;
}

@media (max-width: 1399px) {
  .team-wrapper .team-card-items .team-content p {
    text-align: center;
  }
}

.team-wrapper .team-card-items:hover .team-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.team-wrapper .team-card-items:hover .team-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-wrapper .team-card-items:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
  z-index: 999;
}

.team-wrapper .team-card-items:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-wrapper-3 {
  margin-top: 48px;
}

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

.team-wrapper-3 .team-card-items-3 {
  transition: all 0.4s ease-in-out;
  border: 4px solid #010101;
  border-radius: 12px;
}

.team-wrapper-3 .team-card-items-3 .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-wrapper-3 .team-card-items-3 .team-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
  border-radius: 12px;
}

.team-wrapper-3 .team-card-items-3 .team-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-wrapper-3 .team-card-items-3 .team-image h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: absolute;
  left: 50px;
  right: 50px;
  text-align: center;
  bottom: 40px;
  z-index: 999;
  text-transform: uppercase;
}

.team-wrapper-3 .team-card-items-3 .team-image h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.team-wrapper-3 .team-card-items-3 .team-image h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  z-index: 999;
  background: rgba(196, 239, 23, 0.7);
  backdrop-filter: blur(3px);
  border-radius: 1000px;
  text-align: center;
  padding: 50px 30px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .team-wrapper-3 .team-card-items-3 .team-image .team-circle {
    left: 80px;
    right: 80px;
    padding: 80px 30px 80px;
  }
}

@media (max-width: 991px) {
  .team-wrapper-3 .team-card-items-3 .team-image .team-circle {
    padding: 50px 30px 60px;
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 767px) {
  .team-wrapper-3 .team-card-items-3 .team-image .team-circle {
    padding: 60px 30px 80px;
  }
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: rgb(1, 1, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0 auto;
  text-align: center;
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 10px;
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: rgb(1, 1, 1);
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle h4 a:hover {
  color: rgb(1, 1, 1);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, rgb(1, 1, 1) 0%, rgb(1, 1, 1) 100%);
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle .social-icon {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
  justify-content: center;
}

.team-wrapper-3 .team-card-items-3 .team-image .team-circle p {
  border: 1.8px solid rgb(1, 1, 1);
  font-size: 12px;
  font-weight: 400;
  color: rgb(1, 1, 1);
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 4px 2px;
  line-height: 1;
}

.team-wrapper-3 .team-card-items-3:hover {
  border: 4px solid #C4EF17;
  box-shadow: 0px 0px 16px rgba(196, 239, 23, 0.5);
  background-color: var(--white);
}

.team-wrapper-3 .team-card-items-3:hover .team-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.team-wrapper-3 .team-card-items-3:hover .team-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-wrapper-3 .team-card-items-3:hover .team-image h3 {
  display: none;
}

.team-wrapper-3 .team-card-items-3:hover .team-image .team-circle {
  opacity: 1;
  visibility: visible;
}

.team-card-items-4 .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.team-card-items-4 .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 69.86%, #FFFFFF 91.16%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 999;
  border-radius: 16px;
}

.team-card-items-4 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: inline-block;
  transition: all 500ms ease;
}

.team-card-items-4 .team-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-card-items-4 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-4 .team-image .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 0.971631px solid rgba(0, 0, 0, 0.08);
  line-height: 40px;
  border-radius: 100px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.team-card-items-4 .team-image .social-icon a:hover {
  background-color: var(--header);
  border: 1px solid var(--header);
  color: var(--white);
}

.team-card-items-4 .team-content {
  text-align: center;
  margin-top: 30px;
  margin-left: 70px;
}

@media (max-width: 1399px) {
  .team-card-items-4 .team-content {
    text-align: center !important;
    margin-left: 0;
  }
}

.team-card-items-4 .team-content h3 {
  text-align: left;
}

@media (max-width: 1399px) {
  .team-card-items-4 .team-content h3 {
    text-align: center;
  }
}

.team-card-items-4 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: rgb(17, 17, 17);
}

.team-card-items-4 .team-content h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.team-card-items-4 .team-content p {
  font-size: 20px;
  font-weight: 500;
  color: rgb(75, 75, 75);
  font-style: italic;
  margin-top: 5px;
  text-align: left;
}

@media (max-width: 1399px) {
  .team-card-items-4 .team-content p {
    text-align: center;
  }
}

.team-card-items-4:hover .team-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.team-card-items-4:hover .team-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-card-items-4:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
  z-index: 999;
}

.team-card-items-4:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-section-4 {
  margin: 0 15px;
  border-radius: 16px;
}

.team-section-4 .section-title {
  margin-left: 450px;
}

@media (max-width: 1399px) {
  .team-section-4 .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.team-section-4 .section-title h2 {
  text-align: left;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .team-section-4 .section-title h2 {
    text-align: center;
  }
}

.team-section-4 .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-bottom: 48px;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .team-section-4 .section-title p {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .team-section-4 .section-title p {
    margin-bottom: 0px;
  }
}

.team-details-wrappper .team-details-content h2 {
  font-size: 28px;
  font-weight: 600;
}

.team-details-wrappper .team-details-content p {
  max-width: 701px;
  color: rgb(75, 75, 75);
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
}

@media (max-width: 1399px) {
  .team-details-wrappper .team-details-content p {
    font-size: 16px;
  }
}

.team-details-wrappper .team-details-content p span {
  color: rgb(17, 17, 17);
}

.team-details-wrappper .team-details-content p.style-2 {
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .team-details-wrappper .team-details-content p.style-2 {
    margin-bottom: 30px;
  }
}

.team-details-wrappper .team-details-content h3 {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 15px;
}

.team-details-wrappper .team-details-content .details-list {
  margin-bottom: 48px;
}

.team-details-wrappper .team-details-content .details-list li {
  font-size: 18px;
  font-weight: 500;
  color: rgb(75, 75, 75);
}

.team-details-wrappper .team-details-content .details-list li img {
  margin-right: 5px;
}

.team-details-wrappper .team-details-content .details-list li:not(:last-child) {
  margin-bottom: 12px;
}

.team-details-wrappper .team-details-content .skill-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .team-details-wrappper .team-details-content .skill-list {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.team-details-wrappper .team-details-content .skill-list li {
  border-radius: 100px;
  border: 1px solid rgb(75, 75, 75);
  color: rgb(75, 75, 75);
  font-weight: 600;
  padding: 2px 13px;
}

.team-details-wrappper .team-details-item .details-image {
  margin-bottom: 24px;
}

.team-details-wrappper .team-details-item .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.team-details-wrappper .team-details-item .icon-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 1399px) {
  .team-details-wrappper .team-details-item .icon-items {
    flex-wrap: wrap;
  }
}

.team-details-wrappper .team-details-item .icon-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-details-wrappper .team-details-item .icon-items span {
  color: rgb(75, 75, 75);
  font-weight: 500;
}

.team-details-wrappper .team-details-item .icon-items span a {
  color: rgb(75, 75, 75);
}

.team-details-wrappper .team-details-item .button-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgb(221, 228, 227);
  padding-top: 35px;
  margin-top: 35px;
}

.team-details-wrappper .team-details-item .button-item .share-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border: 1px solid rgb(221, 228, 227);
  border-radius: 8px;
  color: rgb(17, 17, 17);
}

.team-details-section {
  border-radius: 16px;
  background-color: var(--white);
  margin: 0 15px;
}

.testimonial-wrapper {
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper {
    margin-top: 30px;
  }
}

.testimonial-wrapper .testimonial-card-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
}

.testimonial-wrapper .testimonial-card-item .testimonial-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.testimonial-wrapper .testimonial-card-item .testimonial-content {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 30px;
}

.testimonial-wrapper .testimonial-card-item .testimonial-content p {
  max-width: 329px;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: rgb(17, 17, 17);
  line-height: 160%;
  margin-bottom: 10px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-card-item .testimonial-content p {
    font-size: 16px;
    max-width: 260px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item .testimonial-content p {
    max-width: 329px;
  }
}

.testimonial-wrapper .testimonial-card-item .testimonial-content h3 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-wrapper .testimonial-card-item .testimonial-content span {
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-wrapper .testimonial-card-item .testimonial-content .star {
  margin-top: 10px;
  color: rgb(248, 193, 0);
}

.testimonial-wrapper .testimonial-card-item.style-card .testimonial-content p {
  max-width: 467px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-card-item.style-card .testimonial-content p {
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item.style-card .testimonial-content p {
    font-size: 16px;
  }
}

.testimonial-wrapper .testimonial-main-card {
  display: flex;
  align-items: center;
  gap: 35px;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-main-card {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-main-card {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-main-card .testimonial-image {
    flex-basis: 100%;
  }
}

.testimonial-wrapper .testimonial-main-card .testimonial-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-main-card .testimonial-image img {
    border-radius: 16px;
  }
}

.testimonial-wrapper .testimonial-main-card .testimonial-cont {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-main-card .testimonial-cont {
    padding: 0 30px 30px;
  }
}

.testimonial-wrapper .testimonial-main-card .testimonial-cont p {
  max-width: 330px;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgb(17, 17, 17);
  line-height: 160%;
  margin-bottom: 99px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-main-card .testimonial-cont p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-main-card .testimonial-cont p {
    margin-bottom: 30px;
  }
}

.testimonial-wrapper .testimonial-main-card .testimonial-cont h3 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-wrapper .testimonial-main-card .testimonial-cont span {
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-wrapper .testimonial-main-card .testimonial-cont .star {
  margin-top: 10px;
  color: rgb(248, 193, 0);
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-main-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-mini-main-card {
    display: initial;
    grid-template-columns: initial;
    gap: initial;
  }
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  border-radius: 16px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card {
    padding: 23px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card {
    padding: 30px;
  }
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-top {
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-top {
    margin-top: 0px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-top {
    margin-top: 15px;
  }
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card .info-item .cont h3 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card .info-item .cont span {
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card .star {
  margin-top: 30px;
  color: rgb(248, 193, 0);
  margin-bottom: 20px;
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  max-width: 334px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card p {
    font-size: 16px;
  }
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-card {
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-card {
    margin-top: 30px;
  }
}

.testimonial-wrapper .testimonial-mini-main-card .testimonial-mini-card.style-card p {
  max-width: 436px;
}

.testimonial-wrapper .testimonial-mini-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  border-radius: 16px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-mini-card {
    padding: 23px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-card {
    padding: 30px;
  }
}

.testimonial-wrapper .testimonial-mini-card.style-top {
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-card.style-top {
    margin-top: 0px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-mini-card.style-top {
    margin-top: 15px;
  }
}

.testimonial-wrapper .testimonial-mini-card .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-wrapper .testimonial-mini-card .info-item .cont h3 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-wrapper .testimonial-mini-card .info-item .cont span {
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-wrapper .testimonial-mini-card .star {
  margin-top: 30px;
  color: rgb(248, 193, 0);
  margin-bottom: 20px;
}

.testimonial-wrapper .testimonial-mini-card p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  max-width: 334px;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-mini-card p {
    font-size: 16px;
  }
}

.testimonial-wrapper .testimonial-mini-card.style-card {
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-mini-card.style-card {
    margin-top: 30px;
  }
}

.testimonial-wrapper .testimonial-mini-card.style-card p {
  max-width: 436px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
}

.testimonial-section .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.testimonial-section .top-shape img {
  width: 100%;
  height: 100%;
}

.testimonial-section .section-title {
  margin-left: 440px;
}

@media (max-width: 1399px) {
  .testimonial-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

.testimonial-section .section-title h2 {
  text-align: left;
}

@media (max-width: 1399px) {
  .testimonial-section .section-title h2 {
    text-align: center;
  }
}

.testimonial-section .section-title p {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 500;
  max-width: 575px;
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .testimonial-section .section-title p {
    margin: 0 auto;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .testimonial-section .section-title p {
    max-width: 700px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .section-title p {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}

.testimonial-section.style-4 {
  background-color: var(--white);
  border-radius: 16px;
  margin: 0 15px;
}

@media (max-width: 767px) {
  .testimonial-section.style-4 {
    margin-bottom: 10px;
  }
}

.testimonial-section-4 {
  border-radius: 16px;
  margin: 0 16px;
  background-color: var(--white);
}

.testimonial-box-items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  background: linear-gradient(126.27deg, #FFD8F7 -11.56%, #FFFFFF 16.68%, #FFFFFF 73.72%, #D6E7FF 134.39%);
  border: 1px solid rgb(243, 236, 255);
  margin-top: 40px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-box-items {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-items {
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
  }
}

.testimonial-box-items .lock-shape {
  position: absolute;
  right: -60px;
  top: -50px;
}

@media (max-width: 1399px) {
  .testimonial-box-items .lock-shape {
    display: none;
  }
}

.testimonial-box-items .icon-box {
  display: flex;
  align-items: start;
  gap: 8px;
  background-color: var(--theme2);
  border-radius: 16px;
  padding: 10px 16px;
  position: absolute;
  bottom: 28px;
  left: 56%;
  transform: translateX(-50%);
}

@media (max-width: 1399px) {
  .testimonial-box-items .icon-box {
    display: none;
  }
}

.testimonial-box-items .icon-box i {
  color: var(--white);
  margin-top: 5px;
}

.testimonial-box-items .icon-box h3 {
  font-family: "DM Sans", serif;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-box-items .testimonial-content {
  max-width: 54%;
  padding: 24px;
  border-radius: 24px 0 0 24px;
}

@media (max-width: 767px) {
  .testimonial-box-items .testimonial-content {
    max-width: 100%;
    padding: 0;
  }
}

.testimonial-box-items .testimonial-content .contentt .client-info-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-box-items .testimonial-content .contentt .client-info-items .info-item {
  display: flex;
  gap: 16px;
}

.testimonial-box-items .testimonial-content .contentt .client-info-items .info-item img {
  width: 40px;
  height: 40px;
}

.testimonial-box-items .testimonial-content .contentt .client-info-items .info-item .cont h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "DM Sans", serif;
}

.testimonial-box-items .testimonial-content .contentt .client-info-items .info-item .cont span {
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
}

.testimonial-box-items .testimonial-content .contentt .client-info-items img {
  width: 40px;
  height: 40px;
}

.testimonial-box-items .testimonial-content .contentt .star {
  color: rgb(255, 193, 7);
}

.testimonial-box-items .testimonial-content .contentt p {
  font-size: 19px;
  font-weight: 400;
  color: rgb(106, 106, 106);
  font-family: "DM Sans", serif;
  line-height: 120%;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .testimonial-box-items .contact-map {
    max-width: 360px;
    width: 100%;
  }
}

.testimonial-box-items .contact-map iframe {
  width: 100%;
  height: 400px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  display: block;
}

@media (max-width: 767px) {
  .testimonial-box-items .contact-map iframe {
    border-radius: 24px;
  }
}

.testimonial-section-2 {
  position: relative;
}

.testimonial-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .testimonial-section-2 .left-shape {
    display: none;
  }
}

.testimonial-section-2 .right-shape {
  position: absolute;
  right: 0;
  bottom: 200px;
}

@media (max-width: 1399px) {
  .testimonial-section-2 .right-shape {
    display: none;
  }
}

.testimonial-main-card-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .testimonial-main-card-inner {
    gap: 20px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-main-card-inner {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-main-card-inner .testimonial-image {
    flex-basis: 100%;
  }
}

.testimonial-main-card-inner .testimonial-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

@media (max-width: 1399px) {
  .testimonial-main-card-inner .testimonial-image img {
    border-radius: 16px;
  }
}

.testimonial-main-card-inner .testimonial-cont {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 767px) {
  .testimonial-main-card-inner .testimonial-cont {
    padding: 0 30px 30px;
  }
}

.testimonial-main-card-inner .testimonial-cont p {
  max-width: 606px;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgb(17, 17, 17);
  line-height: 160%;
  margin-bottom: 99px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .testimonial-main-card-inner .testimonial-cont p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .testimonial-main-card-inner .testimonial-cont p {
    margin-bottom: 30px;
  }
}

.testimonial-main-card-inner .testimonial-cont h3 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-main-card-inner .testimonial-cont span {
  color: rgb(75, 75, 75);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-main-card-inner .testimonial-cont .star {
  margin-top: 10px;
  color: rgb(248, 193, 0);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.array-button .array-prev {
  border-radius: 100px;
  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);
}

.array-button .array-next {
  border-radius: 100px;
  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: 70px;
}

@media (max-width: 1399px) {
  .swiper-dot {
    margin-top: 30px;
  }
}

.swiper-dot .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  transition: 0.6s;
  background-color: rgb(217, 217, 217);
  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(--theme2);
  transition: 0.6s;
  position: relative;
}

.swiper-dot-2 {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .swiper-dot-2 {
    margin-top: 30px;
  }
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: 0.6s;
  background-color: rgb(29, 31, 38);
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
  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: 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

@media (max-width: 1399px) {
  .page-nav-wrap {
    padding-top: 30px;
  }
}

.page-nav-wrap ul li {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: rgb(17, 17, 17);
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: rgb(17, 17, 17);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 0;
  background: transparent;
  color: rgb(17, 17, 17);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Urbanist", sans-serif;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: rgb(17, 17, 17);
  transition: all 0.4s ease-in-out;
  font-size: 12px;
}

.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: 1644px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-container-17 {
  max-width: 1367px;
  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;
}

.max-width-614 {
  max-width: 614px !important;
}

.tp-split-title {
  line-height: 1.05;
}

.tp-split-title .char {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  padding: 0.12em 0;
  margin: -0.12em 0;
}

.project-button {
  margin-top: 40px;
}

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

/*# sourceMappingURL=main.css.map */