.home-hero {
    height: 840px;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.home-hero:after {
    opacity: 0.8;
    z-index: 0;
    background: var(--black);
}

.home-hero,
.home-hero .hero-content,
.hero-reviews {
    display: flex;
    align-items: center;

}

.home-hero .hero-content,
.home-hero video {
    height: 100%;
    width: 100%;
}

.home-hero .hero-content {
    position: absolute;
    top: 50px;
}

.home-hero video {
    object-fit: cover;
    object-position: center;
}

.hero-reviews {
    flex-direction: row;
    gap: 50.41px;
    margin-top: 57px;
}

h1.hero-title {
    max-width: 915px;
}

h1.hero-title span {
    color: var(--yellow);
}

p.hero-description {
    max-width: 891px;
    margin: 10px 0 30px 0;
}

.hero-cta-group {
    gap: 17px;
}

.g-review {
    gap: 15px;
}

.g-review p {
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease-in-out;
}

.g-review:hover p {
    color: var(--yellow);
}

.home-hero .hero-reviews img:first-child {
    display: none;
}

@media only screen and (max-width : 992px) {
    .home-hero {
        height: 650px;
    }

    .hero-reviews {
        gap: 30px;
        margin-top: 34px;
    }

    p.hero-description {
        margin: 15px 0 34px 0;
    }

    .home-hero .hero-content {
        top: 30px;
    }
}

@media only screen and (max-width : 650px) {

    .home-hero {
        height: 750px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        min-width: 100%;
        justify-content: center;
    }

    .hero-reviews {
        gap: 20px
    }

    .hero-reviews img {
        max-width: 70px;
    }

    h1.hero-title br {
        display: none;
    }
}


@media only screen and (max-width : 576px) {
    .home-hero .hero-content {
        top: 15px;
    }
}

@media only screen and (max-width : 450px) {
    .home-hero {
        height: 800px;
    }
}

@media only screen and (max-width : 365px) {}