/*<css-9503>*/.card {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    --padding: 10px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 15px 15px 10px 40px;
}

.card:hover {
    --background-color: rgba(0,179,100,1);
	box-shadow: 0 5px 5px 0px rgb(0 0 0 / 0.3);
}

.card-image {
    padding-bottom: 7rem;
    border-radius: 12px;
	--background: rgba(0,179,100,1);
}

.card .card-image .img-fluid{
	width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease-in-out;
}

.card .img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease-in-out;
}

.img-flecha{
	transform: rotate(0deg);
    filter: grayscale(100%) brightness(1000%);
    width: 38px;
    position: absolute;
    bottom: 21px;
    right: 26px;
}

.card:hover .card-image .img-fluid {
    transform: scale(0.95);
	margin-top: -3px;
	border-radius: 15px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    --background-color: rgba(0,179,100,1);
    color: white;
    padding-bottom: 36%;
    max-height: 0;
    overflow: hidden;
    /* transition: all 0.5s ease-in-out; */
    transition: max-height 0.75s ease-in-out;
    box-sizing: border-box;
    /*font-size: 17px;*/
}

.card:hover .card-content {
    max-height: 60%;
    padding: 0px;
    opacity: 1;
}

.card-title {
	/*margin: 0px 0px 0px 10px;*/
	padding: 30px 25px 15px 40px;
    /*padding-left: 7%;*/
    /*font-weight: unset;*/
    /*font-size: 22px;*/
    /*font-family: MyriadPro-Regular;*/
    color: white;
	/*padding-top: 1rem;*/
	

    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
    max-width: 90%;
    /*margin-top: 4px;*/
}

.card:hover .card-title {
	padding: 15px 25px 15px 35px;
}

.col_1{
	/*padding-right: 30px;*/
    line-height: 1;
    text-align: left;
    flex: 1;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-description {
    margin: 0;
    /*padding-top: 30px;*/
	padding: 20px 35px 40px 35px;
    transition: all 0.5s ease-in-out;
    /*font-size: 18px;*/
    /*font-family: MyriadPro-Regular;*/
	opacity: 0;
	text-align: left;
	line-height: 1.2;
}

.card:hover .card-description {
    opacity: 1;
    /*padding: 20px 35px 40px 35px;*/
	padding: 0px 25px 40px 25px;
}

.card:hover .img-flecha{
	display: none;
}


/* SM */
@media (min-width: 576px) {
	
	.card:hover .card-description {
		opacity: 1;
		padding: 0px 25px 40px 35px;
	}
	
	/*.container{ 
		margin: 0px;
		padding: 0px;
	}*/
	

}

/* MD */
@media (min-width: 768px) {
	
	.card:hover .card-description {
		opacity: 1;
		padding: 0px 25px 40px 35px;
	}
	

}

/* LG */
@media (min-width: 992px) {
	
	.card:hover .card-description {
		opacity: 1;
		padding: 0px 25px 40px 35px;
	}
	
	.position-absolute-lg {
		position: absolute;
		right: 50px !important;
		top: -530px !important;
	}


}

/* XL */
@media (min-width: 1200px) {
	
	.card:hover .card-description {
		opacity: 1;
		padding: 0px 25px 40px 35px;
	}
	
	.position-absolute-lg {
		position: absolute;
		right: 50px !important;
		top: -700px !important;
	}
	

}

/* XXL */
@media (min-width: 1400px) {
	
	.card:hover .card-description {
		opacity: 1;
		padding: 0px 25px 40px 35px;
	}
	
	.position-absolute-lg {
		position: absolute;
		right: 50px !important;
		top: -650px !important;
	}
	

}
/*</css-9503>*/