:root {
  --PrimaryColor: #137695;
  --TitlesColor: #043c4d;
  --LegendsColor: #8c9394;
  --MenuHoverColor: #00c3ff;
  --ButonTextColor: #ffffff;
}

.bussines-home {
  width: 100%;
  background-color: aliceblue;
  padding-top: 60px;
}

.bussines-home .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.bussines-home h1 {
  font-size: 72px;
  text-align: center;
  margin: 0 auto;
  color: var(--TitlesColor);
}

.bussines-home span {
  color: var(--LegendsColor);
}

.bussines-history {
  width: 100%;
}

.bussines-history .container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.history-text {
  width: 50%;
}

.history-text h2 {
  color: var(--TitlesColor);
  font-size: 32px;
}

.history-text p {
  padding-top: 10px;
  line-height: 22px;
  color: var(--LegendsColor);
  text-align: justify;
}

.history-img {
  width: 50%;
  height: 500px;
  background-image: url(../images/Person/bitEmpresa.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.history-img:nth-last-of-type(2) {
  background-image: url(../images/dashs/MANUTENCAOPREDITIVA.png);
}
.supporters {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
}

.supporters h3 {
  color: var(--TitlesColor);
  font-size: 32px;
  padding-top: 50px;
  text-align: center;
}

.supporters img {
  width: 100%;
}

@media (max-width: 768px) {
  .bussines-history .container {
    flex-direction: column;
  }

  .bussines-history .container:last-of-type {
    flex-direction: column-reverse;
  }

  .history-text,
  .history-img {
    width: 100%;
  }
}
