@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #131313;
}
.CONTEINER {
    width: 60%;
    height: auto;
    font-family: sans-serif;
    font-size: 18px;
    margin: auto;
    background-image: linear-gradient(to top, #d1d0d0, #dcdcdc, #e8e7e8, #f3f3f3, #ffffff);
}

.BOX_LOGO {
    width: 100%;
    display: block;
    margin: auto;
    padding: 20px 0px;
    box-shadow: 2px 2px 4px #585858;
    background-image: linear-gradient(to right top, #eee520, #f0df1b, #f2d817, #f3d213, #f4cc11);
}

.BOX_LOGO img {
    width: 160px;
    margin: auto;
    display: block;
}
.paises {
    display: block;
    margin: auto;
    width: 500px;
    padding: 50px;
    text-align: center;
}

.banderas {
    width: 40px;
    padding: 0px;
    margin: 30px;
    cursor: pointer;
    box-shadow: 2px 2px 4px gray;
}
.banderas:hover {
    background: #585858;
    color: white;
}

.acordeon {
    display: none;
}

.acordeon_pais {
    width: 100px;
    margin: auto;
}

.ciudad {
    width: 70%;
    padding: 3px;
    list-style: none;
    margin: auto;
   
}

.ct_si {
    display: block;
}
.ct_no {
    display: none;
}
.ciudad a {
    text-decoration: none;
    display: block;
    padding: 5px;
    color: #131313;
}
.ciudad a:hover {
    background: #cecece;
}

.RESUMEN {
    width: 100%;
    background-image: linear-gradient(to right top, #eee520, #f0df1b, #f2d817, #f3d213, #f4cc11);
}

.RESUMEN p {
    width: 80%;
    padding: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    color: #282828;
    font-family: 'Acme', sans-serif;
    font-size: 26px;
}

.TRABAJOS {
    width: 100%;
    background-image: linear-gradient(to right top, #eee520, #f0df1b, #f2d817, #f3d213, #f4cc11);
    font-size: 30px;
    font-family: sans-serif;
    letter-spacing: 2px;
    padding: 40px 0;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    color: white;
    display: flex;
    flex-wrap: wrap;
    border-top: 5px solid #282828
}

.BOX {
    width: 200px;
    justify-content: center;
    margin: auto 20px;
}

.BOX img {
    width: 90px;
    display: block;
    margin: auto;
    padding: 5px;
    transition: all;
    animation: pum .7s infinite alternate;
    animation-delay: .5s;
}

@keyframes pum {
    from {
        transform: scale(.9);
    }
    to {
        transform: scale(1.1);
    }
}
.BOX h2 {
    display: block;
    width: 180px;
    font-size: 18px;
    text-align: center;
    color: #f0df1b;
    background: #282828;
    padding: 5px;
}

.FOOTER {
    width: 100%;
    height: 90px;
    background-image: linear-gradient(to bottom, #0d0d0d, #111111, #141414, #171717, #1a1a1a);
    color: white;
    padding: 0px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 30px;
    font-family: sans-serif;
    letter-spacing: 2px;
    padding: 40px 0;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.FOOTER  h3 {
    width: 100%;
    padding: 10px;
    margin: auto;
    font-size: 14px;
    font-weight: 400;
}




















