@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    max-width: 1349px;
}


body{
    background-color: #FAFAFA;
}


/*INICIO NAVBAR*/
.navbar{
  height: 80px;
  margin: 5px 10px;
  border-radius: 16px;
  padding:0.5rem;
}
.navbar-brand img{
    width: 155px;
    height: 26px;
}

#logot img{
    width: 155px;
    height: 26px;
}

.WhatsApp-button{
    background-color: #098F90;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.navbar-toggler{
    border: none;
    font-size:1.25rem ;

}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link{
  color: #000;  
  font-weight: 500;
  position: relative;
}

.nav-link:hover, .nav-link.active{
    color:#098F90;
}


    .nav-link::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height:2px ;
        background-color: #098F90; /*color de las linea*/
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
/*FIN NAVBAR*/



/*INICIO CARTA*/
#quienes{
    margin-top:50px;
}

.about-text h2, .about-text h4, .about-text h5{
text-align: center;
}



.about-text p{
    text-align: justify;
}


.about-text h4{
    font-family: "Archivo Black", sans-serif;
    color: #072929; 
}

#textus{
padding-left: 0;
}

@media(max-width:991px){
    .about-text{
        padding: 20px;
    }
}
/*FIN CARTA*/


/*INICIO FOOTER*/
.footer-links ul{
    padding-left: 0;
}

footer{
    /*text-transform: capitalize;*/
    background-color:#010808;
    padding: 80px 0;
    margin-top: 200px;
}

#containerfooter{
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row{
    display: flex;
    flex-wrap: wrap;
}

.footer-links{
    width:25% ;
    padding: 0 15px;
}

.footer-links h4{
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid #098F90;
    padding-bottom:10px;
    display: inline-block;
}

.footer-links h5{
    font-size: 18px;
    color:#0aa8a8;
    margin-top: 25px;

}

.footer-links h6{
    font-size: 16px;
    color: #fff; 
}

.footer-links ul li a{
    font-size: 16px;
    text-decoration: none;
    color:#fff;
    display: block;
    margin-bottom: 7px;
    transition: all .3s ease;
}

.footer-links ul li a:hover{
    color:#1bd1d1;
    padding-left: 6px;
}

.social-links a{
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color:rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all .5s ease;
}

.social-links a:hover{
background-color: #098F90;
}

.contador{
    padding-top: 45px;
    }

@media(max-width:991px){
.footer-row{
    text-align: center;
}
.footer-links{
    width: 100%;
    margin-bottom: 30px;
}
.social-links a{
    color: #fff;
}
}
/*FIN FOOTER*/