.home {
  min-height: 100vh;
}

.home-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-content {
  display: flex;
  align-items: center;
  gap: 250px;
  margin: auto 0 0;
}

.content {
  flex: 1 0 0;
  max-height: 362px;
}

.content p {
  color: #fff;
}

.content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  margin: auto auto 30px;
  filter: unset;
}

/* .content:hover img {
  filter: unset;
  transition: filter 0.5s linear;
}

.content:hover p {
  color: #fff;
  transition: color 0.5s linear;
} */

.contact-info {
  margin: 40px 0 auto;
  color: #fff;
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  margin: 0 0 auto;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .home-content {
    flex-direction: column;
    gap: 40px;
  }

  .content img {
    filter: unset;
  }

  .content p {
    color: #fff;
    font-size: 16px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .home-content {
    gap: 20%;
  }
}