.rfp-callout-photo {
    margin: 0 auto 30px;
    max-width: 1440px;

    .slide {
        display: grid;
        grid-template-columns: 1fr;

        @media (min-width: 64em) {
            grid-template-columns: 1fr 1fr;
        }

        .content-section {
            order: 2;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            flex: 1;
            margin-bottom: 20px;
            padding: 35px var(--space-6) 30px;
            height: 100%;
            color: #fff;
            text-align: center;
            background-color: #485644;
            background-image: url(/includes/public/assets/shared/shape-waves-repeat.svg);
            background-size: 100%;
            background-position-y: 200px;
            background-repeat: no-repeat;

            @media (min-width: 468px) { background-position-y: 180px; }
            @media (min-width: 40em) { background-position-y: 160px; }
            @media (min-width: 980px) { background-position-y: 145px; }
            @media (min-width: 64em) { order: 1; background-image: none; overflow: hidden; }
            @media (min-width: 75em) { padding: 30px 60px; }

            .slide-title {
                margin-bottom: 10px;
                font-size: 24px;
                font-family: var(--font-proxima-nova);
                font-weight: 800;
                line-height: 1;

                @media (min-width: 64em) {
                    font-size: 30px;
                }
            }

            .icon {
                margin: 0 auto 10px;
                width: 50px;
            }

            .button {
                display: inline-block;
                margin: 0;
                margin-top: 15px;
                padding: 6px 20px;
                color: #fff;
                font-size: 20px;
                font-family: var(--font-wilco-lowend);
                text-transform: uppercase;
                background: #ef6c01;
                border: none;
                border-radius: 8px;
            }

            &:before {
                @media (min-width: 64em) {
                    content: '';
                    position: absolute;
                    background-image: url(/includes/public/assets/shared/shape-waves-repeat.svg);
                    background-size: 100%;
                    transform: rotate(-90deg);
                    background-repeat: no-repeat;
                    width: 100%;
                    right: -380px;
                    opacity: 0.7;
                    height: 100%;
                    pointer-events: none;
                    right: -53%;
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                height: 95%;
                width: 95%;
                border: 1px solid rgba(255, 255, 255, 0.5);
                transform: translate(-50%, -50%);
                pointer-events: none;

                @media (min-width: 64em) {
                    height: 97%;
                    width: 97%;
                    border: 1px solid rgba(255, 255, 255, 1);
                }
            }
        }
        .img-cont {
            order: 1;
            flex: 1;
            overflow: hidden;

            @media (min-width: 64em) { order: 2; }

            &:hover {
                img {
                    transform: scale(1.1);
                }
            }

            img {
                object-fit: cover;
                height: 100%;
                width: 100%;
                transform-origin: center;
                transition: all ease-out 0.6s;
            }
        }
    }
}