

/* Large desktops and laptops */
@media (min-width: 1368px){
    
}
@media (min-width: 1200px) and (max-width: 1367px) {
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
   
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
    .logo {
        height: 100px;
    }
    .btn-menu {
        font-size: 18px;
    }
    .subtitulo-quienes {
        font-size: 18px;
    }
    .texto-quienes {
        font-size: 15px;
    }
    .texto-contacto {
        margin-top: 20px;
        font-size: 20px;
        line-height: 35px;
    }
    .news {
        margin-top: 20px;
    }
    .copy {
        font-size: 12px;
    }
    .news input {
        width: 50vw;
    }
}
@media (max-width: 415px) {


}


