

/* Start:/gpes/styles.css?178220708632794*/
:root {
    --navy: #112a48;
    --navy2: #203753;
    --text: #29333d;
    --muted: #607084;
    --line: #dbe2f0;
    --soft: #f5f8fb;
    --soft2: #edf7fb;
    --blue: #0096d8;
    --orange: #ef9200;
    --green: #16855b;
    --red: #ae4b3a;
    --white: #fff;
    --shadow: 0 12px 34px rgba(17, 42, 72, .10)
}
/*
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.48
}

button,
input,
select,
textarea {
    font: inherit
}

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

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 22px
}

.topbar {
    background: #0f223b;
    color: #dce8f2;
    font-size: 12px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 8px
}

.topbar span {
    white-space: nowrap
}

.header {
    background: white;
    border-bottom: 1px solid var(--line)
}

.header-main {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 26px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    font-size: 25px;
    letter-spacing: .5px
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900
}

.logo small {
    display: block;
    font-size: 9px;
    color: #6f7d8a;
    letter-spacing: .2px;
    font-weight: 700
}

.header-note {
    font-size: 12px;
    color: var(--muted);
    max-width: 270px
}

.header-contact {
    margin-left: auto;
    text-align: right
}

.header-contact strong {
    display: block;
    color: var(--navy);
    font-size: 20px
}

.header-contact span {
    font-size: 12px;
    color: var(--muted)
}

.btn {
    border: 0;
    border-radius: 4px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    cursor: pointer;
    transition: .18s;
    text-align: center
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: var(--orange);
    color: #fff
}

.btn-secondary {
    background: var(--blue);
    color: #fff
}
*/
.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid #bac8d4
}

.btn-light {
    background: #eaf7fd;
    color: #007eb7
}

.btn-sm {
    padding: 9px 12px;
    font-size: 13px
}

.nav {
    background: var(--navy);
    color: #fff
}

.nav .container {
    display: flex;
    gap: 3px;
    overflow: auto
}

.nav a {
    font-size: 13px;
    padding: 13px 14px;
    white-space: nowrap
}

.nav a:hover {
    background: rgba(255, 255, 255, .08)
}

.breadcrumbs {
    padding: 17px 0;
    font-size: 12px;
    color: #718096
}

.hero {
    background: linear-gradient(120deg, #f5f8fb, #fff);
    border-bottom: 1px solid var(--line)
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
    gap: 34px;
    align-items: center;
    padding: 8px 0 42px
}

.hero h1 {
    font-size: 43px;
    line-height: 1.06;
    margin: 14px 0 16px;
    color: var(--navy);
    letter-spacing: -.6px
}

.hero p {
    font-size: 17px;
    color: #475569;
    max-width: 730px;
    margin: 0 0 16px
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    padding: 0;
    margin: 20px 0 25px;
    list-style: none
}

.hero-bullets li {
    font-size: 14px;
    color: #334155;
    padding-left: 25px;
    position: relative
}

.hero-bullets li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hero-visual {
    position: relative;
    min-height: 375px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0c2038
}

.hero-visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: .94
}

.hero-visual:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 28, 49, .86) 100%)
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff
}

.hero-overlay strong {
    display: block;
    font-size: 25px
}

.hero-overlay span {
    display: block;
    font-size: 13px;
    color: #d8e7f2;
    margin-top: 4px
}

.eyebrow {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 6px 10px;
    background: #fff4dd;
    color: #a16000;
    font-size: 12px;
    font-weight: 800;
    border-radius: 30px;
    border: 1px solid #f4d59f
}

.anchorbar {
    position: sticky;
    z-index: 8;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(17, 42, 72, .05)
}

.anchorbar .container {
    display: flex;
    gap: 19px;
    overflow: auto;
    padding-top: 12px;
    padding-bottom: 12px
}

.anchorbar a {
    font-size: 13px;
    font-weight: 700;
    color: #476077;
    white-space: nowrap
}

.section {
    padding: 62px 0
}

.section.alt {
    background: var(--soft)
}

.section h2 {
    font-size: 31px;
    line-height: 1.18;
    color: var(--navy);
    margin: 0 0 13px
}

.section .lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 900px;
    margin: 0 0 26px
}

.section-note {
    font-size: 13px;
    color: #6f8293;
    margin-top: 15px
}

.selector {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 18px
}

.selector-form,
.selector-result {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 7px 20px rgba(17, 42, 72, .04)
}

.selector-form h3,
.selector-result h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #708093;
    font-weight: 800
}

.input,
.select {
    border: 1px solid #c7d5e1;
    border-radius: 5px;
    padding: 11px 12px;
    background: #fff;
    color: #334155;
    width: 100%
}

.check-row {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 13px;
    color: #526579
}

.check-row input {
    margin-top: 3px
}

.selector-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 14px
}

.result-empty {
    border: 1px dashed #b8cad9;
    background: #f8fbfd;
    border-radius: 6px;
    padding: 22px;
    color: #66788a
}

.result-title {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 12px
}

.result-title b {
    font-size: 17px;
    color: var(--navy)
}

.result-list {
    display: grid;
    gap: 9px
}

.result-option {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    background: #fbfdff
}

.result-top {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.result-top strong {
    color: #1d405d
}

.result-power {
    white-space: nowrap;
    color: #17653f;
    font-weight: 800
}

.result-option small {
    display: block;
    color: #718096;
    margin-top: 4px
}

.result-option .btn {
    margin-top: 10px
}

.warning {
    margin-top: 13px;
    border-left: 3px solid var(--orange);
    padding: 9px 11px;
    background: #fff8e8;
    color: #7b5a1e;
    font-size: 12px
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

.factor {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    padding: 18px
}

.factor .icon,
.cap .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf7fd;
    color: #007eb7;
    font-weight: 900;
    margin-bottom: 10px
}

.factor h3,
.cap h3 {
    font-size: 16px;
    color: var(--navy);
    margin: 0 0 6px
}

.factor p,
.cap p {
    font-size: 13px;
    color: #66788a;
    margin: 0
}

.individual {
    margin-top: 18px;
    background: linear-gradient(120deg, #112a48, #244f72);
    border-radius: 8px;
    color: #fff;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items: center
}

.individual h3 {
    font-size: 23px;
    margin: 0 0 8px
}

.individual p {
    margin: 0;
    color: #d7e6f2
}

.individual img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
    filter: grayscale(1) contrast(.95);
    opacity: .82
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 16px
}

.badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 20px;
    background: #eaf7fd;
    color: #007eb7;
    font-size: 11px;
    font-weight: 800
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 7px;
    margin-bottom: 16px
}

.filters .field {
    min-width: 170px
}

.catalog-count {
    margin-left: auto;
    color: #6b7d8c;
    font-size: 13px;
    align-self: flex-end;
    padding-bottom: 10px
}

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

.unit {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .18s
}

.unit:hover {
    border-color: #9bcdeb;
    box-shadow: var(--shadow)
}

.unit-head {
    padding: 14px 15px 9px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(120deg, #f8fbfd, #fff)
}

.unit-head h3 {
    font-size: 16px;
    color: var(--navy);
    margin: 6px 0 0
}

.unit-body {
    padding: 13px 15px;
    flex: 1
}

.unit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 10px
}

.unit-k {
    font-size: 11px;
    color: #758595;
    text-transform: uppercase;
    letter-spacing: .35px
}

.unit-v {
    font-size: 14px;
    color: #24445e;
    font-weight: 800
}

.unit-actions {
    padding: 0 15px 15px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.unit-actions .btn {
    flex: 1
}

.showmore {
    text-align: center;
    margin-top: 16px
}

.implementation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px
}

.impl {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 7px;
    padding: 17px
}

.impl b {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 7px
}

.impl p {
    font-size: 13px;
    color: #66788a;
    margin: 0
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 15px;
    min-height: 155px
}

.step-num {
    font-size: 27px;
    font-weight: 900;
    color: #c6dae9
}

.step h3 {
    font-size: 14px;
    color: var(--navy);
    margin: 4px 0 5px
}

.step p {
    font-size: 12px;
    color: #708093;
    margin: 0
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #dbe2f0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden
}

.stat {
    background: #fff;
    padding: 22px
}

.stat strong {
    display: block;
    color: var(--orange);
    font-size: 33px;
    line-height: 1
}

.stat span {
    display: block;
    color: #55697b;
    font-size: 13px;
    margin-top: 6px
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

.cap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 17px
}

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.project {
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
    background: #fff
}

.project img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover
}

.project-body {
    padding: 15px
}

.project h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 0 0 7px
}

.project p {
    font-size: 13px;
    color: #66788a;
    margin: 0 0 9px
}

.project-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.project-meta span {
    font-size: 11px;
    background: #eff4f7;
    color: #52697c;
    border-radius: 20px;
    padding: 4px 7px
}

.project-more {
    margin-top: 15px;
    border: 1px dashed #b8cad9;
    background: #fff;
    border-radius: 7px;
    padding: 14px;
    color: #607084;
    font-size: 13px
}

.clients {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden
}

.clients img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain
}

.clients-modern-section {
    background: linear-gradient(180deg, #fff 0%, #f7fafe 100%);
    border-top: 1px solid #eef3f8;
    border-bottom: 1px solid #e4ebf3
}

.trust-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 22px
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 30px;
    background: #fff4dd;
    color: #9b5f00;
    border: 1px solid #f4d59f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .55px
}

.trust-copy {
    padding: 2px 0
}

.trust-copy .lead {
    max-width: 760px;
    margin-bottom: 16px
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.trust-tags span {
    padding: 7px 10px;
    border-radius: 30px;
    background: #eef5fa;
    color: #4c667d;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e0eaf2
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.trust-stat {
    min-height: 116px;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dde6ef;
    box-shadow: 0 7px 20px rgba(17, 42, 72, .045);
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.trust-stat-main {
    grid-row: span 2;
    min-height: 242px;
    background: linear-gradient(145deg, #112a48, #244e72);
    border: 0
}

.trust-stat strong {
    display: block;
    color: var(--navy);
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.7px
}

.trust-stat span {
    display: block;
    margin-top: 8px;
    color: #6d7e8e;
    font-size: 12px;
    line-height: 1.35
}

.trust-stat-main strong {
    color: #fff;
    font-size: 76px
}

.trust-stat-main span {
    color: #dce8f2;
    font-size: 15px
}

.logo-panel {
    background: #fff;
    border: 1px solid #dbe4ec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(17, 42, 72, .055)
}

.logo-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 17px 18px;
    border-bottom: 1px solid #e8eef4;
    background: linear-gradient(180deg, #fff, #fbfdff)
}

.logo-panel-head strong {
    display: block;
    color: var(--navy);
    font-size: 17px
}

.logo-panel-head span {
    display: block;
    margin-top: 3px;
    color: #718294;
    font-size: 12px
}

.logo-panel-note {
    font-size: 11px !important;
    color: #8394a4 !important;
    white-space: nowrap
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: #e8edf3
}

.client-logo {
    position: relative;
    min-height: 94px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    overflow: hidden;
    transition: .2s
}

.client-logo:hover {
    z-index: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(17, 42, 72, .12)
}

.client-logo img {
    display: block;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .65;
    transition: .2s
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1
}

.client-logo span {
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #8291a0;
    font-size: 9px;
    text-align: center;
    opacity: 0;
    transform: translateY(4px);
    transition: .2s
}

.client-logo:hover span {
    opacity: 1;
    transform: translateY(0)
}

.logo-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 15px 18px;
    border-top: 1px solid #e8eef4;
    background: #fbfdff
}

.logo-panel-footer p {
    margin: 0;
    color: #64778a;
    font-size: 13px;
    max-width: 800px
}

.logo-panel-footer .btn {
    flex: 0 0 auto
}

.engineer {
    display: grid;
    grid-template-columns: 128px 1fr 270px;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: var(--navy);
    border-radius: 8px;
    color: #fff
}

.engineer-avatar {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff3de;
    color: #a16000;
    border: 4px solid rgba(255, 255, 255, .18);
    font-size: 25px;
    font-weight: 900
}

.engineer h2 {
    color: #fff;
    font-size: 27px;
    margin: 0 0 6px
}

.engineer p {
    color: #d8e4ee;
    margin: 0
}

.engineer .name {
    margin-top: 11px;
    font-size: 17px;
    font-weight: 800
}

.engineer .role {
    font-size: 13px;
    color: #acc4d8
}

.engineer-actions {
    display: grid;
    gap: 9px
}

.faq {
    max-width: 940px
}

.faq-item {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 5px;
    margin-bottom: 8px
}

.faq-q {
    width: 100%;
    border: 0;
    background: #fff;
    color: #22445f;
    font-weight: 800;
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 16px 15px;
    color: #617385;
    font-size: 14px
}

.faq-item.open .faq-a {
    display: block
}

.related {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.related a {
    border: 1px solid #cbd8e2;
    border-radius: 30px;
    padding: 9px 13px;
    color: #31536e;
    font-size: 13px
}

.final-cta {
    background: linear-gradient(120deg, var(--navy), #244f72);
    border-radius: 8px;
    color: #fff;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 6px
}

.final-cta p {
    color: #d5e5f1;
    margin: 0
}

/*
.footer {
    margin-top: 60px;
    background: #102339;
    color: #c8d8e6;
    padding: 30px 0;
    font-size: 13px
}

.demo {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    padding: 8px 10px;
    border-radius: 4px;
    background: #fff7e5;
    border: 1px solid #f2cb7b;
    color: #865400;
    font-size: 11px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12)
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(5, 19, 34, .66);
    padding: 18px;
    overflow: auto
}

.modal.open {
    display: grid;
    place-items: center
}

.modal-card {
    width: min(620px, 100%);
    background: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25)
}

.modal-top {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.modal h3 {
    margin: 0;
    color: var(--navy);
    font-size: 23px
}

.close {
    border: 0;
    background: #edf3f8;
    color: #476077;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 18px
}

.modal p {
    font-size: 14px;
    color: #66788a
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.modal-grid .full {
    grid-column: 1/-1
}

.success {
    display: none;
    padding: 13px;
    border-radius: 6px;
    background: #e7f6ef;
    color: #17653f;
    margin-top: 11px;
    font-weight: 800;
    font-size: 13px
}

.success.show {
    display: block
}

.hidden {
    display: none !important
}*/

@media(max-width:980px) {
    .trust-intro {
        grid-template-columns: 1fr
    }

    .logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .hero-grid,
    .selector,
    .individual {
        grid-template-columns: 1fr
    }

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

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

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

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

    .engineer {
        grid-template-columns: 80px 1fr
    }

    .engineer-actions {
        grid-column: 1/-1;
        display: flex;
        flex-wrap: wrap
    }

    .engineer-actions .btn {
        flex: 1
    }
}

@media(max-width:680px) {
    .trust-intro {
        gap: 16px
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr
    }

    .trust-stat-main {
        grid-column: 1/-1;
        grid-row: auto;
        min-height: 138px
    }

    .trust-stat-main strong {
        font-size: 58px
    }

    .logo-panel-head {
        display: block
    }

    .logo-panel-note {
        display: none
    }

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

    .client-logo {
        min-height: 83px;
        padding: 12px 9px
    }

    .client-logo img {
        max-height: 45px;
        filter: none;
        opacity: .9
    }

    .client-logo span {
        display: none
    }

    .logo-panel-footer {
        display: block
    }

    .logo-panel-footer .btn {
        width: 100%;
        margin-top: 11px
    }

    .container {
        padding: 0 15px
    }

    .topbar .container {
        display: none
    }

    .header-main {
        min-height: 65px;
        gap: 12px
    }

    .logo {
        font-size: 20px
    }

    .logo-mark {
        width: 31px;
        height: 31px
    }

    .header-note {
        display: none
    }

    .header-contact strong {
        font-size: 15px
    }

    .header-contact span {
        display: none
    }

    .header-main>.btn {
        display: none
    }

    .nav a {
        font-size: 12px;
        padding: 11px 10px
    }

    .breadcrumbs {
        padding: 12px 0
    }

    .hero-grid {
        padding-bottom: 28px;
        gap: 18px
    }

    .hero h1 {
        font-size: 29px
    }

    .hero p {
        font-size: 15px
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 7px
    }

    .hero-actions {
        display: grid
    }

    .hero-visual {
        min-height: 240px
    }

    .hero-overlay strong {
        font-size: 20px
    }

    .section {
        padding: 43px 0
    }

    .section h2 {
        font-size: 25px
    }

    .form-grid,
    .modal-grid {
        grid-template-columns: 1fr
    }

    .units,
    .factor-grid,
    .implementation,
    .steps,
    .capabilities,
    .stats {
        grid-template-columns: 1fr
    }

    .catalog-head {
        display: block
    }

    .filters {
        display: grid
    }

    .filters .field {
        min-width: 0
    }

    .catalog-count {
        margin-left: 0;
        padding: 0
    }

    .individual img {
        height: 150px
    }

    .engineer {
        grid-template-columns: 1fr;
        text-align: center
    }

    .engineer-avatar {
        margin: 0 auto
    }

    .engineer-actions {
        display: grid
    }

    .final-cta {
        display: block;
        padding: 24px
    }

    .final-cta .btn {
        margin-top: 15px;
        width: 100%
    }

    .demo {
        display: none
    }
}


.hero-proof-atom {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 650px;
    margin-top: 18px;
    padding: 11px 13px;
    border: 1px solid #d8e5ef;
    border-radius: 7px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 7px 18px rgba(17, 42, 72, .045);
    transition: .18s
}

.hero-proof-atom:hover {
    transform: translateY(-1px);
    border-color: #b7cbdc
}

.hero-proof-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff4dd;
    color: #c67700;
    font-size: 16px;
    flex: 0 0 auto
}

.hero-proof-atom strong {
    display: block;
    color: var(--navy);
    font-size: 13px
}

.hero-proof-atom small {
    display: block;
    color: #6b7d8d;
    font-size: 11px;
    margin-top: 2px
}

.hero-proof-atom b {
    margin-left: auto;
    color: #007eb7;
    font-size: 12px;
    white-space: nowrap
}

.rosatom-section {
    background: linear-gradient(180deg, #f7fafe 0%, #eef4f9 100%);
    border-top: 1px solid #e1e9f1;
    border-bottom: 1px solid #dce6ee
}

.rosatom-shell {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0e2744 0%, #12385d 62%, #1b4d78 100%);
    box-shadow: 0 18px 42px rgba(17, 42, 72, .18)
}

.rosatom-shell:after {
    content: '';
    position: absolute;
    right: -110px;
    top: -100px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(255, 255, 255, .025), 0 0 0 92px rgba(255, 255, 255, .018)
}

.rosatom-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    align-items: stretch
}

.section-kicker-dark {
    background: rgba(255, 255, 255, .10);
    color: #ffd181;
    border-color: rgba(255, 209, 129, .38)
}

.rosatom-copy h2 {
    max-width: 760px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 31px;
    line-height: 1.16
}

.rosatom-copy p {
    max-width: 800px;
    margin: 0;
    color: #d9e7f3;
    font-size: 15px;
    line-height: 1.62
}

.rosatom-brand-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: 0 14px 34px rgba(4, 20, 36, .22)
}

.rosatom-logo-wrap {
    display: flex;
    align-items: center;
    min-height: 58px;
    margin-bottom: 12px
}

.rosatom-logo-wrap img {
    display: block;
    max-width: 190px;
    max-height: 58px;
    object-fit: contain
}

.rosatom-brand-card strong {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.25
}

.rosatom-brand-card span {
    display: block;
    margin-top: 7px;
    color: #6d7f90;
    font-size: 12px;
    line-height: 1.45
}

.rosatom-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px
}

.rosatom-metrics article {
    padding: 16px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14)
}

.rosatom-metrics strong {
    display: block;
    color: #ffd181;
    font-size: 28px;
    line-height: 1;
    font-weight: 900
}

.rosatom-metrics span {
    display: block;
    margin-top: 7px;
    color: #e0ebf4;
    font-size: 12px;
    line-height: 1.4
}

.rosatom-sites {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px
}

.rosatom-sites span {
    padding: 7px 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .085);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #e3eef6;
    font-size: 12px;
    font-weight: 700
}

.rosatom-proofs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px
}

.rosatom-proofs article {
    padding: 16px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 9px 22px rgba(5, 25, 43, .11)
}

.rosatom-proof-num {
    color: #d0dfeb;
    font-size: 25px;
    font-weight: 900;
    line-height: 1
}

.rosatom-proofs h3 {
    margin: 7px 0 7px;
    color: var(--navy);
    font-size: 16px
}

.rosatom-proofs p {
    margin: 0;
    color: #66798b;
    font-size: 12px;
    line-height: 1.55
}

.rosatom-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 18px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.rosatom-footer strong {
    display: block;
    color: #fff;
    font-size: 15px
}

.rosatom-footer p {
    max-width: 760px;
    margin: 5px 0 0;
    color: #dbe8f2;
    font-size: 12px;
    line-height: 1.55
}

.rosatom-footer-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    flex-wrap: wrap
}

.client-logo-featured {
    background: linear-gradient(145deg, #fff8e8, #fff) !important;
    box-shadow: inset 0 0 0 2px #efc26e
}

.client-logo-featured em {
    position: absolute;
    top: 6px;
    left: 7px;
    padding: 3px 6px;
    border-radius: 12px;
    background: #ef9200;
    color: #fff;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px
}

@media(max-width:980px) {
    .rosatom-head {
        grid-template-columns: 1fr
    }

    .rosatom-brand-card {
        max-width: 480px
    }

    .rosatom-proofs {
        grid-template-columns: 1fr
    }

    .rosatom-footer {
        display: block
    }

    .rosatom-footer-actions {
        margin-top: 13px
    }

    .rosatom-metrics {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:680px) {
    .hero-proof-atom {
        align-items: flex-start
    }

    .hero-proof-atom b {
        display: none
    }

    .rosatom-shell {
        padding: 20px 15px;
        border-radius: 10px
    }

    .rosatom-copy h2 {
        font-size: 24px
    }

    .rosatom-copy p {
        font-size: 14px
    }

    .rosatom-brand-card {
        padding: 15px
    }

    .rosatom-metrics {
        grid-template-columns: 1fr
    }

    .rosatom-sites {
        gap: 6px
    }

    .rosatom-sites span {
        font-size: 11px;
        padding: 6px 8px
    }

    .rosatom-footer-actions {
        display: grid
    }

    .rosatom-footer-actions .btn {
        width: 100%
    }

    .client-logo-featured em {
        font-size: 7px
    }
}



/* Custom CSS */
.hero-overlay strong {
    color: #fff;
}

.btn-secondary {
	background: #0096d8;
}

a.btn {
    display: inline-block;
    padding: 0 15px;
    line-height: 36px;
    border-radius: 5px;
    background: #ef9200;
    border-width: 0;
    color: white;
    font-family: Arial;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
	text-align: center;
}

a.btn, button {
	font-weight: bold;
}

.section h2 {
    font-weight: bold;
}

a.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid #b9c6d3;
}

.power-card button, .power-card .btn {
	min-height: 32px;
	padding: auto;
	line-height: normal;
}
.btn.btn-larger {
	padding: 7px 18px;
	font-size: 16px;
}
.filters .field {
	flex-direction: row;
	align-items: center;
}
.filters .tab, .layout-actions .btn {
	line-height: normal;
}
div.empty {
	width: auto;
	height: auto;
}
.hero-visual {
	cursor: pointer;
}
.anchorbar.sticky-bar {
	position: fixed;
    top: 0;
	left: 0;
    right: 0;
}
.anchorbar  {
	border-radius: 3px;
}
.layout-preview {
	overflow: hidden;
}
.gallery-hidden-placeholder {
	display: none;
}

.btn-sm {
    padding: 0;
}

.engineer img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, .25);
}

.project {
    display: flex;
    flex-direction: column;
}
.project-body {
    flex: 1 1;
    display: flex;
    flex-direction: column;
}
.project-body > :nth-last-child(2) {
    flex: 1 1;
}
/* End */
/* /gpes/styles.css?178220708632794 */
