/* CSS ADDE - CONTACTO */

/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* COOKIES */

#avisoCookies {
    display: none;
    background: #FFFFFF;
    color: #28252B;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    padding-top: 60px;
    box-shadow: 0px 0px 15px #888888;
    text-align: center;
}

#avisoCookies.activo {
    display: block;
}

#avisoCookies #cookie_adde {
    max-width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

#avisoCookies #tituloCookies {
    font-weight: bold;
}

#avisoCookies #tituloCookies, #avisoCookies #parrafoCookies {
    margin-bottom: 15px;
}

#avisoCookies #botonCookies {
    width: 100%;
    background-color: #28252B;
    border:2px solid black;
    border-radius: 10px;
    color : #FFFFFF;
    text-align: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: .3s ease all;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

#avisoCookies #botonCookies:hover {
    background-color: #FEFF86;
    color: #28252B;
}

#fondoAvisoCookies {
    display: none;
    background: rgba(0,0,0,.20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

#fondoAvisoCookies.activo {
    display: block;
}

/* CUERPO */

.top{
    height: 165px;
}

.contenido_general{
    margin-bottom: 30px;
}

.bg-header {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    background-color: #AFD3E2;
    background-image: url("../imagenes/banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.promo-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.promo-text {
    color: #000000;
    font-size: 48px;
    text-align: center;
}

#formulario{
    width: 100%;
    height:40vh;
    padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#boton{
    background-color: #28252B;
    color: #FFFFFF;
    border:2px solid black;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;   
}

#boton:hover{
    background-color: #FEFF86;
    color: #28252B;
}

/* @MEDIAS */

@media screen and (max-width: 768px) {
    
    .top {
        height: 91px;    
    }
}



