body {
    background-color: rgb(243, 243, 243);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.hero{
    padding: 120px;
    background: url(../img/Savings/Hero.jpg);
    background-size: cover;
}

.hero h1{
    font-family: Balto-Light, sans-serif;
    font-size: 60px;
    line-height: 3.4375rem;
    font-weight: 1;
    color: #007856;
}
.hero p{
    font-size: 20px;
    width: 50%;
}
.hero button{
    background-color: white;
    border: none;
    font-size: 20px;
    border: 1px solid #007856;
    color: #007856;
    padding: 15px 30px 15px 30px;;
    transition: .2s;
    margin: 15px 0px 90px 0px;
}
.hero button:hover{
    cursor: pointer;
    background-color: #408253;
    color: white;
    border: 1px solid white;
}



.maximize{
    border: 3px solid orange;
    padding: 60px;
    width: 80%;
    background-color: white;
    margin: auto;
    margin-top: -5%;
}
.maximize .fa-lightbulb{
    color: #007856;
    font-size: 30px;
}
.maximize h1{
    font-family: Balto-Light, sans-serif;
    font-size: 30px;
    line-height: 3.4375rem;
    font-weight: 1;
    color: #007856;
}
.maximize a{
    text-decoration: none;
    color: #007856;
    font-size: 20px;
}
.maximize a:hover{
    text-decoration: underline;
}



.details{
    display: flex;
    padding: 20px;
    background: white;
}
.details h1{
    font-family: Balto-Light, sans-serif;
    font-size: 25px;
    font-weight: 1; 
    /* text-align: center; */
}
.details b{
    font-family: Balto-Light, sans-serif;
    font-size: 20px;
}
.details p{
    font-family: Balto-Light, sans-serif;
    font-size: 17px;
}
.details .fa-check-circle{
    color: #007856;
    font-size: 20px;
}
.details div{
    margin: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.134);
    box-shadow: 1px 10px 30px rgba(0, 0, 0, 0.2);
}
.details button{
    background-color: #007856;
    border: none;
    font-size: 20px;
    color: white;
    padding: 15px 30px 15px 30px;;
    transition: .2s;
    margin: 15px 0px 20px
}
.details button:hover{
    cursor: pointer;
    background-color: white;
    color: #007856;
    border: 1px solid #007856;
}
.details li{
    font-size: 17px;
}
.details a{
    text-decoration: none;
    font-size: 17px;
    color: #007856;
}
.details a:hover{
    text-decoration: underline;
}





@media(max-width: 800px) {
    .hero {
        padding: 40px;
        background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/Savings/Hero2.jpg);
        background-size: cover;
    }

    .hero h1 {
        font-family: Balto-Light, sans-serif;
        font-size: 40px;
        line-height: 2rem;
    }

    .hero p {
        font-size: 17px;
        width: 100%;
        text-align: justify;
    }

    .hero button {
        background-color: white;
        border: none;
        font-size: 17px;
        border: 1px solid #007856;
        color: #007856;
        padding: 10px 30px 15px 30px;
        transition: .2s;
        margin: 15px 0px 90px 0px;
    }

    .hero button:hover {
        cursor: pointer;
        background-color: #408253;
        color: white;
        border: 1px solid white;
    }


    .maximize{
        width: 90%;
        padding: 10px;
    }
    .maximize h1{
        font-family: Balto-Light, sans-serif;
        font-size: 25px;
        line-height: 2rem;
    }
    .maximize a{
        font-size: 17px;
    }



    .details {
        flex-direction: column;
    }

    .details div {
        box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.2);
    }
}