.profile_banner {
    width: 100%;
    height: 425px;
    object-fit: cover;
    border-radius: 15px;
}
.profile_avatar {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid #9EA2AE;
    position: absolute;
        bottom: -36px;
    left: 42px;

}
.profile_title {
    padding-left: 292px;
}
.profile_name {
    font-size: 32px;
    font-weight: bold;
    padding: 20px 0;
}
.profile_btn {
    display: flex;
    gap: 10px;
}
.container {
    position: relative;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    color: #007AFF;
}
.pagination i,.pagination  div {
    cursor: pointer;
}

.pagination-current {
    font-weight: bold;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    background-color: #007AFF;
}
@media (max-width: 768px) {
    .profile_banner {
        height: 158px;
    }
    .profile_avatar {
        width: 80px;
        height: 80px;
        left: 36px;
        bottom: 0;
    }
    .profile_title {
        padding-left: 108px;
    }
    .profile_name {
        font-size: 16px;
        padding: 0;
        padding-bottom: 6px;
    }
.profile_btn {
        padding-bottom: 15px;
    }
    .profile_btn button {
        place-content: center;
        padding: 0 16px;
        height: 21px;
        font-size: 10px;
        border-radius: 5px;
    }
}