/* Seção 6 */

.section6 {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-two);
  height: 650px;
}

/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .section6 {
    margin-top: 50px;
    height: 400px;
  }

  .section6 img {
    width: 380px;
  }

}

@media (max-width: 540px) {
  .section6 {
    margin-top: 50px;
    height: 400px;
  }

  .section6 img {
    width: 380px;
  }
}