.exp-container > h1 {
    text-align: center;
    margin: 1.5em 0 1em;
}

.exp-container > h1 > span {
    color: green;
}

.exp-container > .icon-row {
    display: block;
    max-width: 1400px;
    margin: 0 auto !important;
    gap: 4em;
    padding: 0 3em 3em;
}
@media screen and (min-width: 900px) {
    .exp-container > .icon-row {
        display: flex;
    }
}
@media screen and (max-width: 1100px) {
    .exp-container > .icon-row {
        gap: 3em;
    }
    .exp-container > .icon-row > .icon {
        /* flex: 0 1 50%; - 2 x 5px left & right margin */
        flex: 2;
        /* min-width: 33%; */
    }
}

.exp-container > .icon-row > .icon {
    flex: 1;
}

.exp-container > .icon-row > .icon > h3 {
    color: green;
}

.exp-container > .icon-row > .icon > .icon-container > object {
    height: 60px;
}

.exp-container > .icon-row > .icon > * {
    text-align: center;
}

.exp-container > .callout {
    background-color: green;
    display: block;
    align-items: center;
    justify-content: center;
    gap: 3em;
    padding:  0 2em;
    text-align: center;
}


.exp-container > .callout > h1 {
    font-style: normal;
    display: inline-block;
    color: white;
    padding-bottom: 0px;
    font-weight: 400;
    display: block;
    padding-top: 0.5em;
}
.exp-container > .callout a {
    margin-bottom: 2em;
}

@media (min-width: 1000px) {
    .exp-container > .callout {
        display: flex;
        padding: none;
        text-align: left;
    }
    .exp-container > .callout > h1 {
        padding-bottom: 20px;
        padding-top:  0;
    }
    .exp-container > .callout a {
        margin-bottom: 0;
    }
    .app-feature>.right {
        justify-content: center !important;
    }
    .app-feature>.right h2 {
        margin-top:  0;
    }
}

@media screen and (max-width: 650px) {
    .exp-container > .icon-row {
        flex-direction: column;
        align-items: center;
    }

    .exp-container > .icon-row > .icon {
        width: 66%;
        margin: 0 auto;
    }
}

div.exp-container>.callout>a {
    position        : relative;
    display         : inline-block;
    width           : fit-content;
    color           : green;
    background-color: white;
    padding         : .75em;
    padding-right   : 4em;
    text-decoration : none;
    text-transform  : uppercase;
    font-size       : 80%;
    font-weight     : bold;
    border-radius   : 0 1.2em;
}

div.exp-container>.callout>a:after {
    content            : "";
    background         : #40AE49;
    background-image   : url(/wp-content/themes/college-fresh/static/white-chevron.svg);
    background-repeat  : no-repeat;
    background-position: center center;
    background-size    : 10px;
    border-radius      : 0 1.2em 0 1.2em;
    right              : 0;
    top                : 0;
    bottom             : 0;
    width              : 35px;
    position           : absolute;
    animation          : animate-link-arrow-out .2s ease-out;
    animation-fill-mode: forwards;
}

div.exp-container>.callout>a:hover:after {
    transition         : background-position .3s;
    animation          : animate-link-arrow-in .2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes animate-link-arrow-in {
    0% {
        background-position: center;
    }

    50% {
        background-position: 80%;
    }

    100% {
        background-position: 70%;
    }
}

@keyframes animate-link-arrow-out {
    from {
        background-position: 70%;
    }

    to {
        background-position: center;
    }
}


.exp-container {
    background: #fff;
    z-index: 2;
    position: relative;
    padding-top: 1em;
}