/* services */
#services_section {
    margin-top: 45px;
    margin-bottom: 30px;
    justify-content: center;
}

#services_header {
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 40px;
    text-shadow: 0px 0px 5px black;
    color: white;
}

#services_squares_container {
    display: flex;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 1200px;
}

.service_square {
    margin-inline: 20px;
    text-decoration: none;
}

.service_img_container {
    position: relative;
}

.service_img {
    height: 300px;
    width: 360px;
    opacity: 40%;
    box-shadow: 3px 3px 5px black;
    background-color: rgb(70, 130, 180);
    border-radius: 20px;
    transition: opacity 0.2s;
}

.service_img_container:hover {
    .service_img {
        opacity: 100%;
        background-color: rgb(53, 63, 160);
    }
    .service_logo {
        opacity: 0%;
        transition: opacity 0.5s, background-color 0.5s;
    }
    .service_title {
        color: rgb(230, 230, 230);
        top: 0%;
        transition: top 0.5s, color 0.5s;
    }
    .service_description {
        opacity: 100%;
        top: 35%;
        transition: opacity 0.5s, top 0.5s;
    }
    #cnc_machining_title {
        top: 5%;
    }
}

.service_title {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 23px;
    color: black;
    transition: top 0.2s, color 0.2s;
}

.service_description {
    position: absolute;
    margin: 0;
    margin-left: 10px;
    top: 0%;
    color: rgb(230, 230, 230);
    width: 95%;
    text-align: center;
    opacity: 0;
    font-size: 15px;
    transition: opacity 0.2s, top 0.2s;
}

.service_logo {
    position: absolute;
    display: block;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s, background-color 0.2s;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #services_squares_container {
        flex-direction: column;
        align-items: center;
    }
}

#cnc_machining_logo {
    height: 80px;
}

#custom_fixtures_logo {
    height: 120px;
}

#low_mid_volume_production_logo {
    height: 100px;
}