/*....  HEADER  ............................................................*/

header {
    background-color: #F2F1EA;
    z-index: 3;
    grid-column: 1/2;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: 10% 250px 1fr 10%;
    grid-template-rows: 1fr;
    align-items: center;
}

header h1 {
    color: #002964;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 500;
}

header h2 {
    color: white;
    background-color: #54A02E;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    padding: .2rem .35rem;
    letter-spacing: .1rem;
    border-radius: 3px;
    display: inline-block;
    margin-top: .2rem;
}

header #logo {
    grid-column: 2/3;
    grid-row: 1/2;
}

header #slider {
    grid-column: 3/4;
    grid-row: 1/2;
    background-repeat: no-repeat;
    background-position: 50% 28%;
    background-size: cover;
    position: relative;
    height: 100%;
    transition: all 1s ease-in-out;
}

header #slider .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: repeat;
    background-image: url('../../assets/images/filter.png');
}

header #slider .left {
    position: absolute;
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(242, 241, 234, 1);
    background: linear-gradient(90deg, rgba(242, 241, 234, 1) 0%, rgba(242, 241, 234, 0) 100%);
}

header #slider .right {
    position: absolute;
    width: 20%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(242, 241, 234, 1);
    background: linear-gradient(-90deg, rgba(242, 241, 234, 1) 0%, rgba(242, 241, 234, 0) 100%);
}