/* ----------------
  HEADER SECTION
---------------- */

#header-wrapper {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    transition: all 0.3s ease; /* Smooth transition for color change */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: transparent; /* Initially transparent */
}

#header-wrapper.scrolled {
    background-color: #C7B2DD; /* Background color when scrolled */
}


#header-wrapper .row {
    width: calc(100% - 160px);
}

#header-wrapper .logo .effect-on {
    display: none;
}

#header-wrapper .menu-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 300;
    height: 80px;
}

#header-wrapper .menu-box {
    place-content: center flex-start;
    align-items: center;
    display: flex;
    flex-flow: row;
    gap: 40px;
    height: auto;
    overflow: visible;
}

#header-wrapper .pc-bg {
    position: fixed;
    left: 0px;
    width: 100%;
    top: 0px;
    background: #fff;
    height: 520px;
    display: none;
}

#header-wrapper .pc-bg::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    top: 80px;
    left: 0px;
    position: absolute;
}

#header-wrapper .pc-bg::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    bottom: 0px;
    left: 0px;
    position: absolute;
}

#header-wrapper .menu-box .first-menu {
    /* padding: 0 20px 0 20px; */
    width: auto;
    display: inline-block;
    color: #ffffff;
    transition: all 0.3s;
    /* margin-right: -4px; */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-wrapper .menu-box .first-menu:hover {
    /* background: rgba(255, 255, 255, 0.2); */
}

#header-wrapper .menu-box .first-menu .pc-hidden {
    position: absolute;
    top: 95px;
    left: 0px;
    width: 100%;
    padding: 20px 0px 0px 53px;
    display: none;
}

#header-wrapper .menu-box .first-menu .pc-hidden a {
    display: block;
    font-size: 1em;
    height: 46px;
    word-break: keep-all;
    margin-bottom: 20px;
    font-weight: 400;
    color: #444;
    transition: all 0.3s;
    text-align: left;
}

#header-wrapper .menu-box .first-menu .pc-hidden a em {
    position: absolute;
    left: 0px;
    top: 0px;
    transform: none;
    width: auto;
    line-height: normal;
    line-height: 1.3;
    vertical-align: top;
}

#header-wrapper .menu-box .first-menu .pc-hidden a em::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -4px;
    left: 0px;
    width: 0px;
    height: 2px;
    background: #ff7432;
    transition: all 0.3s;
}

#header-wrapper .menu-box .first-menu .pc-hidden a:hover em::after {
    width: 100%;
}

/* --- Language --- */
#header-wrapper .content-right {
    font-weight: 400;
    place-content: center;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 20px;
    height: 50px;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: min-content;
}

.lang-btn .language_caret {
    transition: transform 0.3s ease; /* Efek transisi */
}

.lang-btn:hover .language_caret {
    transform: rotate(180deg); /* Rotasi gambar panah */
}

.btn_business .language_caret {
    transition: transform 0.3s ease; /* Efek transisi */
}

.btn_business:hover .language_caret {
    transform: rotate(180deg); /* Rotasi gambar panah */
}

#header-wrapper .language {
    /* margin-right: 16px; */
}

#header-wrapper .lang-btn .language_flag {
    margin-right: 4px;
}

#header-wrapper .lang-btn span {
    /* padding-top: 4px; */
    padding: 0 12px;
}

#header-wrapper .lang-menu {
    width: 120px !important;
    top: 60px !important;
    left: 10px !important;
    text-align: center;
}

#header-wrapper .lang-box .lang-btn {
    padding: 12px 28px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    /* font-family: 'Outfit', sans-serif; */
    border: white solid 1px;
    border-radius: 40px;
    /* text-transform: uppercase; */
    /* box-shadow: .5vh .5vh .75vh rgba(0, 0, 0, .1); */
    /* width: 180px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
}

#header-wrapper .lang-box .lang-btn:hover {
    background-color: #40455c;
    border: #40455c solid 1px;
}

#header-wrapper .btn_contact_us {
    padding: 12px 28px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    /* font-family: 'Outfit', sans-serif; */
    border: white solid 1px;
    border-radius: 40px;
    /* text-transform: uppercase; */
    /* box-shadow: .5vh .5vh .75vh rgba(0, 0, 0, .1); */
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
}

#header-wrapper .btn_contact_us:hover {
    background-color: #40455c;
    border: #40455c solid 1px;
}

#header-wrapper .btn_business {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-wrapper .hidden-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    display: block;
    text-align: left;
    color: #fff;
    display: none;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
}

#header-wrapper .business .hidden-menu {
    width: 370px;
    font-weight: 400;
}

#header-wrapper .bahasa .hidden-menu {
    width: fit-content !important;
    font-weight: 400;
}

#header-wrapper .hidden-menu.active {
    left: 0px;
}

#header-wrapper .hidden-menu li {
    margin-bottom: 23px;
    line-height: 1.35;
}

#header-wrapper .hidden-menu a {
    display: flex;
    align-items: center;
    color: #333;
    width: fit-content;
}

#header-wrapper .lang-menu li a {
    justify-content: flex-start;
    display: flex;
    align-items: center;
}

#header-wrapper .lang-menu li a img {
    width: 20%;
}

#header-wrapper .hidden-menu img {
    margin-right: 8px;
}

#header-wrapper .hidden-menu li:last-child {
    margin-bottom: 0px;
}

#header-wrapper .hidden-menu li a::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -4px;
    left: 0px;
    width: 0px;
    height: 3px;
    border-radius: 1.5px;
    background: linear-gradient(45deg, #ff7432 25%, #439cd6);
    transition: all 0.3s;
}

#header-wrapper .hidden-menu li a:hover::after {
    width: 50%;
}

#header-wrapper .hambuger-menu.mobile-ham {
    display: none;
}

#header-wrapper .hambuger-menu {
    width: 24px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: -10px;
    vertical-align: middle;
}

#header-wrapper .hambuger-menu span {
    width: 24px;
    height: 2.5px;
    position: absolute;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 2em;
    text-align: left;
    color: rgb(64, 69, 92);
}

#header-wrapper .hambuger-menu span:nth-child(1) {
    top: 0px;
    right: 0px;
}

#header-wrapper .hambuger-menu span:nth-child(2) {
    width: 18px;
    top: 40%;
    right: 0px;
}

#header-wrapper .hambuger-menu span:nth-child(3) {
    width: 12px;
    bottom: 0px;
    right: 0px;
}

#header-wrapper .hambuger-menu.active span:nth-child(1) {
    top: 7px;
    right: 0px;
    transform: rotate(45deg);
    background-color: rgb(153, 153, 153);
}

#header-wrapper .hambuger-menu.active span:nth-child(2) {
    width: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: 0px;
    background-color: rgb(153, 153, 153);
}

#header-wrapper .hambuger-menu.active span:nth-child(3) {
    opacity: 0;
}

#header-wrapper .mobile-menu {
    display: none;
}

#header-wrapper.color-effect {
    /* background: rgba(255, 255, 255, 0.85); */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#header-wrapper.color-effect .logo .effect-on {
    display: inline;
}

#header-wrapper.color-effect .logo .effect-off {
    display: none;
}

/* ----------------
  FOOTER SECTION
---------------- */

#footer-wrapper {
    /*background: #F0F0F0;*/
     background: #C7B2DD; 
/*    background: #ffffff;*/
    /* background: #E0E0E0; v3 */
    /* color: #000; */
    padding: 80px 50px 24px 50px;
    /* border-radius: 0 5vw 0 0;
    box-shadow: 0 -2.5vw 3.75vw rgba(0,0,0,.15); */
}

#footer-wrapper .row {
    width: calc(100% - 0px);
    display: flex;
    flex-direction: column;
}

#footer-wrapper h4 {
    display: inline;
    font-size: 1.15em;
    font-weight: 500;
}

#footer-wrapper .fl p {
    width: 600px;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 31px;
    word-break: keep-all;
}

#footer-wrapper .footer-top {
    /* margin-bottom: 40px; */
}

#footer-wrapper .logo-footer {
/*    margin-bottom: 28px;*/
}

#footer-wrapper .location .icon-map {
    margin-right: 8px;
}

#footer-wrapper .location .address {
    color: #444444;
}

#footer-wrapper .location .address span {
    display: block;
}

#footer-wrapper .location .address .title {
    width: 50%;
    padding-bottom: 4px;
    color: #80838f;
    font-size: 16px;
}

#footer-wrapper .location .address .caption {
    line-height: 140%;
    font-size: 20px;
}

/* Network */

#footer-wrapper .network {
    margin-bottom: 32px;
}

/*#footer-wrapper .korea-branch {
    margin-right: 48px;
}*/

#footer-wrapper .network img {
    margin-right: 12px;
}

#footer-wrapper .network span {
    display: block;
}

#footer-wrapper .network .title {
    padding-bottom: 2px;
    color: #80838f;
    text-align: right;
    font-size: 16px;
}

#footer-wrapper .network .caption {
    color: #fb6924;
    font-size: 16px;
}

/* Social Media */

#footer-wrapper .social-media {
    display: flex;
    align-items: center;
    justify-content: right;
}

#footer-wrapper .social-media h4 {
    margin-right: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

#footer-wrapper .social-media a {
    margin-left: 8px;
}

#footer-wrapper .sitemap li {
    display: inline;
    padding-left: 28px;
}

#footer-wrapper .sitemap a {
    color: #80838f;
    font-size: 16px;
}

#footer-wrapper .copyright em {
    color: #80838f;
    font-size: 14px;
}

#footer-wrapper .fl .btn-box a {
    margin-bottom: 10px;
    transition: all 0.3s;
}

#footer-wrapper .fl .btn-box li:last-child a {
    margin-bottom: 31px;
}

#footer-wrapper .fr .icon-box {
    margin-bottom: 47px;
}

#footer-wrapper .fr .icon-box a {
    display: inline-block;
    margin-right: 6px;
}

#footer-wrapper .fr ul li {
    margin-bottom: 10px;
}

#footer-wrapper .fr ul li span {
    font-size: 1em;
    font-weight: 500;
    width: 78px;
    display: inline-block;
    vertical-align: middle;
}

#footer-wrapper .fr ul li em {
    height: 9px;
    width: 1px;
    background: #acacac;
    display: inline-block;
    margin: 0px 16px;
    vertical-align: middle;
}

#footer-wrapper .fr ul li a {
    font-size: 1em;
    text-decoration: underline;
    vertical-align: middle;
    display: inline-block;
    transition: all 0.3s;
}

#footer-wrapper a:hover {
    color: #40455c;
}

#footer-wrapper .fr p {
    display: none;
}

.footer3blok {
    display: flex;
    justify-content: space-between;
    color: white;
}

.blok {
    width: 30%;
}

.blok h1,
h3 {
    font-weight: bold;
    font-size: 1.4em;
    color: white;
}

.blok > div {
    line-height: 1.5; /* Atur tinggi garis untuk memberikan ruang di antara baris teks */
    margin-bottom: 10px;
}

.gapDiantara > a:not(:last-child) {
    margin-right: 16px; /* Menambahkan jarak kanan antara setiap ikon, kecuali untuk yang terakhir */
}

.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 2s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.nav-mobile {
    display: none;
}

.btn-video-mobile {
    padding: 4px 12px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    /* font-family: 'Outfit', sans-serif; */
    border: white solid 1px;
    border-radius: 40px;
    /* text-transform: uppercase; */
    /* box-shadow: .5vh .5vh .75vh rgba(0, 0, 0, .1); */
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
}

.btn-video-mobile:active {
    color: rgb(153, 153, 153);
    border: #999 solid 1px;
}

.right-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ham-wrapper {
    display: flex;
    justify-content: flex-end;
}

.scale-in-footer {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.scale-in-footer.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Laptop --- */
@media screen and (max-width: 1140px) {
    .nav-wrapper {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .nav-mobile {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    #header-wrapper .content-right {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    #header-wrapper {
        height: 80px;
    }

    #header-wrapper .row {
        width: 100%;
        padding: 0 20px;
    }

    #header-wrapper .logo img {
        width: 70px;
    }

    #header-wrapper .language {
        margin-right: 0px;
        display: none;
    }

    #header-wrapper .lang-btn span {
        /* padding-top: 3px; */
    }

    #header-wrapper .hambuger-menu.pc-ham {
        display: none;
    }

    #header-wrapper .hambuger-menu.mobile-ham {
        display: inline-block;
        margin-top: 17px;
    }

    #header-wrapper .menu-box {
        display: none;
    }

    #header-wrapper .menu-wrapper {
        font-size: 1.33em;
        height: 80px;
        padding: 16px 20px;
    }

    #header-wrapper .lang-menu {
        top: 48px !important;
    }

    #header-wrapper .lang-box .lang-btn {
        margin-right: 20px;
    }

    #header-wrapper .hidden-menu {
        left: auto;
        right: -43px;
        padding: 20px;
        width: 160px;
    }

    #header-wrapper .hidden-menu li {
        margin-bottom: 20px;
    }

    #header-wrapper .mobile-menu {
/*        display: block;*/
        position: fixed;
        left: 0px;
        top: 0px;
        /* background: rgba(0, 0, 0, 0.5); */
        width: 100%;
        height: 100vh;
        z-index: -1;
    }

    #header-wrapper .mobile-menu .inner {
        background: #C7B2DD;
        width: 100%;
        display: none;
    }

    #header-wrapper .mobile-menu .inner .icon-mobile {
        display: flex;
        gap: 20px;
        width: fit-content;
        place-content: flex-start;
        padding: 20px;
        align-items: center;
    }

    #header-wrapper .mobile-menu .inner .icon-mobile p {
        font-size: 15px;
        font-weight: 500;
        color: #ffffff;
    }

    #header-wrapper .mobile-menu .inner ul {
        background: #C7B2DD;
        padding: 30px 20px;
        height: 100vh;
    }

    #header-wrapper .mobile-menu .inner ul li {
        display: flex;
        padding: 20px 0;
        border-bottom: 1px #ddd solid;
        flex-direction: column;
        color: #ffffff;
    }

    #header-wrapper .mobile-menu .inner ul li:first-child {
        /* border-top: 1px #ddd solid; */
    }

    #header-wrapper .mobile-menu .inner ul li .first-menu {
        font-size: 15px;
        font-weight: 500;
        display: inline-block;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu {
        margin-top: 20px;
        display: none;
        color: #444;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu a {
        display: flex;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.3s;
        width: 100%;
        align-items: center;
        line-height: 3;
        left: 20px;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu a img {
        width: 20px;
        margin-right: 12px;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu span {
        display: none !important;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu br {
        display: none;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu span {
        width: 1px;
        display: inline-block;
        height: 9px;
        background: #000;
        margin: 0px 10px;
    }

    #header-wrapper .mobile-menu .inner ul li .second-menu a:hover {
        color: #ff7432;
    }

    #header-wrapper .btn_contact_us {
        display: none;
    }
}

/* --- Tablet --- */
@media screen and (max-width: 992px) {
    #footer-wrapper .row {
        width: calc(100% - 0px);
    }

    #footer-wrapper .w50 {
        float: none;
        width: 100%;
    }

    #footer-wrapper .location {
        margin-bottom: 40px;
    }

    #footer-wrapper .location .address {
        width: 100%;
    }

    #footer-wrapper .network .indonesia-branch,
    #footer-wrapper .network .korea-branch {
        float: none;
        width: 215px;
    }

    #footer-wrapper .network .title {
        text-align: left;
    }

    #footer-wrapper .network .indonesia-branch {
        margin-bottom: 24px;
    }

    #footer-wrapper .network .indonesia-branch img,
    #footer-wrapper .network .korea-branch img {
        float: left;
        margin-right: 12px;
    }

    #footer-wrapper .network .indonesia-branch .fr,
    #footer-wrapper .network .korea-branch .fr {
        float: left;
    }

    #footer-wrapper .social-media {
        justify-content: left;
    }

    #footer-wrapper .sitemap,
    #footer-wrapper .copyright {
        display: block;
    }

    #footer-wrapper .sitemap {
        display: block;
        margin-bottom: 24px;
    }

    #footer-wrapper .copyright {
        float: left;
    }
}

/* --- Phone --- */
@media screen and (max-width: 530px) {
    #footer-wrapper .location .address .title {
        width: 80%;
        font-size: 15px !important;
    }

    #footer-wrapper .location .icon-map {
        width: 48px;
    }

    #footer-wrapper .location .address {
        float: left;
        width: 100%;
    }

    #footer-wrapper .sitemap li {
        padding-left: unset;
    }

    #footer-wrapper .social-media {
        display: inline-block;
    }

    #footer-wrapper .social-media h4 {
        display: block;
        margin-bottom: 16px;
    }

    #footer-wrapper .social-media a {
        margin-left: 0px;
        margin-right: 8px;
    }

    .footer3blok {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .blok {
        width: 100%;
    }

    #footer-wrapper .row {
        gap: unset;
    }

    #footer-wrapper {
        background: #C7B2DD;
        padding: 50px 20px 20px 20px;
    }

    .layoutMobile {
        display: flex;
        flex-direction: column-reverse;
    }

    #footer-wrapper .sitemap a {
        font-size: 14px;
    }

    #footer-wrapper .sitemap {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 24px;
        gap: 20px;
    }
}

.custom-text {
    color: #81659E; /* Warna teks diubah menjadi #81659E */
    font-family: 'Edu VIC WA NT Beginner', sans-serif; /* Adjust font family as needed */
}

.sosmed-icon {
    width: 40px;
    height: 40px;
}


.blok a {
    font-weight: normal; /* Mengatur agar tidak bold */
    text-decoration: none; /* Menghapus garis bawah pada tautan, jika diinginkan */
    color: inherit; /* Menggunakan warna teks yang sama dengan elemen sekitarnya */
    font-size: 16px; /* Atur ukuran font sesuai kebutuhan */
}

.blok a:hover {
    text-decoration: underline; /* Menambahkan garis bawah saat hover, jika diinginkan */
}

.blok p {
    font-weight: normal; /* Mengatur agar tidak bold */
    text-decoration: none; /* Menghapus garis bawah pada tautan, jika diinginkan */
    color: inherit; /* Menggunakan warna teks yang sama dengan elemen sekitarnya */
    font-size: 10px; /* Atur ukuran font sesuai kebutuhan */
    color: white;
}

.blok a {
    font-weight: normal; /* Mengatur agar tidak bold */
    text-decoration: none; /* Menghapus garis bawah pada tautan, jika diinginkan */
    color: inherit; /* Menggunakan warna teks yang sama dengan elemen sekitarnya */
    font-size: 14px; /* Atur ukuran font sesuai kebutuhan */
    color: white;
}
