
/* Services */

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    justify-content: center;
    list-style: none;
    /* margin: 30px 4rem 6rem; */
    margin: 30px 4rem 6rem;
}

.box {
    background-color: #222222;
    padding: 30px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    animation: transfromAnimate linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.box p {
    color: #ccc;
}

.box:hover {
    transform: translateY(-5px);
}

.box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: orange;
}

@keyframes transfromAnimate {
    from {
        opacity: 0;
        scale: 0.5;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        scale: 1;
        transform: translateX(0%);
    }
}