.list-parceiros {
    list-style: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
}

.list-parceiros li {
    margin: 20px;
}

header {
    width: 100%;
    min-height: 100vh;
    padding: 1em 0;
    position: relative;

}

#myVideo {
    display: none;
}

#myVideoMobile {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    width: 100%;
    object-fit: cover;
}



.home {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: space-evenly;
    margin-top: 20vh;

}

.home-title {
    font-size: 2.75em;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: white;
    width: 90%;
    max-width: 600px;

}

.home-button-link {
    background-color: var(--highlight);
    padding: 1em;
    color: var(--background);
    border-radius: 1em;
    text-align: center;
    width: 80%;
    max-width: 400px;
    transition: .3s ease-in-out;



}

.home-button-link:hover {
    cursor: pointer;
    background-color: var(--background);
    border: solid 1px var(--highlight);
    color: white;

}

.home-button {
    background-color: transparent;
    border: none;
    color: inherit;

    font-family: 'Outfit', sans-serif;
    font-size: .75em;
    letter-spacing: .25em;
    font-weight: 800;
    text-transform: uppercase;
}

.home-button:hover {
    cursor: pointer;
}

.img-testimonial {
    display: block;
    width: 150px !important;
    height: 150px !important;
    border-radius: 25% !important;
    margin: 0 auto !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.text-testimonial {
    padding: 20px;
}

.link-testimonial {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}


@media (min-width: 600px) {

    header {
        min-height: 0;
        height: 85vh;
    }

    #myVideoMobile {
        display: none;
    }



    #myVideo {
        display: flex;
        position: absolute;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
    }


    .home {
        margin-top: 10%;
    }

    .home-title {
        font-size: 4em;
    }

}