/* The circle */
.francises>.section{
	display: flex;
    justify-content: center;
}
.ec-circle{
    width: 320px;
    height: 320px;
	-webkit-border-radius: 210px;
	-moz-border-radius: 210px;
	border-radius: 50%;
	text-align: center;
    overflow: hidden;
	font-family:'Kelly Slab', Georgia, serif;
    
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0);
	-moz-box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0);
	box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0);
	/*
	-webkit-box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0),
		inset 0 0 0 4px #80b03d;
	-moz-box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0),
		inset 0 0 0 4px #80b03d;
	box-shadow: 
        inset 0 0 1px 230px rgba(0,0,0,0),
		inset 0 0 0 4px #80b03d;
		*/
	-webkit-transition: box-shadow 400ms ease-in-out;
	-moz-transition: box-shadow 400ms ease-in-out;
	-o-transition: box-shadow 400ms ease-in-out;
	-ms-transition: box-shadow 400ms ease-in-out;
	transition: box-shadow 400ms ease-in-out;
	/*For IE < 9 so that we have some kind of effect */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	display: block;
	outline: none;
	position: relative;
}
.ec-circle .defaultimg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	/*filter: brightness(65%);*/
}
.ec-circle .hoverimg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	display: none;
}
.ec-circle.ec-circle-hover .defaultimg{
	display: none;
}
.ec-circle.ec-circle-hover .hoverimg{
	display: block;
}

.ec-circle-hover{
	-webkit-box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		0 0 10px rgba(0,0,0,0.3);
	-moz-box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		0 0 10px rgba(0,0,0,0.3);
    box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		0 0 10px rgba(0,0,0,0.3);
	/*
	-webkit-box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		inset 0 0 0 8px #80b03d,
		0 0 10px rgba(0,0,0,0.3);
	-moz-box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		inset 0 0 0 8px #80b03d,
		0 0 10px rgba(0,0,0,0.3);
    box-shadow: 
		inset 0 0 0 0 rgba(0,0,0,0.32),
		inset 0 0 0 8px #80b03d,
		0 0 10px rgba(0,0,0,0.3);
	*/
	/*For IE < 9 so that we have some kind of effect */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
/* Text inside of circle */

.ec-circle h3{
	color: #fff;
	font-size: 43px;
	/*line-height: 273px;*/
	margin: 0;
	padding: 39% 0;
	text-shadow: 0px 0px 100px #fff;
	text-transform: uppercase;
	-webkit-transition: text-shadow 400ms ease-in-out, color 400ms ease-in-out;
	-moz-transition: text-shadow 400ms ease-in-out, color 400ms ease-in-out;
	-o-transition: text-shadow 400ms ease-in-out, color 400ms ease-in-out;
	-ms-transition: text-shadow 400ms ease-in-out, color 400ms ease-in-out;
	transition: text-shadow 400ms ease-in-out, color 400ms ease-in-out;
	cursor: pointer;
}
.ec-circle h3 span{
	display: none;
    font-size: 22px;
    color: #FFF;
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    text-transform: initial;
}

.ec-circle-hover h3{
	text-shadow: 0px 0px 4px #000;
	color: #FFF;
}
.ec-circle-hover h3 span{
	display: block;
}
@media (max-width: 767px){
	.ec-circle h3 span{
		display: block;
	}
}