.hero {
    position: relative;
    background: url('/assets/img/bodybg.webp') center center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 50% black overlay */
    z-index: 0;
}

.hero>.container {
    position: relative;
    z-index: 2;
}

.hero img {
    width: 25%;
    height: auto;
}

.testimonial-img {
    width: 350px;
    object-fit: cover;
    border-radius: 50%;
}