@media (max-width: 669px) {

    /* small split screen  */

    .split_panel {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .split_panel .left {
        display: none;
    }

    .split_panel .right {
        width: 100%;
        height: 100%;
        background-color: #fff;
    }

    .split_content {
        padding: 80px 20px 20px 20px;
        width: calc(100% - 40px);
    }

    .go_home {
        padding-top: 40px;
        font-size: 16px;
        font-weight: 400;
        color: #aaa;
        text-align: center;
    }
    
    

}

@media (min-width: 670px) {

    /* large split screen */

    .split_panel {
        width: 100%;
        height: 100%;
        min-height: 600px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .split_panel .left {
        position: relative;
        width: 50%;
        max-width: calc(100% - 520px);
        height: 100%;
        background-blend-mode: soft-light;
        background-position: top center;
    }


    .split_panel .left .background_image {
        position: absolute;
        left: 50px;
        top: 100px;
        height: 600px;
        width: 600px;
        background-blend-mode: multiply;
        background-size: cover;
    }

    .split_panel .right {
        position: relative;
        width: 50%;
        min-width: 520px;
        height: 100%;
        background-color: #fff;
    }

    .split_content {
        position: absolute;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
    }

    .go_home {
        padding-top: 20px;
        font-size: 14px;
        font-weight: 400;
        color: #aaa;
    }
    
    

}


.split_head {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.split_head img {
    height: 60px;
}


.split_rows {
    padding-top: 50px;
    font-size: 20px;
    font-weight: 500;
    color: #888;
}

.split_rows .row {
    display: flex;
    align-items: center;
    /* width: 400px; */
    padding: 10px;
    box-sizing: border-box;
    font-size: 18px;
}

.split_rows .icon {
    margin-right: 10px;
}

.split_rows .icon img {
    width: 30px;
    height: 30px;
}

.split_rows .text {
    flex-grow: 1;
}

.split_cta_area {
    padding-top: 50px;
}



.go_home:hover {
    color: #333;
}

.go_home img {
    height: 11px;
    padding-right: 10px;
    opacity: 0.2;
}

.make_title {
    position: absolute;
    bottom: 40px;
    right: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0px 0px 16px rgba(0,0,0,0.6);
    text-align: right;
}

.make_attribution {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-shadow: 0px 0px 16px rgba(0,0,0,0.6);
    text-align: right;
}