body {
  font-family: "Muli", sans-serif;
  font-weight: 400;
  font-size: 20px/30px;
  line-height: 1.4;
  letter-spacing: 0px;
}

#appHome {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
#appHome .container-fluid {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#appHome .container-fluid .content {
  margin: 4rem 2rem;
  width: 90%;
  max-width: 1404px;
  height: auto;
  display: grid;
  grid-gap: 10%;
  grid-auto-columns: 2fr 5fr;
  grid-template-areas: "text image";
}
#appHome .container-fluid .content .text {
  grid-area: text;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#appHome .container-fluid .content .text > div {
  display: flex;
  flex-direction: column;
  row-gap: 4vh;
}
#appHome .container-fluid .content .text > div .description {
  margin: 0;
}
#appHome .container-fluid .content .text > div .title {
  width: 100%;
  height: auto;
  max-width: 408.24px;
  max-height: 57.3px;
}
#appHome .container-fluid .content .text > div .button {
  width: min-content;
  padding: 13px 70px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
#appHome .container-fluid .content .text > div .logo {
  display: flex;
  flex-direction: column;
  margin-top: 10vh;
}
#appHome .container-fluid .content .text > div .logo small {
  font: 16px/20px;
}
#appHome .container-fluid .content .text > div .logo img {
  width: 180.03px;
  height: 44.53px;
}
#appHome .container-fluid .content .image {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: center;
}
#appHome .container-fluid .content .image img {
  width: 100%;
  height: auto;
  max-width: 895px;
  max-height: 754px;
}
@media (max-width: 615px) {
  #appHome .container-fluid .content {
    width: 80%;
    max-width: 1404px;
    height: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-gap: 5%;
    grid-template-areas: "image" "text";
  }
  #appHome .container-fluid .content .text {
    justify-content: center;
  }
  #appHome .container-fluid .content .text > div {
    align-items: center;
  }
  #appHome .container-fluid .content .text > div .description {
    text-align: center;
  }
}
