.banner-box-container {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-bottom: 50px;
    margin-top: 50px;
}

.banner-box-container-body {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    justify-content: center;
}

.item-list-container .content-desc {
    color: #212424 !important;
}

.banner-box {
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

/* Parent Container */
.content_img{
    position: relative;
    width: 100%;   
    float: left;
    margin-right: 10px;
   }

   .content_img-body{
    margin-right: 0px !important;
}


/* Child Text Container */
.content_img div{
    position: absolute;
    bottom: 0;
    right: 0;
    background: black;
    color: white;
    margin-bottom: 5px;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s, opacity 0.5s linear; 
    transition: visibility 0s, opacity 0.5s linear;
   }

.content_img:hover{
    cursor: pointer;
}

.content_img:hover div{
    width: 200px;
    padding: 8px 15px;
    visibility: visible;
    opacity: 0.7; 
    float: left;
}

.imagen{
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid gray !important;
}

.imagen-body{
    width: 100% !important;
}

.tooltiptext {
	visibility: hidden;
	width: 220px;
	background-color: #0000009d;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
  
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
  }
  
  .carousel_slot:hover .tooltiptext {
	visibility: visible;
  }

 
  @media screen and (max-width:600px) {
    .banner-box-container {
        flex-direction: column;
    }
    
}
  