/**
 * @package     Wordpress.Site
 * @subpackage  Templates.NoName
 *
 * @copyright   Copyright (C) 2020 NoName. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
/**
 * @package     Wordpress.Site
 * @subpackage  Templates.NoName
 *
 * @copyright   Copyright (C) 2020 NoName. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
.idd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.idd-btn--primary {
  background: #0093a8;
  color: #ffffff;
  border: 1.5px solid #0093a8;
}
.idd-btn--primary:hover {
  background: #007a8e;
  color: #ffffff;
}
.idd-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}
.idd-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ind-hero-btn {
  height: 56px;
  display: inline-flex;
  align-items: center;
}

.idd-hero {
  position: relative;
  min-height: 542px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--idd-hero-bg, #003c76) center center/cover no-repeat;
}
.idd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #003c76 0%, rgba(0, 60, 118, 0.7) 60%, transparent 100%);
  z-index: 1;
}
.idd-hero__container {
  position: relative;
  z-index: 2;
}
.idd-hero__content {
  max-width: 616px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.idd-hero__title {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.idd-hero__desc {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.56;
}
.idd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .idd-hero {
    min-height: 380px;
  }
  .idd-hero__title {
    font-size: 36px;
  }
  .idd-hero__desc {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .idd-hero {
    min-height: 420px;
  }
  .idd-hero__title {
    font-size: 1.75rem;
  }
  .idd-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .idd-hero__actions a {
    width: 100%;
    justify-content: center;
  }
}

.idd-overview {
  padding: 60px 0;
  background: #ffffff;
}
.idd-overview__inner {
  display: grid;
  grid-template-columns: 510px 559px;
  gap: 132px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .idd-overview__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .idd-overview__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.idd-overview__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.idd-overview__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.idd-overview__eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #0093a8;
  line-height: 1.25;
}
.idd-overview__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #003c76;
  line-height: 1.22;
}
.idd-overview__desc {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
}
.idd-overview__desc p {
  margin: 0 0 24px;
}
.idd-overview__desc p:last-child {
  margin-bottom: 0;
}
.idd-overview__card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 353px;
  box-shadow: 0 0 2px rgba(10, 13, 18, 0.04), 0 0 6px rgba(10, 13, 18, 0.03), 0 0 16px rgba(10, 13, 18, 0.08);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.idd-overview__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0093a8;
}
.idd-overview__stats-grid {
  display: grid;
  grid-template-columns: 229px 234px;
  row-gap: 24px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .idd-overview__stats-grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (max-width: 575px) {
  .idd-overview__stats-grid {
    grid-template-columns: 1fr;
  }
}
.idd-overview__source {
  margin: auto 0 0;
  font-size: 14px;
  color: #444444;
  line-height: 20px;
  text-align: right;
}

.idd-stat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 102px;
}
.idd-stat__icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0093a8;
  font-size: 24px;
}
.idd-stat__icon svg {
  width: 45px;
  height: 45px;
}
.idd-stat__icon i {
  font-size: 28px;
  line-height: 1;
}
.idd-stat__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 173px;
}
.idd-stat__value {
  font-size: 30px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.2;
}
.idd-stat__label {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 24px;
}

.idd-legal {
  padding: 60px 0;
  background: #f8f9fc;
}
.idd-legal__panel {
  background: #003c76;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.idd-legal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 991px) {
  .idd-legal__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.idd-legal__header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 969px;
}
.idd-legal__eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #0093a8;
  line-height: 1.25;
}
.idd-legal__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.22;
}
.idd-legal__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}
.idd-legal__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 234px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.idd-legal__cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.idd-legal__cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.idd-legal__cta-btn:hover svg {
  transform: translateX(2px);
}
.idd-legal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .idd-legal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .idd-legal__grid {
    grid-template-columns: 1fr;
  }
}

.idd-legal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 249, 252, 0.2);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 242px;
  backdrop-filter: blur(40px);
  transition: background 0.2s;
}
.idd-legal-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.idd-legal-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  margin-bottom: 16px;
}
.idd-legal-card__date {
  font-size: 16px;
  font-weight: 600;
  color: #0093a8;
  line-height: 1.5;
}
.idd-legal-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 25px;
}
.idd-legal-card__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 24px;
}
.idd-legal-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  align-self: flex-end;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0093a8;
  text-decoration: none;
  line-height: 24px;
  transition: color 0.2s;
}
.idd-legal-card__cta svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.idd-legal-card__cta:hover {
  color: #14b9cf;
}
.idd-legal-card__cta:hover svg {
  transform: translateX(3px);
}

.idd-solutions {
  padding: 60px 0;
  background: #f8f9fc;
}
.idd-solutions__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.idd-solutions__eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #0093a8;
  line-height: 1.25;
}
.idd-solutions__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.22;
}
.idd-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
@media (max-width: 1199px) {
  .idd-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .idd-solutions__grid {
    grid-template-columns: 1fr;
  }
}
.idd-solutions__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.idd-svc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.idd-svc-card__image {
  height: 177px;
  overflow: hidden;
  flex-shrink: 0;
}
.idd-svc-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.idd-svc-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #003c76 0%, #0093a8 100%);
}
.idd-svc-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 16px;
  border-radius: 0 0 32px 32px;
  gap: 32px;
}
.idd-svc-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.idd-svc-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.25;
}
.idd-svc-card__desc {
  margin: 0;
  font-size: 16px;
  color: #222222;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.idd-svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #0093a8;
}
.idd-svc-card__cta svg {
  transition: transform 0.2s;
}
.idd-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 60, 118, 0.12);
}
.idd-svc-card:hover .idd-svc-card__img {
  transform: scale(1.05);
}
.idd-svc-card:hover .idd-svc-card__cta svg {
  transform: translateX(4px);
}

.idd-featured {
  padding: 60px 0;
}
.idd-featured__inner {
  display: grid;
  grid-template-columns: 407px 1fr;
  border-radius: 8px;
  overflow: hidden;
  background: #003c76;
  min-height: 270px;
}
@media (max-width: 991px) {
  .idd-featured__inner {
    grid-template-columns: 1fr;
  }
}
.idd-featured__media {
  position: relative;
  min-height: 270px;
}
@media (max-width: 991px) {
  .idd-featured__media {
    min-height: 220px;
  }
}
.idd-featured__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.idd-featured__cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 182px;
  box-shadow: 0 3px 8px rgba(10, 13, 18, 0.2);
  border-radius: 4px;
  z-index: 1;
}
.idd-featured__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.idd-featured__eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #0093a8;
}
.idd-featured__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
}
.idd-featured__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}
.idd-featured__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 12px;
  height: 40px;
  background: #0093a8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid #0093a8;
  align-self: flex-start;
  transition: background 0.2s;
}
.idd-featured__btn:hover {
  background: #007a8e;
  color: #ffffff;
}
.idd-featured__btn svg {
  flex-shrink: 0;
}
.idd-featured__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #f8f9fc;
  margin-top: 4px;
}

.idd-other {
  padding: 60px 0;
  background: #f8f9fc;
}
.idd-other__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .idd-other__header {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.idd-other__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.22;
}
.idd-other__nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.idd-other__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #003c76;
  background: #ffffff;
  color: #003c76;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.idd-other__nav-btn i {
  font-size: 16px;
  line-height: 1;
}
.idd-other__nav-btn:hover {
  background: #003c76;
  color: #ffffff;
}
.idd-other__nav-btn.is-disabled {
  border-color: #d5d7da;
  color: #98a2b3;
  cursor: default;
  pointer-events: none;
}
.idd-other__nav-btn.is-disabled:hover {
  background: #ffffff;
  color: #98a2b3;
}
.idd-other__slider {
  margin: 0 -4px;
}
.idd-other__slider .slick-list {
  overflow: hidden;
  padding: 16px 0;
  margin: -16px 0;
}
.idd-other__slider .slick-track {
  display: flex;
  align-items: stretch;
}
.idd-other__slider .slick-slide {
  height: auto;
  padding: 0 4px;
}
.idd-other__slider .slick-slide > div {
  height: 100%;
}
.idd-other__slide {
  padding: 0 4px;
}

.idd-other-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  height: 80px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}
.idd-other-card:hover {
  box-shadow: 0 4px 12px rgba(0, 60, 118, 0.15);
  transform: translateY(-2px);
}
.idd-other-card__icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0093a8;
  font-size: 28px;
  flex-shrink: 0;
}
.idd-other-card__icon-wrap i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.idd-other-card__label {
  font-size: 16px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}

.ind-hero {
  position: relative;
  min-height: 542px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}
.ind-hero__strips {
  position: absolute;
  right: 0;
  top: 0;
  width: 64%;
  height: 100%;
  display: flex;
  z-index: 0;
  overflow: hidden;
}
.ind-hero__strip {
  flex: 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  margin-left: -8%;
}
.ind-hero__strip:first-child {
  clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
  margin-left: 0;
}
.ind-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 63%);
  z-index: 1;
}
.ind-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}
.ind-hero__content {
  max-width: 616px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.ind-hero__title {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.2;
}
.ind-hero__desc {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #003c76;
  line-height: 1.56;
  max-width: 514px;
}
@media (max-width: 991px) {
  .ind-hero {
    min-height: 400px;
  }
  .ind-hero__strips {
    width: 100%;
    opacity: 0.25;
  }
  .ind-hero__overlay {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0.8) 100%);
  }
  .ind-hero__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .ind-hero__title {
    font-size: 32px;
  }
  .ind-hero__desc {
    font-size: 16px;
  }
}
.ind-hero--full-bg {
  background-size: cover;
  background-position: center;
}
.ind-hero--full-bg .ind-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}
.ind-hero--full-bg .ind-hero__title {
  color: #ffffff;
}
.ind-hero--full-bg .ind-hero__desc {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.ind-hero--full-bg .breadcrumb-item,
.ind-hero--full-bg .breadcrumb-item a,
.ind-hero--full-bg .breadcrumb-item.active,
.ind-hero--full-bg .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.8) !important;
}
.ind-hero--full-bg .breadcrumb-item a,
.ind-hero--full-bg .breadcrumb-item a a,
.ind-hero--full-bg .breadcrumb-item.active a,
.ind-hero--full-bg .breadcrumb-separator a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.ind-clients {
  padding: 60px 0;
  background: #ffffff;
}
.ind-clients__title {
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.22;
  margin-bottom: 40px;
}
.ind-clients__track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -16px;
}
.ind-clients__track-wrap::before, .ind-clients__track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ind-clients__track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}
.ind-clients__track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}
.ind-clients__track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ind-clients-scroll 30s linear infinite;
  width: max-content;
}
.ind-clients__track:hover {
  animation-play-state: paused;
}
.ind-clients__logo {
  height: 70px;
  width: auto;
  max-width: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: opacity 0.3s, filter 0.3s;
}
.ind-clients__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.ind-clients__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
@keyframes ind-clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.wcj-section {
  background-color: #0093a8;
}

.wcj-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 60px 90px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .wcj-inner {
    padding: 60px 40px;
  }
}
@media (max-width: 991px) {
  .wcj-inner {
    flex-direction: column;
    padding: 60px 24px;
  }
}

.wcj-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.wcj-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 44px;
  letter-spacing: 0.02em;
  margin: 0;
}

.wcj-features {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 991px) {
  .wcj-features {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }
}

.wcj-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-width: 0;
  padding: 12px 8px;
  border-radius: 8px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.wcj-feature:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.wcj-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.wcj-feature__icon svg {
  width: 45px;
  height: 45px;
}
.wcj-feature__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wcj-feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  margin: 0;
}
.wcj-feature__desc {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 24px;
  margin: 0;
}

.wcj-divider {
  flex-shrink: 0;
  width: 1px;
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 4px, transparent 4px, transparent 8px);
  margin: 0 12px;
  align-self: stretch;
}
@media (max-width: 991px) {
  .wcj-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    align-self: auto;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 4px, transparent 4px, transparent 8px);
  }
}

.wcj-cta-card {
  flex: 0 0 404px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background-color: #003c76;
  border-radius: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wcj-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 60, 118, 0.25);
}
@media (max-width: 1199px) {
  .wcj-cta-card {
    flex: 0 0 340px;
  }
}
@media (max-width: 991px) {
  .wcj-cta-card {
    flex: none;
    width: 100%;
  }
}
.wcj-cta-card__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 44px;
  letter-spacing: 0.02em;
  margin: 0;
}
.wcj-cta-card__desc {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 24px;
  margin: 0;
}
.wcj-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  background-color: #ffffff;
  border-radius: 8px;
  color: #003c76;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.wcj-cta-card__btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.wcj-cta-card__btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #003c76;
}
.wcj-cta-card__btn:hover i {
  transform: translateX(3px);
}

/*# sourceMappingURL=template.industry.css.map*/