section.two-text-columns{
    padding:0 5%;
    margin:75px 0;
    
}

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

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

.two-text-columns-title {
    text-align: center;
    font-size: 3.2em;
}

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

section.two-text-columns h1:after{
    left:0;
    transform:none;
}

section.two-text-columns ul{
    list-style:none;
}

section.two-text-columns ol{
    list-style:none;
    margin: 30px 0;
}

section.two-text-columns ul li {
    margin: 10px 0;
    line-height: 1.3em;
    font-weight: 600;
    font-size:1em;
    padding-left:32px;
    position:relative;
    margin: 30px 0;
    color: var(--main-color);
}

section.two-text-columns ol li {
    margin: 10px 0;
      line-height: 1.3em;
      font-weight: 500;
      font-size: 1em;
      padding-left: 34px;
      position: relative;
      background: var(--lighter-gold);
      padding: 20px 20px 20px 30px;
      counter-increment: list-counter;
}

section.two-text-columns ol li:before {
    font-family: var(--main-font);
    content: counter(list-counter);
      background: var(--third-color);
      position: absolute;
      top: -8px;
      left: -12px;
      width: 35px;
      height:35px;
      border-radius: 50%;
     border: 3px solid var(--white-color);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--white-color);
      text-align: center;
      font-size: 1em;
}

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

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