.repair-box {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-top: 10px;
}

.repair-main {
    background: url(/img/bg-main.webp) no-repeat center center;
    background-size: cover;
    padding-bottom: 120px;
    padding-top: 120px;
}

.repair {
    display: grid;
    justify-items: center;
}

.repair-content {
    display: grid;
    grid-template-columns: max-content 1fr;
}

.repair-content h6{
    font-size: 1.5rem;
    color: #01BBD1;
    text-shadow: 0px 0px 10px rgb(1 187 209 / 50%);
}

.repair-content p{
    margin: 0px;
    font-family: 'agrandirwide_light', sans-serif;
    margin-left: 20px;
    margin-top: 5px;
}

.repair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-top: 0px;
}

.repair-content + .repair-content {
    margin-top: 40px;
}


.repair-content-grid {
    display: grid;
    align-items: center;
    align-content: center;
    grid-gap    : 20px;

}

.list-btn-items {
    display: flex;
    margin-top: 20px;
    align-items: center
}


.repair-main h6 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.1em;
    margin-top: 10px;
    font-weight: 600;
}

.repair-btn-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    grid-gap: 10px;
}

@media only screen and (max-width: 800px) {
    .repair-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .iphone-assistencia {
        grid-row: 1/1;
        margin-top: 10px;
    }


    
.list-btn-items {
    flex-wrap: wrap;
    justify-content: space-evenly
}

.repair-content {
    grid-template-columns: 1fr;
}

.repair-btn-grid {
    margin-top: 20px;
    margin-bottom: 40px;
}

}



.list-btn-items li:hover{
    animation: movelat 6s infinite;
}

@keyframes movelat {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);

    }
    100% {
        transform: rotate(0deg);

    }
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);

    }
    100% {
        transform: rotate(5deg);
    }
}