.section-contact-banner {
    /* Default value */
    margin-top: 1.5rem;

    .cover-heading .common-cta {
        margin: 2rem 0;
    }

    .cover-heading h2 {
        font-weight: 400;
        font-size: 2.25rem;
    }

	.text-media-content {
		z-index: 2;
	}

    .banner-container {
        height: 100%;

        .image-media-content {
            height: 100%;

            picture {
                height: 100%;

                img {
                    object-fit: contain;
                    object-position: bottom;
                    height: 100% !important;
                }
            }
        }
    }                

    /* Higher than 768px */
    @media (min-width: 768px) {
        .text-media-content {
            /*position: absolute;*/
            left: 0;
            padding-left: 4rem !important;
        }

        .cover-container .banner-container {
            display: grid;
        }

        .banner-container > * {
            grid-area: 1 / 1;
        }
    }            

    /* Lower than 768px */
    @media (max-width: 768px) {
        margin-top: 3rem;
    }

    /* Higher than 1200px */
    @media (min-width: 1200px) {
        .text-media-content {
            padding-left: 12rem !important;
        }

        .cover-heading h2 {
            font-size: 3rem;
        }
    }
}