/*NAves industriales*/
.cards_naves_ind{
    background: #f2f8f9;
}

.cont_c_naves_ind {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 20px;
}

.box_cards_naves_ind {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.title_othersolutions {
    text-align: center;
    margin-bottom: 20px;
}

/*Cards*/

.card_cont_naves_ind {
    box-sizing: border-box;
    margin: 10px;
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.card_naves_ind {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.green_solution:after {
    content:'';
    position: absolute;
    height: 50px;
    width: 50px;
    background: url('../img/naves/green.svg');
    background-size: contain;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.front_content_cards_naves_ind {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
}

.front_content_cards_naves_ind p {
  position: absolute;
  font-weight: 700;
  text-align: center;
  opacity: 1;
  color: #fff;
  background: var(--red_apx);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  box-sizing: border-box;
  padding: 7px 5px;
  width: 100%;
}

.front_content_cards_naves_ind img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.content_card_naves_ind {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
    background: #fff;
    color: #000;
    padding: 20px;
    line-height: 1.5;
    border-radius: 5px;
    pointer-events: none;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.content_card_naves_ind .heading {
    font-weight: 700;
}

.card_naves_ind:hover .content_card_naves_ind {
  transform: translateY(0);
}

.card_naves_ind:hover .front_content_cards_naves_ind {
  transform: translateY(-30%);
}

.card_naves_ind:hover .front_content_cards_naves_ind p {
  opacity: 0;
}