/* Card service Component */
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.c-card-topic {
  --bg-color: var(--accent-superlight);
  --text-color: var(--black);
  --icon-color: var(--primary-shade);
  position: relative;
  height: 100%;
  background-color: var(--bg-color);
  transition: var(--default-trans);
}

@media (min-width: 992px) {
  .c-card-topic {
    border-bottom: 2px solid var(--primary-complementary);
  }
}
.c-card-topic::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 auto;
  border-bottom: 2px solid var(--primary-complementary);
  background-color: var(--primary-complementary);
  opacity: 0;
  transition: opacity var(--base-trans);
}

.c-card-topic__default {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: var(--spacing-sm, 16px);
}

@media (min-width: 576px) {
  .c-card-topic__default {
    min-height: 232px;
    padding: var(--spacing-md, 24px);
  }
}
.c-card-topic__default .c-card-service__content {
  margin-top: var(--spacing-md, 24px);
}

.c-card-topic__title {
  margin: 0;
  padding-right: var(--spacing-xl);
}

@media (min-width: 1200px) {
  .c-card-topic__title {
    padding-right: 0;
  }
}
.c-card-topic__title a {
  color: var(--text-color);
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.c-card-topic__icon {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.6;
  transition: background-color var(--base-trans);
}

@media (min-width: 992px) {
  .c-card-topic__icon {
    margin-bottom: 8px;
  }
}
.c-card-topic__icon .field--type-entity-reference {
  margin-top: 0 !important;
}

.c-card-topic__icon .field--type-entity-reference svg {
  --icon-color: var(--primary-shade);
  width: 48px;
  height: 48px;
  padding: 4px;
  fill: var(--icon-color);
}

@media (min-width: 576px) {
  .c-card-topic__icon .field--type-entity-reference svg {
    width: 80px;
    height: 80px;
    padding: 8px;
  }
}
@media (min-width: 1200px) {
  .c-card-topic__icon .field--type-entity-reference svg {
    width: 90px;
    height: 90px;
  }
}
.c-card-topic__background {
  position: absolute;
  top: -8px;
  right: -2px;
}

@media (min-width: 992px) {
  .c-card-topic__background {
    top: 0;
    right: -8px;
  }
}
.c-card-topic__background .field--type-entity-reference {
  margin-top: 0 !important;
}

.c-card-topic__background .field--type-entity-reference svg,
.c-card-topic__background .field--type-entity-reference path {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  fill: var(--icon-color);
}

@media (min-width: 576px) {
  .c-card-topic__background .field--type-entity-reference svg,
  .c-card-topic__background .field--type-entity-reference path {
    width: 92px;
    height: 92px;
  }
}
@media (min-width: 1200px) {
  .c-card-topic__background .field--type-entity-reference svg,
  .c-card-topic__background .field--type-entity-reference path {
    width: 100px;
    height: 100px;
  }
}
.c-card-topic:hover {
  background-color: var(--primary-light);
}

.c-card-topic:hover .c-card-topic__title a {
  color: var(--primary-shade);
}

.c-card-topic:hover .c-card-topic__icon {
  background-color: rgba(0, 40, 85, 0.08);
}

.c-card-topic:hover::after {
  opacity: 1;
}

.c-card-topic__token {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: 7px 16px;
  border: none;
  border-radius: 20px;
  background-color: var(--white);
  outline: 1px solid var(--primary-complementary);
  transition: 0s;
}

.c-card-topic__token .c-card-topic__icon {
  position: relative;
  margin: 0;
}

.c-card-topic__token .c-card-topic__icon .field--type-entity-reference svg,
.c-card-topic__token .c-card-topic__icon .field--type-entity-reference path {
  width: 24px;
  height: 24px;
  padding: 0 !important;
}

@media (min-width: 576px) {
  .c-card-topic__token .c-card-topic__icon .field--type-entity-reference svg,
  .c-card-topic__token .c-card-topic__icon .field--type-entity-reference path {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1200px) {
  .c-card-topic__token .c-card-topic__icon .field--type-entity-reference svg,
  .c-card-topic__token .c-card-topic__icon .field--type-entity-reference path {
    width: 24px;
    height: 24px;
  }
}
.c-card-topic__token .c-card-topic__title {
  margin: 0;
  padding-right: 0;
}

.c-card-topic__token .c-card-topic__title a {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
}

.c-card-topic__token .c-card-topic__background {
  display: none;
}

.c-card-topic__token:hover {
  background-color: var(--gray-four);
  outline: 2px solid var(--primary-complementary);
}

.c-card-topic__token:hover::after {
  display: none;
}

.c-card-topic__token:hover .c-card-topic__icon {
  background-color: transparent;
}

.c-card-topic__token:hover .c-card-topic__title a {
  color: var(--accent-dark);
}

.c-card-topic__search {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  background-color: var(--white);
  outline: 1px solid var(--primary-complementary);
  cursor: pointer;
  transition: 0s;
}

.c-card-topic__search .c-card-topic__title {
  margin: 0;
  padding-right: 0;
}

.c-card-topic__search .c-card-topic__title a {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}

.c-card-topic__search .c-card-topic__title a::before {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.25rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e945";
  color: var(--icon-color);
}

.c-card-topic__search::after {
  display: none;
}

.c-card-topic__search:hover {
  background-color: var(--gray-four);
  outline: 2px solid var(--primary-complementary);
}

.c-card-topic__search:hover::after {
  display: none;
}

.c-card-topic__search:hover .c-card-topic__title a {
  color: var(--accent-dark);
}

.block__related-topics.background--accent-shade .c-card-service {
  --bg-color: var(--accent-shade);
  --text-color: var(--white);
  --icon-color: var(--white);
}

.block__related-topics.accent-shade .c-card-service {
  --text-color: var(--white);
}
/*# sourceMappingURL=card-topic.css.map */
