*{
    text-decoration: none;
}
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f5f5f5;
    margin-top: 10px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.75);
    text-align: center;
}

h1 {
    font-size: 2.45em;
    font-weight: 700;
    color: #5d5d5d;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    margin-top: 30px;
}
.padre{
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-flow: column;
    background-color: #707070;
}
    .encabezado{
        background: url(../Imagenes/Servidores_SITE.jpg);
        height: 150px;
        background-position: center;
        background-attachment: contain;
        background-size: cover;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
        .menu{
            background: rgba(0,0,0, .2);
            display: flex;
            flex-flow: row nowrap;
            height: 60px;
            align-items: center;
        }
            .logo{
                height: 100px;
                width: 200px;
            }
                .logo img{
                    width: 50%;
                    border-radius: 50%;
                }
            .nav-menu{
                flex: 5 1 auto;
            }
                .nav-menu a{
                    color: #fff;
                    font-size: 15px;
                    text-transform: uppercase;
                    padding: 0 10px;
                    letter-spacing: 2px;
                }
                .nav-menu a:hover{
                    color: rgba(0,0,0, .5);
                }
            .social{
                flex: 1 1 auto;
                display: flex;
                padding-bottom: 5px;
            }
                .social a{
                    font-size: 18px;
                    color: #fff;
                    padding: 0 10px;
                }
                .social a:hover{
                    color: #8d8a8a;
                }
        .texto{
            background: #0E8388;
        }
            h1{
                background: #CBE4DE;
            }

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 135px;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.info {
    color: #5594cf;
    fill: #5594cf;
}

.error {
    color: #c92127;
    fill: #c92127;
}

.warning {
    color: #ffcc33;
    fill: #ffcc33;
}

.success {
    color: #5aba47;
    fill: #5aba47;
}

.icon-large {
    height: 132px;
    width: 132px;
}

.description-text {
    color: #707070;
    letter-spacing: -0.01em;
    font-size: 1.25em;
    line-height: 20px;
}

.footer {
    margin-top: 40px;
    font-size: 0.7em;
}

.animate__delay-1s {
    animation-delay: 1s;
}
.marcas{
    background: rgba(0,0,0, .7);
    display: flex;
    flex-direction: row-reverse;
}
    .marcas img{
        padding: 10px;
        height: 80px;
        width: 100px;
    }
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media all and (max-width: 800px) {
    .padre{
        margin-bottom: 10%;
    }
        .seccion{
            flex-direction: column;
        }
        .encabezado{
            min-height: 350px;
        }
            .menu{
                flex-direction: column;
                height: auto;
            }
                .logo{
                    padding-bottom: 10px;
                }
                .nav-menu{
                    padding-bottom: 10px;
                    display: flex;
                }
                    .nav-menu a{
                        margin-top: 10px;
                        margin-inline: 5px;
                        width: 100px;
                        padding-bottom: 10px;
                    }
                .social{
                    padding-bottom: 10px;

                }
            .apartado{
                display: flex;
                justify-content: center;
            }
}
@media (max-width: 600px){
    .padre{
        margin-bottom: 10%;
    }
    .encabezado{
        min-height: 350px;
    }
            .menu{
                height: 300px;
            }
            .nav-menu{
                flex-flow: column;
                padding-bottom: 15px;
            }
            .nav-menu a{
                font-size: 12px;
            }
            .social{
                padding-bottom: 10px;
            }
}