* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.structural-hero-section {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 700px;
    /* background-image: url('./images/structural-banner-img.png'); */
    background-size: cover;
    margin-bottom: 0px;
}

.structural-hero-section-content {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.structural-project-section {
    background-color: #00B2A3;
    color: #FFFFFF;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .structural-hero-section {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
        /* background-image: url('./images/structural-banner-img.png'); */
        background-size: cover;
    }

    .structural-hero-section-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}