
#baseGasJetfCont{
  float: left;
  display: flex;          /* activa flexbox */
  justify-content: center; /* centra horizontalmente */
 
  margin: 0;
  padding: 0;
	padding-top: 2vh;
	padding-bottom: 2vh;
  width: 100%;
       /* altura completa de la ventana */
  background-color: #fafafa;
	
}


#divContGasjet_10 {
	float: left;
    width: 75%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    /*overflow: hidden;*/
	margin-bottom: 0px;
	border-radius: 7px;
	/*padding-top: 60px;*/
}

#bgrGasJet {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 7px;
	cursor: pointer;
   /* z-index: -1;*/
	filter: contrast(90%);
	transition: all 0.5s ease; /* suavidad */
}


#divContGasjet_10:hover img {
  filter: contrast(110%); /* aumenta contraste */
}

#divContGasjet_10 > h1 {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	font-size: 2.1rem;
	text-align: center;
	cursor: pointer;
}