.enjoy-row {
    display: flex;
    justify-content: space-between;
    display: flex;
    margin-top: 4rem;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: space-around;
}

.enjoy-row .heading {
    display: inline-flex;
    font-size: 27px;
    margin-bottom: 20px;
    line-height: 31px;
    margin-left: 16px;
    margin-top: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.enjoy-row .heading:before {
    content: "";
    border-left: 5px solid #f40000;
    position: absolute;
    padding-left: .5rem;
    top: 0;
    bottom: .2rem;
    left: -1rem;
}

.enjoy-card {
    margin: 0 0.6rem;
    flex: 1 0 auto;
    max-width: 368px;
    width: 100%;
}

.enjoy-card img {
    width: 100%;
}

.enjoy-card-body {
    display: block;
    padding: 1rem 5%;
}

.enjoy-card-body p {
    line-height: 1.625rem;
}

.enjoy-card-body a {
    color: #333;
    display: block;
    padding: 1.25rem 0;
    font-weight: bold;
    line-height: 1.625rem;
}

.enjoy-card-body a:hover {
    text-decoration: underline;
    text-decoration-color: #f40000;
}

.enjoy-card-body a:after {
    content:'';
    background-image: url('https://shared.coke.com/content/dam/nextgen/images/icons/circle-arrow_cta.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    height: 18px;
    margin-left: 1rem;
    padding: 0;
    vertical-align: text-bottom;
    width: 15px;
    margin-bottom: -2px;
    transition: 0.8s;
}

.enjoy-card-body a:hover:after {
    margin-left: 1.5rem;
}

@media (max-width: 767px) {
.enjoy-row .heading{
    font-size: 22px;
    margin-left: 32px;
  }
} 