.side-by-side-featured {
    margin-bottom: 50px;
    overflow: hidden;
}

.side-by-side-featured,
.side-by-side-featured .slide {
    position: relative;
}

.side-by-side-featured .bg-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.side-by-side-featured .slide {
    padding: 10px 20px 50px
}

.side-by-side-featured .slide .img-cont {
    margin: 0 auto;
    transform: rotateZ(-2.5deg);
    margin-bottom: 20px;
    width: 220px;
    padding-bottom: 220px;
    background-color: transparent;
    box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.2);
}

.side-by-side-featured .img-cont img {
    width: 100%;
    display: block;
    border: 3px solid #fff;
}

.side-by-side-featured .slide .content-section {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    min-height: 263px;
}

.side-by-side-featured .slide .content-section .inner {
    padding: 0 20px;
}

.side-by-side-featured .slide .content-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    background-color: #d5e3e3;
    width: 540px;
    height: 540px;
    border-radius: 100%;
    transform: translateX(-50%);
    z-index: -1;
}

.side-by-side-featured .content-section h4,
.side-by-side-featured .content-section h4 a {
    color: #273b56;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    margin-bottom: 12px;
    text-align: center;
}

.side-by-side-featured .content-section .sbs-hr {
    height: 2px;
    width: 48%;
    margin: 0 auto 12px;;
    background-color: #58b7dd;
}

.side-by-side-featured .content-section .slide-subtitle {
    color: #273b56;
    font-family: "spectral";
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: 0.0em;
    font-style: italic;
    margin-bottom: 18px;
    text-align: center;
}

.side-by-side-featured .content-section p {
    color: #00132c;
    font-size: 16px;
    letter-spacing: 0.0em;
    line-height: 1.8em;
    text-align: center;
    margin-bottom: 12px;
}

.side-by-side-featured .content-section .btn-group {
    text-align: center;
}

.side-by-side-featured .content-section .btn-group > * {
    margin: 0 auto;
    text-align: center;
}

.side-by-side-featured .content-section .read-more {
    color: #00132c;
    font-size: 16px;
    font-family: "spectral";
    font-style: italic;
    letter-spacing: 0.0em;
    line-height: 1em;    
}

.side-by-side-featured .content-section .fas {
    color: #58b7dd;
}

@media (min-width: 40em) {
    .side-by-side-featured .bg-wrapper {
        display: block;
    }

    @keyframes waves {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0%);
        }
    }

    .side-by-side-featured .wave {
        position: absolute;
        left: 0;
        transform: translateX(-50%);
        animation: waves infinite 75s;
        height: 300px;
    }
    
    .side-by-side-featured .wave-1 {
        background: url("/includes/client_public/assets/shared/wave-1.png") repeat-x;
        top: 0;
        width: 200vw;
    }
    
    .side-by-side-featured .wave-2 {
        background: url("/includes/client_public/assets/shared/wave-2.png") repeat-x;
        top: 15%;
        width: 250vw;
    }
    
    .side-by-side-featured .wave-3 {
        background: url("/includes/client_public/assets/shared/wave-3.png") repeat-x;
        top: 26%;
        width: 300vw;
    }
    
    .side-by-side-featured .wave-4 {
        background: url("/includes/client_public/assets/shared/wave-4.png") repeat-x;
        top: 45%;
        width: 200vw;
    }

    .side-by-side-featured .slide {
        margin-bottom: 80px;
        margin-top: 80px;
        padding: 10px 20px;
    }

    .side-by-side-featured .slide > .inner {
        max-width: 1120px;
        margin: 0 auto;
        display: flex;
        position: relative;
        align-items: center;
    }

    .side-by-side-featured .slide .img-cont-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
        width: 53%;
    }

    .side-by-side-featured .slide .img-cont {
        width: 100%;
        padding-bottom: 100%;
        margin-bottom: 0;
        transform: none;
        transition-delay: .2s;
        transition: all ease 1.2s;
    }

    .side-by-side-featured.js-loaded .slide .img-cont {
        transform: rotateZ(2.5deg);
    }

    .side-by-side-featured .img-cont img {
        border: 8px solid #fff;
    }

    .side-by-side-featured .slide .content-section {
        width: 47%;
        max-width: 450px;
        min-height: 0;
    }

    .side-by-side-featured .slide .content-section::after {
        bottom: 50%;
        transform: translate(-50%, 50%);
        width: 120%;
        height: 0;
        padding-bottom: 120%;
        border-radius: 100%;
    }

    .side-by-side-featured .content-section h4,
    .side-by-side-featured .content-section h4 a {
        margin: 0 auto;
        font-size: 18px;
    }

    .side-by-side-featured .content-section .slide-subtitle {
        font-size: 15px;
        margin: 0 auto 10px;
    }

    .side-by-side-featured .content-section .description {
        margin: 0 auto 12px;
        font-size: 12px;
    }
}

@media (min-width: 64em) {  
    .side-by-side-featured {
        margin-bottom: 80px;
    }

    .side-by-side-featured .wave-2 {
        top: 18%;
    }
    
    .side-by-side-featured .wave-3 {
        top: 40%;
    }
    
    .side-by-side-featured .wave-4 {
        top: 64%;
    }

    .side-by-side-featured .slide {
        padding-bottom: 30px;
    }

    .side-by-side-featured .content-section h4,
    .side-by-side-featured .content-section h4 a {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .side-by-side-featured .content-section .sbs-hr {
        max-width: 280px;
        width: 140px;
        margin-bottom: 16px;
    }

    .side-by-side-featured .content-section .slide-subtitle {
        margin-bottom: 14px;
        font-size: 26px;
    }

    .side-by-side-featured .content-section .description {
        font-size: 20px;
    }

    .side-by-side-featured .content-section .read-more {
        font-size: 20px;
    }
}
