/* services */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.single-service-item h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 10px 0 10px;
    transition: all .3s ease;
    line-height: 1.2em;
}
.single-service-item a {
    color: #363636;
    font-size: 16px;
    font-weight: 500;
    background-color: #fce9e8;
    padding: 30px 20px 60px 20px;
    display: block;
    box-shadow: 0px 5px 45px 10px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    border: 2px solid #fce9e8;
    min-height: 240px;
    font-family: "Poppins";
    position: relative;
}
.single-service-item i {
    width: 16px;
    height: 16px;
    background-color: #C9C9C9;
    font-size: 8px;
    text-align: center;
    line-height: 16px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    top: -2px;
    right: -5px;
}
.single-service-item:hover a {
    border-color: #e03225;
}
.single-service-item a {
    transition: all .3s ease;
}
.single-service-item .readmore{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 20px;
    transition: all .3s ease;
}
.single-service-item .readmore svg{
    width: .9em;
    height: auto;    
    fill: #363636;
    color: #363636;
    margin-left: 8px;
    transition: all .3s ease;
}
.single-service-item:hover .readmore {
    color: #e03225;
}
.single-service-item:hover .readmore svg{
    fill: #e03225;
    color: #e03225;
}



/* max-width:768px */
@media (max-width:768px){
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
   

}

/* max-width:575px */
@media (max-width:475px){
    .services-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .post-excerpt {
        display: none;
    } */
   


}
