@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.services{
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #000;

}
.max-width{
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}
.max-width h1{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 20px;
    /* font-family: sans-serif; */
}
.content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.content p{
    font-weight: 500;
    margin-top: 10px;
}
.cardservice{
    background: #FFFFFF;
    text-align: center;
    border-radius: 8px;
    padding: 50px 25px;
    user-select: none;
    width: calc(26% - 20px);
    height: 230px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.cardservice:hover{
    background: #ff0000;
}
.box{
    transition: all 0.3s ease;
}
.cardservice:hover .box{
    transform: scale(1.05);
}
.box i{
    font-size: 50px;
    color: #ff0000;
    transition: color 0.3s ease;
}
.cardservice:hover .box i{
    color: #fff;
}
.box h3{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px;
}
@media screen and (max-width: 1190px) {
    .max-width{
        padding: 0 25px;
    }
    .cardservice{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px){
    .cardservice{
        width: 100%;
    }
}