section.two-text-columns{
    margin:0 0;
    
}

section.two-text-columns .wrapper{
    display: flex;
    margin:0 -2.5%;
}

section.two-text-columns .col{
    margin:0 2.5%;
    flex:0 0 45%;
}

section.two-text-columns .col p{
    font-size: 1em;
    font-weight: 500;
    line-height: 1.75em;
}

section.two-text-columns h1 {
    font-size: 6vw;
    margin: 0 0 2rem 0 ;
    color: var(--light-gold);
}

section.two-text-columns h2{
    position:relative;
    margin-bottom: 25px;
    padding-bottom: 5px;
    font-size: 4em;
    color: var(--light-gold);
    max-width: 850px;
      text-wrap: balance;
}

section.two-text-columns .wrapper h2{
    max-width: none;
    text-wrap:none;
}

section.two-text-columns hr {
    border: none;
    height: 1px;
    background: var(--white-color);
}

section.two-text-columns h3{
    position:relative;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 2.25em;
    font-weight: 900;
    color: var(--light-gold);
}

section.two-text-columns h4{
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 1.75em;
    font-weight: 500;
    color: var(--font-color);
}

section.two-text-columns h5 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-weight: 600;
    color: var(--font-color);
}




section.two-text-columns ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem 0;
}

section.two-text-columns ul li {
    margin: 1em 0;
    padding-left: 20px;
    position: relative;
    font-size: 1em;
    color: var(--main-color);
}

section.two-text-columns ul li:before {
    content:'\f0c8';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    position: absolute;
    font-size: 0.75em;
    top: 4px;
    left: 0;
    color: var(--second-color);
}

section.two-text-columns p.subtitle{
    color: #fff;
    font-size: 1.5em;
}

section.two-text-columns p {
    margin: 0 0 30px;
}

/* dark styling */

section.two-text-columns.dark {
    background: var(--main-color);
}


section.two-text-columns.dark h4, 
section.two-text-columns.dark h5,
section.two-text-columns.dark p {
    color: var(--white-color);
}

section.two-text-columns.dark a:hover {
    color: var(--white-color);
}

section.two-text-columns.dark p {
    font-weight: 300;
    color: var(--light-font-color);
}

section.two-text-columns.dark ul li {
    color: var(--white-color);
}


@media screen and (max-width:920px){
    section.two-text-columns .wrapper{
        display: flex;
        margin:0px;
        flex-direction:column;
    }
    section.two-text-columns .col{
        margin:0;
        flex:0 0 100%;
    }
}