/**
 * Header styles
 */
.header {
    position: relative;
}


/**
 * Header logos
 */
.header__logos {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
}

.header__logos img {
    width: auto;
    height: 100%;
    max-height: 40px;
    margin-right: 10px;
}

.header__logos img:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    .header__logos {
        top: 20px;
        right: 20px;
    }

    .header__logos img {
        max-height: 70px;
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .header__logos {
        top: 40px;
        right: 40px;
    }

    .header__logos img {
        max-height: 90px;
        margin-right: 30px;
    }
}


/**
 * Header text
 */
.header-text {
    padding: 15px 20px;
    text-align: center;
    background-color: var(--color-orange);
}

.header-text h2,
.header-text p {
    margin-right: auto;
    margin-left: auto;
    max-width: var(--max-page-width);
}

.header-text h2 {
    font-size: 30px;
    line-height: 120%;
}

.header-text__info {
    margin-top: 10px;
    font-size: 18px;
    line-height: 20px;
}

.header-text__instructions {
    margin-top: 20px;
    font-size: 22px;
    line-height: 28px;
    color: var(--color-green);
}

@media (min-width: 768px) {
    .header-text {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .header-text h2 {
        font-size: 42px;
    }

    .header-text__instructions {
        margin-top: 40px;
        font-size: 28px;
        line-height: 34px;
    }
}
