/* ---------- Services ---------- */
.services{
    flex-direction: column;
    margin: 0 auto;
    padding: 10rem 0;
    width: 90%;
}

@media only screen and (max-width : 1024px){
    .services{
        margin-top: 4rem;
    }
}

.services h1{
    font-size: 3.5rem;
}

.wrapper_serv{
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    flex-wrap: wrap;
    grid-gap: 20px;
    display: flex;
    margin: auto;
}

.wrapper_serv .box{
    perspective: 1000px;
    margin: 1.5rem auto;
    position: relative;
    width: 300px;
}

.wrapper_serv .box .front-face{
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    background-color: #F0F0F0;
    transition: all 0.5s ease;
    justify-content: center;
    flex-direction: column;
    background: #F0F0F0;
    letter-spacing: 1px;
    border-radius: 15px;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 300;
    display: flex;
    padding: 20px;
    height: 250px;
    width: 100%;
}

@media only screen and (max-width : 1024px){
    .wrapper_serv .box .front-face{
        font-size: 1.5rem;
    }
}

.box .front-face span,
.box .back-face span{
    text-transform: uppercase;
    text-align: center;
}

.box .front-face .icons i,
.box .front-face span{
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-color: #000000;
}

.box .back-face{
    background-color: #ffffff;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transform: translateY(110px) rotateX(-90deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    font-size: 1.10rem;
    color: #000000;
    padding: 30px;
    height: 250px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    left: 0;
    top: 0;
}

.box .back-face p{
    text-align: center;
    margin-top: 10px;
}

.box:hover .back-face{
    transform: rotateX(0deg);
    opacity: 1;
}

.box:hover .front-face{
    transform: translateY(-110px) rotateX(90deg);
    opacity: 0;
}