/* GENERAL */
body,
html {
    margin: 0;
    font-family: Tahoma Normal, Helvetica, Arial, verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body {
    background-image: url("../imagenes/FondoWebSEADE-01.jpg");
    background-size: cover;
    background-position: -2px 0;
}

.color-link:hover,
.color-link-blanco:hover {
    color: rgb(123, 203, 223);
}

.color-texto-cuerpo {
    color: #87868a;
}

.color-texto-titulo {
    color: #727176;
    font-weight: bold;
}

.text-size-small {
    font-size: 0.5rem;
}

.text-size-medium {
    /*font-size: 18px;*/
    font-size: clamp(10px, 0.75rem, 1rem);
}

.text-size-navbar {
    /*font-size: 80%;*/
    font-size: 0.86rem;
}

.text-size-titulo {
    /*font-size: 18px;*/
    font-size: 0.85rem;
}

.fondo-content {
    background-color: white;
}

.max-width-container {
    /*max-width: 1440px;*/
    max-width: 1200px;
}

.p-m-0 {
    padding: 0;
    margin: 0;
}

.padding-b-0 {
    padding-bottom: 0px;
}

.padding-b-20 {
    padding-bottom: 20px;
}

.padding-l-r-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.padding-t-b-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding-t-b-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-0 {
    padding: 0;
}

.padding-20 {
    padding: 20px;
}
.margin-l-20 {
    margin-left: 20px;
}

.margin-b-5 {
    margin-bottom: 5px;
}

.margin-r-b-15 {
    margin-right: 15px;
    margin-bottom: 15px;
}

.m-l--100 {
    margin-left: -100px;
}

.m-r--100 {
    margin-right: -100px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-25 {
    border-radius: 25px;
}

.text-justify {
    text-align: justify;
}

a {
    text-decoration: none;
}

/* FIN GENERAL */

/* INDEX */
#content {
    flex: 1;
}

#footer {
    flex-shrink: 0;
}

/* FIN INDEX */

/* NAVBAR */
.barra-nav {
    width: 100% !important;
    display: flex;
    justify-content: space-evenly;
}

.opcion-navbar {
    color: white;
    font-weight: normal;
}

.opcion-navbar:hover {
    color: white;
    font-weight: bold;
}

.link-navbar-seleccionado {
    color: rgb(123, 203, 223);
}

.fondo-navbar {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-item {
    padding: 0;
    margin: 0;
}
/* FIN NAVBAR */

/* CONTENT */
.convenios-responsive {
    max-width: 75%;
    height: 75%;
}

.logo-convenio {
    align-self: center;
    max-width: 100%;
}

@media (max-width: 550px) and (min-width: 530px) {
    .img-convenio {
        align-self: center;
        height: 90px;
    }
}

/* FIN CONTENT */

/* MISION */
.div-mision {
    margin: 1%;
}
/* FIN MISION */

/* CARACTERISTICAS */
.color-link {
    color: #212b66;
}

.img-caracteristicas {
    transition: all 0.5s;
}

.img-caracteristicas:hover {
    opacity: 0.9;
    scale: 1.02;
    box-shadow: 3px 3px 20px gray;
}

/* FIN CARACTERISTICAS */

/* ESTRUCTURA */
.color-link-blanco {
    color: white;
    font-weight: normal;
}

.color-link-seleccionado {
    color: indigo;
    font-weight: bolder;
}

.div-estructura-nivel {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 10px;
    width: 100%;
}

.div-card-estructura {
    width: 50%;
    height: auto;
    perspective: 1000px;
    margin: 0 20px;
    border-radius: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.3);
}

.card-titulo {
    text-align: center;
    vertical-align: middle;
    padding: 5px;
    font-size: 22px;
}

.card-estructura {
    padding: 15px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    backface-visibility: hidden;
    font-size: 15px;
    color: white;
}

.card-nivel-orientado {
    width: 33%;
    height: auto;
    perspective: 1000px;
    margin: 0 20px;
    border-radius: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.3);
}

.card-front-orientado {
    padding-left: 15px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    backface-visibility: hidden;
    font-size: 0.8rem;
    color: white;
}

.flecha-estructura1 img {
    transition: transform 0.5s ease;
}

.flecha-estructura {
    filter: invert(1);
    vertical-align: text-top;
    transition: transform 0.5s ease;
}

.flecha-arriba {
    transform: rotate(-180deg);
}

.flecha-abajo {
    transform: rotate(0deg);
}

.border-t-nivel {
    border-top: solid 1px white;
}

.fondo-nivel-estructura {
    background-color: rgba(33, 43, 102, 0.6);
}

@media (max-width: 850px) {
    .div-card-estructura {
        width: 100%;
        margin: 10px 0;
    }

    .div-estructura-nivel {
        display: block;
    }

    .card-nivel-orientado {
        width: 100%;
        margin: 10px 0;
    }
}

/* FIN ESTRUCTURA */

/* HEADER */
@media (min-width: 0px) and (max-width: 600px) {
    #banner {
        max-height: 25vw;
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    #banner {
        max-height: 18vw;
    }
}

@media (min-width: 801px) and (max-width: 1200px) {
    #banner {
        max-height: 13vw;
    }
}

@media (min-width: 1201px) {
    #banner {
        max-height: 10vw;
    }
}

@media (min-width: 1501px) {
    #banner {
        max-height: 8vw;
    }
}
/* FIN HEADER */

/* FOTOS */
.carrusel-img {
    max-width: 75%;
    height: auto;
}

@media (max-width: 550px) {
    .btn-prev-carrusel {
        margin-left: -25px;
    }

    .btn-next-carrusel {
        margin-right: -25px;
    }
}

/* FIN FOTOS */

/* VIDEOS */
.div-video {
    display: flex;
    justify-content: center;
}

.card-video {
    width: 100%;
    filter: saturate(0.6);
    transition: all ease-in-out 0.5s;

    &:hover {
        transform: scale(1.1);
        filter: saturate(1);
    }
}

/* FIN VIDEOS */

/* FOOTER */
.fondo-footer {
    background-color: rgba(255, 255, 255, 0.15);
}

.color-texto-derechos-reservados {
    color: white;
}

.texto-footer {
    text-align: left;
    color: white;
}

.logo-red-social {
    width: 25px;
    height: 25px;
}

/* FIN FOOTER */

/*  INICIO CONTACTO */
@media (min-width: 1200px) {
    .contacto-edificio {
        border-radius: 10px;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .contacto-edificio {
        border-radius: 10px;
        width: 85%;
    }
}
/* FIN CONTACTO */
