header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    padding: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.header-l1,
.header-l2 {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.header-l1 {
    padding: 8px 0;
    border-bottom: #deecf6 solid 1px;
}

.header-info {
    display: flex;
    gap: 50px;
}

.header-info-item {
    display: flex;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #004c67;
}

.header-info-item-icon {
    color: #004c67;
}

.header-info-item a {
    text-decoration: underline dotted;
    text-underline-offset: 2px;
}

.header-sep {
    height: 134.5px;
}

/** HEADER-RS */
.header-rs {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-rs a {
    width: 20px;
    font-size: 22px;
    color: #9e2937;
    text-align: center;
}

.header-rs a:hover {
    color: #004c67;
}

a.header-rs-item {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #004c67;
    font-size: 24px;
    color: #fff;
}

a.header-rs-item:hover {
    background-color: #be473c;
    font-size: 26px;
}

.header-rs-item [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/** HEADER INTERNAS */
.header-internas .header-logo,
.header-internas .header-logo-bca {
    display: block;
}

.header-internas.header__scroll .header-logo-bca {
    display: none;
}

/** HEADER SCROLL */
.header__scroll {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.header__scroll .wrap {
    display: flex;
    justify-content: space-between;
}

.header__scroll .header-l1 {
    padding: 2px 0;
}

.header__scroll .header-logo {
    height: 50px;
}

.header__scroll .header-info {
    display: none;
}

.header__scroll .header-rs {
    display: none;
}

.header__scroll a.header-rs-item {
    background-color: #506e8f;
    opacity: 1;
}

.header__scroll a.header-rs-item:hover {
    background-color: #5d83ab;
}

@media screen and (max-width: 768px) {
    .header-info {
        display: none;
    }
}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 375px) {}