* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    Open Sans,
    sans-serif;
}
html, body {
  scroll-behavior: auto !important;
  /* overflow-x: hidden; */
}


p {
  margin-bottom: 0px !important;
}

.container {
  margin: 0 auto;
  padding: 0 !important;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 90px;
  height: 90px;
  position: relative;
}

.spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid #ddd;
  border-top: 6px solid #891811;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-logo {
  width: 40px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* HEADER */
.site-header {
  padding: 15px 0;
  margin-bottom: -80px;
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease;
}

.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.6); /* glass effect */
}

/* default state */
.logo-sticky {
  display: none;
}

.site-header.fixed-header .logo-default {
  display: none;
}

.site-header.fixed-header .logo-sticky {
  display: block;
}

.site-header.fixed-header .menu-toggle {
  color: black;
}

.site-header.fixed-header .btn-red:hover {
  border: 2px solid #891811;
  color: #891811;
}

.site-header {
  padding: 15px 0;
  margin-bottom: -80px;
  position: relative;
  z-index: 10;
}

.site-header .header-inner {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV DESKTOP */
.site-header .nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.site-header .logo img {
  width: 178px;
}

/* BUTTON */

.btn-red {
  display: block;
  text-align: center;
  background: #891811;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #891811;
  transition: 0.3s;
}
a.btn-red:hover {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

/* TOGGLE */
.site-header .menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.site-header .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #111;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 999;
}

.site-header .mobile-menu.active {
  right: 0;
}

.site-header .mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.site-header .close-btn {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE NAV */
.site-header .mobile-nav {
  margin-top: 40px;
}

.site-header .mobile-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

/* MOBILE BUTTON */
.site-header .mobile-btn {
  margin-top: 30px;
}

.site-header .btn-red.full {
  display: block;
  text-align: center;
}
nav.nav-desktop {
  display: flex;
  gap: 6px;
  background: rgba(73, 84, 101, 0.75);
  padding: 4px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff2e;
}

nav.nav-desktop a.active,
nav.nav-desktop a:hover {
  background: rgba(57, 66, 81, 1);
  color: #fff;
  border: 1px solid #ffffff2e;
}

nav.nav-desktop a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 35px;
  border-radius: 30px;
  transition: 0.3s;
  border: 1px solid #ffffff00;
}

/* ================= HERO ================= */
.hero-parallax {
  background-image: url("../img/ambitious-studio.png");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000000b8 53%, #66666687 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  margin: auto;
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 40px;
  align-items: center;
}

/* ===== HERO SECTION ===== */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== LEFT CONTENT ===== */

/* TAGS / PILLS */
.hero-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-tags .tag {
  height: 40px;
  padding: 0 22px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
}

/* active pill */
.hero-tags .tag.active {
  background: #891811;
  border-color: #ffffff;
  box-shadow: 0 6px 18px rgba(137, 24, 17, 0.45);
  padding: 0 22px;
}

/* separator image */
.tag-separator {
  width: 35px;
  height: auto;
  opacity: 0.85;
}

/* TEXT */
.hero-content h1 {
  font-size: 45px;
  line-height: 1.25;
  margin-bottom: 60px;
  font-weight: 700;
  color: #fff;
}

.hero-content h1 span {
  font-weight: 500;
  font-size: 42px;
  color: #fff;
}
.hero-content {
  margin-bottom: 90px;
}
.hero-content p {
  color: #fff;

  font-size: 18px;
  opacity: 0.9;
  max-width: 540px;
  margin-bottom: 30px;
  font-weight: 400;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 60px;
}

.hero-buttons .btn-primary {
  background: #891811;
  color: #fff;
  padding: 12px 22px;
  border-radius: 39.5px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #fff;
  font-size: 14px;
  text-align: center;
  transition: 0.3s;
}

.hero-buttons .btn-primary:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* ===== RIGHT MOBILE ===== */

.hero-mobile {
  height: 600px;
  display: flex;
  align-items: center;
}
.hero-mobile img {
  object-fit: scale-down;
  max-width: 267px !important;
  max-height: 580px !important;
}
/* pagination dots position */
.hero-dots {
  bottom: 20px;
}

/* dot style */
.hero-dots button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50%;
  border: 2px solid #fff !important;
  background-color: transparent !important;
  opacity: 1 !important;
}

.hero-dots .active {
  opacity: 1;
  background-color: #891811 !important;
}

/* hide arrows */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* safety */
.hero-parallax {
  overflow: hidden;
}
.hero-parallax::before {
  pointer-events: none;
}

#heroCarousel {
  position: relative;
  z-index: 2;
}

.carousel-indicators {
  z-index: 5;
}

.hero-tags .tag {
  cursor: pointer;
}

.hero-tags .tag.active {
  font-weight: 500;
}

.hero-tags .tag:hover {
  background-color: #891811;
  border: 1px solid #fff;
}

/* extra */

.roles-section {
  margin-top: -40px;
}

.hero-parallax {
  min-height: 70vh;
}

#heroCarousel {
  margin-top: 125px;
}

.carousel-indicators {
  bottom: 45px !important;
}

.hero-buttons .btn-primary:focus {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  box-shadow: none;
}

.hero-buttons .btn-primary:active:focus {
  box-shadow: none;
}

/* ================= ROLES SECTION ================= */
.roles-section {
  background-image: url("../img/Rectangle-5743.png");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.roles-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000000b8 53%, #66666687 100%);
}

.roles-container {
  position: relative;
  z-index: 2;
  margin: auto;
}

/* HEADER */
.roles-header {
  text-align: center;
  max-width: 65%;
  margin: 0 auto 60px;
}

.roles-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.roles-header p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

span.right-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* CARDS */
.roles-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.role-card {
  background: linear-gradient(rgb(255 255 255 / 83%), rgb(255 255 255 / 78%));
  color: #111;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  width: 300px;
}

.role-tag {
  font-size: 12px;
  color: #891811;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-tag img {
  width: 18px;
}

.role-card span.role-tag p {
  margin-bottom: 0px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #891811 !important;
}

.role-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.role-card p {
  font-size: 16px;
  color: #000;
  margin-bottom: 16px !important;
  font-weight: 400;
}

.role-card ul {
  padding-left: 18px;
  margin-bottom: 22px;
}

.role-card ul li {
  font-size: 16px;
  margin-bottom: 6px;
  list-style: none;
  font-weight: 400;
}


.role-card ul li {
  position: relative;
}

.role-card ul li:before {
  position: absolute;
  content: "";
  background-image: url("../img/circle-icon.png");
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  left: -17px;
  top: 5px;
}

.download-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  cursor: pointer;
  transition: stroke 0.3s ease;
}

.role-btn:hover .download-icon {
  stroke: #891811;
}

/* BUTTONS */
.role-btn {
  display: block;
  text-align: center;
  background: #891811;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #891811;
  transition: 0.3s;
}
a.role-btn:hover {
  border: 2px solid #891811;
  color: #891813;
  background-color: transparent;
}

.mobile-slider-wrap {
  display: none;
}

/* FOOTER LINE */
.roles-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  gap: 10px;
}
.roles-footer-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* section-four-css */
.gym-maintenance {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: url(../img/gym-maintenance-bg.png);
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.gym-maintenance .container,
.gym-contact-form .container {
  position: relative;
  z-index: 2;
}

.gym-maintenance .gym-overlay,
.gym-contact-form .gym-overlay {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000000b8 53%, #66666687 100%);
}

h1.gym-maintenance-heading {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

p.gym-maintenance-para {
  font-size: 20px;
  font-weight: 400;
  width: 80%;
  justify-self: center;
  text-align: center;
  padding-top: 20px;
}

.gym-maintenance-box {
  text-align: center;
  width: 90%;
  background-color: #d3d3d3a6;
  padding: 50px;
  justify-self: center;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-left: auto;
    margin-right: auto;
}

.gym-maintenance-box h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
  justify-self: center;
}

.gym-inner-box {
  display: flex;
  justify-content: center;
  gap: 50px;
  position: relative;
}

.gym-inner-box > div {
  background: #fff;
  width: 100%;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.gym-inner-box-icon img {
  border-radius: 10px;
  width: 50px;
  height: 50px;
}

.gym-inner-box-icon {
  width: 100%;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 6px;
  margin-top: -55px;
  margin-bottom: 50px;
  justify-self: center;
}

.gym-inner-box h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
  font-weight: 600;
}

.gym-inner-box p {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.gym-inner-box-arrow {
  display: none;
}

/* section-four-css-end */

/* section-five-css */
.trusted-section {
  background: #fff;
  padding: 70px 20px;
}

.trusted-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.trusted-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.trusted-desc {
  font-size: 20px;
  color: #000000;
  margin: 0 auto 45px;
  line-height: 1.6;
  font-weight: 400;
}

/* LOGOS ROW */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.trusted-logos img {
  max-height: 55px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* section-five-css-end */

.gym-contact-form {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background-image: url(../img/contact-form-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.gym-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gym-form-container h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.gym-form-container p {
  font-size: 20px;
  font-weight: 400;
  width: 833px;
  justify-self: center;
  text-align: center;
  padding-top: 20px;
}

.gym-form {
  padding: 40px 0px;
  text-align: center;
  width: 100%;
}

.gym-form-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

.gym-form-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.gym-form-inner input {
  height: 50px;
  padding: 0 15px;
  border-radius: 3px;
  border: none;
  outline: none;
  background: #eaeaea;
  font-size: 18px;
  width: 230px;
  color: #000 !important;
  text-align: center;
}

.gym-form-inner input::placeholder {
  color: #666;
}

.gym-form-inner button {
  height: 50px;

  border: none;
  border-radius: 3px;
  background: #891811;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
  width: 300px;
  border: 1px solid #891811;
}

.gym-form-inner input:last-of-type {
  width: 500px;
}

.gym-form-inner button:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
}
/* section-six-css-end */

/* Footer  */

.rp-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

.rp-footer-inner {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 178px;
}

a.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

a.footer-email:hover {
  color: #891811;
}

.footer-email img {
  width: 18px;
  height: 14px;
}

.footer-social {
  margin-top: 32px;
}

.footer-social span {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icons img {
  width: 28px;
}

/* CENTER */
.footer-center h5,
.footer-right h5 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-link img {
  width: 21px;
}

a.footer-link:hover {
  color: #891811;
}

.footer-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: #891811;
  color: #fff;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #fff;
}
.footer-btn:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  transition: 0.3s;
}

.footer-btn span {
  font-size: 11px;
  opacity: 0.8;
}

/* RIGHT */
.footer-right a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-right a:hover {
  color: #891811;
}

/* BOTTOM */
.footer-bottom {
  text-align: right;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  margin-top: 55px;
}

.footer-center-link {
  display: flex;
  gap: 15px;
}

.section-before,
.section-after {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  opacity: 0.6;
}

/* ================= TITLE ================= */
.ready-title {
  text-align: center;
  padding: 80px 20px 40px;
}
.ready-title p {
  opacity: 0.6;
  margin-bottom: 10px;
}
.ready-title h2 {
  font-size: 44px;
}


/* buttons */
.buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary {
  padding: 12px 24px;
  border-radius: 39.5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: #891811;
  color: #ffffff;
}
.btn.outline {
  border: 1px solid #1fffe0;
  color: #fff;
}

.trusted-logos img:nth-child(8) {
  width: 200px;
  max-height: 100px;
}

.trusted-arrow.trusted-prev,
.trusted-arrow.trusted-next {
  display: none;
}
.trusted-section-mobile {
  display: none;
}


/* ===== Parallax Wrapper ===== */
      .parallax-wrapper {
        height: 300vh; /* 3 × 100vh */
        position: relative;
        background-color: #f3f3f3;
      }

      /* ===== Sticky Parallax Sections ===== */
      .section-parallax {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50px;
        color: #fff;
      }

      /* ===== Dots ===== */
      .parallax-dots {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 20;

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      .parallax-dots.show {
        opacity: 1;
        pointer-events: auto;
      }

      .parallax-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #891811;
        opacity: 0.35;
        transition:
          opacity 0.3s,
          transform 0.3s;
      }

      .parallax-dot.active {
        opacity: 1;
        transform: scale(1.3);
      }

      .parallax-wrapper .card-inner .tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        border: 1px solid #891811;
        border-radius: 20px;
        font-size: 12px;
        margin-bottom: 15px;
        color: #000;
        font-weight: 600 !important;
        width: fit-content !important;
      }

      /* HOW WORKS DESIGN UPDATE */

      .parallax-wrapper .how-works {
        display: flex;
        align-items: center;
        margin-top: 20px;
        /* width: 800px; */
      }

      .parallax-wrapper .card-3 .card-left .how-works {
        width: auto;
      }

      .parallax-wrapper .how-works .step {
        background-image: url("../img/Exclude.png");
        background-repeat: no-repeat;
        margin-top: 10px;
        color: #000;
        position: relative;
        background-repeat: round;
        height: 145px;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        flex: 1;
      }

      .parallax-wrapper .icon {
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -40px auto 10px;
      }

      .parallax-wrapper .icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
      }

      /* arrow between steps */
      .parallax-wrapper .arrow {
        display: flex;
        align-items: center;
        margin-left: -10px;
        margin-right: -12px;
        z-index: 999;
      }

      .parallax-wrapper .arrow img {
        width: 60px;
      }

      /* bg image support */
      .parallax-wrapper .card-left {
        background-size: cover;
        background-position: center;
      }

      .parallax-wrapper .after-para-heading {
        color: #000;
        font-size: 18px;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 20px;
      }

      .parallax-wrapper img.card-right-mob-img {
        width: 293px;
        height: 472px;
        align-self: center;
      }

      /* CARD 3 SPECIAL LAYOUT */
      .parallax-wrapper .card-3 .card-left {
        width: 100%;
      }

      .parallax-wrapper .card-3 .card-right {
        width: 0%;
      }

      .parallax-wrapper .how-works .step:nth-child(1) {
        background-image: none;
        background-color: #fff;
        box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.4);
        height: 135px;
        margin-bottom: 12px;
      }

      .parallax-wrapper .card-3 .card-left .how-works .step h5 {
        margin: 12px 0;
      }

      .parallax-wrapper > .stack-card:last-child .tag {
        width: 31%;
      }
      .parallax-wrapper > .stack-card:last-child .tag {
        width: fit-content !important;
      }
      .parallax-wrapper .stack-card {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        transform: translateZ(0);
        will-change: transform;
      }

      /* headings */
      .parallax-wrapper .stack-card h3 {
        font-size: 35px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #000;
      }
      .parallax-wrapper .stack-card p {
        line-height: 1.6;
        opacity: 0.85;
        font-weight: 400;
        font-size: 18px;
        color: #000;
      }
      .parallax-wrapper .stack-card.card-3 .how-works .arrow:last-child img {
        margin-top: 10px;
      }

      .parallax-wrapper .step h5 {
        font-size: 16px;
        font-weight: 600;
        margin: 0px 0;
      }

      .parallax-wrapper .step p {
        font-size: 14px;
        font-weight: 400;
        padding: 11px;
      }

      .parallax-wrapper .stack-card:nth-child(3) .arrow {
        margin-bottom: 0px !important;
      }

      .parallax-wrapper .card-inner {
        display: flex;
        width: 100%;
        height: 100%;
      }
      .parallax-wrapper article.stack-card.card-1 .card-left {
        width: 70%;
      }
      .parallax-wrapper article.stack-card.card-1 .card-right {
        width: 30%;
      }

      .parallax-wrapper article.stack-card.card-2 .card-left {
        width: 28%;
      }
      .parallax-wrapper article.stack-card.card-2 .card-right {
        width: 72%;
      }

      .parallax-wrapper
        article.stack-card.card-1
        .how-works
        .step:last-child
        p {
        padding: 3px;
      }

      .parallax-wrapper .card-left,
      .parallax-wrapper .card-right {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .parallax-wrapper .card-left {
        background: #f3f3f3;
      }
      .parallax-wrapper .tag img {
        width: 18px;
        height: 18px;
      }

      .parallax-wrapper .card-right {
        background: #f3f3f3;
      }
      .parallax-wrapper .btn-primary {
        padding: 12px 24px;
        border-radius: 39.5px;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        font-weight: 600;
        background: #891811;
        border: 1px solid #891811;
        color: #fff;
        transition: 0.3s;
      }

      .parallax-wrapper .btn-primary:hover {
        color: #891811;
        background-color: #ffffff;
        align-items: center !important;
        border: 1px solid #891811;
      }

      .parallax-wrapper .buttons {
        display: flex;
        gap: 14px;
        margin-top: 30px;
      }

 .parallax-wrapper .btn-primary:focus, .parallax-wrapper .btn-primary:active {
    color: #891811;
    background-color:#fff;
    border-color: #891811;
    box-shadow: none;
}