.m-careServicesListing__nav {
  display: flex;
  align-items: center; 
}

.m-careServicesListing__nav .slick-arrow {
  background-color: rgba(235, 112, 33, 0.2);
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background-size: 10.29px 18px;
  background-repeat: no-repeat; 
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.m-careServicesListing__nav .slick-prev {
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-left.svg');
  background-position: 48% 50%;
}

.m-careServicesListing__nav .slick-next {
  margin-left: auto; 
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-1.svg'); 
  background-position: 56% 50%;
}

.m-careServicesListing__nav .slick-arrow:not(.slick-disabled):hover {
  background-color: var(--orange); 
}

.m-careServicesListing__nav .slick-arrow:not(.slick-disabled).slick-prev:hover {
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-white-left.svg');
}

.m-careServicesListing__nav .slick-arrow:not(.slick-disabled).slick-next:hover {
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-white.svg');
}

.m-careServicesListing__nav .slick-arrow.slick-disabled {
  background-color: rgba(178, 169, 166, 0.2); 
  cursor: default;
}

.m-careServicesListing__nav .slick-arrow.slick-disabled.slick-prev {
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-grey-left.svg');
}

.m-careServicesListing__nav .slick-arrow.slick-disabled.slick-next {
  background-image: url('https://8316206.fs1.hubspotusercontent-na1.net/hubfs/8316206/SaltedStone/images/Vector-grey.svg');
}

.m-careServicesListing__dots {
  margin-left: auto; 
}

.m-careServicesListing__dots .slick-dots {
  margin: 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: start;
}

.m-careServicesListing__dots .slick-dots li {
  width: 30px;
  height: 4px;
  background-color: var(--warmgrey4);
  margin: 0 5px;
  border-radius: 10px; 
  position: relative; 
  cursor: pointer;
}

.m-careServicesListing__dots .slick-dots li::after {
  content: '';
  height: 100%;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  background-color: var(--orange);
  
}

.m-careServicesListing__dots .slick-dots li.slick-active::after {
  width: 100%;
}

.m-careServicesListing__dots .slick-dots li button {
  display: none; 
}

.o-careServicesListing .m-card__content .textLink {
  margin-top: auto;
}

.m-careServicesListing__buttons {
  margin-top: 2rem;
}

.o-careServicesListing .m-card__content {
  min-height: 0px;
}

@media (min-width: 992px) {
  
  .m-careServicesListing__nav {
    margin-top: 32px; 
  }
  
  .m-careServicesListing__dots .slick-dots li {
    width: 50px;
    margin: 0 7.5px;
  }
  
  .m-careServicesListing__buttons {
    margin-bottom: 50px;
    margin-top: 0;
  }
}

@media(max-width:767px){
  
  .m-careServicesListing__dots .slick-dots{ margin:0 10px;} 
  .m-careServicesListing__dots .slick-dots li{ width:24px;}
  
  .row.m-careServicesListing__slides {
    margin-right: -30px;
    margin-left: -30px;
  }
  
  .o-careServicesListing .services__readmore-button {
    margin-bottom: 0;
  }
}

{# Read more links #}
.o-careServicesListing.readmore .m-card__content {
  justify-content: space-between;
}

.o-careServicesListing .services__readmore-button {
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  border: none;
  color: var(--plum);
  width: 100%;
  text-align: left;
  position: relative;
  margin-top: 5px;
}

.o-careServicesListing .services__readmore-button:after {
  background-image: url(https://21058714.fs1.hubspotusercontent-na1.net/hubfs/21058714/HC/arrow-down.svg);
  background-position: 100%;
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  transition: all 0.3s ease-in-out;
}

.o-careServicesListing .services__readmore-button.active-open {
  margin-top: 0px; 
}

.o-careServicesListing .services__readmore-button.active-open:after {
  transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  right: 5px;
}

.o-careServicesListing .services__readmore-button:focus,
.o-careServicesListing .services__readmore-button:focus-visible {
  outline: none;
}

.o-careServicesListing .services__readmore-text {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.o-careServicesListing .services__readmore-text.active-open {
  max-height: 500px;
}