
  /* ============================================= */
/*  SECTION HERO
/* ============================================= */

/* #hero {
    min-height: 600px
} */

#hero {
    position: relative;
    overflow: hidden;
    --hero-height: 80dvh;
  }
  
  .hero-bg {
    position: relative;
    min-height: var(--hero-height);
  }
  
  .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    transform: translateY(0);
    will-change: transform;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 66, 113, 0.8);
    z-index: 1;
    overflow: hidden;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: var(--hero-height);
  }

  .title-wrapper {
    position: relative;
  }
  
  /* start smaller (or larger) and animate to 1 */
  .title-wrapper::before {
    content: "";
    position: absolute;
    top: -3.8rem;
    left: -10px;
    border: 1px solid #ffffff7e;
    border-radius: 50%;
    width: 10rem;
    aspect-ratio: 1;
    mix-blend-mode: overlay;
    transform-origin: center;
    transform: scale(0.8);         /* initial state */
    transition: transform 1s ease-out;
    will-change: transform;
  }
  
  /* when visible -> play once */
  .title-wrapper.is-visible::before {
    transform: scale(1.2);
  }
  
  /* accessibility */
  @media (prefers-reduced-motion: reduce) {
    .title-wrapper::before {
      transition: none;
      transform: none;
    }
  }
  
  h1.title-wrapper::before {
    top: -3.8rem;
    left: -30px;
  }



/* ============================================= */
/*  SECTION ABOUT US 
/* ============================================= */

.section-title-row {
    margin-bottom: 100px;

    & h2 {
        font-size: 4rem;
        text-transform: uppercase;
    }
    &.title-wrapper::before {
        top: -2.8rem;
    }
}

.img-circle {
    position: relative;
    display: block;
    z-index: 1;
}

.img-circle::before {
    display: block;
    content: "";
    position: absolute;
    bottom: -20%;
    left: -20%;
    border: 1px solid #ffffff7e;
    border-radius: 50%;
    width: 80%;
    aspect-ratio: 1;
    mix-blend-mode: overlay;
    z-index: 0;
    /* background-color: red; */
}

.section-content {

    & h4 {
        font-size: 2rem;
        font-weight: 300;
        text-transform: uppercase;
        color: var(--light-blue);
        margin-bottom: 20px;
    }

    & li {
        position: relative;
        margin-bottom: 0,5rem;
        font-weight: 200;
    }

    & li::before {
        content: "";
        position: absolute;
        left: -1.8rem;
        top: 0.2rem;
        border-radius: 50%;
        border: 1px solid var(--light-blue);
        width: 15px;
        aspect-ratio: 1;
        margin-right: 10px;
        font-size: 2rem;
        font-weight: 300;
        text-transform: uppercase;
        color: var(--light-blue);
    }
}

.our-services-img {
   width: 80%;
   margin: 0 auto;
   margin-top: -50px;
}



h3.title-wrapper::before {
    text-align: center;
    font-weight: 200;
    top: -3.5rem;
}

  /* ============================================= */
/*  PAGE CONTACT 
/* ============================================= */

.subpage-title {
    text-align: center;

    & h1 {
        display: inline;
        font-size: 4rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    & .title-wrapper::before {
        top: -2rem !important;
        left: -30px;
    }

}

.subpage-title .title-wrapper::before {
    top: -3.8rem;
    left: -30px;
}


  /* ============================================= */
/*  PAGE THANKS 
/* ============================================= */

#thank-you {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 200px);
    position: relative;
    background-size: cover;
    background-position: center;
  }
  
  .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: 0.8;
    z-index: 1; /* lower than content */
  }
  
  #thank-you-section {
    position: relative;
    z-index: 2; /* make all content above overlay */

    & h1 {
        font-weight: 600;
    }
  }
  
  .thank-you-content {
    margin-top: 50px;
    margin-bottom: 50px;

    & p  {
        font-size: 1.5rem;
    }
  }
  



/*  SECTION COOKIE BANNER /////////////////////////////// */

/* Overlay behind cookie banner */
/* #cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 9998;
    display: none;
    transition: all 0.3s ease;
}

.cmplz-cookiebanner.cmplz-show {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    max-width: 90%;
    width: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly;
    /* align-items: center; */
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 16px;
}

.cmplz-title {
    font-size: 1.5rem !important;
}

.cmplz-message {
    width: 95% !important;
}

.cmplz-categories {
    width: 100% !important;
} */


/* ===================================================== */
/* ===================================================== */
/* SECTION MEDIA QUERIES  */
/* ===================================================== */
/* ===================================================== */


@media (max-width: 1950px) {
}

@media (max-width: 1300px) {
}

@media (max-width: 992px) {

}
@media (max-width: 768px) {
    .hero-content {
        padding-inline: 10%;
    }

    h1 {
        font-size: 1.2rem;
    }

    .title-wrapper {

        & h2 {
            font-size: 2.5rem;
        }

        &::before {
            top: -1rem !important;
            left: -40px;
            width: 6rem;
        }
    }

    .section-content {
        margin-bottom: 40px;
    }

}

@media (max-width: 576px) {
    .navbar-brand {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    h3.title-wrapper {
        font-size: 2rem;
    }

    h3.title-wrapper::before {
        text-align: center;
        font-weight: 200;
        top: -1.8rem;
        left: -30px;
        width: 6rem;
  
    }

    .wpcf7-form {
        max-width: 90%;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }