.wd-section-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 14px;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wd-section-header .wd-section-header__title {
  margin: 0;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--wd-section-header-title-size, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.wd-section-header__link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #233a6e !important;
  font-family: inherit;
  font-size: var(--wd-section-header-link-size, 16px);
  font-weight: 400;
  line-height: 20px;
  text-decoration: none !important;
  white-space: nowrap;
}

.wd-section-header__link:hover,
.wd-section-header__link:focus {
  color: #233a6e !important;
  text-decoration: none !important;
}

.wd-section-header__arrow {
  position: relative;
  width: 38px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}

.wd-section-header__arrow::before {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
}

.wd-section-header__arrow::after {
  position: absolute;
  top: 1px;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.wd-arrow {
  --wd-arrow-width: 41px;
  --wd-arrow-line: 3px;
  --wd-arrow-head: 16px;
  position: relative;
  width: var(--wd-arrow-width);
  height: var(--wd-arrow-head);
  display: inline-block;
  flex: 0 0 var(--wd-arrow-width);
  color: currentColor;
}

.wd-arrow::before {
  position: absolute;
  top: 50%;
  right: 1px;
  left: 0;
  height: var(--wd-arrow-line);
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.wd-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: var(--wd-arrow-head);
  height: var(--wd-arrow-head);
  content: "";
  border-top: var(--wd-arrow-line) solid currentColor;
  border-right: var(--wd-arrow-line) solid currentColor;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.wd-arrow-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  color: #233a6e !important;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
  text-decoration: none !important;
}

.wd-arrow-link:hover,
.wd-arrow-link:focus {
  color: #233a6e !important;
  text-decoration: none !important;
}

.wd-arrow-link--split {
  justify-content: space-between;
  gap: 24px;
}

.wd-arrow-link--inline {
  width: auto;
  justify-content: flex-start;
  gap: 22px;
}

.wd-arrow-link--arrow {
  width: auto;
  justify-content: flex-start;
}

.wd-arrow-link__arrow {
  --wd-arrow-width: 41px;
  --wd-arrow-line: 3px;
  --wd-arrow-head: 16px;
  color: #000000;
}

.wd-feature-card {
  width: 100%;
  height: 100%;
  min-height: 305px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #233a6e;
  border-radius: 10px;
  background: #ffffff;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none !important;
}

.wd-feature-card:hover,
.wd-feature-card:focus {
  color: #233a6e;
  text-decoration: none !important;
}

.wd-feature-card__title {
  min-height: 52px;
  margin: 0;
  padding: 9px 14px 8px;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-feature-title-size, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.wd-feature-card__image {
  width: 100%;
  height: 105px;
  display: block;
  object-fit: cover;
}

.wd-feature-card__description {
  margin: 0;
  padding: 11px 14px 8px;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-feature-description-size, 14px);
  font-weight: 400;
  line-height: 1.35;
}

.wd-feature-card__link {
  min-height: 31px;
  margin-top: auto;
  padding: 0 24px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #233a6e !important;
  font-family: inherit;
  font-size: var(--wd-feature-link-size, 15px);
  font-weight: 700;
  line-height: 22px;
  text-decoration: none !important;
}

.wd-feature-card__link:hover,
.wd-feature-card__link:focus {
  color: #233a6e !important;
  text-decoration: none !important;
}

.wd-feature-card__arrow {
  position: relative;
  width: 56px;
  height: 15px;
  display: inline-block;
  flex: 0 0 auto;
  color: #000000;
}

.wd-feature-card__arrow::before {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
}

.wd-feature-card__arrow::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.wd-review-card {
  width: 100%;
  height: 100%;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none !important;
}

.wd-review-card:hover,
.wd-review-card:focus {
  color: #233a6e;
  text-decoration: none !important;
}

.wd-review-card__quote {
  margin: 0 0 14px;
  color: #233a6e;
  font-size: var(--wd-review-quote-size, 14px);
  font-weight: 400;
  line-height: 1.43;
}

.wd-review-card__author {
  display: block;
  margin-top: auto;
  color: #233a6e;
  font-size: var(--wd-review-author-size, 12px);
  font-weight: 400;
  line-height: 1.35;
}

.wd-review-card__author-role,
.wd-review-card__author-name {
  display: block;
}

.wd-review-card__author-role {
  font-weight: 700;
}

.wd-industry-card {
  width: 100%;
  height: 100%;
  min-height: 219px;
  display: flex;
  flex-direction: column;
  padding: 19px 19px 14px;
  border: 1px solid #233a6e;
  border-radius: 10px;
  background: #ffffff;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none !important;
}

.wd-industry-card:hover,
.wd-industry-card:focus {
  color: #233a6e;
  text-decoration: none !important;
}

.wd-industry-card__head {
  min-height: 47px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 47px minmax(0, max-content);
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  text-align: center;
}

.wd-industry-card__icon {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.wd-industry-card__title {
  margin: 0;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-industry-title-size, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.wd-industry-card__description {
  margin: 14px 0 16px;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-industry-description-size, 12px);
  font-weight: 400;
  line-height: 1.42;
}

.wd-industry-card ul,
.wd-industry-card ol {
  margin-bottom: 10px;
}

.wd-industry-card__link {
  min-width: 200px;
  min-height: 37px;
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 5px;
  background: #d9d9d9;
  color: #233a6e !important;
  font-family: inherit;
  font-size: var(--wd-industry-link-size, 15px);
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  text-decoration: none !important;
}

.wd-industry-card__link:hover,
.wd-industry-card__link:focus {
  background: #cfd4df;
  color: #233a6e !important;
  text-decoration: none !important;
}

.wd-stat-item {
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.wd-stat-item__number {
  margin: 0;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-stat-number-size, 20px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.wd-stat-item__label {
  max-width: 100%;
  margin: 2px 0 0;
  color: #233a6e;
  font-family: inherit;
  font-size: var(--wd-stat-label-size, 12px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.wd-case-grid {
  width: 100%;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wd-news-grid {
  width: 100%;
}

.wd-case-grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 14px;
}

.wd-case-grid .wd-case-grid__title {
  margin: 0;
  color: #233a6e;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--wd-case-grid-title-size, 20px);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
}

.wd-case-grid__header-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #233a6e !important;
  font-family: inherit;
  font-size: var(--wd-case-grid-link-size, 15px);
  font-weight: 400;
  line-height: 20px;
  text-decoration: none !important;
  white-space: nowrap;
}

.wd-case-grid__header-link:hover,
.wd-case-grid__header-link:focus {
  color: #233a6e !important;
  text-decoration: none !important;
}

.wd-case-grid__header-arrow,
.wd-case-card__arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.wd-case-grid__header-arrow {
  width: 41px;
  height: 15px;
  color: #000000;
}

.wd-case-card__arrow {
  width: 41px;
  height: 15px;
  color: #ffffff;
}

.wd-case-grid__header-arrow::before,
.wd-case-card__arrow::before {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
}

.wd-case-grid__header-arrow::after,
.wd-case-card__arrow::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.wd-section-header__arrow,
.wd-feature-card__arrow,
.wd-case-grid__header-arrow,
.wd-case-card__arrow,
.wd-arrow-link__arrow {
  --wd-arrow-width: 41px;
  --wd-arrow-line: 3px;
  --wd-arrow-head: 16px;
  position: relative;
  width: var(--wd-arrow-width);
  height: var(--wd-arrow-head);
  display: inline-block;
  flex: 0 0 var(--wd-arrow-width);
}

.wd-section-header__arrow {
  --wd-arrow-width: 38px;
}

.wd-feature-card__arrow {
  --wd-arrow-width: 56px;
}

.wd-section-header__arrow::before,
.wd-feature-card__arrow::before,
.wd-case-grid__header-arrow::before,
.wd-case-card__arrow::before,
.wd-arrow-link__arrow::before {
  position: absolute;
  top: 50%;
  right: 1px;
  left: 0;
  height: var(--wd-arrow-line);
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.wd-section-header__arrow::after,
.wd-feature-card__arrow::after,
.wd-case-grid__header-arrow::after,
.wd-case-card__arrow::after,
.wd-arrow-link__arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: var(--wd-arrow-head);
  height: var(--wd-arrow-head);
  content: "";
  border-top: var(--wd-arrow-line) solid currentColor;
  border-right: var(--wd-arrow-line) solid currentColor;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.wd-case-grid__items {
  display: grid;
  gap: 12px 16px;
}

.wd-case-grid--featured .wd-case-grid__items {
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(180px, auto));
}

.wd-case-grid--equal .wd-case-grid__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wd-case-card {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  background: #233a6e;
  color: #ffffff !important;
  font-family: inherit;
  text-decoration: none !important;
}

.wd-case-card:hover,
.wd-case-card:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.wd-case-grid--featured .wd-case-card--featured {
  min-height: 370px;
  grid-row: span 2;
}

.wd-case-card__image {
  width: calc(100% - 24px);
  height: auto;
  aspect-ratio: 258 / 145;
  margin: 12px 12px 0;
  display: block;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.wd-case-card--featured .wd-case-card__image {
  height: auto;
  aspect-ratio: 258 / 145;
  margin: 12px 28px 0;
  width: calc(100% - 56px);
}

.wd-case-card__body {
  position: relative;
  min-height: 0;
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 41px;
  align-items: end;
  gap: 14px;
  padding: 8px 12px 10px;
}

.wd-case-card--icon-only .wd-case-card__body {
  grid-template-columns: minmax(0, 1fr) 41px;
}

.wd-case-card--icon-only .wd-case-card__arrow {
  grid-column: 2;
  justify-self: end;
}

.wd-case-card--featured .wd-case-card__body {
  min-height: 0;
  grid-template-rows: auto auto;
  padding: 10px 28px 20px;
}

.wd-case-grid .wd-case-card__title {
  margin: 0;
  color: #ffffff;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--wd-case-card-title-size, 16px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.wd-case-card--featured .wd-case-card__title {
  grid-column: 1 / -1;
}

.wd-case-card__description {
  margin: 7px 0 0;
  color: #ffffff;
  font-family: inherit;
  font-size: var(--wd-case-card-description-size, 14px);
  font-weight: 400;
  line-height: 1.5;
}

.wd-case-card--featured .wd-case-card__arrow {
  align-self: center;
  grid-column: 2;
  grid-row: 2;
}

.wd-case-grid--equal .wd-case-card {
  min-height: 235px;
}

.wd-news-card {
  height: 100%;
}

.wd-case-grid--equal .wd-case-card__image {
  height: auto;
  aspect-ratio: 258 / 145;
}

.elementor-widget-wd_feature_card,
.elementor-widget-wd_review_card,
.elementor-widget-wd_industry_card,
.elementor-widget-wd_feature_card > .elementor-widget-container,
.elementor-widget-wd_review_card > .elementor-widget-container,
.elementor-widget-wd_industry_card > .elementor-widget-container {
  height: 100%;
}

@media (max-width: 560px) {
  .wd-section-header {
    gap: 14px;
    margin-bottom: 12px;
  }

  .wd-section-header__title {
    font-size: var(--wd-section-header-title-size, 20px);
    line-height: 1.3;
  }

  .wd-section-header--with-link {
    align-items: flex-start;
  }

  .wd-section-header__link {
    gap: 12px;
    font-size: var(--wd-section-header-link-size, 14px);
  }

  .wd-section-header__arrow {
    width: 28px;
  }

  .wd-feature-card {
    min-height: 0;
  }

  .wd-review-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .wd-review-card__quote {
    font-size: var(--wd-review-quote-size, 18px);
  }

  .wd-industry-card {
    min-height: 0;
    padding: 18px 14px;
  }

  .wd-industry-card__head {
    padding: 0;
  }

  .wd-industry-card__link {
    width: 100%;
    min-width: 0;
  }

  .wd-stat-item__number {
    font-size: var(--wd-stat-number-size, 20px);
  }

  .wd-case-grid__header {
    align-items: flex-start;
    gap: 14px;
  }

  .wd-case-grid__header-link {
    gap: 12px;
    font-size: var(--wd-case-grid-link-size, 14px);
  }

  .wd-case-grid__header-arrow {
    width: 28px;
  }

  .wd-case-grid--featured .wd-case-grid__items,
  .wd-case-grid--equal .wd-case-grid__items {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wd-case-grid--featured .wd-case-card--featured {
    grid-row: auto;
  }

  .wd-case-card,
  .wd-case-grid--featured .wd-case-card--featured,
  .wd-case-grid--equal .wd-case-card {
    min-height: 220px;
  }

  .wd-case-card__image,
  .wd-case-card--featured .wd-case-card__image,
  .wd-case-grid--equal .wd-case-card__image {
    width: calc(100% - 24px);
    height: auto;
    aspect-ratio: 258 / 145;
    margin: 12px 12px 0;
  }

  .wd-case-card--featured .wd-case-card__body {
    min-height: 0;
    padding: 8px 12px 14px;
  }
}
