/******************************************************\
|***                     Header                     ***|
\******************************************************/

.header {
    display: flex;
    position: fixed;
    /*background: linear-gradient(rgba(5, 58, 136, .5), transparent);*/
    background: transparent;
    backdrop-filter: blur(3px);
    justify-content: space-around;
    height: 10vh;
    width: 100%;
    z-index: 10;
    padding: .75% 0;
    transition: background-color 250ms ease-in-out;
}

.filled {
    background-color: white;
}

.filled-icon {
    color: #043987 !important;
}

.header-logo {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 20%;
}

.back-home {
    display: flex;
    width: 100%;
    background-image: url('/static/ycb-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 60%;
    color: transparent;
}

.header-title h1 {
    font-family: 'Title', sans-serif;
    margin: 0 auto;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 18%;
    padding-right: 2%;
}

.header-contact a {
    padding-left: 1vw;
}

.header-contact i {
    font-size: 36px;
    color: #E22722;
}