.footer-cta{
    width: 100%;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr calc(135px + (165 - 135) * ((100vw - 320px) / (450 - 320)));
    grid-template-rows: 160px;

    display: -ms-grid;
    -ms-grid-columns: 1fr 0 calc(135px + (165 - 135) * ((100vw - 320px) / (450 - 320)));
    -ms-grid-rows: 160px;
}

@media (min-width: 450px) {
    .footer-cta{
        display: grid;
        grid-template-columns: 1fr 210px;
        grid-template-rows: 160px;

        display: -ms-grid;
        -ms-grid-columns: 1fr 0 210px;
        -ms-grid-rows: 160px;
    }
}


.footer-cta-cont .text {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 11px;
    padding-right: 11px;

    -ms-grid-column: 1;
}

.footer-cta-cont .text > a{
    width: 100%;
    color: var(--text-color);
}

.footer-cta-cont .text span{
    display: block;
    color: var(--text-color);
    font-family: var(--acumin-pro);
    font-size: calc(13px + (15 - 13) * ((100vw - 320px) / (450 - 320)));
    line-height: 1em;
    font-weight: 500;
}

@media (min-width: 450px) {
    .footer-cta-cont .text span{
        display: block;
        color: var(--text-color);
        font-family: var(--acumin-pro);
        font-size: 15px;
        line-height: 1.2em;
        font-weight: 500;
    }
}

.footer-cta { background: var(--dark-gray); }
/* .footer-cta.orange { background: #f1844d; }
.footer-cta.purple { background: #b24471; }
.footer-cta.red { background: #be3d38; } 
.footer-cta.green { background: #286e47; }  */

.footer-cta-cont .pre {
  display: block;
  font-family: var(--acumin-pro);
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-cta-cont .link {
  margin-top: 15px;
}

.footer-cta .text .title {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    font-family: din-condensed, sans-serif;
    color: var(--text-color);
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: calc(18px + (25 - 18) * ((100vw - 320px) / (450 - 320)));
    line-height: 1.05em;
}

@media (min-width: 450px) {
    .footer-cta .text .title {
        font-size: 25px;
        line-height: 1.2em;
    }
}
.footer-cta .text .title.underline {
    position: relative;
    display: inline;
    transition: background ease 0.4s;
    background-image: url(/includes/public/assets/shared/callout-three-underline.png);
    background-repeat: no-repeat;
    background-size: 0% 200%;
}

.footer-cta-cont .footer-cta:hover .title.underline {
    background-size: 200% 200%;
}

.footer-cta .photo {
    position: relative;
    -ms-grid-column: 3;
}

@media (max-width: 450px) {
    .footer-cta .photo img{
        height: 100%;
        object-fit: fill;
    }
}
.footer-cta-cont .photo:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity ease 0.4s;
  content: '';
}

.footer-cta:hover .photo:before{
    opacity: 0.4;
}

.footer-cta .photo:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 100%;
  content: '';
}

.footer-cta .photo:after { background: rgba(18, 18, 18, 0.6); }
/* .footer-cta.orange .photo:after { background: rgba(241, 132, 77, 0.6); }
.footer-cta.purple .photo:after { background: rgba(178, 68, 113, 0.6); }
.footer-cta.red .photo:after { background: rgba(190, 61, 56, 0.6); }
.footer-cta.green .photo:after { background: rgba(40, 110, 71, 0.6); } */

@media (min-width: 64em) {
    .footer-cta .text {
        padding-left: calc(25px + (49 - 25) * ((100vw - 1025px) / (1300 - 1025)));
        padding-right: calc(25px + (55 - 25) * ((100vw - 1025px) / (1300 - 1025)));-
    }

    .footer-cta .text .title {
        font-size: calc(24px + (30 - 24) * ((100vw - 1025px) / (1300 - 1025)));
        line-height: 1em;
    }
    .footer-cta .text span{
        letter-spacing: 0.01em;
        margin-top: 8px;
    }

    .footer-cta .text span i {
        font-size: 14px;
        margin-left: 1px;
    }
}

@media (min-width: 1300px) {
    .footer-cta .text {
        padding-left: 49px;
        padding-right: 55px;
    }

    .footer-cta .text .title {
        font-size: 30px;
    }
}