/* Layout */

body {       
    font-size: 18px !important;    
}
/* ************************************************************************************ */

/* Typography */

* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, strong {
    font-weight: 500;
}
h3 {
    font-weight: 600;
    font-size: 16px;
}
.mainContainer {
    margin-top: 20px;
}
.noPadding {
    padding: 0;
}
.text-center {
    text-align: center;
}
ol {
    counter-reset: item;
    padding-left: 50px;
}
li {
    display: block;
    position: relative;
}

li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    margin-right: 1em;
    position: absolute;
    left: -50px;
}
ol> li > b {
    display: inline-block;
    
}
ol.list > li > b {
    margin: 0 10px 10px 0px;
}
.a:before {
    content: "(a)";
}
.b:before {
    content: "(b)";
}
.c:before {
    content: "(c)";
}

.d:before {
    content: "(d)";
}
.e:before {
    content: "(e)";
}
.f:before {
    content: "(f)";
}
.g:before {
    content: "(g)";
}
.h:before {
    content: "(h)";
}
.i:before {
    content: "(i)";
}
.j:before {
    content: "(j)";
}
.roman1:before {
    content: "(i)";
}
.roman2:before {
    content: "(ii)";
}

.roman3:before {
    content: "(iii)";
}
.sign-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sign-container > div {
    height: 200px;
    display: flex;
    justify-content: 
    space-between;
    flex-direction: column;
    padding: 10px;
    margin-top: 50px;
}
.border-right {
    border-right: 1px solid black;
}
.small-left-padding {
    padding-left: 50px;
}
.list-bottom-margin {
    margin-bottom: 50px;
}
.flex-info {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.flex-info>div {
    min-width: 150px;
    text-align: left;
}
.sign{
    width: 125px;
}
.margin-top-20 {
    margin-top: 20px;
}