/*footer*/
footer {
    width: 90%;
    height: auto;
    padding: 1px 5%;
    background-color: rgba(14, 60, 137);
    color: white;
    font-family: "Montserrat", sans-serif;
}
.titulo {
    width: 40%;
    top: 2vw;
    margin: auto;
    text-align: center;
    position: relative;
    border-radius: 5px;
    background-color: rgba(15, 78, 183, 0.5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titulo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(180deg, #0040ff, cyan);
    animation: animate 3s linear infinite;
    transition: all 0.3s linear;
}
.titulo::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: rgba(15, 78, 183, 1);
    border-radius: 5px;
}
.titulo:hover::after {
    background: black;
}
.titulo h2 {
    color: white;
    padding: 2vw;
    font-size: 3vw;
    margin-top: 0vw;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.informacion {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: center;
}
.informacion img {
    width: 3vw;
    height: auto;
}
.informacion p {
    margin-left: 1vw;
    font-size: 1.5vw;
    text-decoration: none;
    color: white;
}
#number {
    width: 50%;
}
#number a {
    text-decoration: none;
    color: white;
}
#direccion {
    width: 40%;
}
#number div,
#direccion {
    display: flex;
    align-items: center;
    margin: 2vw 0;
}

.references {
    width: 100%;
    display: flex;
    align-items: center;
}
#DyR {
    width: 60%;
}
#redesS {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
#redesS img {
    width: 4vw;
    height: auto;
    margin: 0vw 1.5vw 1.5vw 1.5vw;
}

@media screen and (max-width: 600px) {
    .titulo {
        width: 60%;
        margin: 5vw auto;
    }
    .titulo h2 {
        color: white;
        font-size: 7vw;
    }
    .informacion {
        flex-direction: column;
    }
    #number {
        width: 100%;
        margin: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    #number div {
        margin: 0;
    }
    #direccion {
        width: 100%;
        margin: 2vw 0 5vw 0;
    }
    .informacion p {
        margin-left: 3vw;
        font-size: 4vw;
    }
    #correoC {
        font-size: 3.5vw;
    }
    .informacion img {
        width: 5vw;
        height: auto;
    }
    .references {
        flex-direction: column-reverse;
    }
    #DyR {
        width: 100%;
        text-align: center;
        font-size: 2vw;
    }
    #redesS img {
        width: 8vw;
        height: auto;
        margin: 1.5vw;
    }
    #redesS {
        justify-content: space-evenly;
        width: 100%;
    }
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
