.ctn1 {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.ctn1 .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ctn1 .con .left {
  width: 50%;
  overflow: hidden;
}
.ctn1 .con .left img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .con .left:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn1 .con .right {
  width: 42%;
}
.ctn1 .con .right .text {
  margin-top: 40px;
}
.ctn1 .con .right .text p {
  color: #666;
}
@media screen and (max-width: 1600px) {
  .ctn1 {
    padding: 6vw 0;
  }
  .ctn1 .con .right .text {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .ctn1 {
    padding: 40px 0;
  }
  .ctn1 .con {
    display: block;
  }
  .ctn1 .con .left {
    width: 100%;
  }
  .ctn1 .con .right {
    width: 100%;
    margin-top: 20px;
  }
  .ctn1 .con .right .text {
    margin-top: 14px;
  }
}
/*# sourceMappingURL=business.css.map */