﻿.split-panel
{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.split-panel-bg
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
}
.red-section
{
    background-color: #800000;
    flex: 4;
}
.split-panel-img
{
    display: none;
}
.split-layout-img img, .split-panel-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-panel
{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.split-panel-bg
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
}
.red-section
{
    background-color: #800000;
    flex: 4;
}
.split-panel-img
{
    display: none;
}
@media(min-width: 992px)
{
    .split-panel-img
    {
        display: block;
        flex: 6;
        overflow: hidden;
    }
}
.split-panel-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-panel-content
{
    position: relative;
    max-width: 60%;
    background: rgba(255,255,255,1);
    padding: 2em;
    text-align: left;
    z-index: 10;
    margin: 6em 0 6em 10%;
}
@media(max-width: 992px)
{
    .split-panel-content
    {
        max-width: 90%;
        margin: 2em auto;
        background: rgba(255,255,255,1);
    }
}
.content-card-wrapper
{
    position: relative;
    padding: 2em 0;
}
@media(min-width: 992px)
{
    .split-panel-img
    {
        display: block;
        flex: 6;
        overflow: hidden;
    }
}
.container
{
    position: relative;
    width: 90%;
    margin: 0 auto;
}
.content-card
{
    position: relative;
    padding: 2em;
    background: #fff;
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.split-layout
{
    display: flex;
    background-color: #fff;
    margin: 2em 0 2em 0;
}
.split-layout-img
{
    width: 50%;
}
.split-layout-txt
{
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-layout-txt h2
{
    font-size: 2.5em;;
    font-weight: 900;
    margin-bottom: 15px;
}
.split-layout-txt p
{
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}
@media(max-width: 768px)
{
    .split-layout
    {
        display: block;
    }
    .split-layout-img, .split-layout-txt
    {
        width: 100%;
    }
    .split-layout-txt
    {
        padding: 20px;
    }
}