@font-face {
    font-family: 'Mon Regular';
    src: url(/fonts/Montserrat-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Mon Bold';
    src: url(/fonts/Montserrat-SemiBold.ttf);
    font-display: swap;
}
@font-face {
    font-family: 'Mon Medium';
    src: url(/fonts/Montserrat-Medium.ttf);
    font-display: swap;
}
* {
    box-sizing: border-box;
    font-family: 'Mon Regular', 'serif';
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
}

p {
    line-height: 1.5;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #424242;
}

a:active {
    color: #424242;
}

button {
    outline: none;
}

.btn {
    padding: 16px 24px;
    border: solid 1px #0D5D2F;
    color: #0D5D2F;
    background-color: transparent;
    font-size: 14px;
    font-family: 'Mon Bold';
}

.btn:hover {
    color: white;
    background: #0D5D2F;
}

.fr {
    font-family: 'Mon Regular';
}
.fm {
    font-family: 'Mon Medium';
}
.fb {
    font-family: 'Mon Bold';
}
.sticky {
    position: fixed;
    top: 0;
    padding-left: 16px;
    width: 100%;
    z-index: 1100;
}
.sticky2 {
    position: fixed;
    top: 60px;
    padding-left: 16px;
    width: 100%;
    z-index: 1000;
}
.container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hide {
    display: none;
}
.fill {
    max-width: 75%;
    width: 100%;
    padding: 6px 16px 6px 0;
    margin: 0 auto;
}
.ctb {
    justify-content: space-between;
}
.flex-row {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.header {
    width: 100%;
}
.header .menu {
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    background: white;
}
.header .menu ul li .menu-link {
    display: block;
    color: #424242;
    padding: 17px 17px 11px;
    border-bottom: solid 5px transparent;
    border-collapse: separate;
}
.header .menu ul li .menu-link:hover {
    border-bottom: solid 5px #0D5D2F;
}
.header .menu ul li .menu-link.aktif {
    border-bottom: solid 5px #0D5D2F;
}
/* .header .menu ul li .menu-link.aktif::after {
    display: block;
    height: 3px;
    background: #df0824;
    width: 25px;
    position: relative;
    left: -16px;
    bottom: -2px;
    content: "";
} */
.header .submenu.aktif {
    opacity: 1;
    visibility: visible;
}
.header .submenu {
    position: absolute;
    z-index: 1111;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.33) 0px 2px 5px 0px;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    min-width: 620px;
    font-weight: 500;
    margin: 1px 0px 0px;
    overflow: hidden;
    transition: opacity 0.1s linear 0.3s, visibility 0ms linear 0.3s;
}
.header .submenu .submenu-footer {
    background-color: #f6f7fa;
    padding: 15px 15px 1px 25px;
    font-size: 14px;
}
.header .submenu .submenu-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
    font-size: 16px;
}

.header .submenu-body .submenu-list {
    width: 300px;
    padding-top: 25px;
    margin-bottom: 10px;
}
.header .submenu-list ul {
    padding-left: 15px;
}
.header .submenu-list ul li {
    margin-bottom: 16px;
}

.header .submenu-list .submenu-link {
    color: #424242;
}
.header .lang li a:hover,
.header .lang li .aktif {
    color: #0D5D2F;
    font-weight: bold;
}
.head-link {
    background-color: white;
}
.head-link .links {
    padding: 12px 0;
}
.head-link .links i {
    font-size: 20px;
    margin-top: 4px;
}
.content.scr {
    margin-top: 120px;
}
.footer .footer2,
.footer .footer2 a {
    font-size: 12px;
}
.footer .footer1 {
    background-color: #0D5D2F;
    color: white;
}
.footer .footer1 .konten-list{
    align-items: flex-start;
    padding: 48px 0 60px;
    column-gap: 64px;
}
.footer .footer1 .konten {
    flex: 1;
    align-items: flex-start;
}
.footer .footer1 .desc {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}
.footer .konten .title {
    font-size: 20px;
    font-weight: bold; 
    /*border-bottom: solid 2px white;*/
}
.footer .konten p {
    margin: 0;
    text-align: justify;
    line-height: 1.5;
}
.footer .desc i {
    margin-top: 2px;
}
.footer .footer2 img {
    height: 80px;
    width: auto;
}
.footer .footer2 p {
    margin-right: 48px;
}
.mobile {
    display: none;
}

.mobile.top-menu {
    background-color: white;
    width: 100vw;
}

.mobile.menu {
    position: fixed;
    top: 64px;
    left: calc(0px - 100vw);
    width: 100vw;
    z-index: 1010;
    transition: all 0.2s ease;
}

.mobile.menu.active {
    left: 0;
}

.mobile .main-menu {
    padding: 0 15px;
}

.mobile .main-span {
    padding: 23px 0;
}

.mobile .main-item {
    border-bottom: 1px solid #d7d7d7;
    height: 65px;
    overflow-y: hidden;
    transition: all 0.2s ease;
}

.mobile .main-item.act1 {
    height: 188px;
}

.mobile .main-item.nb {
    border: none;
}

.mobile .main-item.act2 {
    height: 227px;
}

.mobile .main-item div .active {
    transform: rotate(180deg);
}

.mobile .main-menu .main-item div {
    padding: 23px 4px;
    justify-content: space-between;
}

.mobile .main-item div i {
    font-size: 24px;
    transition: all 0.2s ease;
}

.mobile .sub-menu .sub-item div {
    padding: 10px 20px 10px 0;
}

    .content .slider .title {
        left: 12.5vw;
    }

@media only screen and (max-width: 576px) {
    .content .slider .title h1 {
            font-size: 24px;
        }
    .content .slider {
        height: 440px;
    }
    .content .slider img {
        height: 440px;
    }
    .content .slider .panel1 {
        height: 450px;
    }
    .content .slider .panel2 {
        height: 360px;
    }
    .footer .footer2 img {
        display: none;
    }
    .footer .footer2 {
        flex-direction: column;
    }
    .footer .footer2 p {
        margin-right: 48px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
    .content .slider .title h1 {
            font-size: 42px;
        }
    .content .slider .panel1 {
        height: 530px;
    }
    .content .slider .panel2 {
        height: 440px;
    }
    .footer .footer2 img {
        height: 50px;
        width: auto;
    }
}
@media only screen and (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .mobile.top-menu img {
        height: 48px;
        width: auto;
    }

    .footer1 .konten-list {
        flex-direction: column;
        row-gap: 18px;
    }

    .fill {
        padding: 6px 16px;
        max-width: 540px;
    }
    .sticky, 
    .sticky2 {
        padding-left: 0;
    }

    .sticky2 {
        top: 64px;
    }
    
    .content {
        margin-top: 130px;
    }

    .content .slider {
        overflow: hidden;
    }

    .content .slider .panel1 {
        transform: skewY(-12deg);
        left: 0;
        top: unset;
        bottom: -250px;
        width: 100%;
    }

    .content .slider .panel2 {
        transform: skewY(-12deg);
        left: 0;
        top: unset;
        bottom: -250px;
        width: 100%;
        opacity: 0.95;
    }

    .content .slider .title {
        position: absolute;
        width: 100%;
        top: unset;
        left: 50%;
        bottom: 0;
        z-index: 12;
        display: flex;
        flex-direction: column;
        transform: translateX(-50%);
    }

    .content .slider .title h1 {
        margin-bottom: 15px;
    }

    .content .slider .title a {
        width: 100%;
        padding: 16px 0;
        text-align: center;
    }

    .footer .footer1 .konten-list {
        padding: 32px 0;
    }

    .footer .footer2 p {
        margin-right: 0;
    }
}