/*----- ¿Quiénes somos? -----*/
.card-text{
    text-align: justify;
    align-items: center;
    color: #4C4A4A;
 /*   font-size:  1.125em;*/
}

/*-----Misión y Visión*/
.container-mv {
    background-color: #cedc00;
    margin-top: 5%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.card-mv {
    position: relative;
    width: 30rem;
    height: 25rem;
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 0.5rem #0000003b;
    transition: transform 0.4s ease-in-out;
}
.card-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
.card-vision {
    height: 20rem;
    margin-top: 3rem;
}
.card-mv:hover {
    transform: translateY(-20px);
    z-index: 3;
}
.card-mv:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}
.card-mv:hover::before {
    background: rgb(234, 234, 234);
}
.card-mision:hover::before,
.card-vision:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    border-radius: 10px;
}
.card-mv .title-mv,
.card-mv p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: justify;
    line-height: 1.3;
    opacity: 0;
}
.card-mv:hover .title-mv,
.card-mv:hover p {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    opacity: 1;
    transform: translateY(-20px);
}
.card-mv .title-mv {
    opacity: 1;
   /* font-size: 2em;*/
    color: rgb(255, 255, 255);
   /* font-weight: 600;*/
    margin-left: 2%;
}
.card-mision:hover .title-mv {
    color: rgb(0, 0, 0);
    opacity: 1;
    top: 20px;
   /* font-size: 2em;*/
    transform: translateY(-155px);
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 1.2rem;
}
.card-vision:hover .title-mv {
    color: rgb(0, 0, 0);
    opacity: 1;
    top: 10px;
   /* font-size: 2em;*/
    transform: translateY(-110px);
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 1.2rem;
}
.card-mv:hover p {
    opacity: 1;
    height: 70%;
    margin-left: 5%;
    margin-right: 5%;
    /*font-size: 14px;*/
    transform: translateY(-20px);
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 6%;
    padding-bottom: 4%;
    color: #4C4A4A;
}
/*¿Por que nosotros?*/
.accordion-item {
    border: none;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.accordion-button {
    border-color: #cedc00 !important;
}
.accordion-button:not(.collapsed) {
    background-color: #cedc00 !important;
    color: #fff !important;
}
.accordion-button:focus,
.accordion-button:active {
    border-color: #cedc00 !important;
    box-shadow: none !important;
}
/*-----Footer-----*/
.footer{
    margin-top: 10px;
    bottom: 0;
}

/*-----Media Queries-----*/
@media screen and (min-width:992px) {
    /*Misión y visión*/
    .card-mv:first-child {
        z-index: 2;
    }
    .card-mv:not(:first-child) {
        margin-left: -20px;
    }
}
@media screen and   (min-width:745px){
    .card-mision{
        width: 24rem;
        height:30rem;
    }
    .card-vision {
        width: 24rem;
        height: 25rem;
        align-items: center;
    }
    .card-mv:hover p {
      /*  font-size: 1em;*/
    }
}
