.custom_imagebox {display: block; max-width: 300px; width: 100%; position: relative; margin: 0 auto; overflow: hidden;}
.custom_imagebox .title {
	color: #FFF;
	font: 100 30px/1em 'Roboto', sans-serif;
	margin: 0.2rem 0 0.5rem;
	padding: 0 10%;	
	position: absolute;
	top: 22%;
	text-align: center;
	text-shadow: 1px 1px 1px #000;
	width: 100%;
	z-index: 999;
	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}
.custom_imagebox .desc {
	color: #FFF;
	font: 300 14px/21px 'Roboto', sans-serif;
	padding: 0 10%;
	text-align: center;
	text-shadow: 1px 1px 1px #000;
	text-transform: uppercase;
	width: 100%;
	position: absolute;
	top: 50%;
	opacity: 0;
	z-index: 99;
	transition:all ease .5s .2s;
	-webkit-transition:all ease .5s .2s;
	-moz-transition:all ease .5s .2s;
	-o-transition:all ease .5s .2s;
}
.custom_imagebox .expand {
	position: absolute; 
	bottom: 40%; 
	text-align: center; 
	width: 100%; 
	z-index: 99;
	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}
.custom_imagebox .plus-button {
	border: 1px #fff solid; 
	position: absolute;
	left: 50%; 
	top: -10px; 
	margin-left: -20px;
	height: 40px; 
	width: 40px; 
	padding: 10px; 
	text-align: center; 
	overflow: hidden;
	transition:all ease .5s .1s;
	-webkit-transition:all ease .5s .1s;
	-moz-transition:all ease .5s .1s;
	-o-transition:all ease .5s .1s;
}
.custom_imagebox .plus-button:after {
	background-color: #ffc424;
	border: none;
	font-weight: 400;
	content: "";
	height: 100%; 
	width: 100%;
	position: absolute; 
	top: 0; 
	left: 0;
	display: block;
	opacity: 0;
}
.custom_imagebox .symbol {position: absolute; top: 0; left: 0; z-index: 99;
	height: 100%; 
	width: 100%; 
	opacity: 1;
	transition:all ease .5s .1s;
	-webkit-transition:all ease .5s .1s;
	-moz-transition:all ease .5s .1s;
	-o-transition:all ease .5s .1s;
}
.custom_imagebox .symbol img {position: relative; top: 15%;}
.custom_imagebox a.btntext {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	position: absolute; 
	bottom: -30px; 
	left: 0; 
	width: 100%;
	color: #000;
	opacity: 0;
	padding: 11px 0px;
	z-index: 99999;
	transition:all ease .5s .1s;
	-webkit-transition:all ease .5s .1s;
	-moz-transition:all ease .5s .1s;
	-o-transition:all ease .5s .1s;
}

.custom_imagebox .borderbox {position: absolute; top: 0; left: 0; height: 100%; width: 100%; padding: 10%; z-index: 9;}
.custom_imagebox .borderbox:before, .custom_imagebox .borderbox:after {
	content: "";
	position: absolute;
	top: 10%;
	left: 10%;
	bottom: 10%;
	right: 10%;
	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}
.custom_imagebox .borderbox:before {border-left: 1px #fff solid; border-right: 1px #fff solid; transform: scale(1,0);}
.custom_imagebox .borderbox:after {border-top: 1px #fff solid; border-bottom: 1px #fff solid; transform: scale(0,1);}

.custom_imagebox .gradient {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.3;
	z-index: 8;
	background: -webkit-linear-gradient(left top, #0061a4 , #6d9f11); 
	background: -o-linear-gradient(bottom right, #0061a4, #6d9f11);
	background: -moz-linear-gradient(bottom right, #0061a4, #6d9f11);
	background: linear-gradient(to bottom right, #0061a4 , #6d9f11);

	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}

.custom_imagebox .container:hover .title {top: 16%;}
.custom_imagebox .container:hover .desc {top: 44%; opacity: 1;}
.custom_imagebox .container:hover .expand {bottom: 33%;}
.custom_imagebox .container:hover .plus-button {
	margin-left: -75px; 
	width: 150px;
	border: none;
}
.custom_imagebox .container .btntext:hover{
	background: #d79f08;
	-webkit-transition: all .300s ease-in-out ;
	-moz-transition: all .300s ease-in-out ;
	-o-transition: all .300s ease-in-out ;
	transition: all .300s ease-in-out ;
}
.custom_imagebox .container:hover .plus-button:after {opacity: 1;}
.custom_imagebox .container:hover .symbol {opacity: 0; top: 30px;}
.custom_imagebox .container:hover a.btntext {opacity: 1; bottom: -5px;}
.custom_imagebox .container:hover .borderbox:before, .custom_imagebox .container:hover .borderbox:after {transform: scale(1,1);}
.custom_imagebox .container:hover .gradient {
	background: -webkit-linear-gradient(left top, #ffc324 , #ce7224);
	background: -o-linear-gradient(bottom right, #ffc324, #ce7224);
	background: -moz-linear-gradient(bottom right, #ffc324, #ce7224);
	background: linear-gradient(to bottom right, #ffc324 , #ce7224);
	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}