:root {
  --theme-color: #3950ca;
  --bg-color: rgba(79, 48, 183, 0.06);
  --comp-color: #ff6584;
  --gradient: linear-gradient(#6a5fdd 0%, #241d8c 100%);
}

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.text-center {
  text-align: center;
}

h2,
h1 {
  margin: 0;
  padding-top: 30px;
}

.bg-color {
  background: var(--bg-color);
}

.half-color-box {
  background: var(--gradient);
  height: 300px;
  margin-bottom: 100px;
}

.text-whtie {
  color: #fff !important;
}

.bold {
  font-weight: bolder;
}

.por {
  position: relative;
}

.review-box .quote {
  position: absolute;
  width: 40px;
  right: 10px;
  bottom: 10px;
}

.test-arrowbox {
  position: absolute;
  right: 20px;
  display: flex;
  top: 70px;
}

.review-box {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: 350px;
}

.review-box h5 {
  margin: 0;
}

.review-box p {
  margin-top: 10px;
  color: #7d8597;
}

.user-post {
  font-size: 14px;
  margin: 0 !important;
}

.swiper-testimonial {
  padding: 100px 20px;
  padding-top: 30px;
}

.test-arrowbox .swiper-button-next-test,
.test-arrowbox .swiper-button-prev-test {
  margin-right: 20px;
  border-radius: 50%;
  --size: 55px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-right {
  transform: rotate(180deg);
  margin-top: -8px;
}

.arrow {
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.arrow:hover {
  transform: translateX(-15px);
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
  padding: 20px !important;
  padding-bottom: 80px !important;
}

.media {
  display: flex;
  justify-content: start;
  gap: 15px;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  left: 50%;
  margin-top: 5px !important;
  transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .swiper-pagination {
    left: 50%;
  }
  .test-arrowbox {
    top: 60px;
  }
}

@media (max-width: 992px) {
  .half-color-box {
    height: 200px;
    margin-bottom: 100px;
  }

  .swiper-testimonial {
    padding: 80px 20px;
    padding-top: 20px;
  }

  .test-arrowbox {
    top: 50px;
    right: 10px;
  }

  .review-box {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .swiper-pagination {
    left: 50%;
    margin-top: 15px !important;
  }

  .test-arrowbox {
    top: 40px;
    right: 5px;
  }

  .review-box {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .swiper-testimonial {
    padding: 50px 10px;
    padding-top: 10px;
  }

  .half-color-box {
    height: 150px;
    margin-bottom: 80px;
  }

  .review-box {
    padding: 10px;
    margin-bottom: 15px;
  }

  .test-arrowbox {
    top: 30px;
    right: 0;
  }

  .swiper-pagination {
    left: 43%;
    margin-top: 20px !important;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  margin-right: 6px;
}
@media (max-width: 700px) {
  .review-box {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
  .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100% !important;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
    padding: 20px !important;
    padding-bottom: 100px !important;
  }
  .swiper-slide{
    width: 220.333px !important;
    gap: 50px !important;
    margin-right: 30px;
  }
  .seeall {
    position: relative;
}
.seeall button {
  position: absolute;
  right: 11px !important;
  left: 177px !important;
  top: -12px !important;
  background-color: #BF8A35 !important;
  padding: 4px !important;
  width: 145px !important;
  border-radius: 10px !important;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1) !important;
  margin-top: 10px !important;
  font-family: "Be Vietnam Pro", sans-serif;
  color: #ffffff;
  font-size: 20px;
}

  @media (min-width: 768px) and (max-width: 1024px) {
    .text-center {
      text-align: center;
    }

    h2,
    h1 {
      margin: 0;
      padding-top: 30px;
    }

    .bg-color {
      background: var(--bg-color);
    }

    .half-color-box {
      background: var(--gradient);
      height: 300px;
      margin-bottom: 100px;
    }

    .text-whtie {
      color: #fff !important;
    }

    .bold {
      font-weight: bolder;
    }

    .por {
      position: relative;
    }

    .review-box .quote {
      position: absolute;
      width: 40px;
      right: 10px;
      bottom: 10px;
    }

    .test-arrowbox {
      position: absolute;
      right: 20px;
      display: flex;
      top: 70px;
    }

    .review-box {
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 20px;
      width: 350px;
    }

    .review-box h5 {
      margin: 0;
    }

    .review-box p {
      margin-top: 10px;
      color: #7d8597;
    }

    .user-post {
      font-size: 14px;
      margin: 0 !important;
    }

    .swiper-testimonial {
      padding: 100px 20px;
      padding-top: 30px;
    }

    .test-arrowbox .swiper-button-next-test,
    .test-arrowbox .swiper-button-prev-test {
      margin-right: 20px;
      border-radius: 50%;
      --size: 55px;
      width: var(--size);
      height: var(--size);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .arrow-right {
      transform: rotate(180deg);
      margin-top: -8px;
    }

    .arrow {
      cursor: pointer;
      transition: all 0.2s ease-in;
    }

    .arrow:hover {
      transform: translateX(-15px);
    }

    .swiper-container {
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
      list-style: none;
      z-index: 1;
      padding: 20px !important;
      padding-bottom: 33px !important;
    }

    .media {
      display: flex;
      justify-content: start;
      gap: 15px;
    }

    .swiper-pagination {
      position: absolute;
      text-align: center;
      transition: 300ms opacity;
      transform: translate3d(0, 0, 0);
      z-index: 10;
      left: 50%;
      margin-top: 5px !important;
      transform: translateX(-50%);
    }
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .review-box {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
  .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 336px !important;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    margin-right: 10px !important;
  }
  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
    padding: 20px !important;
    padding-bottom: 63px !important;
  }
  .text-center {
    text-align: center;
  }

  h2,
  h1 {
    margin: 0;
    padding-top: 30px;
  }

  .bg-color {
    background: var(--bg-color);
  }

  .half-color-box {
    background: var(--gradient);
    height: 300px;
    margin-bottom: 100px;
  }

  .text-whtie {
    color: #fff !important;
  }

  .bold {
    font-weight: bolder;
  }

  .por {
    position: relative;
  }

  .review-box .quote {
    position: absolute;
    width: 40px;
    right: 10px;
    bottom: 10px;
  }

  .test-arrowbox {
    position: absolute;
    right: 20px;
    display: flex;
    top: 70px;
  }

  .review-box {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 310px;
  }

  .review-box h5 {
    margin: 0;
  }

  .review-box p {
    margin-top: 10px;
    color: #7d8597;
  }

  .user-post {
    font-size: 14px;
    margin: 0 !important;
  }

  .swiper-testimonial {
    padding: 100px 20px;
    padding-top: 30px;
  }

  .test-arrowbox .swiper-button-next-test,
  .test-arrowbox .swiper-button-prev-test {
    margin-right: 20px;
    border-radius: 50%;
    --size: 55px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow-right {
    transform: rotate(180deg);
    margin-top: -8px;
  }

  .arrow {
    cursor: pointer;
    transition: all 0.2s ease-in;
  }

  .arrow:hover {
    transform: translateX(-15px);
  }

  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
    padding: 20px !important;
    padding-bottom: 33px !important;
  }

  .media {
    display: flex;
    justify-content: start;
    gap: 15px;
  }

  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left: 50%;
    margin-top: 5px !important;
    transform: translateX(-50%);
  }
}




.swiper-wrapper .swiper-button-prev, .swiper-wrapper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: lightgrey;
  background-size: 50% 50%;
  border-radius: 50%;
}
.swiper-wrapper .swiper-button-prev {
  left: -60px;
}
.swiper-wrapper .swiper-button-next {
  right: -60px;
}


.swiper-slide{
  width: 336.333px !important;
  gap: 50px !important;
  margin-right: 30px;
}

.swiper-pagination{
  display: none;
}


.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/leftarrow.svg) !important;
  left: 10px !important;
  right: auto;
  top: 350px !important;
  background-color: #BF8A35 !important;
  padding: 20px;
  width: 50px !important ;
  border-radius: 10px !important;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1) !important;
  margin-top: 10px !important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/rigtharrow.svg) !important;
  right: 10px !important;
  left: 100px !important;
  top: 350px !important;
  background-color: #BF8A35 !important;
  padding: 20px !important;
  width: 50px !important ;
  border-radius: 10px !important;
  box-shadow: -5px 5px 0px 0px rgba(0, 0, 0, 1) !important;
  margin-top: 10px !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .swiper-container {
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
      list-style: none;
      z-index: 1;
      padding: 20px !important;
      padding-bottom: 75px !important;
  }
}