.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #161A1B;

    padding: 20px 32px 20px 32px;
}

.banner .logo-wrapper {
    margin-right: 24px;
}

.banner .logo-wrapper img {
    background: linear-gradient(180deg, #A1D2FF 0%, #7386FE 100%);
    border-radius: 8px;

    box-shadow: 0px 4px 12px 0px #0000001A;
    box-shadow: 0px 2px 4px 0px #00000014;
    box-shadow: 0px 48px 240px 40px #4650CE;
    box-shadow: 0px 1px 0px 0px #FFFFFF80 inset;
    box-shadow: 0px -1px 0px 0px #00000033 inset;

}

.banner .content {
    display: flex;
    align-items: center;

    color: #FFFFFF9E;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;

    box-shadow: 0px 4px 16px 0px #0A0E0E05;
    box-shadow: 0px 1px 2px 0px #0A0E0E14;
}

.banner .content .title {
    font-family: Open Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #FFFFFFEB;
}

.banner .button-wrapper {
    flex-shrink: 0;
}

.banner .button-wrapper a {
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: right;
    text-decoration: none;
    color: #2E3031;

    background-color: #FFFFFFEB;
    border-radius: 8px;
    padding: 10px 16px;
}

@media (max-width: 767px) {
    .header {
        top: 0;
    }

    .banner {
        margin-top: 66px;
    }
}