*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
#feasibility-page-content-cont{
    position: relative;
    width: 100%;
    background-image: linear-gradient(to bottom, var(--page-bgcolor) 0% 50%, var(--primary-color-light) 50% 100%);
    padding: 3rem 0;
    padding-bottom: 7rem; 
}

.fsty-page-content-inner-cont{
    position: relative;
    width: 80%;
    margin: auto;
    padding: 2rem 0.7rem;
    padding-top: 0.7rem;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.15);
    border-radius: 10px;
}
.fsty-img-wrapper{
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}
.fsty-img-wrapper>.fsty-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 10px;
}
.fsty-page-intro{
    position: relative;
    width: 100%;
    padding: 1rem 0.7rem
}
.fsty-page-intro>h1{
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--pure-white);
    margin-bottom: 1.3rem;
}
.fsty-page-intro>p{
    line-height: 1.3;
    font-size: 15px;
    width: 100%;
    color: #f5f5f5;
}

@media(max-width:450px){
    .fsty-page-intro>h1{
        font-size: 2rem;
    }

    #feasibility-page-content-cont{
        background-image: linear-gradient(to bottom, var(--page-bgcolor) 0% 40%, var(--primary-color-light) 40% 100%);
    }
}
@media(max-width:255px){
    .fsty-page-intro>h1{
        font-size: 1.7rem;
    }
}