/* Latest from Blog 26
-------------------------------------------------- */
#wrap .latestposts-twenty-six {
    margin-bottom: 50px;
}

.latestposts-twenty-six .latest-b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 25px auto 0;
    position: relative;
    padding: 40px 90px 40px 60px;
    border-radius: 7px;
    background-color: rgb( 255, 255, 255);
    -webkit-box-shadow: 0 2px 6px 0 rgba( 0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba( 0, 0, 0, 0.16);
    -webkit-transition: all 0.27s ease;
    -o-transition: all 0.27s ease;
    transition: all 0.27s ease;
}

.latestposts-twenty-six .latest-b:hover {
    box-shadow: 0 12px 32px 0 rgba(0, 91, 238, 0.25);
}

.latestposts-twenty-six .latest-b:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    border-radius: 7px;
    background-image: -webkit-linear-gradient( 0deg, rgb(0, 126, 253) 0%, rgb(0, 78, 253) 84%);
    background-image: -webkit-gradient( linear, left bottom, left top, from(rgb(0, 126, 253)), color-stop(84%, rgb(0, 78, 253)));
    background-image: -webkit-linear-gradient( bottom, rgb(0, 126, 253) 0%, rgb(0, 78, 253) 84%);
    background-image: -o-linear-gradient( bottom, rgb(0, 126, 253) 0%, rgb(0, 78, 253) 84%);
    background-image: linear-gradient( 0deg, rgb(0, 126, 253) 0%, rgb(0, 78, 253) 84%);
    -webkit-transition: all 0.27s ease;
    -o-transition: all 0.27s ease;
    transition: all 0.27s ease;
}

.latestposts-twenty-six .latest-b:hover:before {
    opacity: 1;
}

.latestposts-twenty-six .latest-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    line-height: 35px;
    padding-left: 30px;
    color: #010101;
    -webkit-transition: all 0.27s ease;
    -o-transition: all 0.27s ease;
    transition: all 0.27s ease;
}

.latestposts-twenty-six .latest-title::before {
    display: inline-block;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    content: '';
    width: 17px;
    height: 17px;
    background: #5cd0ed;
    opacity: 0.4;
    border-radius: 50%;
}

.latestposts-twenty-six .latest-title::after {
    display: inline-block;
    position: absolute;
    top: calc(50% - 4px);
    left: 4px;
    content: '';
    width: 9px;
    height: 9px;
    background: #5cd0ed;
    border-radius: 50%;
}

.latestposts-twenty-six .latest-excerpt {
    margin: 0;
    font-size: 19px;
    line-height: 30px;
    position: relative;
    color: #888888;
    -webkit-transition: all 0.27s ease;
    -o-transition: all 0.27s ease;
    transition: all 0.27s ease;
}

.latestposts-twenty-six .latest-img {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 140px;
    margin-right: 30px;
    min-width: 140px;
    position: relative;
}

.latestposts-twenty-six .latest-img img {
    border-radius: 50%;
}

.latestposts-twenty-six .latest-b:hover .latest-title {
    color: #fff
}

.latestposts-twenty-six .latest-b:hover .latest-excerpt {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
    .latestposts-twenty-six .latest-img {
        margin-right: 0;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
    .latestposts-twenty-six .latest-b {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10%;
    }
}