/*Card Styles*/

.titulo_card h2{
    color: #ffffff;
    font-size: 37px;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0em;
    padding: 10px 0px;
}
.card-custom {
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.card-img{
    border-radius: 7px;
}
.card-body {
    border: 0px solid #E6E6E6;
    border-top: 0px solid #ffffff;
}
.card-body h5 {
    font-size: 16px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: 0em;
    color: #090A0A;
    padding-bottom: 10px;
}
.red_line{
    color: #D12A25 !important;
    line-height: 27px;
}
.card-body p {
    font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0em;
    color: #090A0A;
}

.card-body-precio {
    padding: 0px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* text-shadow: 0px 1px 1px rgba(252, 243, 243, 0.3), 0px 2px 2px rgba(255, 251, 251, 0.1); */
}
.card_precio{
    height: 461px;
    width: 345!important;
    border: 0px solid #E6E6E6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #55605f;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card_precio h4{
    font-size: 27px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: 0em;
    color: #ffffff;
    margin-bottom: 30px;
}
.card_precio p{
    font-size: 55px;
	font-weight: 800;
	line-height: 27px;
	letter-spacing: 0em;
    color: #ffffff;
    margin-bottom: 30px;
}
.card_precio span{
    font-size: 31px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0em;
    color: #ffffff;
    margin-bottom: 30px;
}

/*Media Querys*/
@media (max-width: 767px) {
    .card_precio h4{
        text-align: center; 
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .card_precio h4{
        font-size: 22px;
    }
    .card_precio p{
        font-size: 45px;
    }
}
