.custom-slider {
  max-width: 100%;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --slide-spacing-sm: 1.6rem;
  --slide-size-sm: 50%;
  --slide-spacing-lg: 2rem;
  --slide-size-lg: calc(100% / 3);
  margin: 40px 0px;
}
.custom-slider__viewport {
  overflow: hidden;
  padding-right:3%
}
.custom-slider__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.product-and-solutions-card {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-and-solutions-card .card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  letter-spacing: 0px;
  margin-top: 14px;
}
.product-and-solutions-card .card-image {
  border-radius: 8px;
  width:100%;
  height:200px   /* Adjust the height of images in slider */
}
.custom-slider__slide a:hover{
  text-decoration:none
}
@media (min-width: 750px) {
  .custom-slider__container {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 1200px) {
  .custom-slider__container {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
}
.custom-slider__slide {
  min-width: 0;
  flex: 0 0 var(--slide-size);
  padding-left: var(--slide-spacing);
}
@media (min-width: 750px) {
  .custom-slider__slide {
    flex: 0 0 var(--slide-size-sm);
    padding-left: var(--slide-spacing-sm);
  }
}
@media (min-width: 1200px) {
  .custom-slider__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}

.custom-slider__controls {
  display: flex;
  justify-content: end;
  gap: 1.2rem;
  margin: 1.8rem;
}
.custom-slider__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}
.custom-slider__button {
  -webkit-tap-highlight-color: rgba(49, 49, 49, 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem red;
  width: 3.6rem;
  height: 3.6rem;
  z-index: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-slider__button:disabled {
  color: rgb(192, 192, 192);
}

.custom-slider__progress {
  border-radius: 1.8rem;
  background-color: #e0e0e0;
  position: relative;
  height: 1px;
  justify-self: flex-end;
  align-self: center;
  width: 321px;
  max-width: 90%;
  overflow: hidden;
}
.custom-slider__progress__bar {
  background-color: #dc0d10;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: -100%;
}
.custom-slider-sectionHeading {
  display: inline-block;
  width: 100%;
}
.custom-slider-heading-wrap{
  display:inline-block;
}
.custom-slider-sectionHeading__title {
  font-size: 44px;
  font-weight: 600;
  line-height: 54px; 
  margin-bottom:16px
}
.custom-slider-sectionHeading__description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; 
}
.custom-slider-sectionHeading .see-all-button{
  float: right;
}
.custom-slider-sectionHeading__button {
  background-color: transparent;
  outline: none;
    padding: 12px;    
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
}
/* .custom-slider-sectionHeading__button:hover{
  color:white;
  background-color:#dc0d10
} */
@media screen and (max-width:500px) {
  .custom-slider-sectionHeading__title {
    font-size:32px;
    line-height:36px
  }
  .custom-slider-sectionHeading__description {
    font-size:14px
  }
  .custom-slider-heading-wrap{
    float:left
  }
  .custom-slider-sectionHeading .see-all-button{
    float:left;
    margin-top:16px;
    clear:both;
  }
  .custom-slider__button .custom-slider__button--prev{
    margin-bottom:0px !important
  }
  .custom-slider__buttons button:first-child{
    margin-bottom:0px !important
  }
  @media screen and (max-width:768px){
    .custom-slider{
      padding:15px;
    }
    .custom-slider-sectionHeading{
      padding:15px
    }
  } 
}