.efc-tb,
.efc-tb * {
  box-sizing: border-box;
}

.efc-tb {
  width: 100%;
  background: var(--efc-tb-bg, #fff);
  padding: var(--efc-tb-pt, 88px) 24px var(--efc-tb-pb, 90px);
  overflow: hidden;
}

.efc-tb__container {
  width: min(100%, var(--efc-tb-container, 1580px));
  margin: 0 auto;
}

.efc-tb__kicker {
  margin: 0 0 18px;
  color: var(--efc-tb-blue, #062b52);
  font-family: var(--efc-heading-font, 'Virage', 'Arial Black', Impact, sans-serif);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
}

.efc-tb__title {
  margin: 0 0 16px;
  padding: 0;
  color: var(--efc-tb-blue, #062b52);
  font-family: var(--efc-heading-font, 'Virage', 'Arial Black', Impact, sans-serif);
  font-size: var(--efc-tb-title, 42px);
  line-height: .92;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}

.efc-tb__subtitle {
  width: min(100%, 1260px);
  margin: 0;
  color: var(--efc-tb-text, #313131);
  font-family: var(--efc-body-font, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: var(--efc-tb-subtitle, 28px);
  line-height: 1.18;
  font-weight: 500;
}

.efc-tb__panel {
  margin-top: 76px;
  width: 100%;
  background: var(--efc-tb-card, #f3f4f6);
  border-radius: var(--efc-tb-radius, 28px);
  padding: var(--efc-tb-card-py, 68px) var(--efc-tb-card-px, 92px);
}

.efc-tb__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--efc-tb-gap, 118px);
  align-items: center;
  justify-items: center;
}

.efc-tb__logo {
  width: var(--efc-tb-logo, 230px);
  height: var(--efc-tb-logo, 230px);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease;
}

.efc-tb__logo:hover {
  transform: translateY(-4px);
}

.efc-tb__logo-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.efc-tb__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--efc-tb-placeholder, #ff0000);
}

@media (max-width: 1100px) {
  .efc-tb__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 72px;
  }
}

@media (max-width: 767px) {
  .efc-tb {
    padding: 58px 20px 64px;
  }

  .efc-tb__title {
    font-size: 34px;
    line-height: .96;
    letter-spacing: -1px;
  }

  .efc-tb__subtitle {
    font-size: 19px;
    line-height: 1.25;
  }

  .efc-tb__panel {
    margin-top: 42px;
    border-radius: 20px;
    padding: 42px 28px;
  }

  .efc-tb__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .efc-tb__logo {
    width: min(33vw, 135px);
    height: min(33vw, 135px);
  }
}

@media (max-width: 430px) {
  .efc-tb__logos {
    gap: 28px;
  }

  .efc-tb__logo {
    width: min(36vw, 120px);
    height: min(36vw, 120px);
  }
}
