.cards-list {
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .cards {
    margin: 30px auto;
    /* width: 150px;
    height: 150px; */
    width: 180px;
    height: 180px;
    border-radius: 40px;
    /* box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22); */
    box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
    transition: 0.4s ease-in-out;
  }
  .helpDesk {
    margin: 30px auto;
    /* width: 150px;
    height: 150px; */
    width: 250px;
    height: 300px;
    font-size: 12px;
    border-radius: 40px;
    /* box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22); */
    box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* cursor: pointer;
    transition: 0.4s ease-in-out; */
  }
  .card{
    /* margin: 30px auto; */
    /* width: 150px;
    height: 150px; */
    border-radius: 40px;

    background-color: transparent;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
   /* cursor: pointer;*/
    transition: 0.4s ease-in-out;
  }
  .card:hover{
    transform: scale(0.9);
	 	/*box-shadow: 10px 10px 5px lightblue;*/
	 	box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  /* .helpDesk:hover{
    transform: scale(0.9);
	 	box-shadow: 10px 10px 5px lightblue;
	 	box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  } */
  /* .cards:hover{
    transform: scale(0.9);
	 	/*box-shadow: 10px 10px 5px lightblue;*/
	 /*	box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
  }*/
  
  .cards .cards_image {
    width: inherit;
    height: inherit;
    border-radius: 40px;
  }
  
  .cards .cards_image img {
    width: inherit;
    height: inherit;
    border-radius: 40px;
    object-fit: cover;
  }
  
  .cards .cards_title {
    text-align: center;
    border-radius: 0px 0px 40px 40px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    margin-top: -80px;
    height: 40px;
  }
  
  .cards:hover {
    transform: scale(0.9);
    box-shadow: 5px 5px 30px 15px rgba(0, 0, 0, 0.25),-5px -5px 30px 15px rgba(0, 0, 0, 0.25);
  }
  
  .title-white {
    color: white;
  }
  
  .title-black {
    color: black;
  }
  
  /* .social{
    width: 600px;
    border: 2px solid white;
    border-radius: 6px;
  } */

  @media all and (max-width: 500px) {
    .cards-list {
      /* On small screens, we are no longer using row direction but column */
      flex-direction: column;
    }
    .helpDesk{
      margin-top: 50px;
      padding-top: 100px;
    }
  }
  
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(245, 245, 245);
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Exo 2", sans-serif;
  color: var(--color);
  background: var(--bgColor);
}

h1 { text-align: center }

ol {
  width: min(80rem, 90%);
  margin-inline: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;

  list-style: none;
  counter-reset: stepnr;
}

li:nth-child(6n + 1) { --accent-color: #b8df4e }
li:nth-child(6n + 2) { --accent-color: #4cbccb }
li:nth-child(6n + 3) { --accent-color: #7197d3 }
li:nth-child(6n + 4) { --accent-color: #ae78cb }
li:nth-child(6n + 5) { --accent-color: #7dc7a4 }
li:nth-child(6n + 6) { --accent-color: #f078c2 }

ol li {
  counter-increment: stepnr;
  width: 18rem;
  --borderS: 2rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(var(--borderS) + 2rem);
  position: relative;
}
ol li::before,
ol li::after {
  inset: 0;
  position: absolute;
  border-radius: 10%;
  border: var(--borderS) solid var(--bgColor);
  line-height: 1.1;
}
ol li::before {
  content: counter(stepnr);
  color: var(--accent-color);
  padding-left: 10rem;
  font-size: 12rem;
  font-weight: 700;
  overflow: hidden;
}

ol li::after {
  content: "";
  filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.75)) blur(5px);
}

ol li > * { width: 7.5rem }
ol li .icon { font-size: 2rem; color: var(--accent-color); text-align: center }
ol li .title { font-size: 2rem; font-weight: 500 }
ol li .descr { font-size: 0.8rem; font-weight: 300 }

.credits { margin-top: 2rem; text-align: right }
.credits a { color: var(--color) }