* {
    padding: 0;
    margin: 0;
}

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

p {
    font-size: 14px;
    color: #949494;
    line-height: 1.6;
}

h1 {
    font-size: 40px;
    color: #f9f5f5;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

h2,
h3 {
    color: #252525;
}

.container {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.brand {
    font-size: 30px;
}

.menu li {
    float: left;
    font-size: 16px;
    list-style: none;
}

.menu {
    padding-left: 0;
    margin: 0;
}

.menu li a {
    text-decoration: none;
}

header {
    background-color: #f9f9f9;
    margin-top: 30px;
}

header .brand {
    float: left;
    color: #58a8dd;
    margin-bottom: 30px;
}

header .menu {
    float: right;
    margin-bottom: 30px;
}

header .menu li {
    padding-left: 20px;
}

header .menu li a {
    color: #b3b2b2;
}

.header {
    background-image: url(../img/jumbotron.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 250px;
    text-align: center;
    clear: both;
}

.header .button {
    display: inline-block;
    color: #fdfdfd;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 40px;
    background-color: #fb63aa;
    padding: 20px 30px;
    border-radius: 30px;
}

.services .service,
.gallery .photo {
    width: calc(33.3% - 40px);
    float: left;
}

.services .service {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.services,
.gallery {
    padding-top: 50px;
    text-align: center;
}

.services .fa {
    color: #a1a0a0;
    margin-bottom: 15px;
}

.blog {
    clear: both;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fbfbfb;
}

.blog h2 {
    text-align: center;
}

.blog .post {
    padding-top: 30px;
    display: inline-block;
}

.blog .post img {
    float: left;
    margin-right: 30px;
}

footer {
    clear: both;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background-color: #363d48;
}

footer .brand {
    color: #bdc8d8;
}

footer .menu {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 15px;
}

footer .menu li {
    padding-left: 10px;
    padding-right: 10px;
}

footer .menu li a {
    color: #bdc8d8;
}

.gallery .photo {
    padding-top: 5px;
    height: 200px;
    overflow: hidden;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.gallery .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery .photo:hover {
    opacity: 0.6;
    transition: 0.4s;
}

.gallery .photo img {
    box-shadow: 0px 3px 3px 0px #212121;
}

@media (max-width: 575px) {
    .services .service,
    .gallery .photo {
        width: 90%;
        float: none;
    }
    .blog .post img {
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    .blog .post {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    img {
        display: block;
        max-width: 100%;
        height: auto;
    }
}