.three_cards_section .cards_container .cards_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 37.14px;
}
.three_cards_section .cards_container .card{
  width: calc(33.33% - 24.76px);
  border: 2px solid var(--primary_color);
  padding: 26px;
  padding-top: 70.29px;
  border-radius: 35px;
  display: flex;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.2s ease-in-out;
}
.three_cards_section .cards_container .card:hover{
  background-color: var(--denary_color);
  border: 2px solid var(--denary_color);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.three_cards_section .cards_container .card .card_icon{
  width: 94px;
  height: 94px;
  background-color: var(--primary_color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0%);
  transition: transform 0.3s ease;
}
.three_cards_section .cards_container .card:hover .card_icon{
  background-color: var(--secondary_color);
}
.three_cards_section .cards_container .card:hover .card_icon img{
  filter: brightness(0) invert(1);
}
.three_cards_section .cards_container .card:hover .card_heading h3 {
  color: var(--white_color);
  transition: all 0.4s ease-in-out;
}
.three_cards_section .cards_container .card .card_heading{
  max-width: 296.41px;
}
.three_cards_section .cards_container .card:hover .card_heading{
  margin: 0 auto;
}
.three_cards_section .cards_container .card.card-3 .card_heading{
  max-width: 242px;
}
.three_cards_section .cards_container .card .card_heading h3{
  color: var(--primary_color);
}
.three_cards_section .cards_container .card:hover .card_description{
  margin: 0 auto;
}
.three_cards_section .cards_container .card .card_description{
  max-width: 259px;
  transition: all 0.4s ease-in-out;
}
.three_cards_section .cards_container .card .card_description p{
  color: var(--white_color);
}

@media (min-width: 768px) and (max-width: 1024px){
  .three_cards_section .cards_container .card{
    width: calc(50% - 18.57px);
  }
  .three_cards_section .cards_container .card .card_heading{
    max-width: 100%;
  }
  .three_cards_section .cards_container .card .card_heading h3{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -.8px;
    line-height: 1.125;
  }
  .three_cards_section .cards_container .card .card_description{
    max-width: 100%;
  }
  .three_cards_section .cards_container .card .card_description p{
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -.96px;
    line-height: 1.25;
  }
}

@media (max-width: 767px){
  .three_cards_section .cards_container .cards_wrap{
    justify-content: center;
    gap: 30px;
  }
  .three_cards_section .cards_container .card{
    width: 100%;
    height: auto;
    border-radius: 50px;
    padding-top: 67px;
    padding-bottom: 40px;
    margin-left: 4px;
    margin-right: 4px;
  }
  .three_cards_section .cards_container .card: hover{
    cursor: grab;
  }
  .three_cards_section .cards_container .card .card_heading{
    max-width: 100%;
  }
  .three_cards_section .cards_container .card .card_heading h3{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -.8px;
    line-height: 1.125;
  }
  .three_cards_section .cards_container .card:hover .card_heading h3{
    color: var(--white_color);
  }
  .three_cards_section .cards_container .card .card_description{
    max-width: 100%;
  }
  .three_cards_section .cards_container .card .card_description p{
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -.96px;
    line-height: 1.25;
  }
  .three_cards_section .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 12px;
    padding: 0;
    list-style: none;
    bottom: -60px;
  }
  .three_cards_section .slick-dots li {
    margin: 0;
    padding: 0;
  }
  .three_cards_section .slick-dots li button:before {
    display:none;
  }
  .three_cards_section .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 20%;
    padding: 9px;
    background-color: var(--primary_color); 
    opacity: 22%;
    border: none;
    font-size: 0; 
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .three_cards_section .slick-dots li.slick-active button {
    background-color: var(--primary_color);
    opacity: 100%;
  }
  .three_cards_section .slick-slider .slick-track{
    display: flex;
  }
}