/* esto resetea todo en la página */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body{
    background-color: azure;
    color: #000000;
    font-family: IBM Plex Sans, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;

    line-height: 1.3em;
    margin: 0;
}

.container{
    width: 80%;
    max-width: 955px;
    margin: auto;
}

/* aplicar estilo a todos los links de la página */
a{
    text-decoration: none;
    color:#195798;
    transition: all 0.3s ease-in-out;

    &:hover{
        text-decoration: underline;
        letter-spacing: 3px;
    }
}

.top{
    display: flex;
    margin-top: 40px;
    width: 100%;
    justify-content:space-between;
}
.flags{
    display: flex;
    a{
        font-size: 14px;
    }
}
.flag{
    margin-right: 10px;
    width: 40px;
    filter:drop-shadow(1px 1px 3px #3b3b3ba8);
    transition: all 0.3s ease-in-out;

    &:hover{
        transform: translate(0,-5px);
        margin: 0 20px 0 10px;
    }
}
  
.menu{
    display: flex;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    justify-content: center;
    a{
        color: #fff;
    }
}
.menu li {
    margin-left: 20px;
    list-style: none;
}

.box-1{
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo{
    width: 50%;
    min-width: 300px;
    transform: translate(-0px,-20px);

    animation-name: animado;
    animation-duration: 4s;
    animation-iteration-count: 1;
}

h1{
    /* reestablezco el margen de abajo, que lo resetié al comienzo del documento*/
    margin: 40px 0 10px 0;
    font-size: 30px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 500;
}
.bold{
    font-weight: 500;
}

#empresa{
    display: flex;
}
.info{
    float:left;
    width: 50%;
    margin-top: 20px;
    padding-right: 30px;
    line-height: 1.5;
}

@keyframes animado {
    from {opacity: 0;}
    to {opacity: 1;}
}

#map {
    margin-top: 40px;
    width: 100%;
    height: 560px;
    filter:drop-shadow(1px 1px 3px #88888879);

    animation-name: animado;
    animation-duration: 1s;
    animation-iteration-count: 1;
}


#contacto{
    margin-top: 30px;
}
h2{
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
}
#footer{
    display: flex;
    margin: 30px 0 140px 0;
    width: 100%;
    justify-content:space-between;
    align-items: top;

    p{
        text-align: right;
        color: #195798;
        line-height: 1.6;
    }
}


.bg{
    width: 100%;
    height: 560px;
    background-image: url(./img/tlog_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    position: absolute;
    top: 0px;
    z-index: -1;
    opacity: 0.2;
    box-sizing: content-box;
}

.bgColor{
    width: 100%;
    height: 560px;
    background-color: #195798;

    position: absolute;
    top: 0px;
    z-index: -2;
}

.wp-cont{
    position: fixed;
    width: 80%;
    max-width: 955px;
    margin: auto;

    bottom: 50px;
    left: 50%;
    transform: translate(-50%);

    display: flex;
    justify-content: end;
}

.whatsapp{
    width: 65px;
    height: 65px;
    filter:drop-shadow(1px 1px 3px #88888879);

    animation-name: animado;
    animation-duration: 2s;
    animation-iteration-count: 1;
}


@media(max-width:700px){
    h1{
        font-size: 24px;
    }
    #empresa, #footer{
        flex-direction: column;
    }
    #footer{
        text-align: center;
        p{
            text-align: center;
        }
        h2{
            margin-bottom: 20px;
        }
    }
    .info{
        width: 100%;
    }
    .flag{
        width: 30px;
    }
    .menu li{
        font-size: 12px;
    }
}