#header{
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../IMG/header-imgprueba.jpg);
    background-size: cover;
}
.filterHeader{
    display: flex;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    justify-content: center;
    align-items: center;
}
.bgImageHeader{
    width: 100%;
    height: 75%;
    background-image: url(../IMG/header-imgprueba.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(50%);
    position: absolute;
}
.frontHeader{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    width: 60%;
    text-align: center;
    height: 60%;
}
.tygLogo{
    width: 75%;
    height: auto;
    margin: 0;
}
header h1{
    color: white;
    font-size: 3vw;
    font-weight: 100;
}

@media (min-width: 768px) and (max-width: 1199px){
    #header{
        background-position-x: 30%;
    }
    .frontHeader{
        width: 100%;
    }
    header h1{
        font-size: 36px;
    }
  }

@media (max-width: 767px){
    #header{
        background-position-x: 29%;
    }
    .frontHeader{
        width: 100%;
    }
    header h1{
        font-size: 24px;
    }
}
