﻿.fwCenter {
    display: flex;
    justify-content: center;
    margin-top:75px;
}

.textCenter {
    color: #9d6000 !important;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.contactContainer {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}


ol {
    counter-reset: item;
    padding-left: 10px;
}

li {
    display: block
}

   ol li:before {
        content: counters(item, ".") " ";
        counter-increment: item
    }

