

/* Start:/bitrix/templates/rt/css/fonts.css?17864395501292*/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/bitrix/templates/rt/css/../fonts/inter-cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/bitrix/templates/rt/css/../fonts/inter-cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/bitrix/templates/rt/css/../fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/bitrix/templates/rt/css/../fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* End */


/* Start:/bitrix/templates/rt/css/style.css?178643955067757*/
:root {
    --black: #0A0A0A;
    --bg: #0B0B0B;
    --card: #141414;
    --card-2: #1C1C1D;
    --white: #F6F5EE;
    --yellow: #FEAD2B;
    --grey: #979797;
    --grey-2: #727272;
    --line: rgba(246, 245, 238, .1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked {
    overflow: hidden;
}

h1, h2, h3, p, ul, figure {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 26.379px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--white);
    white-space: nowrap;
}

.logo__accent {
    color: var(--yellow);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 32px 0 16px;
    transition: background-color .25s ease, padding .25s ease, transform .3s ease;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 53px;
}

.header.is-fixed {
    position: fixed;
    padding: 12px 0;
    background: var(--bg);
    animation: headerDown .3s ease;
}

@keyframes headerDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header__catalogue {
    position: relative;
}

.btn-catalogue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--card-2);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.16px;
    transition: background-color .2s ease;
}

.btn-catalogue:hover {
    background: #262627;
}

.btn-catalogue__icon {
    display: grid;
    grid-template-columns: repeat(2, 5px);
    grid-template-rows: repeat(2, 5px);
    gap: 2px;
    flex: 0 0 auto;
}

.btn-catalogue__icon i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background: var(--yellow);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.header__menu a {
    opacity: .8;
    transition: opacity .2s ease, color .2s ease;
}

.header__menu a:hover {
    opacity: 1;
    color: var(--yellow);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    color: var(--yellow);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.32px;
    transition: background-color .2s ease, color .2s ease;
}

.btn-quote:hover {
    background: var(--yellow);
    color: var(--black);
}

.header__mobile-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--card-2);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header__mobile-btn img {
    width: 14px;
    height: 14px;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
}

.burger i {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
}

.menu-drop {
    position: absolute;
    top: calc(100% + 5px);
    left: -9px;
    display: flex;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header__catalogue.is-open .menu-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-drop__col {
    background: var(--card-2);
    padding: 16px 20px;
}

.menu-drop__col--main {
    width: 308px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 auto;
}

.menu-drop__col--sub {
    position: relative;
    width: 308px;
    flex: 0 0 auto;
    margin-left: -13px;
    padding-left: 45px;
    display: none;
}

.menu-drop__col--sub::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: var(--line);
}

.menu-drop__col--sub.is-visible {
    display: block;
}

.menu-drop__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 24px;
    padding: 0 6px 0 0;
    margin: 0 -6px;
    padding-left: 6px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.3;
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease;
}

.menu-drop__arrow {
    width: 7px;
    height: 13px;
    margin-right: 3px;
    opacity: 0;
    flex: 0 0 auto;
    transform: scaleX(-1);
}

.menu-drop__item.is-active,
.menu-drop__item:hover {
    background: var(--yellow);
    color: var(--black);
}

.menu-drop__item.is-active .menu-drop__arrow,
.menu-drop__item:hover .menu-drop__arrow {
    opacity: 1;
}

.menu-drop__sub {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.menu-drop__sub.is-visible {
    display: flex;
}

.menu-drop__subitem {
    font-size: 16px;
    line-height: 1.3;
    transition: color .15s ease;
}

.menu-drop__subitem:hover {
    color: var(--yellow);
}

.hero {
    position: relative;
    z-index: 2;
    background: var(--card);
}

.hero__container {
    position: relative;
    padding-top: 213px;
    padding-bottom: 120px;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 504px;
}

.hero__title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    max-width: 500px;
}

.hero__title-hl {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin-left: -6px;
    padding-right: 13px;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
}

.hero__subtitle {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    opacity: .6;
}

.hero-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 430px;
    max-width: 100%;
    margin-top: 32px;
    padding: 20px 16px;
    border-radius: 16px;
    background: var(--white);
}

.hero-search__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.hero-search__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: none;
    background: none;
    color: var(--black);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -1.08px;
    padding-right: 116px;
}

.hero-search__input::placeholder {
    color: var(--black);
    opacity: .6;
}

.hero-search__btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.36px;
    transition: background-color .2s ease;
}

.hero-search__btn:hover {
    background: #ffbe55;
}

.search-result {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    padding: 12px;
    border-radius: 16px;
    background: var(--white);
    display: none;
    z-index: 15;
}

.search-result.is-open {
    display: block;
}

.search-result__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 334px;
    overflow-y: auto;
}

.mini-card {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(20, 20, 20, .06);
    color: var(--black);
    transition: background-color .2s ease;
}

.mini-card:hover {
    background: rgba(20, 20, 20, .12);
}

.mini-card__title {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.16px;
}

.mini-card__row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.13px;
    color: var(--grey);
}

.mini-card__title + .mini-card__row {
    margin-top: 6px;
}

.mini-card__name {
    flex: 0 0 auto;
}

.mini-card__row::after {
    content: "";
    flex: 1 1 auto;
    margin-bottom: 4px;
    border-bottom: 1px dotted var(--grey);
    order: 1;
}

.mini-card__value {
    flex: 0 1 auto;
    min-width: 0;
    order: 2;
    text-align: right;
    overflow-wrap: anywhere;
}

.hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__num {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.stat__num span {
    color: var(--yellow);
}

.stat__label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.16px;
    opacity: .6;
}

.stat__divider {
    width: 1px;
    height: 70px;
    background: var(--line);
    flex: 0 0 auto;
}

.hero__media {
    position: absolute;
    right: 28px;
    bottom: 4px;
    width: 590px;
    pointer-events: none;
}

.hero__media img {
    width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
}

.section-title__label {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.14px;
    color: var(--yellow);
}

.section-title__heading {
    margin-top: 8px;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.catalogue {
    padding-top: 100px;
}

.catalogue__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 384px;
    gap: 24px;
    margin-top: 37px;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    background: var(--card);
}

.card--wide {
    grid-column: span 2;
}

.card__title {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.card__img {
    position: absolute;
    width: auto;
    height: auto;
    transition: transform .4s ease;
}

.card:hover .card__img {
    transform: scale(1.04);
}

.card__img--gas-stabilitrons {
    left: 19.27%;
    top: 40.36%;
    width: 62.76%;
}

.card__img--gas-discharge-devices {
    left: 14.32%;
    top: 33.85%;
    width: 70.31%;
}

.card__img--backward-wave-tubes {
    left: 21.88%;
    top: 29.95%;
    width: 54.95%;
}

.card__img--generator-and-modulator-tubes {
    left: 20.31%;
    top: 32.29%;
    width: 57.55%;
}

.card__img--klystrons {
    left: 19.53%;
    top: 26.30%;
    width: 60.16%;
}

.card__img--magnetrons {
    left: 15.36%;
    top: 31.25%;
    width: 68.49%;
}

.card__img--noise-generators {
    left: 16.67%;
    top: 31.51%;
    width: 67.97%;
}

.card__img--receive-amplify {
    left: 21.61%;
    top: 37.76%;
    width: 55.21%;
}

.card__img--spark-gap {
    left: 14.84%;
    top: 36.46%;
    width: 70.05%;
}

.card__img--travelling-wave-tubes {
    left: 12.24%;
    top: 28.12%;
    width: 76.04%;
}

.card__img--video {
    left: 15.89%;
    top: 29.69%;
    width: 67.19%;
}

.catalogue__grid .card__img--gas-stabilitrons {
    left: 16.93%;
    top: 39.06%;
    width: 67.45%;
}

.catalogue__grid .card__img--gas-discharge-devices {
    left: 25.38%;
    top: 24.22%;
    width: 48.61%;
}

.catalogue__grid .card__img--backward-wave-tubes {
    left: 21.88%;
    top: 29.95%;
    width: 55.21%;
}

.catalogue__grid .card__img--klystrons {
    left: 21.09%;
    top: 27.86%;
    width: 57.03%;
}

.catalogue__grid .card__img--magnetrons {
    left: 29.80%;
    top: 26.30%;
    width: 40.03%;
}

.catalogue__grid .card__img--noise-generators {
    left: 14.32%;
    top: 30.21%;
    width: 71.61%;
}

.catalogue__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color .2s ease;
}

.catalogue__all img {
    width: 12px;
    height: 24px;
    transition: transform .2s ease;
}

.catalogue__all:hover {
    color: var(--yellow);
}

.catalogue__all:hover img {
    transform: translateX(3px);
}

.catalogue__all--mobile {
    display: none;
}

.page-head {
    padding-top: 153px;
}

.bread {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.14px;
}

.bread a {
    color: var(--white);
    transition: color .2s ease;
}

.bread a:hover {
    color: var(--yellow);
}

.bread__sep {
    color: var(--grey);
    opacity: .4;
}

.bread__current {
    color: var(--grey);
    opacity: .5;
}

.page-title {
    margin-top: 20px;
    font-size: 64px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.64px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.filters__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--card);
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.16px;
    opacity: .6;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}

.filters__item:hover {
    opacity: 1;
}

.filters__item.is-active {
    background: var(--yellow);
    color: var(--black);
    opacity: 1;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.sort {
    position: relative;
    width: 231px;
    flex: 0 0 auto;
}

.sort__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--card);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -1.08px;
    text-align: left;
}

.sort__ico {
    display: none;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
}

.sort__label {
    opacity: .6;
    flex: 0 0 auto;
}

.sort__value {
    flex: 1 1 auto;
    font-weight: 500;
}

.sort__arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.sort.is-open .sort__arrow {
    transform: rotate(180deg);
}

.sort__drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 6px;
    border-radius: 8px;
    background: var(--card-2);
    display: none;
}

.sort.is-open .sort__drop {
    display: block;
}

.sort__option {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    text-align: left;
    opacity: .6;
    transition: background-color .15s ease, opacity .15s ease;
}

.sort__option:hover,
.sort__option.is-active {
    background: rgba(246, 245, 238, .08);
    opacity: 1;
}

.list-search {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 400px;
    min-width: 0;
    flex: 0 0 auto;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--white);
}

.list-search__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.list-search__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: none;
    background: none;
    color: var(--black);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -1.08px;
}

.list-search__input::placeholder {
    color: var(--black);
    opacity: .6;
}

.items {
    padding-top: 60px;
    padding-bottom: 80px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.item-card {
    display: block;
    padding: 16px 24px;
    border-radius: 16px;
    background: var(--card);
    transition: background-color .2s ease;
}

.item-card:hover {
    background: #1c1c1d;
}

.item-card__title {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.item-card__row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.16px;
    color: var(--grey);
}

.item-card__name {
    flex: 0 0 auto;
}

.item-card__row::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-image: repeating-linear-gradient(to right, rgba(151, 151, 151, .18) 0 2px, transparent 2px 4px);
    order: 1;
}

.item-card__value {
    flex: 0 1 auto;
    min-width: 0;
    order: 2;
    text-align: right;
    overflow-wrap: anywhere;
}

.items__more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    color: var(--yellow);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.32px;
    transition: background-color .2s ease, color .2s ease;
}

.btn-more:hover {
    background: var(--yellow);
    color: var(--black);
}

.delivery-top {
    padding-top: 173px;
    padding-bottom: 100px;
    background: var(--card);
}

.delivery-top__title {
    max-width: 746px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.42px;
    text-align: center;
}

.delivery-top__lead {
    max-width: 618px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    text-align: center;
    opacity: .6;
}

.delivery-top__lead span,
.delivery-top__text span {
    color: var(--yellow);
    opacity: 1;
}

.delivery-photo {
    height: 410px;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.delivery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.delivery-top__text {
    max-width: 1140px;
    margin: 40px auto 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.24px;
    text-align: center;
}

.delivery-factors {
    padding-top: 100px;
    padding-bottom: 80px;
}

.delivery-factors__title {
    max-width: 603px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.32px;
    text-align: center;
}

.delivery-factors__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.factors-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.factor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 241px;
    flex: 0 0 auto;
    text-align: center;
}

.factor__icon {
    position: relative;
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
}

.factor__icon img {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 78px;
    height: 78px;
}

.factor__icon--destination img {
    left: 2px;
    top: 2px;
    width: 78px;
    height: 76px;
}

.factor__name {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.factor__text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    opacity: .6;
}

.delivery-factors__divider {
    width: 500px;
    max-width: 100%;
    height: 1px;
    background: var(--line);
}

.delivery-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 692px;
    max-width: 100%;
}

.delivery-cta p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.18px;
    text-align: center;
    opacity: .8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.36px;
    transition: background-color .2s ease;
}

.btn-cta:hover {
    background: #ffbe55;
}

.policy {
    padding-top: 153px;
    padding-bottom: 80px;
}

.policy__text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    color: rgba(246, 245, 238, .8);
}

.policy__text p {
    margin-bottom: 25px;
}

.policy__text p:last-child {
    margin-bottom: 0;
}

.about-top {
    padding-top: 173px;
    padding-bottom: 125px;
    background: var(--card);
}

.about-hero__title {
    max-width: 896px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.42px;
    text-align: center;
}

.about-hero__title span {
    color: var(--yellow);
}

.about-hero__text {
    max-width: 822px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    text-align: center;
    opacity: .6;
}

.about-banner {
    position: relative;
    height: 400px;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.about-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.about-banner__tube {
    position: absolute;
    left: 105px;
    top: 86px;
    width: 201px;
}

.about-banner__stats {
    position: absolute;
    left: 360px;
    top: 274px;
    right: 40px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.about-banner__group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    white-space: nowrap;
}

.about-stat__value {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-stat__unit {
    font-size: 20px;
    letter-spacing: -0.2px;
}

.about-stat__label {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
}

.about-stat__divider {
    width: 1px;
    height: 86px;
    flex: 0 0 auto;
    background: #d9d9d9;
    opacity: .3;
}

.about-stat--first {
    width: 132px;
    flex: 0 0 auto;
}

.about-statement {
    margin-top: 40px;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.56px;
}

.about-statement span {
    color: var(--yellow);
}

.about-cols {
    display: grid;
    grid-template-columns: 564px 588px;
    justify-content: space-between;
    margin-top: 24px;
}

.about-cols p {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    opacity: .6;
}

.fields {
    padding-top: 100px;
    padding-bottom: 140px;
}

.fields__title {
    max-width: 588px;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.32px;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.field-card {
    position: relative;
    height: 156px;
    border-radius: 12px;
    background: var(--card);
}

.field-card__title {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 20px;
    height: 50px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.18px;
}

.field-card--accent {
    background: var(--yellow);
}

.field-card--accent .field-card__title {
    color: var(--black);
}

.field-card__icon {
    position: absolute;
    right: 24px;
    top: 86px;
    width: 50px;
    height: 50px;
}

.field-card__icon img {
    position: absolute;
}

.field-card__icon--industrial img {
    left: 8px;
    top: 0;
    width: 34px;
    height: 50px;
}

.field-card__icon--meteorology img {
    left: 4px;
    top: 4px;
    width: 42px;
    height: 42px;
}

.field-card__icon--audio img {
    left: 11px;
    top: 3px;
    width: 29px;
    height: 44px;
}

.field-card__icon--radio img {
    left: 8px;
    top: 4px;
    width: 34px;
    height: 42px;
}

.field-card__icon--measuring img {
    left: 1px;
    top: 9px;
    width: 48px;
    height: 33px;
}

.fields-note {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 156px;
    padding: 20px 16px;
    border: 1px solid var(--yellow);
    border-radius: 12px;
}

.fields-note p {
    max-width: 538px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.36px;
    opacity: .8;
}

.about-why {
    padding-bottom: 102px;
}

.about-why__title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.42px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-item__icon {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

.why-item__icon img {
    position: absolute;
}

.why-item__icon--original img {
    left: 6px;
    top: 1px;
    width: 68px;
    height: 78px;
}

.why-item__icon--location img {
    left: 1px;
    top: 1px;
    width: 78px;
    height: 78px;
}

.why-item__icon--support img {
    left: 5px;
    top: 1px;
    width: 70px;
    height: 78px;
}

.why-item__icon--datasheets img {
    left: 12px;
    top: 1px;
    width: 56px;
    height: 78px;
}

.why-item__name {
    display: block;
    margin-top: 30px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.24px;
}

.why-item__text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    color: var(--grey);
}

.contacts-top {
    padding-top: 153px;
    padding-bottom: 100px;
    background: var(--card);
}

.contacts-photo {
    height: 410px;
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts-info {
    display: grid;
    grid-template-columns: 612px 1fr;
    margin-top: 60px;
}

.contacts-info__label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.14px;
    color: var(--yellow);
}

.contacts-info__value {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: var(--white);
}

a.contacts-info__value {
    transition: color .2s ease;
}

a.contacts-info__value:hover {
    color: var(--yellow);
}

.request-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.request--wide .request__info {
    width: 528px;
}

.request--wide .request__title {
    font-size: 60px;
    letter-spacing: -0.6px;
}

.card-page {
    padding-top: 151px;
}

.item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.item__main {
    flex: 0 1 486px;
    min-width: 0;
}

.item__title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.36px;
}

.item__desc {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: 6px;
    background: var(--yellow);
    color: var(--black);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.32px;
    transition: background-color .2s ease;
}

.btn-primary:hover {
    background: #ffbe55;
}

.gallery {
    margin-top: 74px;
}

.gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery__thumb {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    cursor: zoom-in;
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.gallery__thumb:hover img {
    transform: scale(1.06);
}

.gallery__hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 23px;
    opacity: .78;
}

.gallery__hint img {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.gallery__hint span {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.15px;
    opacity: .5;
}

.specs {
    flex: 0 1 588px;
    min-width: 0;
    margin-top: 17px;
    padding: 24px 20px;
    border-radius: 16px;
    background: var(--card);
}

.specs__row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.18px;
    color: var(--grey);
}

.specs__row:first-child {
    margin-top: 0;
}

.specs__name {
    flex: 0 0 auto;
}

.specs__row::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-image: repeating-linear-gradient(to right, rgba(151, 151, 151, .18) 0 2px, transparent 2px 4px);
    order: 1;
}

.specs__value {
    flex: 0 1 auto;
    min-width: 0;
    order: 2;
    text-align: right;
    overflow-wrap: anywhere;
}

.see-also {
    padding-top: 80px;
    padding-bottom: 78px;
}

.see-also__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.see-also__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.32px;
}

.see-also__arrows {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    transition: background-color .2s ease, opacity .2s ease;
}

.arrow-btn img {
    width: 11px;
    height: 22px;
    filter: brightness(0) invert(4%);
}

.arrow-btn--prev img {
    transform: scaleX(-1);
}

.arrow-btn:hover {
    background: #ffbe55;
}

.see-also__list {
    display: flex;
    gap: 24px;
    margin-top: 34px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.see-also__list::-webkit-scrollbar {
    display: none;
}

.related-card {
    display: block;
    width: 384px;
    flex: 0 0 auto;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--card);
    transition: background-color .2s ease;
}

.related-card:hover {
    background: var(--card-2);
}

.related-card__title {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.18px;
}

.related-card__row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.14px;
    color: var(--grey);
}

.related-card__title + .related-card__row {
    margin-top: 20px;
}

.related-card__name {
    flex: 0 0 auto;
}

.related-card__row::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-image: repeating-linear-gradient(to right, rgba(151, 151, 151, .18) 0 2px, transparent 2px 4px);
    order: 1;
}

.related-card__value {
    flex: 0 1 auto;
    min-width: 0;
    order: 2;
    text-align: right;
    overflow-wrap: anywhere;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: rgba(10, 10, 10, .92);
}

.lightbox.is-open {
    display: flex;
}

.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    background: var(--white);
}

.lightbox__close {
    position: absolute;
    top: 100px;
    right: 120px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.18px;
    opacity: .6;
    transition: opacity .2s ease;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__close img {
    width: 14px;
    height: 14px;
}

.cards {
    padding-top: 62px;
    padding-bottom: 80px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 384px;
    gap: 24px;
}

.process {
    padding-top: 140px;
}

.process__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.process-item__icon {
    width: 80px;
    height: 80px;
}

.process-item__body {
    margin-top: 30px;
}

.process-item__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.process-item__name {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.24px;
}

.process-item__num {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.7px;
    opacity: .34;
}

.process-item__text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    color: var(--grey);
}

.process-item__text a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq {
    padding-top: 140px;
    padding-bottom: 80px;
}

.faq__box {
    padding: 80px 102px;
    border-radius: 30px;
    background: var(--card);
}

.faq__inner {
    max-width: 996px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 60px;
}

.faq-item {
    position: relative;
    border-radius: 16px;
    background: var(--card-2);
    transition: background-color .25s ease;
}

.faq-item.is-open {
    background: var(--yellow);
    color: var(--black);
}

.faq-item__head {
    display: block;
    width: 100%;
    padding: 30px 116px 27px 40px;
    text-align: left;
}

.faq-item.is-open .faq-item__head {
    padding-top: 26px;
    padding-bottom: 16px;
}

.faq-item__question {
    display: block;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.24px;
}

.faq-item__icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    transition: background-color .25s ease, transform .25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2.4px;
    margin: -1.2px 0 0 -7.5px;
    border-radius: 2px;
    background: var(--black);
    transition: background-color .25s ease, transform .25s ease;
}

.faq-item__icon::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
    background: var(--black);
    transform: rotate(45deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
    background: var(--white);
}

.faq-item__body {
    display: none;
    padding: 0 116px 26px 40px;
}

.faq-item.is-open .faq-item__body {
    display: block;
}

.faq-item__body p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    opacity: .6;
}

.faq__divider {
    display: block;
    width: 936px;
    max-width: 100%;
    height: 1px;
    margin: 80px auto;
    background: var(--line);
}

.request {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.request__info {
    width: 375px;
    flex: 0 0 auto;
}

.request__title {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.52px;
}

.request__title span {
    color: var(--yellow);
}

.request__text {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    opacity: .6;
}

.request__form {
    width: 487px;
    flex: 0 0 auto;
}

.request__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field {
    width: 100%;
    padding: 18px 24px;
    border: 0;
    border-radius: 12px;
    background: var(--white);
    color: var(--black);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.18px;
    outline: none;
}

.field::placeholder {
    color: var(--black);
    opacity: .6;
}

.field--area {
    height: 160px;
    resize: none;
}

.btn-send {
    height: 61px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    transition: background-color .2s ease;
}

.btn-send:hover {
    background: #ffbe55;
}

.agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    cursor: pointer;
}

.agree__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.agree__box {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px;
    border: 1.2px solid var(--yellow);
    border-radius: 3.4px;
}

.agree__input:checked + .agree__box {
    border-color: transparent;
    background: url(/bitrix/templates/rt/css/../img/icons/checkbox.svg) center / 18px 18px no-repeat border-box;
}

.agree__text {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
    color: var(--grey-2);
}

.agree__text a {
    transition: color .2s ease;
}

.agree__text a:hover {
    color: var(--yellow);
}

.footer {
    padding-bottom: 98px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 613px auto 1fr;
    min-height: 242px;
    padding-top: 69px;
    border-top: 1px solid var(--line);
}

.footer__logo {
    display: inline-block;
}

.footer__copy {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    opacity: .4;
}

.footer__privacy {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    opacity: .4;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .2s ease;
}

.footer__privacy:hover {
    opacity: .8;
}

.footer__col {
    margin-top: -10px;
}

.footer__col--contact {
    margin-top: 0;
}

.footer__label {
    font-size: 14px;
    line-height: 1.3;
    opacity: .3;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
}

.footer__menu a {
    opacity: .8;
    transition: opacity .2s ease, color .2s ease;
}

.footer__menu a:hover {
    opacity: 1;
    color: var(--yellow);
}

.footer__col--contact {
    text-align: right;
}

.footer__email {
    display: inline-block;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    opacity: .8;
    transition: opacity .2s ease;
}

.footer__email span {
    color: var(--yellow);
}

.footer__email:hover {
    opacity: 1;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--bg);
    padding: 0 20px 60px;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-panel.is-open {
    display: flex;
}

.mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    margin: 0 -20px;
    padding: 0 20px;
    flex: 0 0 auto;
}

.mobile-panel__head .logo {
    font-size: 20px;
    letter-spacing: -0.6px;
}

.mobile-panel__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1 1 auto;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

.mobile-panel__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    border-radius: 8px;
    background: var(--yellow);
    color: var(--black);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    flex: 0 0 auto;
}

.mobile-list {
    display: none;
    flex-direction: column;
    padding-top: 12px;
}

.mobile-list.is-active {
    display: flex;
}

.mobile-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
}

.mobile-list__item img {
    width: 7px;
    height: 13px;
    flex: 0 0 auto;
    opacity: .8;
    transform: scaleX(-1);
}

.cookies {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 90;
    width: 328px;
    max-width: calc(100% - 20px);
    padding: 24px;
    border: 1px solid var(--card);
    border-radius: 12px;
    background: var(--bg);
    display: none;
}

.cookies.is-visible {
    display: block;
}

.cookies__text {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.14px;
    opacity: .6;
}

.cookies__text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookies__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 6px 20px;
    border: 1px solid var(--yellow);
    border-radius: 4px;
    color: var(--yellow);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.26px;
    transition: background-color .2s ease, color .2s ease;
}

.cookies__btn:hover {
    background: var(--yellow);
    color: var(--black);
}

.cookies__close {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 12px;
    height: 12px;
    opacity: .5;
    transition: opacity .2s ease;
}

.cookies__close:hover {
    opacity: 1;
}

.cookies__close img {
    width: 12px;
    height: 12px;
}

@media (max-width: 1239px) {
    .faq__box {
        padding: 60px;
    }

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

    .about-banner__tube {
        left: 6%;
        width: 22%;
    }

    .about-banner__stats {
        left: 32%;
        right: 24px;
        top: auto;
        bottom: 28px;
        flex-wrap: wrap;
        gap: 20px 32px;
    }

    .about-banner__group {
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-stat--first {
        width: auto;
    }

    .about-stat__value {
        font-size: 38px;
        letter-spacing: -0.38px;
    }

    .about-stat__unit {
        font-size: 16px;
    }

    .about-stat__label {
        font-size: 14px;
    }

    .about-stat__divider {
        height: 66px;
    }

    .about-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .request--wide .request__info {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .request--wide .request__form {
        width: auto;
        flex: 0 1 487px;
        min-width: 0;
    }
}

@media (max-width: 1023px) {
    .header {
        padding-top: 24px;
    }

    .header__nav {
        gap: 32px;
    }

    .header__menu {
        gap: 24px;
        font-size: 16px;
    }

    .hero__container {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .hero__content {
        max-width: 52%;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__title-hl {
        height: 40px;
        line-height: 40px;
        margin-left: -5px;
        padding-right: 11px;
    }

    .hero-search {
        width: 100%;
    }

    .hero__media {
        width: 44%;
        right: 0;
        bottom: 0;
    }

    .stat__num {
        font-size: 32px;
        letter-spacing: -0.64px;
    }

    .stat__label {
        font-size: 14px;
    }

    .stat__divider {
        height: 56px;
    }

    .section-title__heading {
        font-size: 40px;
    }

    .catalogue {
        padding-top: 80px;
    }

    .catalogue__grid,
    .cards-grid {
        grid-auto-rows: 280px;
    }

    .page-head {
        padding-top: 130px;
    }

    .page-title {
        font-size: 48px;
        letter-spacing: -0.48px;
    }

    .cards {
        padding-top: 48px;
    }

    .toolbar {
        gap: 16px;
    }

    .list-search {
        width: auto;
        flex: 1 1 auto;
    }

    .items {
        padding-top: 48px;
    }

    .delivery-top {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .delivery-top__title {
        font-size: 34px;
        letter-spacing: -0.34px;
    }

    .delivery-top__text {
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .factors-row {
        gap: 32px;
    }

    .factor {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
    }

    .policy {
        padding-top: 130px;
    }

    .about-top {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .about-hero__title {
        font-size: 34px;
        letter-spacing: -0.34px;
    }

    .about-statement {
        font-size: 24px;
        letter-spacing: -0.24px;
    }

    .about-cols {
        gap: 32px;
    }

    .fields {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .fields-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .about-why__title {
        font-size: 34px;
        letter-spacing: -0.34px;
    }

    .why-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
        margin-top: 40px;
    }

    .about-why {
        padding-bottom: 80px;
    }

    .contacts-top {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .contacts-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .request-section {
        padding-top: 80px;
    }

    .request--wide .request__info {
        width: 100%;
    }

    .request--wide .request__title {
        font-size: 44px;
        letter-spacing: -0.44px;
    }

    .card-page {
        padding-top: 130px;
    }

    .item {
        gap: 32px;
    }

    .gallery {
        margin-top: 48px;
    }

    .lightbox__close {
        top: 40px;
        right: 40px;
    }

    .process {
        padding-top: 100px;
    }

    .process__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .faq {
        padding-top: 100px;
    }

    .faq__box {
        padding: 60px 40px;
    }

    .faq-item__head {
        padding: 24px;
    }

    .faq-item__body {
        padding: 0 24px 24px;
    }

    .faq__divider {
        margin: 60px auto;
    }

    .request {
        flex-direction: column;
        gap: 32px;
    }

    .request__info,
    .request__form {
        width: 100%;
    }

    .request__title {
        font-size: 40px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 48px;
        min-height: 0;
    }

    .footer__col {
        margin-top: 0;
    }

    .footer__col--contact {
        text-align: left;
    }

    .footer {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 13px 0;
    }

    .header.is-fixed {
        padding: 13px 0;
    }

    .header__container {
        min-height: 40px;
        gap: 12px;
    }

    .header__logo {
        order: 2;
        margin: 0 auto;
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .header__nav,
    .header__quote {
        display: none;
    }

    .header__mobile-btn {
        display: inline-flex;
    }

    .header__mobile-btn--catalogue {
        order: 1;
    }

    .header__mobile-btn--burger {
        order: 3;
    }

    .hero__container {
        padding-top: 119px;
        padding-bottom: 0;
        min-height: 800px;
    }

    .hero__content {
        max-width: none;
    }

    .hero__title {
        font-size: 38px;
        letter-spacing: -0.38px;
        max-width: none;
    }

    .hero__title-hl {
        height: 41px;
        line-height: 41px;
        margin-left: -4px;
        padding-right: 12px;
        border-radius: 8px;
    }

    .hero__subtitle {
        max-width: 289px;
        margin-top: 12px;
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .hero-search {
        width: 100%;
        margin-top: 24px;
        padding: 15px 12px;
        border-radius: 8px;
        gap: 6px;
    }

    .hero-search__icon {
        width: 16px;
        height: 16px;
    }

    .hero-search__input {
        font-size: 15px;
        letter-spacing: -0.9px;
        padding-right: 100px;
    }

    .hero-search__btn {
        height: 51px;
        padding: 20px;
        border-radius: 8px;
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .search-result {
        top: calc(100% + 6px);
        padding: 10px;
        border-radius: 12px;
    }

    .search-result__list {
        max-height: 310px;
    }

    .mini-card {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .mini-card__title {
        font-size: 15px;
    }

    .mini-card__row {
        font-size: 12px;
    }

    .hero__stats {
        gap: 18px;
        margin-top: 51px;
    }

    .stat__num {
        font-size: 26px;
        letter-spacing: -0.52px;
    }

    .stat__label {
        font-size: 12px;
        letter-spacing: -0.12px;
    }

    .stat__divider {
        height: 52px;
    }

    .hero__media {
        position: absolute;
        left: 8.89%;
        right: auto;
        bottom: 2px;
        width: 82.22%;
        max-width: 322px;
    }

    .catalogue {
        padding-top: 60px;
    }

    .section-title {
        text-align: left;
    }

    .section-title__label {
        font-size: 12px;
        letter-spacing: -0.12px;
    }

    .section-title__heading {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .catalogue .section-title {
        text-align: center;
    }

    .catalogue__grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(0, 1fr);
        aspect-ratio: auto;
        gap: 12px;
    }

    .catalogue__grid {
        margin-top: 40px;
    }

    .catalogue__grid > .card,
    .catalogue__grid > .catalogue__all--mobile,
    .cards-grid > .card {
        aspect-ratio: 1 / 1;
    }

    .page-head {
        padding-top: 90px;
    }

    .bread {
        gap: 4px;
        font-size: 11px;
        letter-spacing: -0.11px;
    }

    .page-title {
        margin-top: 16px;
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .cards {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .filters {
        gap: 6px;
        margin-top: 20px;
    }

    .filters__item {
        padding: 6px 8px;
        border-radius: 4px;
        font-size: 11px;
        letter-spacing: -0.11px;
    }

    .toolbar {
        gap: 8px;
        margin-top: 40px;
    }

    .sort {
        width: 132px;
    }

    .sort__btn {
        gap: 8px;
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 13px;
        letter-spacing: -0.78px;
    }

    .sort__ico {
        display: block;
    }

    .sort__label {
        display: none;
    }

    .sort__arrow {
        width: 12px;
        height: 12px;
    }

    .sort__drop {
        left: 0;
        right: auto;
        width: 180px;
        border-radius: 6px;
    }

    .sort__option {
        font-size: 13px;
        letter-spacing: -0.13px;
    }

    .list-search {
        width: auto;
        flex: 1 1 auto;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 6px;
    }

    .list-search__icon {
        width: 16px;
        height: 16px;
    }

    .list-search__input {
        font-size: 13px;
        letter-spacing: -0.78px;
    }

    .list-search__input::placeholder {
        opacity: .4;
    }

    .items {
        padding-top: 16px;
        padding-bottom: 60px;
    }

    .delivery-top {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .delivery-top__title {
        max-width: none;
        font-size: 22px;
        letter-spacing: -0.22px;
        text-align: left;
    }

    .delivery-top__title br {
        display: none;
    }

    .delivery-top__lead {
        max-width: none;
        margin-top: 16px;
        font-size: 15px;
        letter-spacing: -0.15px;
        text-align: left;
    }

    .delivery-photo {
        margin-top: 40px;
    }

    .delivery-top__text {
        max-width: none;
        margin-top: 30px;
        font-size: 20px;
        letter-spacing: -0.2px;
        text-align: left;
    }

    .delivery-factors {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .delivery-factors__title {
        max-width: none;
        margin: 0;
        font-size: 18px;
        letter-spacing: -0.18px;
        text-align: left;
    }

    .delivery-factors__inner {
        align-items: stretch;
        gap: 30px;
        margin-top: 40px;
    }

    .factors-row {
        flex-direction: column;
        gap: 30px;
    }

    .factor {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        width: auto;
        text-align: left;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--line);
    }

    .factor:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .factor__icon {
        width: 60px;
        height: 60px;
    }

    .factor__icon img {
        transform: scale(.75);
        transform-origin: top left;
    }

    .factor__body {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .factor__text {
        margin-top: 12px;
        font-size: 15px;
        letter-spacing: -0.15px;
        color: var(--grey);
        opacity: 1;
    }

    .delivery-factors__divider {
        display: none;
    }

    .delivery-cta {
        align-items: stretch;
        gap: 24px;
        width: auto;
    }

    .delivery-cta p {
        font-size: 15px;
        letter-spacing: -0.15px;
        text-align: left;
    }

    .btn-cta {
        height: 53px;
        padding: 16px 24px;
        border-radius: 8px;
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .policy {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .policy__text {
        margin-top: 16px;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .policy__text p {
        margin-bottom: 21px;
    }

    .about-top {
        padding-top: 100px;
        padding-bottom: 73px;
    }

    .about-hero__title {
        max-width: none;
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -0.22px;
        text-align: left;
    }

    .about-hero__title br {
        display: none;
    }

    .about-hero__text {
        max-width: none;
        margin-top: 16px;
        font-size: 15px;
        letter-spacing: -0.15px;
        text-align: left;
    }

    .about-banner {
        height: 398px;
        margin-top: 40px;
    }

    .about-banner__tube {
        left: 184px;
        top: 116px;
        width: 180px;
    }

    .about-banner__stats {
        left: 34px;
        top: 36px;
        right: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .about-banner__group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .about-stat {
        gap: 4px;
    }

    .about-stat--first {
        width: auto;
    }

    .about-stat__value {
        gap: 4px;
        font-size: 40px;
        letter-spacing: -0.4px;
    }

    .about-stat__unit {
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .about-stat__label {
        font-size: 12px;
        letter-spacing: -0.12px;
    }

    .about-stat__divider {
        width: 120px;
        height: 1px;
    }

    .about-statement {
        margin-top: 30px;
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-cols p {
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .fields {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .fields__title {
        max-width: none;
        font-size: 18px;
        letter-spacing: -0.18px;
    }

    .fields-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 40px;
    }

    .field-card {
        height: 132px;
        border-radius: 12px;
    }

    .field-card__title {
        left: 16px;
        right: 110px;
        top: 16px;
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .field-card__icon {
        right: 16px;
        top: 66px;
    }

    .fields-note {
        grid-column: span 1;
        height: auto;
        min-height: 187px;
        margin-top: 12px;
        padding: 20px 16px;
    }

    .fields-note p {
        max-width: none;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .about-why {
        padding-bottom: 91px;
    }

    .about-why__title {
        font-size: 24px;
        letter-spacing: -0.24px;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--line);
    }

    .why-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .why-item__icon {
        width: 60px;
        height: 60px;
        flex: 0 0 auto;
    }

    .why-item__icon img {
        transform: scale(.75);
        transform-origin: top left;
    }

    .why-item__body {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .why-item__name {
        margin-top: 0;
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .why-item__text {
        margin-top: 12px;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .contacts-top {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .contacts-photo {
        height: 410px;
        margin-top: 40px;
    }

    .contacts-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .contacts-info__label {
        font-size: 13px;
        letter-spacing: -0.13px;
    }

    .contacts-info__value {
        max-width: 272px;
        margin-top: 8px;
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .request-section {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .request.request--wide {
        gap: 30px;
    }

    .request--wide .request__info {
        text-align: left;
    }

    .request--wide .request__title {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .request--wide .request__text {
        max-width: none;
        margin: 16px 0 0;
    }

    .card-page {
        padding-top: 90px;
    }

    .item {
        display: block;
        margin-top: 40px;
    }

    .item__title {
        font-size: 24px;
        letter-spacing: -0.24px;
    }

    .item__desc {
        margin-top: 16px;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .btn-primary {
        width: 100%;
    }

    .gallery {
        margin-top: 30px;
    }

    .gallery__thumbs {
        gap: 20px;
    }

    .gallery__thumb {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .gallery__hint {
        margin-top: 16px;
        gap: 6px;
    }

    .gallery__hint img {
        width: 16px;
        height: 16px;
    }

    .gallery__hint span {
        font-size: 13px;
        letter-spacing: -0.13px;
    }

    .specs {
        margin-top: 40px;
        padding: 16px 12px;
        border-radius: 12px;
    }

    .specs__row {
        margin-top: 10px;
        font-size: 14px;
        letter-spacing: -0.14px;
    }

    .see-also {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .see-also__title {
        font-size: 24px;
        letter-spacing: -0.24px;
    }

    .see-also__arrows {
        gap: 16px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
    }

    .arrow-btn img {
        width: 9px;
        height: 18px;
    }

    .see-also__list {
        gap: 12px;
        margin-top: 25px;
    }

    .related-card {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }

    .related-card__title {
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .related-card__row {
        margin-top: 8px;
        font-size: 13px;
        letter-spacing: -0.13px;
    }

    .related-card__title + .related-card__row {
        margin-top: 10px;
    }

    .lightbox {
        padding: 70px 20px;
    }

    .lightbox__close {
        top: 24px;
        right: 20px;
        font-size: 15px;
    }

    .items-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .item-card {
        padding: 12px;
        border-radius: 8px;
    }

    .item-card__title {
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .item-card__row {
        margin-top: 8px;
        font-size: 13px;
        letter-spacing: -0.13px;
    }

    .item-card__title + .item-card__row {
        margin-top: 10px;
    }

    .items__more {
        margin-top: 20px;
    }

    .btn-more {
        width: 100%;
        padding: 14px 24px;
    }

    .card,
    .card--wide {
        grid-column: span 1;
        padding: 15px 22px 0 12px;
        border-radius: 12px;
    }

    .card__title {
        font-size: 12px;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: -0.12px;
    }

    .card__img--gas-stabilitrons {
        left: 22.08%;
        top: 48.05%;
        width: 57.14%;
    }

    .card__img--gas-discharge-devices {
        left: 13.64%;
        top: 39.61%;
        width: 72.08%;
    }

    .card__img--backward-wave-tubes {
        left: 24.68%;
        top: 38.96%;
        width: 49.35%;
    }

    .catalogue__grid .card__img--backward-wave-tubes {
        left: 25.97%;
        top: 40.26%;
        width: 46.75%;
    }

    .card__img--generator-modulator-tubes {
        left: 24.68%;
        top: 42.21%;
        width: 48.70%;
    }

    .card__img--klystrons {
        left: 22.08%;
        top: 35.71%;
        width: 55.19%;
    }

    .card__img--magnetrons {
        left: 16.23%;
        top: 38.31%;
        width: 66.88%;
    }

    .card__img--noise-generators {
        left: 24.03%;
        top: 40.26%;
        width: 57.14%;
    }

    .card__img--receive-amplify {
        left: 24.03%;
        top: 45.45%;
        width: 50.65%;
    }

    .card__img--spark-gap {
        left: 20.13%;
        top: 46.10%;
        width: 59.09%;
    }

    .card__img--travelling-wave-tubes {
        left: 18.18%;
        top: 38.96%;
        width: 64.29%;
    }

    .card__img--video {
        left: 25.32%;
        top: 43.51%;
        width: 48.05%;
    }

    .catalogue__all--desktop {
        display: none;
    }

    .catalogue__all--mobile {
        display: flex;
        margin-top: 0;
        gap: 8px;
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: -0.16px;
        text-align: left;
    }

    .catalogue__all--mobile span {
        max-width: 90px;
    }

    .process {
        padding-top: 70px;
    }

    .process__list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .process-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--line);
    }

    .process-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .process-item__icon {
        width: 60px;
        height: 60px;
        flex: 0 0 auto;
    }

    .process-item__body {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
        margin-top: 0;
    }

    .process-item__head {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 12px;
    }

    .process-item__name {
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .process-item__num {
        font-size: 12px;
        letter-spacing: -0.6px;
    }

    .process-item__text {
        margin-top: 12px;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .faq {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .faq__box {
        padding: 40px 16px;
        border-radius: 20px;
    }

    .faq__title {
        text-align: center;
        padding: 0 15px;
    }

    .faq__list {
        margin-top: 36px;
        gap: 12px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-item__head {
        padding: 16px 68px 16px 20px;
    }

    .faq-item.is-open .faq-item__head {
        padding-top: 16px;
        padding-bottom: 12px;
    }

    .faq-item__question {
        font-size: 16px;
        letter-spacing: -0.16px;
    }

    .faq-item__icon {
        top: 17px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .faq-item__icon::before,
    .faq-item__icon::after {
        width: 13px;
        height: 2.2px;
        margin: -1.1px 0 0 -6.5px;
    }

    .faq-item__body {
        padding: 0 20px 16px;
    }

    .faq-item__body p {
        font-size: 14px;
        letter-spacing: -0.14px;
    }

    .faq__divider {
        margin: 36px auto;
        width: calc(100% - 28px);
    }

    .request {
        gap: 24px;
    }

    .request__info {
        text-align: center;
    }

    .request__title {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .request__text {
        max-width: 220px;
        margin: 16px auto 0;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    .request__fields {
        gap: 12px;
    }

    .field {
        padding: 15px 12px;
        border-radius: 8px;
        font-size: 14px;
        letter-spacing: -0.14px;
    }

    .field--area {
        height: 128px;
    }

    .btn-send {
        height: auto;
        padding: 16px 30px;
        border-radius: 8px;
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .agree__text {
        font-size: 14px;
    }

    .footer {
        padding-bottom: 66px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 44px;
        padding-bottom: 14px;
        text-align: center;
    }

    .footer__brand {
        display: contents;
    }

    .footer__logo {
        order: 1;
        font-size: 23.256px;
        letter-spacing: -0.7px;
    }

    .footer__col {
        display: none;
    }

    .footer__col--contact {
        display: block;
        order: 2;
        text-align: center;
        margin-top: 30px;
    }

    .footer__col--contact .footer__label {
        display: none;
    }

    .footer__email {
        margin-top: 0;
        font-size: 16px;
    }

    .footer__privacy {
        order: 3;
        margin-top: 20px;
        font-size: 13px;
    }

    .footer__copy {
        order: 4;
        margin-top: 40px;
        font-size: 13px;
    }

    .cookies {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 359px) {
    .hero__stats {
        gap: 10px;
    }

    .stat__num {
        font-size: 22px;
    }

    .stat__label {
        font-size: 12px;
    }
}

/* End */


/* Start:/bitrix/templates/rt/css/custom.css?1786439550949*/
.mini-card--empty {
    color: var(--grey-2);
}

.mini-card--empty:hover {
    background: rgba(20, 20, 20, .06);
}

.field.is-error {
    box-shadow: 0 0 0 1.5px #ff5a5a;
}

.agree.is-error .agree__box {
    border-color: #ff5a5a;
}

.btn-send[disabled] {
    opacity: .6;
    cursor: default;
}

.btn-send[disabled]:hover {
    background: var(--yellow);
}

.form-note {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
}

.form-note:empty {
    display: none;
}

.form-note--error {
    color: #ff5a5a;
}

.form-note--ok {
    color: var(--yellow);
}

.js-items-result {
    transition: opacity .15s ease;
}

.js-items-result.is-loading {
    opacity: .5;
}

/* Карточка товара: отступ сверху задаёт .page-head с хлебными крошками. */
@media (min-width: 1024px) {
    .page-head--bare {
        padding-top: 151px;
    }
}

.card-page {
    padding-top: 0;
}

/* End */


/* Start:/bitrix/templates/rt/template_styles.css?178643955084*/
#panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
/* End */
/* /bitrix/templates/rt/css/fonts.css?17864395501292 */
/* /bitrix/templates/rt/css/style.css?178643955067757 */
/* /bitrix/templates/rt/css/custom.css?1786439550949 */
/* /bitrix/templates/rt/template_styles.css?178643955084 */
