
#the_three_cs{
    margin-bottom: 40px;
}

#the_three_cs .flex-container{
    justify-content: center;
    display: flex;
}

#the_three_cs .column{
    border: solid 1px #EAF3F3;
    margin: 0 10px;
    width: 33.33%;
    box-shadow: 2px 3px 14px rgba(105,105,105,0.1);
}#the_three_cs .column h3{
    line-height: 26px;
    font-size: 22px;
    display: table;
    color: #007579;
}

#the_three_cs .column h3:after{
    background-color: #ec7200;
    margin: 12px 0 0 0;
    display: block;
    content: "";
    height: 6px;
    width: 40px;
}

#the_three_cs .column .hero{
    background-color: #474b56;
    position: relative;
    min-height: 160px;
    overflow: hidden;
    display: block;
}

#the_three_cs .column .content{
    padding: 20px;
}

#the_three_cs .button-content{
    padding: 40px 0 0 0;
}

#the_three_cs .button-content .button{
    margin: 0 auto;
}

#the_three_cs .lazy img{
    height: auto;
    width: 100%;
    opacity: 0;
}

#the_three_cs .lazy span{
    transition: opacity 400ms ease-in-out;
    background-color: #ec7200;
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 0;
    left: 0;
    top: 0;
}

#the_three_cs .lazy span.show-image{
    opacity: 1;
}

#the_three_cs .lazy span img{
    height: 100%;
    width: 100%;
    opacity: 0;
}

@media screen and (max-width: 720px) {
    #the_three_cs .flex-container{
        display: block;
    }

    #the_three_cs .column{
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }

    #the_three_cs{
        margin-bottom: 20px;
    }

    #the_three_cs .column .content{
        padding: 20px 20px 0 20px;
    }
}