/* Item */
.regit-box-item { margin-bottom: 10px; }
.regit-box-item:last-child { margin-bottom: 0; }

/* Image */
.regit-box-item-image
{
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
}

.regit-box-item-image img
{
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.regit-box-item-image:hover img
{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.regit-box-item-title
{
    top: 20%;
    color: #fff;
    text-align: center;
    background: #230cb9b8;
    position: absolute;
    padding: 10px;
    font-weight: bold;
}
.regit-box-item-description
{
	top: 40%;
    color: #fff;
    text-align: center;
    background: rgba(13, 39, 77, 0.7);
    position: absolute;
}

.regit-box-item-link{}
.regit-box-item-link
{
	top: 60%;
    color: #fff;
    text-align: center;
    background: rgba(13, 39, 77, 0.7);
    position: absolute;
}