@charset "utf-8";
/*------------------------------------------------*/
/*---------------[design sonar]-------------------*/
/*------------------------------------------------*/
.smartconstructorblock .icon .sonar{
    text-align: center;
}
.smartconstructorblock .icon .sonar h3{
    margin-bottom: 10px;
    font-size: 24px;
} 
.smartconstructorblock .icon .sonar h5 {
    font-size: 14px;
}
.smartconstructorblock .icon .sonar span {
	display: inline-block;
	font-size: 0px;
	margin: 15px 30px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
    text-shadow: 1px 1px 1px #333333;
}
.smartconstructorblock .icon .sonar span:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
}
.smartconstructorblock .icon .sonar span:before {
	speak: none;
	font-size: 24px;
	line-height: 55px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}   
.smartconstructorblock .icon .sonar span {
	background: rgba(255,255,255,0.1);
	-webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
	-moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
	transition: transform ease-out 0.1s, background 0.2s;
}
.smartconstructorblock .icon .sonar span:after {
	top: 0;
	left: 0;
	padding: 0;
	z-index: -1;
	box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}
.smartconstructorblock .icon .sonar:hover span {
	background: rgba(255,255,255,0.05);
	-webkit-transform: scale(0.93);
	-moz-transform: scale(0.93);
	-ms-transform: scale(0.93);
	transform: scale(0.93);
}
.smartconstructorblock .icon .sonar:hover span:after {
	-webkit-animation: sonarEffect 1.3s ease-out 75ms;
	-moz-animation: sonarEffect 1.3s ease-out 75ms;
	animation: sonarEffect 1.3s ease-out 75ms;
}
@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #c06225, 0 0 0 10px rgba(255,255,255,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #c06225, 0 0 0 10px rgba(255,255,255,0.5);
		-webkit-transform: scale(1.5);
		opacity: 0;
	}
}
@-moz-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
		-moz-transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

/*------------------------------------------------*/
/*--------------[design squared]------------------*/
/*------------------------------------------------*/
.smartconstructorblock .icon .squared{
    display: inline-block;
    width: 100%;
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
}
.smartconstructorblock .icon .squared:hover{
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
.smartconstructorblock .icon .squared .fa{
    height: 70px;
    width: 70px;
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
    line-height: 170%;
    margin: 0px;
    float: left;
}
.smartconstructorblock .icon .squared .detalii{
    float: left;
    width: calc(100% - 70px);
    text-align: left;
    height: 70px;
    text-transform: uppercase;
    background: #ffffff;
    padding: 7px 15px;
    font-size: 14px;
    overflow: hidden;
}
.smartconstructorblock .icon .squared h3{
    margin: 0 0 5px 0;
    font-size: 30px;
    font-weight: 300;
    color: #212121;
} 
.smartconstructorblock .icon .squared h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #424242;
}