.landing-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-overlay-dark);
  z-index: -1;
}
.landing-header .heading-stroke {
  font-family: "Roboto Slab", serif;
  position: relative;
}
@media (min-width: 992px) {
  .landing-header .heading-stroke:nth-child(2) {
    margin-left: 50px;
  }
  .landing-header .heading-stroke:nth-child(3) {
    margin-left: 100px;
  }
  .landing-header .heading-stroke:nth-child(4) {
    margin-left: 150px;
  }
  .landing-header .heading-stroke:nth-child(5) {
    margin-left: 200px;
  }
  .landing-header .heading-stroke:nth-child(6) {
    margin-left: 250px;
  }
}
.landing-header .heading-stroke h1:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(5px, 3px);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
}
.landing-header .signup-btn {
  position: relative;
  width: 250px;
  aspect-ratio: 1/1;
  padding: 25px;
  border-radius: 50%;
  background: var(--yellow);
}
.landing-header .signup-btn .img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.landing-header .signup-btn .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 4s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(-360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.landing-header .signup-btn:hover .text {
  animation: none;
}
.landing-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}

section {
  width: 100%;
  padding-block: 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.spacer {
  display: flex;
  align-items: flex-start;
}
.spacer section {
  overflow-x: hidden;
  position: sticky;
  top: 0;
}
.verticals {
  --gap: 36px;
  --item-size: 250px;
  --count: 5;
  height: calc(calc(var(--count) * (var(--item-size) + var(--gap))) + 100vh);
}
.verticals-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: var(--gap);
  position: relative;
  left: 50%;
  transform: translateX(0px);
  will-change: transform;
}
.verticals-container .vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  min-width: var(--item-size);
  max-width: var(--item-size);
}
.verticals-container .vertical .vertical-image {
  background: #fbfbfb;
  border: 1px solid var(--gray-800);
  border-radius: 12px;
}

#how_it_works .container-xxl,
#our_team .container-xxl {
  max-width: 800px;
}
.process-steps {
  position: relative;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.process-steps .step {
  position: relative;
  display: flex;
  gap: 36px;
}
.process-steps .step .step-progress-indicator {
  margin-top: 2em;
  outline-offset: 0px;
  outline: var(--gray-100) solid 10px;
  filter: grayscale(100%);
  will-change: filter;
}
.process-steps .step:last-child:after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 100%;
  top: 24px;
  z-index: -1;
  background: var(--gray-100);
}
.process-steps .step .step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
  box-shadow: -6px 6px 0 var(--gray-600);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
}
.process-steps .process-indicator-bar {
  position: absolute;
  top: -60px;
  left: 28px;
  right: auto;
  z-index: -1;
  overflow: hidden;
  width: 2px;
  height: 100%;
  background: var(--gray-400);
}
.process-steps .process-indicator-bar .bar {
  position: relative;
  width: 100%;
  background: var(--success-600);
  will-change: height;
}
@media (max-width: 575px) {
  .process-steps .step {
    gap: 16px;
  }
  .process-steps .step .step-item {
    padding: 16px;
  }
}

.profile-card {
  width: 100%;
  max-width: 550px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--yellow-400);
  background: var(--gray-800);
  box-shadow: 8px 8px 0 var(--yellow-400);
}
.profile-card .imgBox {
  width: 120px;
  height: 120px;
}
.profile-card .imgBox span {
  font-size: 80px;
}
.profile-card .member-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex-grow: 1;
}
.profile-card .team-social-handles {
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-card .team-social-handles a {
  color: var(--primary-500);
  transition: 0.2s ease-in;
}
.profile-card .team-social-handles a:hover {
  transform: translateY(3px);
}

footer .payment-options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer .payment-options .img {
  margin-block: 15px;
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
