html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    position: absolute;
}

body{
    display: flex;
    flex-direction: column;
}

/* HEADER */
section{
    position: relative;
    flex: 1 0 auto;
    padding: 50px 0;
}

section.secondary{
    background-color: #f9f9f9;
}
.section-header{
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-title{
    line-height: 30px;
    font-weight: 700;
    font-style: normal;
    color: #2f2f2f;
    font-size: 35px;
    text-align: center;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
}

.section-title:before{
    border: 2px solid #ffc527;
    content: "";
    height: 90px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -47px;
    width: 70px;
    z-index: -1;
}


.section-title > span {
    color: #ffc527;
}

.section-subtitle{
    text-align:center;
    font-size: 16px;
    color: #5a5a5a;
    position: relative;
    z-index: 2;
}

.section-description{
    text-align: center;
    font-size: 14px;
    line-height: 23px;
    font-style: italic;
    font-weight: 400;
    color: #9e9e9e;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.section-content{
    margin-top: 50px;
}

section#qualities{
    background-color: #2d2d2d;
}

section#qualities, section#qualities>.section-header>.section-title {
    color: #fff;
}

section#qualities>.section-header>.section-title:before{
    content: none;
}

section#qualities > .section-content>ul{
    list-style: none;
}

section#qualities > .section-content>ul>li::before{
    content: "\25AA";
    color: #ffc527;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.1em;
}

@media only screen and (max-width: 629px){
    .section-title{
        font-size: 26px;
    }

    .section-subtitle{
        font-size: 14px;
    }

}