.services{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 70px;
}
.service, .service_reverse{
    padding: 40px 0;
}
.service_image_container_left{
    width: 100%;
    overflow: hidden;
}
.service_image_container_right{
    width: 100%;
    display: flex;
    overflow: hidden;
    align-items: flex-end;
    justify-content: flex-end;
}
.service_image_left, .service_image_right{
    width: 90%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    opacity: 0;
    transition: all 0.7s;
}
.service_image_left{
    transform: translate(-80px);
}
.service_image_right{
    transform: translate(80px);
}
.service_text{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 0.3s;
}
.service_title{
    margin:0;
    width: 85%;
    margin-bottom: 20px;
    font-size: 1.4em;
}
.service_description{
    width: 85%;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.service_text_button{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: black;
    color: white;
    width: 85%;
    height: 45px;
    font-size: 1.1em;
    transition: all 0.4s;

}
.service_text_button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    font-weight: 600;
}
.service_element_in_view{
    transform: translate(0);
    opacity: 1;
}
@media only screen and (min-width: 700px) {
    .services{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .service, .service_reverse{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        max-width: 1200px;
        overflow: hidden;
        height: 400px;
        margin-bottom: 60px;

    }
    .service_reverse{
        flex-direction: row-reverse;
    }
    .service_image_container_right, .service_image_container_left{
        width: 50%;   
        max-width: 450px;    
        height: 100%; 
        display: flex;
        max-width: 550px;
        align-items: center;
        justify-content: center;
    }
    .service_text{
        width: 50%;
        min-height: 100%;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
    }
    .service_title{
        width: 100%;
        font-size: 1.3em;
    }
    .service_description{
        width: 100%;
        font-size: 1.05em;
    }
    .service_text_button{
        position: absolute;
        bottom: 0;
        left: 20px;
    }
}
