.background-gradient {
    background: linear-gradient(90deg, #000 0%, #737373 100%);
}

.hero.is-fullheight-with-navbar .hero-body {
    justify-content: center;
    gap: 1rem;
}

.hero-image {
    max-width: 400px;
    height: auto;
    border: 2px solid #fff;
}

.has-waves {
    background-image: url('/static/img/home/wave.svg'), linear-gradient(90deg, #000 0%, #737373 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

.has-waves-flipped {
    background-image: url('/static/img/home/wave_flipped.svg'), linear-gradient(90deg, #000 0%, #737373 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

.price-container {
    position: relative;
}

.price-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/img/humandesign/logo_blank.png') no-repeat;
    background-position-x: center;
    background-size: contain;
    opacity: 0.1;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
