/**
 * @file
 * Views Hero
 *
 * Filename:     vvjh-576.css
 * Website:      https://www.flashwebcenter.com
 * Developer:    Alaa Haddad https://www.alaahaddad.com.
 */
@media (min-width:36rem) {
  .vvjh.br-576.vvjh-multiple.max-w .vvjh-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(var(--hero-item-width) * 1px), 1fr));
    --grid-gap: 1rem;
    gap: var(--grid-gap);
  }

  .vvjh.br-576 .hero-wrapper-inner {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    margin: auto;
    padding: 0 1rem;
  }

  .vvjh.br-576 .hero-content {
    transition: var(--hero-speed) var(--animation-easing);
    opacity: 0;
    position: relative;
    margin: 0;
    padding: 1rem;
  }

  .vvjh.br-576 .hero-wrapper .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vvjh.br-576 .hero-wrapper.a-fade .hero-content {
    opacity: 0;
  }

  .vvjh.br-576 .hero-wrapper.a-zoom .hero-content {
    transform: scale(0);
  }

  .vvjh.br-576 .hero-wrapper.a-top .hero-content {
    transform: translateY(-100%);
  }

  .vvjh.br-576 .hero-wrapper.a-right .hero-content {
    transform: translateX(100%);
  }

  .vvjh.br-576 .hero-wrapper.a-bottom .hero-content {
    transform: translateY(100%);
  }

  .vvjh.br-576 .hero-wrapper.a-left .hero-content {
    transform: translateX(-100%);
  }

  .vvjh.br-576 .hero-wrapper.a-fade.active .hero-content {
    opacity: 1;
  }

  .vvjh.br-576 .hero-wrapper.a-zoom.active .hero-content {
    transform: scale(1);
    opacity: 1;
  }

  .vvjh.br-576 .hero-wrapper.a-top.active .hero-content {
    transform: translateY(0);
    opacity: 1;
  }

  .vvjh.br-576 .hero-wrapper.a-right.active .hero-content {
    transform: translateX(0);
    opacity: 1;
  }

  .vvjh.br-576 .hero-wrapper.a-bottom.active .hero-content {
    transform: translateY(0);
    opacity: 1;
  }

  .vvjh.br-576 .hero-wrapper.a-left.active .hero-content {
    transform: translateX(0);
    opacity: 1;
  }

  /* Display Container */
  .vvjh.br-576 .hero-content.d-top-left {
    position: absolute;
    left: 16px;
    top: 16px;
  }

  .vvjh.br-576 .hero-content.d-top-right {
    position: absolute;
    right: 16px;
    top: 16px;
  }

  .vvjh.br-576 .hero-content.d-bottom-left {
    position: absolute;
    left: 16px;
    bottom: 16px;
  }

  .vvjh.br-576 .hero-content.d-bottom-right {
    position: absolute;
    right: 16px;
    bottom: 16px;
  }

  .vvjh.br-576 .hero-content.d-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .vvjh.br-576 .hero-content.d-left {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0%, -50%);
    -ms-transform: translate(-0%, -50%);
  }

  .vvjh.br-576 .hero-content.d-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
  }

  .vvjh.br-576 .hero-content.d-top-middle {
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }

  .vvjh.br-576 .hero-content.d-bottom-middle {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }

}

@media (max-width:35.99875rem) {
  .vvjh.br-576.vvjh-multiple.max-w .vvjh-inner {
    display: grid;
    grid-template-columns: 1fr;
    --grid-gap: 1rem;
    gap: var(--grid-gap);
  }

  .vvjh.br-576 .hero-wrapper-inner {
    width: 100%;
    margin-bottom: 1rem;
    min-height: initial !important;
  }

  .vvjh.br-576 .hero-content {
    background-color: transparent !important;
    max-width: 100% !important;
    width: 100%;
    margin-top: 1rem;
    transition: none !important;
  }

}
