﻿.title {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    padding: 40px;
    line-height: normal !important;
}


.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card_promo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

    .card_promo > * {
        flex: 1 100%;
    }

.grid__item {
    border: 1px solid #DED9D8 !important;
    background-color: #fff;
    border-radius: 0.4rem;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
    width: 350px;
    /* height: 360px; */
    margin: 10px !important;
    padding: 15px 15px 0px 15px;
}

    .grid__item:hover {
        -webkit-box-shadow: 0px 0px 12px 3px rgba(181,181,181,1);
        -moz-box-shadow: 0px 0px 12px 3px rgba(181,181,181,1);
        box-shadow: 0px 0px 12px 3px rgba(181,181,181,1);
        transition-duration: 0.35s;
    }

.card__img {
    width: 100%;
    height: 10rem;
    flex: 1;
}

.card__content {
    padding: 2rem 1rem 2rem 1rem !important;
    padding-bottom: 0rem;
    width: 100%;
}

.card__header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d0d0d;
    margin-bottom: 1rem !important;
    text-align: initial;
    line-height: 2.0rem;
    text-align: justify;
}

.card__text {
    font-size: 1.18rem;
    line-height: 1.2;
    color: #3d3d3d;
    margin-bottom: 2.5rem !important;
}

.card__btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: #FA0001;
    border: none;
    border-radius: 0.4rem;
    transition: 0.2s;
    cursor: pointer;
}

    .card__btn span {
        margin-left: 1rem;
        transition: 0.2s;
    }

    .card__btn:hover, .card__btn:active {
        background-color: #d62021;
    }

        .card__btn:hover span, .card__btn:active span {
            margin-left: 1.5rem;
        }

.flecha {
    font-weight: bold;
    font-size: 25px;
}


@media only screen and (max-width: 600px) {
    .card__btn{
        font-size: 1.2rem;
    }

    .flecha {
        display: none;
    }

    .grid {
        padding: 0px !important;
    }

}