
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
 
  .service {
    margin-bottom: 30px; 
  }
}

.service {
  display: block;
  padding: 45px 23px;
  border-radius: 4px;
}
.service-icon {
  display: flex;
  margin-bottom: 25px;
}
.text-left .service-icon {
  justify-content: flex-start;
}
.text-center .service-icon {
  justify-content: center;
}
.text-right .service-icon {
  justify-content: flex-end;
}

.service-content h3 {
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 767px) {
  .service-content h3 {
    font-size: 20px !important;
  }
  .service {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .service-content h3 {
    font-size: 24px !important;
  }
}
.service-content p {
  max-width: 220px;
  margin: auto;
  color: var(--base-color);
}
.service:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.service:hover .service-content h3 {
  color: var(--primary);
}


