.servicesList {
margin-top: 40px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
text-align: center;
}
.servicesList .service {
padding: 30px;
}
.servicesList .service:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.servicesList .service h2 {
font-size: 2em;
font-weight: 600;
letter-spacing: .03em;
margin-top: 20px;
color: #0d2a3f;
}
.servicesList .service p  {
font-size:1.2em;
}
.servicesList .service .icon img {
max-width: 175px;
}
@media (max-width: 1068px) {
.servicesList {
grid-template-columns: repeat(2, 1fr);
}  
}
@media (max-width: 700px) {
.servicesList {
grid-template-columns: 1fr;
}
.servicesList .service {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
}