.grid_container_explore {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

@media (min-width: 1213px) {
    .item_a_explore{
        font-size: 1.25rem !important;
    }
    .img_explore {
        width: 100%;
        height: 8rem;
    }
}
@media (max-width: 1212px) {
    .item_a_explore{
        font-size: 1.08rem !important;
    }
    .img_explore {
        width: 90%;
        height: 7rem;
    }
}
@media (max-width: 1017px) {
    .grid_container_explore {
        grid-template-columns: repeat(2, 1fr);
    }
    .item_a_explore{
        font-size: 1rem !important;
    }
    .img_explore {
        width: 90%;
        height: 7rem;
    }
}
@media (max-width: 773px) {
    .grid_container_explore {
        grid-template-columns: 1fr;
    }
    .item_a_explore{
        font-size: 0.85rem !important;
    }
    .img_explore {
        width: 80%;
        height: 6rem;
    }
}

.grid_item_explore {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  border-radius: 16px 0px 16px 0px;
  overflow: hidden;
}

.item_a_explore{
    color: unset;
    text-decoration: unset;
}

.explore_label {
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*border: 2px solid rgb(12, 67, 129);
  border-radius: 16px 0px 16px 0px;*/
  text-decoration: none;
  user-select: none;
  max-width: 50%;
  min-height: 50px;
  justify-content: center;
}

.explore_icon {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img_explore {
    object-fit: contain;
    display: block;
}