/* css forthe temp page (index.html) only */



/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
.cs-color-one {
    color: var(--colorOne);
}

.cs-color-two {
    color: var(--secondary);
}

.cs-color-three {
    color: var(--headerColor);
}

.cs-color-four {
    color: var(--colorFour);
}

.cs-color-five {
    color: var(--colorFive);
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1972 {
        padding: var(--sectionPadding);
        overflow: hidden;
        position: relative;
    }

    #services-1972::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        opacity: 0.05;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #services-1972 .cs-container {
        width: 100%;
        max-width: 44rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    #services-1972 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #services-1972 .cs-card-group {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #services-1972 .cs-item {
        text-align: left;
        list-style: none;
        width: 100%;
        margin: 0 auto;
        /* prevents padding and border from affecting height and width */
        /* 24px - 32px */
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) 3.75rem clamp(1.5rem, 4vw, 2rem);
        box-sizing: border-box;
        overflow: hidden;
        border: 1rem solid var(--colorThree);
        border-radius: 0.5rem;
        display: flex;
        background-color: var(--bodyBackground);
        flex-direction: column;
        align-items: flex-start;
        grid-column: span 12;
        grid-row: span 1;
        position: relative;
        z-index: 1;
        transition: box-shadow 0.3s, border-color 0.3s;
    }

    #services-1972 .cs-picture {
        margin: 0;
        display: flex;
        justify-content: center;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    #services-1972 .cs-icon {
        width: 11.3125rem;
        height: auto;
    }

    #services-1972 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        font-weight: bold;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0 0 1rem 0;
        transition: color 0.3s;
    }

    #services-1972 .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        max-width: 40.625rem;
        margin: 0;
        margin-bottom: 2rem;
        padding: 0;
        color: var(--bodyTextColor);
    }

    #services-1972 .cs-link {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        text-decoration: none;
        margin-top: auto;
        color: var(--primary);
        border-bottom: 1px solid var(--primary);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: color 0.3s;
    }

}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1972 .cs-container {
        max-width: 80rem;
    }

    #services-1972 .cs-content {
        width: 60%;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {


    #services-1972 .cs-item {
        grid-column: span 4;
    }
}