






/* ===== HERO BANNER ===== */
.paragraph--type--hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #1a1a1a; /* fallback no-video */
  overflow: hidden;
  color: #fff;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-link {
  margin-top: 1rem;
}





/*******************
 paragraph section
 *******************/

.paragraph--type--section .wrapper_section .col-left,
.paragraph--type--section .wrapper_section .col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paragraph--type--section .section-subtitle {
    color: var(--color_main);
    font-weight: 600;
    font-size: 1.8rem;
}
.paragraph--type--section .section-text-1 h3 {
    max-width: 70%;
    font-size: 2.5rem;
    margin-top: 2rem;
}
.paragraph--type--section a.btn.btn-primary {
    margin-top: 2rem;
}
.paragraph--type--section strong {
  color:  var(--color_main);
}
/*******************
 paragraph block
 *******************/
.border_orange,
.paragraph--type--block.border_orange {
  border: 1px solid var(--color_main);
  padding: 2rem;
  border-radius: 25px;
  margin: 3rem 0;
}

.paragraph--type--block.border_orange h2 {
  margin-bottom: 3rem;
}


/*******************
 paragraph slide
 *******************/
.paragraph--type--slide .slide_wrapper {
  position: relative;
}

.paragraph--type--slide .slide_wrapper .slide_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.75rem;
}

/* paragraph parallax */
.paragraph.parallax {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 var(--negativeMarginX);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.paragraph--type--parallax .field_text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1.5rem;
  color: var(--white);
}

@media (min-width: 992px) {
  .paragraph.parallax {
    background-attachment: fixed;
  }
}
