@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css?family=Roboto:300'); */
.container {
	margin-top: 0px;
	margin-bottom: 60px;
}


.row {
/*	display: flex; */
/*	min-height: 250px; */
	max-height: 250px;
	padding: 0px;
	margin: 0px;
	}


.card {
		display: flex;	
	border-radius: 15px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.22);
  transition: .5s;
  background: #fdfdfd;
	padding: 5px;
	margin: 10px;
	
	
		-webkit-transition: 200ms ease-in-out;
	-o-transition: 200ms ease-in-out;
	transition: 200ms ease-in-out;
	
}

.card:hover {
		margin-bottom: -10px;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.7);
	        box-shadow: 0 0 5px rgba(0,0,0,0.7);
}

@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}
.image-box {
	text-align: center;
	display: block;
	width: auto;
	max-height: 50%;
}
.image-box img {
	max-height: 45px;
	width: auto;
}


body {
  margin-top: 0px;
  margin: 0, 0, 0, 0;
  background: url("/assets/images/bg.png") repeat-x;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a4a4a;
  text-align: justify;
  margin: 0;
  padding: 0;
/*  font-family: 'Roboto', sans-serif; */
}
#page {
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  min-height: 100%;
}

.card-footer {
border: none;
/* background-color: antiquewhite; */
}

.card-body {
/*	max-height: 40%; */
	text-align: center;
	padding:2px;
}


/* .card:hover {
  transform: scale(1.1);
}

.card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, .1);
  z-index: 1;
  transform: skewY(-5deg) scale(1.5);
} */