.single-icon-card {
  transition: transform 0.3s;
  margin-bottom: 30px;
  width: 100%;
  min-height: fit-content;
}

.single-icon-card:hover {
  transform: translateY(-3px);
  background-color: #fff;
  box-shadow: 0px 8px 48px 12px rgba(0, 82, 51, 0.2);
}

.single-icon-card:hover:before {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-clip: content-box;
}

.single-icon-card .icon-link {
  height: 100%;
  display: block;
}

.single-icon-card .img-container {
  position: relative;
  height: auto;
  min-height: 66px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: left;
  transition: transform 0.3s;
  width: fit-content;
}


.single-icon-card .img-container img, 
.single-icon-card .img-container svg,
.single-icon-card .img-container i {
  height: 66px;
  z-index: 2;
  position: relative;
  /*clip-path: circle(50% at 50% 50%);*/
  left: 52px;
  top: 10px;
}

.single-icon-card .img-container svg {
  display: block;
  width: auto;
}

.single-icon-card .img-container i {
  font-size: 36px;
}

.single-icon-card .img-container span {
  z-index: 1;
}

.single-icon-card .img-container span:after {
  position: absolute;
  content: '';
  width: 66px;
  height: 66px;
  left: 20px;
  top: 10px;
  border-radius: 100%;
  background: #C7DADF;
  z-index: 1;
  transition: background 0.5s;
}

.single-icon-card .post-content-wrapper {
  padding: 20px 30px;
}

.single-icon-card .post-title {
  font-size: 20px;
  line-height: 24px;
  color: #3B3B31;
  margin-bottom: 10px;
  font-weight: 600;
}

.single-icon-card .card-icon-links {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.single-icon-card .card-icon-links .card-icon-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #005233;
  margin-right: 15px;
  margin-bottom: 5px;
  position: relative;
}

.single-icon-card .card-icon-links .card-icon-link.has-dot:after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #5994A1;
    position: absolute;
    right: -9px;
    top: 52%;
    transform: translateY(-50%);
}

.single-icon-card .post-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3B3B31;
}


.single-icon-card .btn-arrow {
  margin-top: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: -15px;
  transition: background-position-x 0.3s;
  width: 57px;
  height: 24px;
}

.single-icon-card:hover .btn-arrow {
  background-position-x: unset;
}

.icons-cards-grid-container .icons-cards-grid-sizer,
.icons-cards-grid-container .elementor-widget-single-icon-card {
  width: calc(33.3% - 20px);
}