/** gallery begins here **/

.slider {
    margin: 0 auto;
    padding: 10rem 0 0 0;
  }
  .slider input {
      display: none;
  }
  .testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 25rem;
    perspective: 1000px;
    overflow: hidden;
    max-width: 75rem;
    margin: auto;
  }
  .testimonials .item {
      width: 25rem;
      height: 20rem;
      
      border-radius: 5px;
      background-color: #0A0220;
      position: absolute;
      top: 0;
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.4s;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      user-select: none;
      cursor: pointer;
  }
  .testimonials .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0%;
    border: 0;
  }
  .testimonials .item p {
      color: #ddd;
  }
  .testimonials .item h2 {
      font-size: 14px;
  }
  .dots {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .dots label {
      height: 5px;
      width: 5px;
      border-radius: 50%;
      cursor: pointer;
      background-color: #413B52;
      margin: 7px;
      transition-duration: 0.2s;
  }
  
  #t-1:checked ~ .dots label[for="t-1"],
  #t-2:checked ~ .dots label[for="t-2"],
  #t-3:checked ~ .dots label[for="t-3"],
  #t-4:checked ~ .dots label[for="t-4"],
  #t-5:checked ~ .dots label[for="t-5"] {
      transform: scale(2);
      background-color: rgb(228, 50, 50);
  }
  #t-1:checked ~ .dots label[for="t-2"],
  #t-2:checked ~ .dots label[for="t-1"],
  #t-2:checked ~ .dots label[for="t-3"],
  #t-3:checked ~ .dots label[for="t-2"],
  #t-3:checked ~ .dots label[for="t-4"],
  #t-4:checked ~ .dots label[for="t-3"],
  #t-4:checked ~ .dots label[for="t-5"],
  #t-5:checked ~ .dots label[for="t-4"] {
      transform: scale(1.5);
  }
  #t-1:checked ~ .testimonials label[for="t-3"],
  #t-2:checked ~ .testimonials label[for="t-4"],
  #t-3:checked ~ .testimonials label[for="t-5"],
  #t-4:checked ~ .testimonials label[for="t-1"],
  #t-5:checked ~ .testimonials label[for="t-2"] {
      transform: translate3d(400px, 0, -180px) rotateY(-40deg);
      z-index: 2;
  }
  #t-1:checked ~ .testimonials label[for="t-2"],
  #t-2:checked ~ .testimonials label[for="t-3"],
  #t-3:checked ~ .testimonials label[for="t-4"],
  #t-4:checked ~ .testimonials label[for="t-5"],
  #t-5:checked ~ .testimonials label[for="t-1"] {
      transform: translate3d(200px, 0, -90px) rotateY(-30deg);
      z-index: 3;
  }
  #t-2:checked ~ .testimonials label[for="t-1"],
  #t-3:checked ~ .testimonials label[for="t-2"],
  #t-4:checked ~ .testimonials label[for="t-3"],
  #t-5:checked ~ .testimonials label[for="t-4"],
  #t-1:checked ~ .testimonials label[for="t-5"] {
      transform: translate3d(-200px, 0, -90px) rotateY(30deg);
      z-index: 3;
  }
  #t-3:checked ~ .testimonials label[for="t-1"],
  #t-4:checked ~ .testimonials label[for="t-2"],
  #t-5:checked ~ .testimonials label[for="t-3"],
  #t-2:checked ~ .testimonials label[for="t-5"],
  #t-1:checked ~ .testimonials label[for="t-4"] {
      transform: translate3d(-400px, 0, -180px) rotateY(40deg);
  }
  #t-1:checked ~ .testimonials label[for="t-1"],
  #t-2:checked ~ .testimonials label[for="t-2"],
  #t-3:checked ~ .testimonials label[for="t-3"],
  #t-4:checked ~ .testimonials label[for="t-4"],
  #t-5:checked ~ .testimonials label[for="t-4"],
  #t-5:checked ~ .testimonials label[for="t-5"] {
      z-index: 4;
  }
  
  /*gallery ends here **/

  .formContainer {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    letter-spacing: 1rem;
  }
  

  
  .paragraph {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
  }


  .paragraph span{
    display: block;
  }

  @media only screen and (max-width: 480px) {
    .paragraph {
        font-size: 18px;
        line-height: 1.5;
        color: #666;
      }

  }
  