
/* Falling effect for the paragraph */
@keyframes falling {
    0% {
        transform: translateY(-50px); /* Start 50px above the final position */
        opacity: 0;  /* Start with no opacity */
    }
    100% {
        transform: translateY(0); /* Move to the original position */
        opacity: 1;  /* Full opacity */
    }
}

/* Apply falling effect to paragraph */
.falling-text {
    opacity: 0; /* Initially invisible */
    animation: falling 1.5s ease-out forwards; /* 1.5 seconds falling effect with ease-out */
}

/* Optional: Delay for the entire content to load */
.h2, .falling-text {
    animation-delay: 0.5s;
}


/* Set up the container to overflow */
.serviceslider-sliderAnimation {
  width: 100%;
  overflow: hidden; /* Hide the content that's outside the slider */
}

/* Position the card container initially off the screen */
.serviceslider-card-containerAnimation {
  display: flex;
  animation: slideIn 1s ease-out forwards; /* Trigger slide-in animation */
}

/* Define the sliding effect */
@keyframes slideIn {
  0% {
    transform: translateX(100%); /* Start from 100% off the right */
  }
  100% {
    transform: translateX(0); /* End at the original position */
  }
}





.our-faq-wrapper {
  float: left;
  width: 100%;
  padding: 89px 0 60px;
  background:#f5f5f5;
}

.our-faq-wrapper {
    padding: 90px 0 60px;
  background:#fff;  
}
.accordion .card {
  border: none;
  margin-bottom: 30px;
}
.our-faq-wrapper .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  background: #242c42;
  color: #fff;
  border-radius: 0;
  padding: 7px 15px 12px;
  font-size: 16px;
  overflow: hidden;
  border: none;
  font-weight:600; 
  text-decoration: none;
}
.our-faq-wrapper .btn-link:hover, .our-faq-wrapper .btn-link:focus {
  text-decoration: none;
}
.our-faq-wrapper .btn-link:after {
  position: absolute;
  content: '\f068';
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: fontawesome;
}
.our-faq-wrapper .btn-link.collapsed:after {
  content: '\f067';
}
.our-faq-wrapper .btn-link:before {
  position: absolute;
  content: '';
  background: #e3292b;
  -webkit-transform: skew(-35deg);
  transform: skew(-35deg);
  height: 100%;
  width: 50%;
  left: 90%;
  top: 0;
}
.card-header {
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.card-body {
  position: relative;
}
.card-body:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #242c42;
}
.card-body:before {
  position: absolute;
  content: '';
  height: 2px;
  width: 50%;
  left: 0;
  bottom: 0;
  background: #e3292b;
  z-index: 1;
}







