@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --purple: #5B118B;
  --violet: #5B118B;
  --yellow: #ffba07;
  --orange: #FBDD01;
  --ink: #181722;
  --muted: #6f6b79;
  --cream: #fbf8fb;
  --white: #ffffff;
  --brand-gradient: linear-gradient(90deg, #9000B9 0%, #841386 16%, #711389 32%, #5D128B 48%, #330E86 64%, #330E86 80%, #491186 100%);
}

* {
  box-sizing: border-box;
}
/* Prevent horizontal overflow */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero banner section */
.hero-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Banner image */
.hero-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Mobile devices */
@media (max-width: 767px) {
    .hero-banner {
        width: 100%;
        overflow: hidden;
    }

    .hero-banner img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
    }
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: 0.55s;
}
.site-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.site-loader img {
  width: 80px;
}
.loader-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid #eee;
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  z-index: 9998;
}
.site-header {
  background: rgba(255, 255, 255, 0.94);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.35s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(31, 20, 43, 0.08);
  padding: 20px 0;
}
.header-inner {
  display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:72px;
    gap:15px;
}
.brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.brand img {
  height: 100px;
  width: auto;
}
.brand-mobile,
.mobile-menu {
  display: none;
}
.menu-toggle {
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 10px;
}
.menu-toggle span {
  height: 2px;
  background: #000;
  border-radius: 5px;
  transition: 0.3s;
}
.site-header.scrolled .menu-toggle span {
  background: var(--ink);
}
.menu-toggle span:nth-child(2) {
  width: 70%;
}
.register-btn,
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(240, 74, 62, 0.25);
  transition: 0.3s;
}
.register-btn:hover,
.btn-main:hover {
  transform: translateY(-3px);
  background: var(--purple);
  color: #fff;
}
.offcanvas-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(430px, 88vw);
  background: var(--ink);
  z-index: 2000;
  padding: 45px;
  transform: translateX(-105%);
  transition: 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
}
.offcanvas-nav.open {
  transform: none;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1990;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}
.close-nav {
  align-self: flex-end;
  border: 0;
  background: none;
  color: #fff;
  font-size: 30px;
}
.nav-logo img {
  max-width: 250px;
  margin: 10px 0 35px;
}
.offcanvas-nav nav {
  display: flex;
  flex-direction: column;
}
.offcanvas-nav nav a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s;
}
.offcanvas-nav nav a:hover {
  color: #ffdb4d;
  padding-left: 8px;
}
.mobile-register {
  margin-top: 28px;
  width: max-content;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 14, 34, 0.88) 0%,
    rgba(49, 28, 78, 0.56) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 70px;
}
.eyebrow,
.section-head span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #ffcf55;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 900px;
  margin: 18px 0;
}
.hero h1 span {
  color: #ffcf55;
}
.hero-copy {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}
.btn-play i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--purple);
}
.hero-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120%;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 13px;
  text-align: center;
  transform: rotate(-1.5deg) translateY(10px);
  z-index: 3;
}
.counter-section {
  padding: 58px 0;
  background: #fff;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.counter-item {
  text-align: center;
  padding: 12px 20px;
  position: relative;
}
.counter-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background: #d8d2da;
}
.counter-item strong {
  display: block;
  color: var(--orange);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
}
.counter-item strong:after {
  content: "+";
}
.counter-item span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pattern {
  background-color: var(--white);
  /* background-image: radial-gradient(
    rgba(124, 35, 138, 0.06) 1px,
    transparent 1px
  ); */
  background-size: 18px 18px;
}
.about-section {
  padding: 110px 0;
}
.about-section span {
  color:var(--violet);
  font-weight : bold;
}
.section-head {
  text-align: center;
  margin-bottom: 55px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}
.section-head span {
  color: var(--orange);
}
.about-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 36px;
  max-width: 1020px;
  margin: auto;
}
.about-row.reverse {
  direction: rtl;
}
.about-row.reverse p {
  direction: ltr;
}
.about-number {
  font-size: 4.8rem;
  font-weight: 600;
  color: rgba(124, 35, 138, 0.12);
  line-height: 1;
}
.about-row p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.vmg-section {
  padding: 100px 0;
  background: #fff;
}
.vmg-wrap {
  box-shadow: 0 30px 80px rgba(30, 18, 40, 0.12);
}
.vmg-wrap article {
  height: 100%;
  padding: 55px 38px;
  background: #fff;
  transition: 0.35s;
}
.vmg-wrap article.featured {
  background: var(--purple);
  color: #fff;
  transform: scale(1.04);
  position: relative;
  z-index: 2;
}
.vmg-wrap article:hover {
  transform: scale(1.04);
}
.vmg-wrap article.featured:hover {
  transform: scale(1.08);
}
.vmg-wrap span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
}
.vmg-wrap h3 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 14px 0;
}
.vmg-wrap p {
  line-height: 1.8;
  color: inherit;
  opacity: 0.8;
}
.race-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.race-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(53, 18, 77, 0.86), rgba(53, 18, 77, 0.86)),
    url("../images/erode-marathon-1.webp") center/cover fixed;
}
.section-head.light {
  color: #fff;
}
.race-card {
  position: relative;
  display: block;
  height: 430px;
  overflow: hidden;
  border-radius: 4px;
}
.race-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.65s;
}
.race-card:hover img {
  transform: scale(1.1);
}
.race-overlay {
  position: absolute;
  inset: 0;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(transparent 20%, rgba(16, 8, 26, 0.9));
  transition: 0.35s;
}
.race-card:hover .race-overlay {
  background: linear-gradient(rgba(124, 35, 138, 0.35), rgba(16, 8, 26, 0.95));
}
.race-overlay small {
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.race-overlay h3 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 8px 0 18px;
}
.race-overlay span {
  font-weight: 600;
}
.testimonial-section {
  padding: 110px 0;
}
.testimonialSwiper {
  padding: 15px 10px 55px;
}
.testimonialSwiper article {
  background: #fff;
  padding: 38px;
  min-height: 300px;
  border-bottom: 4px solid var(--purple);
  box-shadow: 0 16px 45px rgba(31, 18, 41, 0.09);
}
.testimonialSwiper p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.testimonialSwiper h4 {
  font-weight: 600;
  margin-top: 25px;
}
.stars {
  color: #ffb400;
  letter-spacing: 3px;
}
.swiper-pagination-bullet-active {
  background: var(--purple);
}
/* =====================================================
   YOUTUBE VIDEO SECTION START
===================================================== */

.video-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(53, 18, 77, 0.9),
      rgba(53, 18, 77, 0.9)
    ),
    url("../images/erode-marathon-6.webp") center / cover no-repeat;
}

/* Section heading */
.video-section .section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
  text-align: center;
}

.video-section .section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Five vertical cards in one row */
.video-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 270px));
  justify-content: center;
  gap: 12px;

  width: 100%;
  margin: 0 auto;
}

/* Vertical video card */
.video-card {
  position: relative;

  width: 100%;
  max-width: 270px;
  aspect-ratio: 270 / 480;

  padding: 0;
  overflow: hidden;

  border: 0;
  border-radius: 8px;

  background: #111111;
  cursor: pointer;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Show portrait image properly */
.video-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.5s ease,
    filter 0.35s ease;
}

/* Hover dark overlay */
.video-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: linear-gradient(
    180deg,
    rgba(20, 11, 30, 0.08) 0%,
    rgba(20, 11, 30, 0.35) 52%,
    rgba(20, 11, 30, 0.8) 100%
  );

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

/* Play button */
.video-play-button {
  width: 70px;
  height: 70px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;
  color: var(--orange, #f04a3e);

  font-size: 22px;

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);

  transform: translateY(15px) scale(0.85);

  transition:
    transform 0.35s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.video-play-button i {
  margin-left: 4px;
}

/* Watch video text */
.video-watch-text {
  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.12em;

  transform: translateY(12px);

  transition: transform 0.35s ease;
}

/* Card hover */
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
}

.video-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.72);
}

.video-card:hover .video-hover-overlay,
.video-card:focus-visible .video-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.video-card:hover .video-play-button,
.video-card:focus-visible .video-play-button {
  transform: translateY(0) scale(1);
}

.video-card:hover .video-watch-text,
.video-card:focus-visible .video-watch-text {
  transform: translateY(0);
}

.video-card:hover .video-play-button {
  background: var(--orange, #f04a3e);
  color: #ffffff;
}

/* Keyboard focus */
.video-card:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

/* =====================================================
   VIDEO MODAL
===================================================== */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(8, 5, 12, 0.95);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-content {
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 14px;

  background: #000000;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.video-modal iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: #ffffff;
  color: #181722;

  font-size: 20px;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.video-modal-close:hover {
  transform: rotate(90deg);

  background: var(--orange, #f04a3e);
  color: #ffffff;
}

/* =====================================================
   LARGE LAPTOP
===================================================== */

@media (max-width: 1399.98px) {
  .video-grid {
    grid-template-columns: repeat(5, minmax(0, 235px));
    gap: 10px;
  }

  .video-card {
    max-width: 235px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 270px));
    gap: 16px;
  }

  .video-card {
    max-width: 270px;
  }
}

/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 767.98px) {
  .video-section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .video-section .section-head {
    margin-bottom: 35px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 12px;
  }

  .video-card {
    max-width: 240px;
  }

  .video-play-button {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }
}

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

@media (max-width: 575.98px) {
  .video-section {
    padding: 60px 0;
  }

  .video-grid {
    grid-template-columns: minmax(0, 270px);
    gap: 18px;
  }

  .video-card {
    max-width: 270px;
    margin: 0 auto;
  }

  /* Keep play button visible on touch devices */
  .video-hover-overlay {
    opacity: 1;
    visibility: visible;

    background: linear-gradient(
      180deg,
      transparent 45%,
      rgba(20, 11, 30, 0.68) 100%
    );
  }

  .video-play-button {
    width: 56px;
    height: 56px;

    font-size: 18px;

    transform: none;
  }

  .video-watch-text {
    display: none;
  }

  .video-modal {
    padding: 15px;
  }

  .video-modal-content {
    width: 100%;
    border-radius: 10px;
  }

  .video-modal-close {
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    font-size: 18px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .video-card,
  .video-card img,
  .video-hover-overlay,
  .video-play-button,
  .video-watch-text,
  .video-modal,
  .video-modal-close {
    transition: none;
  }
}

/* =====================================================
   YOUTUBE VIDEO SECTION END
===================================================== */
.gallery-section {
  padding: 110px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid button {
  border: 0;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ddd;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-grid button:hover img {
  transform: scale(1.1);
}
.sponsor-section {
  padding: 105px 0;
}
.sponsor-panel {
  background: #fff;
  padding: 26px;
  /* box-shadow: 0 20px 60px rgba(40, 20, 50, 0.08); */
}
.sponsor-panel img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
}
footer {
  background: var(--violet);
  color: #fff;
  padding: 85px 0 25px;
}
.footer-logo {
  max-width: 260px;
  margin-bottom: 25px;
  
}

.footer-main p,
.footer-main a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  font-size: 17px;
}
.footer-main h5 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom a {
  color: #fff;
}
/* ===========================
   FOOTER RESPONSIVE FIX
=========================== */

.footer-main{
    align-items:flex-start;
}

.footer-col{
    margin-bottom:30px;
}

.footer-logo{
    display:block;
    max-width:220px;
    margin:0 auto 25px;
    padding:10px;
    background:#fff;
    border-radius:10px;
}

.footer-main h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
}

.footer-main p{
    line-height:1.9;
    word-break:break-word;
}

.footer-main a{
    word-break:break-word;
    transition:.3s;
}

.footer-main a:hover{
    color:#fff;
    padding-left:5px;
}

.socials{
    justify-content:flex-start;
}

.socials a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
}

.socials a:hover{
    background:var(--orange);
    border-color:var(--orange);
    color:#fff;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

/* Tablet */

@media (max-width:991px){

.footer-logo{
    max-width:200px;
}

.footer-bottom{
    justify-content:center;
    text-align:center;
}

.footer-bottom span{
    width:100%;
}

}

/* Mobile */

@media (max-width:767px){

footer{
    padding:60px 0 25px;
}

.footer-main{
    text-align:center;
}

.footer-main .col-6{
    width:100%;
}

.footer-logo{
    max-width:180px;
    margin:0 auto 20px;
}

.footer-main p,
.footer-main a{
    text-align:center;
}

.socials{
    justify-content:center;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:12px;
}

.footer-bottom span{
    width:100%;
}

}

/* Small Mobile */

@media (max-width:480px){

.footer-logo{
    max-width:160px;
}

.footer-main h5{
    font-size:18px;
}

.footer-main p,
.footer-main a{
    font-size:15px;
}

.socials a{
    width:42px;
    height:42px;
}

.footer-bottom{
    font-size:14px;
}

}
.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 12, 0.94);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.show,
.video-modal.show {
  display: flex;
}
.lightbox img {
  max-width: 85vw;
  max-height: 82vh;
}
.lightbox button,
.video-modal button {
  position: absolute;
  border: 0;
  background: #fff;
  color: #111;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.lb-close,
.video-modal button {
  top: 25px;
  right: 25px;
}
.lb-prev {
  left: 25px;
}
.lb-next {
  right: 25px;
}
.video-modal iframe {
  width: min(1000px, 90vw);
  height: min(562px, 55vw);
  border: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 991px) {
  .brand-center,
  .desktop-menu,
  .site-header .d-lg-inline-flex {
    display: none !important;
  }
  .brand-mobile,
  .mobile-menu {
    display: block;
  }
  .brand-mobile img {
    height: 55px;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.94);
    padding: 8px 0;
  }
  .mobile-menu span {
    background: var(--ink);
  }
  .hero {
    min-height: 88vh;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item:nth-child(2):after,
  .counter-item:nth-child(4):after {
    display: none;
  }
  .counter-item {
    border-bottom: 1px solid #eee;
    padding: 25px 10px;
  }
  .counter-item:last-child {
    grid-column: 1/-1;
  }
  .vmg-wrap article.featured {
    transform: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .header-inner {
    height: 60px;
  }
  .brand-mobile img {
    height: 45px;
    max-width: 210px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .hero-copy {
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .counter-item:after {
    display: none !important;
  }
  .counter-item:last-child {
    grid-column: auto;
  }
  .about-section,
  .vmg-section,
  .testimonial-section,
  .video-section,
  .gallery-section,
  .sponsor-section {
    padding: 75px 0;
  }
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    gap: 12px;
    direction: ltr;
  }
  .about-number {
    font-size: 3.5rem;
  }
  .race-card {
    height: 330px;
  }
  .race-overlay h3 {
    font-size: 1.4rem;
  }
  .video-card {
    height: 420px;
  }
  .gallery-grid {
    gap: 7px;
  }
  .offcanvas-nav {
    padding: 30px;
  }
  .footer-main {
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}

/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 70px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 12px 30px rgba(240, 74, 62, 0.3);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--purple);
    transform: translateY(-4px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(124, 35, 138, 0.3);
    outline-offset: 4px;
}

@media (max-width: 575px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* =====================================================
   MODULE 1: RESPONSIVE WHITE HEADER
===================================================== */
body {
  padding-top: 96px;
}

.site-header {
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(24, 23, 34, 0.08);
  box-shadow: 0 8px 30px rgba(24, 23, 34, 0.06);
}

.site-header.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 38px rgba(24, 23, 34, 0.1);
}

.header-inner {
  min-height: 96px;
  height: auto;
  gap: 24px;
}

.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 0;
}

.site-brand img {
  width: auto;
  height: 100px;
  max-width: 220px;
  object-fit: contain;
}

.header-menu {
  gap: 2px;
}

.header-menu .nav-link {
  position: relative;
  padding: 37px 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.035em;
  white-space: nowrap;
  margin-left : 10px;
}

.header-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.header-menu .nav-link:hover,
.header-menu .nav-link.active,
.header-menu .nav-link.show {
  color: var(--purple);
}

.header-menu .nav-link:hover::before,
.header-menu .nav-link.active::before,
.header-menu .nav-link.show::before {
  width: calc(100% - 20px);
}

.header-menu .dropdown-menu {
  min-width: 230px;
  margin-top: 0;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(24, 23, 34, 0.14);
}

.header-menu .dropdown-item {
  padding: 11px 14px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.header-menu .dropdown-item:hover {
  color: var(--purple);
  background: rgba(124, 35, 138, 0.07);
}

.header-toggler {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #f5f2f7;
  box-shadow: none !important;
}

.header-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--ink);
}

.header-toggler span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}

/* =====================================================
   MODULE 2: RESPONSIVE HERO BANNERS
===================================================== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #efeaf2;
}

.hero-banner picture,
.hero-banner img {
  display: block;
  width: 100%;
}

.hero-banner img {
  aspect-ratio: 1920 / 720;
  height: auto;
  object-fit: cover;
}

/* =====================================================
   MODULE 3: PROFESSIONAL ANIMATED REGISTER STRIP
===================================================== */
.register-strip-section {
  position: relative;
  z-index: 5;
  background: #ffffff;
}

.register-strip-link {
  position: relative;
  min-height: 74px;
  width: 100%;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  background:
    linear-gradient(105deg, rgba(255,255,255,0.09) 0 18%, transparent 18% 100%),
    linear-gradient(90deg, #55205f 0%, #7c238a 48%, #f04a3e 100%);
  box-shadow: 0 12px 34px rgba(87, 31, 98, 0.18);
}

.register-strip-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  animation: registerSweep 3.6s linear infinite;
}

.register-strip-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}

.register-strip-label,
.register-strip-title,
.register-strip-arrow {
  position: relative;
  z-index: 2;
}

.register-strip-label {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.register-strip-title {
  font-size: clamp(2.1rem, 2vw, 1.65rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.register-strip-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--purple);
  transition: transform 0.3s ease;
}

.register-strip-link:hover {
  color: #ffffff;
}

.register-strip-link:hover .register-strip-arrow {
  transform: translateX(6px);
}

@keyframes registerSweep {
  from { left: -30%; }
  to { left: 120%; }
}

/* =====================================================
   MODULE 5: ABOUT SECTIONS
===================================================== */
.about-section {
  padding: 110px 0;
}

.about-feature + .about-feature {
  margin-top: 52px;
}

.about-content-card,
.about-logo-card {
  min-height: 390px;
  /* border-radius: 28px; */
}

.about-content-card {
  position: relative;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(24,23,34,0.07);
  box-shadow: 0 24px 70px rgba(36,21,45,0.09);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.15em;
}

.about-content-card h2 {
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 800;
}

.about-content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
}

.about-meta span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.about-meta i {
  margin-right: 7px;
  color: var(--purple);
}

.about-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* background: linear-gradient(145deg, #30183b, #7c238a 62%, #f04a3e); */
  box-shadow: 0 24px 70px rgba(79,31,88,0.2);
}

/* .runner-logo-card {
  background: linear-gradient(145deg, #f04a3e, #922c82 58%, #332a78);
} */

.about-logo-card img {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.18));
}

.about-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 290px;
  height: 290px;
  animation: orbitPulse 4s ease-in-out infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  animation: orbitPulse 4s 1s ease-in-out infinite;
}

@keyframes orbitPulse {
  0%,100% { transform: scale(0.95); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* =====================================================
   MODULE 6: VISION, MISSION AND GOALS
===================================================== */
.vmg-section {
  padding: 110px 0;
  /* background:
    radial-gradient(circle at 10% 10%, rgba(240,74,62,0.08), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(124,35,138,0.1), transparent 34%),
    #ffffff; */
}

.vmg-modern-card {
  position: relative;
  height: 100%;
  min-height: 380px;
  padding: 42px 34px;
  overflow: hidden;
  /* border-radius: 24px; */
  background: #ffffff;
  border: 1px solid rgba(24,23,34,0.08);
  box-shadow: 0 22px 58px rgba(31,18,41,0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vmg-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 72px rgba(31,18,41,0.15);
}

.vmg-featured {
  color: #ffffff;
  background: linear-gradient(145deg, #332a78, #7c238a 68%, #7c238a);
  border-color: transparent;
}

.vmg-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(124,35,138,0.09);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
}

.vmg-featured .vmg-number {
  color: rgba(255,255,255,0.1);
}

.vmg-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(124,35,138,0.09);
  color: var(--purple);
  font-size: 26px;
}

.vmg-featured .vmg-icon {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}

.vmg-modern-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 800;
}

.vmg-modern-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.vmg-featured p {
  color: rgba(255,255,255,0.82);
}

.vmg-line {
  position: absolute;
  left: 34px;
  bottom: 28px;
  width: 58px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
}

.vmg-featured .vmg-line {
  background: #ffffff;
}

/* =====================================================
   MODULE 7: YOUTUBE THUMBNAILS - 5 DESKTOP / 2 TABLET
===================================================== */
.video-card {
  height: 360px;
  border-radius: 18px;
}

@media (max-width: 1399.98px) {
  .site-brand img { height: 64px; max-width: 190px; }
  .header-menu .nav-link { padding-left: 7px; padding-right: 7px; font-size: 11px; }
  .register-btn { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 1199.98px) {
  body { padding-top: 82px; }
  .header-inner { min-height: 82px; }
  /*.site-brand img { height: 70px; }*/
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 1px);
    left: -12px;
    right: -12px;
    max-height: calc(100vh - 83px);
    overflow-y: auto;
    padding: 14px 20px 24px;
    background: #ffffff;
    border-top: 1px solid rgba(24,23,34,0.08);
    box-shadow: 0 18px 36px rgba(24,23,34,0.12);
  }
  .header-menu { align-items: stretch !important; gap: 0; }
  .header-menu .nav-link { padding: 14px 4px; border-bottom: 1px solid rgba(24,23,34,0.08); font-size: 17px;   padding: 11px 14px; border-radius: 9px; color: var(--ink); font-weight: 600; }
  .header-menu .nav-link::before { display: none; }
  .header-menu .dropdown-menu { position: static !important; width: 100%; box-shadow: none; transform: none !important;}
}

@media (max-width: 767.98px) {
  .hero-banner img {
    aspect-ratio: 1080 / 1280;
    min-height: auto;
  }
  .register-strip-link {
    min-height: 64px;
    gap: 12px;
    padding: 12px 16px;
  }
  .register-strip-label { display: none; }
  .register-strip-title { font-size: 1.05rem; }
  .about-content-card,
  .about-logo-card { min-height: 330px; border-radius: 22px; }
  .about-feature + .about-feature { margin-top: 36px; }
}

@media (max-width: 575.98px) {
  body { padding-top: 74px; }
  .header-inner { min-height: 74px; }
  .site-brand img { max-width: 160px; }
  /*height: 62px; */
  .about-section,
  .vmg-section { padding: 76px 0; }
  .about-content-card { padding: 30px 24px; }
  .about-content-card h2 { font-size: 2rem; }
  .vmg-modern-card { min-height: 340px; padding: 34px 26px; }
  .video-card { height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  .register-strip-link::before,
  .about-orbit { animation: none; }
}




/* =====================================================
   COMPLETE FAQ SECTION START
===================================================== */

.marathon-faq-section {
  position: relative;
  padding: 90px 0 110px;
  background: #ffffff;
}

/* Main heading */
.faq-main-heading {
  max-width: 850px;
  margin: 0 auto 70px;
}

.faq-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange, #f04a3e);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.faq-main-heading h2 {
  margin: 0;
  color: var(--ink, #181722);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
}

/* FAQ category */
.faq-category {
  max-width: 1000px;
  margin: 0 auto 70px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 15px;
  color: var(--purple, #7c238a);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase !important;
}

/* Category underline */
.faq-category-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  border-radius: 50px;
  background: var(--orange, #f04a3e);
  transform: translateX(-50%);
}

/* Accordion */
.faq-accordion {
  width: 100%;
}

/* Accordion item */
.faq-accordion .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #ece8ee;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(240, 74, 62, 0.3);
  box-shadow: 0 10px 25px rgba(31, 20, 43, 0.06);
}

/* Accordion button */
.faq-accordion .accordion-button {
  position: relative;
  min-height: 64px;
  padding: 18px 65px 18px 22px;
  border: 0;
  background: #ffffff;
  color: var(--ink, #181722);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: none;
}

/* Remove Bootstrap arrow */
.faq-accordion .accordion-button::after {
  display: none;
}

/* Open question */
.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff8f7;
  color: var(--purple, #7c238a);
  box-shadow: none;
}

/* Focus */
.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus-visible {
  outline: 2px solid rgba(240, 74, 62, 0.25);
  outline-offset: -2px;
}

/* Plus and minus icon */
.faq-toggle-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
}

/* Horizontal line */
.faq-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 4px;
  background: var(--orange, #f04a3e);
  transform: translate(-50%, -50%);
}

/* Vertical line */
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 13px;
  border-radius: 4px;
  background: var(--orange, #f04a3e);
  transform: translate(-50%, -50%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Open state becomes minus */
.faq-accordion
  .accordion-button:not(.collapsed)
  .faq-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-accordion span {
  font-size: 20px;
}
/* Answer */
.faq-accordion .accordion-body {
  padding: 5px 65px 22px 22px;
  background: #fff8f7;
  color: var(--muted, #6f6b79);
  font-size: 18px;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 991.98px) {
  .marathon-faq-section {
    padding: 75px 0 90px;
  }

  .faq-main-heading {
    margin-bottom: 55px;
  }

  .faq-category {
    margin-bottom: 55px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .marathon-faq-section {
    padding: 60px 0 70px;
  }

  .faq-main-heading {
    margin-bottom: 45px;
  }

  .faq-accordion span {
  font-size: 20px;
}

  .faq-main-heading h2 {
    font-size: 2rem;
  }

  .faq-category {
    margin-bottom: 45px;
  }

  .faq-category-title {
    margin-bottom: 22px;
    font-size: 1.45rem;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-button {
    min-height: 60px;
    padding: 16px 52px 16px 16px;
    font-size: 0.88rem;
  }

  .faq-toggle-icon {
    right: 15px;
  }

  .faq-accordion .accordion-body {
    padding: 3px 52px 18px 16px;
    font-size: 18px;
    line-height: 1.7;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-accordion .accordion-item,
  .faq-toggle-icon::after {
    transition: none;
  }
}

/* =====================================================
   COMPLETE FAQ SECTION END
===================================================== */



/* =====================================================
   RACE CATEGORY SECTION START
===================================================== */

.race-category-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(53, 18, 77, 0.86), rgba(53, 18, 77, 0.86)),
    url("../images/erode-marathon-bg.webp") center/cover fixed;
}


/* Section heading */
.race-category-section .section-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange, #f04a3e);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.race-category-section .section-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Main card */
.race-price-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  padding: 34px 28px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  overflow: hidden;

  /* Border radius removed */
  border-radius: 0;

  border: 1px solid rgba(124, 35, 138, 0.16);

  /* Same color for all cards */
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fbf7fc 100%
    );

  box-shadow: 0 18px 45px rgba(31, 20, 43, 0.09);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Decorative corner */
.race-price-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(124, 35, 138, 0.13),
    rgba(240, 74, 62, 0.12)
  );

  transition: transform 0.4s ease;
}

.race-price-card:hover {
  transform: translateY(-8px);

  border-color: rgba(240, 74, 62, 0.3);

  box-shadow: 0 28px 60px rgba(31, 20, 43, 0.15);
}

.race-price-card:hover::before {
  transform: scale(1.18);
}

/* Icon */
.race-price-icon {
  position: relative;
  z-index: 2;

  width: 68px;
  height: 68px;
  margin-bottom: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(124, 35, 138, 0.12),
    rgba(240, 74, 62, 0.12)
  );

  color: var(--purple, #7c238a);
  font-size: 25px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.race-price-card:hover .race-price-icon {
  transform: rotate(-7deg) scale(1.08);

  background: linear-gradient(
    135deg,
    var(--purple, #7c238a),
    var(--orange, #f04a3e)
  );

  color: #ffffff;
}

/* Marathon name */
.race-price-card h3 {
  position: relative;
  z-index: 2;

  min-height: 52px;
  margin: 0 0 16px;

  color: var(--ink, #181722);

  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

/* Amount */
.race-price-amount {
  position: relative;
  z-index: 2;

  margin-bottom: 28px;

  color: var(--orange, #f04a3e);

  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

/* Register strip */
.race-register-strip {
  position: relative;
  z-index: 2;

  width: calc(100% + 56px);
  min-height: 58px;
  margin: auto -28px -28px;
  padding: 10px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  overflow: hidden;

  background: linear-gradient(
    90deg,
    #54206f 0%,
    #8d278f 45%,
    #f04a3e 100%
  );

  color: #ffffff;
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  transition:
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

/* Moving shine */
.race-register-strip::before {
  content: "";

  position: absolute;
  top: 0;
  left: -40%;

  width: 30%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );

  transform: skewX(-20deg);

  animation: raceRegisterShine 3.2s linear infinite;
}

/* Subtle animated gradient movement */
.race-register-strip::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 70%
  );

  background-size: 220% 100%;

  animation: raceRegisterGlow 4s linear infinite;

  pointer-events: none;
}

.race-register-strip > span {
  position: relative;
  z-index: 2;
  font-size: 20px;
}

/* Circular arrow */
.race-register-arrow {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 38px;

  border-radius: 50%;

  background: #ffffff;
  color: var(--purple, #7c238a);

  font-size: 14px;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.race-register-strip:hover {
  color: #ffffff;
  filter: brightness(1.05);
  box-shadow: 0 -10px 30px rgba(124, 35, 138, 0.18);
}

.race-register-strip:hover .race-register-arrow {
  transform: translateX(6px);
  background: #ffcf55;
  color: #342044;
}

/* Shine animation */
@keyframes raceRegisterShine {
  0% {
    left: -40%;
  }

  100% {
    left: 125%;
  }
}

/* Background movement */
@keyframes raceRegisterGlow {
  0% {
    background-position: 220% 0;
  }

  100% {
    background-position: -220% 0;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .race-category-section {
    padding: 80px 0;
  }

  .race-price-card {
    min-height: 320px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .race-category-section {
    padding: 65px 0;
  }

  .race-category-section .section-head {
    margin-bottom: 38px !important;
  }

  .race-price-card {
    min-height: 300px;
    padding: 28px 22px 24px;
  }

  .race-price-card h3 {
    min-height: auto;
    font-size: 30px;
  }

  .race-price-amount {
    font-size: 30px;
  }

  .race-register-strip {
    width: calc(100% + 44px);
    min-height: 54px;
    margin: auto -22px -24px;
    padding: 9px 18px;

    font-size: 0.86rem;
    letter-spacing: 0.09em;
  }

  .race-register-arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .race-register-strip::before,
  .race-register-strip::after {
    animation: none;
  }

  .race-price-card,
  .race-price-icon,
  .race-register-strip,
  .race-register-arrow {
    transition: none;
  }
}

/* =====================================================
   RACE CATEGORY SECTION END
===================================================== */


.edition-heading {
  position: relative;
  display: inline-block;
  margin: 0;

  color: #ffd633;
  font-size: clamp(5.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  text-shadow:
    1px 1px 0 #e5b900,
    2px 2px 0 #d4a700,
    3px 3px 0 #bd9000,
    4px 4px 8px rgba(0, 0, 0, 0.22);

  animation: editionHeadingFloat 2.8s ease-in-out infinite;
}

/* Passing light inside text */
.edition-heading::after {
  content: "5th Edition";
  position: absolute;
  inset: 0;

  color: transparent;

  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.95) 48%,
    transparent 66%
  );

  background-size: 220% 100%;
  background-position: 220% 0;

  -webkit-background-clip: text;
  background-clip: text;

  animation: editionHeadingShine 2.8s linear infinite;
}

@keyframes editionHeadingFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes editionHeadingShine {
  0% {
    background-position: 220% 0;
  }

  100% {
    background-position: -220% 0;
  }
}

@media (max-width: 575.98px) {
  .edition-heading {
    font-size: 2.25rem;
    letter-spacing: 0.04em;
  }
}


/* =========================================
   Terms and Conditions Section
========================================= */

.terms-content-section {
  width: 100%;
  padding: 35px 0 70px;
  background-color: #ffffff;
}

.terms-content-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-content-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.terms-content-block {
  margin-bottom: 18px;
}

.terms-content-block h3 {
  margin: 0 0 7px;
  color: var(--purple);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
   text-transform: capitalize !important;
}

.terms-content-block p {
  margin: 0 0 14px;
  color: #31201d;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.terms-content-block p:last-child {
  margin-bottom: 0;
}

.terms-content-block a {
  color: #ef3d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-content-block a:hover {
  color: #ef3d36;
  text-decoration: underline;
}

.terms-confirmation {
  margin-top: 24px;
  margin-bottom: 0;
}

/* Tablet Devices */
@media (max-width: 991.98px) {
  .terms-content-section {
    padding: 30px 0 55px;
  }

  .terms-content-section .container {
    padding: 0 30px;
  }

  .terms-content-wrapper {
    max-width: 100%;
  }
}

/* Mobile Devices */
@media (max-width: 767.98px) {
  .terms-content-section {
    padding: 25px 0 45px;
  }

  .terms-content-section .container {
    padding: 0 18px;
  }

  .terms-content-block {
    margin-bottom: 22px;
  }

  .terms-content-block h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.35;
  }

  .terms-content-block p {
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 1.65;
  }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
  .terms-content-section .container {
    padding: 0 15px;
  }

  .terms-content-block h3 {
    font-size: 20px;
  }

  .terms-content-block p {
    font-size: 17px;
  }
}

/* /Sponsors logos new */

.sponsors-section{
    background:#fff;
    padding:80px 0;
}

.section-title h2{
    font-size:clamp(2rem, 4vw, 3.5rem);
    font-weight:800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .section-title span{
    width:90px;
    height:4px;
    background:#ff6b00;
    display:inline-block;
    border-radius:20px;
} */

.sponsor-box{
    text-align:center;
    padding:20px;
}

.sponsor-box h6{
    font-size:17px;
    font-weight:700;
    color:#143d84;
    /* text-transform:uppercase; */
    margin-bottom:30px;
}

.sponsor-box img{
    width:100%;
    /* max-width:240px;      Bigger logo */
    height:120px;         /* Same height */
    object-fit:contain;
    opacity:.85;          /* Light appearance */
    transition:.35s ease;
}

.sponsor-box:hover img{
    opacity:1;
    transform:scale(1.08);
}

@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }

    .sponsor-box img{
        /* max-width:180px; */
        height:200px;
    }
}

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .sponsor-box h6{
        font-size:17px;
    }

    .sponsor-box img{
        /* max-width:150px; */
        height:90px;
    }
}

/* Registration CTA */

.register-cta-section {
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
}

.register-cta-box {
  position: relative;
  width: 100%;
  min-height: 190px;
  padding: 40px 12%;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(32, 8, 69, 0.92),
      rgba(69, 13, 83, 0.82)
    ),
    url("../images/erode-marathon-bg.webp") center / cover no-repeat;

  box-shadow: 0 15px 40px rgba(25, 5, 55, 0.18);
}

/* Yellow decoration images */
.cta-brush {
  position: absolute;
  width: 170px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Bottom-left image */
.cta-brush-left {
  left: -35px;
  bottom: -32px;
}

/* Top-right image */
.cta-brush-right {
  right: -35px;
  top: -32px;
  transform: rotate(180deg);
}

.register-cta-content,
.register-cta-btn {
  position: relative;
  z-index: 3;
}

.register-cta-content > span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.register-cta-content h2 {
  margin: 0;
  color: #ffbd00;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.register-cta-btn {
  min-width: 180px;
  padding: 16px 30px;
  border-radius: 7px;
  background: #ffbd00;
  color: #251044;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.register-cta-btn:hover {
  background: #ffffff;
  color: #6d168d;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .register-cta-box {
    min-height: 300px;
    padding: 45px 25px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cta-brush {
    width: 110px;
  }

  .cta-brush-left {
    left: -20px;
    bottom: -20px;
  }

  .cta-brush-right {
    right: -20px;
    top: -20px;
  }

  .register-cta-content h2 {
    font-size: 38px;
  }

  .register-cta-btn {
    width: 100%;
    /*max-width: 210px;*/
  }
}

/* =====================================================
   ERODE MARATHON 2026 CLIENT BRAND OVERRIDES
===================================================== */
body,
p,
a,
li,
span,
button,
input,
textarea,
select,
label {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-head h2,
.faq-main-heading h2,
.faq-category-title,
.terms-content-block h3 {
  font-family: "League Spartan", sans-serif;
}

.section-head h2,
.about-content-card h2,
.faq-main-heading h2,
.faq-category-title,
.terms-content-block h3 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

.register-btn,
.btn-main,
.race-register-strip,
.register-strip-link,
.back-to-top {
  background: var(--violet);
  color: var(--white);
}

.register-btn:hover,
.btn-main:hover,
.race-register-strip:hover,
.back-to-top:hover {
  background: var(--yellow);
  color: var(--violet);
}

.register-strip-title,
.race-price-amount,
.stars,
.vmg-icon,
.about-meta i {
  color: var(--yellow);
}

.scroll-progress,
.faq-category-title::after,
.vmg-line {
  background: var(--brand-gradient);
}

footer {
  background: var(--violet);
}

.header-menu .nav-link::before {
  background: var(--brand-gradient);
}

.register-strip-link {
  background: var(--brand-gradient);
}

.race-price-card,
.about-content-card,
.vmg-modern-card,
.faq-accordion .accordion-item {
  border-color: rgba(91, 17, 139, 0.14);
}

.socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--violet);
}

/* =====================================================
   ERODE MARATHON 2026 - FINAL LIGHT YELLOW + VIOLET THEME
===================================================== */
:root {
  --brand-violet: #5B118B;
  --brand-yellow: #ffba07;
  --violet-light: #F8F0FC;
  --violet-soft: #EFE1F6;
  --yellow-light: #FFFDE8;
  --yellow-soft: #FFF7A6;
  --brand-gradient: linear-gradient(90deg, #9000B9 0%, #841386 16%, #711389 32%, #5D128B 48%, #330E86 64%, #330E86 80%, #491186 100%);
}

body,
p,
a,
li,
span,
button,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-head h2,
.faq-main-heading h2,
.faq-category-title {
  font-family: "League Spartan", sans-serif !important;
}

body {
  color: #403747;
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 221, 1, 0.12), transparent 25%),
    radial-gradient(circle at 92% 28%, rgba(91, 17, 139, 0.08), transparent 28%),
    #ffffff;
}

.pattern,
.about-section,
.race-category-section,
.sponsor-section,
.sponsors-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(251, 221, 1, 0.11), transparent 27%),
    radial-gradient(circle at 88% 82%, rgba(91, 17, 139, 0.07), transparent 30%),
    #ffffff !important;
}

.bg-light,
.vmg-section,
.marathon-faq-section,
.terms-content-section {
  background: linear-gradient(135deg, rgba(255, 253, 232, 0.98), rgba(248, 240, 252, 0.98)) !important;
}

.section-head h2,
.about-content-card h2,
.faq-main-heading h2,
.faq-category-title,
.terms-content-block h3 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800 !important;
  text-transform: capitalize;
}

.section-head h2::after,
.faq-category-title::after {
  background: var(--brand-yellow) !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 3px solid var(--brand-yellow) !important;
  box-shadow: 0 10px 30px rgba(91, 17, 139, 0.08) !important;
}

.header-menu .nav-link {
  color: var(--brand-violet) !important;
  font-weight: 700 !important;
}

.header-menu .nav-link::before {
  background: var(--brand-yellow) !important;
}

.header-toggler {
  background: var(--yellow-light) !important;
}

.header-toggler span {
  background: var(--brand-violet) !important;
}

.register-btn,
.btn-main,
.race-register-strip,
.register-cta-btn {
  background: #ffba07 !important;
  color: var(--brand-violet) !important;
  border: 2px solid var(--brand-yellow) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(251, 221, 1, 0.30) !important;
}

.register-btn:hover,
.btn-main:hover,
.race-register-strip:hover,
.register-cta-btn:hover {
  background: var(--brand-violet) !important;
  color: #ffffff !important;
  border-color: var(--brand-violet) !important;
}

.register-strip-link {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.09) 0 18%, transparent 18% 100%), linear-gradient(90deg, #55205f 0%, #7c238a 48%, var(--brand-yellow) 100%);
}

.register-strip-title {
  color: var(--white) !important;
  font-family: "League Spartan", sans-serif !important;
  font-weight: 900 !important;
}

.register-strip-arrow {
  background: var(--white) !important;
  color: var(--brand-violet) !important;
}

.about-content-card,
.about-logo-card,
.vmg-modern-card,
.race-price-card,
.sponsor-box,
.sponsor-card {
  background: rgba(255, 255, 255, 0.97) !important;
  border-color: rgba(91, 17, 139, 0.11) !important;
  box-shadow: 0 20px 55px rgba(91, 17, 139, 0.09) !important;
}

.about-content-card {
  border-left: 6px solid var(--brand-yellow) !important;
}

.about-meta span,
.about-meta i,
.vmg-modern-card h3,
.race-price-card h3,
.sponsor-box h6,
.sponsor-card h5 {
  color: var(--brand-violet) !important;
}

.vmg-modern-card,
.race-price-card,
.sponsor-box,
.sponsor-card {
  border-top: 5px solid var(--brand-yellow) !important;
}

.vmg-icon,
.race-price-icon {
  background: var(--brand-yellow) !important;
  color: var(--brand-violet) !important;
}

.race-price-amount {
  color: var(--brand-violet) !important;
}

/* .faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.98) !important;
  border-left: 5px solid var(--brand-yellow) !important;
} */

.faq-accordion .accordion-button {
  color: var(--brand-violet) !important;
  background: #ffffff !important;
  font-weight: 700 !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff8f7 !important;
  color: var(--brand-violet) !important;
}

/* .terms-content-wrapper {
  background: rgba(255, 255, 255, 0.98) !important;
  border-top: 6px solid var(--brand-yellow) !important;
  box-shadow: 0 20px 55px rgba(91, 17, 139, 0.08) !important;
} */

footer {
  background: var(--brand-gradient) !important;
  border-top: 7px solid var(--brand-yellow) !important;
}

.footer-main h5 {
  color: var(--brand-yellow) !important;
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--brand-yellow) !important;
}

.socials a {
  border-color: rgba(251, 221, 1, 0.75) !important;
  color: var(--brand-yellow) !important;
}

.socials a:hover {
  background: var(--brand-yellow) !important;
  color: var(--brand-violet) !important;
}

.scroll-progress,
.back-to-top {
  background: var(--brand-yellow) !important;
  color: var(--brand-violet) !important;
}

.loader-ring {
  border-top-color: var(--brand-yellow) !important;
  border-right-color: var(--brand-violet) !important;
}

@media (max-width: 767.98px) {
  body {
    background: linear-gradient(180deg, var(--yellow-light), #ffffff, var(--violet-light));
  }
}

/* =====================================================
   FINAL UNIFIED RESPONSIVE HEADING STYLE
   All headings: same size + violet gradient
   Race Categories: white because of image overlay
===================================================== */

:root {
  --unified-heading-size: clamp(2rem, 4vw, 3.5rem);
  --unified-heading-gradient: linear-gradient(
    90deg,
    #9000B9 0%,
    #841386 16%,
    #711389 32%,
    #5D128B 48%,
    #330E86 64%,
    #330E86 80%,
    #491186 100%
  );
}

/* All website headings use the same responsive size and gradient */
.section-head h2,
.about-content-card h2,
.faq-main-heading h2,
.faq-category-title,
.terms-content-block h3 {
  margin-top: 0;
  font-family: "League Spartan", sans-serif !important;
  /* font-size: var(--unified-heading-size) !important; */
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  background: var(--unified-heading-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Keep the race section image and violet overlay */
.race-category-section {
  background:
    linear-gradient(rgba(53, 18, 77, 0.86), rgba(53, 18, 77, 0.86)),
    url("../images/erode-marathon-bg.webp") center / cover no-repeat !important;
  background-attachment: fixed !important;
}

/* Race Categories heading must remain white */
.race-category-section .section-head h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  font-size: var(--unified-heading-size) !important;
  font-weight: 800 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

/* Responsive spacing for every device */
@media (max-width: 1199.98px) {
  :root {
    --unified-heading-size: clamp(1.9rem, 4.5vw, 3rem);
  }
}

@media (max-width: 767.98px) {
  :root {
    --unified-heading-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .section-head,
  .faq-main-heading {
    margin-bottom: 36px !important;
  }

  .faq-category-title,
  .terms-content-block h3,
  .about-content-card h2 {
    margin-bottom: 16px !important;
  }

  .race-category-section {
    background-attachment: scroll !important;
    background-position: center !important;
  }
}

@media (max-width: 575.98px) {
  :root {
    --unified-heading-size: 1.9rem;
  }

  .section-head h2,
  .about-content-card h2,
  .faq-main-heading h2,
  .faq-category-title,
  .terms-content-block h3,
  .race-category-section .section-head h2 {
    line-height: 1.15 !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}


/* =========================================
   REGISTRATION SUCCESS SECTION
========================================= */

.registration-success-section {
  width: 100%;
  padding: 20px 15px 60px;
  background: #ffffff;
  overflow: hidden;
}

.registration-success-section .container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.registration-success-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.registration-success-image-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}

.registration-success-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* Large desktop */
@media (min-width: 1400px) {
  .registration-success-section .container {
    max-width: 1000px;
  }
}

/* Laptop */
@media (max-width: 1199.98px) {
  .registration-success-section .container {
    max-width: 920px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .registration-success-section {
    padding: 25px 20px 50px;
  }

  .registration-success-title {
    margin-bottom: 18px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .registration-success-section {
    padding: 25px 12px 40px;
  }

  .registration-success-title {
    text-align: center;
    font-size: 30px;
  }

  .registration-success-image-wrap {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .registration-success-section {
    padding: 20px 8px 30px;
  }

  .registration-success-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .registration-success-image {
    width: 100%;
    height: auto;
  }
}