/* About */
section.about {
    width: 100%;
    height: 100%;

    background: #dfdfdf;

    text-align: center;
}
section.about > .columns {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

    width: 100%;
    height: 80%;
}
section.about .col {
    display: inline-table;
    width: 40%;
    min-width: 270px;
    margin: 48px 24px 0;
}
section.about h2, section.about h3 {
    font-size: 2.1em;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #232323;
}
section.about > h3 {
    position: relative;
    margin-top: 96px;
    font-size: 1.5em;
}
section.about > h3::before {
    content: '';
    position: absolute;

    top: -48px;
    left: 25%;
    width: 50%;
    height: 1px;

    background: #3E3E3E;
}
section.about p {
    font-size: .94em;
    font-weight: 300;
    color: #000;
    
    line-height: 25px;
}
section.about .row {
    width: 100%;
    height: auto;
    color: #3E3E3E;
    padding-top: 48px;
    padding-bottom: 24px;
}
section.about .about-item {
    display: inline-table;
    width: 256px;
    height: 220px;
    margin: 0 24px;
    padding: 0;
}
section.about .about-item > img {
    width: 60px;
}
section.about .about-item > h3 {
    position: relative;
    color: #3A3A3A;
    font-size: 1.1em;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
}
section.about .about-item > p {
    color: #525457;
}