.services-sec{
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.services-inner{
    width: 80%;
    margin: 0 auto;
}
.services-header{
    width: 100%;

}
.services-header h1{
    color: rgb(26, 82, 165);
    display: flex;
    text-align: center;
    justify-self: center;
    margin: 0 auto;

}
.services-header p{
    width: 80%;
    text-align: center;
    padding-top: 10px;
    margin: 0 auto;
}
.services-con{
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1rem;
}

.service{
    width: 18rem;
    padding: 2rem;
    background-color: rgb(27, 151, 185, 0.3);
    margin:  0 auto;
    border-radius: 1rem;
}
.service ul{
    padding-left: 1rem;
    padding-top: 10px;
}


@media (max-width: 900px) {
    .services-con{
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    }
    .service{
        width: 14rem;
    }
}
@media (max-width: 710px) {
    .services-con {
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    }
    .services-header p{
        width: 100%;
    }
    .service{
        width: 10rem;
    }
    .service h3{
        font-size: 15px;
    }
    .service li{
        font-size: 10px;
    }
}
@media (max-width: 560px) {
    .services-inner{
        width: 90%;
    }
    .services-con{
        width: 100%;
    }
}