.floor-images-block {
    margin-left: -12px;
    margin-right: -12px;
}

@media (min-width: 768px) {
    .floor-images-block {
        width: auto;
    }
}

@media (min-width: 992px) {
    .floor-images-block {
        width: auto;
        margin-left: -128px;
        margin-right: -128px;
    }
}

.floor-images__column img {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    height: unset;
    width: unset;
    object-fit: cover;
}

.floor-images__text {
    background: #0091AF;
    height: 100%;
}

.floor-images__text-inner {
    display: flex;
    padding: 2rem;
    max-width: 415px;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}

.floor-images__text-inner h2 {
    font-size: 1.5rem;
    margin-bottom: .5rem !important;
}

.floor-images__text-inner p {
    font-size: 0.85rem;
    margin-bottom: 0 !important;
    word-break: break-word;
    word-break-wrap: break-word;
    word-wrap: break-word;

    @media (min-width: 992px) {
        font-size: 0.95rem;
    }
}

.floor-images__text-inner p:not(:last-child) {
    margin-bottom: 1rem !important;
}

.floor-images__video {
    position: relative;
    height: 100%;
}

.floor-images__video.video-contain {
    padding: 30px;
}

.floor-images__video.video-contain button.active {
    margin: 30px;
}

.floor-images__video button {
    opacity: 1;
    z-index: 2;
    background-color: transparent;
    border: none;
    display: block;
    font-size: 18px;
    left: 0;
    padding: 8px 16px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity .2s ease-in-out;
}

.floor-images__video button.active {
    opacity: 1;
    z-index: 2;
    background-color: rgba(0,0,0,.15);
    border: medium none;
    color: #fff;
    display: block;
    font-size: 18px;
    left: 0;
    padding: 8px 16px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity .2s ease-in-out;
}

.floor-images__video button.active:hover {
    opacity: 1;
}

.floor-images__video button.active:before {
    content: "";
    margin: auto;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.floor-images__video button.active:after {
    margin: auto;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    position: absolute;
    left: 5px;
    right: 0;
    top: 0;
    bottom: 0;
}

.floor-images__video-inner {
    z-index: 1;
    margin-bottom: -5px;
    width: 100%;
    height: 100%;
}