/*CIRCLES
/////////
Fuente: http://webdesignandsuch.com/make-responsive-perfect-circles-with-css/
*/
.responsive-circle {
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 0px;
    width: 80%;
}
.responsive-circle::after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 0;
    /*margin-bottom: 20px;*/
    padding-bottom: 100%;
    width: 100%;
}
.responsive-circle div {
    color: white;
    float: left;
    line-height: 1em;
    margin-top: -0.5em;
    padding-top: 40%;
    text-align: center;
    width: 100%;
}
.color1-circle::after {
    background:#d9534f;   
}

.color2-circle::after {
    background:#5cb85c;
}

.color3-circle::after {
    background:#00B4CC;
}

.color4-circle::after {
    background:#5cb85c;
}

.color5-circle::after {
    background:#daa520;
}

.color6-circle::after {
    background:#8f6e09;
}

/*SCROLLING
/////////
Fuente: http://alijafarian.com/responsive-page-scrolling-with-jquery-and-bootstrap/
*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', arial, sans-serif;
}
.header {
    position: fixed;
    width: 100%;
    background: #222;
    z-index: 10;
}
.header .navbar-brand {
    font-weight: 900;
}
.header .navbar {
    margin: 0;
    border: none;
}
.btn {
    font-weight: 200;
}
.btn-dark {
    background: #444;
    color: #fff;
}
.btn-dark:hover {
    background: #000;
    color: #fff;
}
hr {border-color: #ddd;}

@media (min-width: 768px) {
    .header .navbar-brand {
        padding-left: 0;
    }
    .navbar-nav {
        float: right;
    }
}