:root {
  --primary: #be202e;
  --secondary: #0e2e74;
  --bttext: #be202e;
  --bgdark: #0e2e74;
  --bglight: #30b0e8;
  --btbg: #be202e;
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-bttext {
  color: var(--bttext);
}

/* Background utilities */
.bg-bglight {
  background-color: var(--bglight);
}
.bg-bgdark {
  background-color: var(--bgdark);
}
.bg-btbg {
  background-color: var(--btbg);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Pathway Extreme", sans-serif;
  color: #000000;
  background-color: white;
}

/* my contain sizes */
@media (min-width: 100px) {
  .contain {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .marginy {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .paddingx {
    padding-left: 20px;
    padding-right: 20px;
  }
  .define-text-manually {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
  .hero-img-w {
    width: 276px;
  }
}

@media (min-width: 768px) {
  .contain {
    max-width: 1920px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .paddingx {
    padding-left: 30px;
    padding-right: 30px;
  }
  .define-text-manually {
    font-size: 30px !important;
    line-height: 1 !important;
  }
  .hero-img-w {
    width: 420px;
  }
  .define-text-manually2 {
    font-size: 32px !important;
    line-height: 1 !important;
  }
  .define-img-left {
    left: 13rem;
  }
}

@media (min-width: 1024px) {
  .contain {
    max-width: 1920px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .marginy {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .paddingx {
    padding-left: 40px;
    padding-right: 40px;
  }
  .define-text-manually {
    font-size: 40px !important;
    line-height: 1 !important;
  }
  .hero-img-w {
    width: 583px;
  }
  .define-img-left {
    left: 20rem;
  }
}

.contain2 {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* Reset Swiper default arrow styles */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  color: inherit !important;
}

/* Hide the default pseudo arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

/* header underline dropdown */
.link-underline {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-out; /* smooth scaling */
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transition: all 0.3s ease-out;
  transform: translateX(-50%);
  color: #f13438;
}

.link-underline:hover::after {
  width: 100%;
}

.link-underline:hover {
  transform: scale(1.05); /* scales text by 5% */
}

/* hero section heading */
@media (min-width: 1280px) {
  .define-text-manually {
    font-size: 40px !important;
    line-height: 1 !important;
  }
  .hero-img-w {
    width: 650px;
  }
  .define-img-left {
    left: 24rem;
  }
}

@media (min-width: 1536px) {
  .define-text-manually {
    font-size: 45px !important;
    line-height: 1 !important;
  }
  .hero-img-w {
    width: 753px;
  }
  .define-img-left {
    left: 28rem;
  }
}

@media (min-width: 1850px) {
  .define-text-manually {
    font-size: 55px !important;
    line-height: 1.3 !important;
  }
  .hero-img-w {
    width: 933px;
  }
  .define-img-left {
    left: 35rem;
  }
}

/* milestone line animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  } /* move up 20px */
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: floatUpDown 3s ease-in-out infinite;
}
