.home-services {
  background-color: rgb(246, 246, 249);
}
.home-services-inner {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.home-services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tp-service-item-wrapper {
  background: #fff;
  border-radius: 5px;
  padding: 40px;
  position: relative;
  height: 100%;
}
.tp-service-item-title {
  color: #000;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
}
.tp-service-item-icon {
  position: absolute;
  top: -22px;
  right: 38px;
  height: 64px;
  width: 64px;
  display: inline-block;
  line-height: 64px;
  text-align: center;
  border-radius: 5px;
  transition: transform 0.5s ease;
  background: #E85205;
  background: linear-gradient(90deg, rgba(232, 82, 5, 0.98) 0%, rgba(250, 170, 130, 1) 100%);
}
.tp-service-item-content {
  padding: 22px 0 30px 0;
}

.tp-service-item-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.tp-service-item-wrapper:hover .tp-service-item-thumb img {
  transform: scale(1.08);
}
.tp-service-item-thumb img {
  border-radius: 5px;
  width: 100%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.service-item {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  position: relative;
}
.service-item-image img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.service-body {
  padding: 20px 40px;
}
.service-body {
}
.service-content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}
.service-content h3:hover {
  color: var(--color-1);
}
.service-content {
  color: #484848;
  font-size: 18px;
}

@media (max-width:1200px){
  .tp-service-item-wrapper {
  padding: 20px;
}
.tp-service-item-icon {
  top: -24px;
  height: 54px;
  width: 54px;
  line-height: 53px;
}
}

@media(max-width:991.98px){
  .home-services-bottom .row {
  row-gap: 35px;
}
}

@media(max-width:767.98px){
  .home-services-head p {
  text-align: center;
}
}