:root {
    --color-deff: #5ba7b0;
}

body {
    background-color: #333;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}


.split-wrapper {
    display: flex;
    padding: 2rem;
    max-height: 100vh;
}

.split-item {
    position: relative;
    width: 50%;
    display: inline-block;
}

.split-item:hover .split-item-cover img {
    transform: scale(1.05);
}

.split-item-cover {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.split-item-cover::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: .55;
    pointer-events: none;
    z-index: 4;
}


.split-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease-in-out;
    position: relative;
    z-index: 1;
}

.split-item-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.split-item-logo img {
    width: 250px;
}

@media screen and (max-width: 700px) {

    body {
        height: unset;
        overflow: visible;
    }

    .split-wrapper {
        padding: 2.5rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .split-item {
        display: inline-block;
        width: 95%;
    }
}