/*global---------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Poppins', sans-serif;
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5{
    color: #91A99B;
}
button{
    cursor: pointer;
}

.loader {
    display: flex;
    position: fixed;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #91A99B;
    opacity: 1;
}

.loader.done {
    opacity: 0;
    transition: .4s ease-in-out;
    z-index: -1;
}

.loader img {
    animation: blinking 2s ease-in-out infinite;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
.container{
    width: 75%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
header{
    width: 100%;
    position: fixed;
    z-index: 3;
    background-color: #91A99B;
}

header .headline{
    width: 85%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
    box-sizing: border-box;
}
.headline .logo{
    height: 100%;
    display: flex;
    align-items: center;
}
.logo img,
.footer-info img{
    width: 102px;
}
header .sosmed,
header .id-contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .sosmed{
    width: 130px;
    position: absolute;
    top: 19px;
    left: 7.5%;
}
header .id-contact{
    width: 180px;
    position: absolute;
    top: 19px;
    right: 7.5%;
}
header .sosmed div{
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid white;
    position: relative;
}
header .sosmed div svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header .sosmed div .a{
    fill: #fff;
}


header .id-contact div{
    width: 30px;
    height: 30px;
    border: 1px solid white;
    border-radius: 15px;
    position: relative;
}
header .id-contact .contact{
    width: 130px;
    background-color: rgba(255,255,255,0.3);
}
header .id-contact p{
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 10px;
    color: white;
}


#hamburger-menu{
    display: none;
    transform: rotateY(180deg);
}
#hamburger-menu div{
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    pointer-events: none;
    transition: all 0.3s;
    border-radius: 2px;
}
#hamburger-menu div:nth-child(1){
    transform-origin: 0 0;
    width: 23px;
}
#hamburger-menu div:nth-child(3){
    transform-origin: 0 100%;
    width: 15px;
}
#hamburger-menu.active div:nth-child(1){
    width: 30px;
    transform: rotate(45deg) translate(-1px, -1px);
}
#hamburger-menu.active div:nth-child(2){
    transform: scaleX(0);
}
#hamburger-menu.active div:nth-child(3){
    width: 30px;
    transform: rotate(-45deg) translate(-1px,0);
}


header nav{
    display: flex;
    width: 85%;
    justify-content: center;
    margin: auto;
    position: relative;
}
header nav ul{
    display: flex;
}
header nav ul li{
    margin: 0 20px;
    list-style: none;
    padding: 13px 0;
}
header nav ul li a{
    color: white;
    text-decoration: none;
}
header nav ul li a:hover,
header nav ul li a.active{
    color: rgba(255,255,255,0.5);
}
#dropdownBtn, .bahasa, .lainnya button{
    cursor: pointer;
}
#dropdown{
    border-top: 1px solid white;
    padding-top: 40px;
    display: none;
}
#dropdown.active{
    display: flex;
}





.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #F7F7F7;
}
.banner .img{
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #A;
}
.banner .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85%;
}
.banner-teks{
    display: flex;
    justify-content: center;
    max-width: 500px;
    height: 100%;
    margin-left: 12.5%;
    flex-direction: column;
    color: white;
    font-size: 3.4em;
    line-height: 60px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}



.atasan{
    height: 121px;
/* untuk mencegah content tertutup header */
}
.background{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.content{
    padding: 80px 0;
    background-color: white;
}
.content-teks{
    width: 450px;
    margin: 15px 0;
    text-align: justify;
}
.content-teks h1{
    font-size: 25px;
    line-height: 30px;
    color: #91A99B;
    font-weight: 600;
    text-align: left;
}
.content .img{
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 25%;
    margin: 15px 0;
    background-color: #A;
}
.content .img img{
    width: 100%;
}
.teks{
    text-align: justify;
}
.teks h1{
    text-align: left;
}
.video-btn{
    padding: 5px 20px;
    background-color: #91A99B;
    color: #fff;
    border-radius: 25px;
    border: none;
    text-decoration: none;
    font-size: 13px;
}
.headline-bergaris{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #91A99B;
    font-weight: 600;
    color: #91A99B;
    margin-bottom: 20px;
}
button{
    padding: 10px 30px;
    background-color: #91A99B;
    color: white;
    outline: none;
    border-radius: 25px;
    border: none;
}





/* card */
.card{
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}
.card .img{
    width: 280px;
    height: 280px;
    border-radius: 25%;
    overflow: hidden;
    background-color: #E5E4EA;
    margin: 20px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.card .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .text{
    text-align: center;
    width: 100%;
}
.card .text h1{
    font-weight: 600;
    color: #91A99B;
    font-size: 25px;
}
.card .text p{
    font-weight: inherit;
    width: 100%;
}



/* card untuk swiper */
/* default card digunakan untuk 3 kolom tampilan desktop */

.swiper-lima-kolom-button-diluar .card{
    width: 180px;
}
.swiper-lima-kolom-button-diluar .card .img{
    width: 180px;
    height: 180px;
}
.swiper-enam-kolom .card{
    width: 140px;
}
.swiper-enam-kolom .card .img{
    width: 140px;
    height: 140px;
}
.swiper-tuju-kolom .card{
    width: 130px;
}
.swiper-tuju-kolom .card .img{
    width: 130px;
    height: 130px;
}


/* card untuk swiper */





.swiper{
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
}
.swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.swiper-button-next{
    position: absolute;
    top: 50%;
    right: 7%;
}
.swiper-button-prev{
    position: absolute;
    top: 50%;
    left: 7%;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    display: none;
}
.swiper-button-next img,
.swiper-button-prev img,
.swiper-button-next-unique img,
.swiper-button-prev-unique img{

    width: 50px;
}
.swiper-button-next-unique{
    position: absolute;
    top: 50%;
    right: -7%;
}
.swiper-button-prev-unique{
    position: absolute;
    top: 50%;
    left: -7%;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 16px;
    border-radius: 4px;
}





/* background warna */
.bg-blue{
    background-color: #91A99B;
}
.bg-blue .headline-bergaris{
    border-bottom: 1px solid white;
}
.bg-blue p,
.bg-blue h1,
.bg-blue h2,
.bg-blue h3{
    color: white;
}
.bg-grey{
    background-color: #FAFAFA;
}
.bg-transparent{
    background-color: rgba(0,0,0,.5);
    color: white;
}
.bg-transparent .strong{
    font-size: 2.1em;
    font-weight: 500;
    line-height: 45px;
    text-align: center;
}
/* background warna */




.pesan-kaki .container{
    justify-content: space-between;
}
.pesan-kaki h2{
    font-weight: 600;
    font-size: 25px;
    margin: 10px;
}



footer{
    padding-top: 80px;
    background-color: #F7F7F7;
    position: relative;
    z-index: 2;
    color: #717171;
    font-size: 13px;
}
.footer-info{
    width: 85%;
    height: 191px;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #717171;
}
.footer-info img{
    display: inline;
    margin-right: 80px;
    float: left;
}
.footer-info ul{
    display: inline;
    width: 180px;
    float: left;
}
.footer-info ul li{
    list-style: none;
    margin-bottom: 15px;
}
.footer-info ul li a{
    color: #717171;
    text-decoration: none;
}
.footer-info div{
    width: 180px;
    float: right;
    display: inline;
}
.footer-credit{
    height: 100px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-credit p{
    width: 550px;
    font-size: 11px;
}
.footer-credit h6{
    font-size: 14px;
    margin-right: 30px;
}
.footer-credit .connect{
    display: flex;
    align-items: center;
}
.connect .sosmed{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.connect .sosmed div{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #717171;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.connect .sosmed div .a{
    fill: #717171;
}
/* global---------------------------------------------------------------------- */



/* about us */
.profile .card .text{
    margin: 10px 0;
}
.profile .card .text h1{
    font-size: 16px;
    font-weight: 700;
}
.profile .card .text p{
    font-size: 13px;
}




/* blog */
.search{
    margin-bottom: 40px;
}
.search .container{
    flex-wrap: nowrap;
}
.search input{
    height: 35px;
    width: 100%;
    border-radius: calc(35px/2);
    border: 1px solid #B5B5B5;
    margin-right: 20px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}
.search input:focus{
    outline: 2px solid #B5B5B5;
    font-family: 'Poppins', sans-serif;
}

.blog.container{
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.blog.container a{
    text-decoration: none;
}
.blog .card .text{
    text-align: left;
}
.blog .card .text p{
    font-size: 12px;
    color: #717171;
}




/* blog content */
.blog-content.container{
    display: block;
}
.blog-content{
    padding: 50px 0 80px;
}
.blog-content .img{
    width: 100%;
    border-bottom: 1px solid #707070;
    margin: 40px 0;
}
.blog-content .img img{
    width: 100%;
}
.blog-content .img p{
    margin: 10px 0;
    color: #717171;
    font-size: 10px;
}
.lainnya{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.lainnya a{
    padding: 5px 25px;
    background-color: #91A99B;
    color: #fff;
    border-radius: 25px;
    border: none;
    text-decoration: none;
    font-size: 13px;
}

.isi-content-blog p {
    margin: 1em 0;
}






/* solution */
.swiper-testimoni .card{
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.swiper-testimoni .card .text{
    width: 600px;
    text-align: left;
}
.swiper-testimoni .card .text p{
    text-align: left;
}
.button img{
    height: 35px;
}
.button .whatsapp{
    margin-right: 20px;
}




/* faq */
.faq{
    width: 100%;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 1px 2px 8px rgba(0,0,0,.16);
    margin: 30px 0;
}
.faq h1{
    font-weight: 400;
    font-size: calc(1.305rem + .66vw);
    line-height: 1.2;
    margin-bottom: .5rem;
}
.faq p{
    color: #717171;
}



/* terms & privacy */
#eng1, #eng2, #eng3{
    display: none;
}
.terms-and-privacy .center{
    text-align: center;
}
.terms-and-privacy .center-bold{
    text-align: center;
    font-weight: 600;
}
.terms-and-privacy .center-italic{
    text-align: center;
    font-style: italic;
}
.terms-and-privacy ul,ol{
    margin-left: 30px;
}






/* Responsive ---------------------------------- */
@media (max-width: 1200px){
    .container{
        justify-content: center;
    }
    .content-teks{
        width: 100%;
    }
}
@media (max-width: 850px){
    header{
        height: 70px;
        overflow-y: hidden;
        transition: .3s ease;
    }
    header.active{
        height: max-content;
    }
    header .headline{
        border: none;
        justify-content: space-between;
    }
    header nav{
        border-bottom: 1px solid white;
    }
    header .sosmed,
    header .id-contact{
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 15px auto;
    }
    #dropdown{
        padding-top: 0;
        border-bottom: 1px solid white;
    }

    .atasan{
        height: 70px;
    }
    #hamburger-menu{
        display: block;
    }

    header nav.active{
        display: inherit;
    }
    header nav ul{
        flex-direction: column;
        align-items: center;
    }
    .content .container > .img{
        width: 300px;
        height: 300px;
    }
    .terms{
        flex-direction: column;
    }
    .terms > div{
        width: 100%;
    }
    .swiper-testimoni .card{
        justify-content: center;
    }
    .pesan-kaki .container{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer{
        padding-top: 0;
    }
    .footer-info{
        height: 250px;
    }
    .footer-info img{
        display: block;
        margin: 30px 0;
        width: 100%;
        height: 30px;
        object-position: center;
        object-fit: scale-down;
    }
    .footer-credit{
        flex-direction: column-reverse;
        justify-content: center;
    }
    .footer-credit p{
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }
}
@media (max-width: 800px){
    .blog.container{
        justify-content: center;
    }
    .swiper-button-next-unique,
    .swiper-button-prev-unique,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination{
        visibility: hidden;
    }
}
@media (max-width: 480px){
    .container{
        width: 85%;
    }
    .content{
        padding: 50px 0;
    }
    .banner-teks{
        font-size: 2.3em;
        line-height: 50px;
    }
    .mitra-item{
        width: 140px;
        height: 140px;
    }
    .footer-info{
        height: 400px;
    }
    .footer-info ul{
        width: 130px;
    }
    .footer-info ul:nth-child(3){
        float: right;
    }
    .footer-info div{
        float: left;
    }
    .footer-credit{
        padding: 10px 0;
    }
    .footer-credit .sosmed{
        transform: scale(0.7);
    }

    /* for about us */
    .content .strong{
        font-size: 1em;
        line-height: normal;
    }
}

/* BARU */
.sticky {
    background-color: #91A99B; !important;
    z-index: 3; !important;
}