/* ==========================================================================
   LAYANAN PAGE
   ========================================================================== */


/* ==========================================================================
   PAGE INTRO
   ========================================================================== */




/* ==========================================================================
   BREADCRUMB
   ========================================================================== */




.service-breadcrumb a {
    color: #666666;

    text-decoration: none;
}


.service-breadcrumb a:hover,
.service-breadcrumb a:focus {
    color: #002EBE;

    text-decoration: none;
}


.service-breadcrumb .fa {
    margin-right: 4px;
}


/* ==========================================================================
   INTRO CONTENT
   ========================================================================== */

.service-page-intro__content {
    max-width: 720px;
}











/* ==========================================================================
   PAGE
   ========================================================================== */

.service-page {
    width: 100%;

    padding: 60px 0 72px;

    background: #FFFFFF;
}


/* ==========================================================================
   GRID
   ========================================================================== */




/* ==========================================================================
   CARD
   ========================================================================== */

.service-card {
    min-width: 0;

    background: #FFFFFF;

    border: 1px solid #E7E7E7;
    border-radius: 8px;

    overflow: hidden;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}





/* ==========================================================================
   MEDIA
   ========================================================================== */







.service-card:hover
.service-card__media img {
    transform: scale(1.035);
}


/* ==========================================================================
   OVERLAY
   ========================================================================== */

.service-card__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, .16) 100%
        );

    pointer-events: none;
}


/* ==========================================================================
   PLACEHOLDER
   ========================================================================== */

.service-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #E7E7E7,
            #F0F0F0
        );

    color: #002EBE;

    font-size: 35px;
}


/* ==========================================================================
   BODY
   ========================================================================== */

.service-card__body {
    padding: 20px 20px 22px;
}


/* ==========================================================================
   TITLE
   ========================================================================== */

.service-card__title {
    margin: 0 0 9px;

    color: #262626;

    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;

    text-transform: none;
}


/* ==========================================================================
   DESCRIPTION
   ========================================================================== */

.service-card__description {
    min-height: 63px;

    margin: 0 0 16px;

    color: #666666;

    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1.65;
}


/* ==========================================================================
   LINK
   ========================================================================== */




.service-card__link .fa {
    margin-left: 7px;

    transition:
        transform .2s ease;
}


.service-card__link:hover,
.service-card__link:focus {
    color: #006BB7;

    text-decoration: none;
}


.service-card__link:hover .fa,
.service-card__link:focus .fa {
    transform: translateX(3px);
}


/* ==========================================================================
   EMPTY STATE
   ========================================================================== */




.service-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin: 0 auto 18px;

    background: #FFFFFF;

    border-radius: 50%;

    color: #002EBE;

    font-size: 21px;
}








/* ==========================================================================
   EMPTY WHATSAPP BUTTON
   ========================================================================== */

.service-empty__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 10px 18px;

    background: #25D366;

    border: 1px solid #25D366;
    border-radius: 6px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


.service-empty__button .fa {
    margin-right: 8px;

    font-size: 17px;
}





/* ==========================================================================
   TABLET
   ========================================================================== */

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

    .service-page-intro__content h1 {
        font-size: 32px;
    }


    .service-page {
        padding: 52px 0 60px;
    }


    .service-page__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .service-card__description {
        min-height: 0;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

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

    .service-page-intro {
        padding: 30px 0;
    }


    .service-breadcrumb {
        margin-bottom: 18px;
    }


    .service-page__eyebrow {
        font-size: 11px;
    }


    .service-page-intro__content h1 {
        font-size: 28px;
    }


    .service-page-intro__content > p:last-child {
        font-size: 13px;
    }


    .service-page {
        padding: 42px 0 48px;
    }


    .service-page__grid {
        display: block;
    }


    .service-card {
        margin-bottom: 18px;
    }


    .service-card:last-child {
        margin-bottom: 0;
    }


    .service-card__body {
        padding: 18px;
    }


    .service-card__title {
        font-size: 17px;
    }


    .service-card__description {
        min-height: 0;

        font-size: 13px;
    }


    .service-empty {
        padding: 35px 22px;
    }


    .service-empty__button {
        width: 100%;
    }

}