/* =========================================================
   SNOW HILLS - HOME PAGE
   SERVICES SECTION
========================================================= */


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {

    background: #ffffff;

    padding: 210px 20px;

}


/* =========================================================
   SERVICES SCALE
========================================================= */

.services-scale {

    transform: scale(1.35);

    /* increase size */

    transform-origin: center;

}


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

.services-container {

    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: stretch;

}


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

.service {

    box-sizing: border-box;

    min-height: 300px;

    padding: 15px 20px;

    border-right: 1px solid #e6e6e6;

    border-bottom: 1px solid #e6e6e6;

    background: #fff;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    transition: all 0.3s ease;

    overflow: hidden;

}


/* =========================================================
   REMOVE RIGHT BORDER
========================================================= */

.service:nth-child(3n) {

    border-right: none;

}


/* =========================================================
   REMOVE BOTTOM BORDER
========================================================= */

.service:nth-last-child(-n+3) {

    border-bottom: none;

}


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

.service.intro h2 {

    font-size: 30px;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 15px;

    color: #1a0f1e;

    font-family: "Montserrat", sans-serif;

}


.service.intro p {

    font-family: "Montserrat", sans-serif;

    font-style: normal;

    font-weight: 500;

    font-size: 12px;

    line-height: 18px;

    width: 240px;

}


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

.view-link {

    margin-top: 20px;

    color: #6c2db5;

    font-weight: 600;

    text-decoration: none;

    font-size: 12px;

    font-family: Montserrat, sans-serif;

}


/* =========================================================
   SERVICE ICON
========================================================= */

.service_icon {

    width: 50px;

    height: auto;

    margin-bottom: 5px;

    color: #6c2db5;

    transition: color 0.3s ease;

}


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

.service h3 {

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 4px;

    color: #1a0f1e;

}


/* =========================================================
   SERVICE TEXT
========================================================= */

.service p {

    font-size: 14.5px;

    font-family: "Montserrat", sans-serif;

    font-style: normal;

    font-weight: 500;

    font-size: 13px;

    line-height: 18px;

    color: black;

}


/* =========================================================
   SERVICE KEY
========================================================= */

.service .key {

    font-size: 14.5px;

    margin-bottom: 6px;

    margin-top: 6px;

    color: black;

}


/* =========================================================
   SERVICE PARAGRAPH
========================================================= */

.service p {

    font-family: "Montserrat", sans-serif;

    font-style: normal;

    font-weight: 500;

    font-size: 12px;

    line-height: 18px;

    width: 230px;

}


/* =========================================================
   SERVICE SPAN
========================================================= */

.service span {

    font-family: "Montserrat", sans-serif;

    font-style: normal;

    font-weight: 500;

    font-size: 13px;

    line-height: 18px;

    margin-top: 9px;

    margin-bottom: 19px;

}


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

.service.highlight {

    background: #6c2db5;

    color: #fff;

}


.service.highlight h3,
.service.highlight p,
.service.highlight li,
.service.highlight strong {

    color: white;

    margin-top: 5px;

}


.service.highlight .icon {

    color: #fff;

}


/* =========================================================
   SERVICE ICON HOVER
========================================================= */

.service:not(.intro):hover .icon {

    color: #fff;

}


/* =========================================================
   SMALL TEXT
========================================================= */

.service small {

    margin-top: 8px;

    font-size: 12px;

    color: #777;

}

/* =========================================================
   SNOW HILLS - SERVICES
   TABLET + MOBILE RESPONSIVE
========================================================= */


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

@media (max-width: 1100px) {

    .services-section {

        padding: 160px 25px;
    }


    /* Remove desktop scaling */

    .services-scale {

        transform: scale(1);

        transform-origin: center;
    }


    .services-container {

        width: 100%;

        max-width: 900px;

        margin: 0 auto;

        grid-template-columns: repeat(3, 1fr);
    }


    .service {

        min-height: 220px;

        padding: 18px 18px;
    }


    .service.intro h2 {

        font-size: 27px;
    }


    .service.intro p {

        width: 100%;

        max-width: 230px;
    }


    .service p {

        width: 100%;

        max-width: 230px;
    }
}


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

@media (max-width: 768px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .services-section {

        padding: 80px 25px 90px;

        overflow: hidden;
    }


    /* =====================================================
       SCALE RESET
    ===================================================== */

    .services-scale {

        transform: none;

        transform-origin: initial;

        width: 100%;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .services-container {

        width: 100%;

        max-width: 650px;

        margin: 0 auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        align-items: stretch;
    }


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

    .service {

        min-height: 230px;

        padding: 20px 18px;

        border-right: 1px solid #e6e6e6;

        border-bottom: 1px solid #e6e6e6;

        overflow: hidden;
    }


    /* -----------------------------------------
       RIGHT BORDER
    ----------------------------------------- */

    .service:nth-child(3n) {

        border-right: 1px solid #e6e6e6;
    }


    .service:nth-child(2n) {

        border-right: none;
    }


    /* -----------------------------------------
       BOTTOM BORDER
    ----------------------------------------- */

    .service:nth-last-child(-n+3) {

        border-bottom: 1px solid #e6e6e6;
    }


    .service:nth-last-child(-n+2) {

        border-bottom: none;
    }


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

    .service.intro h2 {

        font-size: 26px;

        line-height: 1.25;

        margin-bottom: 12px;
    }


    .service.intro p {

        width: 100%;

        max-width: 260px;

        font-size: 12px;

        line-height: 1.6;
    }


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

    .view-link {

        margin-top: 16px;

        font-size: 11px;
    }


    /* =====================================================
       ICON
    ===================================================== */

    .service_icon {

        width: 45px;

        height: auto;

        margin-bottom: 7px;
    }


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

    .service h3 {

        font-size: 15px;

        line-height: 1.35;

        margin-bottom: 5px;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .service p {

        width: 100%;

        max-width: none;

        font-size: 12px;

        line-height: 1.6;

        margin-top: 0;
    }


    .service .key {

        font-size: 13px;

        line-height: 1.4;

        margin-top: 6px;

        margin-bottom: 5px;
    }


    .service span {

        font-size: 12px;

        line-height: 1.55;

        margin-top: 7px;

        margin-bottom: 12px;
    }


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

    .service.highlight h3,
    .service.highlight p,
    .service.highlight li,
    .service.highlight strong {

        margin-top: 4px;
    }


    /* =====================================================
       SMALL TEXT
    ===================================================== */

    .service small {

        margin-top: 7px;

        font-size: 11px;
    }
}


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

@media (max-width: 576px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .services-section {

        padding: 55px 16px 70px;

        overflow: hidden;
    }


    /* =====================================================
       SCALE
    ===================================================== */

    .services-scale {

        transform: none;

        width: 100%;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .services-container {

        width: 100%;

        max-width: 430px;

        margin: 0 auto;

        display: grid;

        grid-template-columns: 1fr;
    }


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

    .service {

        width: 100%;

        min-height: auto;

        padding: 24px 20px;

        border-right: none;

        border-bottom: 1px solid #e6e6e6;

        box-sizing: border-box;
    }


    /* =====================================================
       REMOVE LAST BORDER
    ===================================================== */

    .service:nth-child(3n) {

        border-right: none;
    }


    .service:nth-child(2n) {

        border-right: none;
    }


    .service:nth-last-child(-n+3) {

        border-bottom: 1px solid #e6e6e6;
    }


    .service:last-child {

        border-bottom: none;
    }


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

    .service.intro {

        padding-top: 10px;

        padding-bottom: 25px;
    }


    .service.intro h2 {

        font-size: 25px;

        line-height: 1.3;

        margin-bottom: 12px;
    }


    .service.intro p {

        width: 100%;

        max-width: none;

        font-size: 12px;

        line-height: 1.65;
    }


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

    .view-link {

        display: inline-block;

        margin-top: 15px;

        font-size: 11px;
    }


    /* =====================================================
       ICON
    ===================================================== */

    .service_icon {

        width: 48px;

        height: auto;

        margin-bottom: 8px;
    }


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

    .service h3 {

        font-size: 16px;

        line-height: 1.35;

        margin-bottom: 6px;
    }


    /* =====================================================
       SERVICE TEXT
    ===================================================== */

    .service p {

        width: 100%;

        max-width: none;

        font-size: 12px;

        line-height: 1.65;

        margin: 0;
    }


    /* =====================================================
       KEY
    ===================================================== */

    .service .key {

        font-size: 13px;

        line-height: 1.45;

        margin-top: 7px;

        margin-bottom: 5px;
    }


    /* =====================================================
       SPAN
    ===================================================== */

    .service span {

        display: block;

        width: 100%;

        font-size: 12px;

        line-height: 1.6;

        margin-top: 7px;

        margin-bottom: 14px;
    }


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

    .service.highlight {

        padding: 25px 20px;
    }


    .service.highlight h3,
    .service.highlight p,
    .service.highlight li,
    .service.highlight strong {

        margin-top: 4px;
    }


    /* =====================================================
       SMALL TEXT
    ===================================================== */

    .service small {

        margin-top: 7px;

        font-size: 10.5px;
    }
}


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

@media (max-width: 400px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .services-section {

        padding: 45px 13px 60px;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .services-container {

        max-width: 360px;
    }


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

    .service {

        padding: 21px 17px;
    }


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

    .service.intro {

        padding-top: 5px;

        padding-bottom: 22px;
    }


    .service.intro h2 {

        font-size: 22px;

        line-height: 1.3;
    }


    .service.intro p {

        font-size: 11.5px;

        line-height: 1.65;
    }


    /* =====================================================
       ICON
    ===================================================== */

    .service_icon {

        width: 44px;

        margin-bottom: 7px;
    }


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

    .service h3 {

        font-size: 15px;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .service p {

        font-size: 11.5px;

        line-height: 1.6;
    }


    .service .key {

        font-size: 12px;
    }


    .service span {

        font-size: 11.5px;

        line-height: 1.55;
    }


    .view-link {

        font-size: 10.5px;
    }


    .service small {

        font-size: 10px;
    }
}
