.border-box {
    margin-top: 40px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    color: #666;
    text-align: center;
    position: relative;
    padding: 50px 0;
    min-height: 230px;
    cursor: default;
}
.border-box ul {
	list-style-type: none;
	margin: 0;
}
    .border-box > a {
        text-decoration: none;
        -webkit-transition: padding 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
        -moz-transition: padding 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
        -o-transition: padding 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
        transition: padding 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }
.circle {
    position: absolute;
    top: -36px;
    left: 50%;
    text-align: center;
    font-size: 32px;
    line-height: 70px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-shadow: 0 3px 0 rgba(0,0,0,0.1);
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    -moz-transition: background-color 0.25s ease, color 0.25s ease;
    -o-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
    background-color: #75c2bd;
    color: #fff;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
    .circle:before {
        display: block;
        content: '';
        position: absolute;
        left: -5px;
        top: -5px;
        padding: 5px;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        opacity: 0;
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        box-shadow: 0 0 0 3px #666;
    }
.border-box:hover .circle:before {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.border-box:hover .circle {
	background-color: #1e3262;
}
.border-box h3 {
    color: #1e3262;
    font: 17px/34px Arial,Verdana,Geneva,sans-serif;
	margin-bottom: 10px;
}
.border-box li {
	line-height: 25px;
}
.border-box ul + a {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #75c2bd;
    font-size: 14px;
}
.border-box ul + a:hover {
	color: #666;
	text-decoration: underline;
}
.border-box ul a li {
    color: #666;
    font-size: 12px;
}
@media (max-width: 767px) {
	.border-box {
		margin-top: 60px;
		margin-bottom: 30px;
	}
}
@media (max-width: 979px) and (min-width: 768px) {
	.row-fluid [class*="span"] {
		width: 100% !important;
	}
}