/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");


.slider_main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  background-color: var(--bg);
}

.container-slide {
  max-width: 960px;
  width: 100%;
  padding: 40px 0;
}

.slide-container,
.slide-container1 {
  margin: 0 30px;
  overflow: hidden;
}

.card {
  background: var(--bg-panel);
  border-radius: 8px;
  height: 220px;
}

.card .image-box {
  height: 100px;
}

.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}

.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: var(--color-text);
  height: 40px;
  width: 40px;
  background: var(--bg);
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet,
.swiper-pagination1-bullet {
  background-color: var(--color-text);
}

@media screen and (max-width: 900px) {

  .container-slide {
    max-width: 560px;
    width: 100%;
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {

  .container-slide {
    max-width: 560px;
    width: 100%;
    padding: 40px 0;
  }
}

@media screen and (max-width: 576px) {
  .swiper-navBtn {
    display: none;
  }

  .container-slide {
    max-width: 300px;
    width: 100%;
    padding: 40px 0;
  }
}