astro-island,
astro-slot,
astro-static-slot {
    display: contents
}

.mainContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.detailsContainer {
    width: 100%;
}

.profileContainer{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    
}

.heroImg {
    width: 40%;
    display: none;
}

.aboutImg{
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin: 0.5rem 0 2rem 0;
}

.pluginContainer.profile{
    background-color: #fff !important;
}
.allPluginsContainer {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.modelContainer{
    max-width: 50%;
}

@media screen and (min-width: 1024px) {
    .detailsContainer {
        width: 100%;
        position: relative;
    }

    .heroImg {
        width: 40%;
        height: 100vh;
        overflow: hidden;
        position: sticky;
        top: 0;
        right: 0;
        padding-top: 3rem;
        display: block;
    }

    .heroImg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
}