* {
  margin: 0;
  padding: 0;
}

/* FONTS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bebas Neue', sans-serif;
}

input,textarea {
  font-family: 'Inter', sans-serif; 
}

.span-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.span-inter {
  font-family: 'Inter', sans-serif;
}

select
 {
  font-family: 'Montserrat', sans-serif !important;
}

p,
li,
.form-label,
a,
table,
label {
  font-family: 'Montserrat', sans-serif;
}

h6 {
  font-size: 18px !important;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  color: black !important;
  text-decoration: none;
  border-bottom: 4px transparent solid; /* services sake */
}

.nav-link.active,
.nav-link:hover,
.nav-link-offcanvas.active {
  font-weight: bold;
  color: #15b6b3 !important;
}

.nav-link-offcanvas {
  font-family: 'Montserrat', sans-serif;
  color: black !important;
  text-decoration: none;
  font-weight: bold;
}

.nav-link-sticky {
  font-family: 'Montserrat', sans-serif;
  /* color: #cdf1d7 !important; */
  color: white;
}

.nav-link.active,
.nav-link:hover {
  border-bottom: 4px #15b6b3 solid;
}

/* NAVBAR SPECIAL EFFECT */
.nav-link-sticky {
  position: relative;
  font-weight: normal;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
  /* Add z-index to ensure text is on top of the border */
}

.nav-link-sticky::before,
.nav-link-sticky::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  /* Start from the left edge */
  height: 2px;
  background: white;
  width: 0;
  transition: width 0.3s ease;
  z-index: -1;
  /* Add z-index to keep the border below the text */
}

.nav-link-sticky::after {
  left: auto;
  right: 0;
  /* Start from the right edge */
  transform: none;
  /* Remove the transform for the right border */
}

.nav-link-sticky:hover::before,
.nav-link-sticky:hover::after,
.nav-link-sticky.active::before,
.nav-link-sticky.active::after {
  width: 100%;
  /* Extend the border to both sides */
}

/* NAVBAR SPECIAL EFFECT END */


/* COLOR SCHEME */

/* FONT COLOR */
.color-light {
  color: #15b6b3;
}

.color-mid {
  color: #0f7170;
}

.color-mint {
  color: #cdf1d7;;
}

/* BG COLOR */
.bg-lightgreen {
  background-color: #15b6b3 !important;
}

.bg-darkgreen {
  background-color: #0f7170;
}

.bg-mint {
  background-color: #cdf1d7;
}

/* BUTTON COLOR */
.btn.bg-color-light {
  background-image: linear-gradient(to right, #15b6b3, #cdf1d7) !important;
  color: white;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 25px;
  transition: transform 0.3s ease-in-out;
}

.btn.bg-color-light:hover {
  background-color: #15b6b3 !important;
  color: white;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.btn.btn-outline-primary {
  border-color: #15b6b3 !important;
  color: #15b6b3;
  /* background-color: rgba(255, 255, 255, 0.4) !important; */
  background-color: white;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: bold !important;
}

.btn.btn-outline-primary:hover {
  background-color: #15b6b3 !important;
  color: white !important;
}

.btn-outline-primary:focus {
  background-color: #15b6b3 !important;
  color: white !important;
}

.btn.btn-primary {
  background-color: #15b6b3 !important;
  border: none;
  font-family: 'Bebas Neue', sans-serif !important;
}

.btn.btn-primary:hover {
  background-color: #0f7170 !important;
}

/* .btn-primary:focus {
  background-color: #cdf1d7 !important;
} */

/* .btn.btn-outline {
  border-color: #0f7170 !important;
  color: #0f7170;
  background-color: white;
  font-family: 'Montserrat', sans-serif !important;
} */

/* TEXT */
.justify {
  text-align: justify;
}

/* NAVBAR & FOOTER */
.header-overlay {
  /* bottom: 0%; */
  z-index: 1000;
}

.navbar-brand {
  width: 75%;
}

.nav-logo {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
}

.footer-logo {
  width: 20%;
}


/* HOME */
.banner-caption {
  bottom: 37%;
  left: 50%;
}

.banner-title {
  font-size: 75px;
  color: white;
}

.banner-text {
  font-size: 20px;
  color: white;
}


.bg-num {
  translate: 0 175px;

}

.carousel-item {
  height: auto;
}

.home-li {
  list-style-type: square;
}

.btn.bg-color-light {
  font-family: 'Montserrat', sans-serif;
}



.about-section p {
  overflow-wrap: break-word;
  /* Wrap words that exceed the container width */
  word-wrap: break-word;
  /* Alternative property for older browsers */
}

