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

.home-infra {
  width: 100%;
  min-height: 100dvh;
  display: flex;
}

.home-infra .container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
}

.home-infra-text {
  width: 50%;
  padding: 0 60px;
}

.home-infra-text h1 {
  padding-top: 20px;
  font-size: clamp(30px, 5vw, 42px);
  color: var(--TitlesColor);
}

.home-infra-text span {
  display: inline-block;
  padding-top: 20px;
  color: var(--LegendsColor);
}

.home-infra-text .whatsapp-button {
  margin-top: 30px;
}

.home-infra-img {
  width: 60%;
  min-height: 100%;
  background-image: url(../images/solutionsImages/infrastructurehome.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

@media (max-width: 768px) {
  .home-infra {
    min-height: auto;
  }

  .home-infra .container {
    flex-direction: column;
    padding: 100px 20px 40px;
    gap: 20px;
  }

  .home-infra-text {
    width: 100%;
    padding: 0 10px;
  }

  .home-infra-img {
    width: 100%;
    min-height: 300px;
  }
}
