.about {
    background-color: #303030;
}

.about .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .about-content .column {
    width: calc(50% - 20px);
}

.about .about-content .left {
    text-align: center;
}

.about .about-content .left img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fafafa;
}

.about .about-content .right p {
    text-align: justify;
    color: #eeeeee;
}

.about .about-content .right .access-btn {
    display: flex;
    margin: 30px 20px 0 10px;
    align-items: center;
    justify-content: end;
}

.about .about-content .right .access-btn .download-cv {
    display: inline-block;
    background-color: #146c45;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 10px;
    border: 2px solid #146c45;
    transition: all .3s ease;
}

.about .about-content .right .access-btn .download-cv:hover {
    color: #146c45;
    background: transparent;
}

.about .about-content .right .access-btn .link-btn a:last-child {
    margin-left: 20px;
}

.about .about-content .right .access-btn .link-btn img {
    width: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Responsivo */
@media (max-width: 1200px) {
    .about .about-content .left img {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 951px) and (max-width: 1000px) {
    .about .about-content .right .access-btn {
        margin-right: 0;
    }
}

@media (max-width: 950px) {
    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 50px auto;
        width: 70%;
    }

    .about .about-content .right {
        flex: 100%;
    }
}

@media (max-width: 690px) {
    .about .about-content .left {
        margin: 0 auto 20px auto;
        width: 80%;
    }
}

@media (max-width: 550px) {
    .about .about-content .left img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 400px) {
    .about .about-content .left img {
        width: 250px;
        height: 250px;
    }

    .about .about-content .right .access-btn {
        display: block;
        text-align: center;
    }

    .about .about-content .right .access-btn .link-btn {
        margin-top: 20px;
    }
}