a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: none;
}

.fondo_naranja {
    background-color: #cba859;
    border-color: #cba859 !important;
}

.fondo_gris {
    background-color: #04253d;
    border-color: #04253d !important;
}

.fondo_negro {
    background-color: #000000;
    border-color: #000000 !important;
}

.margen_blanco {
    border: 1px white solid;
    border-width: 1px 0 0;
}

/*HEADER*/
.contenedor_1__header__campux {
    width: 1300px;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    line-height: 13px;
    font-weight: 100;
    color: white;
}

.titulo__header__campux {}

.btn-secondary {
    color: #fff;
    background-color: #04253d;
    /* border-color: #6c757d; */
}

.contenedor_menu__header__campux {
    display: flex;
    align-items: center;
}

.enlace_menu__header__campux:nth-child(1) {
    border-width: 0;
}

.enlace_menu__header__campux {
    border: white solid;
    border-width: 0 0 0 1px;
    padding: 0 7px;
}

.contenedor_2__header__campux {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    line-height: 12px;
    font-weight: 600;
}

.logos__header__campux {
    width: 350px;
}

.contenedor_boton_movil__header__campux {
    display: none;
}

.boton_menu__header__campux {
    border: #9b9da4 solid;
    border-width: 2px;
    padding: 8px 15px;
    margin: 0 0 0 7px;
}

@media only screen and (max-width: 1499px) {

    .contenedor_1__header__campux,
    .contenedor_2__header__campux {
        width: 1100px;
    }
}

@media only screen and (max-width: 1199px) {

    .contenedor_1__header__campux,
    .contenedor_2__header__campux {
        width: auto;
        margin: 0 auto;
    }

    .logos__header__campux {
        width: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .contenedor_1__header__campux {
        display: none;
    }

    .contenedor_1__header__campux,
    .contenedor_2__header__campux {
        width: 700px;
    }

    .contenedor_boton_movil__header__campux {
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: 5px;
        width: 40px;
        height: 35px;
        border: 1px solid white;
        border-radius: 5px;
        margin: auto 0;
    }

    .linea_boton_movil__header__campux {
        background-color: white;
        width: 20px;
        height: 2px;
        margin: 0 auto;
    }

    .contenedor_menu__header__campux {
        position: absolute;
        width: 100vw;
        left: 0;
        background-color: #04253d;
        z-index: 1000;
        flex-direction: column;
        padding: 0 0 10px;
        margin: 45px 0 0;
        transform: translateX(-101%);
        transition: all 0.3s linear;
    }

    .contenedor_menu__header__campux-abierto {
        transform: translateX(0%) !important;
    }

    .enlace_menu__header__campux:nth-child(1) {
        border-width: 1px 0;
    }

    .enlace_menu__header__campux {
        border-width: 0px 0 1px 0px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .boton_menu__header__campux {
        margin: 10px 0 0 0;
    }

    .logos__header__campux {
        width: 220px;
        height: 45px;
    }
}

@media only screen and (max-width: 768px) {

    .contenedor_1__header__campux,
    .contenedor_2__header__campux {
        width: 90%;
    }
}

@media only screen and (max-width: 575px) {}

/*FOOTER*/
.contenedor_1__footer__campux {
    width: fit-content;
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(5, auto);
    column-gap: 50px;
    color: white;
}

.contenedor_textos__footer__campux {
    font-size: 12px;
    line-height: 16px;
    font-weight: 100;
}

.encabezado__footer__campux {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.contenedor_2__footer__campux {
    width: fit-content;
    margin: 20px auto;
    font-size: 12px;
    line-height: 16px;
    font-weight: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.enlace__footer__campux:nth-child(1) {
    border-width: 0;
}

.enlace__footer__campux {
    border: 1px white solid;
    border-width: 0 0 0 1px;
    padding: 0 7px;
}

@media only screen and (max-width: 1499px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .contenedor_1__footer__campux {
        grid-template-columns: repeat(3, auto);
        row-gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .contenedor_1__footer__campux {
        grid-template-columns: repeat(2, auto);
    }
}

@media only screen and (max-width: 575px) {
    .contenedor_1__footer__campux {
        grid-template-columns: repeat(1, auto);
        text-align: center;
    }
}