
.hr-service .hr-titel h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hr-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.hr-service .hr-titel h1 span {
  font-size: 64px;
}
.service-images {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
    cursor: pointer;
}
.hr-service-shape {
  position: absolute;
  top: 0;
  right: 0;
  transition: .5s ease-in-out;
}
.hr-service-shape img {
  max-width: 188px;
  width: 100%;
}
.service-images img {
  width: 100%;
  transition: .3s ease-in-out;
}
.hr-service .card .card-body {
  padding: 0;
  margin-bottom: 0;
}
.service-images > img {
  border-radius: 20px;
}
.service-images img:hover {
  transform: scale(1.2);
  transition: .3s ease-in-out;
}
.service-images:hover .hr-service-shape {
  opacity: 0;
  transition: .5s ease-in-out;
}
.service-btn {
  position: absolute;
  top: 40%;
  left: 34%;
  opacity: 0;
  transition: .5s ease-in-out;
  scale: 3;
}
.service-images:hover .service-btn {
  opacity: 1;
  transition: .5s ease-in-out;
  scale: 1;
}

.hr-service-content h3 {
  font-size: 20px;
  line-height: 26px;
  color: #202020;
}
.hr-service-content {
  padding-top: 20px;
  position: relative;
}

.hr-service-flower-shape {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.hr-service {
  position: relative;
}
.hr-service-flower-shape img {
  max-width: 415px;
}
.hr-service .row {
  row-gap: 30px;
}
.hr-service .card-body {
  position: relative;
}
@media(max-width:992px){
  .hr-service-flower-shape img {
  max-width: 215px;
}
.hr-service .row {
  row-gap: 30px;
}
}
@media(max-width:576px){
  .hr-service .hr-titel h1 span {
  font-size: 52px;
}
.hr-service-flower-shape img {
  max-width: 125px;
}
.hr-service-shape img {
  max-width: 150px;
  width: 100%;
}
}