/* ---------------- BASE ---------------- */

.content-slider-section{
  width: 100%;
  float: left;
  padding: 35px 0;
}

.cards {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  justify-content: space-between;
  padding: 24px 0;
}

.content-slider-wrapper h2 {
  text-align: center;
  font-size: 24px;
  /* margin: 20px 0 0; */
  font-weight: 600;
  color: #454545;
  text-transform: capitalize;
  text-align: left;
} 

.info-card {
  width: 29%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 93, 172, 0.1);
  background: linear-gradient(180deg, rgba(182, 217, 242, 0) 0%, rgba(182, 217, 242, 0.2) 100%), #FFF;
  box-shadow: 5px 10px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 10px;
}

.info-card p, .content-slider-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: #454545;
  font-weight: 400;
}

.accent {
  display: block;
  position: absolute;
  top: 22px;
  left: 0;
  height: 40px;
  width: 4px;
  background: #005dac;
  border-radius: 20px;
}

.wrapper
{
    padding-left: 160px;
    padding-right: 160px;
}

.slider-cards__subtitle p{
  padding-top: 24px;
}

@media screen and (max-width: 1366px) 
{
    .wrapper
    {
        padding-left: 80px;
        padding-right: 80px;
    }
}
@media screen and (max-width: 1280px) {
    .wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }
}
@media screen and (max-width: 760px) 
{
    .wrapper
    {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ---------------- DESKTOP  ---------------- */

@media (min-width: 769px) {
  .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-evenly;
    transform: none !important;
    /* margin: 12px 0; */
  }

  .info-card {
    width: 30%;
    /* width: calc(33.333% - 20px); */
    margin: 14px 10px;
  }

  .swiper-pagination {
    display: none;
  }

  .content-slider-wrapper h2{
    font-size: 24px;
  }

  .slider-cards__subtitle p,.slider-cards__subtitle a{
    font-size: 14px;
  }
}

/* ---------------- MOBILE (CAROUSEL) ---------------- */

@media (max-width: 768px) {
  .info-card {
    min-width: 95%;
    box-sizing: border-box;
    margin-right: 5%;
  }

  .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-top: 5%;
  }

  .swiper-pagination span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }

  .swiper-pagination span.active {
    background: #005dac;
    width: 20px;
    border-radius: 10px;
  }
}