.home-business {
  padding: 40px 60px;
  background-color: #121212;
  transition: all .5s ease-in-out;
  border: 1px solid #121212;
  margin: 0;
  border-radius: 0;
}
.home-business-left p {
  color: #fff;
}
.home-business-left h2 {
  font-size: calc(24px + 24*(100vw - 320px)/1600);
  line-height: calc(32px + 32*(100vw - 320px)/1600);
  color: #fff;
  margin-top: 8px;
  margin-bottom: 0;
}
.home-business-right a {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}
.home-business-inner .row {
  align-items: center;
}

.home-business:hover {
  background: #fff;
  border-color: var(--color-3);
}
.home-business:hover .home-business-left p {
  color: #121212;
}
.home-business:hover .home-business-left h2 {
  color: #121212;
}
.home-business:hover .home-business-right a {
  background: #121212;
  color: #fff;
}

.business-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  animation: spin 6s infinite linear;
}
.home-business-right {
  position: relative;
  max-width: 134px;
  height: 135px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-logo.business-logo-dark {
  display: none;
}
.home-business:hover .business-logo.business-logo-dark {
  display: flex;
}
.home-business:hover .business-logo.business-logo-white {
  display: none;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.business-logo.business-logo-white img {
  width: 100%;
}

@media(max-width:991px){
  .home-business-right {
  height: 84px;
}
}
@media(max-width:767px){
  .home-business-inner .row {
  align-items: center;
  row-gap: 20px;
}
.home-business {
  padding: 30px 10px;
}
.home-business-right {
  height: 134px;
}
}