:root {
  /* FONT SIZE  */
  --fs-xl: 4rem;
  --fs-l: 2rem;
  --fs-600: 1.25rem;
  --fs-400: 1rem;
  --fs-200: 0.85rem;
  --fs-breadcrumbs: 0.75rem;

  /* COLOR  */
  --accent-color: #fe6b16;
  --black-color: black;
  --gray-color: #f9f9f9;
  --torr-blue-color: #0a518f;

  /* FONT WEIGHT  */
  --fw-semibold: 700;
  --fw-bold: 800;
  --fw-thin: 500;
  --fw-bold-700: 700;
  --font-semi-bold: 400;

  /* header  */
  --header-height: 3.5rem;
  --white-color: #fff;
  --white-color-dark: #f9f9f9;
  --white-color-darken: #e1e1e1;
  --accent-color: #ec681f;
  --z-fixed: 100;

  /* margin bottom  */
  --m-bottom__xs: 0.25rem;
  --m-bottom__s: 0.5rem;
  --m-bottom__m: 0.75rem;
  --m-bottom__l: 1rem;
  --m-bottom__xl: 1.25rem;
  --m-bottom__xxl: 1.5rem;

  --margin-default: 5vh 15%;
}

/*body {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  outline: none;*/
/*  box-sizing: border-box;*/
/*  font-family: "Montserrat", sans-serif;*/
/*  text-rendering: optimizeLegibility;*/
/*}*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

/* Lines */
.horizontal-lines {
  display: flex;
  justify-content: space-between;
}

.custom-line {
  width: 15%;
  border-top: 3px solid #fe6b16;
}

.default-line {
  flex-grow: 1;
  border-top: 1px solid #949494; /* Adjust color and style as needed */
}
/* <div class="horizontal-lines">
<div class="custom-line"></div>
<div class="default-line"></div>
</div> */

@media screen and (max-width: 768px) {
  :root {
    --fs-xl: 3rem;
    --fs-l: 1.5rem;
    --fs-600: 1rem;
    --fs-400: 0.8rem;
    --fs-200: 0.8rem;
  }
}

@media screen and (max-width: 450px) {
  :root {
    --fs-xl: 2rem;
  }
}

/* TOP BUTTON STYLE  */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--torr-blue-color); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  font-size: var(--fs-200); /* Increase font size */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

/* // HERO - BANNER */
.background {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden; /* Ensure the image doesn't overflow */
}
.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image scales properly */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; /* Ensures the image is below the content */
  filter: brightness(30%);
}
.overlay {
  position: relative;
  z-index: 0; /* Ensures text is above the image */
  text-align: left;
  padding-left: 15%;
}

.overlay h1 {
  font-size: var(--fs-xl);
  color: white;
  font-weight: bold;
}

.overlay p,
.overlay a {
  color: white;
  text-decoration: none;
  font-size: var(--fs-breadcrumbs);
}

@media screen and (max-width: 75em) {
  .background {
    height: 25vh;
    justify-content: center;
  }

  .hero-links {
    display: none;
  }
  .overlay {
    text-align: center;
    padding-left: 0;
  }
}
