@import url('../fonts/freight/stylesheet.css');
@import url('../fonts/kamerik/stylesheet.css');

body,
html,
main {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

::selection {
  background-color: #1942be;
  color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1942be;
  border-radius: 3px;;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body,
main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  outline: none;
}

select {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.padding-top {
  padding-top: 50px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.padding-y {
  padding-top: 50px;
  padding-bottom: 50px;
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border-radius: 30px;
}

.btn.btn-1 {
  background-color: #1942be;
  color: #fff;
  border: none;
}

.btn.btn-1:hover {
  background-color: #1942be;
  color: #fff;
  transform: translateY(-5px);
}

.btn.btn-white {
  background-color: #fff;
  color: #222222;
  border: none;
}

.btn.btn-white:hover {
  background-color: #1942be;
  color: #fff;
  transform: translateY(-5px);
}


.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease-in-out;
}

.header-main.scroll {
  background-color: rgba(34, 34, 34, 0.4);
  backdrop-filter: blur(15px);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-main .navbar-toggler {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-main .navbar-toggler .bar {
  display: block;
  height: 2px;
  width: 40px;
  background-color: #fff;
}

.header-main .nav-item {
  position: relative;
}

.header-main .nav-item .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 5px 15px;
  position: relative;
  overflow: hidden;
}

.header-main .nav-item .nav-link::after {
  content: attr(data-content);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  transform: translateY(150%);
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .nav-link span {
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .nav-link:hover:after {
  transform: translateY(0);
}

.header-main .nav-item .nav-link:hover span {
  transform: translateY(-150%);
}

.header-main .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  right: 0;
  height: 2px;
  background-color: #1942be;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item > .nav-link.active:before {
  transform: translateX(-50%) scaleX(1);
}

.header-main .nav-item .dropdown {
  position: absolute;
  left: 15px;
  top: 100%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-main .nav-item .dropdown li a {
  display: block;
  width: 230px;
  padding: 5px 15px;
  border-radius: 10px;
  color: #222;
  font-family: "Inter", sans-serif;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .dropdown li a.active,
.header-main .nav-item .dropdown li a:hover {
  background-color: rgba(25, 66, 190, 0.3);
}

.header-main .navbar-brand img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.mobile-menu-offcanvas {
  background-color: #000;
}

.mobile-menu-offcanvas .offcanvas-header {
  position: relative;
}

.mobile-menu-offcanvas .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff !important;
  padding: 0;
  font-size: 30px;
  width: 50px;
}

.mobile-menu-offcanvas .menu-brand {
  display: block;
  width: 0;
  overflow: hidden;
}

.mobile-menu-offcanvas.show .menu-brand {
  transition: 0.5s ease-in-out;
  width: 200px;
}

.mobile-menu-offcanvas .menu-brand img {
  width: 200px;
  max-width: 200px;
  min-width: 200px;
}

.mobile-menu-offcanvas .btn-close .icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}

.mobile-menu-offcanvas .btn-close .icon .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform-origin: center center;
}

.mobile-menu-offcanvas .btn-close .icon .bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(35deg);
}

.mobile-menu-offcanvas .btn-close .icon .bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-35deg);
}

.mobile-menu-offcanvas .navbar-nav {
  /* text-align: center; */
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-menu-offcanvas .navbar-nav>li {
  transform: translateX(100%);
  opacity: 0;
  transition: 0s ease-in-out;
}

.mobile-menu-offcanvas.show .navbar-nav li {
  transition: 0.5s ease-in-out;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-offcanvas .navbar-nav li a {
  font-family: 'Kamerik205 2';
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 15px;
  /* width: fit-content; */
}

.mobile-menu-offcanvas .navbar-nav>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu-offcanvas .navbar-nav .dropdown-wrapper>a {
  position: relative;
}

.mobile-menu-offcanvas .navbar-nav .dropdown-wrapper>a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 40px;
  background-image: url(../images/chev-down.png);
  background-repeat: no-repeat;
  background-position: center right;
  transform-origin: center center;
  transition: 0.3s ease-in-out;
}


.mobile-menu-offcanvas .navbar-nav .dropdown {
  display: none;
}

.mobile-menu-offcanvas .navbar-nav .dropdown a {
  font-size: 18px;
  padding: 5px 20px;
}

.mobile-menu-offcanvas .btn {
  /* margin: 0 auto;
  display: block;
  width: fit-content; */
  transform: translateY(50px);
  opacity: 0;
  font-size: 22px;
  transition: 0s ease-in-out;
}

.mobile-menu-offcanvas.show .btn {
  transition: 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.home-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 150px 0 30px;
}

.home-banner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
  pointer-events: none;
}

.home-banner .content:not(.content-full) {
  max-width: 700px;
}

.home-banner .content .branding {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.home-banner .content h1 {
  font-family: 'Kamerik205 3';
  text-transform: uppercase;
  font-size: 4rem;

}


.home-banner p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.home-banner .scroll-btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 0 auto
}

.book-call-section {
  background-color: #222222;
  padding: 50px 0;
}

.book-call-section a {
  display: block;
  text-align: center;
  color: #fff;
}

.book-call-section .lottie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.book-call-section .lottie-btn {
  width: 70%;
}

.book-call-section .lottie-wrapper .icons {
  font-size: 130px;
  position: relative;
  font-family: 'Kamerik205 2';
  /* transform: translateY(-20px); */
}

.book-call-section .lottie-wrapper .icons span:not(.icon-1) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-2 {
  opacity: 0.8;
  transform: translateX(-100%);
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-3 {
  opacity: 0.6;
  transform: translateX(-200%);
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-4 {
  opacity: 0.4;
  transform: translateX(-300%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-2 {
  opacity: 0.8;
  transform: translateX(100%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-3 {
  opacity: 0.6;
  transform: translateX(200%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-4 {
  opacity: 0.4;
  transform: translateX(300%);
}

.book-call-section a h5 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
}

/* .book-call-section a h3 {
  font-family: 'Kamerik205 8', sans-serif;
  position: relative;
  font-size: 120px;
  overflow: hidden;
  text-transform: uppercase;
  line-height: 1;
} */

/* Base text line containers */
/* .book-call-section a h3>span {
  display: block;
  white-space: nowrap;
} */

/* Absolutely position the reveal layer directly over the initial layer */
/* .book-call-section a h3 .reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
} */

/* Individual character inline blocks */
/* .book-call-section a h3 .char {
  display: inline-block;
  vertical-align: top;
  transform: translateY(100%);
  animation: reveal-anim 5s ease-in-out forwards infinite;
  will-change: transform;
} */

/* -------------------------------------------------------------
   Initial Text Delays (0.0s to 0.9s)
------------------------------------------------------------- */
/* .book-call-section a h3 .initial .char:nth-child(3) {
  animation-delay: 0s;
}

.book-call-section a h3 .initial .char:nth-child(5) {
  animation-delay: 0.1s;
}

.book-call-section a h3 .initial .char:nth-child(1) {
  animation-delay: 0.2s;
}

.book-call-section a h3 .initial .char:nth-child(10) {
  animation-delay: 0.3s;
}

.book-call-section a h3 .initial .char:nth-child(4) {
  animation-delay: 0.4s;
}

.book-call-section a h3 .initial .char:nth-child(7) {
  animation-delay: 0.5s;
}

.book-call-section a h3 .initial .char:nth-child(6) {
  animation-delay: 0.6s;
}

.book-call-section a h3 .initial .char:nth-child(8) {
  animation-delay: 0.7s;
}

.book-call-section a h3 .initial .char:nth-child(9) {
  animation-delay: 0.8s;
}

.book-call-section a h3 .initial .char:nth-child(2) {
  animation-delay: 0.9s;
} */

/* -------------------------------------------------------------
   Reveal Text Delays (Offset by 2s)
------------------------------------------------------------- */
/* .book-call-section a h3 .reveal .char:nth-child(3) {
  animation-delay: 2.5s;
}

.book-call-section a h3 .reveal .char:nth-child(5) {
  animation-delay: 2.6s;
}

.book-call-section a h3 .reveal .char:nth-child(1) {
  animation-delay: 3.3s;
}

.book-call-section a h3 .reveal .char:nth-child(2) {
  animation-delay: 2.8s;
}

.book-call-section a h3 .reveal .char:nth-child(4) {
  animation-delay: 2.9s;
}

.book-call-section a h3 .reveal .char:nth-child(7) {
  animation-delay: 3s;
}

.book-call-section a h3 .reveal .char:nth-child(6) {
  animation-delay: 3.1s;
} */

/* -------------------------------------------------------------
   Keyframe Animation
------------------------------------------------------------- */
/* @keyframes reveal-anim {
  0% {
    transform: translateY(100%);
  }

  10%,
  50% {
    transform: translateY(0%);
  }

  60%,
  100% {
    transform: translateY(-100%);
  }
} */

.what-we-do #what-we-do-title {
  font-family: 'Kamerik205 8', sans-serif;
  text-transform: uppercase;
  font-size: 10rem;
  text-align: end;
  color: #000;
  position: relative;
}

.what-we-do #what-we-do-title .what {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: absolute;
  top: 30px;
  right: 0;
  color: #fff;
  z-index: 1;
  -webkit-text-stroke: 1px #000;
}

.what-we-do #what-we-do-title .we {
  display: inline-block;
}

.what-we-do #what-we-do-title .do {
  display: inline-block;
  transform: translateY(70px);
  position: relative;
  z-index: 9;
}

.what-we-do .what-we-do-desc {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

.what-we-do .what-we-do-desc .initial {
  opacity: 0.5;
}

.what-we-do .what-we-do-desc .reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}

/* .home-banner .content h1 span{
  font-family: 'Kamerik205 5';
  font-size: 3.6rem
} */
.services-listing .service-item {
  position: relative;
  margin: 5px 0;
}

.services-listing .service-item .content-wrapper {
  position: relative;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.services-listing .service-item .content-wrapper .video-abs {
  position: absolute;
  top: 100%;
  z-index: 9;
  max-width: 400px;
  opacity: 0;
  /* transform: skewY(15deg); */
  pointer-events: none;
}

.services-listing .service-item:hover .content-wrapper .video-abs {
  opacity: 1;
  /* transform: skewY(0deg) */
}

.services-listing .service-item .content-wrapper {
  /* position: relative; */
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}

.services-listing .service-item:nth-last-child(1) .content-wrapper {
  border-bottom: none;
}

.services-listing .service-item .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: 1s ease;
  transform: scaleX(0.5);
  border-radius: 20px;
  opacity: 0;
}

.services-listing .service-item .content-wrapper:hover:before {
  transform: scaleX(1);
  opacity: 1;
}

.services-listing .service-item .content-wrapper .video-abs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  /* Prevents video from intercepting mouse events */
  will-change: transform;
  /* transform: skewY(15deg); */
}

/* Ensure inner elements don't interfere with mouse bounds */
.services-listing .service-item .content-wrapper p {
  position: absolute;

}

.services-listing .service-item h4 {
  position: relative;
  font-family: 'Kamerik205 8';
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
  color: #000;
  line-height: 2rem;
  overflow: hidden;
}

.services-listing .service-item h4 span {
  display: block;
  transition: 0.3s ease-in-out;
}

/* Base styles for split characters */
.services-listing .service-item h4 span .char {
  display: inline-block;
  /* Required for transforms to work */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.services-listing .service-item .content-wrapper:hover h4 span .char {
  color: #fff;
}

/* Absolute overlay span (hidden below initially) */
.services-listing .service-item h4 span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Push the characters of the 1st span down initially */
.services-listing .service-item h4 span:nth-child(1) .char {
  transform: translateY(100%);
}

/* Keep characters of 2nd span in normal position initially */
.services-listing .service-item h4 span:nth-child(2) .char {
  transform: translateY(0);
}

/* Hover States: Roll up characters */
.services-listing .service-item .content-wrapper:hover h4 span:nth-child(1) .char {
  transform: translateY(0);
}

.services-listing .service-item .content-wrapper:hover h4 span:nth-child(2) .char {
  transform: translateY(-100%);
}

.how-it-works {
  /* background-color: #222222;
  color: #fff; */
}

.sec-title {
  display: flex;
  align-items: start;
  gap: 100px;
}

.sec-title .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title h2 {
  font-family: "Space Grotesk", sans-serif;
  /* font-family: 'Kamerik205 3'; */
  font-size: 4rem;
  width: 50%;
}

.sec-title-4 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.sec-title-4 h2 {
  font-family: "Space Grotesk", sans-serif;
  /* font-family: 'Kamerik205 3'; */
  font-size: 4rem;
}

.sec-title h2 span {
  /* font-family: 'Kamerik205 2'; */

}

.how-it-works .how-it-work-listing {
  margin-top: 20px;
}

.how-it-works .how-it-work-listing .work-card {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;
  height: 100%;
}

.how-it-works .how-it-work-listing .work-card .card-icon {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}

.how-it-works .how-it-work-listing .work-card h5 {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
}

.how-it-works .how-it-work-listing .work-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.projects-section {
  background-color: #F2EFEA;
}

.projects-section .sec-title {
  color: #000;
}

.projects-section .project-item {
  position: relative;
}

.projects-section .project-item img {
  /* border-radius: 20px; */
  width: 100%;
}

.projects-section .project-item .content {
  padding: 20px 0;
}

.projects-section .project-item.full-width {
  margin-bottom: 50px;
}

.projects-section .project-item a {
  display: block;
}

.projects-section .project-item img {
  transition: 5s ease-in-out;
  object-fit: cover;
  object-position: center top;
}

.projects-section .project-item.full-width img {
  height: 40vw;
}

.projects-section .project-item .image-larger {
  height: 32vw;
}

.projects-section .project-item .img-shorter {
  height: 22vw;
}

.projects-section .project-item:hover img {
  object-position: center bottom;
}

.projects-section .project-item.full-width .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  /* border-radius: 0 0 20px 20px; */
  padding: 30px;
}

.projects-section .project-item .content h6 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0;
}

.projects-section .project-item .content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 0;
}

.projects-section .padding-project-item {
  margin-top: 70px;
}

.sec-title-2 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title-2 h2 {
  font-family: 'Kamerik205 3';
  font-size: 6rem;
}

.sec-title-2 h2 span {
  font-family: 'Kamerik205 2';
}

.sec-title-3 {
  text-align: center;
}

.sec-title-3 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title-3 h2 {
  font-family: 'Kamerik205 3';
  font-size: 3rem
}

.sec-title-3 h2 span {
  font-family: 'Kamerik205 2';
}

.why-sylex {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 80px 0;
}

.why-sylex .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
  pointer-events: none;
}

.why-sylex .why-sylex-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.why-sylex .why-sylex-card h3 {
  font-family: 'Kamerik205';
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.why-sylex .why-sylex-card h6 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}

.core-vision {
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 150px;
}

.core-vision::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: -1;
}

.core-vision .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.5);
  pointer-events: none;
}

.core-vision h2 {
  font-family: 'Freight';
  font-size: 10rem;
  font-style: italic;
}

.industries-practice {
  background-color: #222222;
}

.industries-practice .sec-title {
  color: #fff;
}

.industries-practice .sec-title h2 {
  width: auto;
}

.industries-practice .sec-title h2 span {
  font-weight: 100;
}

.industries-practice .industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.industries-practice .industry-card img {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.industries-practice .industry-card:hover img {
  transform: scale(1.1);
}

.industries-practice .industry-card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.industries-practice .industry-card .content h4 {
  margin-bottom: 0;
}

/* ==========================================================================
   Preloader Styles
   ========================================================================== */
body.is-loading {
  overflow: hidden !important;
  height: 100vh !important;
}

body.is-loading .home-banner .branding,
body.is-loading .home-banner .split-text,
body.is-loading .home-banner .row {
  opacity: 0 !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #080808;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform;
}

.preloader-inner {
  text-align: center;
  max-width: 320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo img {
  max-height: 65px;
  width: auto;
  animation: preloaderPulse 2s infinite ease-in-out;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.preloader-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888888;
}

.preloader-num {
  color: #1942be;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.preloader-bar-bg {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: #1942be;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(201, 243, 29, 0.5);
  will-change: width;
}

/* Testimonials Section */
.testimonials-sec {
  background-color: #ffffff;
}

.testimonials-sec .sec-title {
  margin-bottom: 40px;
}

.testimonials-wrapper {
  margin-top: 20px;
}

.testimonial-card {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card .stars {
  color: #000000;
  font-size: 15px;
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.testimonial-card .testimonial-text {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 35px;
  max-width: 620px;
}

.testimonial-card .author-name {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0;
}

.testimonials-slider .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.testimonials-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: #DDD8D0;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.testimonials-slider .owl-dots .owl-dot:hover span {
  background: #000000;
}

.testimonials-slider .owl-dots .owl-dot.active span {
  background: #000000;
  width: 40px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card .testimonial-text {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .testimonial-card {
    padding: 20px 10px;
  }
}

.footer-main {
  background-color: #222222;
}

.footer-main .footer-brand {
  margin-bottom: 40px;
}

.footer-main .footer-content {
  border-top: 1px solid #1942be;
  padding: 30px 0 50px;
}

.footer-main .footer-head {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  width: fit-content;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-main .footer-head::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1942be;
}

.footer-main .footer-content .footer-links li a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  transition: 0.3s ease-in-out;
  padding: 5px 0;
}

.footer-main .footer-content .footer-links:not(.contact-links) li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: #1942be;
  transition: 0.3s ease-in-out;
}


.footer-main .footer-content .footer-links:not(.contact-links) li a:hover {
  padding-left: 15px;
}

.footer-main .footer-content .footer-links:not(.contact-links) li a:hover:before {
  width: 10px;
}

.footer-main .footer-content .footer-mail {
  display: block;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  width: fit-content;
  border-bottom: 1px solid #fff;
  margin-top: 30px;
  transition: 0.3s ease-in-out;
}

.footer-main .footer-content .footer-mail:hover {
  color: #1942be;
  border-bottom: 1px solid #1942be;
}

.footer-main .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-main .footer-copyright p {
  color: #fff;
}

.image-text-column p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #666666;
}

.image-text-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-text-column ul li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 16px;

  padding-left: 30px;
}

.image-text-column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-image: url(../images/check-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.how-it-works-about-pg {
  background-color: #F2EFEA;
}

.value-card {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

.value-card .icon img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.value-card h4 {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.video-section .video-wrapper {
  position: relative;
}

.video-section .video-wrapper img {
  border-radius: 20px;
}

.video-section .video-wrapper .video-player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
}

.packages-section {
  background-color: #010101;
  color: #fff;
}

.packages-section .sec-title-4 h2 {
  color: #fff;
}

.packages-section .nav-pills {
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px !important;
}

.packages-section .nav-pills .nav-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}

.packages-section .nav-pills .nav-link:hover {
  color: #fff;
  border-color: #575ECF;
  background-color: rgba(87, 94, 207, 0.15);
  transform: translateY(-2px);
}

.packages-section .nav-pills .nav-link.active {
  color: #fff;
  background-color: #575ECF;
  border-color: #575ECF;
  /* box-shadow: 0 0 20px rgba(87, 94, 207, 0.6), 0 0 40px rgba(92, 41, 244, 0.3); */
}

.packages-section .package-tier-info {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  margin-top: 25px;
  text-align: center;
}

.packages-section .package-card {
  position: relative;
  color: #fff;
  background-color: rgba(8, 7, 82, 0.2);
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.packages-section .package-card * {
  position: relative;
  z-index: 1;
}

.packages-section .package-card::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 50%;
  height: 100px;
  background-color: rgba(92, 41, 244, 0.6);
  /* z-index: 1; */
  filter: blur(100px);
  pointer-events: none;
}

.packages-section .package-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.packages-section .package-card .price {
  font-family: "Inter", sans-serif;
  display: block;
  font-weight: 500;
  font-size: 2rem;
  margin-top: -20px;
  padding-left: 25px;
}

.packages-section .package-card .price::before {
  content: '$';
  position: absolute;
  left: 0;
  top: 0;
  color: #575ECF;
  font-size: 1.8rem;
}

.packages-section .package-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #F7F6F3;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 30px 0;
  transition: 0.3s ease-in-out;
}

.packages-section .package-card:hover {
  border-color: #575ECF;
  /* box-shadow: 0 0 10px rgba(87, 94, 207, 0.2), 0 0 50px rgba(92, 41, 244, 0.2); */
  transform: scale(1.05);
}

.packages-section .package-card:hover a {
  background-color: #575ECF;
}

.packages-section .package-card a:hover {
  transform: translateY(-10px);
}

.packages-section .package-card ul {
  overflow-y: auto;
  height: 229px;
  padding-right: 5px;
}
.packages-section .package-card ul li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 10px 10px 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-section .package-card ul li:nth-last-child(1) {
  border-bottom: none;
}

.packages-section .package-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-image: url(../images/check-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.faq-listing .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}

.faq-listing .faq-item .faq-question {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
  margin-bottom: 0;
}

.faq-listing .faq-item .faq-answer {
  font-family: "Space Grotesk", sans-serif;
  color: #666666;
}

.faq-listing .faq-item .faq-answer p {
  margin-bottom: 0;
}

.contac-us {
  background-image: url(../images/dots-bg.svg);
}

.contac-us .form-wrapper {
  border: 2px solid #575ECF;
  padding: 30px;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
}

.contac-us .input-field input,
.contac-us .input-field select,
.contac-us .input-field textarea {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  height: 50px;
  padding: 5px 10px;
  /* border: 1px solid #353535; */
  border: none;
  border-radius: 10px;
  font-weight: 500;
  outline: none;
}

.contac-us .input-field textarea {
  height: 116px;
  resize: none;
}

.contac-us .contact-item h5 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.contac-us .contact-item a {
  font-family: "Inter", sans-serif;
  color: #0c0c0c;
  font-size: 1rem;
}

.because {
  text-align: center;
  position: relative;
  padding: 50px 0;

}

.because span {
  margin: 0 auto;
  color: #373737;
  border: 1px solid #373737;
  border-radius: 30px;
  padding: 12px 20px;
  z-index: 1;
  position: relative;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  background-color: #fff;
}

.because::before {
  content: "";
  height: 1px;
  background-color: #373737;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  position: absolute;
}

.what-happened-next .sec-title-2 h2 {
  font-size: 5rem;
}

.next-card {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}

.next-card .img-wrapper {
  height: 60px;
  width: 60px;
  background-color: #1942be;
  padding: 10px;
  border-radius: 50%;
  margin: -45px auto 30px;
}

/* 
  font-family: 'Kamerik205 5';
  font-family: 'Kamerik205 3';
  font-family: "Space Grotesk", sans-serif;
  font-family: 'Freight';
  font-family: "DM Serif Display", serif;
  font-family: "Inter", sans-serif;
*/
@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {
  .home-banner .content h1 {
    font-size: 3rem
  }

  .book-call-section .lottie-wrapper {
    gap: 10px;
  }

  .book-call-section .lottie-wrapper .icons {
    font-size: 40px;
  }

  .what-we-do #what-we-do-title {
    font-size: 4rem;
  }

  .what-we-do #what-we-do-title .do {
    transform: translateY(25px)
  }

  .services-listing .service-item h4 {
    font-size: 1.3rem;
  }

  .services-listing .service-item .content-wrapper {
    padding: 5px 0;
  }

  .sec-title {
    flex-direction: column;
    gap: 10px;
  }

  .sec-title h2 {
    width: 100%;
    font-size: 2rem;
  }

  .footer-main .footer-content .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-main .footer-copyright {
    flex-direction: column;
  }

  .sec-title-2 h2 {
    font-family: 'Kamerik205 3';
    font-size: 5rem;
  }

  .why-sylex .why-sylex-card h3 {
    font-size: 1.6rem;
  }

  .core-vision h2 {
    font-size: 6rem;
  }

  .what-happened-next .sec-title-2 h2 {
    font-size: 3rem;
  }

  .because span {
    font-size: 12px;
  }

  .next-card {
    margin-top: 25px;
  }

  .projects-section .project-item img {
    transition: 5s ease-in-out;
    height: 300px !important;
    object-fit: cover;
    object-position: center top;
  }

  .sec-title-3 .tagline,
  .sec-title .tagline,
  .sec-title-4 .tagline {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .sec-title-3 h2,
  .sec-title-4 h2 {
    font-size: 2rem;
  }

  .header-main .navbar-toggler .bar {
    width: 25px;
    height: 1px;
  }

  .header-main .navbar-toggler {
    gap: 6px;
  }

  .mobile-menu-offcanvas .menu-brand img,
  .header-main .navbar-brand img {
    min-width: 150px;
    width: 150px;
    max-width: 150px;
  }

  .mobile-menu-offcanvas .navbar-nav li a {
    font-size: 18px;
    padding: 10px;
  }

  .mobile-menu-offcanvas .btn {
    font-size: 16px;
  }

  .what-we-do #what-we-do-title .what {
    top: -30px;
  }

  .what-we-do #what-we-do-title .we {
    position: relative;
    z-index: 9;
  }

  .services-listing .service-item .content-wrapper video {
    display: none;
  }

  .projects-section .project-item .content h4 {
    font-size: 1.5rem
  }
}