#divisor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.divisor-span {
    color: antiquewhite;
}

.divisor-h2 {
    line-height: none;
    color: #fff;
}

.divisor-p {
    width: 70%;
    text-align: center;
}

@media screen and (max-width:1170px) {
    #divisor {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 80%;
    }

    .divisor-p {
        width: 100%;
        text-align: justify;
    }

    .divisor-h2 {
        line-height: none;
        color: #fff;
        text-align: center;
        font-size: 2rem;
        text-transform: capitalize;
        margin-top: 10px;
        margin-bottom: 15px;
    }
}