/**Services Section**/
.listing-page main > .container{
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.listing-page main > .container > .row{
  margin: 0;
}
.listing-page main .region-content{
  padding: 0;
}
.path-services .landing-page-banner img{
  max-height: 500px;
  object-fit: cover;
}
.services-section.container{
  /*padding: 0;*/
}
.services-section .view-content{
  /*--bs-gutter-x1.5rem: 1.5rem;
  --bs-gutter-y: 0;*/
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: 0;
  margin-left: 0;
}
.services-section .view-content > *{
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.services-section .card{
  border-radius: var(--radius);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid #eef0f3;
  overflow: hidden;
}
.services-section .card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.services-section .card-title{
  font-family: var(--hedaing-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #222222;  
}
.services-section .card-body-wrapper{
  padding: 20px;
}
.services-section .card-body{
  font-family: var(--hedaing-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #6b7280;
  padding: 0;
}
.service-learn-more{
  margin-top: 5px;
}
.service-learn-more a{
  font-family: var(--hedaing-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--primary-red);
}
.service-learn-more a:hover{
  color: #a8131c;
}
.services-view-all a{
  text-decoration: none;
  border-radius: 50px;
  padding: 7.5px 18px 7.5px;
  font-family: var(--hedaing-font);
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  min-height: 40px;
  background-color: var(--primary-red);
  margin-top: 30px;
}
.services-view-all a:hover{
  transform: translateY(-2px);
  background-color: #a8131c;
}
.services-section .service-learn-more{
  display: none;
}
/**Services Section Ends**/