/*Clients Page
------------------------------------*/
.clients-page {
	margin-top: 10px;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: solid 1px #eee; 
}

.clients-page ul {
	margin-bottom: 10px;
}

.clients-page li {
	margin: 0 5px 3px 0;
}

.clients-page h3 {
	margin-top: 0;
	font-size: 22px;
}

.clients-page img {
	padding: 4px;
	margin: 5px 0; 
	border: solid 1px #eee;
	background: #fafafa;
}

.clients-page:hover img {
	border-color: #bbb;
}

@media (max-width: 992px) { 
	.clients-page {
		text-align: center;
	}
	.clients-page img {
		margin: 0 auto 30px;
	}
}

/*CSS3 Hover Effect*/

.portafolio-container {
    width: 300px;
    height: 200px; 
    overflow: hidden;
    position: relative;
    padding: 0px;
    margin-left: 15px;
    margin-right: 50px;
}

.portafolio-text {
    width: 300;
    height: 50px;
    position: absolute;
    transform: translateY(50%);
    transition: all 0.5s ease-out;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background: transparent;
}

.img-responsive {
    transition: all 0.5s;
    width: 100% !important;
    height: 100% !important;
    border: 2px solid #e67e22;
}

.text-responsive {
    bottom: 0;
    color: #e67e22;
    padding: 5px 10px;
    background: rgb(0,0,0,0.8);
    margin: 0 20px 0 190px;
    text-decoration: none;
    transition: all 0.5s;
    
    
}

.portafolio-container:hover .portafolio-text {
    -webkit-transform: scale(1) translateY(-80%);
   -moz-transform: scale(1) translateY(-80%);
   -o-transform: scale(1) translateY(-80%);
   -ms-transform: scale(1) translateY(-80%);
   transform: scale(1) translateY(-80%);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}

.text-responsive:hover {
    color: #fff;
    background: #e67e22;
    text-decoration: none;
}

.portafolio-container:hover {
    border: 3px solid #e67e22;
}

.portafolio-container:hover .img-responsive {
    -webkit-transform: scale(1.2);
   -moz-transform: scale(1.2);
   -o-transform: scale(1.2);
   -ms-transform: scale(1.2);
   transform: scale(1.2);
}




/*
.clients-page { 
	overflow: hidden;
}
.clients-page p { 
	overflow: auto;
}
.clients-page p a { 
	overflow: auto;
	text-decoration: underline;
}
.clients-page a.img-hover {
	display: block;
	position: relative;
}
.clients-page img { 
	float: left;
	width: 120px;
	height: 120px;
	margin-right: 20px;
	background: #fafafa;
	border: solid 1px #eee;
}
.clients-page img.img-colorful {
	display: none;
}
.clients-page a:hover img.img-colorful,
.clients-page:hover img.img-colorful {
	top: 0; 
	left: 0;
	display: block;
	position: absolute;
}
*/
