/*INDEX*/
#introBasic {
    position: relative;
    text-align: left;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../img/content/intro.jpg);
    background-size: cover;
    background-position: center;
}
#introBasic .content {
    max-width: 1100px;
    padding: 10%;
    margin: auto;
}	
#introBasic h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    font-family: var(--especialFont);
}	
#introBasic h1 {
    font-size: 60px;
    font-weight: 100;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-family: var(--especialFont);
}	
#introBasic h1 span {
    background: var(--accentColor);    
}
#introBasic p {
    color: #fff;
    line-height: 20px;
    font-weight: 100;
}	
#introBasic .arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin: 20px 0;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/ui/arrow_down.svg);		
}	
