body {
    background-color: #F3F3F3;
}

.header {
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 1000;
}

.header-bg {
    background-color: #fff !important;
    transition: all 0.5s;
    box-shadow: 0px 6px 25px #00000029;
}

.content {
    padding-top: 60px;
}

.bg-body-grey {
    background-color: #F3F3F3;
}

.bg-grey-14 {
    background-color: #8E8E8E14;
}

.bg-light-grey-14 {
    background-color: #E5E5E514;
}

.bg-yellow-14 {
    background-color: #F9C21E14;
}

/* Container */
@media (min-width: 992px) {
    .container {
        max-width: 1350px;
    }
}

/* Font */
h1, h2, h3, h4, h5, h6, p, a, li, span, small, label, input, textarea, select, button, span {
    font-family: 'Inter', sans-serif;
    color: #24282C;
}

/* Button */
.btn.btn-lg {
    font-size: 18px;
}

/* Logo */

.logo {
    gap: 12px;
}

.logo img {
    height: 30px;
}

.logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navbar */
.navbar-nav {
    gap: 16px;
}

.navbar-nav .nav-item .nav-link {
    color: #24282C;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.3rem 0.5rem;
}

.navbar-nav .nav-item.active, .navbar-nav .nav-item:hover {
    border-bottom: 3px solid #F9C21E;
}

.navbar-nav .nav-item.active .nav-link {
    font-weight: 600;
}

/* Button Contact Us */
.contact-us {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: end;
}

.contact-us .btn-contact-us {
    background-color: #4AB96914;
    color: #24282C;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 16px;
}

@media (max-width: 680px) {
    .contact-us {
        display: block;
    }

    .contact-us .btn-contact-us {
        display: block;
        background-color: #F3F3F3;
        color: #24282C;
        padding: 6px 6px;
        margin-top: 8px;
    }

    .header-collapse {
        height: auto !important;
    }

    .contact-us .btn-contact-us {
        text-align: center;
        width: 100%;
    }

}

/* Slider */
.slider {
    border-radius: 18px;
    box-shadow: 0px 6px 25px #00000029;
    overflow: inherit;
    width: 90%;
    margin: 0 auto;
}

.slider img {
    border-radius: 18px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: flex;
    width: 50px;
    height: 50px;
    background: #F9C21E no-repeat center center;
    background-size: 100% 100%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.carousel-control-next-icon:after {
    content: '\203A';
    font-size: 40px;
    color: #FFF;
    margin-top: -6px;
}

.carousel-control-prev-icon:after {
    content: '\2039';
    font-size: 40px;
    color: #FFF;
    margin-top: -6px;
}

.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    justify-content: end;
    right: -80px;
}

.carousel-control-prev {
    left: -80px;
    justify-content: start;
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
    margin-left: 8px;
    margin-right: 8px;
    background-color: rgba(255,255,255);
}

.carousel-indicators .active {
    background-color: #F9C21E;
    width: 30px;
    border-radius: 20px;
}

@media (max-width: 680px) {
    .carousel-control-next {
        right: 0;
    }

    .carousel-control-next-icon, .carousel-control-prev-icon {
        display: none;
    }

    .slider {
        border-radius: 12px;
        box-shadow: 0px 6px 25px #00000029;
        overflow: inherit;
        width: 100%;
        margin: 0 auto;
    }

    .slider img {
        border-radius: 12px;
        /* height: 200px; */
        /* object-fit: cover; */
    }

    .carousel-indicators {
        bottom: -40px;
    }

    .carousel-indicators li {
        margin-left: 4px;
        margin-right: 4px;
    }
}

/* Preview Product */
.preview-product {
    margin-top: 150px;
    min-height: 500px;
}

.preview-product .mt-minus {
    margin-top: -120px;
}

.preview-product-banner img {
    height: 529px;
    object-fit: cover;
}

.product-content {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 820px) {
    .preview-product {
        margin-top: 30px;
        min-height: 580px;
    }

    .preview-product-banner img {
        height: 400px;
    }

    .preview-product .mt-minus {
        margin-top: 0px;
    }

    .list-product-preview .mt-minus {
        margin-top: 0px !important;
    }
}

@media (max-width: 680px) {
    .preview-product .mt-minus {
        margin-top: -100px;
    }

    .list-product-preview .mt-minus {
        margin-top: 0px !important;
    }

    .preview-product {
        margin-top: 150px;
        min-height: 580px;
    }

    .preview-product-banner img {
        height: 300px;
    }
}

/* Services Banner */
.service-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 620px;
}

.service-banner img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.service-banner .service-content {
    position: absolute;
    display: flex;
    width: 100%;
    top: 0;
    height: 620px;
    right: 0;
}

.service-content .gradient {
    width: 50%;
    height: 620px;
    background: transparent linear-gradient(90deg, #F3F3F300 0%, #F3F3F301 5%, #F3F3F301 16%, var(--white) 100%) 0% 0% no-repeat padding-box;
}

.service-banner.general .service-content .content {
    margin: auto 0;
    height: 400px;
}

.service-banner.general, .service-banner.general img, .service-banner.general .service-content, .service-banner.general .gradient {
    height: 400px;
}

.service-content .content {
    width: 50%;
    padding: 70px 0;
}

.service-content ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #161616;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-content .content .title {
    padding-right: 70px;
}

@media (max-width: 820px) {
    .service-banner .service-content, .service-banner, .service-banner img, .service-content .gradient, .service-content .content {
        height: 700px;
    }

    .service-banner.general, .service-banner.general img, .service-banner.general .service-content, .service-banner.general .gradient {
        height: 400px;
    }

    .service-content .content .title {
        padding-right: 0 !important;
    }
}

@media (max-width: 680px) {
    .service-content .gradient {
        display: none;
    }

    .service-content .content {
        width: 100%;
        padding: 12px 24px;
    }

    .service-content ul li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        color: #161616;
        font-size: .9rem;
        font-weight: 600;
    }

    .service-content ul li span {
        width: 90%;
    }

    .service-content ul li svg {
        width: 25px;
    }

    .service-banner.general, .service-banner.general img, .service-banner.general .service-content, .service-banner.general .gradient {
        height: 250px;
    }

    .service-banner .service-content, .service-banner, .service-banner img, .service-content .gradient, .service-content .content {
        height: 600px;
    }

    .service-content .content .title {
        padding-right: 0 !important;
    }
}

/* Partner Container */
.partner-container img {
    height: 150px;
}

@media (max-width: 680px) {
    .partner-container img {
        height: auto;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Testimoni */
.testimoni-top {
    height: 450px;
}

.testimoni-bottom {
    height: 280px;
    margin-bottom: 60px;
    position: relative;
}

.testimoni-container {
    position: absolute;
    top: -60%;
    left: 0;
    width: 100%;
}

.list-testimoni {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}

.testimoni-item {
    /* max-width: 230px; */
    /* margin-top: -19%; */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    /* transition: 250ms all ease-in-out; */
}

.testimoni-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    transition: 250ms all ease-in-out;
}

.testimoni-item .testimoni-content {
    padding: 12px;
    background-color: #fff;
    margin-top: -30px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    text-align: center;
    min-height: 150px;
}

/* .testimoni-item.active, .testimoni-item:hover {
    margin-top: -19%;
    margin-bottom: 40px;
    max-width: 300px;
} */

/* .testimoni-item.active img, .testimoni-item:hover img {
    height: 350px;
} */

.testimoni-item .testimoni-content h6 {
    display: block;
    /* max vertical line */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    /* vertical line */
}

.testimoni-item .testimoni-content p {
    /* disable ellipsis */
    display: block;
    word-wrap: break-word;
    white-space: normal;
}

/* .testimoni-item.active .testimoni-content h6 {
    display: block;
} */

/* table resolution */
@media (max-width: 830px) {
    .testimoni-top {
        height: 450px;
    }

    /* .testimoni-item.active, .testimoni-item:hover {
        margin-top: 0;
        margin-bottom: 0;
        max-width: 50%;
    } */

    .testimoni-bottom {
        height: 200px;
        margin-bottom: 60px;
    }

    .testimoni-item.active img, .testimoni-item:hover img {
        height: 230px !important;
    }

    .testimoni-item .testimoni-content {
        width: 100%;
    }

    .testimoni-item .testimoni-content h6 {
        display: block;
        word-wrap: break-word;
        white-space: normal;
    }

    .testimoni-item .testimoni-content h6 {
        display: block;
        /* max vertical line */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        -webkit-box-orient: vertical;
        /* vertical line */
    }

    .testimoni-item:hover .testimoni-content h6 {
        /* disable ellipsis */
        display: block;
        word-wrap: break-word;
        white-space: normal;
    }

    .testimoni-item .testimoni-content p {
        /* disable ellipsis */
        display: block;
        word-wrap: break-word;
        white-space: normal;
    }

    .list-testimoni {
        display: inline-block;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        margin-top: -30%;
    }

    .testimoni-container {
        position: absolute;
        top: -20%;
        left: 0;
        width: 100%;
    }

    .testimoni-item .testimoni-content {
        display: block;
        padding: 12px;
        background-color: #fff;
        margin-top: 0;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        text-align: center;
    }

    .testimoni-item.active img, .testimoni-item:hover img, .testimoni-item img {
        height: 230px;
    }

}

@media (max-width: 680px) {
    .testimoni-top {
        height: 280px;
    }

    .testimoni-item.active, .testimoni-item:hover, .testimoni-item {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    .testimoni-item .testimoni-content p {
        /* disable ellipsis */
        display: block;
        word-wrap: break-word;
        white-space: normal;
    }

    /* .testimoni-item.active, .testimoni-item:hover {
        margin-top: -19%;
        margin-bottom: 40px;
        max-width: 300px;
    } */

    .testimoni-container {
        position: absolute;
        top: 20%;
        left: 0;
        width: 100%;
    }

    .testimoni-bottom {
        height: 340px;
        margin-bottom: 60px;
    }

    .testimoni-item.active img, .testimoni-item:hover img, .testimoni-item img {
        height: 230px !important;
    }

    .testimoni-item .testimoni-content {
        width: 100%;
    }

    .testimoni-item .testimoni-content h6, .testimoni-item .testimoni-content p {
        display: block;
        word-wrap: break-word;
        white-space: normal;
    }

    .list-testimoni {
        display: inline-block;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        margin-top: -35%;
    }

    .testimoni-item {
        display: inline-block;
        max-width: 100%;
    }

    .testimoni-item .testimoni-content {
        display: block;
        padding: 12px;
        background-color: #fff;
        margin-top: 0;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        text-align: center;
    }
}

/* Social Media Footer */
.social-media-footer {
    gap: 10px;
}

.social-media-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E5E5E5;
    color: #5D5D5D;
    margin-right: 10px;
}

/* Category Sidebar */
.category-collapse {
    background-color: #E5E5E550;
    width: 100%;
}

.category-collapse .category-collapse-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-collapse .category-collapse-button button {
    background-color: #F9C21E;
    padding: 12px 24px;
    color: #24282C;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    cursor: pointer;
}

.category-collapse .category-collapse-button button.collapsed {
    background-color: transparent;
}

.category-collapse .category-collapse-button button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: .9rem;
    color: #24282C;
}

.category-collapse .category-collapse-button button.collapsed::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: .9rem;
    color: #24282C;
}

.category-collapse .category-collapse-body {
    padding: 12px 24px;
}

.category-collapse .category-collapse-body ul {
    list-style: none;
    padding: 0;
}

.category-collapse .category-collapse-body ul li {
    margin-bottom: 12px;
    font-size: .9rem;
    font-weight: 600;
    color: #24282C;
}

.category-collapse .category-collapse-body ul li a {
    color: #24282C;
    text-decoration: none;
}

.category-collapse .category-collapse-body ul li.active a, .category-collapse .category-collapse-body ul li a:hover {
    color: #FFAA00;
}

/* Accordion 2 */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #FCFCFC;
    color: #24282C;
    font-weight: 700;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active, .accordion:hover, .accordion:focus {
    background-color: #F9C21E;
    color: #24282C;
    outline: none;
    border: none;
}

.panel {
    padding: 0 12px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f054'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #24282C;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f078"; /* Unicode character for "minus" sign (-) */
}

.panel p a {
    color: #24282C;
    text-decoration: none;
}

.panel p.active a, .panel p:hover a {
    color: #F9C21E;
    font-weight: 700;
}

/* Search */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #fff;
}

.search-container input {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: #545454;
    background-color: #fff;
}

.search-container input::placeholder {
    color: #545454;
}

/* Paginate */
.paginate ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: end;
    padding: 0;
}

.paginate ul li {
    cursor: pointer;
    border-radius: 4px;
    list-style: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9C21E;
}

.paginate ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.paginate ul li.active, .paginate ul li:hover {
    background-color: #fff;
}

.paginate ul li.active a, .paginate ul li:hover a {
    color: #000;
}

.paginate ul li.active {
    background-color: #fff;
}

.paginate ul li.active a {
    color: #000;
}

/* responsive width */
/* .w-res-25 {
    width: 25%;
} */

.w-res-33 {
    width: 33.33333333333333%;
}

.w-res-50 {
    width: 50%;
}

@media (max-width: 680px) {
    .w-res-25 {
        width: 100%;
    }

    .w-res-33 {
        width: 100%;
    }

    .w-res-50 {
        width: 100%;
    }

    .paginate ul {
        justify-content: center;
    }
}

/* nav-line */
.nav.nav-tabs.nav-line {
    border-bottom: 2px solid #E5E5E5 !important;
}

.nav.nav-tabs.nav-line .nav-item.show .nav-link, .nav.nav-tabs.nav-line .nav-link.active, .nav.nav-tabs.nav-line .nav-link:hover {
    background-color: transparent !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #F9C21E !important;
    color: #2D2D2D !important;
    font-weight: 700;
}

/* Portfolio */
.portfolio-img-1 img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.portfolio-img-2 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 20px;
}

.portfolio-img-3 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 20px;
}

.portfolio-img-4 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 680px) {
    .portfolio-img-1 img, .portfolio-img-2 img, .portfolio-img-3 img, .portfolio-img-4 img {
        height: 250px;
    }
}

/* Blog */
.banner-blog-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.banner-blog-content {
    background-color: #FFF;
    box-shadow: 12px 14px 32px #00000014;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.banner-blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 680px) {
    .banner-blog-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        overflow: hidden;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .banner-blog-content {
        background-color: #FFF;
        box-shadow: 12px 14px 32px #00000014;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0px;
    }

    .banner-blog-desc {
        -webkit-line-clamp: 3;
    }
}

.company-profile-img-1 img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.company-profile-img-2 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

@media (max-width: 680px) {
    .company-profile-img-1 img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .company-profile-img-2 img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 10px;
    }
}

.modal-xl {
    max-width: 70% !important;
}

@media (max-width: 820px) {
    .modal-xl {
        max-width: 100% !important;
    }
}

@media (max-width: 680px) {
    .modal-xl {
        max-width: 100% !important;
    }
}


/* Modal Start Project */
.modal-start-project {
    background-color: #F3F3F3;
    border-radius: 10px;
    overflow: hidden;
}

.modal-start-project-bg {
    background-image: url(https://via.placeholder.com/200x400);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Form Control */
input.form-control, textarea.form-control {
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #545454;
    font-family: 'Poppins', sans-serif;
    padding: 12px 20px;
}

input.form-control::placeholder, textarea.form-control::placeholder {
    color: #C1C1C1;
    font-family: 'Poppins', sans-serif;
}

select.form-control {
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #545454;
    font-family: 'Poppins', sans-serif;
    /* padding: 12px 20px; */
}

.package-item {
    border: 2px solid #F9C21E;
    border-radius: 10px;
}

.package-item h4 {
    color: #000;
    font-weight: 700;
}

.package-item h4 span {
    background-color: #FFE7B7;
    color: #E69900;
    font-size: 14px;
    padding: 8px;
    border-radius: 20px;
}

.package-item hr {
    border-top: 2px solid #F9C21E;
}

.package-item:hover {
    box-shadow: 0px 15px 15px #00000029;
}

@media (max-width: 680px) {
    .package-item h5 {
        font-size: 14px;
    }

    .package-item h4 {
        font-size: 18px;
        line-height: 1.5;
    }

    .package-item h4 span {
        font-size: 12px;
    }
}
