/* old: 'Font Awesome 6 Free' */
.serviceListingComponentBE .container {
  max-width: 1100px !important;
}
.serviceListingComponentBE .headline {
  text-align: center;
  font-family: "Cabin", Arial, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin-bottom: 48px;
  padding: 0 18%;
}
@media (max-width: 991.98px) {
  .serviceListingComponentBE .headline {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 32px;
    padding: 0;
  }
}
.serviceListingComponentBE .serviceSearch {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.serviceListingComponentBE .serviceSearch .serviceSearchBlock {
  position: relative;
  margin-bottom: 64px;
  width: 100%;
  max-width: 636px;
}
.serviceListingComponentBE .serviceSearch .serviceSearchBlock form .searchField {
  width: 100%;
  height: 57px;
  padding-left: 10px;
  border-radius: 8px;
  border: 1px solid #C5C5C5;
  background: white;
}
.serviceListingComponentBE .serviceSearch .serviceSearchBlock form .searchButton {
  display: flex;
  width: 62px;
  height: 57px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0px 8px 8px 0px;
  border-color: #005CAB;
  background: #005CAB;
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  color: white;
  font-size: 14px;
  line-height: 28px;
}
.serviceListingComponentBE .serviceSearch .serviceSearchBlock form .searchButton:after {
  content: none;
}
.serviceListingComponentBE .serviceCardsRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 64px;
  column-gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 991.98px) {
  .serviceListingComponentBE .serviceCardsRow {
    row-gap: 24px;
    margin-bottom: 32px;
    justify-content: center;
  }
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard {
  flex: 0 1 100%;
  max-width: 526px;
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  align-content: flex-start;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard.linkEnabled {
  cursor: pointer;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .iconContainer {
  display: grid;
  place-content: center;
  width: 86px;
  height: 86px;
  color: #005CAB;
  font-size: 32px;
  line-height: 40px;
  border: 3px solid #005CAB;
  border-radius: 50%;
  transition: border 50ms ease-out;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .iconContainer i::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 86px;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent .serviceHeadline {
  font-family: "Cabin", Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent .serviceSummary {
  margin-bottom: 8px;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent .serviceLink .link {
  text-decoration: none;
  display: inline-flex;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent .serviceLink .link:after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  transition-timing-function: ease-out;
  transition-duration: 50ms;
  transition-property: transform;
  margin-left: 8px;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard:hover .iconContainer {
  border-width: 5px;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard:hover .serviceContent .serviceLink .link, .serviceListingComponentBE .serviceCardsRow .serviceListingCard:hover .serviceContent .serviceLink .link:first-child {
  cursor: pointer;
  text-decoration: none !important;
}
.serviceListingComponentBE .serviceCardsRow .serviceListingCard:hover .serviceContent .serviceLink .link:after, .serviceListingComponentBE .serviceCardsRow .serviceListingCard:hover .serviceContent .serviceLink .link:first-child:after {
  transform: translateX(8px);
}
@media (max-width: 991.98px) {
  .serviceListingComponentBE .serviceCardsRow .serviceListingCard {
    flex-direction: column;
    align-items: center;
  }
  .serviceListingComponentBE .serviceCardsRow .serviceListingCard .iconContainer {
    margin: 0 auto;
  }
  .serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .serviceListingComponentBE .serviceCardsRow .serviceListingCard .serviceContent .serviceSummary {
    text-align: center;
  }
}
.serviceListingComponentBE .btnHolder {
  display: flex;
  justify-content: center;
}