html.scroll-snap {
    scroll-snap-type: y proximity;
}

/* START : Setup */
.ld__cage {
    width: 100%;
    max-width: 1120px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
}

.ld--h2 {
    font-size: 24px;
    line-height: 32px;
}
.ld--h3 {
    font-size: 20px;
    line-height: 32px;
}
.ld--h4 {
    font-size: 18px;
    line-height: 28px;
}
.ld--h5 {
    font-size: 18px;
    line-height: 28px;
}
.ld--p {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 744px) {
    .ld--h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .ld--h3 {
        font-size: 26px;
        line-height: 38px;
    }
    .ld--h4 {
        font-size: 24px;
        line-height: 32px;
    }
    .ld--h5 {
        font-size: 22px;
        line-height: 34px;
    }
    .ld--p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 1440px) {
    .ld--h2 {
        font-size: 40px;
        line-height: 48px;
    }    
    .ld--h3 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 360px) {
    .ld--h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .ld--h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .ld--h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .ld--h5 {
        font-size: 16px;
        line-height: 24px;
    }
    .ld--p {
        font-size: 14px;
        line-height: 22px;
    }
}
/* END : Setup */


/* START : Changing Text */
.ld__changing-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    transition-duration: 0.3s;
    transition-property: transform, opacity;
}
.ld__changing-text.hide {
    transform: translateY(12px);
}
.ld__changing-text.hiding {
    opacity: 1;
}
.ld__changing-text.show {
    transform: translateY(0px);
    opacity: 1;
}
/* END : Changing Text */


/* START : Good Choice */
.ld__goodChoice {
    padding: 40px 24px;
}
.ld__goodChoice .ld__cage {
    gap: 24px;
}

.ld__goodChoice .ld__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ld__goodChoice .ld__header h2 {
    text-align: center;
}
.ld__goodChoice .ld__header p {
    text-align: center;
}

.ld__goodChoice--items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.ld__goodChoice--item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0px;
}

.ld__goodChoice--item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0px auto;
}
.ld__goodChoice--item-icon img {
    display: block;
    width: 100%;
    height: 100%;    
}

.ld__goodChoice--item h4 {
    text-align: center;
}
.ld__goodChoice--item p {
    color: var(--neutral-90);
    text-align: center;
}

@media (min-width: 744px) {
    .ld__goodChoice {
        padding: 60px 48px;
    }

    .ld__goodChoice--items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1440px) {
    .ld__goodChoice {
        padding: 80px 48px;
    }

    .ld__goodChoice .ld__cage {
        gap: 40px;
    }

    .ld__goodChoice--items {
        grid-template-columns: repeat(4, 1fr);
    }

    .ld__goodChoice--item {
        gap: 16px;
    }
    .ld__goodChoice--item-icon {
        margin: 0px;
    }
    .ld__goodChoice--item h4 {
        text-align: left;
    }
    .ld__goodChoice--item p {
        text-align: left;
    }
}
/* END : Good Choice */


/* START : Everything You Need */
.ld__everythingYouNeed {
    padding: 40px 24px;
}

@media (max-width: 744px) {
    #homePage .ld__everythingYouNeed {
        padding: 80px 24px 40px;
    }
}

.ld__everythingYouNeed .ld__cage {
    gap: 24px;
}

.ld__everythingYouNeed .ld__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ld__everythingYouNeed .ld__header h2 {
    text-align: center;
}
.ld__everythingYouNeed .ld__header p {
    text-align: center;
}

.ld__everythingYouNeed .ld__content {

}

.you-need--content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* left */
.you-need--left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.you-need--left h2 {
    display: none;
    font-size: 40px;        /* custom font-size */
    line-height: 48px;      /* custom line-height */
}
.you-need--left-header .ld--p {
    display: none;
}
.you-need--left > .kat__button {
    display: none;
}

/* left header */
.you-need--left-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* right */
.you-need--right {
    display: none;
    width: 100%;
}

/* items */
.you-need--items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.you-need--item {
    
}

.you-need--item .caption {
    border-radius: 16px;
    transition: 
            padding .25s ease-in-out,
            border .25s ease-in-out,
            background-color .25s ease-in-out;
}
.you-need--item .caption .you-need--item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .25s ease-in-out;
}
.you-need--item .caption .you-need--item-btn > i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    transition: transform .25s ease-in-out;
}

.you-need--item .caption .you-need--item-btn.active {
    border: 1px solid var(--neutral-100);
    background-color: #FDEAEE;
}
.you-need--item .caption .you-need--item-btn.active > i {
    transform: rotate(-45deg);
}

.you-need--item .caption p {
    color: var(--neutral-90);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
            max-height .3s ease-in-out,
            opacity .3s ease-in-out,
            margin-top .3s ease-in-out;
}
.you-need--item.active .caption p {
    opacity: 1;
    max-height: none;
    margin-top: 16px;
}

.you-need--item .preview {
    padding: 0px;
    border: 1px solid transparent;
    border-radius: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
            padding .3s ease-in-out, 
            border .3s ease-in-out, 
            max-height .3s ease-in-out, 
            opacity .3s ease-in-out, 
            margin-top .3s ease-in-out;
}
.you-need--item .preview img {
    display: block;
    width: 100%;
    height: auto;
}

.you-need--item.active .preview {
    padding: 12px;
    border: 1px solid var(--neutral-100);
    opacity: 1;
    max-height: none;
    margin-top: 16px;
}

/* slide */
.you-need--slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.you-need--slide-item {
    display: flex;
    padding: 24px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 80px;
    border-radius: 24px;
    border: 1px solid var(--neutral-100);
    opacity: .2;
    transition: opacity .25s ease-in-out;
}
.you-need--slide-item.visible {
    opacity: 1;
}
.you-need--slide-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* footer */
.ld__everythingYouNeed .ld__footer {
    display: flex;
}

@media (max-width: 960px) {
    .ld__everythingYouNeed .ld__header h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 414px) {
    #homePage .ld__everythingYouNeed .ld__header p {
        font-size: 17px;
    }
}


@media (min-width: 744px) {
    .ld__everythingYouNeed {
        padding: 60px 48px;
    }

    .ld__everythingYouNeed .ld__header h2 {
        text-align: left;
    }
    .ld__everythingYouNeed .ld__header p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .ld__everythingYouNeed {
        padding: 80px 48px;
    }

    .ld__everythingYouNeed .ld__cage {
        gap: 0px;
    }

    .ld__everythingYouNeed .ld__header h2 {
        display: none;
    }
    .ld__everythingYouNeed .ld__header p {
        display: none;
    }

    .you-need--left h2 {
        display: block;
    }
    .you-need--left-header .ld--p {
        display: block;
    }
    .you-need--left > .kat__button {
        display: flex;
    }

    .you-need--left {
        position: sticky;
        position: -webkit-sticky;
        top: 80px;
    }

    .you-need--right {
        display: block;
    }

    .you-need--items {
        gap: 12px;
    }

    .you-need--item .caption {
        padding: 12px 24px;
        border: 1px solid transparent;
    }
    .you-need--item.active .caption {
        padding: 24px;
        border: 1px solid var(--neutral-100);
        background-color: #FDEAEE;
    }
    .you-need--item .caption .you-need--item-btn {
        padding: 0px;
    }
    .you-need--item .caption .you-need--item-btn.active {
        border: 1px solid transparent;
        background-color: inherit;
    }
    .you-need--item .caption p {
        padding-right: 36px;
    }
    .you-need--item.active .caption p {
        margin-top: 8px;
    }

    .you-need--item .preview,
    .you-need--item.active .preview {
        display: none;
    }

    .ld__everythingYouNeed .ld__footer {
        display: none;
    }
}
/* END : Everything You Need */


/* START : Custom Design As You Like */
.customDesignAsYouLike {
    padding: 40px 24px;
    background-color: var(--secondary-clr);
}

.customDesignAsYouLike .ld__cage {
    gap: 24px;
}

.customDesignAsYouLike .ld__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.customDesignAsYouLike .ld__header h2 {
    text-align: center;
}
.customDesignAsYouLike .ld__header p {
    text-align: center;
}

.customDesignAsYouLike--banner {
    position: relative;
    padding: 32px 0px 12px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--neutral-100);
}
.customDesignAsYouLike--banner::before {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--neutral-100-rgb), .7);
}

.customDesignAsYouLike--banner-typo {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.customDesignAsYouLike--banner-typo > [data-aos] {
    width: 100%;
    height: 100%;
}
.customDesignAsYouLike--banner-typo img {
    display: block;
    width: 100%;
    height: 100%;
}

.customDesignAsYouLike--banner-list {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    transform: translate(30%, -16%);
}
.customDesignAsYouLike--banner-list [data-aos] {
    width: 100%;
    height: 100%;
}
.customDesignAsYouLike--banner-list img {
    display: block;
    width: 80%;
}

.customDesignAsYouLike--banner-mockup {
    position: relative;
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
    z-index: 4;
}
.customDesignAsYouLike--banner-mockup img {
    display: block;
    width: 100%;
}

.customDesignAsYouLike .ld__footer {
    display: flex;
    justify-content: center;
}

@media (min-width: 744px) {
    .customDesignAsYouLike {
        padding: 60px 48px;
    }
}

@media (min-width: 1440px) {
    .customDesignAsYouLike {
        padding: 80px 48px;
    }

    .customDesignAsYouLike .ld__cage {
        gap: 40px;
    }

    .customDesignAsYouLike--banner {
        padding: 48px 0px 0px;
    }
}

/* END : Custom Design As You Like */


/* START : Trust Stats */
.trustStats {
    padding: 40px 24px;
}

.trustStats .ld__cage {
    gap: 24px;
}

.trustStats .ld__header h2 {
    text-align: center;
}

.trustStats--items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.trustStats--item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    align-items: center;
    justify-content: center;
}
.trustStats--item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0px auto;
}
.trustStats--item-icon img {
    display: block;
    width: 100%;
    height: 100%;
}
.trustStats--item p {
    text-align: center;
    color: var(--neutral-90);
}

.trustStats .ld__footer {
    display: flex;
    justify-content: center;
}

@media (min-width: 744px) {
    .trustStats {
        padding: 60px 48px;
    }
    
    .trustStats--items {
        flex-direction: initial;
    }
    .trustStats--item {
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .trustStats .ld__cage {
        gap: 40px;
    }
}
/* END : Trust Stats */


/* START : Jelajahi Fitur */
.ld__exploreFeature {
    
}

.ld__exploreFeature .ld__cage {
    max-width: none;
}

.ld__exploreFeature .ld__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 24px 24px;
}
.ld__exploreFeature .ld__header h2 {
    text-align: center;
}
.ld__exploreFeature .ld__header p {
    text-align: center;
}

@media (max-width: 744px) and (min-width: 360px) {
    #homePage .ld__exploreFeature .ld__header h2 {
        font-size: 32px;
        line-height: 40px;
    }
    #homePage .ld__exploreFeature .ld__header p {
        font-size: 20px;
        line-height: 28px;
    }
}

.ld__exploreFeature .ld__content { 
    position: relative;
    background-color: var(--bg-main);
}
.ld__exploreFeature .ld__content::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--secondary-clr);
}

.explore-feature--content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1120px;
    margin: 0px auto;
}

.explore-feature--slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
}
.explore-feature--slide-item {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.35s ease-in-out;
}
.explore-feature--slide-item.visible {
    opacity: 1;
}
.explore-feature--slide-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.explore-feature--items {
    width: 100%;
}
.explore-feature--item {
    display: flex;
    flex-direction: column;
}
.explore-feature--item .preview {
    background-color: var(--secondary-clr);
    padding: 40px 24px;
}
.explore-feature--item .preview img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.explore-feature--item .caption {
    display: flex;    
    flex-direction: column;
    gap: 12px;
    padding: 40px 24px;
}

@media (max-width: 744px) {
    #homePage .explore-feature--item:last-of-type .caption {
        padding: 40px 24px 80px;
    }
}

@media (min-width: 744px) {
    .ld__exploreFeature .ld__header {
        padding: 60px 0px 40px;
    }
    
    .ld__exploreFeature .ld__content::before {
        content: '';
    }
    
    .explore-feature--content {
        padding: 0px 24px;
    }
    
    .explore-feature--slide {
        display: block;
        position: sticky;
        position: -webkit-sticky;
        top: 0px;
    }
    
    .explore-feature--item {
        min-height: 100vh;
    }
    .explore-feature--item .preview {
        display: none;
    }
    .explore-feature--item .caption {
        margin: auto;
    }
}

@media (min-width: 1440px) {
    .explore-feature--content {
        padding: 0px;
    }
    .explore-feature--slide-item {
        left: 0;
        right: 80px;
    }
    .explore-feature--item .caption {
        padding: 40px 0px 40px 80px;
    }
}
/* END : Jelajahi Fitur */


/* START : Change Design */
.ld__changeDesign {
    padding: 40px 24px;
}

.ld__changeDesign .ld__cage {
    gap: 24px;
}

.ld__changeDesign .ld__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ld__changeDesign .ld__header h2 {
    text-align: center;
}
.ld__changeDesign .ld__header p {
    text-align: center;
}

.change-design--items {
    position: relative;
    max-width: 500px;
    margin: 0px auto;
}
.change-design--item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.change-design--item:nth-child(1) {
    animation: various-design 5000ms infinite 0ms;
    -o-animation: various-design 5000ms infinite 0ms;
    -moz-animation: various-design 5000ms infinite 0ms;
    -webkit-animation: various-design 5000ms infinite 0ms;
}
.change-design--item:nth-child(2) {
    animation: various-design 5000ms infinite 1250ms;
    -o-animation: various-design 5000ms infinite 1250ms;
    -moz-animation: various-design 5000ms infinite 1250ms;
    -webkit-animation: various-design 5000ms infinite 1250ms;
}
.change-design--item:nth-child(3) {
    animation: various-design 5000ms infinite 2500ms;
    -o-animation: various-design 5000ms infinite 2500ms;
    -moz-animation: various-design 5000ms infinite 2500ms;
    -webkit-animation: various-design 5000ms infinite 2500ms;
}
.change-design--item:nth-child(4) {
    animation: various-design 5000ms infinite 3750ms;
    -o-animation: various-design 5000ms infinite 3750ms;
    -moz-animation: various-design 5000ms infinite 3750ms;
    -webkit-animation: various-design 5000ms infinite 3750ms;
}
.change-design--item:last-child {
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    height: auto;
    opacity: 0;
    pointer-events: none;
}

.change-design--item img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 744px) {
    .ld__changeDesign {
        padding: 60px 48px;
    }

    .ld__changeDesign .ld__cage {
        display: flex;
        flex-direction: initial;
        align-items: center;
        gap: 24px;
    }

    .ld__changeDesign .ld__header {
        align-items: flex-start;
    }
    .ld__changeDesign .ld__header h2 {
        text-align: left;
    }
    .ld__changeDesign .ld__header p {
        text-align: left;
    }

    .change-design--items {
        max-width: none;
        margin: 0px;
    }
}

@media (min-width: 1440px) {
    .ld__changeDesign {
        padding: 80px 48px;
    }

    .ld__changeDesign .ld__cage {
        gap: 40px;
    }

    .ld__changeDesign .ld__header {
        gap: 24px;
    }
}
/* END : Change Design */


/* START : Sending Steps */
.sendingSteps {
    padding: 40px 0px;
}

.sendingSteps .ld__header {
    padding: 0px 24px 24px;
}
.sendingSteps .ld__header h2 {
    text-align: center;
}
.sendingSteps .ld__header h2 .br {
    display: block;
}

.sendingSteps--content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0px 24px;
    max-width: 560px;
    margin: 0px auto;
}

.sendingSteps--step {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.sendingSteps--step::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 100%;
    width: 2px;
    height: 20px;
    margin-top: 2px;
    background-color: var(--neutral-30);
}
.sendingSteps--step:last-of-type::before {
    content: none;
}

.sendingSteps--stepNum {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    overflow: hidden;
    background: #FDF6DB;
}

.sendingSteps--stepCaption {
    
}
.sendingSteps--stepCaption p {
    color: var(--neutral-90);
}

@media (min-width: 744px) {
    .sendingSteps--content {
        max-width: none;
    }

    .sendingSteps .ld__header {
        padding: 0px 48px 60px;
    }
    .sendingSteps .ld__header h2 .br {
        display: initial;
    }

    .sendingSteps--content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 0px 48px;
    }

    .sendingSteps--step {
        flex-direction: column;
        gap: 16px;
    }
    .sendingSteps--step::before {
        left: 50%;
        top: 21px;
        width: calc(100% - 44px);
        height: 2px;
        margin-top: 0px;
        margin-left: 33px;
    }

    .sendingSteps--stepCaption p {
        text-align: center;
    }
}

@media (min-width: 1440px) {
    .sendingSteps {
        padding: 80px 0px;
    }

    .sendingSteps--step::before {
        left: 50%;
        top: 31px;
        width: calc(100% - 64px);
        margin-left: 42.6px;
    }

    .sendingSteps--stepNum {
        width: 64px;
        height: 64px;
    }
}
/* END : Sending Steps */


/* START : Delivery Status */
.delivStatus {
    padding: 40px 24px;
}

.delivStatus .ld__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0px 0px 24px;
}
.delivStatus .ld__header h2 {
    text-align: center;
}
.delivStatus .ld__header p {
    text-align: center;
}

.delivStatus--cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.delivStatus--card {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--neutral-80);
    background-color: var(--neutral-10);
    overflow: hidden;
}
.delivStatus--card .headband {
    height: 16px;
    background-color: var(--neutral-40);
}
.delivStatus--card .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 16px 16px;
}
.delivStatus--card .caption span {
    padding: 4px 8px;
    border-radius: 25px;
    min-width: 78px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--neutral-60);
    border: 1px solid var(--neutral-60);
    background-color: var(--neutral-30);
    overflow: hidden;
}
.delivStatus--card .caption p {
    color: var(--neutral-90);
    font-size: 16px;
    line-height: 24px;
}

.delivStatus--card.pending {
    border: 1px solid var(--neutral-90);
}
.delivStatus--card.pending .headband {
    background-color: var(--neutral-60);
}
.delivStatus--card.pending .caption span {
    color: var(--neutral-90);
    border: 1px solid var(--neutral-90);
    background-color: var(--neutral-30);
}

.delivStatus--card.invited {
    border: 1px solid #EEE1AC;
}
.delivStatus--card.invited .headband {
    background-color: #F9F5E3;
}
.delivStatus--card.invited .caption span {
    color: #777056;
    border: 1px solid #EEE1AC;
    background-color: #F9F5E3;
}

.delivStatus--card.failed {
    border: 1px solid #EEB4B0;
}
.delivStatus--card.failed .headband {
    background-color: #F5D8D6;
}
.delivStatus--card.failed .caption span {
    color: #CB3A31;
    border: 1px solid #EEB4B0;
    background-color: #F5D8D6;
}

.delivStatus--card.read {
    border: 1px solid #005759;
}
.delivStatus--card.read .headband {
    background-color: #AAC7C8;
}
.delivStatus--card.read .caption span {
    color: #20573D;
    border: 1px solid #005759;
    background-color: #AAC7C8;
}

.delivStatus--card.opened {
    border: 1px solid #B8DBCA;
}
.delivStatus--card.opened .headband {
    background-color: #F7F7F7;
}
.delivStatus--card.opened .caption span {
    color: #337D59;
    border: 1px solid #B8DBCA;
    background-color: #F7F7F7;
}

.delivStatus--card.going {
    border: 1px solid #B1C5F6;
}
.delivStatus--card.going .headband {
    background-color: #F0F3FF;
}
.delivStatus--card.going .caption span {
    color: #3267E3;
    border: 1px solid #B1C5F6;
    background-color: #F0F3FF;
}

.delivStatus--card.not-going {
    border: 1px solid #EECEB0;
}
.delivStatus--card.not-going .headband {
    background-color: #F9EFE5;
}
.delivStatus--card.not-going .caption span {
    color: #9F8975;
    border: 1px solid #EECEB0;
    background-color: #F9EFE5;
}

@media (min-width: 375px) {
    .delivStatus--card {
        width: 150px;
    }
}

@media (min-width: 400px) {
    .delivStatus--card {
        width: 160px;
    }
}

@media (min-width: 744px) {
    .delivStatus {
        padding: 40px 48px;
    }
    .delivStatus--card .caption span {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 920px) {
    .delivStatus--cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .delivStatus--card {
        width: initial;
    }
}

@media (min-width: 1440px) {
    .delivStatus {
        padding: 80px 48px;
    }

    .delivStatus .ld__header {
        padding: 0px 0px 60px;
    }
    
    .delivStatus--cards {
        gap: 24px;
    }
}

@media (max-width: 360px) {
    .delivStatus--card .caption {
        padding: 12px 16px 16px;
    }
    .delivStatus--card .caption span {
        padding: 2px 8px;
        font-size: 12px;
        line-height: 20px;
    }
    .delivStatus--card .caption p {
        font-size: 12px;
        line-height: 20px;
    }
}
/* END : Delivery Status */


/* START : Estimate Yours */
.ld__estimateYours {
    background-color: var(--secondary-clr);
    padding: 40px 24px 0px;
    overflow: hidden;
}

.ld__estimateYours .ld__cage {
    gap: 24px;
}

.ld__estimateYours .ld__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ld__estimateYours .ld__header h2 {
    text-align: center;
}
.ld__estimateYours .ld__header p {
    text-align: center;
}

.ld__estimateYours .ld__content {

}

.estimateYours--banner {
    position: relative;
    width: 90%;
    max-width: 640px;
    margin: 0px auto;
}
.estimateYours--banner img {
    position: relative;
    display: block;
    width: 100%;
}

.estimateYours--moon {
    position: absolute;
    width: 80%;
    top: 15%;
    left: 75%;
    margin-top: 5%;
    margin-left: -7%;
    transform: rotate(0deg);
    aspect-ratio: 1 / 1;
    border-radius: 1120px;
    opacity: 0;
    background: linear-gradient(180deg, #FDF6DB 0%, rgba(243, 210, 76, 0.51) 100%);
    transition: opacity .2s ease-in-out;
}
.estimateYours--banner.visible .estimateYours--moon {
    opacity: 1;
}

.estimateYours--banner::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 50%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(244, 210, 76, 0.00) 0%, rgba(244, 210, 76, 0.40) 100%);
}

@media (min-width: 744px) {
    .ld__estimateYours {
        padding: 60px 48px 0px;
    }

    .ld__estimateYours .ld__cage {
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .estimateYours--banner {
        max-width: 1120px;
    }
}

@media (min-width: 1440px) {
    .ld__estimateYours {
        padding: 80px 48px 0px;
    }

    .ld__estimateYours .ld__header {
        gap: 24px;
    }
}
/* END : Estimate Yours */


/* START : Testi */
.ld__testi {
    padding: 40px 24px;
}
.ld__testi .ld__cage {
    gap: 24px;
}

.ld__testi .ld__header {

}
.ld__testi .ld__header h2 {
    text-align: center;
}

.ld__testi .ld__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi--sliders {
    margin: -24px;
}
.testi--slider-item {
    padding: 24px;
}

.testi-slider {
    border-radius: 16px;
    background: var(--Neutral-10);
    box-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.10);
    padding: 32px 24px;
    display: flex;
    gap: 24px;
}

.testi-slider--header {
    
}
.testi-slider--header img {
    display: block;
    width: 32px;
}

.testi-slider--content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testi-slider--caption {
    
}
.testi-slider--caption p {
    font-size: 14px;
    line-height: 20px;
}

.testi-slider--info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.testi-slider--profile {

}
.testi-slider--profile img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    object-fit: cover;
}

.testi-slider--biodata {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testi-slider--biodata h5 {
    font-size: 16px;
    line-height: 24px;
}
.testi-slider--biodata small {
    font-size: 12px;
    line-height: 16px;
}

.testi--navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.testi-slider--navs {
    
}
.testi-slider--navs .slick-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-slider--navs .slick-dots > li > button {
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 0;
    border-radius: 12px;
    background: #f5f5f5;
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
}
.testi-slider--navs .slick-dots li.slick-active > button {
    width: 36px;
    background: #EB2F59;
}

.testi-slider--buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-slider--button {
    border: none;
    outline: none;
    box-shadow: none;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 44px;
    font-size: 26px;
    background-color: var(--neutral-30);
    color: var(--neutral-60);
    cursor: pointer;
    transition: 
                background-color .3s ease-in-out, 
                color .3s ease-in-out;
}
.testi-slider--button:hover {
    background-color: var(--neutral-100);
    color: var(--neutral-10);
}

@media (min-width: 744px) {
    .ld__testi {
        padding: 60px 48px;
    }
    .ld__testi .ld__cage {
        gap: 40px;
    }

    .ld__testi .ld__header h2 {        
        text-align: left;
    }

    .testi--sliders {
        margin: -40px -48px;
    }
    .testi--slider-item {
        padding: 40px 48px;
    }

    .testi-slider {
        padding: 32px;
        gap: 28px;
    }

    .testi-slider--content {
        gap: 24px;
    }

    .testi-slider--header img {
        width: 53px;
    }
    
    .testi-slider--info {
        flex-direction: initial;
        align-items: center;
        gap: 24px;
    }

    .testi-slider--caption p {
        font-size: 24px;
        line-height: 32px;
    }

    .testi-slider--profile img {
        width: 100px;
        height: 100px;
        border-radius: 100px;
    }

    .testi-slider--biodata h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .testi-slider--biodata small {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (min-width: 1440px) {
    .ld__testi {
        padding: 80px 48px;
    }
}

@media (max-width: 360px) {
    .testi-slider {
        flex-direction: column;
        gap: 16px;
    }

    .testi--navigation {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .testi-slider--navs .slick-dots {
        gap: 6px;
    }
    .testi-slider--navs .slick-dots > li > button {
        width: 10px;
        height: 10px;
        border-radius: 10px;
    }
    .testi-slider--navs .slick-dots li.slick-active > button {
        width: 28px;
    }

    .testi-slider--buttons {
        gap: 6px;
    }
    .testi-slider--button {
        width: 28px;
        height: 28px;
        height: 28px;
        font-size: 18px;
    }
}
/* END : Testi */


/* START : Live Wedding */
.ld__live-wedding {
    padding: 40px 24px;
}

.ld__live-wedding .ld__cage {
    gap: 40px;
}

.ld__live-wedding .ld__content {

}

.liveWedding {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* wrapper */
.liveWedding--wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.liveWedding--wrapper.live {

}
.liveWedding--wrapper.customer {

}

/* header */
.liveWedding--header {
    
}
.liveWedding--header h2 {

}

/* content */
.liveWedding--content {
    position: relative;
}

/* items */
.liveWedding--items {
    
}
.liveWedding--items.live {
    
}
.liveWedding--items.customer {
    
}

/* slick */
.liveWedding--items .slick-track {
    transition: none;
}
.liveWedding--items .slick-track.transition {
    transition: transform 500ms ease;
}
.liveWedding--items .slick-list {
    margin: 0px -24px;
    padding: 0px 24px;
}

/* item */
.liveWedding--item {
    margin-left: 6px;
    transition: margin-left 500ms ease, opacity 500ms ease;
}
.liveWedding--item.slick-current,
.liveWedding--item.slick-active {
    margin-left: 24px;
    transition: margin-left 500ms ease, opacity 500ms ease;
}
.liveWedding--item-content {
    display: flex;
    width: 140px;
    flex-direction: column;
    gap: 12px;
}
.liveWedding--item.slick-current .liveWedding--item-content,
.liveWedding--item.slick-active .liveWedding--item-content {
    
}

.liveWedding--item-img-wrap {
    
}
.liveWedding--item-img-wrap img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    margin: 0px auto;
}

.liveWedding--item-caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.liveWedding--item-caption h3 {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.liveWedding--item-caption h3 > a {
    color: inherit;
    text-decoration: none;
}
.liveWedding--item-caption h3 > a:hover {
    text-decoration: underline dotted;
}
.liveWedding--item-caption p {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
}

/* arrows */
.liveWedding--arrow {
    outline: none;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    font-size: 24px;
    color: var(--neutral-10);
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -32px;
}
.liveWedding--arrow.slick-arrow {
    /* display: flex; */
}
.liveWedding--arrow.next {
    left: 100%;
    margin-left: 6px;
}
.liveWedding--arrow.prev {
    margin-left: -44px;
}

.liveWedding--arrow.prev > i {
    transform: scaleX(-1);
}

.ld__live-wedding .ld__footer {
    display: flex;
    justify-content: center;
}

@media (min-width: 744px) {
    .ld__live-wedding {
        padding: 60px 48px;
    }

    .liveWedding {
        max-width: 1120px;
        margin: 0px auto;
        gap: 40px;
    }
    
    .liveWedding--wrapper {
        gap: 40px;
    }

    .liveWedding--items .slick-list {
        margin: 0px -48px;
        padding: 0px 48px;
    }
    .liveWedding--item.slick-current.slick-active {
        margin: 0px 6px 0px 48px;
    }

    .liveWedding--item-content {
        width: 170px;
    }
    .liveWedding--item-img-wrap img {
        width: 150px;
        height: 150px;
    }
    .liveWedding--item-caption h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .liveWedding--item-caption p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (min-width: 1024px) {
    .liveWedding--items .slick-list {
        margin: 0px;
        padding: 0px;
    }
    .liveWedding--item.slick-current.slick-active {
        margin: 0px 6px 0px 0px;
    }
    
    .liveWedding--arrow.slick-arrow {
        display: flex;
    }
}

@media (min-width: 1440px) {
    .ld__live-wedding {
        padding: 80px 48px;
    }
    
    .ld__live-wedding .ld__cage {
        gap: 60px;
    }

    .liveWedding {
        gap: 60px;
    }

    .liveWedding--arrow.next {
        left: 100%;
        margin-left: 16px;
    }
    .liveWedding--arrow.prev {
        margin-left: -54px;
    }
}

@media (max-width: 360px) {
    .liveWedding--item-content {
        width: 100px;
    }
    .liveWedding--item-img-wrap img {
        width: 80px;
        height: 80px;
    }

    .liveWedding--item-caption h3 {
        font-size: 14px;
        line-height: 20px;
    }
    .liveWedding--item-caption p {
        font-size: 10px;
        line-height: 12px;
    }
}
/* END : Live Wedding */


/* START : Couple Stats */
.ld__coupleStats {
    padding: 40px 24px;
    background-color: var(--neutral-100);
}
.ld__coupleStats .ld__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.ld__coupleStats .ld__header h2 {
    text-align: center;
    color: var(--neutral-10);
}

@media (min-width: 744px) {
    .ld__coupleStats {
        padding: 60px 48px;
    }
    .ld__coupleStats .ld__header {
        gap: 48px;
    }
}

@media (min-width: 1440px) {
    .ld__coupleStats {
        padding: 80px 48px;
    }
}
/* END : Couple Stats */


/* START : FAQ */
.ld__faq {
    background-color: var(--hijau-paste);
    padding: 40px 24px;
}

.ld__faq .ld__cage {
    gap: 24px;
}

.ld__faq .ld__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.ld__faq .ld__header .kat__button {
    margin-top: 24px;
    white-space: nowrap;
}

.ld__faq .ld__content {
    width: 100%;
    margin-top: -16px;
}

/* content */
.faq--content {
    position: relative;    
    display: flex;
    flex-direction: column;
}

/* accordion */
.faq--content .accordion-item {
    border-bottom: 1px solid #000;
    position: relative;
    transition: all 0.4s ease;
    padding: 16px 0px;
}
.faq--content .accordion-item:last-of-type {
    margin-bottom: 0;
}
.faq--content .accordion-item.show {
    border: none;
}

.faq--content .accordion-item .accordion-label {
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px;
    transition: margin 500ms ease-in-out;
}
.faq--content .accordion-item.show .accordion-label {
    margin: 0px 0px 16px;
}
.faq--content .accordion-item .accordion-label::before {
    content: none;
}
.faq--content .accordion-item.show .accordion-label::before {
    content: none;
}

/* toggle */
.faq--content .accordion-item .accordion-label .toggle-plus {
    position: relative;
    width: 24px;
    height: 24px;
}
.faq--content .accordion-item .accordion-label .toggle-plus .toggle-line {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.faq--content .accordion-item .accordion-label .toggle-plus .toggle-line.line-01 {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq--content .accordion-item .accordion-label .toggle-plus .toggle-line.line-02 {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq--content .accordion-item.show .accordion-label .toggle-plus .toggle-line.line-02 {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq--content .accordion-item .accordion-label .toggle-plus .toggle-line path {
    stroke: var(--primary);
    stroke-width: 40;
}

/* panel */
.faq--content .accordion-item .accordion-panel {
    width: 100%;
}
.faq--content .accordion-item .accordion-panel.collapse {
    display: none;
}

.faq--content .accordion-item .accordion-panel p > a {
    color: var(--neutral-90);
    font-weight: var(--fw-medium);
    text-decoration: none;
}
.faq--content .accordion-item .accordion-panel p > a:hover {
    text-decoration: underline dotted;
}

@media (min-width: 744px) {
    .ld__faq {
        padding: 60px 48px;
    }
    .ld__faq .ld__cage {
        flex-direction: initial;
    }

    .ld__faq .ld__header {
        gap: 8px;
        max-width: 250px;
    }

    .ld__faq .ld__content {
        margin-top: 0px;
    }
    .faq--content .accordion-item {
        padding: 24px 0px;
    }
    .faq--content .accordion-item .accordion-label {
        gap: 12px;
    }
    .faq--content .accordion-item.show .accordion-label {
        margin: 0px 0px 24px;
    }

    /* toggle */
    .faq--content .accordion-item .accordion-label .toggle-plus {
        width: 32px;
        height: 32px;
    }
    .faq--content .accordion-item .accordion-label .toggle-plus .toggle-line {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .ld__faq .ld__header {
        max-width: 350px;
    }
}

@media (min-width: 1440px) {
    .ld__faq {
        padding: 80px 48px;
    }

    .ld__faq .ld__cage {
        gap: 48px;
    }
}
/* END : FAQ */