@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Montserrat', sans-serif !important;
}
body,p{
    padding: 0rem;
    margin: 0rem;
}

/* QUIEN SOMOS */
main.quienes-somos {
    background: #e6e6e6;
}
.quienes__img-container{
    width: 100%;
    height: 100%; /* 100% del viewport height */
    overflow: hidden; /* Evita que la imagen se desborde del contenedor */
}
.quienes__img-container> img  {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Escala la imagen para cubrir el contenedor manteniendo su relación de aspecto */
aspect-ratio: 2136/625;
}
.quienes__text-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 2rem 0rem;
}
.quienes-text {
    display: flex;
    justify-content: center;
}

.quienes__text-container>ol {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0rem 1rem 0rem 1rem;
}

/* FOOTER */
footer{
    background-color: #353C3F;
    padding: 5rem;
}
.footer__container{
    width: 100%;
    height: auto;
    display: flex;
    gap: 4rem;
}

.footer__container-logo>img {
    height: auto;
    width: 100%;
}
.footer__redes-cotainer svg {
    width:25px;
    height: 25px;
}
.footer__redes-cotainer img {
    width: 25px;
    height: 25px;
}
.footer__redes-cotainer{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    gap: 1rem;
}
.footer__redes-cotainer>div{
    width: 100%;
    margin: 0rem 0rem;
}
.footer__redes-cotainer>div span{
    font-size: 13px;
    display: inline-block;
    width: max-content;
    color: white;
    margin-bottom: 0.5rem;
}
.brand__container span{
    width: max-content;
}
.footer__redes-cotainer div div a:last-child svg .f{
    fill: #615A5A !important;
}

/* LOCATIONS */
.footer__container-content  p, .footer__container-content  a, .footer__container-content  strong {
    color: white;
    font-size: 12px;
    line-height: 19px;
    margin: 0.1rem 0rem;
    cursor: pointer;
}

.footer__container-content  a {
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.footer__container-content  span{
    color: white;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.footer__container-content{
    display: flex;
}
.footer__container-content > div {
    display: flex;
    flex-direction: column;
}
.landing__custom-pag-container{
    height: 100%;
    display: flex;
    justify-content: center;
}
.footer__container-content strong,.footer__container-content span{
    color: white;
    font-size: 12px;
}
.footer__container-content h4{
    color: white;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    margin: 0rem;
    margin-bottom: 0.5rem;
}
.footer__container-info{
    display: flex;
    width: 100%;
    gap: 2rem 2rem;
    flex-wrap: wrap;
}
.footer__container-content{
    display: flex;
    flex-direction: column;
    width: 30%;
}
.two__elements{
    display: flex;
    gap: 1.5rem;
}


@media (max-width:768px){
    .quienes__text-container{
        width: 90%;
    }
    .footer__container-content{
        width: 100%;
    }
    .footer__container-info,
    .footer__container{
        flex-direction: column;
    }
    footer{
        padding: 2rem 1rem;
    }
}