.masked-image-holder {
    padding: 50px 25px;
}
.masked-image {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}
.masked-image .stroke {
    position: absolute;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    z-index: 1;
}
.masked-image .stroke svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: none;
    overflow: visible;
    stroke-width: 3px;
    stroke: #e35544;
}
.bg-dark .masked-image .stroke svg {
    stroke: #b03058;
}
.masked-image .image-container {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    mask-repeat: no-repeat;
}
.masked-image .image-container img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
