/* UPDATED 09/26/2025 */
* {}

:root {
  font-size: 12px;
}

@media (min-width: 350px) {
  :root {
    font-size: 16px;
  }
}

header {
  max-width: 2200px;
}

main {
  max-width: 1440px;
  margin: 0 auto;
}

header,
section {
  margin-bottom: 100px;
}

/* Header */
header {
  background-image: url('./assets/hero-rs.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

nav {
  max-width: max-content;
}

nav.bg-body-tertiary {
  background-color: #05193A !important;
  border-bottom: 3px solid #7DC242;
  border-right: 3px solid #7DC242;
  border-left: 3px solid #7DC242;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.navbar-nav {
  gap: 32px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  line-height: 100%;
  letter-spacing: 14%;
  font-weight: 300;
  text-align: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:focus {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 100%;
  background: #E57526;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  background: #fff;
}

.logo {
  max-width: 193px;
}

.globe {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}

@media (min-width: 576px) {
  .globe {
    right: 16px;
    top: 16px;
  }
}

@media (min-width: 1200px) {
  .globe {
    right: 50px;
    top: 50px;
  }
}

.header-tagline {
  margin-top: 90px;
  margin-bottom: 130px;
}

@media (min-width: 576px) {
  .header-tagline {
    margin-top: 100px;
    margin-bottom: 200px;
  }
}

@media (min-width: 992px) {
  .header-tagline {
    margin-top: 200px;
    margin-bottom: 360px;
  }
}

/* ABOUT */
#about {
  /* margin-top: 130px; */
}

.carousel-item * {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 365px;
  max-height: 365px;
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 500px) {
  .carousel-item * {
    min-height: 644px;
    max-height: 644px;
  }
}

/* .carousel-item iframe {
  min-height: 573px !important;
} */

.carousel-indicators {
  transform: translateY(40px);
}

/* @media (min-width: 1400px) {
  #flush-collapseThree p {
    padding-bottom: 35px;
  }
} */

/* TYPOGRAPHY */
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 60px;
  letter-spacing: 0;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 70px;
  letter-spacing: 0;
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  h1 {
    font-size: 6.4rem;
    line-height: 80px;
  }

  h2 {
    font-size: 4.4rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 9.0625rem;
    line-height: 120px;
    letter-spacing: 0;
  }

  h2 {
    font-size: 5.3125rem;
    line-height: 70px;
  }

  h3 {
    font-size: 1.875rem;
  }
}

/* 
// X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  ...
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  ...
}

/* TITLE LINE EFFECT */

.section-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 350px) {

  .section-title:before,
  .section-title:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 45%;
    height: 4px;
    content: '\a0';
    background-color: #7DC242;
    margin-left: 5%;
  }

  .section-title:before {
    margin-left: -50%;
    text-align: right;
  }
}

/* ACCORDIAN */
/* FINALIZE HEIGHT ALIGNMENTS ONCE TEXT IS 100% VALIDATED  */
.accordion-item {
  border-bottom-left-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

.accordion .accordion-item-orange {
  background-color: #FFF7F1;
  border: 3px solid #E57526;
  border-top: none;
}

.accordion .accordion-item-green {
  background-color: #F1FDE6;
  border: 3px solid #7DC242;
  border-top: none;
}

.accordion .accordion-item-blue {
  background-color: #E2F7F8 !important;
  border: 3px solid #3BA4A6 !important;
  border-top: none !important;
}

#accordion-item-3 {
  background-color: #E2F7F8 !important;
  border: 3px solid #3BA4A6 !important;
  border-top: none !important;
}

.accordion-header-container {
  font-family: "Inter", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 100%;
  padding: 35px 20px;
  background-color: transparent;
  color: #000 !important;
}

.accordion-button:focus {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  color: #8A8A8A;
  padding-top: 0px;
  padding-bottom: 60px;
}

/* CARDS */
.card {
  color: #fff;
  border: none;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.card-body {
  padding: 30px
}

.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  line-height: 100%;
  letter-spacing: 0;
}

.card-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
}

.card-orange {
  background-color: #E57526;
}

.card-teal {
  background-color: #3BA4A6;
}

.card-green {
  background-color: #7DC242;
}

/* RESOURCES */


.banner-container {
  position: relative;
  width: 100%;
}

.direction-link {
  position: absolute;
  bottom: 3%;   /* Adjust based on image layout */
  right: 7%;  /* Adjust based on image layout */
  width: 100px;
  height: 30px;
  display: block;
  background: transparent;
  /* background: blue; */
  text-decoration: none;
  z-index: 10;
}

@media (min-width: 350px) {
  .direction-link {
    bottom: 3%;   /* Adjust based on image layout */
    right: 7%;  /* Adjust based on image layout */
    width: 140px;
    height: 52px;
  }
}

@media (min-width: 576px) {
  .direction-link {
    bottom: 11%;   /* Adjust based on image layout */
    right: 6%;  /* Adjust based on image layout */
    width: 140px;
    height: 52px;
  }
}

.direction-link:focus {
  outline: 2px dashed #333;
}



/* FOOTER */
footer {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #003974;
  text-align: center;
}

@media (min-width: 576px) {
  footer {
    font-size: 1.1875rem;
  }

  .footer-bottom .row div:not(:last-child) {
    border-right: 1px solid #003974;
  }
}

@media (min-width: 768px) {
  footer {
    text-align: start;
  }
}

footer a {
  text-decoration: none !important;
  color: #003974;
}

.footer-top {
  background-color: #D9D9D9;
}

.footer-top-content {
  padding: 80px 0;
}

.footer-bottom {
  padding: 28px 0px;
}

/* .border-right {
  border-right: 1px solid #003974;
} */