.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
}

.swiper-navBtn {
  color: #6E93f7;
  transition: color 0.3s ease;
}

.swiper-button-next1,
.swiper-button-prev1 {
  position: absolute;
  top: 50%;
  font-size: 40px;
  cursor: pointer;
  background: transparent;
  text-shadow: 4px 3px 0 #7A7A7A;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper-navBtn:hover {
  color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next1 {
  right: 0;
}

.swiper-button-prev1 {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: linear-gradient(circle #30CFD0 0%, #330867 100%) 1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: linear-gradient(circle #30CFD0 0%, #330867 100%) 1;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}

.card {
  /* margin: 10px; */
  background-color: #3176a1;
  /* border-radius: 10px; */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 250px;
}

.card-body>p {
  color: #ebebec;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}

.tag-teal {
  background-color: #47bcd4;
}

.tag-purple {
  background-color: #5e76bf;
}

.tag-pink {
  background-color: #cd5b9f;
}

.card-body p {
  font-size: 13px;
  margin: 0 0 40px;
}

.user {
  display: flex;
  margin-top: auto;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.user-info h5 {
  margin: 0;
}

.user-info small {
  color: #545d7a;
}

.project-links>a {
  color: #e1f6f7;
  transition: 0.5s;
  margin: 0 1rem;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 4px;
  margin: 0 25px;
}

.project-links {
  margin-top: 30px;
}

.project-links>a:hover {
  background-color: #3176a1;
  box-shadow: 0 5px 10px rgba(12, 1, 1, 0.4);

}