* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  /* 🎨 Primary Colors */
  --run-red: #e30613;
  --run-blue: #002f6c;
  --run-yellow: #ffd500;

  /* 💜 Accent Colors */
  --charity-pink: #e4007c;
  --royal-blue: #0056a6;

  /* ⚪ Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --light-p-gray: #454545;
  --black: #000;

  /* font-family */
  --primary-family: "Exo 2", sans-serif;
  --secondary-family: "Poppins", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}
.exo {
  font-family: "Exo 2", sans-serif;
}
/* ::-webkit-scrollbar {
  display: none;
} */
.sticky.px-128 {
  position: fixed !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 0 !important;
  z-index: 9999;
}
.sticky .px-navbar {
  border-radius: 0 !important;
}
.px-128 {
  padding-left: 128px !important;
  padding-right: 128px !important;
}
.px-navbar {
  padding: 10px 16px;
  background-color: var(--dark-gray);
  border-radius: 6px;
}
.navbar-nav .nav-item .nav-link {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  padding: 10px !important;
  transition: color 0.4s ease-in-out;
}
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--run-yellow);
}
.btn-donate {
  padding: 14px 32px;
  height: 55px;
  background: var(--run-red);
  border-radius: 6px;
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  text-decoration: none;
}
.btn-contact {
  padding: 14px 32px;
  height: 55px;
  border: 1px solid var(--run-yellow);
  border-radius: 6px;
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  text-decoration: none;
}
.radius {
  border-radius: 6px;
}
.wrapper {
  padding-inline: 260px;
}
#header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/banner-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
}
.btn-cstm {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  height: 67px;
  background: var(--run-yellow);
  border-radius: 6px;
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--run-blue);
  width: fit-content;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
.btn-cstm::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--run-red);
  transition: 0.6s;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 6px;
}
.btn-cstm:hover::before {
  height: 100%;
}
.btn-cstm:hover {
  color: var(--white);
}
.banner-info h1 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 96px;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}
.banner-info h4 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}
.banner-info p {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}
.banner-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 200px;
}
#navbar {
  position: absolute;
  width: 100%;
  top: 24px;
  transition: top 0.4s ease;
  z-index: 9;
}
.py-50 {
  padding-block: 50px;
}
.marathon-content p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--light-p-gray);
}
.marathon-img img {
  width: 570px;
  border-radius: 0px 60px 0px 0px;
}
.option-content {
  border: 4px solid var(--run-yellow);
  border-radius: 2px;
  padding: 32px;
  border-radius: 6px;
  width: 80%;
  margin-top: 32px;
}
.option-content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.option-content li .divider {
  width: 1px;
  height: 62px;
  background: var(--run-yellow);
  border: 1px solid var(--run-yellow);
}
.option-content li p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--dark-gray);
}
.option-content li h4 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
}
.table-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
.common-list {
  width: fit-content;
  text-align: center;
}
.common-list h4 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: var(--black);
  margin-bottom: 8px;
}
.common-list h6 {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  letter-spacing: 0.01em;
  color: var(--dark-gray);
}
.information {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.information li {
  margin-bottom: 10px;
}
.information li span {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--dark-gray);
}
.heading h4 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.heading h6 {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--run-red);
  margin-bottom: 10px;
}
.about-img img {
  width: 625px;
}
.information li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.quotes-about {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #5f5e6d;
}
.runner-img img {
  width: 545px;
  border-radius: 0 60px 0 0;
}
.runner-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.runner-info ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--run-yellow);
  justify-content: space-between;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.runner-info ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.runner-info ul li h4 {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: var(--black);
}
.runner-info ul li span {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: right;
  color: var(--dark-gray);
}
.mb-40px {
  margin-bottom: 40px;
}

.cstm-box {
  padding: 40px 28px;
  background: var(--light-gray);
  box-shadow: 0px 10px 25px rgba(37, 42, 52, 0.07);
  border-radius: 6px;
  height: 100%;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
.cstm-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--run-red);
  transition: 0.6s;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 6px;
}
.cstm-box:hover::before {
  height: 100%;
}
.cstm-box img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  margin-bottom: 40px;
}
.cstm-box h5 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--black);
  transition: 0.4s;
  margin-bottom: 16px;
}
.cstm-box p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  transition: 0.4s;
  color: var(--dark-gray);
}
.cstm-box:hover h5 {
  color: var(--white);
}
.cstm-box:hover p {
  color: var(--white);
}
.sponser {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/sponser.webp");
}
.sponser p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 41px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  justify-content: center;
}
.cstm-form {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 32px;
  outline: 0;
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: var(--black);
  background-color: transparent;
  transition: 0.4s ease-in-out;
}
.cstm-form:focus {
  border-bottom: 1px solid var(--run-red);
}
/* .ambassador {
  background-color: var(--dark-gray);
} */
.bg-change {
  background-color: var(--dark-gray);
  padding: 50px;
  border-radius: 20px;
}
footer {
  background-color: var(--dark-gray);
  padding-block: 32px;
}
.ambassaador-info h1 {
  font-family: var(--primary-family);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: var(--white);
  margin-bottom: 18px;
}
.ambassaador-info p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer p {
  font-family: var(--secondary-family);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
}
.social-icons {
  display: flex;
  gap: 24px;
  align-items: center;
}
.social-icons img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: 0.4s ease;
  flex-shrink: 0;
}
.social-content {
  width: 50px;
  height: 50px;
  border: 1px solid #b7b7b7;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.social-icons img:hover {
  transform: translateY(-4px);
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  text-align: center;
}

/* hamburgr */
.hamburger.is-md {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 1.5rem; /* only is-md */
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
}

.hamburger.is-md .hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.is-md .hamburger-line:nth-child(1) {
  top: 0.125em;
}

.hamburger.is-md.is-active .hamburger-line:nth-child(1),
.w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}

.hamburger.is-md .hamburger-line:nth-child(2) {
  top: 0.438em;
}

.hamburger.is-md.is-active .hamburger-line:nth-child(2),
.w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}

.hamburger.is-md .hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}

.hamburger.is-md.is-active .hamburger-line:nth-child(3),
.w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}

/* hamburgr */
.mb-18px {
  margin-bottom: 32px;
}

li.nav-item {
  margin-right: 10px;
}

/* loader  */

.cstmloader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--run-blue);
  z-index: 99999;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: var(--white) var(--white) transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent var(--run-yellow) var(--run-yellow);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* loader  */
.big-hover p {
  transition: 0.4s ease-in-out;
}
.cstm-box:hover .big-hover p {
  font-size: 28px !important;
}
.sponser-logo {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.sponser_logos {
  background-color: var(--run-blue);
}
.logos-p{
    font-family: var(--secondary-family);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 41px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    justify-content: center;
}