:root {
  --primary-light: #51abcf;
  --primary: #0c81af;
  --primary-dark: #167384;
  --secondary: #004861;
  --bglight: #2c95bf;
  --bgdark: #242728;
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-secondary {
  color: var(--secondary);
}

.text-bgdark {
  color: var(--bgdark);
}

/* Background utilities */
.bg-primary {
  background-color: var(--primary);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-bglight {
  background-color: var(--bglight);
}
.bg-bgdark {
  background-color: var(--bgdark);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #183343;
  background-color: white;
}

/*  |-------------------------

      Custom Classes

    |-----------------------------
*/

.lGothic {
  font-family: "League Gothic", sans-serif;
}

.contain2 {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* my contain sizes */
@media (min-width: 100px) {
  .contain {
    max-width: 1500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .marginy {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .text-manually-hero {
    font-size: 32px;
  }
  .define-text-manually {
    font-size: 45px !important;
    line-height: 1 !important;
  }
  .text-manually-footer {
    font-size: 50px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 768px) {
  .contain {
    max-width: 1152px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .text-manually-hero {
    font-size: 60px;
  }
  .define-text-manually {
    font-size: 50px !important;
    line-height: 1 !important;
  }
  .text-manually-footer {
    font-size: 55px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1024px) {
  .contain {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .text-manually-hero {
    font-size: 45px;
  }
  .define-text-manually {
    font-size: 40px;
  }
  .text-manually-footer {
    font-size: 60px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1280px) {
  .contain {
    max-width: 1280px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .text-manually-hero {
    font-size: 52px;
  }
}

/* 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;
}

/* footer underline dropdown */
.link-funderline {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.link-funderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  color: #ffffff;
}
.link-funderline:hover::after {
  width: 100%;
}
