* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

body {
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.text-white-blog {
    color: rgba(255, 255, 255, 0.997) !important ;
    font-size: 30px !important ;
    font-variant: normal !important ;
    font-family: 'Dosis' !important ;
}

/* Recent article style */
.pDef-blog {
    font-size: 35px;
    font-family: 'Dosis';
    color: #161f34;
    font-variant: small-caps;
    -webkit-transition: all .28s ease;
    -moz-transition: all .28s ease;
    transition: all .28s ease;
    align-content: center;
    text-align: left;
}

/* Dash Style */
.blogs {
    margin-top: 70px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.post {
    background-color: #fff;
}

@media (max-width: 768px){
    .post {
        margin: 15px 0;
    }
}

.img-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

.img-wrapper img {
    transition: all 1.5s;
}

.img-wrapper:hover img {
    transform: scale(1.3);
}

.likes {
    position: absolute;
    padding-right: 15px !important;
    padding-bottom: 15px !important;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    animation: pulse 1s linear infinite;
    animation-play-state: paused;
}

.likes:hover {
    animation-play-state: running;
}

.content-wrapper {
    padding: 30px;
    position: relative;
}

.post-content-wrapper {
    padding: 30px;
    position: relative;
}

.post-content-wrapper::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid rgb(21,3,41);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.post-content-wrapper .title {
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.post-content-wrapper p {
    color: #6E797E;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid rgb(21,3,41);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.content-wrapper .title {
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-wrapper p {
    color: #6E797E;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 20px;
}

.comments-readmore {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
}

.comments {
    padding: 20px 25px;
    border-right: 1px solid #f5f5f5;
    cursor: pointer;
}

.comments i {
    color: #e5e5e5;
    margin-right: 5px;
    font-size: 18px;
    transform: translateY(3px);
    animation: shake 2.5s linear infinite;
    animation-play-state: paused;
}

.comments:hover i {
    animation-play-state: running;
}

.comments .comment-count,
.comments .text {
    font-weight: 600;
    font-size: 12px;
}

.readmore {
    border-left: 1px solid #f5f5f5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #f5f5f5;
    cursor: pointer;
}

.readmore .dot {
    height: 4px;
    width: 4px;
    background: #000;
    margin-right: 3px;
    border-radius: 50%;
    animation: bounce 1.5s linear infinite;
    animation-play-state: paused;
}

.readmore:hover .dot {
    animation-play-state: running;
}

.readmore .dot2 {
    animation-delay: 100ms;
}

.readmore .dot3 {
    animation-delay: 200ms;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -8px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -1px, 0);
    }
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, 2px, 0);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, -2px, 0);
    }
}