:root {
    --cui-white: #ffff;
    --cui-brand-base: #20823E;
    --cui-brand-100: #D2E6D8;
    --cui-brand-200: #B5D5BF;
    --cui-brand-300: #8FC09E;
    --cui-brand-400: #6AAC7E;
    --cui-brand-500: #45975E;
    --cui-brand-600: #1B6C34;
    --cui-brand-700: #155729;
    --cui-brand-800: #10411F;
    --cui-brand-900: #0B2B15;
}

/* fonts */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}
  
.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}
  
.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
  
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}
  
.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
  
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
} 

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* fonts */

body {
    font-family: "Poppins", sans-serif;
}

.icon-nav {
    filter: brightness(0) invert(1);
}

/* button */
.btn-brand-primary {
    background-color: var(--cui-brand-base);
    color: var(--cui-white);
    border: 2px solid var(--cui-brand-base);
}

.btn-brand-primary:hover {
    background-color: var(--cui-brand-700);
    border: 2px solid var(--cui-brand-700);
    color: var(--cui-white);
}

.btn-brand-secondary {
    background-color: var(--cui-white);
    color: var(--cui-brand-base);
    border: 1px solid var(--cui-brand-base);
}

.btn-brand-secondary:hover {
    background-color: #ffffffb6;
    border: 2px solid var(--cui-brand-700);
    color: var(--cui-brand-700);
}
.link-brand {
    color: var(--cui-brand-base);
    text-decoration: underline;
}

.link-brand:hover {
    color: var(--cui-brand-700);
    text-decoration: underline;
}

.link-black-none {
    color: black;
    text-decoration: none !important;
}

.link-black-none:hover {
    color: var(--cui-brand-700);
    text-decoration: none !important;
}

.link-brand-none {
    color: var(--cui-brand-base);
    text-decoration: none !important;
}

.link-brand-none:hover {
    color: var(--cui-brand-700);
    text-decoration: none !important;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/* font */
.color-brand {
    color: var(--cui-brand-base) !important;
}

.font-body-xxxl {
    font-size: 30px;
    line-height: 34px;
}

.font-body-xxl {
    font-size: 26px;
    line-height: 34px;
}

.font-body-xl {
    font-size: 22px;
    line-height: 32px;
}

.font-body-md {
    font-size: 18px;
    line-height: 26px;
}

.font-body-s {
    font-size: 16px;
    line-height: 24px;
}

.font-body-xs {
    font-size: 14px;
    line-height: 22px;
}

.font-action-s {
    font-size: 12px;
    line-height: 18px;
}

.font-heading-1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
}

/* bg color */
.bg-brand {
    background-color: var(--cui-brand-900);
}

/* navbar */
.rotate-icon {
    transition: transform 1s ease;
}

.rotate-icon.rotate {
    transform: rotate(180deg);
}

.nav-link {
    text-decoration: none;
    border: none;
}

.card-custom-image {
    width: 100%;
    height: 187px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-mentor-image {
    border-radius: 20px;
    width: 100%;
    height: 275px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.photo-profile {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.dropdown-item:active {
    background-color: transparent !important; 
    color: inherit !important; 
}

@media (min-width: 768px) {
    .dropdown-menu-center {
        left: 50% !important;
        transform: translateX(-50%);
        width: 430px;
    }
}

/* Home page */
/* Stil umum untuk latar belakang */
.bg-bootcamp {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%; /* Ukuran normal */
    height: 680px;
    transition: background-size 1.3s ease;
    margin-top: -10px;
}

.bg-corporate-training {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    height: 680px;
    transition: background-size 1.3s ease;
    margin-top: -10px;
}

.bg-about {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    height: 721px;
    transition: background-size 1.3s ease;
    margin-top: -20px;
}

.bg-career {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    height: 721px;
    transition: background-size 1.3s ease;
    margin-top: -20px;
}

.bg-free-class {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    height: 721px;
    transition: background-size 1.3s ease;
    margin-top: -20px;
}

.bg-video-learning {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    transition: background-size 1.3s ease;
    margin-top: -10px;
  }

.mockup-app {
    width: 148px;
}

.card-download {
    border-radius: 20px;
}

/* Media query untuk desktop */
@media (min-width: 1024px) {
    .bg-home {
        background-image: url('../images/homepage/background-homepage-desktop.png');
    }

    .bg-bootcamp {
        background-image: url('../images/Legal-Bootcamp/Hero\ Background\ -\ Bootcamp.png');
    }

    .bg-corporate-training{
        background-image: url('../images/corporate-training/Background.png');
    }

    .bg-career {
        background-image: linear-gradient(to right, rgba(32, 130, 62, 0.8), rgba(24, 97, 46, 0)), url('../images/career-coaching/two-asian-businesspeople-working-office\ 2.png');
    }

    .card-download {
        height: 320px; 
    }
}

@media (min-width: 1000px) and (max-width: 1335px) {
    .btn-daftar-kelas {
        display: none;
    }
}

/* Media query untuk tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .bg-home {
        background-image: linear-gradient(to right, rgba(32, 130, 62, 0.8), rgba(24, 97, 46, 0)), url('../images/homepage/Background\ Homepage\ -\ Tablet.png');
    }

    .bg-career {
        height: 680px;
        background-image: linear-gradient(to right, rgba(32, 130, 62, 0.8), rgba(24, 97, 46, 0)), url('../images/career-coaching/two-asian-businesspeople-working-office\ 2.png');
    }

    .card-download {
        height: 680px; 
    }
}

/* Media query untuk ponsel */
@media (max-width: 767px) {
    .bg-home {
        background-image: linear-gradient(to bottom, rgba(32, 130, 62, 0.8), rgba(24, 97, 46, 0)), url('../images/homepage/Background\ Homepage\ -\ Mobile.png');
        height: 900px; 
    }

    .bg-career {
        height: 700px;
        background-image: linear-gradient(to right, rgba(32, 130, 62, 0.8), rgba(24, 97, 46, 0)), url('../images/career-coaching/two-asian-businesspeople-working-office\ 2.png');
    }

    .timeline li {
        flex: 1;
        position: relative;
        height: 300px;
    }

    .footer {
        margin-top: 70px;
    }

    .mockup-app {
        width: 80px;
    }

    .card-download {
        height: 900px; 
    }

    .owl-next {
        left: 90% !important;
    }

    .owl-prev {
        right: 90% !important;
    }
}

.bg-home.zoomed {
    background-size: 105%;
}

.count-down {
    margin-top: -25px;
}

.card-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 283.64px;
    width: 205px;
    background-color: #c3c2c2;
    border-radius: 8px;
}
.card-img-centered {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 310px;
    width: 205px;
    background-color: #c3c2c2;
    border-radius: 8px;
}

.navbar-scrolled {
    background-color: var(--cui-white);
    transition: background-color 0.2s ease;
}

.slide-right {
    animation: slideRight 0.9s linear forwards;
}

/* icon mengapa korner */
.icon-why-brand {
    filter: saturate(2) brightness(1.2);
    width: 35px; 
}

.owl-prev {
    background-color: var(--cui-white) !important;
    box-shadow: 0px 4px 16px 0px #0000001A;
    width: 32px;
    height: 32px;
    padding: 9px 0px 9px 0px;
    border-radius: 100% !important;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-65%);
    color: var(--cui-brand-base) !important;
    outline: none;
}

.owl-prev:hover {
  opacity: 0.9;
  color: var(--cui-brand-800) !important;
}

.pag-prev {
    background-color: var(--cui-white) !important;
    box-shadow: 0px 4px 16px 0px #0000001A;
    width: 32px;
    height: 32px;
    padding: 9px 0px 9px 0px;
    border-radius: 100% !important;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-65%);
    color: var(--cui-brand-base) !important;
    outline: none;
}

.pag-prev:hover {
  opacity: 0.9;
  color: var(--cui-brand-800) !important;
}
  
.owl-next {
  background-color: var(--cui-white) !important;
  box-shadow: 0px 4px 16px 0px #0000001A;
  width: 32px;
  height: 32px;
  padding: 9px 0px 9px 0px;
  border-radius: 100% !important;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-65%);
  color: var(--cui-brand-base) !important;
  outline: none;
}

.owl-next:hover {
  opacity: 0.9;
  color: var(--cui-brand-800) !important;
}


.card {
    transition: transform 0.5s;
}

.card-custom-shadow {
    box-shadow: 0px 20px 40px 0px #00000008;
    border: none;
}

.card-link:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.text-bg-brand {
    background-color: #EAF3EB;
    color: var(--cui-brand-base);
    font-weight: 500;
    font-size: 12px;
}

.link-white {
    color: var(--cui-white);
    text-decoration: none;
}

.link-white:hover {
    text-decoration: none;
    color: rgb(219, 217, 217);
}

.card-tentang-korner {
    box-shadow: 0px 20px 50px -10px #343F5133;
    border: none;
}

.scroll-container {
    width: 100%;
    overflow-x: auto; 
    white-space: nowrap; 
    padding: 10px; 
}

.content {
    display: inline-block; 
    width: 200%;
    white-space: normal;
    vertical-align: top;
    margin-right: 10px; 
} 

.scroll-container::-webkit-scrollbar {
    height: 8px; 
    background-color: #f1f1f1;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--cui-brand-base); 
    border-radius: 4px; 
}

.scroll-container {
    scrollbar-width: thin;
    scrollbar-color: var(--cui-brand-base) #f1f1f1; 
}

.scroll-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--cui-brand-base); 
    border-radius: 4px; 
}

.btn-brand-outline {
    color: var(--cui-brand-base); 
    background-color: transparent; 
    border: 1px solid var(--cui-brand-base); 
    transition: all 0.3s ease; 
}

.btn-brand-outline.active {
    background-color: var(--cui-brand-base); 
    color: var(--cui-white); 
    text-decoration: none; 
}

.btn-brand-outline:hover {
    background-color: var(--cui-brand-base); 
    color: var(--cui-white); 
    text-decoration: none;
}

.search-input span {
    border-right: none;
}

.search-input input {
    border-left: none;
}

.search-input input:focus {
    border-color: var(--cui-brand-base);
}

.page-prev {
    width: 32px;
    height: 32px;
}

.page-next {
    width: 32px;
    height: 32px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline li {
    flex: 1;
    padding: 20px;
    position: relative;
    padding: 35px;
    height: 220px;
}

.timeline li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--cui-brand-base);
    border-radius: 50%;
    border: 2px solid var(--cui-brand-base);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}

.timeline li::after {
    content: '';
    position: absolute;
    background-color: var(--cui-brand-base);
    width: calc(100% - 40px); 
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    z-index: -1;
}

.timeline li:last-child::after {
    display: none; 
}

.timeline li h3 {
    margin-top: 10px; 
    font-size: 1.2rem;
    text-align: left;
}

.timeline li p {
    margin-bottom: 0;
    text-align: left;
}

.line-timeline {
    width: 87%; 
    height: 4px;
    background-color: var(--cui-brand-base);
    position: relative;
    top: 32.5px;
}

/* korner app */
.jumbotron-app {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%; 
    height: 680px;
    transition: background-size 1.3s ease;
    margin-top: -10px;
}

.jumbotron-mentor {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 680px;
    transition: background-size 1.3s ease;
    margin-top: -10px;
}

.list-brand {
    list-style-type: none; 
    padding-left: 0;
}

.list-brand li {
    padding-left: 30px; 
    background-image: url("../images/icons/Check\ Circle\ Icon.png"); 
    background-repeat: no-repeat;
    background-position: 0 center; 
    background-size: 20px 20px; 
    line-height: 20px; 
    margin-bottom: 10px; 
}

.list-white {
    list-style-type: none; 
    padding-left: 0;
}

.list-white li {
    padding-left: 30px; 
    background-image: url("../images/icons/Check\ Circle\ Icon\ 2.png");
    background-repeat: no-repeat;
    background-position: 0 center; 
    background-size: 20px 20px; 
    line-height: 20px; 
    margin-bottom: 10px; 
}

.bg-brand-base {
    background-color: var(--cui-brand-base);
}

.kurikulum-card {
    width: Fixed (546px)px;
    height: Hug (48px)px;
    padding: 8px 16px 8px 16px;
    gap: 16px;
    border-radius: 4px 0px 0px 0px;
    background-color: var(--cui-white);
}

.profile-img {
    background-color: grey;
    height: 25px;
    max-height: 25px;
    width: 25px;
    max-width: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile-dropdown::after {
    display: none;
}