 /* arrow */
 .arrow1 {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 20px;
  bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  background: #FF7900;
  border-radius: 20%;
  display: none;
  place-items: center;
  color: #ffffff;
  z-index: 999999;
}


.arrow1.active {
  display: grid;
}


.active a {
    color: #ff7900;
  }

  /* review */
  a {
    text-decoration: none;
  }

  #testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .testimonial-heading {
    letter-spacing: 1px;
    margin: 20px 0px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .testimonial-heading h1 {
    font-size: 2.2rem;
    font-weight: 500;
    /* background-color: #202020; */
    color: rgb(36, 39, 50);
    padding: 10px 20px;
  }

  .testimonial-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .testimonial-box {
    width: 500px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
  }

  .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    overflow: hidden;
    border: 3px solid #FF7900;
    margin-right: 10px;
  }

  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .profile {
    display: flex;
    align-items: center;
  }

  .name-user {
    display: flex;
    flex-direction: column;
  }

  .name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .name-user span {
    color: #979797;
    font-size: 0.8rem;
  }

  .reviews {
    color: #FF7900;
  }

  .box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
  }

  /* .testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
  } */

  @media (max-width:1060px) {
    .testimonial-box {
      width: 45%;
      padding: 10px;
    }
  }

  @media (max-width:790px) {
    .testimonial-box {
      width: 100%;
    }

    .testimonial-heading h1 {
      font-size: 1.4rem;
    }
  }

  @media (max-width:340px) {
    .box-top {
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .reviews {
      margin-top: 10px;
    }
  }

  ::selection {
    color: #ffffff;
    background-color: #252525;
  }
  