/*********************************
4. Home
*********************************/

.home {
    width: 100%;
    height: 460px;
    background: transparent;
    margin-top: -1px;
}

.home_background {
    height: 460px;
}

/*********************************
5. Blog
*********************************/

.single_post {
    padding-top: 50px;
}

.single_post_title {
    font-size: 30px;
    font-weight: 500;
}

.single_post_text {
    margin-top: 33px;
}

.single_post_text p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
}

.single_post_text p:not(:first-of-type) {
    margin-top: 42px;
}

.single_post_quote {
    margin-top: 43px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 35px;
    padding-bottom: 40px;
}

.quote_image {}

.quote_text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 28px;
    line-height: 1.875
}

.quote_name {
    font-size: 16px;
    font-weight: 500;
    margin-top: 23px;
}

.blog {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #FFFFFF;
}

.blog_posts {
    width: 100%;
    flex-wrap: wrap;
}

.blog_post {
    width: calc((100% - 60px) / 3);
    height: 290px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.blog_post:hover {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    z-index: 1;
}

.blog_image {
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog_text {
    padding-left: 31px;
    padding-right: 31px;
    padding-top: 21px;
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
}

.blog_button {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 48px;
    background: #32268c;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.blog_button:hover {
    background: #0982d7;
}

.blog_post:hover .blog_button {
    visibility: visible;
    opacity: 1;
}

.blog_button a {
    display: block;
    color: #FFFFFF;
    line-height: 48px;
    font-size: 18px;
}

.blog-categories {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.blog-categories li {
    padding-left: 15px;
    margin-top: 10px;
}

.blog-categories li a {
    height: 20px;
    width: 100%;
    color: dimgrey;
    font-size: 15px;
}

.blog-categories li a:hover {
    color: #000;
}
