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

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

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

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

.interior-services-card{
    max-width: 300px;
    height: 240px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    box-shadow:  0px 10px 30px 0px #00000026;
    margin-bottom: 30px;
}

.interior-services-card-content{
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
}



/* 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%);
    }
}