  .abroad .circled-numbers ol {
    display:grid;
    gap: 1rem;

    grid-template-columns: 1fr;
   
}
.abroad .circled-numbers ol li{
    border-bottom: unset;
    border: 1px solid #69B3E7;
    margin: 0;
    position: relative;
    padding: 30px 30px 30px 100px;
}
.abroad .circled-numbers ol li:before {
    position: absolute;
    left: 25px;
    top: 30px;
    color:#0c2340;
    background:#C99700;
}
.abroad .circled-numbers ol li:nth-of-type(3n+1):before {
   
    color: #fff;
    background: #0c2340;
}
.abroad .circled-numbers ol li:nth-of-type(3n+2):before {
    background: #69B3E7;
}
.content .centered-bullets li {
    padding: 0;
}
.content .centered-bullets li:before {
    position: relative;
    margin-right: 10px;
}

@media screen and (min-width: 900px) {
    .abroad .circled-numbers ol { 
        grid-template-columns: 1fr;
    /*    grid-auto-flow: column;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:        
        ". ."
        ". ."
        ". .";
        */
    }
  }