:root {
  --tl-ink: #07111f;
  --tl-text: #334155;
  --tl-muted: #64748b;
  --tl-bg: #ffffff;
  --tl-soft: #f5f7fa;
  --tl-accent: #6054ba;
  --tl-accent-cool: #123a55;
  --tl-container: 1280px;
  --tl-section: 60px;
  --tl-site-header-height: clamp(54px, 4.65vw, 85px);
}

.tl-page,
.tl-page * {
  box-sizing: border-box;
}

body.page-template-page-templatestehnolink-php #main > .wf-wrap {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-template-page-templatestehnolink-php #main > .wf-wrap > .wf-container-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tl-page {
  margin: 0;
  overflow: hidden;
  background: var(--tl-bg);
  color: var(--tl-ink);
  font: var(--the7-base-font-big, normal 400 16px/1.6 Arial, Helvetica, sans-serif);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tl-container {
  width: min(calc(100% - 48px), var(--tl-container));
  margin-inline: auto;
}

.tl-page img {
  display: block;
  max-width: 100%;
}

.tl-hero-block {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--tl-site-header-height));
  height: calc(100vh - var(--tl-site-header-height));
  padding: clamp(48px, 7vw, 96px) 0;
  overflow: hidden;
  isolation: isolate;
  background: #8f969e;
}

.tl-hero-block__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.tl-hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 11, 20, .68), rgba(3, 11, 20, .48) 45%, rgba(3, 11, 20, .18)),
    linear-gradient(180deg, rgba(3, 11, 20, .12), rgba(3, 11, 20, .46));
  pointer-events: none;
}

.tl-hero-block__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(calc(100% - 48px), var(--tl-container));
  margin-inline: auto;
  text-align: center;
}

.tl-hero-block__logo {
  width: min(320px, 72vw);
  margin: 0 0 28px;
  filter: drop-shadow(0 12px 28px rgba(255, 255, 255, .8));
}

.tl-hero-block h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 42px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .38);
  text-wrap: balance;
}

.tl-section {
  padding-block: var(--tl-section);
}

.tl-overview-block {
  background: #ffffff;
}

.tl-overview-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: stretch;
}

.tl-overview-block__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  height: 100%;
}

.tl-overview-block__content h2 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-overview-block__content p {
  margin: 0;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-overview-block__content p + p {
  margin-top: 16px;
}

.tl-overview-block__media {
  position: relative;
  height: clamp(320px, 30vw, 420px);
  min-height: clamp(320px, 30vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e2e8f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
}

.tl-overview-block__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.tl-overview-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.tl-overview-card {
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.tl-overview-card h3 {
  margin: 0 0 12px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.2;
  letter-spacing: 0;
}

.tl-overview-card p {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.58;
}

.tl-partner-block {
  background: var(--tl-soft);
}

.tl-partner-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: stretch;
}

.tl-partner-block__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  height: 100%;
}

.tl-partner-block__content h2 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-partner-block__content p {
  margin: 0;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-partner-block__content p + p {
  margin-top: 16px;
}

.tl-partner-block__media {
  position: relative;
  height: clamp(360px, 32vw, 460px);
  min-height: clamp(360px, 32vw, 460px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #d8dee6;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
}

.tl-partner-block__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.tl-applications-block {
  background: #ffffff;
}

.tl-applications-block__head {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.tl-applications-block__head h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-applications-block__head p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tl-application-card {
  min-height: 100%;
  padding: 26px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.tl-application-card__icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 0 18px;
  border-radius: 8px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.tl-application-card:nth-child(1) .tl-application-card__icon {
  background-image: url("../media/icons/applications/industry.png");
}

.tl-application-card:nth-child(2) .tl-application-card__icon {
  background-image: url("../media/icons/applications/medical.png");
}

.tl-application-card:nth-child(3) .tl-application-card__icon {
  background-image: url("../media/icons/applications/datacenter.png");
}

.tl-application-card:nth-child(4) .tl-application-card__icon {
  background-image: url("../media/icons/applications/logistics.png");
}

.tl-application-card:nth-child(5) .tl-application-card__icon {
  background-image: url("../media/icons/applications/construction.png");
}

.tl-application-card:nth-child(6) .tl-application-card__icon {
  background-image: url("../media/icons/applications/infrastructure.png");
}

.tl-application-card h3 {
  margin: 0 0 12px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.2;
  letter-spacing: 0;
}

.tl-application-card p {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.58;
}

.tl-equipment-block {
  background: url("../media/equipment-complex.png") center / cover no-repeat;
}

.tl-equipment-block__head {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.tl-equipment-block__head h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-equipment-block__head p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.62;
}

.tl-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tl-equipment-card {
  min-height: 100%;
  padding: 26px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(3, 11, 20, .22);
}

.tl-equipment-card h3 {
  margin: 0 0 12px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.2;
  letter-spacing: 0;
}

.tl-equipment-card p {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.58;
}

.tl-series-block {
  background: #ffffff;
}

.tl-series-block__head {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.tl-series-block__head h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-series-block__head p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-series-list {
  display: grid;
  gap: 22px;
}

.tl-series-card {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  min-height: 360px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
}

.tl-series-card__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: #ffffff;
}

.tl-series-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 28px;
}

.tl-series-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.tl-series-card__content h3 {
  margin: 0 0 10px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 28px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-series-card__lead {
  margin: 0 0 20px;
  color: var(--tl-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
}

.tl-series-card__content p:not(.tl-series-card__lead) {
  margin: 0;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-series-card__content p:not(.tl-series-card__lead) + p {
  margin-top: 16px;
}

.tl-custom-block {
  background: var(--tl-soft);
}

.tl-custom-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: stretch;
}

.tl-custom-block__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  height: 100%;
}

.tl-custom-block__content h2 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-custom-block__content p {
  margin: 0;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-custom-block__content p + p {
  margin-top: 16px;
}

.tl-custom-block__media {
  position: relative;
  height: clamp(320px, 30vw, 420px);
  min-height: clamp(320px, 30vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #d8dee6;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
}

.tl-custom-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tl-custom-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.tl-custom-card {
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.tl-custom-card h3 {
  margin: 0 0 12px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.2;
  letter-spacing: 0;
}

.tl-custom-card p {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.58;
}

.tl-advantages-block {
  background: #ffffff;
}

.tl-advantages-block__head {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.tl-advantages-block__head h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.tl-advantages-block__head p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--tl-text);
  font-size: 16px;
  line-height: 1.62;
}

.tl-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tl-advantage-card {
  min-height: 100%;
  padding: 26px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.tl-advantage-card__icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 0 18px;
  border-radius: 8px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.tl-advantage-card:nth-child(1) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/production.png");
}

.tl-advantage-card:nth-child(2) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/configuration.png");
}

.tl-advantage-card:nth-child(3) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/load-testing.png");
}

.tl-advantage-card:nth-child(4) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/power-range.png");
}

.tl-advantage-card:nth-child(5) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/components.png");
}

.tl-advantage-card:nth-child(6) .tl-advantage-card__icon {
  background-image: url("../media/icons/advantages/support.png");
}

.tl-advantage-card h3 {
  margin: 0 0 12px;
  color: var(--tl-accent);
  font-family: var(--the7-h1-font-family, Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-weight: var(--the7-h1-font-weight, 700);
  line-height: 1.2;
  letter-spacing: 0;
}

.tl-advantage-card p {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 767px) {
  :root {
    --tl-section: 46px;
  }

  .tl-container {
    width: min(calc(100% - 32px), var(--tl-container));
  }

  .tl-hero-block__inner {
    width: min(calc(100% - 32px), var(--tl-container));
  }

  .tl-hero-block {
    min-height: calc(78svh - var(--tl-site-header-height));
    height: auto;
    padding: 58px 0;
  }

  .tl-hero-block__logo {
    width: min(240px, 74vw);
    margin-bottom: 22px;
  }

  .tl-hero-block h1 {
    font-size: 32px;
  }

  .tl-overview-block__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tl-overview-block__content h2 {
    font-size: 30px;
  }

  .tl-overview-block__media {
    height: auto;
    min-height: 280px;
  }

  .tl-overview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
  }

  .tl-partner-block__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tl-partner-block__content h2 {
    font-size: 30px;
  }

  .tl-partner-block__media {
    height: auto;
    min-height: 280px;
  }

  .tl-applications-block__head {
    margin-bottom: 28px;
  }

  .tl-applications-block__head h2 {
    font-size: 30px;
  }

  .tl-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tl-equipment-block__head {
    margin-bottom: 28px;
  }

  .tl-equipment-block__head h2 {
    font-size: 30px;
  }

  .tl-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tl-series-block__head {
    margin-bottom: 28px;
  }

  .tl-series-block__head h2 {
    font-size: 30px;
  }

  .tl-series-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tl-series-card__media {
    min-height: 260px;
  }

  .tl-series-card__content {
    padding: 28px 24px;
  }

  .tl-series-card__content h3 {
    font-size: 24px;
  }

  .tl-series-card__lead {
    font-size: 18px;
  }

  .tl-custom-block__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tl-custom-block__content h2 {
    font-size: 30px;
  }

  .tl-custom-block__media {
    height: auto;
    min-height: 280px;
  }

  .tl-custom-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
  }

  .tl-advantages-block__head {
    margin-bottom: 28px;
  }

  .tl-advantages-block__head h2 {
    font-size: 30px;
  }

  .tl-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

}

@media (max-width: 560px) {
  .tl-overview-cards,
  .tl-applications-grid,
  .tl-equipment-grid,
  .tl-custom-cards,
  .tl-advantages-grid {
    grid-template-columns: 1fr;
  }
}
