.main-goals {
    margin: 0 0 27px;
    padding-top: 30px;
}
.main-goals .container-narrow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.main-goals .text {
    display: block;
    width: 100%;
}
.main-goals .text p {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.562px;
    margin-bottom: 8px;
}
.main-goals .text p:last-of-type {
    margin-bottom: 0;
}
.main-goals .areas {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.main-goals .area {
    text-decoration: none;
    width: 31%;
    max-width: 318px;
    margin-right: 2%;
    margin-bottom: 3%;
    position: relative;
    transition: 0.5s;
}

.main-goals .area.slide-in { top: 0; }
/* .main-goals .area.slide-in:nth-child(2) { transition-delay: 0.2s; }
.main-goals .area.slide-in:nth-child(3) { transition-delay: 0.4s; } */

.main-goals .area.slide-in.slide-in-ready {
    top: 120%;
    transition: 0 !important;
}

.main-goals .area img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}
.main-goals .area .title {
    margin-top: 24px;
    font-size: 1.3rem;
    font-family: var(--rubik);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
    display: block;
    text-align: center;
}
.main-goals .area .description p {
    font-size: 1.1rem;
    font-family: var(--merriweather);
    color: var(--black);
    line-height: 1.5;
    display: block;
    text-align: center;
    margin-bottom: 8px;  
}
.main-goals .area .description p:last-of-type { margin-bottom: 6px; }
.main-goals .area .learn-more {
    text-align: center;
    font-weight: 700;
}


@media (max-width: 1060px) {
    .main-goals .areas {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .main-goals .area {
        margin-right: unset !important;
        margin-bottom: 36px;
        width: 100%;
        top: 0 !important;
    }
    .main-goals .area:nth-child(3) { margin-bottom: 0; }
    /* .main-goals .area:nth-child(odd).slide-in.slide-in-ready { left: 100%; }
    .main-goals .area:nth-child(odd).slide-in { left: 0; }
    .main-goals .area:nth-child(even).slide-in.slide-in-ready { right: 100%; }
    .main-goals .area:nth-child(even).slide-in { right: 0; } */
}
@media (max-width: 721px) {
    .main-goals {
        padding-top: 45px;
        margin-bottom: 60px;
    }
    .main-goals .text p {
        font-size: 1.5rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .main-goals {
        padding-top: 32px;
        overflow: hidden;
    }
    .main-goals .text p {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .main-goals .area img {
        height: 60px;
    }
}