﻿#servicios{
    position: center;
    margin-top: 40px;
}

#historia {
    position: center;
    margin-top: 40px;
}

.container_servicios{
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin-top: 15%;
    margin-left: 50%;
    margin-bottom: 0%;
    transform: translate(-50%, -50%);
}

.card {
    width: 350px;
    margin: 10px;
    padding: 10px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 300ms;
}

.card:hover{
    transform: translateY(-10px);
}

.card:hover .cover_card img{
    transform: scale(1.1);
}

.cover_card{
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
}

.cover_card figure{
    
}

.cover_card img{
    width: 110%;
    transition: all 300ms;
}

.card h2{
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    color: #fff;
}

.card p{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}

.card hr{
    margin-top: 30px;
    border: none;
    height: 0.2px;
    background: #41414138;
}

.footer_card{
    margin-top: 10px;
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.footer_card h3{
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    .container_servicios{
        position: relative;
        margin-top: 0; 
        margin-left: 0; 
        transform: none;
        margin-top: 100px;
        padding-bottom: 100px;
    }
}