

.list__blog{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

}
.list__blog__item{
    width: 48%;
    margin-bottom: 3rem;
}

.blog__item__name{
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
    font-size: 1.125rem;
}

.blog__item__image{
    
}
.list__blog__item .list__blog__link {
    text-decoration: none;
    color: #0637F3;
    font-weight: 600;
    font-size: 0.875rem;
}

.grid__featured__posts{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.grid__featured__posts .title__post{
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}
.grid__featured__posts .date__post{
    font-size: 0.75rem;
}
.featured__posts__item{
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E1F0BD;
}
.featured__posts{
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
}
.featured__posts .title__posts{
    font-size: 1.75rem;
    color: #061A33;
    font-weight: 700;
}


.data__post .row > div{
    border-bottom: 1px solid #DFDFDF;
}
.data__post .row > div:first-of-type {
    border-right: 1px solid #DFDFDF;
}

.text__post{
    
}
.text__post h2,
.text__post h3,
.text__post h4,
.text__post h5{
    font-weight: 700;
    margin-top: 1em;
}
.text__post p {
    color: #7A7B7D;
    font-size: 1rem;
}
.text__post img{}
.text__post ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.text__post ul li{
    color: #7A7B7D;
    font-size: 1rem;
    padding-left: 2rem;
    margin-bottom: 0.35rem;
    background-image: url("../img/icons/icon__checkblue.svg");
    background-repeat: no-repeat;
    background-position: 0 0.25rem;
    background-size: 24px 24px;
}



.single__testominial{
    background-color: #F8FFE8;
    padding: 3rem;
    border-radius: 80px 0;
    margin-top: 4rem;
}
.single__testominial .author__name{
    font-size: 1.25rem;
    color: #90A955;
}
.single__testominial .author__position{
    color: #7A7B7D;
}
.single__testominial .author__photo{
    border-radius: 50%;
}

.card__share__post{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #90E0EF;
    border-bottom: 1px solid #90E0EF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.card__share__post ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card__share__post ul li {
    margin-right: 0.75rem;
}

.card__navigation__post{
    background-color: #EAF8FF;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.card__navigation__post a{
    text-decoration: none;
    color: #0637F3;
    font-weight: 600;
    font-size: 1.125rem;
}

@media screen and (max-width: 767px){
    .featured__posts{
        display: none;
    }
}
@media screen and (max-width: 640px){
    .list__blog__item {
        width: 100%;
    }
    .block__blog .inner__block__blog{
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .head__project .title__block{
        font-size: 1.5rem;
    }
    .data__post{
        font-size: 0.875rem;
    }
    .text__post li{
        font-size: 1rem;
    }
    .data__post svg {
        max-width: 20px;
        min-height: 20px;
    }
    .single__testominial{
        padding: 2rem;
    }

    .head__testimonial .title__block {
        font-size: 1.5rem;
        padding-right: 1.5rem;
    }

    .card__navigation__post{
        padding: 1rem 0.5rem;
    }
    .card__navigation__post a{
        font-size: 1rem;
    }
}