.container_content_proyect{
    text-align: center; 
    width: 70%; 
    margin: 0 auto; 
    margin-top: 30px;
    margin-bottom: 18px;
}
.title_proyecto{
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
.text_proyect_sub{
    text-align: justify;
    width: 100%;
    margin: 0 auto;
}
.container_content_sub_proyect{
    text-align: center; 
    width: 70%; 
    margin: 0 auto; 
    display: block;
}
.sub_container_proyect{
    width: 250px;
    margin: 0 auto;
    border-radius: 5px;
}
.container_text_proyect{
    text-align: center; 
    width: 70%; 
    margin: 0 auto; 
    margin-top: 30px;
}
.container_proyectos{
    width: 350px;
    display: inline-block;
    margin-top: 1%;
    vertical-align: middle;
}
.text_more_info{
    border: none;
    background: #3a7999;
    color: #f2f2f2;
    padding: 5px;
    font-size: 15px;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    transition: all 500ms ease;
    width: 40%;
    float: right;
    cursor: pointer;
    margin-top: 13px;
    margin-bottom: 10px;
}
.text_more_info:before {
    content:'';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    transition: all 2s ease;
}
.text_more_info:hover:before {
    width: 100%;
}
.container_opasicity{
    opacity: 0;
}
.title_proyecto_modal{
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
}
.container_proyect{
    width: 70%;
    margin: 0 auto;
    padding-bottom: 15px;
}
.content_proyect{
    margin-bottom: 3%;
}
@media(max-width:1500px){
    .container_content_sub_proyect{
        width: 85%;
    }
}
@media(max-width:1250px){
    .container_content_sub_proyect{
        width: 99%;
    }
}
@media(max-width:500px){
    .text_more_info{
        width: 55%;
    }
}
@media(max-width:350px){
    .title_proyecto{
        font-size: 16px;
        width: 70%;
    }
    .container_proyectos{
        width: 250px;
    }
}