 /* =========================================================
    SERVICE BENEFITS
    ========================================================= */

.service-benefits {
    width: 100%;
    background: #ffffff;

    border-top: 1px solid #eee9e1;
    border-bottom: 1px solid #eee9e1;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.service-benefits__container {
    width: 100%;
    max-width: 1800px;

    margin: 0 auto;
    padding: 0;

    display: grid;

    /* ALWAYS 4 ITEMS IN ONE ROW */
    grid-template-columns: repeat(4, minmax(0, 1fr));

    box-sizing: border-box;
}


/* =========================================================
   SERVICE BENEFIT
   ========================================================= */

.service-benefit {
    width: 100%;
    min-width: 0;

    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   VERTICAL SEPARATOR
   ========================================================= */

.service-benefit:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 20%;
    right: 0;
    bottom: 20%;

    width: 1px;

    background: #eee5d9;
}


/* =========================================================
   ICON
   ========================================================= */

.service-benefit__icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    margin-right: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d5a13a;

    box-sizing: border-box;
}


/* =========================================================
   SVG
   ========================================================= */

.service-benefit__icon svg {
    width: 100%;
    height: 100%;

    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

    box-sizing: border-box;
}


/* =========================================================
   CONTENT
   ========================================================= */

.service-benefit__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   TITLE
   ========================================================= */

.service-benefit__title {
    margin: 0 0 4px;

    font-family: "Cormorant Garamond",
                 Georgia,
                 serif;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 700;

    color: #333333;

    white-space: nowrap;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.service-benefit__subtitle {
    margin: 0;

    font-family: "Montserrat",
                 Arial,
                 sans-serif;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 400;

    color: #666666;

    white-space: nowrap;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .service-benefit {
        height: 84px;

        padding: 10px 20px;
    }


    .service-benefit__icon {
        width: 50px;
        height: 50px;

        flex: 0 0 50px;

        margin-right: 5px;
    }


    .service-benefit__title {
        font-size: 15px;
    }


    .service-benefit__subtitle {
        font-size: 12px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .service-benefit {
        height: 65px;

        padding: 8px 7px;
    }


    /* Separator */

    .service-benefit:not(:last-child)::after {
        top: 18%;
        bottom: 18%;
    }


    /* Icon */

    .service-benefit__icon {
        width: 32px;
        height: 32px;

        flex: 0 0 32px;

        margin-right: 4px;
    }


    .service-benefit__icon svg {
        width: 100%;
        height: 100%;

        stroke-width: 1.5;
    }


    /* Title */

    .service-benefit__title {
        font-size: 8.5px;
        line-height: 1.15;

        margin-bottom: 3px;
    }


    /* Subtitle */

    .service-benefit__subtitle {
        font-size: 8px;
        line-height: 1.2;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .service-benefits__container {
        width: 100%;

        /* ALWAYS 4 ITEMS */
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }


    .service-benefit {
        height: 58px;

        padding: 6px 3px;
    }


    /* Separator */

    .service-benefit:not(:last-child)::after {
        top: 16%;
        bottom: 16%;
    }


    /* Icon */

    .service-benefit__icon {
        width: 25px;
        height: 25px;

        flex: 0 0 25px;

        margin-right: 3px;
    }


    .service-benefit__icon svg {
        width: 100%;
        height: 100%;

        stroke-width: 1.5;
    }


    /* Title */

    .service-benefit__title {
        font-size: 6.5px;
        line-height: 1.15;

        margin-bottom: 2px;
    }


    /* Subtitle */

    .service-benefit__subtitle {
        font-size: 6.5px;
        line-height: 1.2;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .service-benefit {
        height: 56px;

        padding: 5px 2px;
    }


    /* Icon */

    .service-benefit__icon {
        width: 21px;
        height: 21px;

        flex: 0 0 21px;

        margin-right: 2px;
    }


    .service-benefit__icon svg {
        width: 100%;
        height: 100%;

        stroke-width: 1.5;
    }


    /* Title */

    .service-benefit__title {
        font-size: 5.5px;
        line-height: 1.15;
    }


    /* Subtitle */

    .service-benefit__subtitle {
        font-size: 5.5px;
        line-height: 1.15;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 340px) {

    .service-benefit {
        padding-left: 1px;
        padding-right: 1px;
    }


    .service-benefit__icon {
        width: 19px;
        height: 19px;

        flex: 0 0 19px;

        margin-right: 2px;
    }


    .service-benefit__title {
        font-size: 5px;
    }


    .service-benefit__subtitle {
        font-size: 5px;
    }
}