#hero {
    min-height: auto;
    background: url("../images/home/herobg.png") no-repeat left top;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.bannerImg {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 20%;
}

.bannerContent {
    padding: 5rem 0px;
}

.bannerContent h1 {
    font-weight: 700;
}

.project {
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0px 0px 24px rgba(92, 114, 125, 0.09);
    border-radius: 0.5rem;
    width: 98%;
    margin: auto;
    margin-bottom: 2rem;
}

.projectImg,
.projectDetails {
    width: 49%;
    border-radius: 0.5rem;
}

.projectImg img {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
}

.projectDetails {
    background: #f5f7f8;
    padding: 1.5rem;
}

.projectsHolder {
    margin-top: -13rem;
    position: relative;
    z-index: 2;
}

.projectIntro {
    margin-bottom: 1.5rem;
}

.projectName {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #484F5F;
    font-size: 2rem;
}

.projectHighlights {
    width: 100%;
    background-color: #fff;
    margin: 1rem 0px 1.5rem;
}

#cta {
    margin-top: 5rem;
}

@media screen and (max-width: 768px) {
    .bannerContent {
        display: block !important;
        padding-top: 5rem;
    }
    .project.d-flex {
        display: block !important;
    }
    .projectImg,
    .projectDetails {
        width: 100%;
    }
    #cta {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 680px) {
    .project {
        padding: 0px;
        box-shadow: unset;
    }
}