.top-quote {
    display: block;
    background-color: var(--primaryColor);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    width: fit-content;
    box-shadow: 0 4px 10px var(--primaryColor);

}

.btn {
    background-color: var(--helperColor);
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    color: var(--white);
}

video {

    width: 100%;
    /* height: 300px; */
    aspect-ratio: 1 / 1;
    object-fit: cover;

    border-radius: 10px;

    display: block;
}

.page-hero {
    padding-top: var(--space-sm);
}

@media (max-width:767px) {
    .top-quote {

        font-size: 15px;
        font-weight: 400;
    }

    video {
        aspect-ratio: 1/1;
    }

}