.christmas-container{
    @media screen and (max-width: 1230px) {
        padding: 0 1.47059rem;
    }
}

.christmas-banner {

    background: linear-gradient(180deg, #18286C 0%, #051148 100%);
    padding: 0 0 0 40px;
    border-radius: 12px;
    display: flex;
    position: relative;
    align-items: center;
    min-height: 490px;

    @media screen and (max-width: 1120px) {
        min-height: auto;
        flex-wrap: wrap;
        padding: 40px;
    }

    .christmas-banner__text {
        width: 50%;
        @media screen and (max-width: 1120px) {
            width: 100%;
            text-align: center;
        }
        .christmas-banner__text-headline{
            font-size: 40px;
            font-weight: 600;
            line-height: 48px;
            color: white;
            margin-bottom: 20px;
            span{
                color: #FF601A;
            }
        }
        .christmas-banner__text-subtitle{
            font-size: 24px;
            line-height: 32px;
            color: #CED7F7;
            margin-bottom: 20px;
        }
        p{
            color: white;
            font-size: 16px;
            line-height: 24px;
        }
        .bg-accent{
            margin-top: 40px;
            display: inline-block;
            @media screen and (max-width: 1120px) {
                margin-top: 20px;
            }
        }
    }

    .christmas-banner__image {
        width: 50%;
        position: relative;
        min-height: 490px;
        @media screen and (max-width: 1120px) {
            width: 100%;
            min-height: auto;
        }

        .christmas-banner__image-gift{
            position: absolute;
            top: -70px;
            right: 0;
            z-index: 2;
            @media screen and (max-width: 1120px) {
                position: relative;
                height: auto;
                top: 0;
                text-align: center;
            }
            img{
                height: 620px;
                max-width: inherit;
                z-index: 2;
                @media screen and (max-width: 1120px) {
                    height: 300px;
                    margin: auto;
                }
            }
        }

        .christmas-banner__image-symbol{
            position: relative;
            overflow: hidden;
            height: 520px;
            width: 100%;
            @media screen and (max-width: 1120px) {
                display: none;
            }
            img{
                position: absolute;
                max-width: inherit;
                opacity: 0.2;
                height: 100%;
                z-index: 1;
            }
        }
    }

}