/*** BOX 2 ***/
.box1 .imgcont:after,
.box2 .imgcont:after {
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:200px;
	background: -webkit-linear-gradient(transparent, rgba(0,0,0,.7));
    background: -o-linear-gradient(transparent, rgba(0,0,0,.7));
    background: -moz-linear-gradient(transparent, rgba(0,0,0,.7));
    background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.box1 .imgcont:before,
.box2 .imgcont:before {
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	box-shadow:inset 0px 0px 0px 0px rgba(0,0,0,0.25);
	transition:all ease .5s .5s;
}
.box1:hover .imgcont:before,
.box2:hover .imgcont:before,
.box2:hover .img:before,
.hood-item[data-title="hoveractive"] .box2 .imgcont:before {
	box-shadow:inset 0px 0px 0px 20px rgba(0,0,0,0.25);
	transition:all ease .5s .5s;
}
.box1:hover .imgcont:before {
	box-shadow:inset 0px 0px 0px 25px rgba(0,0,0,0.25);
}
.box2 .color-element {
	position:absolute;
	top:50%;
	left:50%;
	width:calc(100% - 40px);
	height:calc(100% - 40px);
	box-shadow:inset 0px 0px 0px 0px rgba(255,255,255,.25);
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transition:all ease .5s;
}
.box2:hover .color-element,
.hood-item[data-title="hoveractive"] .box2 .color-element {
	box-shadow:inset 0px 0px 0px 20px rgba(255,255,255,.25);
	transition:all ease .5s .75s;
}
.box2 .color-element:before {
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:0%;
	height:0%;
	opacity:0;
	border-top:1px #fff solid;
	border-left:1px #fff solid;
	transform-origin:bottom left;
	transition:all ease .5s;
}
.box2 .color-element:after {
	content:"";
	position:absolute;
	bottom:0px;
	right:0px;
	width:0%;
	height:0%;
	opacity:0;
	border-right:1px #fff solid;
	border-bottom:1px #fff solid;
	transform-origin:bottom left;
	transition:all ease .5s;
}
.box2:hover .color-element:before,
.box2:hover .color-element:after,
.hood-item[data-title="hoveractive"] .box2 .color-element:before,
.hood-item[data-title="hoveractive"] .box2 .color-element:after {
	width:100%;
	height:100%;
	opacity:1;
}

.box2 .img-box-text-cont {
	position:absolute;
	bottom:0%;
	left:0px;
	width:100%;
	text-align:center;
	transform:translateY(0%);
	-ms-transform:translateY(0%);
	-webkit-transform:translateY(0%);
	transition:all ease .5s;
}
.box2:hover .img-box-text-cont,
.hood-item[data-title="hoveractive"] .box2 .img-box-text-cont {
	bottom:50%;
	transform:translateY(50%);
	-ms-transform:translateY(50%);
	-webkit-transform:translateY(50%);
}
.box2 .regional-img-title1 {
	color:#fff;
	font-size:30px;
	font-family:'Proxima N W01 X Cd Bold';
	position:relative;
	line-height:1em;
	margin-bottom:0px;
	transition:all ease .5s;
}
.box2 .regional-img-title1:after {
	content:"";
	position:absolute;
	bottom:0px;
	left:50%;
	width:0%;
	height:1px;
	opacity:0;
	background-color:#fff;
	transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	transform-origin:center;
	-ms-transform-origin:center;
	-webkit-transform-origin:center;
	transition:all ease .5s;
}
.box2:hover .regional-img-title1:after,
.hood-item[data-title="hoveractive"] .box2 .regional-img-title1:after {
	width:70%;
	opacity:1;
	transition:all ease .5s .25s;
}
/*** END BOX 2 ***/