@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500&display=swap');
.navegador{
    height: 11vh;
    /*border: solid;*/
    display: flex;
    justify-content: center;
}
.navegadorf{
    /*border: solid firebrick;*/
    height: 100%;
    width: 80%;
    display: flex;
}
.navegadorf .logo{
    width: 25%;
    /*border: solid green;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.navegadorf .logo .im{
    width: 5.5vw;
    
}
.navegadorf .logo .tx{
    width: 15vw;
}
.navegadorf .cont-menu{
    width: 75%;
    /*border: solid blue;*/
    
}
.navegadorf .cont-menu .menu{
    display: flex;
    list-style: none;
    /*border: solid red;*/
    justify-content: end;
    height: 100%;
    align-items: center;
    padding: 1%;
}
.navegadorf .cont-menu .menu li{
    
    text-align:right;
    width: max-content;
    margin-left: 8%;
    position: relative;
    transition: ease-in-out .2s;
}
.navegadorf .cont-menu .menu li:hover{
    border-bottom: solid orange;
    transition: ease-in-out .2s;
}
.navegadorf .cont-menu .menu li a{
    font-family: 'Saira Condensed', sans-serif;
    color: white;
    text-decoration: none;
    /*border: solid;*/
    font-size: 1.5vw;

}
/*BLACK COLORS*/
.navegador-black{
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
    width: 100%;
    top: 0;
    z-index: 1000;
    color: black;
}

.navegador-black .navegadorf .cont-menu .menu li a {
    color: white;
}
.navegadorf .cont-menu .menu li .black{
    color: black;
}
.bblack{
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
}

/*FOOTER*/
footer{
    height: 35vh;
}
.log img{
    width: 7vw;
    
}
.log .tx{
    width: 10vw;
}
.ft{
    height: 90%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft .ftf{
    width: 80%;
    height: 80%;
    /*border: solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft .ftf{
    font-size: 1.2vw;
    color: white;
    font-family: 'Saira Condensed', sans-serif;
}
.ft .ftf .se1
{
    height: 100%;
    /*border: solid orange;*/
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
}
.se1 div{
    width: 55%;
    display: flex;
    align-items: center;
}
.se1 div i{
    font-size: 1.3vw;
    margin-right: 2.5%;
}
.se1 .log{
    height: 55%;
    /*border: steelblue solid;*/
}
.se1 .phone, .se1 .email{
    height: 22.5%;
    /*border: solid orangered;*/
    
}


.se{
    width: 20%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    /*border: orangered solid;*/
    height: 100%;
    
}
.se a{
    color: white;
    text-decoration: none;
    font-size: 1.1vw;
}
.se a:hover{
    color: orange;
    text-decoration: underline;
}

.fb{
    height: 10%;
    background: orange;
}

@media(max-width:1024px)
{
    .navegador{
        display: flex;
        position: fixed;
        background-color: white;
        height: 75vh;
        margin-top: 10vh;
        flex-direction: column;
        width: 100%;
        z-index: 9999;
        transition: .2s ease-in;
        left: -100%;
        align-items: center;
    }
    .navegador-responsive{
        transition: .2s ease-in;
        left: 0%;
        
    }
    .navegadorf{
        /*border: solid red;*/
        flex-direction: column;
    }
    
    .navegadorf .logo{
        display: none;
    }
    .navegadorf .cont-menu{
        width: 100%;
    }
    .navegadorf .cont-menu .menu{
        flex-direction: column;
        /*border: solid gray;*/
        margin-top: 5vw;

    }
    .navegadorf .cont-menu .menu li{
        /*border: solid red;*/
        margin-bottom: 4vh;
    }
    .navegadorf .cont-menu .menu li .black, .navegadorf .cont-menu .menu li a {
        font-size: 6vw;
        color: orange;
    }

    /*FOOTER*/
    footer{
        height: fit-content;
        /*border: solid green;*/
    }
    .ft .ftf{
        flex-direction: column;
        /*border: solid green;*/
        width: 100%;
        font-size: 5.5vw;
    }
    .ft .ftf .se1{
        /*border: salmon solid;*/
        width: 100%;
    }
    .se1 div{
        width: 100%;
        /*border: solid orange;*/
    }
    .log{
        /*border: solid red;*/
        width: 100%;
        justify-content: center;
    }
    .log img{
        width: 30vw;
    }
    .log .tx{
        width: 40vw;
    }
    .se1 div i{
        font-size: 6vw;
        margin-right: 2.5%;
    }
    .se1 .phone, .se1 .email{
        padding-left: 10%;
        
    }        
    .se{
        /*border: orangered solid;*/
        width: 100%;
        
        padding: 5% 10%;
    }
    .se h3{
        color: orange;
    }
    .se a{
        
        font-size: 4.5vw;
    }
    .fb{
        height: 2vh;
        background-color: orange;
    }
   
}

