.home-business {
  padding: 40px 60px;
  transition: all .5s ease-in-out;
  margin: 0;
  border-radius: 0;
  background: #000;
  border-color: linear-gradient(90deg,rgba(194, 159, 77, 1) 0%, rgba(226, 211, 148, 1) 50%, rgba(194, 159, 77, 1) 100%);
  border-bottom: 5px solid #caa951;
  border-top: 5px solid #caa951;
  overflow: hidden;
}
.home-business-left p {
  color: #fff;
}
.home-business-left h2 {
  font-size: 45px;
  line-height: calc(32px + 32*(100vw - 320px)/1600);
  color: #fff;
  margin-top: 8px;
  margin-bottom: 0;
  font-family: var(--font-02);
  font-weight: 400;
}
.home-business-right a {
  width: 40px;
  height: 40px;
  background:#cda85f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  color: #ffff;
} 
.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: var(--color-1);
}
.home-business:hover .home-business-left h2 {
  color: var(--color-1);
}
.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;
}
.business-logo.business-logo-dark img {
  max-width: 140px;
}
.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;
}*/
.business-logo.business-logo-white {
  display: none;
}
.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;
}
.home-business-left h2 {
  font-size: 35px;
}
.business-logo {
  position: absolute;
  top: -28px;
  left: -22px;
  margin: 0;
  animation: spin 6s infinite linear;
}
}
@media(max-width:768px){
  .home-business-inner .row {
  align-items: center;
  row-gap: 20px;
}
.home-business {
  padding: 30px 10px;
}
.home-business-right {
  height: 134px;
}
.home-business-inner .row {
  row-gap: 20px;
}
.business-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  animation: spin 6s infinite linear;
}
}

@media(max-width:576px){
  .home-business-left h2 {
  font-size: 25px;
}
}