* {
	box-sizing: border-box;
	margin: 0;
    padding: 0;
    font-size: 1.0em;
    font-family: 'Barlow', sans-serif;
    line-height: 1.2em;
}

.link {
    text-decoration: none;
    color: #222;
    border-bottom: 1px dotted #aaa;
    font-weight: 400;
    padding-bottom: 3px;
}

.link:hover {
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #00ffa9;
    font-weight: 400;
}

.content {
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: minmax(auto, 1000px);
    justify-content: center;
}

.content.v-pad-60 {
    padding: 60px 0;
}

.top-pad-sm {
    padding-top: 20px;
}

.top-pad-md {
    padding-top: 40px;
}

.strong {
    font-weight: 700;
}

.visible-inline {
    display: inline-block !important;
    visibility: visible !important;
}