/* Common */
body {
    background-color: #E8F3F3;
}

h2 {
    font-size: 24px;
}

li {
    line-height: 32px;
}

a {
    color: #4BADAD;
}

.bg-light-green {
    background: #F5F9F9;
}

.border-left {
    border-left: 1px solid #E8F3F3;
}

.btn-primary {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2F8A8A;
    border: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
}

.btn-primary:hover{
    background-color: #247979;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #196868 !important;
}

/* Home page */
.hero {
    background: url('../images/hero-background.png');
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    height: 500px;
    margin: 0 -15px;
}

.hero .logo {
    width: 132px;
    position: absolute;
    top: 16px;
    left: 46px;
}

.hero h1 {
    color: white;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.container {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.work-sheet-container {
    position: relative;
    display: inline-block;
}

.work-sheet-container img {
    width: 200px;
}

.facebook img{
    margin-top: -3px;
}

.facebook a {
    color: inherit;
}

.facebook a:hover {
    text-decoration: none;
}

.contact-info {
    overflow: hidden;
}

.profile-picture {
    width: 164px;
}   

@media screen and (min-width: 600px) {
    .hero {
        height: 400px;
    }
}