@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&family=Satisfy&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --primary: #0065f8;
    --secondary: #01c676;
    --light: #ffffff;
    --light-blue: #eef4ff;
    --dark: #000000;
    --gradiant-blue: linear-gradient(
        180deg,
        #45b8ee 0%,
        #1f87f7 60%,
        #0b5bef 100%
    );
    --font-sunflower: "Sunflower", sans-serif;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Ongkir
--------------------------------------------------------------*/
.service .header-title h3::before {
    background: var(--light);
}
.service .container-1558 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 7rem;
    padding-bottom: 14rem;
}

.service .border-fade-box {
    background: transparent;
    border: 3px solid transparent;

    border-image: linear-gradient(
            to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.7) 40%,
            rgba(255, 255, 255, 0.3) 70%,
            rgba(255, 255, 255, 0) 100%
        )
        1;
    padding: 1.5rem 5rem 1.5rem 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.benefits .header-title h3 {
    color: var(--dark);
}

.benefits .card-box .card-icon {
    flex: 0 0 auto;
    width: 10%;
    font-size: 2rem;
    color: var(--secondary);
    text-align: center;
}
.benefits .card-box .card-content {
    flex: 0 0 auto;
    width: 90%;
}

.faq .accordion-item {
    padding: 1rem;
    border: 1px solid var(--dark);
    border-radius: 20px;
    background: transparent;
    margin-bottom: 2rem;
}

/* .faq .faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */

.faq .faq-accordion .accordion-button {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    padding: 0;
    box-shadow: none;
}

.faq .faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq .faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--light);
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
}

.faq .faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
}

.faq .accordion-collapse {
    position: relative;
}
.faq .accordion-collapse::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--dark);
    transition: 0.1s;
}

.faq .accordion-collapse.show::before {
    width: 100%;
}

.faq .faq-accordion .accordion-body {
    color: var(--dark);
    padding: 1rem 3rem 1rem 0;
}

@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1200px) {
}

@media only screen and (max-width: 600px) {
}
