/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    height: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.header .trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    background-color: #12A6C2;
    background-color: #000;
    z-index:1;
}

.header .logo {
    background-color: #fff;
    height: 3rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index:1;
}

.header .logo .icon {
    height: 1.5rem;
    width: 8rem;
}

.header .trigger-label {
    position: relative;
    top: 2.5rem;
    font-size: 0.5rem;
    color: #fff;
    letter-spacing: 2px;
    display: none;
}

/* iPhone6. Above 23rem (368px) */
@media only screen and (min-width: 23rem) {
    .header {
        height: 4rem;
    }

    .header .trigger {
        height: 4rem;
        width: 4rem;
    }

    .header .logo {
        height: 4rem;
        width: 12rem;
    }

    .header .logo .icon {
        height: 2rem;
        width: 10rem;
    }
}

/* iPhone6+. Above 28rem (414px) */
@media only screen and (min-width: 25.875rem) {}

/* Extra Small. Above 32rem (512px) */
@media only screen and (min-width : 32rem) {}

/* Medium. Above 48rem (768px) */
@media only screen and (min-width: 48rem) {
    .header {
        height: 6rem;
    }

    .header .trigger {
        height: 6rem;
        width: 6rem;
    }

    .header .logo {
        height: 6rem;
        width: 16rem;
        justify-content: center;
    }

    .header .logo .icon {
        width: 12rem;
        height: 4rem;
    }

    .header .trigger-label {
        top: 2.5rem;
        font-size: 0.5rem;
        display: block;
    }
}

@media only screen and (min-width: 64em) {
    .header {
        height: 8rem;
    }

    .header .trigger {
        height: 8rem;
        width: 8rem;
    }

    .header .logo {
        height: 8rem;
        width: 20rem;
        justify-content: center;
    }

    .header .logo .icon {
        width: 16rem;
        height: 4rem;
    }

    .header .trigger-label {
        top: 2.5rem;
        font-size: 0.7rem;
        display: block;
    }
}

@media only screen and (min-width: 75em) {}
