
.cbf-tabfield {
    display: flex;
    min-height: 70vh;
}

.cbf-tabfield .cbf-col1 {
    width: 38.2%;
    background: white;
    padding: 4% 8%;
}
.cbf-tabfield .cbf-col2 {
    width: 61.8%;
    padding: 4% 8%;
    color: white;
    overflow: hidden;
    position: relative;
    align-items: center;
    display: flex;
    z-index: 0;
}


.cbf-tabfield  h2{
    border-bottom: 1px solid #EBEDED;
    padding-bottom: 2em;
    margin-bottom: 1em;
    position: relative;
    text-transform: uppercase;
}

.cbf-tabfield  h2:after{
    position:absolute;
    height:.25em;
    width:3em;
    background:#159753;
    content:"";
    left:0;
    bottom:1em;
}

.cbf-tabfield button{
    background: none;
    border: none;
    color:initial;
    border-radius: 0;
    width: 100%;
    text-align: start;
    margin-bottom: .5em;
    padding-left: 0;
}
.cbf-tabfield button:hover{
    background: none !important;
    border: none;
    color:#159753;
}

.cbf-tabfield button:active,.cbf-tabfield button:focus{
    background: none;
    border: none;
    color:initial;
outline: none;
}

.cbf-tabfield button.active{
    color:#159753;
}

.cbf-tabfield .cbf-content{
    vertical-align: bottom;
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}
.cbf-tabfield .cbf-content.active{
    display: block;
    animation: fadeIn 1s;
    animation-fill-mode: forwards;
}

.cbf-tabfield .cbf-content.active:before{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    content:"";
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #000000 60%);
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

.cbf-tabfield  img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
    border-radius: 0;
    width: 100%;
    min-height: 100%;
}


.cbf-tabfield .cbf-text{
    padding: 30px;
    font-size: 1rem;
    margin: .25em 0 2.4em 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}
.cbf-tabfield .cbf-fieldtitle{
    font-weight: bold;
    margin: .25em 0 .25em 0;
}

@keyframes fadeOut {
    0% { opacity: 1;}
    99% { opacity: 0.01;}
    100% { opacity: 0;display: none;}
}
@keyframes fadeIn {
    0% { opacity: 0;}
    99% { opacity: 0.99;}
    100% { opacity: 1;display: block;}
}

@media (max-width: 767px){
    .cbf-tabfield{
        flex-direction: column;
    }
    .cbf-tabfield .cbf-col1,.cbf-tabfield .cbf-col2{
        width: 100%;
    }
    .cbf-tabfield .cbf-col2{
        padding-top: 60%;
    }
}