.services{
    width: 100%;
    min-height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 0px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}
.title-services{
    font-size: 60px;
    font-weight: 800;
    text-align: center;
    
}
.services .tiny-line{
    width: 200px;
    height: 2px;
    border-radius: 50%;
    background-color: #000;
    margin-bottom: 50px;
    margin-top: -20px;
}
.services .card{
    margin-bottom: 150px;
    max-width: 1100px;
    min-height: 400px;
    box-sizing: border-box;
    display:flex;
    flex-wrap:wrap;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px 8px #d0d0d0;
    background: #fff;
    transition: 0.5s;

}

.services .card .card_content{
    width: 90vw;
    height: 500px;
    background-color: #fff;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    border-radius: 50px;
}
.services .card:hover{
    transform: translateY(-10px);
}
.services .card .card_content h2{
    font-size: 40px;
    
}
.services .card .card_content p{
    font-size: 22px;
    font-weight: 600;
    text-align: right;
    margin-left: 10px;
}
.services .card .card_content a{
    
}
.services .card .card_content button{
    width: 170px;
    height: 50px;
    font-size: 18px;
    margin-top: 20px;
    background-color: #000;
    color: #fff;
}
.services .card .card_photo{
    width: 100%;
    height: 500px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
}
.services .card .card_photo img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
}
.card_photo:hover img{
    transform: scale(1.1);
}
.services .card:nth-child(even) .card_photo{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.services .card:nth-child(even){
    flex-direction: row-reverse;
    
}

@media (min-width:768px) {
    .services .card > *:nth-child(2) {
        width:calc(100% / 3 * 2 - 10px);
    }
    .services .card > *:nth-child(1) {
        width:calc(100% / 3);
    }
    
}
@media screen and (max-width: 600px) {
    .services .card .card_photo{
        height: 300px;
    }
    .services .card .card_photo{
        border-top-left-radius: 0px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 50px;
    }
    .services .card:nth-child(even) .card_photo{
        border-top-left-radius: 0px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 50px;    
    }
    .title-services{
        font-size: 45px;
    }
}
    
@media screen and (max-width: 768px) {
    .services .card .card_content{
        min-height: 350px;
        max-height: 450px;
    }
    .services .card .card_content p{
        /*font-size: 18px;*/
    }
    
    .services .card .card_content h2{
    font-size: 30px;
        margin-top: 0px;
    
}
.services .card .card_content p{
    font-size: 20px;
    
}
.services .card .card_content a{
    
}
    
}



