/*reset--
_------------------*/
*,*:before,*:after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    color: #2c3e50;
}
:root{
    font-size: 16px;
}
a{
    text-decoration: none;
}
a:hover{
    color: #DC143C;
}
img{
    max-width: 100%;
    border: 0;
}
input,
button,
textarea{
    border: 0;
}

/*gerais--
_------------------*/
.font-zero{
    font-size: 0%;
}
.row,
section{
    float: left;
    width: 100%;
}
.section{
    padding-top: 10px;
}
.section-header{
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.25rem;
}
.section-header .content{
    max-width: 800px;
}
.section-header h1{
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #6cb361;
    text-transform: uppercase;
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
}

.section-header h1:after{
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    max-width: 480px; 
    background: #6cb361;  
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); 
    -webkit-transform: translateX(-50%); 
}
.section-header h1:before{
    content: "";
    position: absolute;
    top:100%;
    left: 50%;
    margin-left: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #6cb361;
}
.section-header h1 span{
    position: relative;
}
.section-header h1 span:before{
    content: "";
    position: absolute;
    background: #6cb361;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
}
.content{
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}
ul {
    list-style-type: none;
    }