section.services {
 
    --services-gap: 10px;
    --services-count: 2;

    margin-top: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.services .services-container {
    display: grid;
    grid-template-columns: repeat(var(--services-count), 1fr);
    gap: var(--services-gap);
    width: 100%;
    max-width: calc(var(--max-service-width) * var(--services-count) + var(--services-gap) * (var(--services-count) - 1));
}

section.services .service {
    background-color: #fff;
    border: 0px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px;
    cursor: pointer;
    aspect-ratio: 1;
    font-size: 14px;
    max-width: var(--max-service-width);
}

section.services {
background-color: inherit !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: default !important;
}

section.services .service img {
    max-width: 100px;
    width: 60%;
    height: auto;
    margin: 0 auto;
}

section.services .service .header-title {
    margin-top: 10px;
    margin-bottom: 2px;
    font-weight: 600;
}

@media screen and (min-width: 500px) {
    section.services {
        --services-count: 2;
    }
    
section.services .service {
    font-size: 15px;
}
    
}

@media screen and (min-width: 1000px) {
    section.services {
        --services-count: 4;
        --services-gap: 20px;
        margin-top: 20px;
    }
section.services .service {
   font-size: 18px
}    
section.services .service img {
    max-width: 110px;
    width: 80%;
}    
    
}