


html {
    scroll-behavior: smooth;
}

mark {
    line-height: 2; 
    font-weight: 400;
  }

.image-wrapper {
    overflow: hidden;
    margin-bottom: 0;
  }
  
  .cropped-image {
    clip-path: inset(20% 0 0 0); 
    margin-top: -17%;
  }
  
/* Navigasi */
.navbar {
    height: auto;
    min-height: 100px;
    font-family: "Open Sans", sans-serif;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-toggler {
    position: relative;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    opacity: 0;
}

.navbar-toggler:before {
    content: ' ';
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgZmlsbD0icmdiYSgwLCAwLCAwLCAwLjUpOyIgaGVpZ2h0PSIyNXB4IiB3aWR0aD0iMjVweCIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiANCgkgdmlld0JveD0iMCAwIDQ5MCA0OTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBvbHlnb24gcG9pbnRzPSI0NTYuODUxLDAgMjQ1LDIxMi41NjQgMzMuMTQ5LDAgMC43MDgsMzIuMzM3IDIxMi42NjksMjQ1LjAwNCAwLjcwOCw0NTcuNjc4IDMzLjE0OSw0OTAgMjQ1LDI3Ny40NDMgNDU2Ljg1MSw0OTAgDQoJNDg5LjI5Miw0NTcuNjc4IDI3Ny4zMzEsMjQ1LjAwNCA0ODkuMjkyLDMyLjMzNyAiLz4NCjwvc3ZnPg==");
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    left: 50%;
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"]:before {
    opacity: 1;
}

.navbar-nav li a {
    color: #2d4b9b !important;
    font-family: "Gilroy-Bold", sans-serif;
}

a.text-dark:focus,
a.text-dark:hover,
.nav-link.active {
    color: #ffffff !important;
}

/* Section Hero */
.section-top {
    display: block;
    position: relative;
    margin-top: 100px;
}

.vh-top {
    height: calc(100vh - 100px) !important;
}

/* Section What We Believe*/

#who-we-are {
    background-image: url("../img/who-we-are.webp"); /* Pastikan path sudah benar */
    background-size: cover;
    background-position: center;
  }
  
  #who-we-are h2 {
    align-self: start;
    font-size: 5rem;
    top: 0vh;
    position: relative;
    font-family: "Gilroy-Heavy", sans-serif;
    color: #ea5a0c;
  }
  
  #who-we-are p {
    margin-bottom: 0.5em; /* Adjust space between paragraphs */
    line-height: 1.5; /* Adjust line height to control spacing between lines */
    text-align: left; /* Align text to the left */
    font-family: "Gilroy-Bold", sans-serif;
  }
  
/* Section What we believe */
.min-respective-vh {
    min-height: calc(100vh - 100px);
}

/* Section Playground */
.h-20 {
    height: calc(20vh - 100px);
}

.h-80 {
    height: calc(80vh - 100px);
}

.object-fit-cover {
    object-fit: cover;
    object-position: top center;
}

.object-position-bottom {
    object-position: bottom center;
}

.object-position-center {
    object-position: center center;
}

.title-responsive {
    font-size: 4rem !important;
}

.title-section {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Our clients */
.our-clients {
    padding-bottom: 0;
}


/* Section Fun makers */
.card {
    width: 100%;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s; /* Transisi untuk efek zoom */
    z-index: 1; /* Atur z-index ke angka yang lebih rendah */
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 253, 254, 0.6);
    transition: opacity 0.2s; /* Transisi untuk efek fade overlay */
    z-index: 2; /* Memastikan overlay berada di atas gambar dan teks */
    opacity: 1; /* Awalnya overlay terlihat */
}

.card:hover {
    transform: scale(1.05); /* Zoom seluruh kartu saat di-hover */
    z-index: 3;
}

.card:hover::before {
    opacity: 0; /* Hilangkan overlay saat di-hover */
}



/* .card img {
    height: calc((100vh - 100px)/2);
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
} */

.card img {
    min-height: calc((100vh - 100px)/2);
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}

.fun-title {
    display: block;
    position: absolute;
    bottom: 0;
}

.fun-name {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin: 0;
}

.fun-position {
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 1px;
}

.fun-title mark {
    padding: 0.2em 0.8em;
}

#the-fun-makers mark {
    line-height: 0;
}
mark.pink {
    background-color: #ea8dba;
    color: #ffffff;
}

mark.orange {
    background-color: #fddc01;
    color: #de3f41;
}

mark.yellow {
    background-color: #fddc01;
    color: #4d4696;
}

mark.white {
    background-color: #ffffff;
    color: #2d4b9b;
}

mark.blue {
    background-color: #2d4b9b;
    color: #ffffff;
}

mark.indigo {
    background-color: #4d4696;
    color: #ffffff;
}

mark.bluesky {
    background-color: #29badd;
    color: #ffffff;
}

mark.orange {
    background-color: #ec6f2f;
    color: #ffffff;
}

.card.yellow {
    background-color: #fddc01;
}

.card.pink {
    background-color: #ea8dba;
}

.card.bluesky {
    background-color: #29badd;
}

.card.indigo {
    background-color: #4d4696;
}

.card.blue {
    background-color: #2d4b9b;
}
.card.orange {
    background-color: #de3f41;
}

/* Warna Sementara untuk menghapus Ancha dan Shisca */
.bg-temp-red {
    background-color: #ff8c00;
}

/* Section Contact */
.contact-section {
    padding: 0;
}

.vertical-line {
    height: 100px;
}

.vertical-line::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
    background-color: orange;
}

#contact-us address {
    text-align: left;
}

/* Mobible Responsive */
@media screen and (max-width: 991px) {

    .navbar-collapse {
        background: #fcdc00;
        display: block;
        position: absolute;
        top: 100px;
        width: 50%;
        height: calc(100vh - 100px) !important;
        left: 0;
        opacity: 0;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translate(0);
    }

    .navbar-nav {
        padding: 0 20px;
    }

    .collapse:not(.show) {
        display: block !important;
    }

    .text-hello-there {
        font-size: 6rem;
        top: 0;
        line-height: 1.2;
    }

    .who-we-are-text br {
        display: none; 
    }

    .cropped-image {
        margin-top: -20%; /* Atur margin top sesuai kebutuhan Anda */
      }
}

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

    .md-min-vh-100 {
        min-height: 100vh;
        height: auto;
    }

    .title-responsive {
        font-size: 2rem !important;
    }

    .title-section {
        height: auto;
    }

    .logo-row .clients-logo {
        width: 100%;
        height: 50px;
        max-width: 100px;
        object-fit: contain;
        margin-bottom: 10px;
        object-position: top center;
    }

    .fun-name {
        font-size: .8em;
        white-space: nowrap;
    }

    .fun-position {
        font-size: 10px;
        white-space: nowrap;
    }

    .acronym-letter {
        font-size: 2rem;
    }

    .acronym-style h3 {
        font-size: 2rem;
    }
    .text-hello-there {
        font-size: 6rem;
        top: -80px;
        line-height: 1.2;
    }

    .who-we-are-text br {
        display: none;
    }
    #hero-section img {
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        transform: scale(1.5);
        display: block;
        bottom: 20px;
        left: 15px;
    }
    .cropped-image {
        margin-top: -20%; /* Atur margin top sesuai kebutuhan Anda */
      }
}

@media screen and (max-width: 576px) {
    .responsive-vh-50 {
        height: 50vh !important;
        min-height: unset;
    }

    .fun-name {
        font-size: .8em;
        white-space: normal;
    }

    .fun-position {
        white-space: normal;
    }
    .text-hello-there {
        font-size: 6rem;
        top: -80px;
        line-height: 1.2;
    }
    #who-we-are h2 {
        font-size: 2rem;
    }
    .who-we-are-text p{
        font-size: 1rem;
    }

    .who-we-are-text br {
        display: none;
    }

    .cropped-image {
        margin-top: -25%; /* Atur margin top sesuai kebutuhan Anda */
      }
    
}