@media (min-width: 1440px) {

  .container,
  .container-no-flex {
    max-width: 80vw !important;
  }
}

.container {
  max-width: 95vw !important;
  display: flex !important;
  flex-direction: row;
  justify-content: center !important;
  margin: 0 auto;
  align-items: center !important;
}

.container-no-flex {
  max-width: 95vw !important;
  margin: 0 auto;
}

.ERECAP-landing-page {
  /* background-color: #ffffff; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.ERECAP-landing-page .frame-wrapper {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
}

.ERECAP-landing-page .frame {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

/* Base styles for header */
.ERECAP-landing-page .element {
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #000000;
}

.ERECAP-landing-page .line {
  width: 100%;
  height: 1px;
  object-fit: cover;
  top: 99px;
  left: 60px;
  border: none;
  background-color: #868686;
}

.ERECAP-landing-page .navigation-bar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  top: 30px;
  left: 60px;
  padding: 15px 0px;
}

.ERECAP-landing-page .div-wrapper {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 3.19px;
  padding: 9.57px;
  position: relative;
  flex: 0 0 auto;
  background-color: #000000;
  border: 1px solid;
  border-color: #868686;
}

.ERECAP-landing-page .text-wrapper {
  position: relative;
  width: 68.01px;
  margin-top: -1.07px;
  font-weight: 600;
  color: #ffffff;
  font-size: 10.2px;
  letter-spacing: 0;
  line-height: 10.2px;
}

.ERECAP-landing-page .frame-2 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
  margin-right: 200px;
}

.ERECAP-landing-page .frame-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 0px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 10px;
}

.ERECAP-landing-page .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.50px;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: normal;
  white-space: nowrap;
}


.ERECAP-landing-page .frame-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  position: fixed;
  /* Change from sticky to fixed */
  top: 20px;
  /* Distance from top of viewport */
  right: 20px;
  /* Distance from right of viewport */
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid;
  border-color: #bdbdbd;
  z-index: 1000;
  /* Ensures it appears above other content */
}

.ERECAP-landing-page .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -0.50px;
  font-weight: 500;
  color: #000000;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: normal;
  white-space: nowrap;
}

/* Mobile Contact Button (Hidden by default) */
.mobile-contact-btn {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding: 16px 0;
  background-color: #ffffff;
  border-radius: 30px;
  text-align: center;
}

.mobile-contact-text {
  font-weight: 500;
  color: #000000;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: normal;
  text-decoration: none;
}

/* Mobile menu toggle button styling */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1000;
}

.hamburger-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

/* Active state for hamburger icon */
.mobile-menu-toggle.active .hamburger-icon {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Media query for screens 1083px and below */
@media screen and (max-width: 1083px) {
  .mobile-menu-toggle {
    display: block;
  }

  .ERECAP-landing-page .frame-2 {
    display: block;
    position: fixed;
    top: 0;
    right: -50vw;
    /* Start off-screen */
    width: 50vw;
    /* 50% of viewport width */
    height: 100vh;
    background: linear-gradient(180deg, rgba(1, 57, 175, 0.90) 0%, rgba(0, 24, 73, 0.90) 100%);
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 20px;
    z-index: 100;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 0;
    /* Smoother animation */
  }

  .ERECAP-landing-page .frame-2.active {
    right: 0;
    /* Slide in from right */
  }

  .ERECAP-landing-page .frame-3 {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .ERECAP-landing-page .frame-3:last-child {
    border-bottom: none;
  }

  .ERECAP-landing-page .text-wrapper-2 {
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.6px;
  }

  .ERECAP-landing-page .frame-4 {
    display: none;
    /* Hide desktop contact button on mobile */
  }

  .mobile-contact-btn {
    display: block;
    margin-top: 30px;
  }
}

/* Hero Banner Section */

.ERECAP-landing-page .overlap {
  /* position: absolute; */
  width: 100%;
  /* height: 548px; */
  /* top: 238px; */
  /* left: 60px; */
  height: 100vh;
  padding: 0px 50px;
  display: flex;
  align-items: center;
  background-color: black;
}

/* Image scale animation */
.hero-image {
  max-height: 900px;
  background-color: black;
  transform: scale(0.2);
  animation: scaleUp 1.5s ease-out forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Parallax effect for text */
.parallax-text {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.ERECAP-landing-page .background-images {
  /* position: absolute; */
  width: 60%;
  height: auto;
  /* top: 0; */
  margin: 0 auto;
}

.ERECAP-landing-page .overlap-group-wrapper {
  height: auto;
  overflow: hidden;
}

.ERECAP-landing-page .overlap-group {
  position: relative;
  width: 100%;
  height: auto;
  left: -21px;
  background-color: black;
  ;
}

.ERECAP-landing-page .image {
  /* position: absolute; */
  width: 100%;
  height: auto;
  top: 0;
  left: 21px;
  object-fit: cover;
}

.ERECAP-landing-page .div {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: absolute;
  /* top: 5%; */
  left: 0;
  padding-right: 10%;
  padding-left: 10%;

}

.ERECAP-landing-page .redefining-democracy {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  mix-blend-mode: exclusion;
  margin-bottom: 10%;
  font-weight: 500;
  color: #ffffff;
  font-size: 75px;
  letter-spacing: 0;
  line-height: 75px;
}

.ERECAP-landing-page .secure-vote {
  position: relative;
  align-self: stretch;
  mix-blend-mode: exclusion;
  font-weight: 500;
  color: #ffffff;
  font-size: 75px;
  text-align: right;
  letter-spacing: 0;
  line-height: 75px;
}

@media (max-width: 768px) {

  .ERECAP-landing-page .redefining-democracy,
  .ERECAP-landing-page .secure-vote {
    font-size: 36px;
    line-height: 36px;
  }

  .ERECAP-landing-page .div {
    top: 3%;
  }
}


/* Who It Is For Section */

#who-it-is-for {
  background-color: #000000;
  position: relative;
  min-height: 500vh;
  overflow: unset;
}

.erecap-story-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.erecap-story-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
}

.erecap-story-title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 500;
  /* margin-bottom: 80px; */
  min-height: 300px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.erecap-story-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.erecap-story-slides {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erecap-story-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  /* padding: 40px; */
  pointer-events: none;
}

.erecap-story-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.erecap-story-slide.prev {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  filter: blur(1px);
  pointer-events: none;
}

.erecap-story-audience {
  font-weight: 600;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.erecap-story-audience::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.erecap-story-slide.active .erecap-story-audience::after {
  width: 100%;
}

.erecap-story-benefit {
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.erecap-story-slide.active .erecap-story-benefit {
  opacity: 1;
  transform: translateY(0);
}

.erecap-scroll-progress {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 15px;
  z-index: 100;
}

.erecap-progress-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.erecap-progress-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.erecap-progress-dot.active::before {
  width: 100%;
}

.erecap-progress-dot.completed {
  background-color: rgba(255, 255, 255, 0.8);
}

.erecap-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.erecap-scroll-indicator.hidden {
  opacity: 0;
}

.erecap-scroll-arrow {
  margin-top: 10px;
  font-size: 18px;
  animation: erecap-bounce 2s infinite;
}

@keyframes erecap-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.erecap-story-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 1s ease;
}

.erecap-story-slide.active .erecap-story-background {
  opacity: 1;
}

@media (max-width: 768px) {
  .erecap-story-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .erecap-story-title {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .erecap-story-audience {
    font-size: 36px;
  }

  .erecap-story-benefit {
    font-size: 24px;
  }

  .erecap-story-slide {
    padding: 20px;
  }

  .erecap-scroll-progress {
    bottom: 20px;
  }

  .erecap-scroll-indicator {
    bottom: 60px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .erecap-story-title {
    font-size: 32px;
  }

  .erecap-story-audience {
    font-size: 28px;
  }

  .erecap-story-benefit {
    font-size: 20px;
  }
}

/* Our Purpose Section */

.election-integrity-section {
  min-height: 100vh;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
}

.purpose-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
}

.content-block {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.content-block.reverse {
  justify-content: flex-end;
}

.text-content {
  /* max-width: 650px; */
  padding-left: 30px;
}

.content-block.reverse .text-content {
  padding-left: 0;
}

.vertical-line {
  width: 0.5px;
  background-color: #0139AF;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  height: 100%;
}

.content-block.reverse .vertical-line {
  left: auto;
  right: 0;
}

.main-title {
  color: #0139AF;
  font-size: 60px;
  font-style: normal;
  font-weight: 450;
  line-height: 100%;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
  margin-bottom: 100px;
  max-width: 40%;
}

.description1,
.description2 {
  color: #0139AF;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: 140%;
  letter-spacing: 0.6px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.3s;
  border-left: solid 0.5px #0139AF;
  padding-left: 30px;
  max-width: 40%;
}

.description1 {
  margin-left: 30%;
  margin-bottom: 50px;
}

.description2 {
  margin-left: 0;
  margin-bottom: 100px;
}

.second-title {
  color: #0139AF;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.9px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
  margin-bottom: 100px;
  margin-left: 30%;
  max-width: 50%;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 768px) {

  .content-block,
  .content-block.reverse {
    flex-direction: column;
  }

  .text-content,
  .content-block.reverse .text-content {
    padding-left: 15px;
    padding-right: 0;
    text-align: left;
  }

  .vertical-line {
    width: 0.5px;
    height: 100%;
    left: 0;
  }

  .content-block.reverse .vertical-line {
    left: 0;
    right: auto;
  }

  .main-title {
    font-size: 42px;
    max-width: 90%;
  }

  .description1,
  .description2 {
    max-width: 90%;
    margin-left: 0;
  }

  .second-title {
    font-size: 26px;
    max-width: 90%;
    margin-left: 0;

  }
}

.desc-image-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.desc-image-wrap.reverse {
  flex-direction: row-reverse;
}

.desc-image {
  max-width: 450px;
  height: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(140px);
  transition: opacity 1s ease, transform 1s ease;
}

@media (max-width: 768px) {

  .desc-image-wrap,
  .desc-image-wrap.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .desc-image {
    max-width: 100%;
  }
}

.desc-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.desc-wrapper.reverse {
  flex-direction: row;
  justify-content: flex-start;
}

.content-block2.reverse .desc-wrapper {
  margin-left: 30%;
}
@media (max-width: 768px) {
  .content-block2.reverse .desc-wrapper {
  margin-left: 0;
          flex-direction: column;
}
}


.content-block2.reverse .desc-image {
  order: -1;
  /* places image on the left */
}

/* Our Edge Section */

/* Our Edge Section - Now Scroll-Based */
.our-edge {
  background: linear-gradient(135deg, #0139af 0%, #1e5fdc 100%);
  position: relative;
  overflow: hidden;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Intro Section */
.our-edge-story-intro {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.our-edge-main-title {
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  margin-bottom: clamp(40px, 6vw, 80px);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.our-edge-story-card {
  display: flex;
  align-items: center;
  padding: 60px 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-edge-story-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.our-edge-story-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.our-edge-story-card-inner {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  width: 60%;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.our-edge-feature-divider {
  width: 60px;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 25px;
}

.our-edge-story-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
  padding-bottom: 20px;
  border-bottom: solid 0.5px white;
  margin-bottom: 20px;
}

.our-edge-story-description {
  font-weight: 400;
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 0.6px;
  line-height: 1.5;
}

/* Alternating Layout */
.our-edge-story-card:nth-child(odd) .our-edge-story-content {
  justify-content: flex-start;
}

.our-edge-story-card:nth-child(even) .our-edge-story-content {
  justify-content: flex-end;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

/* Progress Indicator - Only visible within our-edge section */
.our-edge-progress-indicator {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 1000;
  display: none;
  /* Hidden by default */
  flex-direction: column;
  gap: 20px;
}

.our-edge-progress-indicator.show {
  display: flex;
}

.our-edge-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.our-edge-progress-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-edge-story-content {
    justify-content: center !important;
  }

  .our-edge-story-card-inner {
    width: 280px;
    padding: 20px;
  }

  .our-edge-story-title {
    font-size: 24px;
  }

  .our-edge-story-description {
    font-size: 16px;
  }

  .our-edge-progress-indicator {
    display: none !important;
  }

  .our-edge-story-card {
    padding: 40px 0;
  }

  .floating-element {
    display: none;
  }
}


/* Case Study Section */

.ERECAP-landing-page .frame-16 {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 50px;
  display: flex;
  justify-content: space-between;
}

.top-row {
  display: flex;
  justify-content: center;
}

.bottom-row {
  display: flex;
  justify-content: center;
}

.ERECAP-landing-page .frame-17 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 120px;
  left: 487px;
  background-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pb {
  margin-bottom: 20px;
}

.ERECAP-landing-page .element-2 {
  left: 62px;
  font-weight: 500;
  color: #ffffff;
  /* position: absolute; */
  top: 145px;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-11 {
  font-weight: 600;
  letter-spacing: 0.87px;
}

.ERECAP-landing-page .text-wrapper-12 {
  letter-spacing: 0.87px;
}

.ERECAP-landing-page .total-seats {
  /* position: absolute; */
  top: 199px;
  left: 98px;

  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .frame-18 {
  display: inline-flex;
  align-items: center;
  /* position: absolute; */
  top: 238px;
  left: 17px;
}

.ERECAP-landing-page .element-national-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.element-national-wrapper-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border: 0.68px solid;
  border-color: #0139af;
}

.ERECAP-landing-page .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -0.34px;

  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.80px;
  line-height: 20px;
  white-space: nowrap;
}

.ERECAP-landing-page .element-provincial-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .element-local-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .group {
  /* position: absolute; */
  width: 45px;
  height: 64px;
  top: 69px;
  left: 122px;
}

.ERECAP-landing-page .overlap-group-2 {
  position: relative;
  width: 46px;
  height: 64px;
}

.ERECAP-landing-page .union {
  /* position: absolute; */
  width: 34px;
  height: 38px;
  top: 0;
  left: 5px;
}

.ERECAP-landing-page .rectangle {
  /* position: absolute; */
  width: 7px;
  height: 21px;
  top: 42px;
  left: 6px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .rectangle-2 {
  /* position: absolute; */
  width: 7px;
  height: 21px;
  top: 42px;
  left: 32px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .union-2 {
  /* position: absolute; */
  width: 46px;
  height: 26px;
  top: 38px;
  left: 0;
}

.ERECAP-landing-page .frame-19 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 423px;
  left: 487px;
  border: 0.68px solid;
  border-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ERECAP-landing-page .text-wrapper-14 {
  /* position: absolute; */
  top: 199px;
  left: 100px;

  font-weight: 600;
  color: #0139af;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-15 {
  left: 20px;
  font-weight: 600;
  color: #0139af;
  /* position: absolute; */
  top: 145px;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .group-2 {
  /* position: absolute; */
  width: 112px;
  height: 51px;
  top: 74px;
  left: 89px;
}

.ERECAP-landing-page .overlap-group-3 {
  position: relative;
  width: 113px;
  height: 52px;
  top: -1px;
  left: -1px;
}

.ERECAP-landing-page .ellipse {
  /* position: absolute; */
  width: 16px;
  height: 15px;
  top: 22px;
  left: 94px;
  background-color: #0139af;
  border-radius: 8.11px / 7.44px;
  border: 1.35px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .ellipse-2 {
  /* position: absolute; */
  width: 16px;
  height: 15px;
  top: 22px;
  left: 3px;
  background-color: #0139af;
  border-radius: 8.11px / 7.44px;
  border: 1.35px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .subtract {
  /* position: absolute; */
  width: 22px;
  height: 16px;
  top: 36px;
  left: 91px;
}

.ERECAP-landing-page .subtract-2 {
  /* position: absolute; */
  width: 22px;
  height: 16px;
  top: 36px;
  left: 0;
}

.ERECAP-landing-page .ellipse-3 {
  /* position: absolute; */
  width: 20px;
  height: 20px;
  top: 13px;
  left: 22px;
  background-color: #0139af;
  border-radius: 10.14px / 9.8px;
  border: 1.35px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .ellipse-4 {
  /* position: absolute; */
  width: 20px;
  height: 20px;
  top: 13px;
  left: 71px;
  background-color: #0139af;
  border-radius: 10.14px / 9.8px;
  border: 1.35px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .ellipse-5 {
  /* position: absolute; */
  width: 26px;
  height: 26px;
  top: 0;
  left: 44px;
  background-color: #0139af;
  border-radius: 12.84px;
  border: 1.35px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .subtract-3 {
  /* position: absolute; */
  width: 28px;
  height: 21px;
  top: 31px;
  left: 67px;
}

.ERECAP-landing-page .subtract-4 {
  /* position: absolute; */
  width: 28px;
  height: 21px;
  top: 31px;
  left: 18px;
}

.ERECAP-landing-page .subtract-5 {
  /* position: absolute; */
  width: 37px;
  height: 28px;
  top: 25px;
  left: 38px;
}

.ERECAP-landing-page .frame-20 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 120px;
  left: 790px;
  border: 0.68px solid;
  border-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ERECAP-landing-page .overlap-2 {
  /* position: absolute; */
  width: 98px;
  height: 130px;
  top: 69px;
  left: 97px;
}

.ERECAP-landing-page .text-wrapper-16 {
  /* position: absolute; */
  top: 76px;
  left: 0;

  font-weight: 600;
  color: #0139af;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .group-3 {
  /* position: absolute; */
  width: 45px;
  height: 64px;
  top: 0;
  left: 28px;
}

.ERECAP-landing-page .rectangle-3 {
  /* position: absolute; */
  width: 6px;
  height: 47px;
  top: -4px;
  left: 46px;
  background-color: #0139af;
  transform: rotate(-90.00deg);
}

.ERECAP-landing-page .rectangle-4 {
  /* position: absolute; */
  width: 6px;
  height: 47px;
  top: 30px;
  left: 46px;
  background-color: #0139af;
  transform: rotate(-90.00deg);
}

.ERECAP-landing-page .rectangle-5 {
  /* position: absolute; */
  width: 6px;
  height: 54px;
  top: 33px;
  left: 46px;
  background-color: #0139af;
  transform: rotate(-90.00deg);
}

.ERECAP-landing-page .rectangle-6 {
  /* position: absolute; */
  width: 6px;
  height: 26px;
  top: 24px;
  left: 29px;
  background-color: #0139af;
}

.ERECAP-landing-page .rectangle-7 {
  /* position: absolute; */
  width: 5px;
  height: 26px;
  top: 24px;
  left: 41px;
  background-color: #0139af;
}

.ERECAP-landing-page .rectangle-8 {
  /* position: absolute; */
  width: 5px;
  height: 26px;
  top: 24px;
  left: 51px;
  background-color: #0139af;
}

.ERECAP-landing-page .rectangle-9 {
  /* position: absolute; */
  width: 6px;
  height: 26px;
  top: 24px;
  left: 62px;
  background-color: #0139af;
}

.ERECAP-landing-page .polygon {
  /* position: absolute; */
  width: 51px;
  height: 16px;
  top: 0;
  left: 23px;
}

.ERECAP-landing-page .text-wrapper-17 {
  /* position: absolute; */
  top: 199px;
  left: 71px;

  font-weight: 600;
  color: #0139af;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .frame-21 {
  display: inline-flex;
  align-items: center;
  /* position: absolute; */
  top: 238px;
  left: 34px;
}

.ERECAP-landing-page .frame-22 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.76px;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border: 0.68px solid;
  border-color: #0139af;
}

.ERECAP-landing-page .text-wrapper-18 {
  position: relative;
  width: fit-content;
  margin-top: -0.34px;

  font-weight: 600;
  color: #0139af;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.80px;
  line-height: 20px;
  white-space: nowrap;
}

.ERECAP-landing-page .frame-23 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.76px;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  border: 0.68px solid;
  border-color: #0139af;
}

.ERECAP-landing-page .frame-24 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.76px;
  padding: 6.08px 9.46px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  border: 0.68px solid;
  border-color: #0139af;
}

.ERECAP-landing-page .frame-25 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 423px;
  left: 1093px;
  border: 0.68px solid;
  border-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ERECAP-landing-page .text-wrapper-19 {
  /* position: absolute; */
  top: 199px;
  left: 117px;

  font-weight: 600;
  color: #0139af;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-20 {
  /* position: absolute; */
  top: 145px;
  left: 72px;

  font-weight: 600;
  color: #0139af;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .frame-26 {
  /* position: absolute; */
  width: 72px;
  height: 24px;
  top: 230px;
  left: 109px;
}

.ERECAP-landing-page .frame-27 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.76px;
  padding: 6.08px 9.46px;
  position: relative;
  top: -1px;
  left: -76px;
  border: 0.68px solid;
  border-color: #0139af;
}

.ERECAP-landing-page .overlap-wrapper {
  /* position: absolute; */
  width: 64px;
  height: 47px;
  top: 74px;
  left: 113px;
}

.ERECAP-landing-page .overlap-3 {
  position: relative;
  height: 47px;
}

.ERECAP-landing-page .rectangle-10 {
  /* position: absolute; */
  width: 64px;
  height: 47px;
  top: 0;
  left: 0;
  background-color: #0139af;
  transform: rotate(-180.00deg);
}

.ERECAP-landing-page .group-wrapper {
  /* position: absolute; */
  width: 20px;
  height: 24px;
  top: 13px;
  left: 39px;
  background-color: #ffffff;
}

.ERECAP-landing-page .group-4 {
  position: relative;
  width: 15px;
  height: 20px;
  top: 3px;
  left: 3px;
}

.ERECAP-landing-page .overlap-group-4 {
  position: relative;
  width: 16px;
  height: 22px;
  top: -1px;
  left: -1px;
}

.ERECAP-landing-page .subtract-6 {
  /* position: absolute; */
  width: 16px;
  height: 12px;
  top: 10px;
  left: 0;
}

.ERECAP-landing-page .ellipse-6 {
  /* position: absolute; */
  width: 11px;
  height: 11px;
  top: 0;
  left: 2px;
  background-color: #0139af;
  border-radius: 5.73px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .rectangle-11 {
  /* position: absolute; */
  width: 20px;
  height: 5px;
  top: 13px;
  left: 5px;
  background-color: #ffffff;
}

.ERECAP-landing-page .rectangle-12 {
  /* position: absolute; */
  width: 25px;
  height: 3px;
  top: 3px;
  left: 19px;
  background-color: #ffffff;
}

.ERECAP-landing-page .rectangle-13 {
  /* position: absolute; */
  width: 20px;
  height: 5px;
  top: 20px;
  left: 5px;
  background-color: #ffffff;
}

.ERECAP-landing-page .rectangle-14 {
  /* position: absolute; */
  width: 20px;
  height: 5px;
  top: 26px;
  left: 5px;
  background-color: #ffffff;
}

.ERECAP-landing-page .frame-28 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 120px;
  left: 1093px;
  background-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ERECAP-landing-page .text-wrapper-21 {
  /* position: absolute; */
  top: 145px;
  left: 56px;

  font-weight: 600;
  color: #ffffff;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-22 {
  /* position: absolute; */
  top: 199px;
  left: 111px;

  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .overlap-4 {
  /* position: absolute; */
  width: 57px;
  height: 60px;
  top: 71px;
  left: 116px;
}

.ERECAP-landing-page .rectangle-15 {
  /* position: absolute; */
  width: 10px;
  height: 57px;
  top: -13px;
  left: 23px;
  border: 0.68px solid;
  border-color: #ffffff;
  transform: rotate(-90.00deg);
}

.ERECAP-landing-page .rectangle-16 {
  /* position: absolute; */
  width: 41px;
  height: 53px;
  top: 14px;
  left: 8px;
  border: 0.68px solid;
  border-color: #ffffff;
  transform: rotate(-90.00deg);
}

.ERECAP-landing-page .union-3 {
  /* position: absolute; */
  width: 55px;
  height: 10px;
  top: 0;
  left: 1px;
}

.ERECAP-landing-page .rectangle-17 {
  /* position: absolute; */
  width: 24px;
  height: 3px;
  top: 3px;
  left: 16px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .line-4 {
  /* position: absolute; */
  width: 1px;
  height: 21px;
  top: 34px;
  left: 8px;
}

.ERECAP-landing-page .line-5 {
  /* position: absolute; */
  width: 1px;
  height: 14px;
  top: 41px;
  left: 11px;
}

.ERECAP-landing-page .frame-29 {
  /* position: absolute; */
  width: 320px;
  height: 320px;
  top: 423px;
  left: 790px;
  background-color: #0139af;
  text-align: center;
  margin: 5px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ERECAP-landing-page .text-wrapper-23 {
  /* position: absolute; */
  top: 199px;
  left: 77px;

  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.30px;
  line-height: 18.2px;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-24 {
  left: 42px;

  font-weight: 600;
  color: #ffffff;
  /* position: absolute; */
  top: 145px;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.62px;
  line-height: 54px;
  white-space: nowrap;
}

.ERECAP-landing-page .overlap-5 {
  /* position: absolute; */
  width: 47px;
  height: 64px;
  top: 69px;
  left: 121px;
}

.ERECAP-landing-page .group-5 {
  /* position: absolute; */
  width: 47px;
  height: 64px;
  top: 0;
  left: 0;
}

.ERECAP-landing-page .overlap-group-5 {
  position: relative;
  height: 64px;
}

.ERECAP-landing-page .rectangle-18 {
  /* position: absolute; */
  width: 14px;
  height: 61px;
  top: 3px;
  left: 0;
}

.ERECAP-landing-page .rectangle-19 {
  /* position: absolute; */
  width: 14px;
  height: 61px;
  top: 0;
  left: 33px;
}

.ERECAP-landing-page .rectangle-20 {
  /* position: absolute; */
  width: 20px;
  height: 57px;
  top: 3px;
  left: 14px;
}

.ERECAP-landing-page .union-4 {
  /* position: absolute; */
  width: 7px;
  height: 11px;
  top: 23px;
  left: 20px;
}

.ERECAP-landing-page .ellipse-7 {
  /* position: absolute; */
  width: 3px;
  height: 3px;
  top: 26px;
  left: 22px;
  border-radius: 1.35px;
  border: 0.68px solid;
  border-color: #ffffff;
}

.ERECAP-landing-page .line-6 {
  /* position: absolute; */
  width: 16px;
  height: 5px;
  top: 53px;
  left: 15px;
}

.ERECAP-landing-page .line-7 {
  /* position: absolute; */
  width: 16px;
  height: 5px;
  top: 50px;
  left: 15px;
}

.ERECAP-landing-page .line-8 {
  /* position: absolute; */
  width: 16px;
  height: 5px;
  top: 7px;
  left: 15px;
}

.ERECAP-landing-page .line-9 {
  /* position: absolute; */
  width: 1px;
  height: 47px;
  top: 13px;
  left: 2px;
}

.ERECAP-landing-page .line-10 {
  /* position: absolute; */
  width: 1px;
  height: 47px;
  top: 4px;
  left: 44px;
}

.left-side {
  margin-right: 30px;
}

.right-side {
  padding-left: 30px;
  width: 50%;
  text-align: left;
  border-left: solid 0.5px #0139af;
}

.left-text {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.right-frames {
  /* width: 70%; */
  margin-left: 50px;
  /* margin: 100vh 0 */
  /* default for smaller screens */
}

.top-row,
.bottom-row {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.top-row.show {
  opacity: 1;
  transform: translateY(0);
}

.bottom-row.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: initial hidden class */
.hidden {
  opacity: 0;
}

@media (min-width: 1441px) {
  .right-frames {
    margin-left: 100px;
  }
}

.ERECAP-landing-page .indonesia-the-world {
  /* position: absolute; */
  top: 306px;
  left: 60px;
  font-weight: 500;
  color: #0139af;
  font-size: 20px;
  letter-spacing: 0.60px;
  line-height: 28.0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ERECAP-landing-page .one-of-many-large {
  /* position: absolute; */
  top: 206px;
  left: 60px;
  font-weight: 500;
  color: #0139af;
  font-size: 14px;
  letter-spacing: 1.40px;
  line-height: 19.6px;
  padding-bottom: 20px;
}

.ERECAP-landing-page .a-real-world-test {
  /* position: absolute; */
  top: 119px;
  left: 60px;
  font-weight: 600;
  color: #0139af;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 36.0px;
  padding-bottom: 20px;
}

.ERECAP-landing-page .line-11 {
  background-color: #0139AF;
  border: none;
  /* position: absolute; */
  height: 0.5px;
  top: 276px;
  left: 60px;
  object-fit: cover;
  margin-left: 20px;
  height: 100%;
  width: 1px;
}

@media (min-width: 768px) {

  .ERECAP-landing-page .text-wrapper-11,
  .ERECAP-landing-page .text-wrapper-15,
  .ERECAP-landing-page .text-wrapper-21,
  .ERECAP-landing-page .text-wrapper-24,
  .ERECAP-landing-page .text-wrapper-20 {
    font-size: 40px;
  }

  .ERECAP-landing-page .frame-16 {
    padding: 30px;
  }

  .container {
    flex-direction: column;
  }

  .left-text {
    width: 100%;
  }

  .right-frames {
    width: 100%;
    margin-left: 0;
  }

  .top-row {
    align-items: center;
  }

  .bottom-row {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .ERECAP-landing-page .frame-16 {
    padding: 30px;
  }

  .container {
    flex-direction: column;
  }

  .left-text {
    width: 100%;
    display: block;
  }

  .right-side {
    width: 90%;
  }

  .right-frames {
    width: 90%;
    margin-left: 0;
  }

  .top-row {
    flex-direction: column;
    align-items: center;
  }

  .bottom-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .top-row,
  .bottom-row {
    opacity: 1;
  }
}

/* Why It Is Better Section */

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

.ERECAP-landing-page .frame-30 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  gap: 60px;
  padding: 50px 60px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f7f7f7;
  min-height: 100vh;
}

.ERECAP-landing-page .text-wrapper-25 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  margin-bottom: 50px;
  font-weight: 500;
  color: #000000;
  font-size: 60px;
  text-align: center;
  letter-spacing: 0;
  line-height: 72.0px;
  margin-bottom: 70px;
}

.ERECAP-landing-page .frame-9 {
  width: 100%;
  margin: 0 auto;
}

.ERECAP-landing-page .frame-31 {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  padding-bottom: 20px;
}

.table-head {
  display: inline-flex;
  align-items: center;
  gap: 96px;
  position: relative;
  flex: 0 0 auto;
  width: 80%;
}

.ERECAP-landing-page .frame-32 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 50%;
}

.ERECAP-landing-page .text-wrapper-26 {
  position: relative;
  width: 350px;
  margin-top: -1.00px;
  font-weight: 600;
  color: #0139af;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 28.0px;
  margin-bottom: 10px;
}

.ERECAP-landing-page .text-wrapper-27 {
  position: relative;
  width: 350px;
  margin-top: -1.00px;
  font-weight: 600;
  color: #000000;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 28.0px;
}

.ERECAP-landing-page .frame-33,
.ERECAP-landing-page .frame-38 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ERECAP-landing-page .frame-33.animate,
.ERECAP-landing-page .frame-38.animate {
  opacity: 1;
  transform: translateY(0);
}

.ERECAP-landing-page .line-12 {
  background-color: #0139AF;
  border: none;
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: -1.00px;
  object-fit: cover;
}

.ERECAP-landing-page .frame-34 {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  align-items: flex-start;
}

.ERECAP-landing-page .frame-35 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
  width: 20%;
}

.ERECAP-landing-page .text-wrapper-28 {
  position: relative;
  margin-right: 30px;
  margin-top: -1.00px;
  font-weight: 600;
  color: #000000;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 28.0px;
}

.ERECAP-landing-page .text-wrapper-29 {
  position: relative;
  width: 203px;
  margin-top: -1.00px;
  font-weight: 500;
  color: #000000;
  font-size: 35px;
  letter-spacing: 0;
  line-height: 36.0px;
}

.ERECAP-landing-page .frame-36 {
  display: inline-flex;
  align-items: flex-start;
  gap: 96px;
  position: relative;
  flex: 0 0 auto;
  width: 80%;
}

.ERECAP-landing-page .frame-37 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 50%;
  padding-left: 30px;
}

.ERECAP-landing-page .text-wrapper-30 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 500;
  color: #0139af;
  font-size: 28px;
  letter-spacing: 0.48px;
  line-height: 33.4px;
}

.ERECAP-landing-page .text-wrapper-31 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 500;
  color: #5a5a5a;
  font-size: 28px;
  letter-spacing: 0.48px;
  line-height: 33.4px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .frame-9 {
    width: 95%;
  }

  .ERECAP-landing-page .frame-30 {
    padding: 40px;
  }

  .ERECAP-landing-page .frame-36 {
    gap: 30px;
  }

  .ERECAP-landing-page .text-wrapper-28 {
    margin-right: 0;
  }

  .text-wrapper-29,
  .text-wrapper-30,
  .text-wrapper-26,
  .text-wrapper-27 {
    font-size: 14px !important;
  }

  .text-wrapper-29 {
    margin-right: 10px;
  }
}

/* Mobile version */

.table-header {
  margin-bottom: 50px;
  font-size: 40px;
  line-height: 44px;
  text-align: center;
}

.accordion {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.accordion-header {
  display: flex;
  padding: 16px;
  background-color: white;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  align-items: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin-right: 12px;
  font-weight: bold;
  color: #444;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  max-height: 1000px;
  border-top: 1px solid #eee;
}

.method {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.method:last-child {
  border-bottom: none;
}

.method-header {
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.electronic {
  color: #1a73e8;
}

.electronic .indicator {
  background-color: #1a73e8;
}

.manual {
  color: #5f6368;
}

.manual .indicator {
  background-color: #5f6368;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.method-content {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.caret {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.open .caret {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}

/* How It Works Section */
/* How It Works Section */
.hiw-full-screen-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 60px 0;
}

.hiw-container {
  width: 90%;
  margin: 0 auto;
}

.hiw-title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 120%;
}

.hiw-video-container {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiw-process-video,
.hiw-process-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Desktop vs Mobile display */
.hiw-desktop-only {
  display: block;
}

.hiw-mobile-only {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hiw-full-screen-section {
    min-height: auto;
    padding: 40px 0;
  }

  .hiw-title {
    font-size: 22px;
  }

  .hiw-desktop-only {
    display: none;
  }

  .hiw-mobile-only {
    display: block;
  }

  .hiw-video-container {
    height: auto;
  }

  .hiw-process-image {
    max-width: 100%;
    height: auto;
  }
}


/* Media Section */
.ERECAP-landing-page .frame-44 {
  position: relative;
  align-self: stretch;
  width: 80vw;
  height: auto;
  min-height: auto;
  background-color: #ffffff;
  padding: 0 60px;
}

.ERECAP-landing-page .text-wrapper-46 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  font-weight: 500;
  color: #000000;
  font-size: 60px;
  text-align: center;
  line-height: 60px;
  letter-spacing: 0;
}

/* Container for the video */
.video-container {
  width: 100%;
  /* max-width: 960px; */
  margin: 50px auto;
}

#video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (9 ÷ 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
  background-color: #000;
  /* Optional: black background while video loads */
}

/* Make iframe fill the container */
#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  /* Optional: rounded corners */
}

/* Responsive Styles */

@media (max-width: 1024px) {
  .ERECAP-landing-page .frame-44 {
    padding: 0 20px;
    width: 90vw;
    min-height: auto;
  }

  .ERECAP-landing-page .text-wrapper-46 {
    font-size: 40px;
    line-height: 44px;
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .ERECAP-landing-page .frame-44 {
    padding: 0 20px;
    width: 90vw;
    min-height: auto;
  }

  .text-wrapper-47,
  .text-wrapper-48 {
    font-size: 18px;
  }

  .introduction,
  .introduction-2 {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Partnership Section */

.ERECAP-landing-page .frame-45 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 120px 0px 120px 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: -14.00px;
}

.ERECAP-landing-page .text-wrapper-49 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;

  font-weight: 600;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.ERECAP-landing-page .frame-46 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0px 112px;
  position: relative;
}

.logos {
  margin-right: 50px;
}

.ERECAP-landing-page .image-2 {
  position: relative;
  width: 124px;
  height: 100px;
  margin-right: 50px;

}

.ERECAP-landing-page .image-3 {
  position: relative;
  width: 213px;
  height: 100px;
}

.ERECAP-landing-page .line-31 {
  background: rgba(0, 0, 0, 0.70);
  height: 216px;
  position: relative;
  width: 1px;
  object-fit: cover;
}

.ERECAP-landing-page .network-for-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 50px;
  position: relative;
  flex: 0 0 auto;
}

.ERECAP-landing-page .network-for {
  position: relative;
  width: 643px;
  margin-top: -1.00px;
  font-weight: 500;
  color: #000000;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 36.0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ERECAP-landing-page .frame-46 {
    padding: 0 50px;
  }

  .logos {
    width: 30%;

  }

  .ERECAP-landing-page .network-for-wrapper {
    width: 70%
  }
}

@media (max-width: 768px) {
  .ERECAP-landing-page .frame-45 {
    padding: 50px 0;
    text-align: left;
  }

  .ERECAP-landing-page .frame-46 {
    flex-direction: column;
    padding: 0 50px;
  }

  .ERECAP-landing-page .line-31 {
    display: none;
  }

  .ERECAP-landing-page .network-for-wrapper {
    padding: 0;
  }

  .logos {
    margin-bottom: 40px;
  }

  .ERECAP-landing-page .image-2,
  .ERECAP-landing-page .image-3 {
    margin-bottom: 40px;
  }

  .ERECAP-landing-page .network-for {
    width: 100%;
  }
}

/* Contact Section */

.ERECAP-landing-page .frame-47 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 100px 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #0139af;
}

.ERECAP-landing-page .frame-48 {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
}

.ERECAP-landing-page .ready-to-make-an {
  color: #FFF;
  text-align: center;
  font-size: 75px;
  font-style: normal;
  line-height: 75px;
  /* 100% */
}

.ERECAP-landing-page .ready-to-make-an-2 {
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 36px */
  letter-spacing: 0.9px;
}

.ERECAP-landing-page .frame-49 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0px 0px 4px #0000001a;
}

.ERECAP-landing-page .text-wrapper-50 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 500;
  color: #004587;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: normal;
  white-space: nowrap;
}

.ERECAP-landing-page .vector {
  position: relative;
  width: 9.07px;
  height: 17.97px;
  margin-top: -0.49px;
  margin-bottom: -0.49px;
  margin-right: -0.09px;
}

@media (max-width: 768px) {

  .ERECAP-landing-page .frame-47 {
    padding: 50px 30px;
  }

  .ERECAP-landing-page .text-wrapper-50 {
    font-size: 11px;
  }

  .ERECAP-landing-page .ready-to-make-an {
    font-size: 60px;
    margin-bottom: 20px;
  }
}

/* Footer Section */

.ERECAP-landing-page .frame-50 {
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #f0f0f0;
  padding: 50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.ERECAP-landing-page .frame-51 {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  /* position: absolute; */
  top: 60px;
  left: 1234px;
  background-color: #0139af;
  border-radius: 25px;
}

.ERECAP-landing-page .text-wrapper-51 {
  position: relative;
  width: fit-content;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: normal;
  white-space: nowrap;
}

.ERECAP-landing-page .copyright {
  /* position: absolute; */
  text-align: center;
  margin-top: 30px;
  top: 169px;
  left: 594px;

  font-weight: 500;
  color: #004587;
  font-size: 15px;
  letter-spacing: 0.60px;
  line-height: normal;
  white-space: nowrap;
}

.ERECAP-landing-page .text-wrapper-52 {
  color: #0139af;
  letter-spacing: 0.09px;
}

.ERECAP-landing-page .line-32 {
  background-color: #0139af;
  border: none;
  /* position: absolute; */
  width: 100%;
  height: 0.5px;
  top: 139px;
  left: 60px;
  object-fit: cover;
}

.ERECAP-landing-page .frame-52 {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 3.19px;
  padding: 9.57px;
  /* position: absolute; */
  top: 60px;
  left: 60px;
  background-color: #000000;
}

.ERECAP-landing-page .text-wrapper-53 {
  position: relative;
  width: 68.01px;
  margin-top: -0.39px;
  font-weight: 600;
  color: #ffffff;
  font-size: 10.2px;
  letter-spacing: 0;
  line-height: 10.2px;
}