.elementor-11 .elementor-element.elementor-element-4c83999{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */:root {
  --dfi-blue: #203f78;
  --dfi-blue-dark: #082452;
  --dfi-yellow: #ffc400;
  --dfi-text: #071b3d;
  --dfi-muted: #f4f6f9;
  --dfi-border: #dfe5ef;
}

.dfi-home {
  color: var(--dfi-text);
  font-family: inherit;
}

.dfi-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--dfi-blue);
}

.dfi-hero__image {
  overflow: hidden;
}

.dfi-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dfi-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 56px;
  color: #fff;
}

.dfi-hero__content h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.dfi-hero__content h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 24px;
  background: var(--dfi-yellow);
}

.dfi-hero__content p {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
}

.dfi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.dfi-btn:hover {
  transform: translateY(-1px);
}

.dfi-btn--yellow {
  background: var(--dfi-yellow);
  color: var(--dfi-text);
}

.dfi-btn--blue {
  background: var(--dfi-blue);
  color: #fff;
}

.dfi-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  background: #fff;
}

.dfi-feature {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
}

.dfi-feature__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--dfi-blue);
}

.dfi-feature__icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.dfi-feature h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--dfi-blue-dark);
}

.dfi-feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.dfi-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 24px;
}

.dfi-section__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.dfi-section__head h2 {
  margin: 0;
  font-size: 36px;
  color: var(--dfi-blue-dark);
}

.dfi-section__head a {
  color: var(--dfi-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.dfi-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dfi-card {
  overflow: hidden;
  border: 1px solid var(--dfi-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 27, 61, .06);
}

.dfi-card img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
  display: block;
}

.dfi-card__body {
  padding: 24px;
}

.dfi-card__body span {
  display: block;
  margin-bottom: 10px;
  color: var(--dfi-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dfi-card__body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
  color: var(--dfi-blue-dark);
}

.dfi-card__body p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
}

.dfi-card__body small {
  color: var(--dfi-blue-dark);
  font-weight: 700;
}

.dfi-join-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 52px;
  padding: 34px 46px;
  background: #f1f4fa;
  border-radius: 6px;
}

.dfi-join-cta h2 {
  margin: 0 0 8px;
  font-size: 30px;
  color: var(--dfi-blue-dark);
}

.dfi-join-cta p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dfi-hero {
    grid-template-columns: 1fr;
  }

  .dfi-hero__image {
    min-height: 320px;
  }

  .dfi-hero__content {
    padding: 46px 24px;
  }

  .dfi-feature-strip,
  .dfi-news-grid {
    grid-template-columns: 1fr;
  }

  .dfi-join-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 24px;
    margin-right: 24px;
    padding: 28px;
  }
}/* End custom CSS */