.home {
    display: flex;
    background-color: #101112;
    background-size: cover;
    height: 100vh;
    padding: 0;
    color: #ffffff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width {
    margin: auto 0 auto 15%;
}

.home .home-content .text-1 {
    font-size: 27px;
}

.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 500;
    margin-left: 10px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: #167c4e;
    font-weight: 500;
}

.down-btn {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsivo */
@media (max-width: 950px) {
    .home .max-width {
        margin-left: 10%;
    }
    .home .home-content .text-1 {
        font-size: 20px;
    }

    .home .home-content .text-2 {
        font-size: 65px;
    }

    .home .home-content .text-3 {
        font-size: 30px;
    }
}

@media (max-width: 690px) {
    .home .home-content .text-1 {
        font-size: 15px;
    }

    .home .home-content .text-2 {
        font-size: 55px;
    }

    .home .home-content .text-3 {
        font-size: 25px;
    }
}

@media (max-width: 570px) {
    .home .home-content .text-2 {
        font-size: 47px;
    }

    .home .home-content .text-3 {
        font-size: 20px;
    }
}

@media (max-width: 465px) {
    .home .home-content .text-2 {
        font-size: 37px;
    }

    .home .home-content .text-3 {
        font-size: 20px;
    }
}