section.main-pic {
  background-image: url(../imagens/2.jpg);
  background-size: cover;
  background-position: center;
  height: 70vh;
  width: 100%;
}

main {
  margin-top: 50px;
}


.container-sobre {
  max-width: 1200px;
  color: #fff;
  margin: 0 auto;
  padding: 0 40px 0 40px;
}

.sobre-img {
  width: 100%;
}

.row {
  margin-bottom: 20px;
}

.row::before,
.row::after {
  content: "";
  display: table;
}

.row::after {
  clear: both;
}

.column-left {
  width: 45%;
  float: left;
  margin-right: 5%;
  display: table;
}

.column-right {
  width: 45%;
  float: right;
  margin-left: 5%;

}

.slide-box {
  opacity: 1;
  transform: translateX(0%) scale(1);
  transition: all 1s;

}

.slide-box h2 {
  font-family: Titillium, sans-serif;
  font-size: 28pt;
  font-weight: 400;
  color: #6ec1e4;
  margin-bottom: -10px;
}

.slide-box p,
.slide-box ul li {
  font-size: 16pt;
}

.column-left.slide-box.hidden {
  opacity: 0;
  transform: translateX(-30%) scale(0.95);
}

.column-right.slide-box.hidden {
  opacity: 0;
  transform: translateX(30%) scale(0.95);
}