.landing-image{
    background: black url('./../../homepage-bg1.jpg');
    height: 100vh;
    width: 100%;
    color: white;
    position: relative;
    object-fit: cover;
    display: flex;
    align-items: center;
}

.color-overlay{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, black, transparent);
    opacity: 0.9;
    position: absolute;
    top: 0;
}

.landing-text{
    margin: 30px;
}

.landing-text h1{
    font-size: 45px;
    font-family: Arial Black;
}

.landing-text h3{
    font-size: 25px;
    font-family: Arial Black;
}

.gradient-button a{
    background: linear-gradient(to right, #1ecad3, #01d699);
    border: none;
    padding: 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.gradient-button a:hover{
    background: linear-gradient(to left, #1ecad3, #01d699);
}

.centered-headline{
    text-align: center; font-size: 25px; margin: 60px;
}

.centered-headline h2::after{
    background: #01d699;
    border: solid thin black
}

.services-flex-box{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

@media screen and (max-width: 1300px){
    .services-option{
        width: 600px;
    }
}

/* @media screen and (max-width: 880px){
    .services-option{
        width: 50%;
    }
}

@media screen and (min-width: 880px){
    .services-option{
        width: 50%;
    }
} */

.services-option{
    width: 300px;
    height: 505px;
    text-align: center;
    padding: 10px;
    margin-bottom: 50px;
    /* padding: 20px; */
}

.services-option:hover{
    box-shadow: 4px 10px 15px rgb(194, 194, 194);
}

.services-option-icon{
    height: 90px;
    width: 90px;
    margin: 10px auto;
}

.services-option-title{
    height: 80px;
}

.services-option-title h1{
    font-size: 20px;
}

.services-option-text{
    height: 250px;
}

.services-option-text p{
    padding: 5px;
    line-height: 30px;
}

.services-option-icon img{
    width: 100%;
}

.additional-section-container{
    display: flex;
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 880px){
    .additional-section-item{
     width: 50%;
     height: 700px;
 }

 .additional-section-image{
    height: 500px;
    width: 100%;
}
 }

@media screen and (max-width: 880px){
   .additional-section-container{
       display: block;
   }
   .additional-section-item{
    width: 100%;
    height: 600px;
}

.additional-section-image{
    height: 310px;
    width: 100%;
}
}

/* .additional-section-item{
    width: 50%;
    height: 700px;
} */

.additional-section-image img{
    height: 100%;
    width: 100%;
}

.additional-section-text{
    height: 240px;
    width: 70%;
    margin: 5px auto;
    padding: 5px;
}

.why-unbanked{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: auto auto;
}

.why-unbanked-options{
    width: 500px;
    text-align: left;
    padding: 10px;
}

.why-unbanked-options h2{
    font-size: 24px;
    margin: 0;
    width: 70%;
}

.why-unbanked-options p{
    font-size: large;
    height: 180px;
}

@media screen and (max-width: 880px){
    .why-unbanked-options{
        width: 80%;
    }
    .why-unbanked-options h2{
        width: 80%;
    }
 }