:root {
    --oscuro: #0E6975;
    --turquesa: #3A9DA0;
    --quality: #50C9CC;
    --lightblue: #EAF4F4;
    --trending: #CF4E63;
    overflow-X: hidden;
}


.who {
    display: flex;
    height: 100vh;        overflow: hidden;
    justify-content: space-between;
}

.who div:first-child {
    background: var(--oscuro);
    max-width: 35vw;
    color: #fff;
    padding: 1rem;
}

.rightWho {
    max-width: 15vw !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    background: var(--oscuro);

}

.rightWho p {
    font-size: 1.75rem;
    color: #fff;
    padding: 1rem;
    line-height: 105%;
}

#video {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100vw !important;
    right: 2rem;
}

.h4 {
    background: transparent;
    color: var(--lightblue);
    line-height: 90% !important;
    font-size: 8rem;
    padding: 3rem 0 0;
}

.leftWho {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.leftWho p {
    font-size: 1.25rem;
	padding:0 0.5rem;
    color: var(--quality);
}

.work {
    padding: 10rem 1.5rem 1rem;
    display: flex;
}

.work img {
    width: 55vw;
}

.work p {
    color: var(--quality);
    font-size: 1.25rem;
    width: 70%;
    margin: 0 1rem;
	
}

.team {
    padding: 1rem 1rem 3rem;
}

.team p {
    color: var(--quality);
    font-size: 1.5rem;
}

.team div {
    height: 40vh;
}

footer {
    width: 98%;

}

@media screen and (min-width:1600px) {

    .team,
    .work {
        max-width: 80vw;
        transform: translate(10%, 0);
    }
}

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

    .who div:first-child {
        max-width: 30vw;
    }

    .rightWho {
        max-width: 20vw !important;
    }

    .h4 {
        font-size: 7rem;
    }
}

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

    .h4 {
        font-size: 6rem;
    }
}

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

    .h4 {
        font-size: 5rem;
    }

    .leftWho p {
        font-size: 1rem;
    }

    .rightWho p {
        font-size: 1.25rem;
    }

    .team p {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:900px) {
    .who {
        flex-direction: column;
    }

    .who div:first-child {
        max-width: 50vw;
    }

    /* #video {
        right: 0;
    } */

    .rightWho {
        align-self: flex-end;
        max-width: 50vw !important;
    }

    footer {
        width: 97%;
    }
}

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

    .who div:first-child {
        max-width: 100vw;
    }

    #video {
        right: 0;
    }

    .rightWho {
        align-self: flex-end;
        max-width: 80vw !important;
    }

    .work {gap:2rem;
        flex-direction: column;
    }

    .work img {
        width: 100%;
    }

    footer {
        width: 97%;
    }
}