.bm__banner-main {
    flex: 1;
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    align-self: center;
    align-items: center;
}

.bm__banner-main h1,
.bm__banner-main h2,
.bm__banner-main h3 {
    font-family: var(--font-family-banner-name);
    font-style: normal;
    font-weight: 600;
    font-size: 95px;
    line-height: 95px;


    background: linear-gradient(180deg, #F2BB2E 50%, #FFFFFF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bm__banner-main h2 {
    font-weight: 600;
    font-size: 65px;
    line-height: 65px;
}

.bm__banner-main h3 {
    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
}

.bm__banner-main p {
    font-family: var(--font-family-banner-caption);
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;

    color: #FFFFFF;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bm__banner-main-mini {
    flex: 1;
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    align-self: center;
    align-items: center;
}

.bm__banner-main-mini h1 {
    font-family: var(--font-family-banner-name);
    font-style: normal;
    font-weight: 600;
    font-size: 65px;
    line-height: 65px;

    background: linear-gradient(180deg, #F2BB2E 50%, #FFFFFF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bm__banner-main-mini p {
    font-family: var(--font-family-banner-caption);
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;

    color: #FFFFFF;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}

.bm__banner-xs {
    flex: 1;
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    align-self: center;
    align-items: center;
}

.bm__banner-xs h1 {
    font-family: var(--font-family-banner-name);
    font-style: normal;
    font-weight: 600;
    font-size: 46px;
    line-height: 46px;

    background: linear-gradient(180deg, #f2bb2e 50%, #FFFFFF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}

.bm__banner-xs p {
    font-family: var(--font-family-banner-caption);
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;

    color: #FFFFFF;

    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}


.bm__banner-xs-print {
    margin-left: 20px;
    display: block;
    position: relative;
    flex-direction: column;
}

.bm__banner-xs-print h2 {
    font-family: var(--font-family-banner-name);
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
    color: #5e5e5e;
    text-align: center;
}

.bm__banner-xs-print p {
    font-family: var(--font-family-banner-caption);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #5e5e5e;
}


/**
 * Media: Mobile Phone
 */
 @media screen and (max-width: 550px) {

    .bm__banner-main h1 {
        font-size: 55px;
        line-height: 65px;
    }

    .bm__banner-main p {
        font-size: 15px;
        line-height: 15px;
    }

}