.hac-about-section-home-new-wrap {
    padding: 100px 0;
}

.hac-about-section-home-new-wrap .about-icon {
    width: auto;
    display: block;
    margin-bottom: 40px;
}

.hac-columns-two {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hac-columns-two .hac-column {
    flex: 1;
}

.hac-about-section-home-new-wrap .hac-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: center;
    max-width: 580px;
}

.hac-about-section-home-new-wrap .info-box {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 155px;
}

.hac-about-section-home-new-wrap .info-box:not(:last-child) {
    border-right: 2px solid #C2E564;
    border-bottom: 2px solid #C2E564;
}

.hac-about-section-home-new-wrap .info-box:not(:last-child):nth-child(2) {
    border-right-width: 0;
}

.hac-about-section-home-new-wrap .info-box:not(:last-child):nth-child(3) {
    border-bottom-width: 0;
}

.hac-about-section-home-new-wrap .info-box .about-title-box,
.hac-about-section-home-new-wrap .info-box .about-title-box * {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1%;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 15px;
    font-family: 'Figtree', sans-serif;
}

.hac-about-section-home-new-wrap .info-box .about-title-box{
    margin-bottom: 5px;
}

.hac-about-section-home-new-wrap .info-box p {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--defaultFontSize);
    font-family: var(--defaultFontFamily);
    font-weight: var(--defaultFontWeigh);
    line-height: var(--defaultLineHeight);
    letter-spacing: var(--defaultLetterSpacing);
}

.hac-about-section-home-new-wrap .hac-columns-two h2 {
    font-size: var(--bigHeadingFontSize);
    font-family: var(--bigHeaderFontFamily);
    line-height: var(--bigHeaderLineHeight);
    font-weight: var(--bigHeaderFontWeight);
    letter-spacing: var(--bigHeaderLetterSpacing);
    text-transform: none;
    margin-bottom: 20px;
}

.hac-about-section-home-new-wrap .pharagraph-content p {
    font-size: var(--defaultFontSize);
    font-family: var(--defaultFontFamily);
    font-weight: var(--defaultFontWeigh);
    line-height: var(--defaultLineHeight);
    letter-spacing: var(--defaultLetterSpacing);
}

.hac-about-section-home-new-wrap .button {
    background-color: var(--colourDarkBlue);
    font-family: 'Figtree', sans-serif;
    color: #fff;
    font-size: var(--defaultFontSize);
    line-height: 1;
    letter-spacing: 14%;
    font-weight: 500;
    padding: 20px 30px;
    display: flex;
    border-radius: 5px;
    transition: 350ms;
}

.hac-about-section-home-new-wrap .button:hover {
    background-color: var(--colourLightBlue);
    text-decoration: none;
}

.hac-about-section-home-new-wrap .button svg {
    margin-left: 25px;
}

.hac-about-section-home-new-wrap .button-wrapper {
    margin-top: 30px;
    display: flex;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 991px) {
    .hac-columns-two {
        flex-direction: column;
    }

    /* .hac-about-section-home-new-wrap {
        padding: 50px 0;
    }

    .hac-columns-two {
        flex-direction: column;
        text-align: center;
    }

    .hac-info-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .info-box:not(:last-child) {
        border-right: 0;
        border-bottom: 2px solid #C2E564;
    }

    .info-box:not(:last-child):nth-child(2) {
        border-right-width: 0;
    }

    .info-box:not(:last-child):nth-child(3) {
        border-bottom-width: 0;
    }

    .info-box h3 {
        font-size: 32px;
    }

    .info-box p {
        max-width: 100%;
    } */
}