.home {
  width: 100%;
  background: #ffffff;
}
.home .banner {
  position: relative;
}
.home .banner p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bolder;
  text-transform: uppercase;
}
.home .banner img {
  width: 100%;
  display: block;
}
.home .main {
  width: 90%;
  margin: 60px auto;
}
.home .main .logos {
  display: flex;
  flex-wrap: wrap;
}
.home .main .logos .item {
  width: 16.4%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EDEDED;
  background: white;
  overflow: hidden;
}
.home .main .logos .item img {
  max-width: 90%;
  max-height: 200px;
  object-fit: contain;
  display: block;
  transition: all 600ms;
}
.home .main .logos .item:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
  .home .banner p {
    font-size: 24px;
  }
  .home .main {
    margin: 30px auto;
  }
  .home .main .logos .item {
    width: 48%;
    height: 150px;
  }
  .home .main .logos .item img {
    max-height: 150px;
  }
}

/*# sourceMappingURL=clients.css.map */
