/**********************************************/
/*Import Fonts *******************************/
/********************************************/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

/*=============================================
ESCRITORIO (XL revisamos en 1366px en adelante)
=============================================*/

*{
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
}

body{
    background-color: #EFEFEE;
}

h1 h2 h3 h4 h5 {
    font-family: 'Open Sans', sans-serif;
}

ul, ol{
	list-style:none;
}

ul li a:visited, a:link, a:focus, a:hover, a:active{
	list-style:none;
	text-decoration: none;
}

/*=============================================
HEADER
=============================================*/

/*NavBar**************************************/
.logotipo{
	width:30%;
}

.bg-bluecustomer {
    background-color: #01093A;
    color: rgba(255,255,255,.9);
}


.navbar-dark .navbar-toggler {
    color: #fff;
    border-color: rgba(255,255,255,.99);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.99);
}

/*Carousel*/
.desplazar{
    margin-top: 54px;
}

/*Social media for media devices**************/
.redes ul li i{
	width:35px;
	line-height: 35px;
	text-align:center;
	cursor:pointer;
}

.fa-facebook-f{
	background: #1475E0;
    color: #fff;
}
.fa-instagram{
	background: #B18768;
    color: #fff;
}
.redesMovil{
	position:fixed;
	bottom:-10px;
    left: 50%;
	z-index:10;
	transform: translate(-50%, 0%);
}

.buttonC {
    padding: 15px 25px;
    font-size: 24px; /*tamaño de letra*/
    text-align: center; /*posicion de texto*/
    cursor: pointer; /*indica el tipo de cursor sobre el link*/
    outline: none;
    color: #fff; /*Color der letra*/
    background-color: #04AA6D; /*color de fondo*/
    border: none; /*no tiene borde*/
    border-radius: 15px; /* borde redondeado*/
    box-shadow: 0 9px #999; /*sombra de caja*/
}


/*Clase boton con pseudoclase hover (sobre)*/

.buttonC:hover {
	background-color: #0044AA;
    color: #fff;
}

/*Clase button con pseudoclase active (clic)*/

.buttonC:active {
    background-color: #0044AA; /*mantiene el color que el hover */
    box-shadow: 0 5px #060703; /* sombra de caja reducida a 0 5px*/
    transform: translateY(4px); /*traslada el elemento en el eje y 4px*/
}

.btn-success {
    color: #fff;
    background-color: #04AA6D;
    border-color: #04AA6D;
}

.shadow-style{
    /*box-shadow: 0 1rem 3rem rgba(1,9,58, .25) !important;*/
    box-shadow: rgba(1, 9, 58, 0.25) 0px 54px 55px, rgba(1, 9, 58, 0.12) 0px -12px 30px, rgba(1, 9, 58, 0.12) 0px 4px 6px, rgba(1, 9, 58, 0.17) 0px 12px 13px, rgba(1, 9, 58, 0.09) 0px -3px 5px;
}
/*Separador*/
.separator{
	min-height: 60px;
}
/*=============================================
Anuncio Cookies
=============================================*/

.aviso-cookies{
    display: none;
    background: #fff;
    padding: 1.2em;
    width: calc(100%-40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
    padding-top: 4em;
    box-shadow: 0px 2px 20px 10px rgba(222,222,222, .25);
    text-align: center;
}

.aviso-cookies.activo{
    display: block;
}

.aviso-cookies .galleta{
    max-width: 100px;
    position: absolute;
    top: -30px;
    left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo{
    margin-bottom: 1em;
}

.aviso-cookies .boton{
    width: 100%;
    background: #534e53;
    border:none;
    color: #fff;
    text-align: center;
    padding: 1em 1.3em;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    margin-bottom: 1em;
}

.aviso-cookies .boton:hover{
    background: #000;
}

.aviso-cookies .enlace{
    color: #4DBFFF;
    text-decoration: none;
}

.aviso-cookies .enlace:hover{
    text-decoration: underline;
}

.fondo-aviso-cookies{
    display:none;
    background: rgba(0, 0, 0, .3);
    position: fixed; 
    z-index: 2999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.fondo-aviso-cookies.activo{
    display: block;
}

/*=============================================
Aviso Terminos Form Application
=============================================*/

.aviso-terminos{
    display: none;
    overflow: scroll;
    margin: 0 auto;
    height: 100vh;
    background: #fff;
    padding: .1em;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 1px;
    top: 1px;
    left: 15%;
    z-index: 3000;
    padding-top: 3em;
    box-shadow: 0px 2px 20px 10px rgba(222,222,222, .25);
    text-align: center;
}

.aviso-terminos.activo{
    display: block;
}

.aviso-terminos .boton{
    
    background: #534e53;
    border:none;
    border-radius: 15px; /* borde redondeado*/
    color: #fff;
    font-size: 1.5em; /*tamaño de letra*/
    text-align: center;
    padding: 1em 1.5em;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    margin-bottom: 1em;
    outline: none;
    box-shadow: 0 9px #999; /*sombra de caja*/  
}

.aviso-terminos .boton:hover{
    background: #000;
}

.titulo-form h1{
    font-size: 2.5em;
    color: #534e53;
    overflow: hidden;
    margin-top: 56px;
    margin-bottom: 5px;
    text-shadow: none;
}

.fondo-aviso-terminos{
    display:none;
    background: rgba(0, 0, 0, .3);
    position: fixed; 
    z-index: 2999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.fondo-aviso-terminos.activo{
    display: block;
} 
 
/*=============================================
Footer
=============================================*/

footer{
	background-color: #01093A;
	color: #fff;
}

/*=============================================
TABLET HORIZONTAL (LG revisamos en 1024px)
=============================================*/

@media (max-width:1199px) and (min-width:992px){

	.logotipo{
        width:50%;
    }

    .desplazar{
        margin-top: 78px;
    }

    .aviso-terminos{
        left: 15%;
    }

}

/*=============================================
TABLET VERTICAL (MD revisamos en 768px)
=============================================*/

@media (max-width:991px) and (min-width:768px){

    .logotipo{
        width:50%;
    }

    .desplazar{
        margin-top: 63px;
    }

    .buttonC {
        padding: 12px 22px;
        font-size: 18px; /*tamaño de letra*/
        text-align: center; /*posicion de texto*/
        border-radius: 10px; /* borde redondeado*/
        box-shadow: 0 9px #999; /*sombra de caja*/
    }
    
    /*Clase boton con pseudoclase hover (sobre)*/
    
    .buttonC:hover {
        background-color: #0044AA;
        color: #fff;
    }
    
    /*Clase button con pseudoclase active (clic)*/
    
    .buttonC:active {
        background-color: #0044AA; /*mantiene el color que el hover */
        box-shadow: 0 5px #060703; /* sombra de caja reducida a 0 5px*/
        transform: translateY(3px); /*traslada el elemento en el eje y 4px*/
      }

    .aviso-terminos{
        left: 4%;
    }
 

}

/*=============================================
MÓVIL HORIZONTAL (SM revisamos en 576px)
=============================================*/

@media (max-width:767px) and (min-width:576px){

	.logotipo{
        width: 80%;
        margin-left: 0.2em;
        
    }

    .desplazar{
        margin-top: 72px;
    }

    .form-floating>.form-control, .form-floating>.form-select {
        height: calc(4.2rem + 2px);
        line-height: 1.25;
    }   

}

/*=============================================
MOVIL VERTICAL (revisamos en 320px)
=============================================*/

@media (max-width:575px){

    #titlenav h2::after{
        content: "A3C";
    }

	.logotipo{
        width: 100%;
    }

    .desplazar{
        margin-top: 66px;
    }

    .aviso-terminos{
        left: 0%;
    }

    .form-floating>.form-control, .form-floating>.form-select {
        height: calc(5.6rem + 2px);
        line-height: 1.25;
    }
	
}