/* Seção 4 */

.section4 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  height: 200px;
}

.section4 h1 {
  font-family: "TonCondensed-Light", Sans-serif;
  font-size: 39px;
  font-weight: 600;
}


/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .section4 h1 {
    font-size: 24px;
  }
}

/* Celulares */
@media (max-width: 777px) {
  .section4 h1 {
    font-size: 24px;

  }

  .section4 img {
    width: 380px;
  }
}

@media (max-width: 540px) {
  .section4 img {
    width: 380px;
  }
}