:root {
  --header-height: 80px;
}
@media (max-width: 1199px) {
  :root {
    --header-height: 60px;
  }
}

.tcl-cards-with-icons a {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.tcl-cards-with-icons a:hover {
  opacity: 0.7;
}
@media (max-width: 1199px) {
  .tcl-cards-with-icons .row {
    gap: 30px 0;
  }
}
.tcl-cards-with-icons__card {
  border: 3px solid var(--card-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  height: 100%;
  color: inherit;
}
.tcl-cards-with-icons__card-image {
  position: relative;
  margin-bottom: 20px;
}
.tcl-cards-with-icons__card-image img {
  border-radius: 50%;
}
.tcl-cards-with-icons__card-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--card-color);
}
.tcl-cards-with-icons__card-icon img {
  width: 60% !important;
  height: 60%;
  max-width: none !important;
}
.tcl-cards-with-icons__card-title {
  font-size: 20px;
  line-height: 112.5%;
  font-weight: 700;
  margin-bottom: 20px;
}
.tcl-cards-with-icons__card-text {
  font-size: 14px;
  line-height: 125%;
  margin-bottom: 20px;
}
.tcl-cards-with-icons__card-link {
  font-size: 16px;
  line-height: 150%;
  font-weight: bold;
  margin-top: auto;
  margin-bottom: 0;
}