#services {
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
}

.gray_dark_sub_title {
    color: var(--graphite-gray-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

.swiper_container {
    width: 100%;
    max-width: 1100px;
    padding: 0 0.5rem;
}

.swiper-slide {
    margin-bottom: 4rem;
}

.service_card {
    height: 300px;
    padding: 1rem 2rem;
    background-color: #f8f9f8;
    border-radius: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.service_card h1 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.service_card span {
    font-size: 1rem;
}

.service_icon {
    background-color: #d8e6e6;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 1rem;
}

.service_icon i {
    color: #1e8482;
    font-size: 2.5rem;
}

@media screen and (max-width: 760px) {
    #services {
        min-height: auto;
        padding-top: 2rem;
    }

    .swiper_container {
        width: 80%;
    }
}
