/*******************************/
/********* General CSS *********/
/*******************************/

@font-face {
    font-family: "Roboto-Bold";
    src: url("../Fonts/fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("../Fonts/fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../Fonts/fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../Fonts/fonts/Roboto-Regular.ttf");
}


:root {
    --azulFuerte: #0E21A0;
    --rojo: #E20613;
    --azulPrincipal : #303689;
    --gris: #444444;
    --blanco: #FFFFFF;
}



/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    top: 0;
    border-bottom: .2px solid gray;
}
.navbar a{
    color: var(--azulPrincipal) !important;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: Roboto-Bold;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
    background-color: white !important;
}

/*Opcion desplegable*/
ul{
	list-style:none;
}

.nav li .srv {
	text-decoration:none;
	padding:14px 14px;
	display:block;
}


.navbar a:hover {
    color: var(--rojo) !important;
}

.nav li .srv {
	background-color:var(--blanco);
    color: var(--azulPrincipal);
    font-weight: bold;
    border: 1.5px solid var(--grisClaro);
}
 			
.nav li .srv:hover {
	background-color: var(--rojo);
    color: var(--blanco) !important;
}

.nav li ul {
	display:none;
	position:absolute;
	min-width:160px;
}

.nav li:hover > ul {
	display:block;
}

.navbar .redes a{
    display: inline-block;
}

@media (max-width: 800px) {
    .navbar .navbar-brand img {
        display: none;
    }

    .navbar .redes-sociales{
        margin-left: -20px;
    }

    .navbar .redes-sociales a img{
        margin-left: 18px;
    }

    .nav li .srv {
        background: var(--grisClarito);
        margin-left: 7rem;
    }
}


.modal-body{
    font-family:"Roboto-Regular" ;
}

.modal-body ol li {
    font-weight: bold;
    color: var(--azulFuerte);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/

#footer {
    padding: 35px 0 20px;
    position: relative;
    border-top: .2px solid gray;
}

.sedes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 15px;
}

.contact-info li {
    list-style: none;
    margin: 0 0 5px 0px;
    padding: 0 0 0 24px;
}

.contact-info li:first-child { margin-left: 0; }

.icon-place{
    text-align: center;
}

.contact-info .address { 
    text-align: center;
    font-family: Roboto-Light;
    color: var(--gris);
    margin-top: 1rem;
} 

.address b{
    font-family: Roboto-Bold;
    color: var(--gris);
    font-weight: 600;
}

.footer-email{
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 16px;
    color: var(--gris);
}

.footer-email i{
    font-family: Roboto-Light;
    color: var(--gris);
    font-weight: 800;
    font-size: 18px;
    padding-right: 5px;
    padding-top: 5px;
}

@media (max-width: 800px) {

    .sedes {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .footer-email .contact-info li:first-child {
        margin-left: -3rem;
    }
}

/* ---------------------------------------------------------------------- */
/*	Footer Bottom
/* ---------------------------------------------------------------------- */
#footer-bottom {
    background-color: var(--azulPrincipal);
    line-height: 17px;
    padding: 25px 0;
}

#footer-bottom ul { margin: 0; }

#footer-bottom li a {
    text-align: center;
    color: var(--blanco); 
    display: block;
    text-decoration: none;
    font-family: "Roboto-Light";
}

@media (max-width: 800px) {
    #footer-bottom ul{
        margin-right: 1.5rem;
    }
}