section.hero-section {
    position: relative;
    z-index: 0;
    min-height: 85vh;
    background: url('../images/bg/banner.JPG') top no-repeat;
    background-size: cover;
}section.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    opacity: 1;
    z-index: -1;
}

section.partner-section {
    position: relative;
    z-index: 0;
    background: url('../images/bg/to_partners.jpg') top no-repeat;
    background-size: cover;
    background-attachment: fixed;
}section.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    opacity: 1;
    z-index: -1;
}

.glassmorph {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}



/* Custom Helpers */
.section-vh {
    min-height: 85vh !important;
}