.container-background {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-repeat {
    background-repeat: repeat !important;
    background-size: auto !important;
}

.bg-overlay {
    z-index: -1;
}
.bg-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,  rgba(0,0,0,0.60) 50%,rgba(0,0,0,0) 100%);
    z-index: -1;
}
.bg-overlay .bg-overlay:before {
    content: none;
}

.p-custom {
    padding: 12px;
}

.py-custom {
    padding: 12px 0px;
}