.card{
	width: 100%;
	height: 280px;
	border-radius: 20px;
	border: 0px !important;
	position: relative;
	overflow: hidden;
	background-color : rgba(0,0,0,0.1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 15px;
	
}

.card  .child {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  background-position: center;
  background-size: cover;
  transition: all .3s;
}
.card:hover .child{
	transform: scale(1.3);
	transition: all .3s;
}
 
.card.card_product{

	background-image: radial-gradient(#fcfcfe 30%, #e4ecf7);
	height: 320px;
}
.page_cuidat .card.card_product{
	background-image: radial-gradient(#fcfcfe 30%, #ceb2e3);
}
.card.card_product:after{
	display: none;
}

.card h2{
	text-transform: uppercase;
	text-align: center;
	color: white;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}
.card .btn{
	text-decoration: none;
	text-transform: uppercase;
}
.card h2, .card a{
	position: relative;
	z-index: 2;
}
.card:after{
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1;
	top: 0px;
	 background-image: linear-gradient(to bottom, rgba(0,0,0,0) 35%, #5fa9dd);
}

.card .new_badge{
	z-index: 2;
	background-color: #da2c3d;
	width: 100px;
	height: 30px;
	border-bottom-right-radius: 8px;
	border-top-right-radius: 8px;
	position: absolute;
	left: 0px;
	bottom: 80px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.card .new_badge:after{
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background: linear-gradient(to bottom, rgba(255,0,0,0) 50%, rgba(0,0,0,.25));;
}
.card .new_badge span{
	position: relative;
	z-index: 1;
	font-weight: 700;
	font-size: 14px;
	color: white;
	text-transform: uppercase;
}





.card.card_product .card_content{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 260px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.card.card_product .card_content img{
	max-width: 100%;
	max-height: 220px;
	margin: 0px auto;
}
@media all and (max-width: 768px) {
	.card.card_product .card_content img{
		max-height: 150px;
	}

	.card .animal{
		width: 40px !important;
		height: 40px  !important;
	}

	.card .animal .icon{
		width: 30px  !important;
		height: 30px  !important;
		margin-bottom: 5px !important;
	}
	.card .animal .icon img{
		max-width: 25px  !important;
		max-height: 25px  !important;
	}
	.card .animal span{
		width: 40px  !important;
		font-size: 11px !important;
	}
	.card .new_badge{
		bottom: 60px !important;
		width: 50px !important;
		height: 25px !important;
	}
	.card .new_badge span{
		font-size: 11px !important;
	}
	.card.card_product .card_footer h3{
		font-size: 12px !important;
	}
	.card.card_product .card_content{
		height: 220px !important;
	}
	.card.card_product{
		height: 260px !important;
	}
}
.card.card_product .card_footer,.card.card_video .card_footer{
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 15px;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.card_video{
	cursor: pointer;
}
.card.card_product .card_footer h3{
	color: #0f4f89;
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
}
.card.card_video .card_footer h3{
	color: white;
	font-weight: bold;
	font-size: 22px;
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
	text-shadow: 0px 1px 4px rgba(0, 0, 0, .5);
}

.card .animal{
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 70px;
	height: 70px;
	right: 10px;
	top: 10px;
}
.card .animal .icon{
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.card .animal .icon img{
	max-width: 50px;
	max-height: 50px;
}
.card .animal span{
	width: 70px;
	height: 20px;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: 1px solid #0f4f89;
	color: #0f4f89;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
}
.page_cuidat .card .animal span{
	border-color: #5a2d8c;
	color : #5a2d8c;
}

.card.card_video:after{
	display: none;
}

.card.card_video .card_play{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: #069fe0;
	border: 0px;
	cursor: pointer;
	position: absolute;
	left: 15px;
	top: 15px;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, .3);
}
.card.card_video .card_play i{
	color: white;
	font-size: 22px;
	margin: 0px;
	padding: 0px;
}

.card_file{
	width: 100%;
	height: auto;
	min-height: 150px;
	border-radius: 15px;
	background-color: #cbe4ee;
	margin-bottom: 15px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	cursor: pointer;
}

.card_header{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.card_header .card_header_icon{
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.card_header .card_header_icon i{
	font-size: 40px;
	color : #0f4f89;
}
.card_header .card_header_content h3, .card_header .card_header_content p{
	margin: 0px;
	padding: 0px;
	color : #0f4f89;
}
.card_header .card_header_content h3{
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}
.card_header .card_header_content p{
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.card_post{
	cursor: pointer;
	text-decoration: none;
	width: 100%;
	margin-bottom: 15px;
}

.card_post .card_image{
	width: 100%;
	height: 300px;
	border-radius: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.card_post h2{
	font-size: 24px;
	color: #64777f;
	font-weight: 700;
	text-align: center;
	margin-bottom: 5px;
	padding-bottom: 0px;
}
.card_post p{
	color : #72838a;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

.card_post .card_content{
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.card_post a{
	color : #72838a;
	text-decoration: none;
	text-align: center;
	margin: 0px auto;
	display: block;
}

@media all and (max-width: 768px) {
	.card h2{
		font-size: 18px;
	}
	.card.card_video{
		border-radius: 0px;
	}

	.card_post{
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	.card_post .card_image{
		width: 100px;
		height: 100px;
		min-width: 100px;
	}
	.card_post h2{
		margin: 0px;
		padding: 0px;
		font-size: 18px;
	}

	.card{
		height: 230px;
	}
}

.card p{
	text-align: center;
	z-index: 4;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}

ul.social li:hover  a , ul.social li:focus a  {
	transition: all 200ms;
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}