/* =========================================================
   HQ Background: Style
   key: dbar-band-02
   name: LG CASABLANCA D-Bar
   group: band
   type: Style
   layer: band
   value:
   selector:
   ========================================================= */

.c-band {
  margin-top: 80px;
  background: transparent;
  animation: bandSlideIn 0.8s ease-out both;
}

.c-band__inner {
  padding: 16px 0 14px;
}

.c-band .c-heading-plain {
  margin: 0;
}

/* =========================================================
   Band Animation
   ========================================================= */

@keyframes bandSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SP */
@media (max-width: 767px) {
  .c-band {
    margin-top: 70px;
  }

  .c-band__inner {
    padding: 14px 0 12px;
  }
}
