
.image-with-text-header {
    max-width: 1170px;
    margin: 0 auto 3rem;
    h2 {
        margin: 0;
    }
}

.image-with-text {
    max-width: 1170px;
	margin: 0 auto;

    .image-with-text__content_wrapper {
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        @media(min-width: 991px) {
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }
        
        &.image_alignment_right {
            .image-with-text__content {
                display: flex;
                @media(min-width: 991px) {
                    justify-content: flex-end;
                }
                .image-with-text__content_inner {
                    margin-right: 30px;
                }
            }
        }
    }
    
    .image-with-text__items {
        position: relative;
        .field--name-field-image,
        .field--name-field-case-study-image {
            img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }
        &.desktop__view {
            @media(max-width: 991px) {
                display: none;
            }
        }
        &.mobile__view {
            @media(min-width: 991px) {
                display: none;
            }
        }
    }

    .image-with-text__content {
        @media(max-width: 991px) {
            display: flex;
            justify-content: center;
            padding: 2rem 0;
        }
        .image-with-text__content_inner {
            max-width: 750px;
            h4 {
                font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
                font-size: 36px;
                font-weight: 600;
                /* line-height: 23.1px; */
                line-height: 1;
                letter-spacing: 5px;
                margin-bottom: 2rem;
                text-transform: uppercase;
            }
            .field--name-field-description-long,
            p {
                font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 26px;
                letter-spacing: 1px;
            }
            svg {
                display: none;
            }
            .field--name-field-cta {
                a {
                    text-transform: uppercase;
                    font-size: 15px;
                    padding: 0;
                    letter-spacing: 2px;
                    position: relative;
                    font-weight: 400;
                    background-color: transparent;
                    color: #003D69;
                    .section-bg--dark_blue &,
                    .paragraph--bg--dark_blue &,
                    .section-bg--orange &,
                    .paragraph--bg--orange &
                        {
                            color: #fff;
                        }
                }
            }
        }
    }
    .more_information_button {
        margin-top: 2rem;
        font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 22.86px;
        letter-spacing: 2px;
        text-transform: uppercase;
            display: block;
    }
}