/* === About Area === */
.about_area {
    padding-top: 120px;
    padding-bottom: 120px;
}

.about_img_wrapper {
    position: relative;
    z-index: 1;
    padding-right: 100px;
    margin-left: 70px;
}

.about_area .about_img_wrapper {
    width: 400px;
    height: 500px;
}

.about_area .about_img_wrapper img {
    width: 100%;
}

.about_thumb_text {
    position: absolute;
    top: 30%;
    left: 0;
    transform: rotate(-90deg) translateY(-188px);
    z-index: -1;
}

.about_thumb_text h3 {
    color: #E6E6EC;
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.about_thumb_text h3::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #F55093;
    overflow: hidden;
    width: 100%;
    transition: all 2s ease-out 0s;
    animation: about-text 2s ease-in-out 1s forwards infinite alternate-reverse;
}

@keyframes about-text {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.about_experience {
    position: absolute;
    right: 20px;
    bottom: 30px;
    padding: 15px 31px 8px;
    background-color: #ffffff;
    box-shadow: 0 30px 50px #03041c1a;
    z-index: 99;
}

.about_experience h4 {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(78.5deg, #5a5bff 23.32%, #f43d55 83.37%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0;
}

.about_experience p {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 26px;
}

.about_me_title h3 {
    font-size: 70px;
    color: #1c1c1c;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
}

.about_me_title p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 23px;
}