.services-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(18, 18, 18, 0.3)),
                url("../../images/arches.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-container {
    max-width: 1450px;
}

.services-title h1 {
    font-size: 3em;
    text-align: center;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 50px;
}

.services-title h3 {
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    color: var(--white-text-color);
    margin-bottom: 15px
}

.services-body {
    margin-top: 50px;
}

.services-body .service-item-content {
    position: relative;
    margin-bottom: 20px;
}

.service-item-content .service-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(242, 242, 242, 0.75);
    border-radius: 5px;
    cursor: pointer;
}

.service-item-content .service-item:hover {
    background-color: var(--white-color);
}

.service-item-content .service-image {
    position: relative;
    flex: 0.9;
} 

.service-item-content .service-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.service-item-content .service-label {
    flex: 0.1;
    padding: 20px;
}

.service-label h3 {
    font-weight: 600;
    font-size: 23px;
    color: var(--dark-color);
    text-align: center;
}

.service-label p {
    color: var(--text-color);
    text-align: center;
    font-weight: 300;
}

.services-footer .separator {
    border: 2px solid var(--white-color);
    background-color: var(--white-color);
}

.service-footer-text {
    margin-top: 50px;
}

.service-footer-text {
    color: var(--white-text-color);
    font-weight: 800;
    font-size: 18px;
    text-align: center;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .services-section {
        padding: 50px;
    }

    .service-label h3 {
        font-size: 18px;
    }
    
    .service-label p {
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {
    .services-body .service-item-content {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .services-body {
        margin-top: 25px;
    }

    .services-section {
        padding: 25px;
    }

    .services-section .container {
        max-width: 650px;
    }

    .services-title h1 {
        font-size: 2.5em;
        margin-bottom: 25px;
    }
    
    .services-title h3 {
        font-size: 16px;
    }

    .service-label h3 {
        font-size: 1.6em;
    }
    
    .service-label p {
        font-size: 16px;
    }

    .service-footer-text {
        margin-top: 25px;
    }
}

@media screen and (max-width: 375px) {
    .services-section {
        padding: 20px 5px;
    }

    .services-title h1 {
        font-size: 2.0em;
        margin-bottom: 25px;
    }
    
    .services-title h3 {
        font-size: 15px;
    }

    .service-label h3 {
        font-size: 1.3em;
    }
    
    .service-label p {
        font-size: 15px;
    }

    .service-footer-text {
        margin-top: 10px;
        font-size: 15px;
    }

    .services-body {
        margin-top: 15px;
    }
}