@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

*{
    padding: 0;
    outline: none;
    border: none;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s linear;
}

section{
    padding: 2rem 4%;
    min-height: 100vh;
    cursor: default;
}
body{

    background: #f9f9f9;
}


.mantenimiento{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    height: 100%;
    width: 100%;
}
.mantenimiento .container{
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0, .080);
    width: 100%;
    height: 100%;
}

.mantenimiento .container .heading{
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;
}

.mantenimiento .container .heading i{
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4500;
    position: relative;
    z-index: 5;
    box-shadow: 0 5px 8px rgba(0,0,0, .080);
}

.mantenimiento .container .heading i::after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border-top: 2px solid #ff9d00;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 950ms rotation infinite linear;
}

@keyframes rotation{
    0%{
        rotate: 0;
    }
    100%{
        rotate: 360deg;
    }
}

.mantenimiento .container .heading h1{
    font-weight: 600;
    color: #3a3a3a;
    font-size: clamp(1rem, 3vw, 1.4rem);
}

.mantenimiento .container p{
    color: #6b6b6b;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(.8rem, 3vw, 1rem);
}

.mantenimiento .container h2{
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    color: #888;
}
