.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top-container {
    width: 100%;
    background-color: #141836;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
}

.rating-wrapper {
    display: flex;
    flex-direction: row;
    gap: 11px;
    align-items: center;
}

.bottom-container {
    width: 100%;
    background-color: #FDCA41;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 10px 16px;
    gap: 10px;
}

.rating-image {
    max-height: 15px;
    width: auto;
}

.top-text {
    font-family: var(--font-primary);
    font-weight: 450;
    font-size: 10px;
    line-height: 27px;
    vertical-align: middle;
    Color: #FFFFFF;
}

.trustpilot-image {
    max-height: 21px;
    width: auto;
}

.hidden-top-text {
    display: none;
}

.header-feature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.header-feature:not(:last-child) {
    border-right: solid 1px #141836;
    padding-right: 10px;
}

.header-feature__image {
    display: none;
}

.header-feature__text {
    color: #141836;
    font-weight: 450;
    font-size: 12px;
    line-height: 100%;
}

@media (min-width: 769px) {
    .hidden-top-text {
        display: inline-block;
    }

    .top-container {
        justify-content: center;
        padding: 12px 24px;
        gap: 20px;
    }

    .rating-wrapper {
        gap: 20px;
    }

    .bottom-container {
        padding: 12px 24px;
        gap: 36px;
    }

    .rating-image {
        max-height: 22px;
    }

    .header-feature:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .top-text {
        font-size: 15px;
    }

    .trustpilot-image {
        max-height: 29px;
    }

    .header-feature__text {
        font-size: 15px;
    }

    .header-feature__image {
        display: block;
        height: auto;
    }

    .fire {
        width: 18px;
    }

    .happy {
        width: 22px;
    }

    .proven {
        width: 22px;
    }
}