/* Hero Section */
.hero .boxV2 {
  background-image: url("../images/data/bg-hero01.webp"), url("../images/data/bg-hero02.webp"), url("../images/data/bg-hero03.webp"), url("../images/data/bg-hero04.webp");
  background-position: left 5px top 5px, right 5px top 5px, right 5px bottom 5px, left 5px bottom 5px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 70px, 70px, 70px, 70px;
  position: relative;
  background-color: var(--cta-color);
  height: 300px;
}
.hero .boxV2 h1,
.hero .boxV2 h2 {
  font-family: var(--font-logo);
}
.hero .boxV2 img.line {
  width: 80px;
}
.hero .boxV2 img.qr {
  width: 100px;
}
@media (min-width: 768px) {
  .hero .boxV2 {
    position: absolute;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(var(--cta-color-rgb), 0.55);
  }
  .hero .boxV2::before, .hero .boxV2::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(var(--primary-color-rgb), 0.55);
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    transition: all 0.3s;
  }
  .hero .boxV2::before {
    top: -1.25rem;
    left: -1.25rem;
  }
  .hero .boxV2::after {
    top: -0.75rem;
    left: -0.75rem;
  }
  .hero .boxV2:hover::before, .hero .boxV2:hover::after {
    top: -1rem;
    left: -1rem;
  }
  .hero .boxV2.left {
    left: 5%;
  }
  .hero .boxV2.right {
    right: 5%;
  }
}
@media (min-width: 992px) {
  .hero .boxV2.left {
    left: 6%;
  }
  .hero .boxV2.right {
    right: 6%;
  }
  .hero .boxV2 img.line {
    width: 80px;
  }
  .hero .boxV2 img.qr {
    width: 100px;
  }
}
@media (min-width: 1200px) {
  .hero .boxV2.left {
    left: 10%;
  }
  .hero .boxV2.right {
    right: 10%;
  }
  .hero .boxV2 img.line {
    width: 80px;
  }
  .hero .boxV2 img.qr {
    width: 150px;
  }
}
@media (min-width: 1400px) {
  .hero .boxV2.left {
    left: 10%;
  }
  .hero .boxV2.right {
    right: 10%;
  }
}/*# sourceMappingURL=style2.css.map */