.services-container {
    background: #070707;
}


.services-container h2 {
    font-family: var(--font-primary-bold);
    color: #FFF;
    font-size: var(--fs-section-heading);
    font-weight: 700;
    line-height: 150%;
    /* adjusted for larger size */
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 10px 10px 0;
}

.services-inner {
    margin: 0 0 50px;
}

.services-inner.even h2 {
    color: #1E1E1E;
}

.services-container p {
    width: 100%;
    max-width: 820px;
    font-family: var(--font-primary);
    color: #FFF;
    font-size: var(--fs-section-subtext);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.2px;
    padding: 0 10px 10px;
}

.services-inner.even p {
    color: #1E1E1E;
}

.services-container p span {
    font-weight: 400;
}

.services-container .services-img-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    max-width: 714px;
}

.services-img-container img {
    height: 535px;
    object-fit: cover;
    display: block;
}

.services-inner.odd {
    background: #1A1A1A;
}




.services-content.odd {
    margin: auto;
    max-width: 1525px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 90px 80px 40px;
}

.services-inner.even {
    background: #FFF;
}

.services-content.even {
    margin: auto;
    max-width: 1525px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 90px 80px 40px;
    flex-direction: row-reverse;
}

@media (max-width: 1280px) {
    .services-inner {
        margin: 0;
    }

    .services-content.odd {
        padding: 80px 40px 80px 40px;
        gap: 20px;
    }

    .services-content.even {
        padding: 80px 40px 80px 40px;
        margin: 0 auto;
        gap: 20px;
    }

    .services-container .services-img-container {
        max-width: 535px;
    }

    .services-img-container img {
        height: 380px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .services-inner {
        margin: 0 0 30px;
    }

    .services-container h2 {
        font-size: var(--fs-element-heading);
    }

    .services-container img {
        height: 280px;
        object-fit: cover;
    }

    .services-content.odd {
        flex-direction: column-reverse;
        padding: 60px 20px;
        gap: 30px;
    }

    .services-content.even {
        flex-direction: column-reverse;
        padding: 60px 20px;
        gap: 30px;
    }

    .services-container .services-img-container {
        max-width: 100%;
    }
}