
.gridcontainer {
  display: grid;
  grid-template-columns: 50% 50%;
gap: 6px;
 // background-color: dodgerblue;

}



.gridcontainer > div > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 20vh;
object-fit: cover
}




#contentTabFades{
	display:none;
}

#contentTabFades .ngfader{
	padding: 0;
	margin: 0;
	background-color: #c4a83a17;
}

#contentTabFades .ngfader .img-caption-bar    {
	display: flex;
	white-space:nowrap;
	align-items: center;
	width:100%;
	background: rgb(199, 150, 88);
	height: 40px;
}



#contentTabFades .ngfader .img-caption-bar .mycaption {
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	color: #fff;
	text-align: center;
}

#contentTabFades .ngfader .img-caption-bar .icon-close-fader {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 48px;
	height: 24px;
	cursor: pointer;
	margin-right: 8px;
	color: #fff;
	fill: currentColor;
}





#contentTabFades .ngfader .mySlides {display: none}

#contentTabFades .ngfader .mySlides .mySlidesImg{
	  border-radius: 5px;
	  /* shrink or grow image */

	width: 100%;
	height: 400px;
	object-fit: scale-down;
transition: opacity 1s ease 0s;

	}



#contentTabFades .mySlidesDecription {display: none}

/* Caption text */
#contentTabFades .mySlidesDecription .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  width: 100%;
}


/* Next & previous buttons */
#contentTabFades .prev, #contentTabFades .next {
  cursor: pointer;
 

  width: auto;
  padding: 16px;

  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}



/* The dots/bullets/indicators */
#contentTabFades .dot {
	border-radius: 10px;
	display: inline-block;
	height: 16px;
	margin-left: 4px;
	width: 16px;
	background-color: #bbb;
	cursor: pointer;
	color: #4f4f4f;
	transition: background-color 0.6s ease;
}

#contentTabFades .selected{
	background-color: #e44429;

}



/* Fading animation */
#contentTabFades .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
 #contentTabFades  .prev, #contentTabFades  .next, #contentTabFades .text {font-size: 11px}
}