/* CSS IBERNET CLOUD - BRANDING Y MARCA */

/* 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 BRANDING Y MARCA */

#titulo-descripcion {
    font-weight: bold;
}

#imagen1, #imagen2 {
    box-shadow: 0px 0px 15px #888888;
}

#botonHablemos {
    font-weight: bold;
    background-color: rgb(44, 44, 44);
    border:2px solid black;
    border-radius: 0px;
    font-size: 17px;
    color: white;
    height:42.5px;
}

#botonHablemos:hover {
    background-color:#BEDFFB;
    color:black;
}

hr {
    width: 50%;
}

/* @MEDIAS */

@media only screen and (max-width: 1100px) {

    header h1{
        font-size: 35px;
    }
}

