/*
 * blog page styles
 */
.box-post {
    padding: 35px;
    background-color: white;
}

.open_post-title {
    font-size: 186%;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.open_post_date {
    font-size: 100%;
    color: #787878;
    margin-bottom: 25px;
}

.open_post-description {
}

.open_post-simple-title {
    font-size: 125%;
    color: #242424;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.open_post-image-block {
    position: relative;
    width: 50%;
    margin-bottom: 5px;
    margin-right: 30px;
    float: left;
}

.open_post-description p {
    margin-bottom: 15px;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-share {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-share li + li {
    margin-left: 15px;
}

.s_title {
    flex: 0 0 auto;
    margin-right: 50px;
}

.open_post .social-item,
.open_post .socials a {
    color: white;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 80%;
    background-color: var(--theme-color);
    padding: 5px;
    border-radius: 50%;
}

.open_post a.social-item + a.social-item,
.open_post .socials a + a {
    margin-left: 15px;
}

.open_post .social-item:hover,
.open_post .social-item:focus,
.open_post .socials a:hover,
.open_post .socials a:focus {
    opacity: 0.7;
}

.socials-block {
}

.box-news {
    margin-top: 65px;
}

.container-last-news {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.container-last-news .last_post-item {
    flex: 1 0 33%;
    margin: 0;
    background: #3d3d3d;
    border-radius: 4px;
    padding: 15px 10px;
}

@media (max-width: 768px) {
    .container-last-news .last_post-item {
    flex: 0 0 100%!important;
    margin: 4px auto!important;
}
	
}

.last_post-title {
    position: relative;
    margin: 10px 0px 0px 0px;
    color: #fff;
    font-size: 12px;
    transition: top 250ms, height 300ms, width 400ms;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.responsive-image-block:hover:after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.social-network {
    color: #eeba49;
}

.social-network:hover, .social-network:focus {
    color: #f7f7f7;
}