section.heroSection {
    position: relative;
    height: 360px;
    width: 100%;
    background-color: #8058A0;
    display: flex;
    justify-content: center;
    align-items: end;
    color: white;
    z-index: -2;
}
.whitePaperOverlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: -1;
}
section.heroSection h1 {
    padding-bottom: 90px;
    font-size: 50px;
    font-weight: 500;
}

@media (max-width: 1599px) {
    section.heroSection h1 {
        font-size: 40px;
    }

}

.cardsContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    padding-top: 200px;
    padding-bottom: 150px;
}
.cardsContainer .arrowImg {
    width: 20px;
    height: 20px;
}
.cardsContainer h5 {
    font-size: 26px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 18px;
    line-height: 32px;
}
.cardsContainer h5 span {
    color: var(--primary-color);
}
.cardsContainer p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 34px;
}
.cardsContainer p.text-light-grey.fw-medium.fs-25.mb-3 {
    font-size: 18px !important;
    font-weight: 400 !important;
    opacity: 0.9;
}
.cardsContainer p + a.text-grey {
    font-size: 20px;
    color: #3a3a3a;
}
.cardsContainer > div {
    /* width: 640px; */
    /* height: 780px; */
    border-radius: 9px;
}
.cardsContainer img {
    width: 100%;
    height: 420px;
    border-radius: 10px;
}

.cardsContainer .content {
    padding-top: 34px;
}

/* 992-1199 */
@media (max-width: 1199px) {
    .cardsContainer {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .cardsContainer .content {
        padding-top: 20px;
    }
    .cardsContainer h5 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .cardsContainer p {
        font-size: 18px;
        line-height: 1.5;
    }


}

/* 768-991 */
@media (max-width: 991px) {
    section.heroSection h1 {
        font-size: 40px;
        line-height: 40px;
    }
    .cardsContainer {
        gap: 60px;
    }
    .cardsContainer img {
        height: 175px;
    }

}

/* 576-767 */
@media (max-width: 767px) {
    .cardsContainer {
        padding-top: 50px;
        padding-bottom: 50px;
        gap: 30px;
    }
    .cardsContainer .content {
        padding-top: 10px;
    }
    .cardsContainer h5 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 24px;
    }
    .cardsContainer p {
        font-size: 16px;
    }
    .cardsContainer p.text-light-grey.fw-medium.fs-25.mb-3 {
        font-size: 16px !important;
    }


}

/* 320-575 */
@media (max-width: 575px) {
    section.heroSection {
        height: 200px;
    }
    section.heroSection h1 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 40px;
    }
    .cardsContainer {
        grid-template-columns: repeat(1, 1fr);
    }
    
}