@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --color_black: #000;
    --color_white: #fff;
    --color_light_blue: #50A9FA;
    --color_blue: #0460B2;
    --color_gunmetal: #0B121A;
    --color_FontText: #383F46;
    --color_grey: #F2F2F2;
    --color_greyLine: #CACACA;

    --background_secondary: linear-gradient(221deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), #C9C9C9;
    ;
    --font_family_title:  "gemsbuck_boldbold", sans-serif;
    --font_family_title_it:  "gemsbuck_bold_obliqueBdOb", sans-serif;
    --font_family_header:  "Montserrat", sans-serif;
    --font_family_text: "Roboto", sans-serif;
}
* {
    font-family: var(--font_family_text);
}
p{
    margin-bottom: 0 !important;
}
a{
    text-decoration: none !important;
}
hr{
    width: 100%;
    height: 1px;
    background: var(--color_greyLine);
    margin: 0 !important;
}
a:hover{
    color: var(--color_light_blue) !important;
    cursor: pointer;
}
/* loader */
.loader-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color_cream);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
}



@keyframes fed {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-500%);
        transform: translateX(-500%);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(0) scale(2.5);
        transform: translateX(0) scale(2.5);
    }

    40%,
    60% {
        -webkit-transform: translateX(0) scale(1.5);
        transform: translateX(0) scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(500%);
        transform: translateX(500%);
    }
}


@keyframes feed {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-500%);
        transform: translateX(-500%);
    }

    40% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(500%);
        transform: translateX(500%);
    }
}



.feeder {
    height: 20px;
    position: relative;
    width: 20px;
}

.feeder div {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: fed;
    animation-name: fed;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-delay: calc(var(--delay) * 1s);
    animation-delay: calc(var(--delay) * 1s);
    background-color: var(--color_primary_red);
    border-radius: 100%;
    height: 100%;
    position: absolute;
    width: 100%;
}

.feeder div:nth-child(2),
.feeder div:nth-child(3) {
    -webkit-animation-name: feed;
    animation-name: feed;
}

.feeder div:nth-child(2) {
    --delay: .25;
}

.feeder div:nth-child(3) {
    --delay: .5;
}


/* FONT */
.heading_h1 {
    /* Heading/H1 */
    font-family: var(--font_family_header);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    /* line-height: normal; */
}
.heading_h2 {
    /* Heading/H2 */
    font-family: var(--font_family_header);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
    /* line-height: normal; */
}
.heading_h3 {
    /* Heading/H3 */
    font-family: var(--font_family_header);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    /* line-height: normal; */
}
.heading_h4 {
    /* Heading/H4 */
    font-family: var(--font_family_header);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.heading_h5 {
    font-family: var(--font_family_header);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
}
.heading_h6 {
    /* Heading/H6 */
    font-family: var(--font_family_header);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
}

.text_large_semiBold{
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.text_large_medium{
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.text_large_normal {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}
.text_large_bold{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}
.text_large_extraBold{
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 30px */
}

.text_medium_extraBold{
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
}
.text_medium_bold{
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
}
.text_medium_semiBold{
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
}
.text_medium_normal {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.text_medium_light {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 27px */
}
.text_regular_normal {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.text_regular_light{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
}
.text_regular_semiBold {
    /* Text/Regular/Semi Bold */
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text_small_light{
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 21px */
}
.text_small_normal{
    font-family: var(--font_family_text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.text_small_semiBold{
    font-family: var(--font_family_text);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.btn-outline-primary {
    padding: 8px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    border: 1px solid var(--color_blue) !important;    
    text-decoration: none;  
    color: var(--color_blue) !important;
}   

.btn-outline-primary:hover {
    /* border: 1px solid var(--color_primary_red) !important;     */
    background-color: var(--color_third_blue) !important;
    color: var(--color_secondry_yellow) !important;
}  

.btn-primary{
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 5px;
    background: var(--color_blue) !important;
    color: var(--color_white);
    /* xlarge */
    box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover{
    background: var(--color_light_blue)!important;
    color: var(--color_white) !important;
}
.btn-primary:disabled {
    color: var(--color_white);
    background-color: #F69595 !important;
    cursor: not-allowed;
}

.btn-primary-white{
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 17px;
    border-radius: 5px;
    background: var(--color_grey);
    color: var(--color_blue);
    i{
        font-size: 38px;
    }
}


/* LOADER */
/* NAVIGATION */
.navbar-custom {
    position: absolute !important;
    width: 100% !important;
    color: var(--color_white);
    z-index: 2;
    transition: transform 0.2s;
    /* height: 72px !important; */
}
.navbar-custom1 {
    background-color: rgba(0, 0, 0, 0);
    color: var(--color_blue);
    background: var(--background_primary);
    box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.10) inset;
    border-bottom: 5px solid var(--color_blue);
    transition: transform 0.2s;
}

.navbar-brand img {
    width: auto;
    height: 85px;
    flex-shrink: 0;
}
.offcanvas{
    a{
        color: var(--color_black);
    }
}
.navbar-nav .nav-link {
    color: var(--color_third_blue);
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}
.navbar-nav .nav-link:hover{
    color: var(--color_light_blue);
}
.navbar-nav .nav-link.active {
    color: var(--color_white);
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.navbar-custom1 {
    .navbar-nav .nav-link.active {
        color: var(--color_blue);
        font-family: var(--font_family_text);
        font-size: 16px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }
}

.navbar-toggler{
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #00000001!important;
    /* border: 1px solid var(--color_primary_red) !important; */
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
    color: var(--color_third_blue);
}

.navbar-toggler-icon{
   i{
    font-size: 38px;
    }
}

.navbar-hidden {
    transform: translateY(-100px);
    box-shadow: none;
}

.whatsapp_button img {
    width: 60px;
    cursor: pointer;
}

.whatsapp_button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}


/* HEADER */
.homepage_hero{
    padding: 190px 20px 90px;
    color: var(--color_white);
    position: relative;
    overflow: hidden;
    .hero_content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 44px;
        flex: 1 0 0;
        align-self: stretch;
        .hero_text{
            max-width: 765px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 27px;
            align-self: stretch;
            h1{
            }
        }
    }
    .hero-background img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Memastikan gambar menutupi seluruh area */
        opacity: 0; /* Semua gambar awalnya disembunyikan */
        transition: opacity 1s ease-in-out, transform 10s ease-in-out; /* Transisi untuk fade dan zoom */
        z-index: -2; /* Meletakkan gambar di belakang konten */
        transform: scale(1.1); /* sedikit zoom awal untuk efek zoom out */
        will-change: transform, opacity;
    }
    .hero-background img.active {
        opacity: 1; /* Menampilkan gambar yang aktif */
        /* transform: scale(1); mengembalikan skala ke normal untuk efek zoom in */
    }
}
.homepage_hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(282deg, rgba(0, 0, 0, 0.22) 9.39%, rgba(0, 0, 0, 0.69) 100%);
    z-index: -1; /* Letakkan di atas gambar, tetapi di bawah konten */
}

.homepage_main{
    position: relative;
    background:url(../Image/symbol/ornamen1.png),url(../Image/symbol/ornamen2.png),#ECF6FF;
    background-position: -30% -60%, 110% 220%, center;
    background-repeat: no-repeat;
    background-size: 700px, 700px, cover;

    display: flex;
    padding: 88px 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 85px;
    align-self: stretch;
}
.mission{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    color: var(--color_FontText);
    .card_frame{
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 37px;
        align-self: stretch;
        flex-wrap: wrap;
        .mission_card{
            display: flex;
            width: 293px;
            padding: 25px 20px;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            border-radius: 10px;
            background: var(--color_white);
    
            /* medium */
            box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
            img{
                max-width: 128px;
            }
            h6{
                color:var(--color_blue);
            }
            p{
                height: 108px;
            }
        }
    }
}

/* Vision */
.vision{
    display: flex;
    align-items: center;
    align-content: center;
    gap: 30px;
    align-self: stretch;
    flex-wrap: wrap;
    h2{
        width: 100%;
        max-width: 670px;
        color: var(--color_blue);
    }
    .vision_text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        flex: 1 0 0;
        color: var(--color_FontText);
    }
    p{
        flex: 1 0 0;
    }
}

/* Our Product */
.our_product{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    hr{
        max-width: 168px;
        height: 1px;
        color:#A9C7E2 ;
    }
    p{
        color: var(--color_FontText);
        text-align: center;
    }
    h4{
        color: var(--color_blue);
    }
    .product_img{
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 34px;
        align-self: stretch;
        flex-wrap: wrap;
        img{
            max-width: 268px;
            border-radius: 15px;
            background: #FCFCFC;

            /* large */
            box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
        }
    }
}

/* Our Client */
.our_client {
    display: flex;
    padding: 87px 100px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    h4{
        color: var(--color_blue);
    }
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: auto;
        max-width: 200px;
        max-height: 70px;
        object-fit: cover;
        margin: auto 0;
    }
}


/* Privacy Police */
.privacy-police {
    padding: 100px 0px;
}

/* footer */
.container_footer {
    max-width: 1170px;
    margin: auto;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

.footer {
    background: url(../Image/background/footerBG.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 10px;
}

.footer-col {
    width: 250px;
    padding: 20px 15px;
    color: var(--color_white);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--color_white);
    text-transform: capitalize;
    margin-bottom: 17px;
    font-weight: 500;
    position: relative;
    /* Text/Regular/Semi Bold */
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
    color: var(--color_white);
}

.footer-col ul li a {
    color: var(--color_white);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;

    /* Text/Small/Normal */
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-col ul li i{
    margin-right: 10px;
}

.footer-col ul li a:hover {
    color: var(--color_white) !important;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--color_primary_red);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: var(--color_primary_red);
}

.footer-last {
    color: var(--color_white);
    height: 100%;
}
.footer-last a{
    text-decoration: none;
    color: var(--color_white);
    transition: all 0.5s ease;
}
.footer-last a:hover{
    color: var(--color_light_blue);
}

/*responsive*/
@media(max-width: 1024px) {
    .navbar-custom {
        & .navbar-top {
            p {
                font-size: 22px;
            }
            img {
                max-height: 33px !important;
            }
        }
    }
    .btn-language {
        a {
            font-size: 14px;
        }
        i {
            font-size: 22px;
        }
    }
    .text_regular_light {
        font-size: 14px;
    }
}
@media(max-width: 987px) {
    .navbar-brand{
        margin-left: 1.3rem;
    }
}

@media(max-width: 768px) {
    .menu_bread {
        display: block !important;
    }
    .navbar-custom .btn-language {
        display: none;
    }
    .navbar-items {
        display: none;
    }
    .navbar-custom {
        & .navbar-top {
            img {
                max-height: 32px !important;
            }
        }
    }
    .navbar-custom {
        & .navbar-top {
            p {
                font-size: 24px;
            }
        }
    }
    .aboutus_hero {
        h3 {
            font-size: 36px !important;
        }
    }
    .vision {
        h2 {
            font-size: 38px;
            text-align: center;
        }
        p {
            text-align: center;
        }
        .vision_text{
            align-items: center;
        }
    }
    
    .swiper_custom_nav {
        display: none !important;
    }
}

@media(max-width: 574px) {
    .text_large_normal {
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }
    .homepage_hero {
        .hero-background img {
            position: absolute;
            top: 0;
            left: -660px !important;
            width: auto;
            height: 100%;
        }
    }
}

@media(max-width: 450px) {
    .homepage_hero {
        & .hero_content {
            & .hero_text {
                h3 {
                    font-size: 26px;
                }
            }
        }
    }
    .navbar-custom {
        & .navbar-top {
            p {
                font-size: 20px;
            }
        }
    }
    .navbar-custom1{
        .navbar-brand img {
            width: auto;
            height: 45px !important;
        }
    }
   
    .our_client {
        & .client_logo {
            img {
                max-height: 45px;
            }
        }
    }
    .slide-container {
        & .slide-content {
            .cat_card {
                /* width: 269px; */
                padding: 10px 0 20px;
                margin: 5px;
            }
        }
    }
    .blog {
        & .news_frame {
            .news_card {
                display: flex;
                width: 281px;
                height: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }
    }
    .vision {
        h2 {
            font-size: 24px;
        }
    }
    .heading_h1 {
        font-size: 32px;
    }
    .heading_h2 {
        font-size: 32px;
    }
    .heading_h4, .heading_h5{
        font-size: 24px;
    }
    /* .heading_h5{
        font-size: 24px;
    } */
    .subHeading_h2 {
        font-size: 29px;
    }
    .text_medium_normal {
        font-size: 14px;
    }
    .text_medium_light {
        font-size: 14px;
    }
    .text_regular_semiBold {
        font-size: 13px;
    }
    
    .blog {
        padding: 34px 0px !important;
        gap: 15px;
    }
    .family_brand {
        & .icon_frame {
            img {
                height: 80px;
                width: auto;
            }
        }
    }
    .slide-container {
        .slide-content {
            margin: 0 auto;
            padding: 0 0 20px 0;
            overflow: hidden;
        }
    }
    .row-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

