@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Urbanist", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --primary-color: #3057f6;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

body {
  overflow-x: hidden;
  zoom: 0.9;
}

.container {
  max-width: 1350px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 80%;
  z-index: 9;
}
.primary-btn {
  background-color: var(--primary-color);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  min-width: 151px;
  padding: 20px;
  display: inline-block;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  /* padding: 50px 0; */
  z-index: 99;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.4s;
}
header.blur-effect {
  background: transparent;
  opacity: 1;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  list-style: none;
  gap: 40px;
}
.navbar li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #000;
}
.white-navbar li a {
  color: #fff;
}
.white-logo img {
  filter: brightness(0) invert(1);
}
.hero-section {
  position: relative;
  height: calc(100dvh / 0.9);
  overflow: hidden;
  display: flex;
}
.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-div {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  min-width: 1000px;
  text-align: center;
  /* padding: 250px 0; */
}
.hero-section-div h1 {
  font-weight: 800;
  font-size: 120px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 30px;
}
.success-stories-img {
  display: flex;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.success-stories-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.success-stories {
  height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
}
.smooth-scroll-sections::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 20px;
  height: 100%;
  width: 1px;
  background: #dfe0ec;
}

.success-stories-icon-border {
  border-radius: 8px;
  height: 82px;
  width: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -190px;
  top: 50%;
  --progress: 0%;
  border-radius: 10px;
  background: conic-gradient(#1a4aff var(--progress), #dfe0ec 0);
  background-origin: border-box;
  background-clip: padding-box;
  transition: background 0.2s linear;
  display: inline-block;
  padding: 4px;
}
.success-stories-icon {
  background: #fff;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-stories-icon img {
  width: auto;
}
.smooth-scroll-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 300px;
}
.success-stories-details-right {
  text-align: center;
}
.center-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.success-stories-details h2 {
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 35px;
}
.success-stories-details h2 span {
  font-weight: 700;
  display: block;
}
.success-stories-details-right {
  padding: 20px 0;
}
.sticky-side {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  flex-shrink: 0;
  height: calc(100dvh - 220px);
}
.smooth-scroll-sections {
  align-items: flex-start;
  position: relative;
}
.sticky-section {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* ================= */

.map-animation {
  position: relative;
  height: 300vh; /* Scroll length */
  z-index: -1;
  padding-top: 100px;
}
.map-animation::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 120dvh;
  background-image: url(../images/cloud-background.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.map-animation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100dvh;
  width: 100%;
  background: linear-gradient(
    180deg,
    #5a85fc 0%,
    rgba(255, 255, 255, 0) 42.31%
  );
  opacity: 0.21;
}
.map-animation-text {
  position: sticky;
  top: 115px;
  z-index: 2;
  padding: 20px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* .map-animation-text.sticky-text {
} */

.map-animation-text.hide-text {
  transform: translateY(-100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.map-animation-img {
  position: sticky;
  top: 200px;
  height: 100vh;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.map-animation-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transform-origin: center center;
  transform: scale(1.5); /* Start bigger */
  will-change: transform;
  transition: transform 0.05s linear;
  padding-top: 300px;
}

.intro-section {
  height: 100vh;
  background-color: aliceblue;
  z-index: 9;
  display: block;
  position: relative;
}

#mapSvg {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.map-animation-div {
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
.map-animation-div p {
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 31px;
  color: #1e1e1e;
}
.map-animation-div h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 55px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #1e1e1e;
}
.map-animation-div h2 span {
  color: var(--primary-color);
}

/* Start all second/third set elements hidden */
.animatedLine2,
.animatedCircle2,
.animatedPath2,
.animatedSecondPath2,
.animatedLine3,
.animatedCircle3,
.animatedPath3,
.animatedSecondPath3 {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* When animation starts, fade in */
.fade-in {
  opacity: 1;
}
.fade-in-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.5s ease-out;
}

.fade-in-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-hero {
  position: relative;
  padding: 220px 0 100px 0;
}
.services-hero::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #e2eaf1 0%, #ffffff 100%);
  left: 0;
  top: 0;
  height: 2000px;
  width: 100%;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 20px;
  align-items: center;
}
.services-img img {
  width: 100%;
}
.services-details h2 {
  font-weight: 800;
  font-size: 74px;
  line-height: 97%;
  letter-spacing: -0.6px;
  color: #1e1e1e;
}
.services-details p {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #1e1e1e;
  margin: 15px 0;
}
.services {
  background-color: #fff;
  padding: 100px 0;
  border-radius: 60px 60px 0 0;
  position: relative;
}
.service-description h4 {
  font-weight: 800;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}
.service-description p {
  font-weight: 400;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: 0.2px;
}
.service-description h4 span {
  color: var(--primary-color);
}
.service-description {
  max-width: 1100px;
}
.offerings {
  padding: 100px 0;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offerings h3 {
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.6px;
  margin-bottom: 30px;
}
.offerings-box {
  background: linear-gradient(180deg, #e6ecf3 0%, #ffffff 100%);
  border-radius: 17px;
  padding: 25px;
}
.offerings-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.offerings-box h4 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  margin: 10px 0 30px 0;
}

.services-col-details h3 {
  font-weight: 800;
  font-size: 38px;
  line-height: 43px;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}

.services-col-details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.services-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
.services-col-img img {
  width: 100%;
}
.proof-practice {
  background-color: #eaeff5;
  padding: 100px 0;
}
.proof-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.proof-practice-box {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  border: 1px solid #d7d8e1;
}
.proof-practice-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  height: 58px;
}
.proof-practice-icon p {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}
.proof-practice h3 {
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0.6px;
  margin-bottom: 40px;
}
.proof-practice-img {
  height: 360px;
  display: flex;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.proof-practice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-practice-info h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}
.proof-practice-info h4 span {
  font-weight: 700;
  display: block;
}
.proof-practice-info {
  /* border: 1px solid #d7d8e1; */
  padding: 20px 20px 50px 20px;
  border-radius: 0 0 10px 10px;
}
.discover-banner {
  background: linear-gradient(113.64deg, #3057f6 -38.52%, #1c3390 95.6%);
  padding: 100px 0;
  position: relative;
}
.discover-banner-div {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.discover-banner-div p {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  color: #fff;
}
.discover-banner h3 {
  color: #fff;
  font-weight: 800;
  font-size: 46px;
  line-height: 113.99999999999999%;
  margin: 10px 0 20px 0;
}
.contact-details p {
  max-width: 575px;
}
.contact-details {
  align-items: flex-start;
}
input:focus,
textarea:focus {
  outline: none;
}
.contact-form-box br {
  display: none;
}
.contact-form-box input {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  width: 100%;
  border-radius: 17px;
  border: 1px solid #e4e4e4;
  margin-top: 15px;
  padding: 23px 20px;
  color: #000;
}
.contact-form-box input::placeholder {
  color: #000;
}
.contact-form-box textarea {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  width: 100%;
  border-radius: 17px;
  border: 1px solid #e4e4e4;
  margin-top: 15px;
  padding: 23px 20px;
  color: #000;
  resize: none;
  height: 200px;
}
.contact-form-box textarea::placeholder {
  color: #000;
}
.submit-btn {
  text-align: right;
  margin-top: 10px;
}
span.wpcf7-not-valid-tip {
  font-size: 17px;
  padding-left: 10px;
  padding-top: 5px;
}
.submit-btn button {
  border: 0;
  cursor: pointer;
}
.contact-form-box {
  padding: 35px;
  background-color: #fff;
  border-radius: 20px;
}
.offices-div::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 5px;
  box-shadow: rgb(0 0 0 / 8%) 0 1px 0;
}
.offices-div {
  position: relative;
  text-align: center;
  padding: 65px 0;
}
.offices-div h3 {
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.6px;
}

.offices-div p {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  max-width: 1000px;
  margin: 10px auto;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offices-box {
  padding: 25px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 17px;
}
.offices-box h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 3.2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.offices-box h4 {
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  margin-bottom: 15px;
}
.offices-box p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.offices {
  padding-bottom: 100px;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}
.footer-navbar {
  display: flex;
  list-style: none;
  gap: 25px;
}
.footer-navbar li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.footer-border {
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  padding: 40px 0;
}
.footer-grid h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}

.footer-contact h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.2px;
  margin-bottom: 5px;
}
.footer-contact p {
  font-weight: 400;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.2px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 20px;
}
.footer-locations {
  gap: 20px;
  display: flex;
  justify-content: space-between;
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copyright p {
  font-weight: 400;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.2px;
}
.privacy-policy {
  display: flex;
  gap: 25px;
}
.privacy-policy a {
  font-weight: 400;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.2px;
}
footer {
  background-color: #fff;
}
/* Basic reset */
.navbar li {
  padding: 50px 0;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  position: fixed;
  top: 119px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 85px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.dropdown-box a {
  font-weight: 800 !important;
  font-size: 20px !important;
  line-height: 100% !important;
  letter-spacing: 0.6px !important;
  color: #000 !important;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.dropdown-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.dropdown-menu .container {
  max-width: 1150px;
}
.hamburger {
  display: none;
}
.last-item-nav {
  display: none;
}
.case-studios {
  padding: 220px 0 50px 0;
}
select:focus {
  outline: none;
}
.proof-practice-info p {
  font-weight: 500;
  font-size: 18px;
  line-height: 139%;
  opacity: 0.34;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.case-studios-news .proof-practice-info h4 {
  font-size: 28px;
}
.case-studios-news .proof-practice-grid {
  gap: 20px;
}
.news-filter select {
  padding: 0;
  cursor: pointer;
  border-radius: 6px;
  height: 56px;
  overflow: hidden;
  font-size: 22px;
  text-align: center;
  width: 100%;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f7f7f7 url(../images/dropdown.svg) no-repeat right 20px center;
  background-size: 15px;
  color: #000;
  text-align-last: center;
  border: 0;
  max-width: 265px;
  margin-bottom: 50px;
}
.case-studios-news {
  padding-bottom: 100px;
}
.privacy {
  padding: 140px 0;
}
.privacy h2 {
  font-size: 40px;
}
.privacy h3 {
  font-size: 30px;
  margin-bottom: 5px;
}
.privacy p {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-details h2 {
    font-size: 45px;
  }
  .services-details p {
    font-size: 22px;
    line-height: 28px;
    margin: 10px 0;
  }
  .primary-btn {
    padding: 18px;
  }
  .service-description h4 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 20px;
  }
  .service-description p {
    font-size: 25px;
    line-height: 33px;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .offerings-box h4 {
    font-size: 25px;
    line-height: 31px;
    margin: 10px 0 15px 0;
  }
  .offerings h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .services {
    padding: 70px 0;
  }
  .offerings {
    padding: 70px 0;
  }
  .services-col-details h3 {
    font-size: 30px;
    line-height: 35px;
  }
  .proof-practice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .services-col-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container {
    max-width: 767px;
  }
  .proof-practice {
    padding: 70px 0;
  }
  .proof-practice h3 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .discover-banner h3 {
    font-size: 30px;
  }
  .discover-banner {
    padding: 70px 0;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offices-div h3 {
    font-size: 30px;
  }
  .offices-div p {
    font-size: 25px;
  }
  .offices-box h4 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .offices-box p {
    margin-top: 20px;
  }
  .footer-menu {
    display: block;
    text-align: center;
    padding: 35px 0;
  }
  .footer-navbar {
    justify-content: center;
    margin-top: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-box {
    padding: 20px 15px;
  }
  .contact-form-box input {
    padding: 18px 15px;
  }
}
@media (max-width: 767px) {
  .offices-div {
    padding: 45px 0;
  }
  .offices-box {
    padding: 20px 15px;
  }
  .footer-copyright {
    display: block;
    text-align: center;
    padding: 20px 0;
  }
  .privacy-policy {
    display: block;
    margin-top: 10px;
  }
  .privacy-policy a {
    display: block;
    margin-top: 10px;
  }
  .footer-navbar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-locations {
    display: block;
  }
  .footer-locations .footer-contact {
    margin-bottom: 20px;
  }
  .footer-grid h3 {
    margin-bottom: 10px;
    text-align: center;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .services-img img {
    max-width: 100%;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .case-studios {
    padding: 200px 0 50px 0;
  }
  .hero-section {
    height: 100dvh;
  }
  .hero-section-div {
    width: calc(100% - 30px);
    min-width: auto;
  }
  .hero-section-div h1 {
    font-size: 60px;
  }
  .hamburger {
    display: flex;
    gap: 5px;
    flex-direction: column;
    position: relative;
    z-index: 9;
  }
  .line {
    width: 30px;
    height: 3px;
    background-color: #000;
  }
  .white-line .line {
    background-color: #fff;
  }
  .navbar {
    position: fixed;
    background-color: #fff;
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    flex-direction: column;
    /* justify-content: center; */
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s;
    overflow-y: scroll;
    padding: 150px 0px;
    overflow-x: hidden;
  }
  .navbar.active-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .navbar li {
    padding: 10px 0;
  }
  .dropdown-menu {
    position: relative;
    top: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    box-shadow: unset;
    display: none;
  }
  .dropdown-menu.open-menu {
    display: block;
  }
  .navbar li a {
    font-size: 30px;
    padding-left: 20px;
  }
  .dropdown-content {
    display: block;
    padding: 25px 0 0 25px;
    /* display: none; */
  }
  .dropdown-content a {
    padding-left: 0 !important;
  }
  .logo {
    position: relative;
    z-index: 9;
  }
  header {
    padding: 20px 0;
  }
  .dropdown-box {
    margin-bottom: 25px;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .contact-btn {
    display: none;
  }
  .last-item-nav {
    display: inline-block;
    margin-left: 20px;
    color: #fff !important;
    font-size: 18px !important;
  }
}
.success-stories-icon-mobile {
  display: none;
}
.mobile-services-img {
  display: none;
}
@media (max-width: 1024px) {
  .dropdown a {
    position: relative;
  }
  .dropdown a::before {
    position: absolute;
    content: "";
    background-image: url(../images/chevron-right.svg);
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    right: -38px;
    top: 11px;
  }
  .smooth-scroll-sections::before {
    display: none;
  }
  .success-stories {
    height: auto;
  }
  .sticky-side {
    display: none;
  }
  .smooth-scroll-sections {
    grid-template-columns: 1fr;
  }
  .sticky-section {
    padding: 70px 0;
  }
  .scroll-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .success-stories-details h2 {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .success-stories-icon-mobile {
    display: flex;
    height: 65px;
    width: 65px;
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid #3057f6;
    padding: 12px;
  }
  .success-stories-icon-mobile img {
    width: 100%;
  }
  .mobile-services-img {
    display: block;
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
  }
}

.clients-slider .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.clients {
  border-bottom: 1px solid #f0f0f0;
  padding: 120px 0;
  background-color: #fff;
  position: relative;
}

.clients p {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 10px;
  color: #1e1e1e;
}
.clients h2 {
  font-weight: 800;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000;
  margin-bottom: 50px;
}
.swiper-animation {
  border-radius: 31px;
  padding: 18px 10px;
}

.swiper-animation {
  position: relative;
  overflow: hidden;
}

.swiper-animation {
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 10% 0 10%);
  transition: clip-path 0.3s ease-out;
}
.swiper-border {
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  height: 100%;
  opacity: 0.3;
  transition: width 0.3s ease-out, opacity 0.3s ease-out;
  width: 30%;
}
.swiper-border-wrapper {
  position: relative;
}
.swiper-border-wrapper::before {
  position: absolute;
  content: "";
  position: absolute;
  width: 70%;
  height: 200px;
  background: #3057f6;
  filter: blur(250px);
  left: 50%;
  transform: translate(-50%);
}
.clients-box img {
  width: 100%;
}

.after-sticky {
  padding: 140px 0;
  background-color: #fff;
  text-align: center;
}
.after-sticky p {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 7px;
}
.after-sticky h2 {
  font-weight: 800;
  font-size: 46px;
  line-height: 113.99999999999999%;
  max-width: 700px;
  margin: auto;
  color: var(--primary-color);
}
.testimonials {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}
.spacer {
  height: 80px;
  position: relative;
  background-color: #fff;
}
.testimonials::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 200px;
  background: #3057f6;
  filter: blur(250px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.testimonials-sticky-text p {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 7px;
  text-align: center;
}
.testimonials h2 {
  font-weight: 800;
  font-size: 46px;
  line-height: 113.99999999999999%;
  text-align: center;
  color: #000;
  margin-bottom: 35px;
}

.testimonials-card {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px #d7d8e1;

  border-radius: 10px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 50px;
  background-color: #fff;
  position: sticky;
  top: 280px;
  margin-top: 20px;
}
.testimonials-card p {
  font-weight: 500;
  font-size: 22px;
  line-height: 143%;
  color: #1e1e1e;
  margin: 20px 0 40px 0;
}
.testimonials-card h3 {
  color: #1e1e1e;
  font-weight: 700;
  font-size: 26px;
  line-height: 134%;
  letter-spacing: 0.6px;
}
.testimonials-card h4 {
  color: #1e1e1e;
  font-weight: 400;
  font-size: 18px;
  line-height: 134%;
  letter-spacing: 0.6px;
  opacity: 0.4;
}
.testimonials-sticky-text {
  position: sticky;
  top: 160px;
}
.culture-hero-section {
  background-color: var(--primary-color);
  height: 490px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}
.culture-hero-section .container {
  margin: 0 auto;
}
.culture-hero-section h2 {
  font-weight: 800;
  font-size: 74px;
  line-height: 97%;
  letter-spacing: 0.6px;
  color: #fff;
  margin-bottom: 20px;
}
.culture-hero-section p {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
  padding-bottom: 60px;
}
.culture-hero-section img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.culture-description {
  padding: 110px 0;
}
.culture-description p {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  letter-spacing: 0.2px;
  max-width: 900px;
}
.culture-description p span {
  font-weight: 700;
}

.single-hero-section {
  height: 470px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.single-hero-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.single-hero-section .container {
  margin: 0 auto;
}
.single-hero-section h2 {
  padding-bottom: 60px;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
}
.single-hero-section h2 span {
  font-weight: 700;
  display: block;
}
.post-categories {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
}
.post-categories li {
  font-weight: 800;
  font-size: 16px;
  line-height: 97%;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 15px;
  margin-left: 15px;
}
.post-categories li:first-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}
.mobile-btn {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-btn {
    display: block;
    margin-top: 20px;
  }
  .case-studios-news .proof-practice-info h4 {
    font-size: 24px;
  }
  .proof-practice-info {
    padding: 18px;
  }
  .proof-practice-info p {
    margin-top: 5px;
  }
  .news-filter select {
    font-size: 20px;
    height: 45px;
    margin-bottom: 15px;
  }
  .clients {
    padding: 70px 0;
  }
  .clients p {
    font-size: 20px;
  }
  .clients h2 {
    font-size: 35px;
  }
  .after-sticky p {
    font-size: 20px;
  }
  .after-sticky h2 {
    font-size: 30px;
  }
  .after-sticky {
    padding: 70px 0 5px 0;
  }
  .map-animation-div p {
    font-size: 20px;
  }
  .map-animation-div h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .map-animation {
    padding-top: 70px;
  }
  .map-animation-text {
    top: 70px;
  }
  .spacer {
    height: 0;
  }
  .testimonials {
    padding: 10px 0 20px 0;
  }
  .testimonials-sticky-text p {
    font-size: 20px;
  }
  .testimonials h2 {
    font-size: 35px;
  }
  .testimonials-sticky-text {
    top: 100px;
  }
  .testimonials-card {
    top: 230px;
    padding: 25px 20px;
  }
  .testimonials-card p {
    font-size: 18px;
    margin: 10px 0 15px 0;
  }
  .testimonials-card h3 {
    font-size: 23px;
  }
  .testimonials-card h4 {
    font-size: 18px;
  }
}

/* Applied dynamically by JS */
.testimonials-card.stuck:nth-of-type(1) {
  transform: rotate(-1deg);
}
.testimonials-card.stuck:nth-of-type(2) {
  transform: rotate(5deg);
}
.testimonials-card.stuck:nth-of-type(3) {
  transform: rotate(-2deg);
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
  body {
    zoom: unset;
  }
}
.map-animation {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
