body {
    padding: 0;
    margin: 0;
    background: #fff url(iconos-andamios.png) repeat;
    background-size: 40%;
}

body p {
    font-size: 12px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
}

.video {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fondo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background: linear-gradient(to top, #000000c7, transparent);
}

.contenedor {
    max-width: 1170px;
    width: 90%;
    display: block;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 50px 0 10px;
}

.logo {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    background: #f9110c;
}

.text-light {
    color: #fff;
}

.logo img {
    width: 90%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 3px;
}

.contenedor .tit_corporativo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    text-align: center;
    margin: 0;
}

.contenedor .enlaces {
    display: flex;
    width: 100%;
    margin: 10px auto;
}

.contenedor .enlaces .pais {
    display: inline-block;
    float: left;
    width: 25%;
    margin: 0;
}

.enlaces .pais .cont-pais {
    padding: 20px 20px 5px;
    margin: 10px;
    background: #ffffffcf;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enlaces .pais .cont-pais::before {
    content: '';
    position: absolute;
    bottom: -89%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9110c;
    z-index: -1;
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enlaces .pais .cont-pais:hover::before {
    bottom: 0;
}

.enlaces .pais .cont-pais img {
    width: 40%;
    display: block;
    margin: 15px auto 0;
}

.cont-pais h3 {
    text-align: center;
    font-size: 23px;
    line-height: 25px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
    padding: 10px 0;
    border-top: 2px dashed #333;
    border-bottom: 2px solid #333;
    transition-duration: 450ms;
    margin-bottom: 30px;
}

.cont-pais h3 a {
    color: #676767;
    text-decoration: none;
}

.cont-pais p {
    text-align: center;
    font-size: 16px;
    line-height: 18px;
    color: #676767;
    margin-top: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    margin-bottom: 0;
}

.boxes .cont-pais p {
    color: #fff;
}

.cont-pais:hover h3 {
    background-color: #f9110c;
    transition-duration: 450ms;
    border: 2px solid #f9110c;
}

.cont-pais:hover h3 a {
    color: #fff;
}

@media only screen and (max-width:768px) {
    .contenedor {
        padding-top: 50px;
        width: 95%;
    }

    .contenedor .enlaces {
        width: 100%;
        flex-wrap: wrap;
    }

    .contenedor .enlaces .pais {
        width: 50%;
    }

    .logo img {
        width: 80%;
    }

    .enlaces .pais .cont-pais img {
        margin: 15px auto;
    }

    .cont-pais h3 {
        font-size: 18px;
        display: none;
    }

    .enlaces .pais .cont-pais::before {
        bottom: -80%;
    }

    .cont-pais p {
        font-size: 13px;
    }
}