body{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    color: #808080;
}
h1{
    font-size: 50px;
    font-weight: bold;
}
p{
    font-size: 20px;
}
section{
    padding-top: 30px;
}
.marginsDefault{
    margin: 20px 0px;
}
.centerText{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.verticalDivisor{
    border-right: 2px solid rgb(243,244,246,0.9);
}
.verticalDivisorBlack{
    border-right: 1px solid rgb(0,0,0,0.4);
}
.horizontalDivisor{
    border-bottom: 2px solid rgb(243,244,246,0.9);
}
.bgColorGrey{
    background-color: rgba(243,244,246,0.9);
}
.bgColorGreyLight{
    background-color: rgba(230, 235, 245, 0.8);
}
.paddingRight{
    padding-right: 25px;
}
.paddingLeft{
    padding-left: 50px;
}
.icon{
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border-radius: 20%;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .ta-center{
        text-align: center;
    }
    .verticalDivisor{
        border: none;
    }
    .verticalDivisorBlack{
        border: none;
    }
    .paddingLeft{
        padding: 1em;
    }
}
@media (min-width: 768px){
    .reverse{
        order: 2;
    }
}