.breadcrumb{
    background-repeat: no-repeat;
    background-size: 100% cover;
    background-position: center center;
    height: 250px;
    background-color: var(--bg-color);
}
.breadcrumb .overlay{
    padding: 50px 30px;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height:100%
}
.breadcrumb-content{
    display: flex;
    height: 100%;
    align-items: center;
    max-width: 1200px;
    margin-inline: auto;
}

.breadcrumb-content h1{
    color: white;
    font-size: 40px;
}

@media screen and (max-width:576px) {
    .breadcrumb{
        height: 180px;
    }
    .breadcrumb-content h1{
        font-size: 30px;
    }
}