.about-container {
    display: flex;
    margin-bottom: 10em;
    margin-top: 10em;
}

.about-container img {
    align-self: center;
    max-width: 100%;
    height: auto;
}

.about-title {
    color: #000;
    font-size: 55px;
    line-height: 75px;
    margin-bottom: 25px;
}

.about-description {
    color: #000;
    font-size: 22px;
    line-height: 35px;
}

.about-cta {
    padding: 12px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
    background-color: #E59120;
    color: #fff;
    transition: background-color 0.3s;
    margin-top: 50px;
}

.about-cta:hover {
    background-color: #ca7d15;
    color: #fff;
    text-decoration: none;
}

@media(min-width: 990px) {
    #about > img {
        margin-right: 2em;
    }
}

@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        margin-bottom: 0em;
        margin-top: 0em;
    }    

    .about-title {
        text-align: center;
        font-size: 34px;
        line-height: 43px;
    }

    .about-description {
        font-size: 18px;
        line-height: 28px;
    }

    .about-cta {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        font-size: 18px;
        margin-bottom: 50px;
    }

    #about > img {
        margin-top: 4em;
        margin-bottom: 2em;
    }
}