.banner{
    background-image: url(../image/special-case_banner.jpg);
    background-color: rgb(0 0 0 / 37%);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: 50% 50% !important;
    background-size: cover;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner h1{
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.banner h2 {
    margin: 0;
    font-size: 20px;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
}

.banner-content {
    position: absolute;
}

h3 {
    font-size: 18px;
    font-weight: 600;    
    margin: 0;
}

a {
    width: 100%;
    display: contents;

}

.w3-content:nth-child(1){
    padding: 0;
}

p {
    font-size: 16px;
    text-align: left;
}

ul > div {
    display: flex;
}

.feature-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.Feature-box {
    display: flex; 
    width: 100%; 
    background: #fff; 
}

.Feature-img {
    display: flex; 
    width: 100%;  
    justify-content: center; 
    align-content: center; 
}

.Feature-img > img {
    width: 80%;
    box-shadow: 0px 1px 2px 2px #cdcdcd5e;
    border: 3px #ffffff solid;
}

.Feature-content {
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    align-content: center;
}

@media (max-width:1024px) {
    .banner-content {
        position: absolute;
    }
}

@media (max-width:768px) {
    .banner{
        height: 35vh;
    }

    .banner-content {
        position: absolute;
        top: 8em;
    }

    .banner h1 {
        font-size: 24px;
        color: #fff;
        font-weight: 600;
        margin: 0;
    }

    .banner h2 {
        margin: 0;
        color: #fff;
        letter-spacing: 2px;
    }

    .Feature-box {
        display: flex; 
        flex-direction: column;
        width: 100%;
        gap:8px;
    }

    .Feature-img {
        align-content: center;
    }

    .Feature-img > img {
        width: 100%;
    }

}