.home-service {
    background: #f6f5ef;
}

.home-service-head h2 {
  text-align: center;
}
.home-service-wapper {
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  color: #000;
  padding: 40px 40px;
  transition: .3s ease-in-out;
}
.home-service-heading {
  flex: 0 0 35%;
  z-index: 9;
  padding-right: 20px;
  position: relative;
}
.home-service-heading h3 {
  font-size: 24px;
  line-height: 1.4em;
  font-family: var(--font-03);
  font-weight: 700;
}
.home-service-content {
  flex: 0 0 51%;
  z-index: 9;
  padding-right: 20px;
  position: relative;
}
.home-service-icon {
  z-index: 9;
  flex: 0 0 14%;
  text-align: right;
  position: relative;
}
.home-service-icon i {
  font-size: 48px;
}
.home-service-wapper:hover div h3 {
  color: #fff;
}
.home-service-wapper:hover {
  background: #000;
  transition: .3s ease-in-out;
  border-radius: 5px;
}
.home-service-wapper:hover div i {
  color: #06b453;
}
.home-service-wapper:hover div .hr-text {
  color: #fff;
}
.home-service-wapper:last-child {
    border: none;
}
.home-service-inner {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    position: relative;
}

.shape-star {
  position: absolute;
  left: 0;
  top: 0;
}
.shape-star {
    position: absolute;
    left: 0;
    top: 0;
    animation: float-top-bottom 6s ease-in-out infinite;
}

@keyframes float-top-bottom {
  0% {
    transform:translatey(0)
  }
  50% {
    transform:translatey(-40px)
  }
  100% {
    transform:translatey(0)
  }
}

.swipeimage {
  position: fixed;
  top: 0;
  left: 0;
  width: 294px;
  height: 245px;
  object-fit: cover;
  z-index: 9;
  opacity: 0;
  visibily: hidden;
  pointer-events: none;
  border-radius: 7px;
  border: 5px solid #fff;
}
@media(max-width:1400px){
  .home-service-heading h3 {
  font-size: 26px;
}
}

@media(max-width:1200px){
  .home-service-heading {
  flex: 0 0 35%;
}
.home-service-heading h3 {
  font-size: 26px;
}
.home-service-icon {
  flex: 0 0 14%;
}
}
@media(max-width:991px){
  .home-service-inner {
  row-gap: 40px;
}
}
@media(max-width:768px){
  .shape-star img {
  max-width: 70px;
} 
.home-service-wapper {
  flex-direction: column;
  justify-content: center;
}
.home-service-content {
  flex: 0 0 1;
  padding-right:0px;
  position: relative;
  text-align: center;
}
.home-service-heading h3 {
  font-size: 22px;
}
.home-service-wapper {
  padding: 20px 20px;
}
}