.banner{
    width: 100%;
    height: 250px;
    position: relative;
}

.banner .banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    filter: brightness(0.5);
}

.banner h1{
    color: var(--color-white-01);
    font-weight: 800;
    position: relative;
    line-height: normal;
    letter-spacing: -0.792px;
}

.banner .img-logo{
    width: 149px;
    height: 113px;
    object-fit: contain;
    margin-top: -60px;
    z-index: 1;
}

/* == back btn ==  */
.back {
    position: absolute;
    z-index: 1;
    top: 10px;
    color: var(--color-white-01);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.back:hover{
    color:var(--color-white-01)
}

.back path {
    fill: var(--color-white-01);
}

.back__text {
    font-size: var(--font-size-h4);
}


@media screen and (max-width: 1024px) {
    .banner .container{
        justify-content: center !important;
    }
}

@media screen and (max-width: 767px) {
    .back{
        left: 15px;
    }
    
    .banner h1{
        font-size: 1.9rem !important;
        transform: translateY(-20px);
    }

}
