.our-products-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 129px;
  padding: 0 5%;
}

.title-wrapper {
  width: 100%;
  max-width: var(--view-port);

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--blue-700);
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
}

.slide-wrapper {
  width: 100%;
  max-width: calc(var(--view-port) + 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 46px;
  max-width: 1124px;
}

.slide {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 28px;
}

.our-products-section-card {
  display: flex;
  flex-direction: column;

  width: 100%;

  /* width: calc(33% - 18px); */
}

.our-products-section-card-img {
  /* width: 356px; */
  width: 100%;
  max-height: 342px;

  border-radius: 24px;
  background: #74a6e2;

  object-fit: contain;
}

.our-products-section-card-title {
  color: var(--blue-700);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
}

.slide-button {
  width: 32px;
  height: 32px;

  border: transparent;
  background-color: transparent;

  cursor: pointer;

  img {
    width: 100%;
    height: 100%;
  }
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 500px;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  width: 300px;

  div {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .slide-wrapper {
    gap: 10px;
  }
  .slide-wrapper swiper-slide {
    width: 80%;
  }
}
