

.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;
}

.list__blog__item .list__blog__link {
    text-decoration: none;
    color: #1D1D1B;
    font-weight: 600;
    font-size: 0.875rem;
}

.list__blog__item:hover .blog__item__name {
    color: #2CABE2;
}

.list__blog__item:hover .list__blog__link {
    color: #2CABE2;
}
.list__blog__item:hover .list__blog__link svg:nth-of-type(1) path {
    fill: #2CABE2;
}
.list__blog__item:hover .list__blog__link svg:nth-of-type(2) path {
    stroke: #2CABE2;
}

.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;
    text-align: justify;
}
.grid__featured__posts .title__post strong{
    font-weight: 500;
}

.grid__featured__posts .date__post{
    font-size: 0.75rem;
}
.featured__posts__item{
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #666362;
}
.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;
    color: #061A33;
}
.text__post p {
    color: #7A7B7D;
    font-size: 1rem;
    text-align: justify;
}
.text__post p b ,
.text__post p strong {
    color: #061A33;
}
.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.125rem;
    background-size: 20px 20px;
}



.single__testominial{
    background-color: #32A5C5;
    padding: 3rem;
    border-radius: 80px 0;
    margin-top: 4rem;
}
.single__testominial p{
    color: #fff;
}
.single__testominial .author__name{
    font-size: 1.25rem;
    color: #fff;
}
.single__testominial .author__position{
    color: #fff;
}
.single__testominial .author__photo{
    border-radius: 50%;
    max-width: 100px;
    max-height: 100px;
}

.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;
}

.block__testimonial{
    display: none;
}



@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: 0;
    }

    
}