#about_us .auto_slider {
  background: transparent;
}
#about_us .auto_slider .list {
  animation-duration: 30s;
}
#about_us .auto_slider .list h3 {
  color: var(--title-color);
  font-size: 100px;
  margin: 0 3rem;
}
#about_us .auto_slider .list h3.stroke {
  -webkit-text-stroke: 1px var(--title-color);
  color: transparent;
  font-family: "Arial", sans-serif;
}
#team .member_img::after {
  content: "View Portfolio";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 10rem) scale(0);
  color: var(--title-color);
  font-weight: 600;
  background-color: #ffffffc6;
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--sm-round);
  transition: var(--transition);
}
#team .card:hover .member_img:after {
  transform: translate(-50%, -50%) scale(1);
}
#team .card .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-2.5rem);
}
#team .card .name {
  width: 60%;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--sm-round);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
#team .card:hover .name {
  background-color: var(--primary);
  box-shadow: 5px 5px 0 0 var(--title-color);
}
#team .card:hover .name h5,
#team .card:hover .name h6 {
  color: var(--white);
}
#team .card .icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
#team .card:hover .icon {
  background-color: var(--primary);
}
#team .card .icon i {
  rotate: -45deg;
  transition: var(--transition);
}
#team .card:hover .icon i {
  color: var(--white);
  rotate: 0deg;
}
/*Pricing Section*/
#pricing .plan_card .icon {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
#pricing .plan_card {
  padding: 3rem;
  transition: var(--transition);
}
/* #pricing .plan_card:hover {
  box-shadow: 5px 5px 0 0 var(--primary) !important;
} */
#pricing .plan_card.professional_plan{
  padding: 5rem 3rem;
}
#pricing .plan_card.professional_plan:after {
  content: "Popular";
  color: var(--white);
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--primary);
  border-radius: var(--sm-round);
  box-shadow: var(--shadow);
  font-size: 1rem;
  position: absolute;
  left: 50%;  
  transform: translateX(-50%);
  top: -1.5rem;
  transition: var(--transition);
}

/*Testimonial*/
#testimonial {
  height: 700px;
  width: 100%;
  background-color: var(--white);
  z-index: 1;
  overflow: hidden;
}
#testimonial .left_side {
  width: 40%;
}
#testimonial .right_side {
  width: 60%;
}
#testimonial .comments-wrapper {
  height: 700px;
  overflow-y: scroll;
  display: flex;
  gap: 1rem;
}
/* Hide scrollbar for Chrome, Safari and Opera */
#testimonial .comments-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#testimonial .comments-wrapper {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#testimonial .comments-wrapper .comments {
  width: 50%;
}
#testimonial .comments-wrapper .comments .comment {
  background: #f5f5f5d4;
  backdrop-filter: blur(10px);
  border-radius: var(--round);
  padding: 1.5rem;
  margin: 1rem 0;
}

@media screen and (max-width: 992px) {
  #testimonial {
    height: 100%;
    padding: 3rem 0;
    overflow: hidden;
  }
  #testimonial .left_side {
    width: 100%;
    margin-right: 0;
  }
  #testimonial .right_side {
    width: 100%;
  }
  #testimonial .comments-wrapper {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #testimonial {
    height: 100%;
    padding: 3rem 0;
    overflow: hidden;
  }
  #testimonial .left_side {
    width: 100%;
    margin-right: 0;
  }
  #testimonial .right_side {
    width: 100%;
  }
  #testimonial .comments-wrapper {
    flex-direction: column;
    gap: 0;
  }
  #testimonial .comments-wrapper .comments {
    width: 100%;
  }
}
