/* TWO COLUMNS */

section.two-columns {
    position: relative;
}
section.two-columns .text {
    margin: 0 auto;
    max-width: 700px;
}
section.two-columns .text h2 {
    color: #FFFFFF;
    margin: 0 auto 1em;
    text-align: center;
}
section.two-columns .columns {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 2em 0;
    position: relative;
}
section.two-columns .columns:before {
    background-color: #FFF;
    content: "";
    top: 0;
    left: calc(50% + 1px);
    position: absolute;
    z-index: 1;
    width: 2px;
    height: 100%;
}
section.two-columns .columns .column {
    flex: 1;
    padding: 0;
}
section.two-columns .columns .column.left {
    padding: 0 50px 0 0;
}
section.two-columns .columns .column.right {
    padding: 0 0 0 50px;
}
section.two-columns .columns .column.has-styled-list ul {
    margin-bottom: 0;
}
section.two-columns .columns .column.has-styled-list ul li:before {
    color: #FFFFFF;
}

@media all and (max-width: 769px) {
    section.two-columns .columns {
        flex-direction: column;
    }
    section.two-columns .columns:before {
        display: none !important;
        /*
        width: 100%;
        height: 2px;
        left: 0;
        top: calc(50% - 1px);
        */
    }
    section.two-columns .columns .column.left {
        padding: 0 0 40px 0;
    }
    section.two-columns .columns .column.right {
        padding: 0 0 0 0;
    }
}
section.two-columns .columns .column span,
section.two-columns .columns .column p,
section.two-columns .columns .column li, 
section.two-columns .columns .column h2,
section.two-columns .columns .column h3, 
section.two-columns .columns .column h4 {
    color: #FFFFFF;
}
section.two-columns .columns .column h3 {
    margin-bottom: 5px;
}
section.two-columns .columns .column p:last-child {
    margin-bottom: 0;
}

