/** CSS Easing functions */ /* Bulma Utilities */
.wp-block-starter-other-services h2 {
  margin-top: 0;
  margin-bottom: 5rem;
}
.wp-block-starter-other-services .other-services {
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .wp-block-starter-other-services .other-services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wp-block-starter-other-services .other-services .other-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.625rem;
  border-bottom: 1px solid #AC0941;
  padding-bottom: 0.625rem;
}
.wp-block-starter-other-services .other-services .other-service .other-service-thumbnail {
  aspect-ratio: 4/3;
  height: 100%;
  width: 50%;
}
.wp-block-starter-other-services .other-services .other-service .other-service-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}
.wp-block-starter-other-services .other-services .other-service .other-service-thumbnail:hover img {
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.wp-block-starter-other-services .other-services .other-service .other-service-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.625rem;
  gap: 1.25rem;
  width: 50%;
}
.wp-block-starter-other-services .other-services .other-service .other-service-body h4 {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.wp-block-starter-other-services .other-services .other-service .other-service-body .other-service-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
