.about-wrapper {
    height: auto;
    position: relative;
}

.section--container#about {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5rem;
    box-sizing: border-box;
}

.paralax--img {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    border-radius: 70px;
    position: relative;
}

.paralax--img img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.about--text-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 5rem;
    box-sizing: border-box;
}

.about--text-animated {
    font-size: 4rem;
    font-weight: 550;
    line-height: 1.4;
    text-align: center;
    background: linear-gradient(to right, var(--white) 50%, rgba(255, 255, 255, 0.3) 50%);
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
}

.about--btn-cv {
    background-color: var(--white);
    color: black;
    padding: 0.8rem 6rem;
    border-radius: 50px;
    border: none;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: background-color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.about--btn-cv:hover {
    background-color: #ccc;
    color: black;
}