/* =================================
PAGE: SERVICE
===================================*/

._bg_service {
  border-radius: 10px;
  padding: 15px 10px;
  margin: 15px 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  min-height: 500px;
}

._img_service {
  width: 350px;
  border-radius: 5px;
}

/* =================================
PAGE: SERVICE SINGLE
===================================*/

._card_effect {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  min-height: 280px;
}

._card_effect:hover {
  transition: all 0.35s ease;
  box-shadow: none;
  transform: translateY(5px);
}

._icon_box_flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--color-white);
  font-size: 25px;
  background-color: var(--color-main);
  border-radius: 50px;
}

._card_service {
  position: relative;
  overflow: hidden;
}

._card_service::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--color-main);
  width: 100%;
  height: 100%;
  opacity: 0%;
  transition: all 0.35s ease;
  z-index: -1;
}

._card_service:hover h3,
._card_service:hover p {
  color: white;
}

._card_service:hover ._icon_box_flex {
  background-color: white;
  color: var(--color-main);
}

._card_service:hover::after {
  opacity: 1;
  top: 0%;
}
