.cta-images {
    display: flex;
}

.cta-images > div {
    margin: 15px 20px;
}

.cta-images h3 {
    background-color: var(--primaryalt);
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    padding: 5px;
    font-weight: 400;
}

.cta-images p {
    margin: 0;
}

.cta-header h2 span {
    color: #4fbcd5;
    font-style: italic;
}

.cta-header h2 {
	width: 100%;
}

div#cta .row-inner {
    margin: 0;
	max-width: 100%;
}

div#cta .cta-header {
    text-align: left;
    background: #efefef;
    background: linear-gradient(169deg,rgba(239, 239, 239, 1) 0%, rgba(176, 176, 176, 1) 63%);
    padding: 30px 5% 20px;
    width: 100%;
    border-top: 30px solid #0a1c4b;
    border-bottom: 30px solid #0a1c4b;
}

#cta .expanding-images {
    display: flex;
}

#cta a.expanding-image {
    width: 33%;
    transition: width 250ms ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expanding-images.cta-images img {
    max-height: 500px;
    object-fit: contain;
}

#cta a.expanding-image:hover {
    width: 50%;
	transition: width 250ms ease-in-out;
}

.cta-images {
    display: flex;
}

.cta-images > a {
    margin: 15px 0;
}

.cta-images > a:nth-child(2) {
    margin: 15px 20px;
}

.cta-images h3 {
    background-color: #64739a;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    font-weight: 400;
    margin-bottom: 0;
    height: 100%;
}

.cta-images > a:nth-child(2) h3 {
    background-color: #5b8fbc;
}

.cta-images > a:nth-child(3) h3 {
    background-color: #384a79;
}

.cta-images p {
    margin: 0;
}

.cta-images > div a:hover {
    opacity: .4;
    transition: opacity .4s ease-in;
}

.cta-images > a:hover h3 {
    background-color: var(--primaryalt-d-1);
    transition: background-color .8s ease-in;
}

@media only screen and (max-width: 600px) {
    .expanding-images.cta-images img {
        display: none;
    }

    .expanding-images.cta-images a {
        width: 100%;
    }

    #cta .expanding-images {
        flex-direction: column;
        padding: 0 5%;
    }

    #cta a.expanding-image {
        width: 100%;
    }

    .cta-images > a:nth-child(2) {
        margin: 0;
    }
}