.heroSection{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 60vh;
}
.heroSection::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(/assets/img/insightHeaderPic.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(0px);
    opacity: 40%;
    z-index: 0;
}
.heroSection::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    background-color: rgba(0, 0, 0, 0.5); /* Darker overlay */
    z-index: 0;
    opacity: 100%;
}
.heroSectionRow{
    padding: 10px 60px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.heroSectionDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-top: 60px;
}
.heroSectionDiv .heading{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.heroSectionDiv .heading h1{
    color: white;
    font-weight: 600;
    font-size: 64px;
    font-family: 'Montserrat';
    text-align: center;
}

.insightsAndEducation{
    background-color: #151c29;
}
.insightsAndEducation .row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.insightsAndEducation .insightsAndEducationHeadingRow{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}
.insightsAndEducation .insightsAndEducationHeadingRow .cardHeadingDiv h2{
    font-size: 48px;
    font-family: 'Montserrat';
    color: white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.insightsAndEducation .insightsAndEducationHeadingRow .cardHeadingDiv h2::before{
    position: absolute;
    content: "";
    top: 10px;
    left: 30%;
    width: 40%;
    height: 100%;
    border-bottom: 2px solid #556EA4;
}
.insightsAndEducation .insightsAndEducationRow1{
    position: relative;
    z-index: 1;
}
