/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");


.testimonial_container {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.testimonial_container {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  background-color: white;
}
.testimonial_body {
  /* position: relative; */
  position: absolute; 
  z-index: 5;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.testimonial_body .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial_body .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgb(142, 190, 237);
  transition: 0.2s;
}
.nav-btn:hover {
  /* background-color: rgba(0, 0, 0, 0.2); */
  background-color: dodgerblue;
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
  /* z-index: unset; */
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}

/***********************************************
  tslider css 
*********************************************/
     .modal_outer_body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    font-size: 17px;
    line-height: 1.6;
    display: flex;
    /* height: 100vh; */
    align-items: center;
    justify-content: center;
  }

  .button {
    margin-top: 2.4rem;
    padding: 1em 2em;
    color: dodgerblue;
    font-weight: 700;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
  }

  .button:hover {
    background: dodgerblue;
    color: white;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
  }

  .modal_testimonial {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: dodgerblue;
  }

  .modal-content {
    margin: 5.5% auto;
    width: 60% !important;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 0.5s;
  }

  .modal-header h2,
  .modal-footer h3 {
    margin: 0;
  }

  .modal-header {
    background: #ebf5ff;
    padding: 5px;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .modal-body {
    padding: 10px 20px;
    background: #fff;
  }

  .modal-footer {
    background: #ecd6d3;
    padding: 10px;
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .close_modal {
    color: #ccc;
    float: right;
    font-size: 44px;
    opacity: 0.5;
  }

  .close_modal:hover,
  .close_modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
  }

  @keyframes modalopen {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }