/* SERVICES PAGE */

.c-services-landing-wrapper {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover, cover;
    background-color: hsl(233, 39%, 17%);
    background-image: url('../images/GRAPH_PATTERN_LANDING.webp'), radial-gradient(circle farthest-side at right bottom, hsl(182, 56%, 49%) 0%, hsl(233, 39%, 17%) 100%);
}

.c-services-landing-section {
    position: relative;
    z-index: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 70%;
    background-image: url('../images/SERVICES_LANDING.svg');

    @media (max-width: 1599px) {
        background-size: 70%;
    }

    @media (max-width: 1199px) {
        background-size: 80%;
    }

    @media (max-width: 991px) {
        background-position: 100% 20%;
        background-size: 100%;
    }
}

.c-services-title-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: 100%;
    padding-bottom: 10rem;
    padding-left: 8rem;

    @media (max-width: 991px) {
        padding: 0 1rem 0 1rem;
    }
}

.c-services-title {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h1FontSize);
    color: #FFFFFF;
    word-break: break-word;
    max-width: 50%;
    padding-bottom: 5rem;
    backdrop-filter: blur(1px) saturate(100%);

    @media (max-width: 1599px) {
        font-size: 4rem;
    }

    @media (max-width: 1199px) {
        font-size: 3rem;
    }

    @media (max-width: 991px) {
        max-width: unset;
        padding-bottom: 1.0rem;
    }
}

.c-services-description-wrapper {
    color: #FFFFFF;
    line-height: 3rem;
    width: 33%;

    @media (max-width: 991px) {
        width: 100%;
        padding-bottom: 5rem;
    }
}

.c-services-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-services-section:nth-child(even) {
    padding-top: 11rem;
    padding-bottom: 11rem;


    .c-web-dev-services-wrapper {
        display: grid;
        grid-column-gap: 10rem;
        grid-template-columns: 500px 1fr;

        @media (max-width: 1199px) {
            display: flex;
            flex-direction: column;
            align-items: center;

            img {
                /* move image to top for consistency */
                order: -1;
            }
        }

        @media (max-width: 991px) {
            display: flex;
            flex-direction: column;

        }
    }
}

.c-services-section:nth-child(odd) {
    .c-web-dev-services-wrapper {
        display: grid;
        grid-column-gap: 10rem;
        grid-template-columns: 1fr 500px;

        @media (max-width: 1199px) {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        @media (max-width: 991px) {
            display: flex;
            flex-direction: column;
        }
    }
}

.c-services-section:last-child {
    padding-bottom: 11rem;
}

.c-services-section:first-child {
    padding-top: 11rem;
}

.c-services-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media (max-width: 1199px) {
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }

    @media (max-width: 991px) {
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }
}

.c-services-section-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h2FontSize);
    padding-bottom: 5rem;
    width: 700px;
    text-align: center;

    @media (max-width: 991px) {
        font-size: 3rem;
        width: 100%;
    }
}

.c-services-gradient-text--mobile {
    background-image: linear-gradient(118.458deg, #0F48A4 0%, #12C2CE 100%);
    color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-services-gradient-text--for-year {
    background-image: linear-gradient(118.458deg, #0F48A4 0%, #12C2CE 100%);
    color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-services-gradient-text--lifetime {
    background-image: linear-gradient(118.458deg, #0F48A4 0%, #12C2CE 100%);;
    color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-web-dev-services-wrapper {
    @media (max-width: 991px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 90vw;
    }
}

.c-services-img {
    border-radius: 5px;

    @media (max-width: 1199px) {
        padding-bottom: 1.75rem;
    }

    @media (max-width: 991px) {
        padding-bottom: 1.75rem;
        max-width: 90vw;
    }
}

.c-services-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 3rem;
}

.c-services-seo-list {
    list-style: circle;
    margin-left: 40px;
    padding-left: 0;
    padding-top: 0.75rem;
}