.row {
  display: flex;
  flex-wrap: wrap;

	width: 100vw;
	left: -3px;
	position: relative;
}

/* Create four equal columns that sits next to each other */
.column {
  flex:  calc(20% - 9px);
  max-width:  calc(20% - 9px);
  padding: 0 4px;
	display: table;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.column img.loaded {
 opacity: 1;

}

.column .wrapper {
	position: relative;
  cursor: pointer;
}
.column .text {
	position: absolute;
	left:50%;
	top:50%;
	width: 100%;
	height: auto;
	transform: translate(-50% , -50%);
	display: none;

}

.column .clone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column .text:hover {
	display:block;
}
.column img:hover + .text {
	display:block;
}
.column .wrapper {
  transition: opacity 1s ease;
}
.column .wrapper:hover img {
	    opacity: 0.1;
}
.text h3 {
	text-align: center;
	font-family: 'Teko', sans-serif;
	font-weight: 400;
  font-size: 30px;
  margin: 0px;
}
 .text p {
	 text-align: center;
	 font-family: 'Teko', sans-serif;
	 font-weight: 300;
	 font-size: 22px;
   margin: 0px


 }

 .base-modal {

   position: fixed;
   top:0px;
   left:0px;
   width: calc(100vw - 60px);
   height: calc(100vh - 60px);
   padding: 30px;
   background: rgba(255,255,255, 0.6);
   z-index: 999999;
 }
.base-modal img {

  max-width: calc(100% - 60px);
  max-height: calc(100% - 60px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid white;
}
.base-modal .fechar {
  position: absolute;
  top: 4px;
  right: 20px;
  font-family: Aral, sans-serif;
  font-weight: 400;
  background: white;
  padding: 0px 10px 2px 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999999;
}
#fundo_base {
  overflow-x: hidden;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600plessx) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

#faixa_central
{
position:fixed !important;

}
