/* General */

body {
    font-family: Raleway, Arial, Helvetica, sans-serif;
}
p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}
h1 {
    font-size: 40px;
    color: #fff;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 26px;
}
h2, h3 {
    color: #282828;
}
.container {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.brand {
    font-size: 30px;
}
.menu {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.menu li {
    float: left;
    font-size: 16px;
    list-style: none;
}
.menu li a {
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Header */

header {
    background-color: #fff;
    padding-top: 30px;
}
header .brand {
    float: left;
    color: #59abe3;
    margin-bottom: 30px;
}
header .menu {
    float: right;
    margin-bottom: 30px;
}
header .menu li {
    padding-left: 20px;
}
header .menu li a {
    color: #aaa;
}

/*Gallery*/
.gallery .photos {
    width: 320px;
    height: 280px;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.gallery {
    padding-top: 50px;
    text-align: center;
    color: #979797;
    margin-bottom: 15px;
}
.photos img {
    box-shadow:  3px 3px 6px 2px rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop the image to fit the container */
  }
  .photos:last-child{
    margin-bottom: 50px;
  }
  
/* Jumbotron */

.jumbotron {
    background-image: url(../img/jumbotron.jpg);
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 250px;
    text-align: center;
    clear: both;
}
.jumbotron .button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 40px;
    background-color: #fa5ba5;
    padding: 20px 30px;
    border-radius: 30px;
}


/* Services */

.services .service {
    width: 33.333333%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
    box-sizing: border-box;
}
.services {
    padding-top: 50px;
    text-align: center;
}
.services .fa {
    color: #979797;
    margin-bottom: 15px;
}


/* Blog */

.blog {
    clear: both;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fcfcfc;
}
.blog h2 {
    text-align: center;
}
.blog .post {
    padding-top: 30px;
    display: inline-block;
    clear: both;
}
.blog .post img {
    float: left;
    margin-right: 30px;
}

/* Contacts */

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    text-align: center;
}

.contact-info i {
    display: inline-block;
    color: #fa5ba5;
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-info p {
    display: inline-block;
    color: #282828;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-info a {
    display: inline-block;
    color: #fa5ba5;
    font-size: 20px;
    margin-right: 10px;
}

.contact-info > div:first-child {
    padding: 20px;
  }
  
  .contact-info > div:not(:first-child) {
    margin-left: 100px;
  }

/*Footer*/

footer {
    clear: both;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background-color: #38404b;
}
footer .brand {
    color: #bcc9dd;
}
footer .menu li {
    padding-left: 10px;
    padding-right: 10px;
}
footer .menu li a {
    color: #bcc9dd;
}
footer .menu {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 15px;
}
footer .copyright {
    font-size: 12px;
    color: #eee;
}