/* Widget highlights-section */

.highlights-section,
.highlights-section * {
    box-sizing: border-box;
}

.highlights-section {
    padding: 5rem 0;
    overflow: hidden;
    background: #ffffff;
}

.highlights-section__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlights-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.highlights-section__item {
    text-align: center;
}

.highlights-section__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.highlights-section__icon img {
    display: block;
    width: auto;
    height: 3rem;
    object-fit: contain;
}

.highlights-section__item h3 {
    margin: 0 0 1rem !important;
    color: #090e1a;
    font-family: var(--font-heading, "Lato", sans-serif);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
}

.highlights-section__separator {
    display: block;
    width: 3rem;
    height: 2px;
    margin: 0 auto 1rem;
    background: #f47a34;
}

.highlights-section__item p {
    margin: 0 !important;
    color: #6b7280;
    font-family: var(--font-body, "Poppins", sans-serif);
    font-size: .875rem;
    line-height: 1.625;
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

    .highlights-section {
        padding: 4rem 0;
    }

    .highlights-section__grid {
        grid-template-columns: 1fr;
    }

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

    .highlights-section__item p {
        font-size: .75rem;
    }

}

/*mobile and tablet*/
@media (max-width: 1023px) {

    .highlights-section__grid {
        gap: 2rem;
    }

}

/*desktop*/
@media (min-width: 1025px) {

    .highlights-section__inner {
        padding: 0 2rem;
    }

    .highlights-section__grid {
        gap: 4rem;
    }

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

    .highlights-section__inner {
        max-width: 1130px;
    }

    .highlights-section__grid {
        gap: 2rem;
    }

    .highlights-section__item h3 {
        font-size: 0.975rem;
    }

    .highlights-section__icon img {
        height: 2rem;
    }

    .highlights-section__item p {
        font-size: .75rem;
    }

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/

/* mobile paragraph minimum */
@media (max-width: 767px) {
    .highlights-section p {
        font-size: max(0.9375rem, 1em);
    }
}
