.ifc {
    position: relative;
}

.ifc button {
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    background: none;
    padding: 0;
    outline: 0;
    border: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    transition: opacity .4s;
    color: #929292;
}

.ifc button:hover {
    opacity: .5;
}

.ifc button svg {
    width: 20px;
    height: auto;
}

.ifc__nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.ifc__card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 75px;
    box-shadow: 0 3px 50px rgb(231 213 192);
    background-color: white;
    width: 100%;
    transition: transform 1s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.ifc__card ul {
    margin-left: 0;
    margin-top: 25px;
}

.ifc__card li {
    list-style: none;
}

.ifc__card-left {
    width: 35%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.ifc__card-left > * {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center center;
}

.ifc__card-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

@media screen and (min-width: 900px) {

    .ifc {
        height: 650px;
    }

    .ifc__card {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .ifc__card-left:has(iframe) {
        width: 50%;
    }
}

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

    .ifc {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .ifc__nav {
        display: none;
    }

    .ifc__card {
        flex-direction: column;
        transform: unset !important;
        z-index: 1 !important;
    }

    .ifc__card-left:has(iframe) {
        width: 100%;
    }

    .ifc__card--hide-on-mobile {
        display: none !important;
    }
}