/*Contact Boxes Styles*/
#top .row {
	display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.row>* {
    width: 100%;
    max-width: 100%;
}
#top .col {
	padding: 0 10px;
}
#top .feature-box{
	border-radius: 12px;
    border: 1px solid #ececec;
    text-align: center;
	margin-bottom: 20px;
	margin-left: 0;
	padding: 20px;
	cursor: pointer;
	list-style: none;
	transition: box-shadow .25s ease-out;
}
#top .feature-boxes-area .feature-box:hover, #top .feature-boxes-area .feature-box:focus {
    box-shadow: 0 4px 16px 0 rgba(0,0,0,.16);
}
#top .feature-box .icon {
	position: relative; 
}
#top .feature-box .icon .icon-bgcolor{
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 999px;
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    transition: .25s ease-in;
    -webkit-transition: transform .25s ease-in;
}

#top .feature-box .icon img {
	width: 50px;
	position: relative;
    z-index: 10;
}
#top .feature-box li {
	margin: 0;
}
#top .feature-boxes-area .col:nth-child(1) .icon-bgcolor{
	background: #C1F0F0;
}
#top .feature-boxes-area .col:nth-child(2) .icon-bgcolor{
	background: #F7D8B7;
}
#top .feature-boxes-area .col:nth-child(3) .icon-bgcolor{
	background: #B5D0F8;
}
#top .feature-boxes-area .col:nth-child(4) .icon-bgcolor{
	background: #F0BFCD;
}
#top .feature-boxes-area .col:nth-child(5) .icon-bgcolor{
	background: #DFD1F0;
}
#top .feature-boxes-area .col:nth-child(6) .icon-bgcolor{
	background: #FAF1C4;
}
#top .feature-box .item:hover .icon-bgcolor, #top .feature-box .item:focus .icon-bgcolor{
    -webkit-transform: translateX(-8px) translateY(-8px);
    transform: translateX(-8px) translateY(-8px);
  }
#top .feature-box .item:hover .icon-bgcolor, .item:focus #top .feature-box .icon-bgcolor{
    -webkit-animation-name: slideZ;
    animation-name: slideZ;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
@keyframes slideZ {
    0% { opacity:1; }
    25% { opacity:1; }
    50% { opacity:1; }
    100% {     
      opacity: 1;
      -webkit-transform: translateX(8px) translateY(8px);
      transform: translateX(8px) translateY(8px); 
    }
  }
#top .feature-box .item h3 {
	color: #232333
    font-size: 24px;
    font-weight: 700;
	margin-top: 10px;
	line-height: 29px;
}
#top .feature-box .item .description {
    font-size: 16px;
    font-weight: 400;
    color: #232333;
    font-style: normal;
    margin-bottom: 0px;
}
@media (min-width: 576px){
	#top .col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}
@media (min-width: 768px) {
	#top .col-md-4 {
	    flex: 0 0 auto;
	    width: 33.33333333%;
	}	
}
