.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 0;
}

.profile-hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}


.profile-hero-column-right {
    min-width: 350px;
    min-height: 350px;
    max-width: 370px;
    max-height: 370px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.profile-hero-column-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-hero a.profile-btn.custom-style {
    background-color: var(--e-global-color-accent);
    color: #000517;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 17.6px;
    padding: 12px 56px 12px 56px;
    transition: 1s all;
}

.profile-hero a.profile-btn.custom-style:hover {
    background-color: var(--e-global-color-24221b1);
}

.profile-hero-column-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 56%;
}

@media screen and (max-width: 1024px) {
    .profile-hero-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media screen and (max-width: 936px) {
    .profile-hero-wrapper {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
    }

    .profile-hero a.profile-btn.custom-style {
        margin: 0 auto;
    }
}

@media screen and (max-width: 936px) {
    .profile-hero-column-left {
        width: 100%;
        max-width: 100%;
    }
}