* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo .logo-dyce {
    width: 20%;
}

.notFound {
    width: 100%;
    height: 32em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notFound .mantenimiento-img {
    width: 50%;
    position: relative;

}

.notFound .mantenimiento-img .mtn {
    width: 70%;
    height: auto;
    display: block;
    margin-left: 5rem;

}

.notFound .mantenimiento-img .tuercas {
    width: 10%;
    position: absolute;
    animation: rotar 5s linear infinite;
}

.notFound .mantenimiento-img .tuercas.left {
    left: 45%;
    bottom: 12%;
    width: 35%;
}

.notFound .mantenimiento-img .tuercas.top {
    left: 39%;
    bottom: 71%;
    width: 15%;
}

.notFound .mantenimiento-img .tuercas.right {
    left: 15%;
    bottom: 48%;
    width: 25%;
}

.notFound .texto {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    width: 50%;
}

.notFound .texto h1 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 560;
    font-style: normal;
    font-size: 2.8rem;
    margin: 5px;
}

.notFound .texto h2 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.8rem;
    margin: 5px;
}

.notFound .texto .contacto-box {
    display: flex;
    flex-direction: column;
}

.notFound .texto .contacto-box .contacto-box-items {
    display: flex;
    gap: 2rem;
}

.notFound .texto .contacto-box h3 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 560;
    font-style: normal;
    font-size: 1.5rem;
    margin: 5px;
}

.notFound .texto .contacto-box .contacto-box-items .email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notFound .texto .contacto-box .contacto-box-items .email ion-icon {
    font-size: 1.8rem;
    margin: 5px;
    color: red;
}

.notFound .texto .contacto-box .contacto-box-items .email a {
    text-decoration: none;
    color: black;
}

.notFound .texto .contacto-box .contacto-box-items .email p {
    font-size: 1.3em;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
}

.notFound .texto .contacto-box .contacto-box-items .wsp {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notFound .texto .contacto-box .contacto-box-items .wsp a {
    text-decoration: none;
    color: black;
}

.notFound .texto .contacto-box .contacto-box-items .wsp ion-icon {
    font-size: 1.8rem;
    margin: 5px;
    color: rgb(0, 0, 0);
}

.notFound .texto .contacto-box .contacto-box-items .wsp p {
    font-size: 1.7em;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-size: 1.3rem;
}




/*--animaciones--*/
@keyframes rotar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/*--responsive--*/
@media (max-width: 768px) {

    .logo .logo-dyce {
        width: 50%;
    }

    .notFound {
        flex-direction: column-reverse;
        margin-top: 2rem;
    }

    .notFound .mantenimiento-img {
        width: 100%;
        margin: 0;
    }

    .notFound .mantenimiento-img .mtn {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .notFound .mantenimiento-img .tuercas.left {
        left: 60%;
        bottom: 15%;
    }

    .notFound .mantenimiento-img .tuercas.right {
        left: 24%;
        bottom: 50%;
        width: 25%;
    }
    .notFound .mantenimiento-img .tuercas.top{
        left: 53%;
        bottom: 73%;
    }

    .notFound .texto {
        width: 100%;
    }

    .notFound .texto .contacto-box .contacto-box-items {
        flex-direction: column;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .notFound .texto h1 {
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .notFound .texto h2 {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .notFound .texto .contacto-box h3 {
        font-size: 1.3rem;
        margin-left: 1.4rem;
    }


}