
/* ============================================================
  GLOBAL
============================================================ */
	
	.effects .img {
	  position: relative;
	  float: left;
	  width: 100%;
	  overflow: hidden;
	}
	.effects .img:nth-child(n) {
	  margin-right: 0;
	}
	.effects .img:first-child {
	  margin-left: 0;
	}
	.effects .img:last-child {
	  margin-right: 0;
	}
	.effects .img img {
	  display: block;
	  margin: 0;
	  padding: 0;
	  max-width: 100%;
	  height: auto;
	}
	.overlay {
	  display: block;
	  position: absolute;
	  z-index: 20;
	  background: rgba(0, 0, 0, 0.5);
	  overflow: hidden;
	  -webkit-transition: all 0.5s;
	  -moz-transition: all 0.5s;
	  -o-transition: all 0.5s;
	  transition: all 0.5s;
	}

/* ============================================================
  EFFECT 3 - SLIDE IN LEFT
============================================================ */
	#grid .overlay {
	  top: 0;
	  bottom: 0;
	  left: 0;
	  width: 0;
	  height: 0;
	}
	
	 #grid .img.hover .overlay  {
	  width: 100%;
	  height: 100%;
	}

	.social-media {
		list-style: none;
		display: inline-block;
		margin-left:10px;
		
	}
	

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
	
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto; 
   }

.space-adjust{
	margin-bottom: 25px;
}

.space-adjust-top{
	margin-top: 25px;
}

/*Card Effect*/


/* Float three columns side by side */
.column-card {
  float: left;
  width: 33.3%;
  padding: 10px 10px;
}

/* Remove extra left and right margins, due to padding */
.row-card {margin: 0 -5px;}

/* Clear floats after the columns */
.row-card:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 1000px) {
  .column-card {
    width: 50%;
    display: block;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .column-card {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}


/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 12px;
  text-align: center;
  background-color: #fffdfd;
  transition: 0.3s;
  border-radius: 10px;
}

.card:hover {
  box-shadow: 0 4px 30px 0 rgba(0,0,0,0.4);
}

img .image-card {
  border-radius: 10px 10px 10px 10px;
}