

#services{
    padding: 100px clamp(2.625rem, 1.275rem + 6.75vw, 9.375rem);

    ;
    background-color: #0e2431;
    height: 100%;
}

#services .servies{
    justify-content: center;
    align-items: center;
    display: flex;
}


.services-head{
    margin-left: auto;
    margin-right: auto;
}




.box{
    padding: 40px 25px;
    width: 250px;
    border: 1px solid;
    text-align: center;
    justify-content: center;
    border-radius: 18px;
    border-color: white;
    height: 400px;
    transition: 0.5s;
}

.box:hover{
    transform: scale(1.1);
    z-index: 2;
}


.services-content{
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}


@media screen and (max-width:1000px) {
    #services h2{
     margin-left: auto;
     margin-right: auto;
    }

    #services{
        height: 162vh;
    }
}