.banner{
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px,400px);
    background: linear-gradient(122deg, rgba(2, 26, 82, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%), url(../../img/home/banner/banner-background.png), lightgray 50% / cover no-repeat;
    background-position: right;
}
.banner > * {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}
.banner__wrapper{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    align-items: center;
    justify-self: center;
    max-width: var(--max-xl-width);
    margin-top:5rem;
    margin-bottom:5rem;
}
.banner__logo{
    width: 150px;
    margin-bottom: 1rem;
}
.banner__headline{
    color: var(--white);
    text-align: center;
    font-size: var(--fs-large);
    font-weight: 700;
}
.banner__description{
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-weight: 400;
}
.banner__cta{
    width: 270px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--white);
    margin: 1rem auto;
    text-decoration: none;
}
.banner__cta:hover{
    background: var(--white);
    color:var(--blue);
}
@media (min-width: 768px){
    .banner{
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        background-color: white;
        justify-content: flex-start;
    }
    .banner__overlay{
        width: 70%;
        height: calc(100% + 60px);
        margin-top: 60px;
    }
    .banner__overlay img{
        width: 100%;
        object-fit: cover;
        height: 100%;
        object-position: right;
    }
    .banner__wrapper{
        display: block;
        align-items: flex-start;
    }
    .banner__headline{
        text-align: left;
        width: 600px;
    }
    .banner__description{
        text-align: left;
        width: 400px;
    }   
    .banner__cta{
        margin: 1rem 0;
        width: 200px;
    }
}