.contianer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: calc(var(--header-height) + 4rem);
}

.banner{
    width: calc(100% - 40px);
    height: 180px;
    background-color: var(---colorPrimary);
    border-radius: 20px;
    margin: 2rem 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    position: relative;
}

.banner span{
    font-weight: bold;
    color: black;
    font-size: 16px;
    margin-bottom: 1rem;
}

.banner h1{
    font-size: 30px;
    font-weight: bold;
    max-width: 300px;
    text-align: center;
}

.banner img{
    width: 100px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    filter: grayscale();
}
@media screen and (min-width: 1024px){

    .banner{
        width: calc(100% - 4rem);
        height: 280px;
        background-color: var(---colorPrimary);
        border-radius: 20px;
        margin: 2rem;
    }

   .banner h1{
        font-size: 60px;
        font-weight: bold !important;
        max-width: 500px;
        text-align: center;
    }

    .banner img{
        width: 280px;
        position: absolute;
        bottom: 0;
        right: 0;
        filter: grayscale();
    }
}

@media screen and (min-width: 1200px){

    .banner{
        width: calc(100% - 8rem);
        height: 280px;
        background-color: var(---colorPrimary);
        border-radius: 20px;
        margin: 2rem 4rem;
    }

    .banner h1{
        font-size: 60px;
        font-weight: bold;
        max-width: 550px;
        text-align: center;
    }
}