.services {
    background: black;
    margin-top: -35px;
}

.services-section {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.services-section-name{
    margin-top: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 4em;
}


.services-box {
    text-align: center;
    font-size: 1em;
    font-weight: 1000;
    color: white;
    align-items: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 3px 5px 0px green ;
    border-radius: 30px;
    max-width: 210px;
    min-width: 180px;
    min-height: 300px;
    max-height: 400px;
    margin: 20px;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    /*transform: rotateX(-55deg) rotateY(15deg) rotateZ(60deg);*/
}
.services-box:hover{
    background: black;
    box-shadow: red 0 0 19px, 0 0 50px green;
}

.services-image {
    height: 97px;
    width: 97px;
}

.services-name {
    color: #0e7910;
    margin-top: 17px;
}

.sp{
    font-size: 0.9em;
}

/*@media all and (max-width: 768px){*/
/*    .services-section-name {*/
/*        font-size: 8vw;*/
/*        font-family: Arial, sans-serif;*/
/*    }*/
/*}*/

/*@media all and (max-width: 320px){*/
/*    .services-box {*/
/*        flex-grow: 1;*/
/*        padding: initial;*/
/*        max-width: 90%;*/
/*        min-height: 250px;*/
/*        margin: 10px;*/

/*    }*/

/*    .services-section {*/
/*        flex-direction: column; !* Stack boxes vertically *!*/
/*        align-items: center; !* Center items *!*/
/*    }*/
/*}*/


@media all and (max-width: 480px){
    .services-section-name {
        font-size: 12vw;
        font-family: Arial, sans-serif;
    }
}



