body {
    font-family: 'Montserrat', sans-serif;
}

.logo-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: inline-block;
}

.logo-header img {
    height: 40px;
}

.actions {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
}

.actions a {
    text-decoration: none;
    height: 40px;
    display: flex;
    align-items: center;
}

.actions a.social {
    font-size: 22px;
}

.color-facebook {
    color: #3b5999;
}

.color-twitter {
    color: #55acee;
}

.color-whatsapp {
    color: #25D366;
}

.article-body p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.article-body a {
    color: #e6766e;
}

.text-w300 {
    font-weight: 300;
}

.text-w400 {
    font-weight: 400;
}

.text-w600 {
    font-weight: 600;
}

.text-w800 {
    font-weight: 800;
}

@media (max-width: 767px) {

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .article-body p {
        font-size: 1rem;
    }

}

.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/Anapu-5225-hero.jpg);
}

.hero h1,
.hero .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}

.hero::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
    .hero::before {
        background: rgba(0, 0, 0, 0.6);
    }
}

.hero .arrow-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation: pulse 1s infinite;
    -moz-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
}

.quote {
    font-size: 2rem;
}

.quote .fa-quote-left {
    position: relative;
    top: -12px;
    color: #ccc;
}

.quote span {
    /* background: yellow; */
    line-height: 3rem;
    font-weight: 900;
    font-family: 'Merriweather', serif;
    font-style: italic;
}

@media (max-width: 767px) {
    .quote {
        font-size: 1.5rem;
    }

    .quote span {
        line-height: 2rem;
    }
}

.legend {
    position: relative;
    z-index: 10;
}

.legend-right {
    margin-left: -5rem;
}

.legend-left {
    margin-right: -5rem;
}

.legend-dark {
    background: #000;
    color: #fff;
    border: 8px solid #fff;
}

.legend-light {
    background: #fff;
    color: #000;
    border: 8px solid #000;
}

@media (max-width: 991px) {
    .legend-right,
    .legend-left {
        margin: 0;
    }
}

footer {
    background: #222;
    color: rgba(255, 255, 255, 0.5);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: #fff;
}

footer .logo img {
    max-width: 160px;
}

footer .social a {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    margin: 0 4px;
}

@keyframes pulse {
    0%, 100% {
        bottom: 40px;
        opacity: .1;
    }
    50% {
        bottom: 20px;
        opacity: .6;
    }
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
