.header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 10;
    line-height: 0;
    background-color: #ffffff;
    opacity: 0.9;
    padding: 12px 16px;
}
.header__container {
    max-width: 926px;
    margin: 0 auto;
}
.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    line-height: 32px;
    color: #4A4D4E;
    font-family: "VodafoneLight", sans-serif;
}
.header__logo img {
    width: 48px;
    height: 48px;
    user-select: none;
    margin-right: 20px;
}
@media screen and (max-width: 1023px) {
    .header {
        padding: 12px 82px;
    }
}
@media screen and (max-width: 767px) {
    .header {
        padding: 20px 16px;
    }
    .header__logo {
        font-size: 24px;
    }
    .header__logo img {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
}
