.projects-page-container > div {
    margin-bottom: 2rem;
  }


.services-pg-container {
    margin-top: 10rem;
    width: 100vw;
    max-width: 1500px;
    padding: 1rem;
    margin-bottom: 10rem;
}

.services-pg-header {
    padding-bottom: 3rem;
    border-bottom: 0.5px solid #696969;
}

.services-pg-header > p {
    font-size: 1.3rem;
    max-width: 650px;
}

.services-pg-header > h1 {
    text-align: left;
    margin-bottom: 3rem;
}

.services-pg-header > h1 > span {
    font-family: "Urbanist", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300 !important;
    font-style: italic;
    /* font-size: 4.1rem; */
    margin: 0 0.5rem;
}

.services-pg-section {
    padding: 5rem 0;
    border-bottom: 0.5px solid #696969;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.services-pg-section-copy > h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.services-pg-section-copy > p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.services-pg-section-col-2 {
    /* position: relative; */
    
}

.services-pg-service-tags-wrapper > ul {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-top: 1rem;
    max-width: 400px;
}

.services-pg-service-tag {
    list-style: none;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    padding: 2.5px 17px;
    border-radius: 3rem;
    margin-right: 8px;
    margin-bottom: 10px;
    /* margin-right: 15px;
    margin-bottom: 16px; */
    border: 0.5px solid var(--secondary-color);
}

.services-pg-section-icon {
    position: absolute;
    top: 3rem;
    right: 0;
    /* right: -1.5rem; */
    height: 70%;
    mix-blend-mode: difference;
    pointer-events: none;
    /* light mode: */
    /* opacity: 0.3; */
    opacity: calc(var(--service-card-opac) * 0.3);
}

@media (max-width: 900px) {
    .services-pg-section {
        grid-template-columns: 1fr;
    }

    .services-pg-section-copy > h3 {
        font-size: 2rem;
    }

    .services-pg-service-tags-wrapper > ul {
        max-width: 100%;
    }

    .services-pg-section-icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50vw;
        transform: translateY(45%);
        opacity: calc(var(--service-card-opac) * 0.3);
    }
}