.image-fullwidth__block{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.imageFullWidth {
    width: 100%;
    display: flex;
    justify-content: center;
}

img.imageFullWidth__image {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

img.imageFullWidth__image.is-fullwidth-only {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.imageFullWidth__float-image-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.imageFullWidth__float-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}