.M--header {
    display: block;
    position: relative;
    padding: 64px 0;
    background-color: #02547d;
    background-image: linear-gradient(0deg,#02547d 0,#016394 100%);
    @media (max-width: 700px) {
        padding: 64px 0 140px;
    }
    .header__background {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        @media (max-width: 900px) {
            background-position: left bottom;
        }
        @media (max-width: 700px) {
            background-size: 100%;
            background-position: center bottom;
        }
        @media (max-width: 540px) {
            background-size: 130%;
        }
    }
    .header__wrapper {
        display: block;
        position: relative;
        z-index: 2;
    }
    .header__body {
        display: block;
        position: relative;
        max-width: 460px;
    }
    .header__title {
        display: block;
        margin: 0;
        font-size: 2.8rem;
        font-weight: 600;
        color: #f9d546;
        line-height: 1.4;
        @media (min-width: $screen-sm) {
            font-size: 3.2rem;
            line-height: 1.3;
        }
        @media (min-width: $screen-md) {
            font-size: 4rem;
            line-height: 1.2;
        }
        @media (min-width: $screen-lg) {
            font-size: 4.8rem;
        }
    }
    .header__tagline {
        display: block;
        margin: 24px 0 32px;
        font-size: 1.6rem;
        color: #fff;
        line-height: 1.7;
    }
    .header__button {
        display: block;
        margin-top: 16px;
        font-weight: 600;
        color: $text-color !important;
        background-color: #f9d546 !important;
        border-color: #f9d546 !important;
        &.-theme-light {
            color: $primary-color;
        }
        @media (min-width: $screen-sm) {
            display: inline-block;
            margin-right: 8px;
        }
    }
}