/* ======= Landing Page ======= */ .landing-page {

.header {
    background: $text-color;
    color: rgba(256, 256, 256, 0.85);
    padding: 60px 0;
    a {
        color: #fff;
    }
}
.branding {
    text-transform: uppercase;
    margin-bottom: 20px;
    .logo {
        font-size: 38px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .text-bold {
        font-weight: 800;
        color: #fff;
    }
    .icon {
        font-size: 32px;
        color: $color-primary;
    }
}
.tagline {
    font-weight: 600;
    font-size: 20px;
    p {
        margin-bottom: 5px;
    }
    .text-highlight{
        color: darken($color-primary, 20%);
    }
}
.fa-heart {
    color: $color-pink;
}
.cta-container {
    margin-top: 30px;
}
.social-container {
    margin-top: 30px;
    .twitter-tweet {
        display: inline-block;
        margin-right: 5px;
        position: relative;
        top:5px;
    }
    .fab-like{
        display: inline-block;
    }
}

}