/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./source/hero_block/hero_block.scss ***!
  \****************************************************************************************************************************/
.hero-block-container {
  min-height: 25rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 2000px;
  margin: 1rem auto;
  /**
    Sub menu offcanvas
   */
  /**
    Hero block content
  */
}
.hero-block-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-block-container .video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-block-container .hero-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 101;
}
.hero-block-container .hero-backdrop.show {
  display: block;
}
.hero-block-container .hero-content-container {
  z-index: 101;
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 75%;
  min-height: 40%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-block-container .hero-content-container .hero-title {
  z-index: 1;
  font-weight: bold;
  font-size: 3.5rem;
  color: var(--theme-secondary-color, #fff);
  text-shadow: 0 0 5px black;
}
.hero-block-container .hero-content-container .hero-menu-container {
  z-index: 2;
  position: relative;
  margin-top: auto;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu li {
  height: fit-content;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu li a {
  color: var(--theme-secondary-color, #fff);
  text-decoration: none;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link {
  display: flex;
  min-height: 4rem;
  width: 100%;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link.active a:after {
  rotate: 180deg;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link a {
  font-weight: bold;
  font-size: 1.3rem;
  margin: auto;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link a:after {
  display: inline-block;
  content: "";
  vertical-align: -0.125em;
  background-image: url("data:image/svg+xml,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 fill=%27white%27 viewBox=%270 0 16 16%27><path d=%27M3.204 5h9.592L8 10.481zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659%27/></svg>");
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.25rem;
  left: 8px;
  position: relative;
  rotate: 0deg;
  transition: rotate 0.3s ease-in-out;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu {
  background: var(--theme-background-color, #fff);
  z-index: 2;
  position: absolute;
  bottom: 140%;
  left: 0;
  width: 100%;
  min-height: 15rem;
  display: flex;
  padding: 1.75rem 0.5rem;
  opacity: 0;
  transform: translate(-5%, 5%) scale(90%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  pointer-events: none;
  visibility: hidden;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu.show {
  opacity: 1;
  transform: translate(0, 0) scale(100%);
  pointer-events: auto;
  visibility: visible;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list {
  display: flex;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list .submenu-link.level--0 > a {
  font-weight: bold;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list .submenu-link a {
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list .submenu-link a:hover {
  text-decoration: underline;
}
.hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list ul {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
@media screen and (max-width: 1000px) {
  .hero-block-container {
    min-height: 20rem;
  }
  .hero-block-container .hero-content-container {
    max-width: 95%;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link {
    min-height: 3rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link a {
    font-size: 0.9rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link a:after {
    rotate: 180deg;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link.active a:after {
    rotate: 0deg;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-submenu {
    top: 130%;
    bottom: auto;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list .submenu-link a {
    font-size: 1.1rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-submenu .hero-submenu-list ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 867px) {
  .hero-block-container .hero-content-container .hero-title {
    margin-bottom: 1rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .hero-block-container {
    min-height: 18rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-root-menu .btn-root-link {
    min-height: 2rem;
  }
  .hero-block-container .hero-content-container .hero-menu-container .hero-submenu {
    top: 110%;
  }
}

/*# sourceMappingURL=hero_block.min.css.map*/