*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.wrapper{
   
    display: flex;
    flex-direction: column;
    min-height: 100% !important;
    height: 100vh;
}


.container{
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}


.banner{
    background-color: whitesmoke;
    padding :50px 0px;
    /* background: rgb(209, 205, 205);     */
}


.banner__wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}


.banner__width {
    max-width: 300px;
    width: 300px;
}

.banner__text{
    text-transform: capitalize;
    color: black;
    font-size: 65px;
}

.banner__text-right{
    margin-left: 40px;
}

.banner__apps{
    display: flex;
    align-items: center;
    width: 100%;
}

.banner__btn{
    margin-top: 25px;
    width: 50%;
    width: 50%;
    text-align: center;
}

.banner__img{
    width: 350px;

}

@media screen and (max-width: 635px) {
    .banner__btn{
        width: 100%;
    }
}

@media screen and (max-width) {
    .banner{
        padding: 20px 0px !important;
    }
    .banner__width {
        max-width: 200px;
        width: 200px;
    }
    .banner__text{
        font-size: 25px;
    }
}


@media screen and (max-width:677px) {
    .banner{
        padding: 39px;
    }
    .banner__wrap{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
}





.hero__btn{
    outline: none;
    border: none;
    transition: 0.3s;
    background-color: rgb(27, 27, 219);
    color: white;
    padding: 12px 90px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 10px;
}
