body {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    padding: 0;
    margin: 0;
    text-align: center;
    height: 100%;
}
/* removes blue border on section after clicking on down chevron on hero image */
section {
    outline:  none !important;
}
.divider {
    width: 100px;
    height: 3px;
    background: #0094D9;
    margin: 0 auto;
    margin-bottom: 20px;
}
/* Navigation Bar */

.navbar {
    background-color: #fff;
    padding-bottom: 10px;
}
.navbar-logo {
    width: 275px;
    padding-top: 20px;
    padding-left: 20px;
}
.nav__links {
    padding: 20px 10px 10px 10px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.nav--links {
    color: #0094D9;
    background-color: #fff !important;
}
.request--quote {
    background-color: #0094D9;
    border-radius: 3px;
    color: #fff;
    margin-right: 40px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background 2s;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.7);
}
.request--quote:hover {
    background-color: #99CC33 !important;
    transition: all 0.8s ease-in;
    color: #fff;
}
/* HOME HERO */
/* PRELOADER */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/icons/preloader.svg") no-repeat center center;
}

#home {
    display: table;
    width: 100%;
    height: 100vh;
    background: url(../img/stock/about-us.png) top center;
    background-size: cover;
    animation: fadeIn 4s;
}
.hero--container {
    display: table-cell;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}
.hero--image {
    width: 100%;
}
.hero__text {
    margin: 200px 300px 130px 300px;
    line-height: 50px;
    font-size: 20px;
    z-index: 2;
    color: #E0E0E0;
    font-family: 'Open Sans', sans-serif;
}
.fa-chevron-circle-down {
    color: #99CC33;
    margin-top: 30px;
    transition: 0.5s;
}
/* VALUES SECTION */

#values {
    margin: 40px 0px;
}
.values-title {
    color: #99CC33;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}
.values--care {
    color: #0094D9;
    font-family: 'Raleway', sans-serif;
}
.values--text {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
/* TEAM SECTION */

#team {
    padding: 20px 0px 30px 0px;
    background-color: #E0E0E0;
}
.team-title {
    color: #99CC33;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}
.team--row {
    padding: 20px 0px;
}
.team--name {
    font-family: "Open Sans", sans-serif;
}
.team--founder {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}
#linda,
#catherine,
#aurora,
#joanna,
#norlisha,
#david,
#andrea {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
.modal-header {
    background-color: #0094D9;
}
.team--subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
.modal-content {
    z-index: 999;
}
/* JOIN TEAM SECTION */

#join {
    margin: 40px 0px 50px 0px;
}
.join-title {
    color: #99CC33;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}
.join--cta {
    margin: 30px 0px;
    font-family: 'Raleway', sans-serif;
}
.join--text {
    padding: 0px 350px;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    line-height: 40px;
}
/* GIVE BACK SECTION */

#giveback {
    padding: 40px 0px 60px 0px;
    background-color: #E0E0E0;
}
.giveback-title {
    color: #99CC33;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}
.giveback--cta {
    margin: 30px 0px;
    font-family: 'Raleway', sans-serif;
}
.giveback--text {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
}
/* FOOTER SECTION */

#footer {
    background-color: #99CC33;
    padding: 30px 0px;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: "Open Sans", sans-serif;
}
.footer-left,
.footer-center,
.footer-right {
    color: #fff;
}
.footer--link {
    color: #fff;
}
.footer--link:hover {
    color: #f0f0f0;
}
.footer__icon {
    padding: 0px 8px;
}
.footer__built {
    color: #FDFEFA !important;
    text-decoration: none;
}
.footer__built:hover {
    color: #fff;
    text-decoration: none;
}
/* MEDIA QUERY MOBILE */
@media screen and (min-width: 768px) {
    .nav--links:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background 2s ease;
    }
    .nav--links:after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        height: 3px;
        width: 0;
        background: #0094D9;
        transition: width 2s ease;
    }
    .nav--links:hover:before {
        width: 100%;
        background: #0094D9;
        transition: width 1s ease;
        text-decoration: none;
    }
    .nav--links:hover:after {
        width: 100%;
        background: transparent;
        transition: all 0s ease;
        text-decoration: none;
    }
}
@media screen and (max-width: 480px) {
    .navbar-toggle {
        position: relative;
        float: right;
        padding: 9px 10px;
        margin-top: 35px !important;
        margin-right: 15px;
        margin-bottom: 8px;
        background-color: transparent;
        background-image: none;
        border: 1px solid #0094D9 !important;
        border-radius: 4px;
    }
    .navbar-toggle .icon-bar {
        border: 1px solid #0094D9;
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }
    .nav__links {
        padding: 5px 10px 5px 10px;
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        font-size: 16px;
    }
    .request--quote {
        background-color: #0094D9;
        border-radius: 3px;
        margin-right: 0px;
    }
    .hero__text {
        margin: 130px 20px 20px 20px;
        font-size: 18px;
        line-height: 40px;
        z-index: 2;
        color: #E0E0E0;
        font-family: "Open Sans", sans-serif;
    }
    .fa-chevron-circle-down {
        color: #99CC33;
        transition: 0.5s;
    }
    .team--subtitle {
        padding: 0px 20px;
    }
    .team--members {
        padding-bottom: 50px;
    }
    .values--text {
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        padding: 0px 18px;
    }
    .join--text {
        padding: 0px 5px;
        font-family: "Open Sans", sans-serif;
        font-size: 18px;
    }
    .giveback--text {
        font-family: "Open Sans", sans-serif;
        font-size: 18px;
        padding: 0px 30px;
    }
}
/* MEDIA QUERY FOR TABLET */

@media (min-width: 480px) and (max-width: 768px) {
    .navbar-toggle {
        position: relative;
        float: right;
        padding: 9px 10px;
        margin-top: 35px !important;
        margin-right: 15px;
        margin-bottom: 8px;
        background-color: transparent;
        background-image: none;
        border: 1px solid #0094D9 !important;
        border-radius: 4px;
    }
    .navbar-toggle .icon-bar {
        border: 1px solid #0094D9;
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }
    .nav__links {
        padding: 5px 10px 5px 10px;
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        font-size: 16px;
    }
    .request--quote {
        background-color: #0094D9;
        border-radius: 3px;
        margin-right: 0px;
    }
    .hero__text {
        margin: 150px 20px 20px 20px;
        font-size: 18px;
        line-height: 44px;
        z-index: 2;
        color: #E0E0E0;
        font-family: "Open Sans", sans-serif;
    }
    .fa-chevron-circle-down {
        color: #99CC33;
        margin-top: 100px;
        transition: 0.5s;
    }
    .values--text {
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        padding: 0px 150px;
    }
    .team--members {
        padding-bottom: 50px;
    }
    .join--text {
        padding: 0px 50px;
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
    }
    .giveback--text {
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
        padding: 0px 100px;
    }
}