.profileBanner {
    padding-bottom: 37.4%;
    margin: -90px 0 0 0;
}
.profileBanner img{
    object-fit: cover;
}

.profileBanner .editBanner {
    bottom: 34%;
    right: 50px;
    height: 45px;
    width: 45px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    color: var(--blackColor);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 0px #fff;
}


.editBanner input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
@media screen and (max-width: 639px) {
    .profileBanner {
        padding-bottom: 100%;     
    }
    .profileBanner .editBanner {
        bottom: 20px;
    }
}