@font-face {
    font-family: "Geologica";
    src: url("template/font/Geologica-Black.woff2") format("woff2"),
        url("template/font/Geologica-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geologica";
    src: url("template/font/Geologica-Thin.woff2") format("woff2"),
        url("template/font/Geologica-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geologica";
    src: url("template/font/Geologica-Regular.woff2") format("woff2"),
        url("template/font/Geologica-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geologica";
    src: url("template/font/Geologica-Bold.woff2") format("woff2"),
        url("template/font/Geologica-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

HTML,
BODY {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
}

BODY {
    margin: 0 auto;
    background-color: rgb(var(--bg));
    color: #fff;
}

* {
    font-family: "Geologica", sans-serif;
    box-sizing: border-box;
}

HTML {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

A {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

IMG {
    vertical-align: middle;
}

A:hover {
    text-decoration: none;
}

.wrapper {
    position: relative;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.wrapper>.content {
    flex-grow: 1;
}

.widther {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0px 20px;
    margin: 0 auto;
}

:root {
    --brand-primary: 241 90 43;
    /* #F15A2B */
    --brand-secondary: 247 148 29;
    /* #F7941D */
    --gray-primary: 109 110 113;
    /* #6D6E71 */
    --gray-secondary: 65 64 66;
    /* #414042 */

    --white: 255 255 255;
    --black: 0 0 0;

    --bg: 10 10 10;
    /* #0A0A0A */
    --surface: 18 18 18;
    /* #121212 */
    --line: 255 255 255;
    /* rgba(255,255,255,.12) — сама линия белая */
    --text: 229 229 229;
    /* #E5E5E5 */
    --muted: 163 163 163;
    /* #A3A3A3 */
    --amber: 245 158 11;
    /* #F59E0B */
    --amber-2: 251 191 36;
    /* #FBBF24 */

    --radius-card: 32px;
    --radius-btn: 12px;
    --maxw: 1400px;
}

/* Header */

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    padding: 0px 16px;
    transition: background .25s ease, backdrop-filter .25s ease;
}

.header.header--scrolled {
    background: rgb(3 5 10 / 0.7);
    backdrop-filter: blur(18px);
}

.header.header--scrolled::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

.header>div {
    padding: 20px 0px;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto;
}

.header .logo img {
    width: 200px;
}

.header .mobile-menu-button {
    display: none;
}

.header .menu ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    gap: 20px;
    list-style: none;
    font-weight: bold;
}

/* Layout */

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 16px
}

.section {
    padding: 64px 0
}

.divider {
    border-top: 1px solid rgb(var(--line));
}

.subtitle {
    color: #d4d4d4;
    max-width: 640px
}

.kicker {
    font-size: 0.9em;
    text-transform: uppercase;
    color: rgb(var(--brand-primary));
}

/* Hero */

.hero-grad {
    background-image: url("/template/img/z1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 100px 16px;
    text-shadow: 2px 2px rgba(0, 0, 0, .25);
}

.hero-grad .kicker {
    color: #fff;
}

.hero-grad .container.grid-2 {
    align-items: center;
    padding: 80px 0 96px;
}

.hero-grad .container.center {
    padding: 72px 0;
}

.hero-grad .center .subtitle {
    margin: 12px auto 0;
    max-width: 740px;
}

.hero-grad .mt-16 {
    display: flex;
    gap: 12px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-grad .center .mt-16 {
    justify-content: center
}

.hero-grad .subtitle {
    font-size: 1.2em;
}

.hero-title {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0px 30px 0px;
    max-width: 20ch;
    text-wrap: balance;
}

.hero-grad .grid>div>div:nth-child(2) .card-title::before {
    background: url("/template/img/hi2.webp") center/32px 32px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

.hero-grad .grid>div>div:nth-child(3) .card-title::before {
    background: url("/template/img/hi3.webp") center/32px 32px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

.hero-grad .grid>div>div:nth-child(4) .card-title::before {
    background: url("/template/img/hi4.webp") center/32px 32px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

/* Что вы получите */

.cvp .card h3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.5em;
    margin-top: 10px;
    --icon: url("/template/img/cvp1.webp");
}

.cvp .card h3::before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    background:
        var(--icon) center/36px 36px no-repeat,
        radial-gradient(circle, #02060b 60%, #02060b 60%) padding-box,
        linear-gradient(135deg,
            rgb(var(--brand-secondary)),
            rgb(var(--brand-primary))) border-box;

    box-shadow:
        0 0 10px rgb(var(--brand-secondary) / 0.4),
        0 0 20px rgb(var(--brand-primary) / 0.5);
}

.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/cvp2.webp");
}

.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/cvp3.webp");
}

.cvp .card:nth-child(4) h3 {
    --icon: url("/template/img/cvp4.webp");
}

.cvp .card:nth-child(5) h3 {
    --icon: url("/template/img/cvp5.webp");
}

.cvp .card:nth-child(6) h3 {
    --icon: url("/template/img/cvp6.webp");
}

/* Главная услуги */

#services .container {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr 2fr;
    border-radius: var(--radius-card);
    padding: 0px 0px 0px 20px;
    background: radial-gradient(400px 400px at 0% 0%, rgb(var(--amber) / .25), transparent 70%), rgb(var(--gray-primary) / .1);
}

#services .glass-btn {
    margin: 40px 0px;
}

#services .card::before {
    opacity: 0.2;
}

#services .grid {
    margin-top: 0px;
    background-image: url("/template/img/hybg.webp");
    background-size: cover;
    border-radius: var(--radius-card);
    padding: 20px;
}

/* Главная процесс */

#process .card {
    padding: 0px;
    overflow: hidden;
}

#process .card>* {
    padding: 20px 20px 0px 20px;
}

#process .card h3 {
    margin: 0px;
}

#process .card>p {
    padding-top: 0px;
    padding-bottom: 20px;
}

#process .card .kicker {
    color: var(--white);
    padding-bottom: 220px;
    background-image: url("/template/img/kmr1.webp");
    background-size: cover;
    background-position: center;
}

#process .card:nth-child(2) .kicker {
    background-image: url("/template/img/kmr2.webp");
}

#process .card:nth-child(3) .kicker {
    background-image: url("/template/img/kmr3.webp");
}

#process .card:nth-child(4) .kicker {
    background-image: url("/template/img/kmr4.webp");
}

/* Процесс — 4 колонки на десктопе */
#process .grid {
    grid-template-columns: repeat(4, 1fr);
}

#cases .card {
    display: grid;
    align-items: center;
    gap: 0px 20px;
    grid-template-columns: 2fr 3fr;
}

#cases .card>div {
    padding: 8px 0px;
}

#cases .card>:first-child {
    position: relative;
    padding-left: 80px;
    grid-column: 1 / -1;
    margin-bottom: 40px;
}

#cases .card>:first-child::before {
    content: "";
    flex: 0 0 64px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: url("/template/img/cases1.webp") center/42px 42px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
    box-shadow: 0 0 7px rgb(var(--brand-primary) / .5);
}

#cases .card:nth-child(2)>:first-child::before {
    background: url("/template/img/cases2.webp") center/42px 42px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

#cases .card:nth-child(3)>:first-child::before {
    background: url("/template/img/cases3.webp") center/42px 42px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
}

#cases .card>:nth-child(2) {
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
}

#cases .card>:nth-child(3) {
    margin-bottom: 10px;
}

#cases .card>:nth-child(2)::after {
    content: "→";
    position: absolute;
    font-size: 2em;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

#cases .card> :nth-child(4),
#cases .card> :nth-child(6),
#cases .card> :nth-child(8) {
    font-size: 0.9em;
    opacity: 0.6;
    padding-left: 10px;
}

#cases .card> :nth-child(5),
#cases .card> :nth-child(7),
#cases .card> :nth-child(9) {
    font-size: 1.1em;
    opacity: 1;
    font-weight: bold;
}

#trust {
    padding: 160px 0px;
    background-image: url("/template/img/trust.webp");
    background-size: cover;
    background-position: top center;
}

#trust ul {
    padding: 0px;
}

#trust li {
    margin: 0px;
    list-style: none;
    margin: 0px;
    padding: 16px 16px 16px 32px;
    background-image: url("/template/img/ocheck.webp");
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
}

#contacts img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Card */

.card {
    position: relative;
    border-radius: var(--radius-card);
    padding: 20px;
    background: radial-gradient(250px 120px at 100% 100%, rgb(var(--amber) / .25), transparent 70%), rgb(var(--bg) / .9);
    box-shadow: 0 0 14px rgb(var(--amber) / .18);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgb(var(--brand-primary) / .3), rgb(var(--brand-secondary)));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 900;
    font-size: 2em;
    margin: 10px 0px 20px 0px;
}

.card-title::before {
    content: "";
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: url("/template/img/hi1.webp") center/32px 32px no-repeat, linear-gradient(150deg, rgb(var(--brand-secondary)), rgb(var(--brand-primary)));
    box-shadow: 0 0 7px rgb(var(--brand-primary) / .5);
}

.card-subtitle {
    margin: 10px 0px;
    font-weight: 500;
    font-size: 1.1em;
    opacity: 0.8;
}

/* Card glass */

.card-glass {
    position: relative;
    border-radius: var(--radius-card);
    padding: 20px;
    background: radial-gradient(250px 120px at 100% 100%, rgb(var(--amber) / .25), transparent 70%), rgb(var(--bg) / .1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.card-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgb(var(--gray-primary) / .2), rgb(var(--white) / .7));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Glass */

.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 999px;
    color: #f5f5f5;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
    background: radial-gradient(circle at 0 100%, rgba(255, 255, 255, .12), transparent 60%), rgba(10, 12, 16, .75);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .75);
    overflow: hidden;
}

.glass-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .7),
            rgba(255, 255, 255, .2),
            rgba(255, 255, 255, .7));

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, .18),
            transparent 45%);
    mix-blend-mode: screen;
    opacity: .6;
    pointer-events: none;
}

.glass-btn__icon {
    font-size: 18px;
}

.glass-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .85);
}

/* Header */

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.brand-name {
    font-weight: 800;
    letter-spacing: .06em
}

.brand-name .lab {
    color: var(--amber)
}

.nav a {
    color: #d4d4d4;
    margin-left: 24px;
    font-size: 14px;
}

.nav a:hover {
    color: var(--amber-2)
}

.title {
    font-size: 40px;
    font-weight: 800;
    margin: 20px 0 40px 0;
}

/* Buttons, cards */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-btn);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--amber);
    color: #0A0A0A
}

.btn-primary:hover {
    background: var(--amber-2)
}

.btn-ghost {
    border-color: var(--line);
    color: #e5e5e5
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .06)
}

/* Grids */

.grid {
    display: grid;
    gap: 24px
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))
}

.grid-2 {
    grid-template-columns: 1fr 1fr
}

.grid-2-2 {
    grid-template-columns: repeat(2, 1fr)
}

@media (max-width:960px) {

    .grid-2,
    #process .grid {
        grid-template-columns: 1fr
    }
}

/* Hero layout */

/* Подсветка секций как в макете */
#cases,
#contacts,
#digital,
#research.section.divider,
#experiments,
#service,
#cta {
    background: rgba(255, 255, 255, .02);
}

/* Subnav */
.subnav {
    position: sticky;
    top: 56px;
    z-index: 40;
    background: rgb(10 10 10 /.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.subnav .container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.subnav a {
    color: #d4d4d4;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
}

.subnav a:hover {
    color: #fbbf24;
    border-color: color-mix(in oklab, var(--amber) 35%, transparent);
    background: color-mix(in oklab, var(--amber) 8%, transparent);
}

/* Breadcrumbs & footer */
.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: #00000099;
    color: #a3a3a3;
    font-size: 12px;
}

.breadcrumbs .container {
    padding: 8px 16px
}

.breadcrumbs a {
    color: #a3a3a3;
    text-decoration: none
}

.breadcrumbs a:hover {
    color: #fbbf24
}

.footer {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    color: var(--muted);
}

.footer .widther {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .logo img {
    width: 180px;
}

.footer-left {
    font-size: 0.9em;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.footer p {
    opacity: 0.5;
}

.footer-menu ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    gap: 20px;
}

/* Forms */
.input,
.textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    padding: 12px;
    margin-bottom: 20px;
}

.textarea {
    min-height: 160px
}

/* Helpers */
.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.center {
    text-align: center
}

/* Услуги! */

.uslugi .cvp .card {
    position: relative;
    padding-left: 130px;
}

.uslugi .cvp .card.case-wrapper {
    padding-left: 0px;
}

.uslugi .cvp .card h3 {
    position: initial;
}

.uslugi .cvp .card h3::before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background:
        var(--icon) center/42px 42px no-repeat,
        radial-gradient(circle, #02060b 60%, #02060b 60%) padding-box,
        linear-gradient(135deg,
            rgb(var(--brand-secondary)),
            rgb(var(--brand-primary))) border-box;
}

.uslugi .hero-grad,
.lab .hero-grad {
    /* background-image: url("/template/img/z2.webp"); */
    padding: 200px 16px;
}

.uslugi #pr.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u1.webp");
}

.uslugi #pr.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u2.webp");
}

.uslugi #pr.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u3.webp");
}

.uslugi #digital.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u4.webp");
}

.uslugi #digital.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u5.webp");
}

.uslugi #digital.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u6.webp");
}

.uslugi #branding.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u7.webp");
}

.uslugi #branding.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u8.webp");
}

.uslugi #branding.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u9.webp");
}

.uslugi #research.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u10.webp");
}

.uslugi #research.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u11.webp");
}

.uslugi #research.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u12.webp");
}

.uslugi #education.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u13.webp");
}

.uslugi #education.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u14.webp");
}

.uslugi #education.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u15.webp");
}

.uslugi #service.cvp .card:nth-child(1) h3 {
    --icon: url("/template/img/u16.webp");
}

.uslugi #service.cvp .card:nth-child(2) h3 {
    --icon: url("/template/img/u17.webp");
}

.uslugi #service.cvp .card:nth-child(3) h3 {
    --icon: url("/template/img/u18.webp");
}

.uslugi .case {
    display: inline-grid;
    padding: 20px;
    gap: 20px;
    align-items: center;
    grid-template-columns: repeat(2, auto);
}

.uslugi .card h4 {
    padding: 0px 20px;
    margin-bottom: 10px;
}

.uslugi .case>div {
    min-width: 120px;
    max-width: 300px;
}

.uslugi .case>div:first-child,
.uslugi .case>div:nth-child(2) {
    position: relative;
    text-transform: uppercase;
    color: rgb(var(--brand-primary));
}

.uslugi .case>div:first-child::after {
    content: "→";
    position: absolute;
    font-size: 2em;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.uslugi .case>div:nth-child(3) {
    opacity: 0.5;
}

.uslugi .case>div:nth-child(4) {
    font-weight: bold;
}

.uslugi .container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.uslugi .container>.title {
    margin-bottom: 0px;
}

.uslugi .container>.kicker,
.uslugi .container>.title,
.uslugi .container>.subtitle {
    grid-column: 1 / -1;
}

.uslugi .container .case-wrapper {
    padding: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
}

.uslugi .container .case-wrapper>.kicker {
    flex-grow: 1;
    min-height: 250px;
    width: 100%;
    font-size: 0px;
    padding: 20px;
    color: #fff;
    background-image: url("/template/img/ui2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.uslugi #digital .container .case-wrapper>.kicker {
    background-image: url("/template/img/ui1.webp");
}

.uslugi #branding .container .case-wrapper>.kicker {
    background-image: url("/template/img/ui3.webp");
}

.uslugi #research .container .case-wrapper>.kicker {
    background-image: url("/template/img/ui4.webp");
}

.uslugi #education .container .case-wrapper>.kicker {
    background-image: url("/template/img/ui5.webp");
}

.uslugi #service .container .case-wrapper>.kicker {
    background-image: url("/template/img/ui6.webp");
}

/* Lab */

.lab .card {
    padding: 0px 0px 10px 0px;
    overflow: hidden;
}

.lab .card h3,
.lab .card p {
    padding: 0px 20px;
}

.lab .card>.kicker {
    background-image: url("/template/img/lab1.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 16 / 9;
    padding: 20px;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
}

.lab #research .card:nth-child(2)>.kicker {
    background-image: url("/template/img/lab2.webp");
}

.lab #research .card:nth-child(3)>.kicker {
    background-image: url("/template/img/lab3.webp");
}

.lab #experiments .card:nth-child(1)>.kicker {
    background-image: url("/template/img/lab4.webp");
}

.lab #experiments .card:nth-child(2)>.kicker {
    background-image: url("/template/img/lab5.webp");
}

.lab #experiments .card:nth-child(3)>.kicker {
    background-image: url("/template/img/lab6.webp");
}

.lab #education .card:nth-child(1)>.kicker {
    background-image: url("/template/img/lab7.webp");
}

.lab #education .card:nth-child(2)>.kicker {
    background-image: url("/template/img/lab8.webp");
}

.lab #education .card:nth-child(3)>.kicker {
    background-image: url("/template/img/lab9.webp");
}

#cta {
    padding: 160px 0px;
    background-image: url(/template/img/cta.webp);
    background-size: cover;
    background-position: top center;
}

#cta .container {
    display: flex;
    justify-content: center;
}

#cta form {
    padding: 20px;
    max-width: 1000px;
}

#cta label {
    text-align: left;
    display: block;
}

#cta .subtitle {
    max-width: none;
}

@media (max-width: 1024px) {

    .header>div {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .home .container,
    .uslugi .container,
    #services .container {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }

    .home .hero-grad .grid-2-2 {
        grid-template-columns: 1fr;
    }

    #services .kicker {
        display: block;
        margin-top: 30px;
    }

    .grid-auto {
        grid-template-columns: 1fr;
    }

    .footer .widther {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer .widther {
        text-align: center;
    }

}