/* ---------------- BASE ---------------- */
ul, ol, body {
  /* list-style: none; */
  padding: 0;
  margin: 0;
}
.content-cards-section{
  width: 100%;
  float: left;
  padding: 35px 0;
  background: linear-gradient(180deg, rgba(182, 217, 242, 0) 0%, rgba(182, 217, 242, 0.2) 100%), #FFF;
}

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

.content-cards-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  /* list-style: none; */
}

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

.content-info-cards {
  width: 29%;
  padding: 20px 10px;
  position: relative;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  background: #ffffff;
  box-shadow: 0 3px 6px #00000029;
}

.content-info-cards-content{
  padding: 0 20px;
}

.content-info-cards .content-info-cards-header .content-cards-title h3 {
  /* font-size: 18px; */
  margin-bottom: 12px;
}
.content-info-cards .content-info-cards-content p{
  padding-top: 10px;
}

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

.content-info-cards-content a{
  color: #005dac;
  cursor: pointer;
}

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

.content-info-cards-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.content-cards-image,.content-cards-number {
  /* border: 1px solid red; */
  width: 25%;
  margin-right: 20px;
}

.content-cards-title {
  /* border: 1px solid black; */
  width: 75%;
}

.content-cards-number .red-box {
  background-color: #f6f6f6;;
  border-radius: 50%;
  display: inline-block;
  width: 45px;
  height: 45px;
  position: relative;
  display: table;
  margin: 0 auto;
}
.content-cards-number .red-box span {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 25%;
  font-size: 20px;
  color: #005dac;
  font-weight: 700;
}

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


.content-cards-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  transform: none !important;
}

.grid{
  padding: 24px;
  justify-content: flex-start;
}

.red-box img {
  max-width: 30px;
  position: absolute;
  top: 20%;
  left: 20%;
}
.content-cards-subtitle{
  width: 100%;
}

.content-cards-subtitle p{
  padding-top: 24px;
}

.content-cards-subtitle p, .content-cards-subtitle a,.content-info-cards .content-info-cards-content p, .content-cards-wrapper p, .content-info-cards-content a{
  font-size: 16px;
}

.content-info-cards .content-info-cards-header .content-cards-title h3{
  font-size: 20px;
}

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

@media screen and (max-width: 1500px) {
  .content-info-cards {
    width: 31%;
    /* width: calc(33.333% - 20px); */
    margin: 10px;
  }
}

@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: 960px) {
  .content-info-cards {
    width: 45%;
  }
}

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

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

@media (max-width: 768px) {
  .content-cards-wrapper h2{
    font-size: 24px;
  }
  .content-cards-subtitle p, .content-cards-subtitle a,
  .content-info-cards .content-info-cards-content p, .content-cards-wrapper p, .content-info-cards-content a{
    font-size: 14px;
  }
  .content-info-cards .content-info-cards-header .content-cards-title h3{
    font-size: 18px;
  }
  .content-cards-wrapper{
    justify-content: flex-start;
  }
  .content-info-cards {
    min-width: 100%;
    box-sizing: border-box;
  }

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

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

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

  .grid {
    grid-auto-columns: 90%;
    grid-gap: 17px;
    display: grid;
    grid-auto-flow: column;
    max-width: 800px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 24px 0 0;
  }

  .grid::-webkit-scrollbar {
    display: none;
  }
}