@charset "UTF-8";

/* variable css */

/* downloaded fonts  */
@font-face {
  font-family: "Poppins";
  src: url("../webfonts/Poppins-Regular.ttf");
  font-style: normal;
}

@font-face {
  font-family: "Amazon Ember Regular";
  src: url("../webfonts/Amazon Ember Regular.otf");
  font-style: normal;
}

@font-face {
  font-family: "Amazon Ember Bold";
  src: url("../webfonts/Amazon Ember Bold.ttf");
  font-style: normal;
}

@font-face {
  font-family: "Amazon Ember Thin";
  src: url("../webfonts/Amazon Ember Thin.ttf");
  font-style: normal;
}

:root {
  --primary: #16254a;
  --secondary: #4c8a40;
  --border: rgba(15, 14, 14, 0.1);
  --bg: #0F0E0E;
  --theme: #1f5292;
  --black: #0F0E0E;
  --white: #FFFFFF;
  --action: #a4d06f;
  --secondary-2: #a4d06f;
  --background: #1B1B1B;
  --font-color: #FFFFFF;
  --body-font: rgba(15, 14, 14, 0.9);
}

html {
  --container-max-widths: 1320px;
}

@media (min-width: 1630px) {
  html {
    --container-max-widths: 1630px;
  }
}

@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}

@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}

@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

/* typography css */
/* google fonts */
:root {
  --font_amazon_ember: "Amazon Ember Regular", sans-serif;
  --font_amazon_ember_bold: "Amazon Ember Bold", sans-serif;
  --font_amazon_ember_thin: "Amazon Ember Thin", sans-serif;
  --font_poppins: "Poppins";
  --font_awesome: "FontAwesome";
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_poppins);
  line-height: 1;
  color: var(--body-font);
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  line-height: 1.15;
  font-family: var(--font_amazon_ember_bold);
  font-weight: 400;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

a:hover {
  color: var(--secondary);
}

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

p {
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 34px;
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

main {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}


.bgcolor-1 {
  background: #1f5292;
}

.bgcolor-2 {
  background: #16254a;
}

.bgcolor-3 {
  background: #4c8a40;
}

.bgcolor-4 {
  background: #a4d06f;
}

.bgcolor-5 {
  background: #747575;
}

.bgcolor-6 {
  background: #cfcfcc;
}

.bgcolor-7 {
  background: #b7d7f9;
}

.bgcolor-8 {
  background: #9ebaf2;
}

.bgcolor-9 {
  background: #b0e2a6;
}

.bgcolor-10 {
  background: #dcf7b5;
}

.bgcolor-11 {
  background: #d8d8d8;
}

.bgcolor-12 {
  background: #e8e8e8;
}


.text-1 {
  color: #1f5292;
}

.text-2 {
  color: #16254a;
}

.text-3 {
  color: #4c8a40;
}

.text-4 {
  color: #a4d06f;
}

.text-5 {
  color: #747575;
}

.text-6 {
  color: #cfcfcc;
}

.text-7 {
  color: #b7d7f9;
}

.text-8 {
  color: #9ebaf2;
}

.text-9 {
  color: #b0e2a6;
}

.text-10 {
  color: #dcf7b5;
}

.text-11 {
  color: #d8d8d8;
}

.text-12 {
  color: #e8e8e8;
}

.grad-1 {
  background-image: linear-gradient(180deg, #a4d06f, #dcf7b5);
}

.grad-2 {
  background-image: linear-gradient(180deg, #252627, #1f5292);
}

.grad-3 {
  background-image: linear-gradient(180deg, #1f5292, #252627);
}

/* animation css */
.t_parallax_image {
  overflow: hidden;
}

@keyframes t-Bubble {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.5;
  }

  100% {
    scale: 1;
  }
}

@keyframes t-Zoom {
  0% {
    scale: 1;
  }

  50% {
    scale: 0.5;
  }

  100% {
    scale: 1;
  }
}

@keyframes t-Zoom_2 {
  0% {
    scale: 1;
  }

  50% {
    scale: 0.9;
  }

  100% {
    scale: 1;
  }
}

@keyframes ui-SlideBottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes t-reveal {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes t-fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }

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

@keyframes t-spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes t-characters {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes t-sheen {
  50% {
    transform: translateY(-20px);
    color: var(--primary);
  }
}

@keyframes t-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* common css */
/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Utility classes for positioning */
.ui-pos-rel {
  position: relative;
}

.ui-pos-abs {
  position: absolute;
}

.ui-ov-hidden {
  overflow: hidden;
}

/* Container with max-width and padding */
.ui-container-1900 {
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.ui-container {
  max-width: 1630px;
}

.ui-container-1920 {
  max-width: 1920px;
  padding-left: 0;
  padding-right: 0;
}

/* Background color classes */
.ui-bg-primary {
  background-color: var(--primary);
  /* Primary background color */
}

.ui-bg-white {
  background-color: var(--white);
  /* White background color */
}

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

.dark .ui-bg-black {
  background-color: #171717;
}

.ui-bg-light-gray {
  background-color: #F0F0F0;
}

.dark .ui-bg-light-gray {
  background-color: #212121;
}

.ui-bg-light {
  background-color: #F8F2EF;
}

.dark .ui-bg-light {
  background-color: #111111;
  --primary: #F8F2EF;
}

.ui-text-white {
  color: var(--white);
}

.ui-text-primary {
  color: var(--primary);
}

.text-gray {
  color: #555555;
}

.dark .text-gray {
  color: #999999;
}

.ui-light {
  color: #F8F2EF;
}

.agency-body-border {
  border-right: 1px solid rgba(17, 17, 17, 0.2);
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .agency-body-border {
  border-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 767px) {
  .agency-body-border {
    border: none;
  }
}

/* Full background image styling */
.ui-bg-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ui-bg-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Centering utility */
.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Parallax view styling */
.parallax-view {
  overflow: hidden;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  padding: 3px 19px;
  line-height: 26px;
  border-radius: 5px;
  color: rgba(15, 14, 14, 0.9);
  display: inline-block;
  border: 1px solid var(--border);
  background: #e8e8e8;
}


/* Section title styling with responsive font sizes */
.section-title {
  font-size: 64px;
}

@media only screen and (max-width: 1919px) {
  .section-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-title {
    font-size: 56px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 35px;
  }
}

.section-title-2 {
  font-size: 80px;
}

@media only screen and (max-width: 1919px) {
  .section-title-2 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-title-2 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title-2 {
    font-size: 50px;
  }
}

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

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

.section-title-3 {
  font-size: 36px;
}

@media only screen and (max-width: 1399px) {
  .section-title-3 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title-3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title-3 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title-3 {
    font-size: 26px;
  }
}

.text-reveal-line {
  overflow: hidden;
}

/* Section spacing with responsive padding */
.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-spacing-top {
  padding-top: 160px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-top {
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-top {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-top {
    padding-top: 60px;
  }
}

.section-spacing-bottom {
  padding-bottom: 160px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-bottom {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-bottom {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-bottom {
    padding-bottom: 60px;
  }
}

/* Container styling with full HD support */
.container {
  --bs-gutter-x: 30px;
}

@media (min-width: 1600px) {
  .container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Side info and offcanvas styling */
.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.9;
  visibility: visible;
}

.side-info-close {
  font-size: 20px;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
  color: var(--black);
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
  line-height: 38px;
}

.dark .side-info-close {
  border-color: var(--white);
  color: var(--white);
}

.side-info-close:hover {
  transform: rotate(90deg);
}

.side-info {
  background: var(--white) none repeat scroll 0 0;
  padding: 40px 45px;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.dark .side-info {
  background-color: #1F1F1F;
}

@media only screen and (max-width: 1199px) {
  .side-info {
    width: 460px;
  }
}

@media (max-width: 575px) {
  .side-info {
    width: 100%;
    padding: 30px 20px;
  }
}

.side-info ::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

.side-info.info-open {
  opacity: 1;
  transform: translateX(0);
  /* Show side info */
}

/* Offset header and logo styling */
.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offset-logo {
  width: 115px;
}

@media (max-width: 575px) {
  .offset-logo {
    width: 105px;
  }
}

.offset-logo img {
  width: 100%;
}

.offset-button {
  margin-top: 40px;
}

@media (min-width: 576px) {
  .offset-button {
    display: none;
  }
}

/* Offset widget box styling */
.offset-widget-box {
  margin-top: 40px;
}

.offset-widget-box .title {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
  .offset-widget-box .title {
    margin-bottom: 22px;
  }
}

.offset-widget-box .contact-meta>*:not(:first-child) {
  margin-top: 16px;
}

.offset-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offset-widget-box .contact-item span {
  color: var(--primary);
  font-weight: 400;
}

.offset-widget-box .contact-item span a:hover {
  color: var(--secondary);
}

.offset-widget-box .contact-item .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--border);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}

/* Mobile menu customization */
.mobile-menu {
  margin-top: 40px;
}

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

.mobile-menu.mean-container .mean-nav>ul>li:last-child>a {
  border-bottom: 1px solid var(--border);
}

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

.mobile-menu.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: #999999;
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

.mobile-menu.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  text-transform: capitalize;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}

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

.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  width: 100%;
  height: 48px;
  justify-content: end;
  font-weight: 300;
  border: none !important;
  background-color: transparent;
  font-size: 28px !important;
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.mobile-menu.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li a {
  font-size: 16px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 15px;
}

.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}

@media only screen and (max-width: 991px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}

.mobile-menu.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}

.mobile-menu.mean-container .mean-bar {
  padding-bottom: 30px;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}

.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}

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

/* Sticky header styling */
.header-sticky {
  transition: all 0.5s;
}

.transformed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  transform: translateY(-100%);
}

.transformed .header-area__inner {
  height: 80px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  background-color: #FFFFFF;
  transform: translateY(0%);
}

.sticky .header-area__inner {
  height: 80px;
}

/* Inverted text style */
.text-invert>div {
  background-image: linear-gradient(to right, #FFFFFF 50%, rgba(15, 14, 14, 0.1) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}



.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}

.img_anim_reveal img {
  object-fit: cover;
  transform-origin: left;
}

.anim-reveal {
  overflow: hidden;
}

.anim-reveal-line {
  overflow: hidden;
}

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

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

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

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

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

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

.dark .ui-bg-black {
  background-color: #171717;
}

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

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

.ui-bg-transparent {
  background-color: transparent;
}

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

.zi-1 {
  z-index: 1;
}

.zi-2 {
  z-index: 2;
}

.zi-0 {
  z-index: 0;
}

.zi--1 {
  z-index: -1;
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

.header__area-6 {
  position: unset;
}

.vertically-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-indent-40 {
  text-indent: 40px;
}

.text-indent-50 {
  text-indent: 50px;
}

header {
  margin-bottom: -1px;
  z-index: 100;
}

section {
  margin-bottom: -1px;
}

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

.dir-rtl {
  direction: rtl;
}

.show-light {
  display: inline-block;
}

.dark .show-light {
  display: none;
}

.show-dark {
  display: none;
}

.dark .show-dark {
  display: inline-block;
}

.line-divider-sm {
  height: 0.5px;
  background-color: var(--black-9);
}

.admin-bar header,
.admin-bar .body-wrapper {
  margin-top: 32px;
}

.swiper,
.swiper-container {
  direction: ltr;
}

.border-e-0 {
  border-inline-end: 0 !important;
}

.border-s-0 {
  border-inline-start: 0 !important;
}

/* preloader css */
.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
}

.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.container-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 6em;
  width: 6em;
  border: 7px solid var(--primary);
  border-top-color: var(--white);
  margin: 0 auto 3.5em auto;
}

@media only screen and (max-width: 1199px) {
  .container-preloader .animation-preloader .spinner {
    height: 4em;
    width: 4em;
    border-width: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .spinner {
    margin: 0 auto 0.2em auto;
  }
}

.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}

.container-preloader .animation-preloader .txt-loading .characters {
  color: var(--white);
  position: relative;
  display: inline-block;
}

.dark .container-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .txt-loading .characters {
    font-size: 50px;
  }
}

.container-preloader .animation-preloader .txt-loading .characters:before {
  color: var(--primary);
  content: attr(data-text);
  animation: characters 4s infinite;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: rotateY(-90deg);
}

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

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

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

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

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

.container-preloader .loader-section {
  background-color: var(--white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.dark .container-preloader .loader-section {
  background-color: var(--white);
}

.container-preloader .loader-section.section-left {
  left: 0;
}

.container-preloader .loader-section.section-right {
  right: 0;
}

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

.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* scroll css */
.scroll__down {
  display: flex;
  gap: 20px;
  align-items: center;
}

.scroll__down p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--white);
}

.scroll__down span {
  width: 66px;
  height: 106px;
  border: 1px solid var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 89px;
}

.scroll__down span i {
  color: var(--white);
}

.scroll__down-wrapper {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1399px) {
  .scroll__down-wrapper {
    height: 380px;
  }
}

@media only screen and (max-width: 1199px) {
  .scroll__down-wrapper {
    height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .scroll__down-wrapper {
    height: auto;
    padding: 40px 0;
  }
}

.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 9999;
  background: var(--white);
  border-radius: 100px;
  mix-blend-mode: exclusion;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.scroll-top.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  mix-blend-mode: exclusion;
  background-color: var(--black);
}

.progress-wrap::after {
  position: absolute;
  content: "";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
}

.dark .progress-wrap::after {
  color: var(--black);
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.light .scroll__down p {
  color: var(--black);
}

.light .scroll__down span {
  border-color: var(--white-3);
}

.light .scroll__down span i {
  color: var(--black);
}


.light.progress-wrap {
  margin: 0;
  background-color: transparent;
}

.light.progress-wrap svg path {
  fill: var(--black);
}

.light.progress-wrap::after {
  color: var(--white);
}

/* button css */
.ui-btn {
  display: inline-flex;
}

.ui-btn:hover .btn-text {
  background-color: var(--secondary-2);
  color: var(--black);
}

.ui-btn:hover .btn-icon {
  background-color: var(--secondary-2);
  color: var(--black);
}

.ui-btn .btn-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  padding: 14px 24px;
  background-color: var(--black);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s;
}

.ui-btn .btn-icon {
  width: 46px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.ui-btn.bordered:hover .btn-text {
  background-color: var(--secondary-2);
  border-color: transparent;
}

.ui-btn.bordered:hover .btn-icon {
  background-color: var(--secondary-2);
  border-color: transparent;
}

.ui-btn.bordered .btn-text {
  background-color: transparent;
  border: 1px solid var(--black);
  padding: 13px 23px;
  color: var(--black);
}

.ui-btn.bordered .btn-icon {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.ui-btn.circle .btn-text {
  border-radius: 10px;
}

.ui-btn.circle .btn-icon {
  border-radius: 100px;
}

.ui-btn.reversed {
  flex-direction: row-reverse;
  gap: 10px;
}

.ui-btn.reversed:hover .btn-icon {
  transform: translateX(10px);
}

.ui-btn.v2.bordered:hover .btn-text {
  background-color: var(--secondary-2);
  color: var(--black);
  border-color: var(--black);
}

.ui-btn.v2.bordered:hover .btn-icon {
  background-color: var(--secondary-2);
  border-color: var(--black);
  color: var(--black);
}

.ui-btn.v2.bordered .btn-text {
  background-color: transparent;
  border: 1px solid var(--white);
  padding: 13px 23px;
  color: var(--white);
}

.ui-btn.v2.bordered .btn-icon {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.ui-btn-2 {
  display: inline-flex;
  gap: 34px;
  align-items: center;
  padding: 5px 34px 5px 5px;
  background-color: #ddf160;
  border-radius: 30px;
}

.ui-btn-2:hover {
  background-color: var(--white);
}

.ui-btn-2:hover .btn-text {
  color: var(--black);
}

.ui-btn-2:hover .btn-icon {
  background-color: #ddf160;
  color: var(--black);
}

.ui-btn-2 .btn-text {
  font-family: var(--font_roboto);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  transition: all 0.3s;
}

.ui-btn-2 .btn-icon {
  width: 40px;
  height: 40px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.ui-btn-underline {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: var(--primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 0px;
  white-space: nowrap;
}

.ui-btn-underline:hover::before {
  width: 0;
}

.ui-btn-underline:hover i {
  rotate: 0deg;
}

.ui-btn-underline::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s;
}

.ui-btn-underline .icon {
  display: flex;
}

.ui-btn-underline i {
  font-size: 17px;
  font-weight: 400;
  transition: all 0.3s;
}

@keyframes mask_animation {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

.btn-hover-default {
  transition: all 0.5s;
}

.btn-hover-default:hover {
  color: var(--black);
  background-color: var(--white);
}

.btn-hover-cross {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}

.btn-hover-cross::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}

.btn-hover-cross:hover {
  border-color: var(--primary);
  background-color: transparent;
}

.btn-hover-cross:hover::after {
  height: 120%;
  opacity: 1;
}

.btn-hover-divide {
  overflow: hidden;
  position: relative;
  transition: all 1s;
  z-index: 1;
}

.btn-hover-divide::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}

.btn-hover-divide:hover {
  border-color: var(--primary);
  background-color: transparent !important;
  border-color: transparent;
}

.btn-hover-divide:hover::after {
  height: 400%;
  opacity: 1;
}

.btn-hover-cropping {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}

.btn-hover-cropping::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(25deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}

.btn-hover-cropping:hover {
  border-color: var(--primary);
  background-color: transparent;
}

.btn-hover-cropping:hover::after {
  height: 400%;
  opacity: 1;
}

.btn-hover-mask {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 5px;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  border: 1px solid var(--white);
  z-index: 1;
}

.btn-hover-mask::after {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  position: absolute;
  content: attr(data-text);
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--white);
  mask-size: 2300% 100%;
  animation: mask_animation_2 0.7s steps(22) forwards;
}

.btn-hover-mask:hover {
  color: var(--white);
}

.btn-hover-mask:hover::after {
  animation: mask_animation 0.7s steps(22) forwards;
}

.btn-rollover-top {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:hover {
  border-color: var(--primary);
  background-color: transparent;
}

.btn-rollover-top:hover::before {
  top: 0%;
  bottom: auto;
  height: 100%;
}

.btn-rollover-left {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-left::before {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.btn-rollover-left:hover {
  border-color: var(--primary);
  background-color: transparent;
}

.btn-rollover-left:hover::before {
  left: 0%;
  right: auto;
  width: 100%;
}

.btn-rollover-cross {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.btn-rollover-cross::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 100%;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  transition: all 0.75s;
}

.btn-rollover-cross::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  right: 100%;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  transition: all 0.75s;
}

.btn-rollover-cross:hover {
  border-color: transparent;
  color: var(--primary);
}

.btn-rollover-cross:hover::before {
  bottom: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.btn-rollover-cross:hover::after {
  top: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.btn-parallal-border {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.btn-parallal-border::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}

.btn-parallal-border::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  top: 0;
  right: 0;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}

.btn-parallal-border:hover {
  border-color: transparent;
  color: var(--primary);
}

.btn-parallal-border:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.btn-parallal-border:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.circle-text {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .circle-text {
    width: 120px;
    height: 120px;
  }
}

.circle-text .text {
  animation: spinner 5s infinite linear;
}

.circle-text .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-text:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 37px solid transparent;
  border-radius: 50%;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

.ui-btn-group {
  display: inline-flex;
}

.ui-btn-group>*:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-right: -46px;
  transition: all 0.3s;
}

.ui-btn-group>*:nth-child(2) {
  transform: scale3d(1, 1, 1);
  transition: all 0.3s;
}

.ui-btn-group>*:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-left: 0;
  transition: all 0.3s;
}

.ui-btn-group:hover>*:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-right: 0;
}

.ui-btn-group:hover>*:nth-child(2) {
  transform: scale3d(1, 1, 1);
}

.ui-btn-group:hover>*:nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-left: -46px;
}

.ui-btn-group .btn-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  padding: 14px 24px;
  background-color: var(--black);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s;
  z-index: 1;
}

.ui-btn-group .btn-icon {
  width: 46px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.ui-btn-group.bordered:hover .btn-text {
  background-color: var(--theme);
  border-color: transparent;
}

.ui-btn-group.bordered:hover .btn-icon {
  background-color: var(--theme);
  border-color: transparent;
}

.ui-btn-group.bordered .btn-text {
  background-color: var(--white);
  border: 1px solid #eeeeee;
  padding: 13px 23px;
  color: var(--black);
}

.ui-btn-group.bordered .btn-icon {
  background-color: var(--white);
  border: 1px solid #eeeeee;
  color: var(--black);
}

.ui-btn-group-2 {
  display: inline-flex;
  gap: 2px;
}

.ui-btn-group-2>*:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-right: 0;
  transition: all 0.3s;
}

.ui-btn-group-2>*:nth-child(2) {
  transform: scale3d(1, 1, 1);
  transition: all 0.3s;
}

.ui-btn-group-2>*:nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-left: -46px;
  transition: all 0.3s;
}

.ui-btn-group-2:hover>*:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-right: -46px;
}

.ui-btn-group-2:hover>*:nth-child(2) {
  transform: scale3d(1, 1, 1);
}

.ui-btn-group-2:hover>*:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-left: 0;
}

.ui-btn-group-2 .btn-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  padding: 14px 24px;
  background-color: var(--black);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s;
  z-index: 1;
}

.ui-btn-group-2 .btn-icon {
  width: 46px;
  min-width: 46px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.ui-btn-group-2.bordered:hover .btn-text {
  background-color: var(--secondary-2);
  border-color: transparent;
  color: var(--black);
}

.ui-btn-group-2.bordered:hover .btn-icon {
  background-color: var(--secondary-2);
  border-color: transparent;
  color: var(--black);
}

.ui-btn-group-2.bordered .btn-text {
  background-color: var(--black);
  border: 1px solid #04030a;
  padding: 13px 23px;
  color: var(--white);
}

.ui-btn-group-2.bordered .btn-icon {
  background-color: var(--black);
  border: 1px solid #04030a;
  color: var(--white);
}

/* menu css */
.main-menu.menu-dark>ul>li>a {
  color: var(--black);
}

.main-menu.menu-light>ul>li>a {
  color: var(--white);
}

.main-menu>ul {
  display: flex;
}

.main-menu>ul>li {
  padding: 5px 0;
}

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

.main-menu>ul>li:hover>ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 0;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 100%;
}

.main-menu li {
  position: relative;
  list-style: none;
}

.main-menu li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  padding: 37px 15px;
  text-transform: capitalize;
}

.main-menu ul.dp-menu {
  background-color: #232529;
  padding: 18px 0px;
  width: 290px;
  position: absolute;
  inset-inline-start: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  border-radius: 6px;
  margin-top: 5px;
  transition: all 0.5s;
}

.main-menu ul.dp-menu.column-2 {
  column-count: 2;
  width: 480px;
  column-gap: 0;
}

.main-menu ul.dp-menu ul {
  background: var(--black);
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}

.main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}

.main-menu ul.dp-menu li:hover>a {
  color: var(--white);
  background-color: transparent;
}

.main-menu ul.dp-menu li:hover>ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}

.main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 6px;
  text-transform: uppercase;
}

.main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}

.main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}

.main-menu .has-mega-menu {
  position: static;
}

.main-menu li.menu-item-has-children>a:after {
  content: "";
  font-family: var(--font_awesome);
  margin-inline-start: 5px;
  font-weight: 600;
  font-size: 14px;
}

.main-menu .mega-menu {
  background-color: var(--black);
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}

@media only screen and (max-width: 1399px) {
  .main-menu .mega-menu {
    column-gap: 30px;
  }
}

.main-menu .mega-menu li:has(ul)>a:after {
  content: "";
}

.main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}

.main-menu .mega-menu li a:hover {
  color: var(--white);
  background: #2C2C2F;
}

.main-menu .mega-menu .title {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #333337;
  padding-bottom: 20px;
  margin-bottom: 20px;
  pointer-events: none;
  border-radius: 0;
}

.main-menu .mega-style-2 {
  padding: 0 15%;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

.main-menu .mega-style-2 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}

.main-menu .mega-style-2 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.main-menu .mega-style-2>li:not(:first-child) {
  border-left: 1px solid #333337;
}

.main-menu .mega-style-2 ul {
  column-count: 2;
  position: relative;
  padding: 20px 0;
}

.main-menu .mega-style-2 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}

.main-menu .mega-style-2 ul li a {
  padding-left: 30px;
}

.main-menu .mega-style-3 {
  padding: 0 0 0 20px;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.main-menu .mega-style-3 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}

.main-menu .mega-style-3 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.main-menu .mega-style-3>li:not(:first-child) {
  border-left: 1px solid #333337;
}

.main-menu .mega-style-3>li:last-child {
  border: none;
  width: 36vw;
}

@media only screen and (max-width: 1399px) {
  .main-menu .mega-style-3>li:last-child {
    width: 32vw;
  }
}

.main-menu .mega-style-3 ul {
  column-count: 2;
  position: relative;
  padding: 20px 0;
  column-gap: 0;
}

.main-menu .mega-style-3 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}

.main-menu .mega-style-3 ul li {
  margin: 0 10px;
}

.main-menu .mega-style-3 ul li a {
  padding-left: 20px;
}

.main-menu .mega-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.main-menu .mega-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 60px;
}

.main-menu .list-3-column ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}

@media only screen and (max-width: 1399px) {
  .main-menu .list-3-column ul {
    column-gap: 30px;
  }
}

.main-menu .span-first-item ul li:first-child {
  grid-column: 1/-1;
  column-span: all;
}

.main-menu .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  border-radius: 2px;
  margin-inline-start: 8px;
  display: inline-block;
}

@media only screen and (max-width: 1199px) {
  .main-menu-2 {
    display: none;
  }
}

.main-menu-2 li {
  display: inline-block;
  padding: 0 10px;
}

.main-menu-2 li a {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px;
  text-transform: capitalize;
}

.main-menu-2 li a:hover {
  color: var(--primary);
}

@media only screen and (max-width: 1399px) {
  .main-menu-2 li a {
    padding: 5px 0;
  }
}

.main-menu-3 li {
  display: inline-block;
  margin-right: 45px;
}

@media only screen and (max-width: 1199px) {
  .main-menu-3 li {
    margin-right: 25px;
  }
}

.main-menu-3 li:last-child {
  margin-right: 0;
}

.main-menu-3 li a {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.main-menu-3 li a:hover {
  color: var(--primary);
}

.main-menu-4 li {
  display: inline-block;
  margin-right: 50px;
}

.main-menu-4 li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-transform: uppercase;
}

.main-menu-4 li a:hover {
  color: var(--primary);
}

.mega-menu-thumb {
  width: 108%;
  aspect-ratio: 100/83;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .mega-menu-thumb {
    width: 100%;
    height: 100%;
  }
}

.mega-menu-thumb:after {
  position: absolute;
  content: "";
  width: 76%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}

.mega-menu-thumb .laptop-view {
  width: 70%;
  aspect-ratio: 100/114;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  right: 70px;
  bottom: 0;
}

.mega-menu-counter__item {
  text-align: center;
  display: inline-block;
  margin-top: 35%;
  margin-left: 17%;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .mega-menu-counter__item {
    margin: 30px auto 50px;
  }
}

.mega-menu-counter__text p {
  font-size: 30px;
  line-height: 28px;
  color: var(--white);
  font-weight: 500;
}

.mega-menu-counter__number {
  font-size: 150px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
  .menu-with-number {
    display: none;
  }
}

.menu-with-number li {
  display: inline-block;
}

.menu-with-number li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 34px 40px;
  display: inline-block;
  text-transform: uppercase;
}

.menu-with-number li a:hover span {
  color: var(--white);
}

.menu-with-number li a:hover span::before {
  background-color: var(--white);
}

.menu-with-number li a.active span {
  color: var(--white);
}

.menu-with-number li a.active span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  background-color: var(--white);
}

.menu-with-number li a span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
  text-align: right;
  color: #999999;
  position: relative;
  transition: all 0.5s;
}

.menu-with-number li a span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  transition: all 0.5s;
  background-color: var(--black-6);
}

.sidebar-menu li {
  display: block;
  padding-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
  .sidebar-menu li {
    padding-bottom: 10px;
  }
}

.sidebar-menu li a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px 0;
  text-transform: uppercase;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  color: var(--primary);
}

@media only screen and (max-width: 1399px) {
  .sidebar-menu li a {
    padding: 5px 0;
  }
}

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

.offcanvas__menu-wrapper.mean-container .mean-nav>ul>li:last-child>a {
  border-bottom: 1px solid var(--black-4);
}

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

.offcanvas__menu-wrapper.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 15px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  border-top: 1px solid var(--black-4);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--secondary);
  opacity: 1;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
  font-size: 20px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 30px;
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 18px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}

@media only screen and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
  padding: 0;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}

.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}

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

.light .main-menu li a:hover {
  color: var(--primary);
}

.light .main-menu-2 li a {
  color: var(--black);
}

.light .main-menu-2 li a:hover {
  color: var(--primary);
}

.light .main-menu-3 li a {
  color: var(--black);
}

.light .main-menu-3 li a:hover {
  color: var(--primary);
}

.light .sidebar-menu li a {
  color: var(--black);
}

.light .sidebar-menu li a:hover {
  color: var(--primary);
}

.light .menu-with-number li a {
  color: var(--black);
}

.light .menu-with-number li a:hover span {
  color: var(--black);
}

.light .menu-with-number li a:hover span::before {
  background-color: var(--black);
}

.light .menu-with-number li a span {
  color: var(--black-9);
}

.light .menu-with-number li a span::before {
  background-color: var(--black-9);
}

.light .menu-with-number li a.active span {
  color: var(--black);
}

.light .menu-with-number li a.active span::before {
  background-color: var(--black);
}

/* modal css */
.modal__dialog {
  width: 760px;
  max-width: 100%;
  margin-top: 100px;
}

@media only screen and (max-width: 991px) {
  .modal__dialog {
    width: 700px;
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .modal__dialog {
    width: 350px;
  }
}

.modal__content {
  height: 500px;
}

@media only screen and (max-width: 767px) {
  .modal__content {
    height: 300px;
  }
}

.modal__content iframe {
  width: 100%;
  height: 100%;
}

.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -15px;
  right: -15px;
  z-index: 9;
  border-radius: 50px;
  font-size: 20px;
  color: var(--white);
  background: var(--black);
  transition: all 0.3s;
}

.modal__close:hover {
  color: var(--primary);
}

.modal__sfluence {
  width: 100%;
  height: 100%;
  padding: 60px;
}

@media only screen and (max-width: 767px) {
  .modal__sfluence {
    padding: 20px 10px;
  }
}

.modal__sfluence-area {
  width: 100vw;
  height: 100vh;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0.5);
}

.modal__sfluence-area.showed {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.modal__sfluence-area .close_btn {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0px;
  right: 20px;
  z-index: 9;
  border-radius: 50px;
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__sfluence-area .close_btn:hover {
  color: var(--primary);
}

@media only screen and (max-width: 767px) {
  .modal__sfluence-area .close_btn {
    right: 0;
  }
}

.modal__sfluence-area iframe,
.modal__sfluence-area video {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {

  .modal__sfluence-area iframe,
  .modal__sfluence-area video {
    height: 300px;
    object-fit: cover;
    margin-top: 45%;
  }
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* cursor css  */
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  -webkit-transition: opacity 0.3s, color 0.4s;
  -o-transition: opacity 0.3s, color 0.4s;
  -moz-transition: opacity 0.3s, color 0.4s;
  transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 80px;
  height: 30px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, opacity 0.1s, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.1s;
  transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.cb-cursor-text {
  position: absolute;
  top: -28px;
  left: -4px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: scale(0) rotate(10deg);
  -moz-transform: scale(0) rotate(10deg);
  -ms-transform: scale(0) rotate(10deg);
  -o-transform: scale(0) rotate(10deg);
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: black;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
  transition: opacity 0.4s, -webkit-transform 0.3s;
  -o-transition: opacity 0.4s, -o-transform 0.3s;
  -moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.4s, transform 0.3s;
  transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {

  .cb-cursor.-exclusion,
  .cb-cursor.-opaque {
    mix-blend-mode: exclusion;
  }
}

@supports (mix-blend-mode: exclusion) {

  .cb-cursor.-exclusion:before,
  .cb-cursor.-opaque:before {
    background: white;
  }
}

.cb-cursor.-normal,
.cb-cursor.-text {
  mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
  background: currentColor;
}

.cb-cursor.-inverse {
  color: white;
}

.cb-cursor.-visible:before {
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
  -webkit-transform: scale(0.23);
  -moz-transform: scale(0.23);
  -ms-transform: scale(0.23);
  -o-transform: scale(0.23);
  transform: scale(0.23);
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.cb-cursor.-text:before {
  background: #fff;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.cb-cursor.-text.-active:before {
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -ms-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
  -webkit-transform: scale(1.32);
  -moz-transform: scale(1.32);
  -ms-transform: scale(1.32);
  -o-transform: scale(1.32);
  transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.cb-cursor.-lg:before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

.cb-cursor.-hidden:before {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.-color-red {
  color: red;
}

.-color-green {
  color: #51c67d;
}

.cb-demo {
  background: #fff;
}

.cb-demo-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
}

.cb-demo-container {
  padding: 0 20px;
}

@media (min-width: 1600px) {
  .cb-demo-container {
    padding: 0 120px;
  }
}

.cb-demo-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 30px 0;
}

@media (min-width: 1600px) {
  .cb-demo-row {
    margin: 60px 0;
  }
}

.cb-demo-item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 50px 30px;
  margin: 0 20px;
  color: #000;
}

@media (min-width: 1600px) {
  .cb-demo-item {
    padding: 90px 30px;
    margin: 0 30px;
  }
}

.cb-demo-item-title {
  position: relative;
  margin: 0 0 25px 0;
  font-size: 30px;
  font-weight: bold;
}

.cb-demo-item-text {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.cb-demo-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #f8f8f8;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  -o-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s, -moz-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s, -moz-box-shadow 0.2s;
}

.cb-cursor.-green {
  color: green;
}

.cb-cursor.-green:before {
  background: green;
}

.cb-cursor.-red .cb-cursor-text {
  color: black;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  text-transform: uppercase;
}

.cb-cursor.-red {
  color: black;
  background-color: black;
  width: 5px;
  height: 5px;
}

.cb-cursor.-red:before {
  border-radius: 500px;
  background: white;
  width: 100px;
  height: 100px;
  color: #fff;
}

.cb-cursor.-portfolio:before {
  display: none;
}

.cb-cursor.-portfolio .cb-cursor-text {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  text-align: start;
}

.cb-cursor.-portfolio .work-btn {
  width: 120px;
  height: 120px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
  padding: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary);
  transition: all 0.5s;
}

.cb-cursor.-portfolio .work-btn i {
  font-size: 16px;
}

/* header css */
/* header area style  */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 0px solid rgba(15, 14, 14, 0.12);
}

.header-area:after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background: #000;
  background-size: 100% 100%;
  width: 100%;
  height: 90px;
  float: left;
  z-index: -1;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(5px) hue-rotate(0deg);
  opacity: 0.5;
  display: none;
}

.header-area-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  height: 90px;
}

@media only screen and (max-width: 1199px) {
  .header-area-inner {
    height: 80px;
  }
}

.header-area .sticky,
.header-area .transformed {
  background-color: #ffffff;
}

.header-area .main-menu>ul {
  display: flex;
  gap: 44px;
}

.header-area .main-menu>ul>li:hover>a {

  color: var(--primary);
  font-weight: bold;
}

.header-area .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 3px 7px;
  color: var(--black);
  text-transform: uppercase;
  border-radius: 6px;
}

.header-logo {
  margin-right: auto;
}

.header-logo img {
  width: 145px;
}

.header-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 575px) {
  .header-btn {
    display: none;
  }
}

.header-navicon .side-toggle {
  width: 80px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header-2 area style  */
.header-2-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-2-area-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  height: 90px;
}

.header-2-area .sticky,
.header-2-area .transformed {
  background-color: #ffffff;
}

.header-2-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .header-2-meta {
    display: none;
  }
}

.header-2-meta .meta-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 15px 25px;
  transition: all 0.3s;
}

.header-2-meta .meta-item:hover {
  background-color: var(--theme);
  border-color: transparent;
}

.header-2-meta .meta-item.v2 {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.header-2-meta .meta-item.v2 img {
  transition: all 0.3s;
}

.header-2-meta .meta-item.v2:hover {
  color: var(--black);
}

.header-2-meta .meta-item.v2:hover img {
  filter: brightness(0);
}

.header-2-navicon .ui-offcanvas-open-btn {
  width: 80px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.header-2-navicon .ui-offcanvas-open-btn:hover {
  background-color: var(--theme);
  border-color: transparent;
}

.header-2-navicon.v2 .ui-offcanvas-open-btn {
  width: 80px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-2-navicon.v2 .ui-offcanvas-open-btn:hover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.header-2-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .header-2-logo {
    position: static;
    transform: none;
    margin-left: auto;
  }
}

.header-2-logo img {
  width: 145px;
}

.header-2-nav {
  display: none;
}

.header-2-btn {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .header-2-btn {
    display: none;
  }
}

.header-2-btn .ui-btn-group-2 .btn-text {
  padding: 15px 33px;
  border-color: var(--border);
}

.header-2-btn .ui-btn-group-2 .btn-icon {
  width: 50px;
  border-color: var(--border);
}

/* header-3 area style  */
.header-3-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-3-area-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  height: 90px;
}

@media only screen and (max-width: 1199px) {
  .header-3-area-inner {
    height: 80px;
  }
}

.header-3-area .sticky,
.header-3-area .transformed {
  background-color: #ffffff;
}

.header-3-area .main-menu>ul {
  display: flex;
  gap: 25px;
}

.header-3-area .main-menu>ul>li:hover>a {
  color: var(--secondary);
}

.header-3-area .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 3px 7px;
  color: var(--black);
  text-transform: uppercase;
  border-radius: 6px;
}

.header-3-logo {
  margin-right: auto;
}

.header-3-logo img {
  width: 145px;
}

.header-3-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 575px) {
  .header-3-btn {
    display: none;
  }
}

.header-3-btn .ui-btn:hover .btn-text {
  background-color: var(--theme);
  color: var(--white);
}

.header-3-btn .ui-btn:hover .btn-icon {
  background-color: var(--theme);
  color: var(--white);
}

.header-3-btn .ui-btn .btn-text {
  background-color: var(--secondary-2);
  color: var(--black);
}

.header-3-btn .ui-btn .btn-icon {
  background-color: var(--secondary-2);
  color: var(--black);
}

.header-3-navicon .side-toggle {
  width: 80px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header-4 area style  */
.header-4-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 24px;
}

@media only screen and (max-width: 1919px) {
  .header-4-area {
    margin-top: 14px;
  }
}

.header-4-area-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  height: 90px;
}

.header-4-area .sticky,
.header-4-area .transformed {
  background-color: #ffffff;
}

.header-4-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .header-4-meta {
    display: none;
  }
}

.header-4-meta .meta-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-radius: 100px;
  padding: 14px 26px;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-4-meta .meta-item:hover {
  background-color: var(--theme);
  color: var(--black);
}

.header-4-meta .meta-item:hover img {
  filter: brightness(0);
}

.header-4-meta .meta-item img {
  transition: all 0.3s;
}

.header-4-logo-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  width: 470px;
  margin-right: auto;
}

@media only screen and (max-width: 1919px) {
  .header-4-logo-wrapper {
    width: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .header-4-logo-wrapper {
    width: 100%;
  }
}

.header-4-logo {
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

@media only screen and (max-width: 1919px) {
  .header-4-logo {
    height: 80px;
    padding: 0 30px;
  }
}

.header-4-logo img {
  width: 145px;
}

.header-4-navicon {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

@media only screen and (max-width: 1919px) {
  .header-4-navicon {
    width: 80px;
    height: 80px;
  }
}

.header-4-nav {
  display: none;
}

@media only screen and (max-width: 767px) {
  .header-4-btn {
    display: none;
  }
}

.header-4-btn .ui-btn-group:hover .btn-text {
  background-color: var(--theme);
  color: var(--black);
}

.header-4-btn .ui-btn-group:hover .btn-icon {
  background-color: var(--theme);
  color: var(--black);
}

.header-4-btn .ui-btn-group .btn-text {
  padding: 14px 31px;
  background-color: #242526;
}

.header-4-btn .ui-btn-group .btn-icon {
  background-color: #242526;
}

/* header-5 area style  */
.header-5-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1b1b1b;
}

.header-5-area-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  height: 100px;
}

@media only screen and (max-width: 1399px) {
  .header-5-area-inner {
    height: 80px;
  }
}

.header-5-area .sticky,
.header-5-area .transformed {
  background-color: #ffffff;
}

.header-5-area .main-menu>ul {
  display: flex;
  gap: 44px;
}

.header-5-area .main-menu>ul>li:hover>a {
  background-color: var(--white);
  color: var(--black);
}

.header-5-area .main-menu li a {
  font-size: 18px;
  font-weight: 400;
  padding: 3px 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  border-radius: 30px;
}

.header-5-logo {
  margin-right: auto;
}

.header-5-logo img {
  width: 145px;
}

.header-5-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media only screen and (max-width: 1399px) {
  .header-5-btn {
    display: none;
  }
}

.header-5-btn .ui-btn-group-2:hover .btn-text {
  background-color: var(--white);
  color: var(--black);
}

.header-5-btn .ui-btn-group-2:hover .btn-icon {
  background-color: var(--white);
  color: var(--black);
}

.header-5-btn .ui-btn-group-2 .btn-text {
  background-color: #1b1b1b;
  border: 1px solid #3b3b3b;
  color: var(--white);
}

.header-5-btn .ui-btn-group-2 .btn-icon {
  background-color: #1b1b1b;
  border: 1px solid #3b3b3b;
  color: var(--white);
}

.header-5-navicon .side-toggle {
  width: 46px;
  height: 46px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.header-5-navicon .side-toggle:hover svg {
  transform: rotateY(-180deg);
}

.header-5-navicon .side-toggle svg {
  transition: all 0.5s;
}

/* header-6 area style  */
.header-6-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-6-area-inner {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  height: 100px;
}

@media only screen and (max-width: 1919px) {
  .header-6-area-inner {
    height: 80px;
  }
}

.header-6-area .sticky,
.header-6-area .transformed {
  background-color: #ffffff;
}

.header-6-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: auto;
}

@media only screen and (max-width: 1199px) {
  .header-6-meta {
    display: none;
  }
}

.header-6-meta .meta-item {
  font-family: var(--font_roboto);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: var(--white);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 13px 25px;
  transition: all 0.3s;
}

.header-6-meta .meta-item:hover {
  background-color: var(--theme);
  border-color: transparent;
  color: var(--black);
}

.header-6-meta .meta-item:hover img {
  filter: none;
}

.header-6-meta .meta-item img {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.header-6-navicon .ui-offcanvas-open-btn {
  font-family: var(--font_roboto);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  display: flex;
  padding: 13px 29px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.header-6-navicon .ui-offcanvas-open-btn:hover {
  background-color: var(--theme);
  border-color: transparent;
  color: var(--black);
}

.header-6-navicon .ui-offcanvas-open-btn:hover img {
  filter: brightness(1) invert(1);
  transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
  .header-6-logo {
    margin-right: auto;
  }
}

.header-6-logo img {
  width: 145px;
}

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

.header-6-nav {
  display: none;
}

@media only screen and (max-width: 767px) {
  .header-6-language-box {
    display: none;
  }
}

.header-6-language-box .nice-select {
  background-color: transparent;
  color: var(--white);
  font-family: var(--font_roboto);
  font-size: 15px;
  padding-left: 19px;
  padding-right: 33px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.header-6-language-box .nice-select:after {
  width: 7px;
  height: 7px;
  right: 19px;
  border-color: var(--white);
}

.header-6-language-box .nice-select .list {
  background-color: var(--black);
}

.header-6-language-box .nice-select .option:hover,
.header-6-language-box .nice-select .option.focus,
.header-6-language-box .nice-select .option.selected.focus {
  background-color: rgba(255, 255, 255, 0.14);
}

.header-6-search {
  cursor: pointer;
  padding: 14px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

@media only screen and (max-width: 991px) {
  .header-6-search {
    display: none;
  }
}

.header-6-search i {
  font-size: 16px;
  color: var(--white);
}

.modal-6-search {
  background-color: var(--primary);
  z-index: 99999;
}

.modal-6-search .modal-content {
  background-color: transparent;
  border: 0;
  border: solid 1px #fff;
}

.modal-6-search .form-search {
  display: flex;
  gap: 10px;
  border: 1px solid #19242b;
  border-radius: 70px;
  padding: 0 19px;
}

.modal-6-search .form-search input {
  width: 100%;
  height: 55px;
  background: transparent;
  border: 0;
  color: var(--white);
}

.modal-6-search .form-search input:focus {
  outline: 0;
}

.modal-6-search .form-search button i {
  color: var(--white);
}

.modal-6-search .btn-close {
  content: "";
  font-family: "icomoon";
  font-size: 16px;
  opacity: 1;
  filter: brightness(100) contrast(0);
  border-radius: 50px;
  width: 2em;
  height: 2em;
  border: 1px solid var(--white);
  position: absolute;
  inset-inline-end: 20px;
  top: 20px;
  transition: unset;
}


.footer-area {
  background-color: var(--black);
}

.footer-widget-wrapper-box {
  padding-top: 110px;
  padding-bottom: 103px;
}

@media only screen and (max-width: 1919px) {
  .footer-widget-wrapper-box {
    padding-top: 90px;
    padding-bottom: 83px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-widget-wrapper-box {
    padding-top: 60px;
    padding-bottom: 53px;
  }
}

.footer-widget-wrapper {
  display: grid;
  gap: 50px 60px;
  grid-template-columns: 340px auto auto 265px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  margin-top: 0px;
}

.footer-logo img {
  width: auto;
}

.footer-info {
  margin-top: 34px;
}

.footer-info .text {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.footer-social-links a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-links a:hover {
  color: var(--white);
}

.footer-widget-box .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: var(--white);
}

.footer-nav-list {
  margin-top: 22px;
  margin-left: 22px;
}

.footer-nav-list li {
  list-style: none;
}

.footer-nav-list li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 46px;
  color: rgba(255, 255, 255, 0.6);
  list-style: none;
  display: flex;
  align-items: center;
}

.footer-nav-list li a:before {
  font-family: 'FontAwesome';
  content: '\f560';
  margin: 0 5px 0 -15px;
  color: var(--secondary-2);
  font-size: 13px;

}

.footer-nav-list li a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.footer-contact .contact-box {
  display: flex;
  align-items: flex-start;
}

.footer-contact .contact-box .icon {
  width: 38px;
  min-width: 38px;
  margin-top: 5px;
}

.footer-contact .contact-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact .contact-box .text a:hover {
  color: var(--white);
}

.footer-cta-content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 35px;
  padding-bottom: 42px;
  display: flex;
  gap: 15px 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .footer-cta-content {
    padding-top: 25px;
    padding-bottom: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-cta-content {
    flex-direction: column;
  }
}

.footer-back-to-top-btn {
  margin-top: 8px;
}

.footer-back-to-top {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-back-to-top:hover {
  color: var(--white);
  opacity: 0.6;
}

.footer-back-to-top .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-back-to-top .icon img {
  width: 12px;
}

.copyright-area-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 10px 60px;
  grid-template-columns: 455px auto;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .copyright-area-inner {
    grid-template-columns: 355px auto;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-area-inner {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.footer-cta-title {
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  color: var(--white);
}

@media only screen and (max-width: 1919px) {
  .footer-cta-title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-cta-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-cta-title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .footer-cta-title {
    font-size: 45px;
  }
}

.footer-cta-title a:hover {
  color: var(--white);
  opacity: 0.6;
}

.copyright-text {
  padding-top: 20px;
  padding-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .copyright-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.copyright-text .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 767px) {
  .copyright-text .text {
    text-align: center;
  }
}

.copyright-text .text a:hover {
  color: var(--white);
}

.copyright-nav-list {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .copyright-nav-list {
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
  }
}

.copyright-nav-list li {
  display: flex;
  align-items: center;
}

.copyright-nav-list li:not(:first-child):before {
  content: "";
  margin-right: 7px;
  width: 2px;
  height: 13px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
}

.copyright-nav-list li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.copyright-nav-list li a:hover {
  color: var(--white);
}


/* hero area style  */
.hero-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  align-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #b7d7f9 0%, #FFFFFF 100%);
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-bg:after {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 100/100;
  left: -11%;
  top: -326px;
  background: #dcf7b5;
  filter: blur(400px);
  border-radius: 760px;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-area-inner {
  padding-top: 200px;
  padding-bottom: 165px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1919px) {
  .hero-area-inner {
    padding-top: 163px;
    padding-bottom: 135px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-area-inner {
    padding-top: 125px;
    padding-bottom: 125px;

  }

  .hero-area {
    min-height: 60vh;
  }
}

@media only screen and (max-width: 991px) {
  .hero-area-inner {
    padding-top: 133px;
    padding-bottom: 95px;
  }
}

.hero-shape-1 {
  position: absolute;
  right: 2px;
  bottom: 80px;
  z-index: -1;
}

.hero-shape-1 img {
  width: 85px;
}

@media only screen and (max-width: 1199px) {
  .hero-shape-1 img {
    width: 55px;
  }
}

@media (max-width: 575px) {
  .hero-shape-1 img {
    width: 35px;
  }
}

.hero-shape-2 {
  position: absolute;
  left: 0;
  /* bottom: -3%; */
  z-index: -1;
  top: 81%;
}

@media only screen and (max-width: 1199px) {
  .hero-shape-2 {
    top: 87%;
  }
}

@media only screen and (max-width: 991px) {
  .hero-shape-2 {
    top: 81%;
  }
}

@media (max-width: 575px) {
  .hero-shape-2 {
    top: 93%;
  }

}

.hero-shape-2 .text {
  font-weight: 500;
  font-size: 270px;
  line-height: 0.7;
  text-transform: uppercase;
  color: #D6E0E5;
  display: inline-block;
}

@media only screen and (max-width: 1919px) {
  .hero-shape-2 .text {
    font-size: 220px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-shape-2 .text {
    font-size: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-shape-2 .text {
    font-size: 120px;
  }
}

@media (max-width: 575px) {
  .hero-shape-2 .text {
    font-size: 70px;
  }
}

.hero-shape-3 {
  position: absolute;
  width: 1154px;
  height: 934px;
  right: -267px;
  bottom: -192px;
  z-index: -6;
}

.hero-shape-3 svg {
  width: 100%;
}

.hero-shape-3 .rotating {
  transform-origin: center;
  animation: spin 15s linear infinite;
}

.hero-shape-3 svg:hover .rotating {
  animation-play-state: paused;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-title-wrapper .btn-wrapper {
  margin-top: 70px;
}

@media only screen and (max-width: 1919px) {
  .hero-title-wrapper .btn-wrapper {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-title-wrapper .btn-wrapper {
    margin-top: 40px;
  }
}

.hero-title-wrapper .ui-btn .btn-text {
  padding: 16px 33px;
}

.hero-title-wrapper .ui-btn .btn-icon {
  width: 50px;
}

.hero-title {
  font-weight: 400;
  font-size: 100px;
  line-height: 0.91;
  text-transform: none;
  max-width: 1030px;
  /*    max-width: 600px; */
  text-transform: uppercase;
}

@media only screen and (max-width: 1919px) {
  .hero-title {
    font-size: 80px;
    max-width: 810px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-title {
    font-size: 60px;
    max-width: 620px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-title br {
    display: none;
  }
}

.hero-title-shape-1 img {
  width: 140px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
  margin-top: -15px;
}

@media only screen and (max-width: 1919px) {
  .hero-title-shape-1 img {
    width: 110px;
    height: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-title-shape-1 img {
    width: 90px;
    height: 44px;
    margin-top: -10px;
  }
}

@media (max-width: 575px) {
  .hero-title-shape-1 img {
    width: 60px;
    height: 34px;
    margin-top: -4px;
    border-radius: 3px;
  }
}

.hero-meta {
  margin-top: -160px;
  display: grid;
  grid-template-columns: 235px;
  justify-content: flex-end;
  pointer-events: none;
}

@media only screen and (max-width: 1199px) {
  .hero-meta {
    margin-top: -90px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-meta {
    margin-top: -60px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-meta {
    margin-top: 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }
}

.hero-meta .number {
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
}

@media only screen and (max-width: 1199px) {
  .hero-meta .number {
    font-size: 50px;
  }
}

.hero-meta .client-gallery {
  margin-top: 20px;
  display: inline-flex;
}

.hero-meta .client-gallery img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.hero-meta .client-gallery img:not(:first-child) {
  margin-left: -18px;
}

.hero-meta .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 11px;
}

.hero-text-wrapper {
  /* margin-top: 175px;
  display: grid;
  grid-template-columns: 500px;
  margin-right: 325px;
  justify-content: flex-end; */

  margin-top: 170px;
  display: grid;
  grid-template-columns: 500px;
  margin-right: 175px;
  justify-content: flex-end;

}

@media only screen and (max-width: 1199px) {
  .hero-text-wrapper {
    grid-template-columns: 420px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-text-wrapper {
    margin-right: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero-text-wrapper {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
}

.hero-text-wrapper .tag-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-text-wrapper .tag {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 15px;
  border-radius: 10px;
}

.hero-text-wrapper .tag a:hover {
  color: #1f5292;
}

.hero-text-wrapper .text {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.42;
  margin-top: 14px;
}

@media only screen and (max-width: 1199px) {
  .hero-text-wrapper .text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .hero-text-wrapper .tag  {
    margin:5px 0;
  }
}

/* hero-4 area style  */
.inhero-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.inhero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 0;
  left: 0;
}

.inhero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inhero-area-inner {
  padding-top: 179px;
  padding-bottom: 101px;
  position: relative;
  z-index: 1;
}

.inhero-shape-1 {
  position: absolute;
  transform: rotate(41deg);
  bottom: -243px;
  left: -260px;
  z-index: -1;
  filter: invert(1);
}

.inhero-content .breadcrumb-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.inhero-content .breadcrumb-wrapper .icon {
  filter: invert(1);

}

.inhero-content .breadcrumb {
  list-style: none;
  margin-bottom: 0;
}

.inhero-content .breadcrumb li {
  display: inline;
  font-size: 18px;
  line-height: 27px;
  color: var(--black);
  text-transform: uppercase;
}

.inhero-content .breadcrumb li a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

.inhero-content .breadcrumb li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.inhero-content .breadcrumb li+li:before {
  padding: 0 3px;
  color: rgba(0, 0, 0, 0.7);
  content: "/ ";
}

.inhero-content .title-wrapper {
  margin-top: 24px;
}

.inhero-content .inhero-title {
  font-weight: 400;
  font-size: 100px;
  line-height: 0.91;
  text-transform: uppercase;
  color: var(--black-4);
}

@media only screen and (max-width: 1919px) {
  .inhero-content .inhero-title {
    font-size: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .inhero-content .inhero-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .inhero-content .inhero-title {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .inhero-content .inhero-title {
    font-size: 40px;
  }
}

.inhero-content .text-wrapper {
  margin-top: 96px;
}

@media only screen and (max-width: 1919px) {
  .inhero-content .text-wrapper {
    margin-top: 76px;
  }
}

@media only screen and (max-width: 1199px) {
  .inhero-content .text-wrapper {
    margin-top: 56px;
  }
}

@media only screen and (max-width: 991px) {
  .inhero-content .text-wrapper {
    margin-top: 46px;
  }
}

@media only screen and (max-width: 767px) {
  .inhero-content .text-wrapper {
    margin-top: 26px;
  }
}

.inhero-content .text {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.47;
  max-width: 555px;
  margin-left: auto;
  color: #c6f393;
}

@media only screen and (max-width: 1919px) {
  .inhero-content .text {
    font-size: 24px;
    max-width: 410px;
  }
}

@media only screen and (max-width: 991px) {
  .inhero-content .text {
    font-size: 20px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .inhero-content .text {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .inhero-content .text br {
    display: none;
  }
}


.inhero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.inhero-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #b7d7f9 0%, #FFFFFF 100%);
  top: 0;
  left: 0;
  z-index: -1;
}

.inhero-bg:after {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 100 / 100;
  left: -11%;
  top: -326px;
  background: #dcf7b5;
  filter: blur(400px);
  border-radius: 760px;
}

.inhero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* abt area style  */
.abt-area-inner {
  padding-top: 101px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .abt-area-inner {
    padding-top: 60px;
  }
}

.abt-shape-1 {
  position: absolute;
  left: 225px;
  top: 152px;
  z-index: -1;
  transform: rotate(-15deg);
}

@media only screen and (max-width: 1199px) {
  .abt-shape-1 {
    left: 25px;
    top: 242px;
  }
}

@media only screen and (max-width: 991px) {
  .abt-shape-1 {
    display: none;
  }
}

.abt-shape-1 img {
  width: 211px;
  filter: invert(1);
}

@media only screen and (max-width: 1199px) {
  .abt-shape-1 img {
    width: 151px;
  }
}

.abt-content .content-first {
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 1fr 885px;
}

@media only screen and (max-width: 1399px) {
  .abt-content .content-first {
    grid-template-columns: 1fr 775px;
  }
}

@media only screen and (max-width: 1199px) {
  .abt-content .content-first {
    /* grid-template-columns: 1fr 695px; */
    grid-template-columns: 1fr 450px;

  }
}

@media only screen and (max-width: 991px) {
  .abt-content .content-first {
    grid-template-columns: 1fr;
  }
}

.abt-content .subtitle-wrapper {
  margin-top: 19px;
}

@media only screen and (max-width: 991px) {
  .abt-content .subtitle-wrapper {
    margin-top: 0;
  }
}

.abt-content .text-wrapper {
  margin-top: 21px;
}

.abt-content .text {
  font-weight: 400;
  line-height: 30px;
  max-width: 845px;
}

.abt-content .info-list {
  margin-top: 20px;
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 1fr 1fr;
  max-width: 470px;
}

@media only screen and (max-width: 1919px) {
  .abt-content .info-list {
    gap: 20px 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .abt-content .info-list {
    margin-top: 47px;
  }
}

@media (max-width: 575px) {
  .abt-content .info-list {
    grid-template-columns: 1fr;
  }
}

.abt-content .info-box .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--secondary-2);
}

.abt-content .info-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 5px;
}

.abt-gallery {
  margin-top: 73px;
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 450px 490px;
  margin-left: 220px;
}

@media only screen and (max-width: 1399px) {
  .abt-gallery {
    gap: 20px 40px;
    grid-template-columns: 400px 430px;
  }
}

@media only screen and (max-width: 1199px) {
  .abt-gallery {
    margin-top: 43px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .abt-gallery {
    gap: 20px 20px;
    grid-template-columns: 0.9fr 1fr;
  }
}

@media (max-width: 575px) {
  .abt-gallery {
    grid-template-columns: 1fr;
  }
}

/* abt-overview area style  */
.abt-overview-inner {
  padding-top: 141px;
}

@media only screen and (max-width: 1919px) {
  .abt-overview-inner {
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .abt-overview-inner {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .abt-overview-inner {
    padding-top: 60px;
  }
}

.abt-overview-content {
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 1fr 660px;
}


.abt-overview-content .text-wrapper {
  margin-top: 20%;
}

.abt-overview-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
}

.abt-overview-content .text+.text {
  margin-top: 18px;
}

.abt-overview-content .feature-list {
  margin-top: 31px;
  display: grid;
  gap: 18px;
}

.abt-overview-content .feature-list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--black);
  list-style: none;
  border-bottom: 1px solid rgba(15, 14, 14, 0.12);
  padding-bottom: 18px;
  margin-left: 22px;
  display: inline-block;
  /* max-width: 250px; */
  position: relative;
}

.abt-overview-content .feature-list li:before {
  font-family: 'FontAwesome';
  content: '\f560';
  width: 6px;
  height: 6px;
  color: var(--theme);
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 0px;
}

.abt-overview-content .section-title {
  color: var(--theme);
  font-size: 3vw;
}
.abt-overview-content .section-title2{ color: var(--theme); font-size: 2.5vw;}

.arrow1 {

  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  transform: rotate(45deg);
}

.arrow2 {

  position: absolute;
  top: -5%;
  left: -15%;
  z-index: -1;
  transform: rotate(330deg);
}
.arrow3 {

 position: absolute;
  top: 0;
  right: -25%;
  z-index: -1;
  transform: rotate(45deg);
}
.aboutIcon {
  display: block;
  width: 25%;
  margin: 5% auto;
  filter: drop-shadow(2px 4px 3px black);
}

@media only screen and (max-width: 1399px) {
  .abt-overview-content {
    grid-template-columns: 1fr 600px;
  }
}

@media only screen and (max-width: 1199px) {

  .abt-overview-content {
    grid-template-columns: 1fr 500px;
  }

  .abt-overview-content.c2 {
    grid-template-columns: 500px 1fr;
  }

  .abt-overview-content .section-title,.abt-overview-content .section-title2 {
    font-size: 25px;
  }

  .arrow1 {
    right: -45%;
  }

  .arrow2 {
    left: -65%;
  }
  .arrow3 {
    left: -65%;
  }
}
@media only screen and (max-width: 992px) {
    .abt-overview-area .container{max-width:100%;}
}
/* Media query for larger screens (e.g., desktop) */
@media screen and (max-width: 768px) {
  .abt-overview-content {
    flex-direction: column;
    /* Aligns divs horizontally on desktop */
    display: flex;
  }

  .abt-overview-content .text-wrapper {
    margin-top: 0;
    text-align: center;
  }

  .abt-overview-content .section-title, .abt-overview-content .section-title2  {
    text-align: center;
  }

  .abt-overview-content .dti {
    order: 1;
    /* Place Div 1 first on desktop */
    flex: 1;
    /* Optional: makes divs take equal width */
  }

  .abt-overview-content .dte {
    order: 2;
    /* Place Div 2 second on desktop */
    flex: 1;
    /* Optional: makes divs take equal width */
    margin-top: 0;
  }

  .arrow1,
  .arrow2,.arrow3 {
    display: none;
  }
}

/* project-gallery area style  */
.project-gallery-pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 60px;
}

@media only screen and (max-width: 1399px) {
  .project-gallery-pagination {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-gallery-pagination {
    margin-top: 40px;
  }
}

.project-gallery-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(15, 14, 14, 0.2);
  border-radius: 6px;
  margin: 0 0;
  opacity: 1;
  transition: all 0.5s;
}

.project-gallery-pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--black);
  width: 24px;
}

/* project-metrics area style  */
.project-metrics-inner {
  padding-top: 141px;
}

@media only screen and (max-width: 1919px) {
  .project-metrics-inner {
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .project-metrics-inner {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-metrics-inner {
    padding-top: 60px;
  }
}

.project-metrics-content .text-wrapper {
  margin-top: 21px;
}

.project-metrics-content .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.project-metrics-wrapper-box {
  margin-top: 53px;
}

.project-metrics-wrapper {
  border-top: 1px solid rgba(15, 14, 14, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
  .project-metrics-wrapper {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
  }
}

@media (max-width: 575px) {
  .project-metrics-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .project-metrics-wrapper>* {
    border-left: 1px solid rgba(15, 14, 14, 0.12);
    border-top: 1px solid rgba(15, 14, 14, 0.12);
  }
}

.project-metrics-wrapper>*:not(:first-child) {
  border-left: 1px solid rgba(15, 14, 14, 0.12);
}

.project-metrics-box {
  padding: 36px 60px 43px;
}

@media only screen and (max-width: 1399px) {
  .project-metrics-box {
    padding: 36px 40px 43px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-metrics-box {
    padding: 26px 20px 23px;
  }
}

.project-metrics-box .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 1.23;
  text-transform: capitalize;
}

@media only screen and (max-width: 1399px) {
  .project-metrics-box .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-metrics-box .title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .project-metrics-box .title {
    font-size: 30px;
  }
}

.project-metrics-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 4px;
}

/* project-gallery-2 area style  */
.project-gallery-2-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 1199px) {
  .project-gallery-2-wrapper {
    gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .project-gallery-2-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-gallery-2-thumb img {
  width: 100%;
}

.project-gallery-2-thumb.span-2 {
  grid-column: span 2;
}

@media only screen and (max-width: 767px) {
  .project-gallery-2-thumb.span-2 {
    grid-column: auto;
  }
}


/* solutions area style  */
.solutions-area-wrapper {
  padding: 0 20px;
  background-color: #252627;
}

.solutions-area {
  background-color: var(--white);
  border-radius: 30px;
}

.solutions-header {
  margin-top: 6px;
}

.solutions-header .section-title-wrapper {
  display: grid;
  gap: 40px 120px;
  grid-template-columns: auto 1fr;
}

@media only screen and (max-width: 1919px) {
  .solutions-header .section-title-wrapper {
    gap: 40px 60px;
  }
}

@media only screen and (max-width: 991px) {
  .solutions-header .section-title-wrapper {
    grid-template-columns: 1fr;
  }
}

.solutions-header .subtitle-wrapper {
  margin-top: 4px;
}

.solutions-header .section-subtitle-4 {
  border-color: rgba(4, 3, 10, 0.14);
  color: #4f4f54;
}

.solutions-header .section-title-3 {
  font-family: var(--font_cooperhewitt);
  font-weight: 709;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--secondary-2);
  max-width: 535px;
}

.solutions-wrapper-box {
  margin-top: 42px;
  padding-bottom: 0px;
}

@media only screen and (max-width: 1199px) {
  .solutions-wrapper-box {
    padding-bottom: 0px;
  }
}

.solutions-wrapper .swiper-carousel .swiper-carousel-animate-opacity {
  height: 100%;
}

.solutions-wrapper .swiper-carousel .swiper-pagination-bullets {
  bottom: 0;
}

.solutions-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

@media only screen and (max-width: 1919px) {
  .solutions-pagination {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .solutions-pagination {
    margin-top: 40px;
  }
}

.solutions-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  opacity: 0.14;
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 0;
  transition: all 0.3s;
}

.solutions-pagination .swiper-pagination-bullet-active {
  /*   width: 74px;
  border-radius: 4px; */
  width: 20px;
  border-radius: 50%;
  border-width: 2px;
  opacity: 1;
}

.solutions-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.solutions-box {
  background-color: #e8e8e8;
  padding: 40px 40px 46px;
  border-radius: 10px;
  transition: all 0.3s;
}

@media only screen and (max-width: 1919px) {
  .solutions-box {
    padding: 30px 20px 36px;
  }
}

.solutions-box:hover {
  background-color: var(--black);
}

.solutions-box:hover .title {
  color: var(--white);
}

.solutions-box:hover .title .icon img {
  filter: brightness(0) invert(1);
}

.solutions-box:hover .text {
  color: #7f7e82;
}

.solutions-box:hover .ui-btn-group-2 .btn-icon {
  border-color: transparent;
  background-color: var(--secondary-2);
}

.solutions-box:hover .ui-btn-group-2 .btn-text {
  border-color: transparent;
  background-color: var(--secondary-2);
}

.solutions-box .title {
  font-family: var(--font_cooperhewitt);
  font-weight: 709;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--theme);
}

@media only screen and (max-width: 1919px) {
  .solutions-box .title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1919px) {
  .solutions-box .title {
    font-size: 18px;
  }
}

.solutions-box .title a {
  display: flex;
  align-items: flex-start;
  transition: all 0.3s;
}

.solutions-box .title a:hover {
  color: var(--white);
}

.solutions-box .title .icon {
  display: inline-block;
  margin-right: 14px;
  line-height: 1;
}

.solutions-box .title .icon img {
  transition: all 0.3s;
}

.solutions-box .thumb {
  margin-top: 27px;
  border-radius: 8px;
  overflow: hidden;
}

.solutions-box .thumb:hover img {
  transform: scale(1.1);
}

.solutions-box .thumb img {
  width: 100%;
  transition: all 0.3s;
}

.solutions-box .content {
  margin-top: 13px;
  padding-bottom: 0px;
}

.solutions-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.solutions-box .ui-btn-group-2 {
  margin-top: 37px;
}

@media only screen and (max-width: 1919px) {
  .solutions-box .ui-btn-group-2 {
    margin-top: 27px;
  }
}

.solutions-box .ui-btn-group-2 .btn-icon {
  border-color: #d8d8d9;
  background-color: var(--background);
}

.solutions-box .ui-btn-group-2 .btn-text {
  border-color: #d8d8d9;
  background-color: var(--background);
}




/* hub area style  */
.hub-header {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .hub-header {
    padding-top: 18px;
  }
}

.hub-header .subtitle-wrapper {
  position: absolute;
  top: 39px;
  left: 0;

}

@media only screen and (max-width: 1399px) {
  .hub-header .subtitle-wrapper {
    top: 29px;
  }
}

@media only screen and (max-width: 1199px) {
  .hub-header .subtitle-wrapper {
    position: static;
  }
}

@media only screen and (max-width: 1199px) {
  .hub-header .title-wrapper {
    margin-top: 10px;
  }
}

.hub-header .section-title-2 {
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .hub-header .section-title-2 {
    text-align: start;
  }
}

.hub-wrapper-box {
  margin-top: 62px;
}

.hub-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
  .hub-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media only screen and (max-width: 767px) {
  .hub-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hub {
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 12px;
  padding: 40px 40px 40px;

}

@media only screen and (max-width: 1919px) {
  .hub {
    padding: 30px 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .hub {
    padding: 15px 15px 15px;
  }
}

.hub:hover .thumb img {
  transform: scale(1.1);
}

.hub .thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hub .thumb img {
  width: 100%;
  transition: all 0.5s;
}

.hub .meta {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .hub .meta {
    bottom: 15px;
    left: 15px;
  }
}

.hub .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  background-color: var(--white);
  display: inline-block;
  padding: 2px 14px;
  border-radius: 100px;
}

.hub .content {
  margin: 0px;
  padding-bottom: 0px;
}

.hub .title {
  font-weight: 400;
  font-size: 23px;
  line-height: 1.42;
  text-transform: capitalize;
  color: var(--theme);
}

@media only screen and (max-width: 1199px) {
  .hub .title {
    font-size: 20px;
  }
}

.hub .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 8px;
}

.hub .ui-btn-normal {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hub .ui-btn-normal:hover .btn-icon {
  margin-left: 5px;
}

.hub .ui-btn-normal .btn-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
}

.hub .ui-btn-normal .btn-icon {
  color: var(--black);
  transition: all 0.3s;
}

.hub-header-meta {
  width: fit-content;
  float: right;
  position: absolute;
  top: 39px;
  right: 0;
}

@media only screen and (max-width: 1919px) {
 .hub-header-meta {
  width: fit-content;
  float: right;
  position: absolute;
  top: 25px;
  right: 0;
}
}

@media only screen and (max-width: 768px) {
 .hub-header-meta {
  width: fit-content;
  float: left;
  position: absolute;
  top: -39px;
  left: 0;
}
}

.testimonial-area {
  /* background-image: linear-gradient(180deg, #252627, #1f5292); */
}

.testimonial-inner {
  padding-top: 120px;
  padding-bottom: 139px;
}

@media only screen and (max-width: 1919px) {
  .testimonial-inner {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.testimonial-header {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.testimonial-header .subtitle-wrapper {
  display: flex;
  gap: 10px 30px;
  align-items: flex-start;
}

@media (max-width: 575px) {
  .testimonial-header .subtitle-wrapper {
    flex-direction: column;
  }
}

.testimonial-header .section-subtitle-2 {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-header .testimonial-header-meta {
  display: flex;
  gap: 10px 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
  width: 100%;
}

@media (max-width: 575px) {
  .testimonial-header .testimonial-header-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-header .testimonial-header-meta .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-header .title-wrapper {
  margin-top: 18px;
}

.testimonial-header .section-title-2 {
  color: white;
}

.testimonial-wrapper-box {
  margin-top: 62px;
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  /* padding: 60px 50px 67px; */
  padding: 50px 50px 0px;
  margin-bottom: 16px;
  box-shadow: 0px 16px 0px rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 1919px) {
  .testimonial-item {
    padding: 30px 30px 27px;
  }
}

.testimonial-item .author {
  display: flex;
  gap: 20px 20px;
  min-height: 10vh;
}

@media (max-width: 575px) {
  .testimonial-item .author {
    flex-direction: column;
  }
}

.testimonial-item .avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.testimonial-item .name {
  font-weight: 400;
  font-size: 1.5vw;
  color: var(--white);
}

.testimonial-item p {
  font-size: 0.75vw;
  color: var(--white);
  line-height: 20px;
}


.testimonial-item .content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom:20px;
}
@media (max-width: 5768px) {

.testimonial-item .name {
  font-weight: 400;
  font-size: 25px;
  color: var(--white);
}

.testimonial-item p {
  font-size: 14px;
  color: var(--white);
  line-height: 20px;
}

}

/* cta area style  */
.cta-area {
  position: relative;
  z-index: 1;
}

.cta-area .area-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.cta-area .area-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(15, 14, 14, 0.5);
  z-index: 1;
}

.cta-area .area-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-inner {
  padding-top: 80px;
  padding-bottom: 110px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 600px 670px;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (max-width: 1399px) {
  .cta-inner {
    padding-bottom: 80px;
    grid-template-columns: 520px 600px;
  }
}

@media only screen and (max-width: 1199px) {
  .cta-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    grid-template-columns: 1fr 440px;
  }
}

@media only screen and (max-width: 991px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }
}

.cta-content .section-subtitle-3 {
  background-color: var(--white);
  border-radius: 6px;
  padding: 12px 20px 12px 30px;
}

.cta-content .title-wrapper {
  margin-top: 61px;
}

@media only screen and (max-width: 1399px) {
  .cta-content .title-wrapper {
    margin-top: 41px;
  }
}

@media only screen and (max-width: 1199px) {
  .cta-content .title-wrapper {
    margin-top: 31px;
  }
}

.cta-content .section-title {
  color: var(--white);
}

.cta-content .text-wrapper {
  margin-top: 22px;
}

.cta-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-box .content {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
}

@media only screen and (max-width: 1199px) {
  .cta-box .content {
    padding: 15px;
  }
}

.cta-box .thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.cta-box .thumb img {
  width: 100%;
}

.cta-box .btn-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--white);
  padding: 15px 0 0 15px;
  border-radius: 20px 0 0 0;
}

.cta-box .btn-wrapper:before {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 20px;
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  box-shadow: 20px 20px 0 var(--white);
}

.cta-box .btn-wrapper:after {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 20px;
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  box-shadow: 20px 20px 0 var(--white);
}

.cta-box .ui-btn-group:hover .btn-text {
  background-color: var(--black);
  color: var(--white);
}

.cta-box .ui-btn-group:hover .btn-icon {
  background-color: var(--black);
  color: var(--white);
}

.cta-box .ui-btn-group .btn-text {
  background-color: var(--secondary-2);
  color: var(--black);
}

.cta-box .ui-btn-group .btn-icon {
  background-color: var(--secondary-2);
  color: var(--black);
}

.cta-box .title {
  font-weight: 400;
  font-size: 34px;
  line-height: 1.59;
  text-transform: capitalize;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1399px) {
  .cta-box .title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1399px) {
  .cta-box .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .cta-box .title {
    font-size: 20px;
  }
}

.cta-box .title a {
  width: 100%;
  display: block;
  padding-top: 23px;
  padding-bottom: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .cta-box .title a {
    padding-top: 13px;
    padding-bottom: 15px;
  }
}

.cta-box .title a:hover {
  color: var(--theme);
}

.cta-box .title .icon {
  font-size: 26px;
  margin-left: auto;
}

@media only screen and (max-width: 1399px) {
  .cta-box .title .icon {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .cta-box .title .icon {
    font-size: 16px;
  }
}


/* contact css */
/* contact area style  */
.contact-area-inner {
  background-color: #F9F9F9;
  display: grid;
  gap: 40px 100px;
  grid-template-columns: 1fr 710px;
  justify-content: space-between;
  /* align-items: center; */
}

@media only screen and (max-width: 1919px) {
  .contact-area-inner {
    gap: 40px 60px;
    grid-template-columns: 1fr 640px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-area-inner {
    grid-template-columns: 1fr;
    padding: 30px 30px 30px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-area-inner {
    padding: 15px 15px 15px 15px;
  }
}

.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.contact-wrapper-box {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .contact-wrapper-box {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.contact-wrapper-box .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 1.68;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .contact-wrapper-box .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-wrapper-box .title {
    font-size: 35px;
  }
}

.contact-wrap {
  margin-top: 39px;
}

@media only screen and (max-width: 1199px) {
  .contact-wrap {
    margin-top: 19px;
  }
}

.contact-wrap .contact-formwrap {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 1199px) {
  .contact-wrap .contact-formwrap {
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-wrap .contact-formwrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-wrap .contact-formwrap .span-2 {
  grid-column: span 2;
}

@media only screen and (max-width: 767px) {
  .contact-wrap .contact-formwrap .span-2 {
    grid-column: auto;
  }
}

.contact-wrap label {
  width: max-content;
}

.contact-wrap .contact-formfield {
  background-color: #F9F9F9;
  padding: 0 29px;
  border: 1px solid var(--border);
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.contact-wrap .contact-formfield input,
.contact-wrap .contact-formfield select {
  width: 100%;
  height: 48px;
  border: none;
  outline: none;
  color: var(--black);
  transition: all 0.5s;
  font-size: 16px;
  line-height: 26px;
  background: none;
}

.contact-wrap .contact-formfield input:focus {
  background-color: none;
}

.contact-wrap .contact-formfield input::placeholder {
  color: var(--black);
}

.contact-wrap .contact-formfield textarea {
  width: 100%;
  height: 160px;
  border: none;
  outline: none;
  color: var(--black);
  transition: all 0.5s;
  font-size: 16px;
  line-height: 26px;
  padding: 16px 0;
  background: none;
  resize: none;
}

.contact-wrap .contact-formfield textarea:focus {
  background-color: none;
}

.contact-wrap .contact-formfield textarea::placeholder {
  color: var(--black);
}

.contact-wrap .submit-btn {
  margin-top: 44px;
}

@media only screen and (max-width: 1199px) {
  .contact-wrap .submit-btn {
    margin-top: 34px;
  }
}

.contact-wrap .ui-btn:hover .btn-text {
  background-color: var(--black);
  color: var(--white);
}

.contact-wrap .ui-btn:hover .btn-icon {
  background-color: var(--black);
  color: var(--white);
}

.contact-wrap .ui-btn .btn-text {
  background-color: var(--secondary-2);
  color: var(--black);
}

.contact-wrap .ui-btn .btn-icon {
  background-color: var(--secondary-2);
  color: var(--black);
}

/* offcanvas css */
.ui-offcanvas-area {
  position: relative;
}

.ui-offcanvas-area.opened .animated-text>nav>ul>li a::after {
  visibility: visible;
  opacity: 1;
  bottom: 35px;
}

.ui-offcanvas-area.opened .animated-text>nav>ul>li a::before {
  width: 100%;
}

.ui-offcanvas-area.opened .ui-offcanvas-left,
.ui-offcanvas-area.opened .ui-offcanvas-right {
  visibility: visible;
  opacity: 1;
}

.ui-offcanvas-area.opened .ui-offcanvas-wrapper {
  visibility: visible;
  opacity: 1;
}

.ui-offcanvas-area.opened .ui-offcanvas-bg.is-left,
.ui-offcanvas-area.opened .ui-offcanvas-bg.is-right {
  transform: scale(1, 1);
  transition-delay: 0s;
}

.ui-offcanvas-area.opened .ui-offcanvas-menu {
  transition-delay: 0s;
}

.ui-offcanvas-area.opened .ui-offcanvas-close {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>a {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #717172;
  letter-spacing: -0.02em;
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>a {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>a {
    font-size: 30px;
  }
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>a::after {
  position: absolute;
  left: 0;
  top: 3px;
  font-weight: 500;
  font-size: 13px;
  content: "0" counter(count);
  counter-increment: count;
  color: rgba(113, 113, 114, 0.8);
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li.is-active>a {
  color: var(--white);
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li.is-active .ui-menu-close i {
  color: var(--white);
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>ul>li>a {
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  transition: 0.3s;
  color: #717172;
  letter-spacing: -0.02em;
}

@media only screen and (max-width: 991px),
(max-width: 575px) {
  .ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>ul>li>a {
    font-size: 20px;
  }
}

.ui-offcanvas-area .ui-offcanvas-menu>nav>ul>li>ul>li>a:hover {
  transform: translateX(15px);
  color: var(--white);
}

.ui-offcanvas-area .ui-offcanvas-menu .ui-submenu li a:hover {
  background-color: initial;
  color: var(--white);
}

.ui-offcanvas-area .ui-offcanvas-menu ul li:not(:last-child)>a {
  border-bottom: 0;
}

.ui-offcanvas-area .ui-offcanvas-menu ul li>a {
  padding: 0;
  padding-left: 30px;
}

.ui-offcanvas-area .ui-offcanvas-menu ul li .submenu {
  padding-left: 20px;
  margin-top: 40px;
  margin-bottom: 56px;
}

@media only screen and (max-width: 991px),
(max-width: 575px) {
  .ui-offcanvas-area .ui-offcanvas-menu ul li .submenu {
    padding-left: 0;
  }
}

.ui-offcanvas-area .ui-offcanvas-menu ul li .submenu li:not(:last-child) {
  margin-bottom: 30px;
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-bg.is-left {
  background: var(--white);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-logo .logo-1 {
  display: none;
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-menu>nav>ul>li.is-active>a {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-menu>nav>ul>li.is-active .ui-menu-close i {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-menu>nav>ul>li>a {
  color: #D5D5D5;
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-menu>nav>ul>li>ul>li>a {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-menu .ui-submenu li a:hover {
  background-color: initial;
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-bg.is-right {
  background-color: #F6F6F9;
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-right-info-title {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-right-social a {
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-right-social a:hover {
  color: var(--white);
  border-color: var(--black);
  background-color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-close-btn .text {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-white-bg .ui-offcanvas-close-btn {
  color: var(--black);
}

.ui-offcanvas-area.offcanvas-2-black-bg .ui-offcanvas-logo .logo-2 {
  display: none !important;
}

.ui-offcanvas-bg.left-box {
  position: fixed;
  top: 0;
  height: 100%;
  width: 60%;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1111;
}

@media only screen and (max-width: 767px) {
  .ui-offcanvas-bg.left-box {
    width: 100%;
  }
}

.ui-offcanvas-bg.right-box {
  position: fixed;
  top: 0;
  height: 100%;
  width: 40%;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1111;
}

@media (max-width: 575px) {
  .ui-offcanvas-bg.right-box {
    width: 100%;
  }
}

.ui-offcanvas-bg.is-left {
  left: 0;
  transform: scale(1, 0);
  transform-origin: top center;
  background: var(--black);
  transition-delay: 1s;
}

.ui-offcanvas-bg.is-right {
  right: 0;
  transform-origin: bottom center;
  transform: scale(1, 0);
  background-color: #1C1D20;
  transition-delay: 1s;
}

.ui-offcanvas-wrapper .left-box {
  position: fixed;
  top: 0;
  width: 60%;
  height: 100vh;
  z-index: 9999;
  overflow-y: scroll;
  pointer-events: auto;
  scrollbar-width: none;
  padding: 40px 80px 50px 80px;
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-wrapper .left-box {
    padding: 40px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .ui-offcanvas-wrapper .left-box {
    width: 100%;
    padding: 30px 20px;
  }
}

.ui-offcanvas-wrapper .left-box .ui-offcanvas-menu {
  padding: 0px 125px;
}

@media only screen and (max-width: 1919px),
only screen and (max-width: 1399px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu {
    padding: 0 70px;
  }
}

@media only screen and (max-width: 1199px),
only screen and (max-width: 991px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu {
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu {
    padding: 0;
  }
}

.ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a {
  font-size: 40px;
  padding: 25px 0;
}

@media only screen and (max-width: 1919px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 30px;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 24px;
  }
}

.ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  height: 70px;
  font-size: 38px !important;
}

@media only screen and (max-width: 1919px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 60px;
    font-size: 28px !important;
  }
}

@media only screen and (max-width: 1199px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 54px;
  }
}

.ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li li a {
  font-size: 30px;
  padding: 15px 0;
  padding-inline-start: 15px;
}

@media only screen and (max-width: 1919px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li li a {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .ui-offcanvas-wrapper .left-box .ui-offcanvas-menu .mobile-menu.mean-container .mean-nav ul li li a {
    font-size: 18px;
  }
}

.ui-offcanvas-wrapper .right-box {
  position: fixed;
  top: 0;
  width: 40%;
  height: 100vh;
  z-index: 9999;
  padding: 50px 100px 50px 0;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-wrapper .right-box {
    padding-right: 40px;
  }
}

.ui-offcanvas-wrapper .right-box::-webkit-scrollbar {
  display: none;
}

@media (max-width: 575px) {
  .ui-offcanvas-wrapper .right-box {
    width: 100%;
  }
}

.ui-offcanvas-wrapper .ui-menu-close {
  top: 10px;
  height: 0;
  width: 0;
}

@media (max-width: 575px) {
  .ui-offcanvas-wrapper .ui-menu-close {
    top: 0;
    right: 20px;
  }
}

.ui-offcanvas-wrapper .ui-menu-close i {
  font-size: 20px;
  color: #717172;
}

.ui-offcanvas-left {
  visibility: hidden;
  opacity: 0;
  left: 0;
  transition: 0.3s;
  transition-delay: 0.8s;
}

@media only screen and (max-width: 767px) {
  .ui-offcanvas-left-wrap {
    margin-bottom: 80px;
  }
}

.ui-offcanvas-right {
  visibility: hidden;
  opacity: 0;
  right: 0;
  transition: 0.3s;
  transition-delay: 0.8s;
}

.ui-offcanvas-right-inner {
  height: 100%;
  padding: 100px;
}

@media only screen and (max-width: 1399px) {
  .ui-offcanvas-right-inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .ui-offcanvas-right-inner {
    padding: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-right-inner {
    padding: 30px;
  }
}

.ui-offcanvas-right-info-box {
  margin-top: 160px;
  padding: 0 200px;
}

@media only screen and (min-width: 1801px) and (max-width: 1850px),
only screen and (min-width: 1701px) and (max-width: 1800px) {
  .ui-offcanvas-right-info-box {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (max-width: 1919px) {
  .ui-offcanvas-right-info-box {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .ui-offcanvas-right-info-box {
    padding: 0 100px;
    padding-right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .ui-offcanvas-right-info-box {
    padding: 0 70px;
    padding-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-right-info-box {
    padding: 0 60px;
    padding-right: 0;
    margin-top: 130px;
  }
}

.ui-offcanvas-right-info-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 35px;
  color: var(--white);
}

.ui-offcanvas-right-info-item {
  margin-bottom: 30px;
}

.ui-offcanvas-right-info-item label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: block;
  color: var(--primary);
  margin-bottom: 10px;
}

.ui-offcanvas-right-info-item>a {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media only screen and (max-width: 1199px),
only screen and (max-width: 991px),
(max-width: 575px) {
  .ui-offcanvas-right-info-item>a br {
    display: none;
  }
}

.ui-offcanvas-right-social a {
  height: 40px;
  width: 40px;
  transition: 0.3s;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-offcanvas-right-social a:hover {
  color: var(--black);
  border-color: var(--white);
  background-color: var(--white);
}

.ui-offcanvas-close {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0.5s;
  transform: translateY(20px);
}

@media only screen and (max-width: 991px) {
  .ui-offcanvas-close {
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .ui-offcanvas-close {
    padding-right: 0px;
  }
}

.ui-offcanvas-close-btn {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.ui-offcanvas-close-btn .text {
  width: 60px;
  height: 20px;
  transition: 0.3s;
  overflow: hidden;
  display: inline-block;
  transform: translateY(4px);
  color: var(--white);
}

.ui-offcanvas-close-btn .text span {
  transition: 0.3s;
  display: inline-block;
  transform: translateX(130%);
}

.ui-offcanvas-close-btn:hover .text span {
  transform: translateX(0%);
}

.ui-offcanvas-close-btn:hover span svg {
  transform: rotate(90deg);
}

.ui-offcanvas-text {
  right: 0;
  bottom: 0;
  position: absolute;
  transform: rotate(-90deg) translateY(100%);
}

.ui-offcanvas-text span {
  font-size: 320px;
  font-weight: 700;
  color: rgba(33, 35, 41, 0.3);
}

.ui-offcanvas-logo {
  margin-bottom: 105px;
}

@media only screen and (max-width: 767px) {
  .ui-offcanvas-logo {
    margin-bottom: 0;
  }
}

.ui-offcanvas-logo .logo-2 {
  display: block !important;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-130px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* service-2 area style  */
.fin-header {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .fin-header {
    padding-top: 18px;
  }
}

.fin-header .subtitle-wrapper {
  position: absolute;
  top: 39px;
  left: 0;
}

@media only screen and (max-width: 1399px) {
  .fin-header .subtitle-wrapper {
    top: 29px;
  }
}

@media only screen and (max-width: 1199px) {
  .fin-header .subtitle-wrapper {
    position: static;
  }
}

@media only screen and (max-width: 1199px) {
  .fin-header .title-wrapper {
    margin-top: 10px;
  }
}

.fin-header .section-title-2 {
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .fin-header .section-title-2 {
    text-align: start;
  }
}

.fin-wrapper-box {
  margin-top: 42px;
}

.fin-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
  .fin-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fin-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 40px 33px;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 0px #494949;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

@media only screen and (max-width: 1919px) {
  .fin-box {
    padding: 30px 30px 23px;
  }
}

@media (max-width: 575px) {
  .fin-box {
    padding: 20px 20px 18px;
  }
}

.fin-box:hover {
  background-color: var(--secondary-2);
  border-color: transparent;
}

.fin-box:hover .icon-wrapper:before {
  opacity: 1;
}

.fin-box:hover .fin-btn {
  opacity: 1;
}

.fin-box .icon-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.fin-box .icon-wrapper:before {
  position: absolute;
  content: "";
  width: calc(100% - 224px);
  height: 1px;
  background-color: var(--black);
  left: 104px;
  top: 32px;
  opacity: 0;
  transition: all 0.3s;
}

.fin-box .fin-btn {
  width: 80px;
  height: 80px;
  background-color: var(--black);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
  .fin-box .fin-btn {
    width: 70px;
    height: 70px;
  }
}

.fin-box .content {
  display: grid;
  gap: 10px 30px;
  grid-template-columns: 1fr 300px;
  margin-top: 54px;
}

@media only screen and (max-width: 1199px) {
  .fin-box .content {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}

.fin-box .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  text-transform: capitalize;
}

.fin-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 1px;
}

.fin-wrapper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fin-wrapper-btn .ui-btn:hover .btn-text {
  background-color: var(--black);
  color: var(--white);
}

.fin-wrapper-btn .ui-btn:hover .btn-icon {
  background-color: var(--black);
  color: var(--white);
}

.fin-wrapper-btn .ui-btn .btn-text {
  padding: 15px 33px;
  background-color: var(--theme);
  color: var(--black);
}

.fin-wrapper-btn .ui-btn .btn-icon {
  width: 50px;
  background-color: var(--theme);
  color: var(--black);
}

/* hero-5 area style  */
.fin-area-inner {
  display: grid;
  gap: 40px 138px;
  grid-template-columns: 1fr auto;
}

@media only screen and (max-width: 1199px) {
  .fin-area-inner {
    padding-top: 0px;
    /* display:flex;
    flex-direction: row; */
   grid-template-columns: 1fr 420px;       
  }
}

@media only screen and (max-width: 991px) {
  .fin-area-inner {
     grid-template-columns: 1fr 300px;
  }
}
@media only screen and (max-width: 768px) {
  .fin-area-inner {
     grid-template-columns: 1fr;
  }
}

.fin-content .breadcrumb-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fin-content .breadcrumb {
  list-style: none;
  margin-bottom: 0;
}

.fin-content .breadcrumb li {
  display: inline;
  font-size: 18px;
  line-height: 27px;
  color: var(--black);
  text-transform: uppercase;
}

.fin-content .breadcrumb li a {
  color: rgba(15, 14, 14, 0.7);
  text-decoration: none;
}

.fin-content .breadcrumb li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.fin-content .breadcrumb li+li:before {
  padding: 0 3px;
  color: rgba(15, 14, 14, 0.7);
  content: "/ ";
}

.fin-content .title-wrapper {
  margin-top: 22px;
}

.fin-content .section-title {
  max-width: 540px;
}

.fin-content .text-wrapper {
  margin-top: 41px;
}

@media only screen and (max-width: 1199px) {
  .fin-content .text-wrapper {
    margin-top: 31px;
  }
}

.fin-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  max-width: 535px;
}

.fin-content .text::first-letter {
  font-weight: 400;
  font-size: 34px;
  line-height: 30px;
  color: var(--primary);
}

.fin-content .scroll-btn-wrapper {
  margin-top: 217px;
  display: flex;
  justify-content: end;
}

@media only screen and (max-width: 1919px) {
  .fin-content .scroll-btn-wrapper {
    margin-top: 117px;
  }
}

@media only screen and (max-width: 1199px) {
  .fin-content .scroll-btn-wrapper {
    margin-top: 47px;
    justify-content: start;
  }
}

.fin-thumb {
  /* margin-top: 7px;
  margin-right: 155px; */
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .fin-thumb {
    margin-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .fin-thumb {
    margin-top: 0;
  }
}

.fin-thumb img {
  width: 500px;
  height: 650px;
  object-fit: cover;
  object-position: 67% 0;
  position: relative;
}

/* 

.fin-thumb:before {
position: absolute;
    content: "";
    width: 170%;
    aspect-ratio: 100 / 100;
    left: 50%;
    transform: translateX(-50%);
    top: 73%;
    background: var(--secondary);
    filter: blur(200px);
    border-radius: 100%;
    opacity: 1;
    transition: all 0.5s;
    pointer-events: none;
} */

@media only screen and (max-width: 1919px) {
  .fin-thumb img {
    height: 650px;
  }
}

@media only screen and (max-width: 1199px) {
  .fin-thumb img {
    height: 550px;
  }
}
@media only screen and (max-width: 768px) {
  .fin-thumb img {
    height: fit-content;
  }
}

/* sol area style  */
.sol-inner {
  padding-top: 100px;
}

@media only screen and (max-width: 1919px) {
  .sol-inner {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .sol-inner {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .sol-inner {
    padding-top: 30px;
  }
}

.sol-content .text-wrapper {
  margin-top: 19px;
}

.sol-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  max-width: 1060px;
}

.sol-wrapper-box {
  margin-top: 59px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 1fr 500px;
  align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
  .sol-wrapper-box {
    grid-template-columns: 1fr 420px;
  }
}

@media only screen and (max-width: 991px) {
  .sol-wrapper-box {
    grid-template-columns: 1fr;
  }
}

.sol-list-wrapper .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}

ul.sol-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style-type: none;
}

.sol-list li {
  font-weight: 400;
  line-height: 26px;
  list-style: none;
  display: flex;
  list-style-type: none;
  ;
}

.sol-list li:before {
  font-family: 'FontAwesome';
  content: '\f560';
  color: var(--secondary);
  margin-right: 10px;
}

.sol-wrapper {
  margin-top: 24px;
  display: grid;
  gap: 21px;
}

@media only screen and (max-width: 991px) {
  .sol-wrapper {
    margin-top: 0;
  }
}

.icon1 {
  float: right;
  filter: blur(1px);
}

.icon2 {
  float: right;
  margin-right: 20%;
  filter: blur(1px);
}



/* hub area style  */
.title-header {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .title-header {
    padding-top: 18px;
  }
}

.title-header .subtitle-wrapper {
  position: absolute;
  top: 39px;
  left: 0;

}

@media only screen and (max-width: 1399px) {
  .title-header .subtitle-wrapper {
    top: 29px;
  }
}

@media only screen and (max-width: 1199px) {
  .title-header .subtitle-wrapper {
    position: static;
  }
}

@media only screen and (max-width: 1199px) {
  .title-header .title-wrapper {
    margin-top: 10px;
  }
}

.title-header .section-title-2 {
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .title-header .section-title-2 {
    text-align: start;
  }
}

/* 
.banText{font-size:70px;}
@media only screen and (max-width: 1199px) {
  .banText{font-size:30px;}
}

.fEmberThin{font-family:var(--font_amazon_ember_thin);font-weight:300;} */
.tag {
  margin: 25px 0;
  display: grid;
  padding-top: 10px;
  padding-bottom: 12px;
  gap: 10px 0;
  text-align: center;
}

.tagText {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 400;
  font-size: 19px;
  line-height: 26px;
  padding: 10px 20px;
  position: relative;
  border-top: 1px solid rgba(15, 14, 14, 0.12);
  border-bottom: 1px solid rgba(15, 14, 14, 0.12);
  width: 40%;
}

.tagText:hover {
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .tagText {
    width: 100%;
  }
}

.underline {
  background-image: linear-gradient(to right, var(--secondary-2), transparent);
  height: 2px;
  background-position: 0 0;
  background-repeat: no-repeat;
  opacity: 50%;
  margin: 15px 0px;
}

.underline2 {
  background-image: linear-gradient(to right, var(--theme), transparent);
  height: 2px;
  background-position: 0 0;
  background-repeat: no-repeat;
  opacity: 50%;
  margin: 15px 0px;
}

.aboutImg {
  margin-top: 16%;
  margin-left: 10%;
}


.gradient-border {
  box-shadow: 4px 4px 8px 0 rgba(164, 208, 111, 0.2)
}

.line-shape-image {
  position: absolute;
  left: 0px;
  padding-left: 36px;
  width: 150px;
  top: 18%;
  left: 5%;
  /*  width: 200px;
    top: 50%;
    left:20%; */
  transform: translateY(-50%);
  z-index: 1;
  filter: invert(1);
}

.line-shape-image2 {
  position: absolute;
  left: 0px;
  padding-left: 36px;
  width: 200px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 1;
  filter: invert(1);
}

.line-shape-image img,
.line-shape-image2 img {
  animation: 10s linear 0s infinite normal none running spinner;
}

ul.list {
  list-style-type: none;
}

ul.list li {
  padding: 7px 0;
}

ul.list li:before {
  font-family: 'FontAwesome';
  content: '\f560';
  color: var(--theme);
  padding-right: 10px;

}

ul.clinks li {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  list-style: none;
  padding: 20px 0 0 0;
}

.content {
  padding: 50px 0;
}


.process-wrapper {
  display: grid;
  gap: 50px 80px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .process-wrapper {
    gap: 50px 60px;
  }
}

@media only screen and (max-width: 991px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .process-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.process-wrapper:before {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: rgba(15, 14, 14, 0.12);
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
  .process-wrapper:before {
    display: none;
  }
}

.process-box {
  position: relative;
  padding-top: 42px;
}

@media only screen and (max-width: 1199px) {
  .process-box {
    padding-top: 32px;
  }
}

.process-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(15, 14, 14, 0.12);
  top: 5px;
  left: 0;
  display: none;
}

@media only screen and (max-width: 991px) {
  .process-box:before {
    display: block;
  }
}

.process-box:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background-color: var(--secondary);
  border-radius: 50%;
  top: 0;
  left: 0;
}

.process-box .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
  text-transform: capitalize;
}

@media only screen and (max-width: 1199px) {
  .process-box .title {
    font-size: 24px;
  }
}

.process-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .process-box .content{padding:0px;}
}

@media only screen and (max-width: 991px) {

  .aboutImg,
  .line-shape-image,
  .line-shape-image2 {
    display: none;
  }
}

.nav li.nav-item {
  width: max-content;
  padding: 10px 0;
}

.nav-pills .nav-link {
  color: var(--black);
}

.nav .nav-item button.active {
  background-color: transparent;
  color: var(--secondary) !important;
}

.nav .nav-item button.active::after {
  content: "";
  border-right: 4px solid var(--secondary);
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  border-radius: 5px 0 0 5px;
}

.box {
  display: inline-block;
  justify-content: flex-start;
  border-style: none;
  border-style: none;
  border-radius: 8px 8px 8px 8px;
  box-shadow: 1px 5px 10px 0px rgba(0, 0, 0, 0.5);
  margin-top: 50px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 0px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.box .icon {
  margin-bottom: 10px;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.box .icon i {
  font-size: 40px;
}



.tabs-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tabs-container .tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tabs-container .tabs .tab-link {
  padding: 15px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f1f1f1;
  text-align: left;
  transition: background 0.3s;
}

.tabs-container .tabs .tab-link.active,
.tabs-container .tabs .tab-link:hover {
  background: var(--secondary-2);
}

.tabs-container .tabs-content {
  flex: 3;
  border: 1px solid #ccc;
  padding: 15px;
  border-left: none;
}

.tabs-container .tabs-content .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  visibility: hidden;
}

.tabs-container .tabs-content .tab-content.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 600px) {
  .tabs-container {
    flex-direction: column;
  }

  .tabs-container .tabs {
    width: 100%;
  }

  .tabs-container .tabs .tab-link {
    border-bottom: 1px solid #ccc;
  }

  .tabs-container .tabs .tab-link.active+.tab-content {
    display: block;
  }

  .tabs-container .tabs-content {
    width: 100%;
    border-left: 1px solid #ccc;
  }

  .tabs-container .tabs-content .tab-content {
    display: none;
    border-top: none;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
    visibility: hidden;
  }

  .tabs-container .tabs-content .tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    border-top: none;
  }
}

.tabs a svg {
  stroke: var(--gray-mid);
}

.tabs .active svg {
  stroke: var(--white);
}

.tabs a:hover svg {
  stroke: var(--white);
}

.overlay-slide:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #094789 0%, #FFFFFF 100%);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}

.overlay-slide:after {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 100/100;
  left: -11%;
  top: -326px;
  background: #97ff00;
  filter: blur(400px);
  border-radius: 760px;
  z-index: -1;
  opacity: 0.8;
}

.blog-wrapper-box {
  margin-top: 66px;
}

@media only screen and (max-width: 767px) {
  .blog-wrapper-box {
    margin-top: 36px;
  }
}

.blog-wrapper {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
  .blog-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .blog-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-wrapper article {
  border: 1px solid var(--teritary-color);
  box-shadow: 0px 0px 10px 0px #494949;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px;
}

.blog:hover .thumb img {
  transform: scale(1.1);
}

.blog .thumb {
  overflow: hidden;
}

.blog .thumb img {
  width: 100%;
  transition: all 0.5s;
}

.blog .meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.blog .tag {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  color: var(--black);
  background-color: var(--theme);
  padding: 6px 14px;
  border-radius: 6px;
}

.blog .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

.blog .date i {
  margin-right: 8px;
}

.blog .title {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  text-transform: capitalize;
  padding: 20px 0;
  color: var(--theme);
}

@media only screen and (max-width: 1399px) {
  .blog .title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1199px) {
  .blog .title {
    font-size: 22px;
    padding-right: 0;
  }
}

.blog .ui-btn {
  margin-top: 27px;
}

.blog-details .gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
  gap: 0px;
  place-items: center;
}

.blog-details .gallery-wrapper img {

  margin: 30px 0px 20px 0px;
  border: 1px solid var(--teritary-color);
  box-shadow: 0px 0px 10px 0px #494949;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

@media only screen and (max-width: 1199px) {
  .blog-details .gallery-wrapper {
    gap: 15px;
  }
}

.blog-details p {
  padding: 7px 0;
}

blockquote {
  background-color: var(--secondary-2);
  padding: 10px 25px;
  margin-top: 10px;
  width: fit-content;
  font-style: italic;
  border: 1px solid var(--teritary-color);
  box-shadow: 0px 0px 10px 0px #494949;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-2);
}

.accordion-header .collapsed {
  background-color: #d8d8d8;
}

.quote {
  background: #dcf7b5;
  padding: 1.5rem !important;
  text-align: center !important;
  margin-top: 1.5rem !important;
  border: 1px solid var(--teritary-color);
  box-shadow: 0px 0px 10px 0px #494949;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}





@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.testimonial-pagination {

  text-align: center;
  margin-top: 20px;

}

.testimonial-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-2);
 
}
.more {
  display: none;
}
.myBtn{ color:var(--secondary-2);border:solid 0px red;padding:20px 50px 20px 0px;cursor:pointer;}
a.myBtn{ color:var(--secondary-2);}


  .showmore {
  margin-top: 1.5em;
}

.showmore .more, .showmore.show .dots {
  display: none
}

.showmore.show .more {
  display: inline
}

.showmore a {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}