/* navbar */
.navbar-marketing {
    background: transparent;
}

.navbar-marketing.navbar-scrolled {
    background-color: var(--primary);
}
/* navbar - end */

/* header */
.main-header {
    padding-top: 150px;
    padding-bottom: 32px;
    background: linear-gradient(rgba(62, 62, 62, 80%), rgba(62, 62, 62, 80%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 56px;
    height: 350px;
}

.main-header .container-fluid {
    text-align: center;
}

.main-header .header-1 {
    font-weight: 700;
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
    line-height: calc(40px * 1.5);
}

.main-header .body-1 {
    color: var(--white);
    margin-bottom: 32px;
}

.main-header input {
    height: 56px;
    border-radius: 8px;
    font-size: 16px;
}

.main-header .custom-primary {
    background-color: var(--primary);
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 8px;
}

.main-header .custom-primary i {
    font-size: 20px;
}
/* header - end */

.galeri-container {
    margin-bottom: 56px;
}

/* customize data pengurus */
.galeri-body .galeri {
    width: 100%;
}

.galeri-body .galeri-overlay {
    background: rgba(0, 0, 0, 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    border-radius: 8px;
}

.galeri-body .galeri-overlay .img-information {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 16px;
    width: 300px;
    padding-left: 8px;
    padding-right: 8px;
}

.galeri-body .galeri:hover .galeri-overlay {
    visibility: visible;
    opacity: 1;
}

.galeri-body .galeri-overlay .img-information .header-1 {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}

.galeri-body .galeri-overlay .img-information .body-1 {
    font-size: 13px;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}
.galeri-img{
    width: 100%;
    height: 350px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}
.row{
    row-gap: 32px;
}

@media (max-width: 767.98px) {
    .header-content .header-1 {
        font-size: 24px;
        line-height: calc(24px * 1.5);
    }
}
