/* CSS IBERNET CLOUD - CONTACTO */

/* CUERPO */

body {  
    margin: 0;
    background-color: #FFFFFF;
    font-family: Helvetica;
}

/* COOKIES */

#avisoCookies {
    display: none;
    background: #fff;
    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 #galleta {
    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: rgb(44, 44, 44);
    border:2px solid black;
    border-radius: 0px;
    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:#BEDFFB;
    color:black;
}

#avisoCookies #enlaceCookies {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

#avisoCookies #enlaceCookies:hover {
    text-decoration: underline;
}

#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;
}

/* CABECERA */

header {
    width: 100%;
    height: 70vh;
    background-color: #B5B5B5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Merriweather;
}

header h1 {
    font-size: 50px;
}

#contenedorVideo {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
  
#video {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
  
#texto-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #FFFFFF;
    z-index: 1; 
    margin-top: 50px;
}

/* SECCIÓN CONTACTO */

section {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

#texto-section {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-bottom: 50px !important;
}

#texto-section > h3, label > h5 {
    font-weight: bold;
}

#politica {
    text-decoration: none;
    color: #007BFF !important;
}

#politica:hover{
    text-decoration: underline;
    color: #007BFF !important;
}

#info2 {
    margin-top: 50px;
    margin-bottom: 50px;
}

#botonVerMas {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    background-color: rgb(44, 44, 44);
    border:2px solid black;
    border-radius: 0px;
    font-size: 10px;
    color: white;
    height:30px;
}

#botonEnviar {
    font-weight: bold;
    background-color: rgb(44, 44, 44);
    border:2px solid black;
    border-radius: 0px;
    font-size: 17px;
    color: white;
    height:50px;
}

#botonBorrar {
    font-weight: bold;
    background-color: rgb(248, 248, 248);
    padding:7px;
    border:2px solid black;
    border-radius: 0px;
    font-size: 17px;
    color: black;
    margin: 10px;
    height:50px;
}

#botonEnviar:hover, #botonBorrar:hover, #botonVerMas:hover {
    background-color:#BEDFFB;
    color:black;
}

#info-contacto {
    height: 340px;
    background-color: #DCDCDC;
    box-shadow: 0px 0px 10px #888888;
    border-radius: 5%;
    margin-top: 20px; 
    margin-bottom: 80px;
}

#visitarnos span, #llamarnos span, #escribenos span{
    cursor:pointer;
}

#mensajeInfoContacto {
    margin-top: 50px;
}

/* @MEDIAS */

@media only screen and (max-width: 1100px) {

    header h1{
        font-size: 35px;
    }
}
