.highlights_section {
    width: 100%;
    background: var(--primary);

    & .container {
        & .section_inner {
            width: 100%;

            & .highlights_wrapper {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 4rem;
                align-items: start;

                @media (max-width: 991px) {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                }

                & .highlight_item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;

                    & .highlight_icon {
                        width: 80px;
                        height: 80px;
                        margin-bottom: 2rem;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        @media (max-width: 991px) {
                            width: 70px;
                            height: 70px;
                            margin-bottom: 1.5rem;
                        }

                        & img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    & .highlight_title {
                        font-family: "Aboreto", arial, sans-serif;
                        font-size: 2.6rem;
                        font-weight: 400;
                        text-transform: uppercase;
                        color: var(--white);
                        margin: 0 0 3rem;

                        @media (max-width: 991px) {
                            font-size: 1.8rem;
                            margin: 0 0 1rem;
                        }
                    }

                    & .highlight_content {
                        font-size: 1.6rem;
                        font-weight: 400;
                        color: var(--white);
                        line-height: 1.6;

                        @media (max-width: 991px) {
                            font-size: 1.4rem;
                        }

                        & strong {
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }
}
