/* =====================================================================
   ARO Group — единая таблица стилей
   poly импортируется первым (браузер требует @import до обычных правил),
   остальные правила ниже переопределяют нужные стили из poly
   ===================================================================== */

@import "../poly-landing/index.css";

/* =====================================================================
   reset
   ===================================================================== */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none !important;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
    outline: 0 !important;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    max-width: 100%;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden] {
    display: none;
}

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

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
}

figure {
    margin: 0;
}

form {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* =====================================================================
   grid
   ===================================================================== */

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
}

.col      { flex: 1 0 0; }
.col-6    { flex: 0 0 auto; width: 50%; }
.col-12   { flex: 0 0 auto; width: 100%; }
.col-xs-12 { flex: 0 0 auto; width: 100%; }

.row-cols-4 > * { flex: 0 0 auto; width: 25%; }
.row-cols-5 > * { flex: 0 0 auto; width: 20%; }

.d-none { display: none; }
.d-flex { display: flex; }

@media (min-width: 576px) {
    .col-sm-3  { flex: 0 0 auto; width: 25%; }
    .col-sm-6  { flex: 0 0 auto; width: 50%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 auto; width: 33.333%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-8 { flex: 0 0 auto; width: 66.666%; }
    .d-md-block { display: block; }
    .d-md-none  { display: none; }
}


/* =====================================================================
   layout.header
   ===================================================================== */

/* === Shared Header (hd-*) === */
/* Все стили хедера берутся из poly/index.css (импортирован выше). */

/* === Legacy Bootstrap navbar (kept for compat) === */
.navbar {
    height: 100px !important;
    background-color: #e5e5e5 !important;
    padding: 0px !important;
    margin: 0px !important;
}

.container-fluid {
    max-width: 70% !important;
    padding: 0px !important;
    margin: auto !important;
}

@media screen and (max-width: 1440px) {
    .container-fluid {
        max-width: 80% !important;
    }
}

@media screen and (max-width: 768px) {
    .container-fluid {
        max-width: 90% !important;
    }
}

@media screen and (max-width: 575px) {
    .container-fluid {
        max-width: 100% !important;
        padding-inline: 14px !important;
    }
}

.nav-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.navbar-nav {
    width: 100% !important;
    justify-content: space-between !important;
}

.logo-desktop {
    display: block !important;
}

.logo-mobile {
    display: none !important;
}

@media screen and (max-width: 800px) {
    .logo-desktop {
        display: none !important;
    }
    .logo-mobile {
        display: block !important;
    }
}


#mobile-navbar-menu {
    display: none;
    z-index: 1000;
    margin-top: 100px;
    width: 100%;
    height: 100vh;
    background-color: #e5e5e5 !important;
    position: fixed;
    top: 0;
    bottom: 0;
}

#mobile-navbar-menu.active {
    display: block;
}


/* =====================================================================
   layout.body
   ===================================================================== */

.container {
    margin-top: 64px !important;
    margin-inline: 0px !important;
    min-height: 100vh !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
}
.hero-back {
    position: relative !important;
    width: 100%;
    height: calc(100vh - 64px);
    background: linear-gradient(to right, #ffffff 46%, #e5e5e5 46%);
    overflow: hidden;
}
.hero-image-desktop {
    display: block;
    position: absolute;
    right: 2%;
    top: 8%;
    width: 52%;
    height: auto;
}
.hero-image-mobile {
    display: none;
    width: 100%;
    height: auto;
}
.hero-wrapper {
    position: absolute;
    left: 15%;
    bottom: 18%;
    width: 38% !important;
    margin-top: 0;
}
.hero-wrapper h1 {
    font-size: 64px !important;
    white-space: nowrap;
}
.hero-wrapper-sign {
    margin-top: 32px;
    max-width: 100% !important;
}
@media screen and (max-width: 1440px) {
    .hero-wrapper {
        left: 10%;
    }
}

@media screen and (max-width: 768px) {
    .hero-back {
        background: linear-gradient(to right, #ffffff 43%, #e5e5e5 43%);
    }
    .hero-wrapper {
        left: 5%;
        width: 50% !important;
        bottom: 10%;
    }
    .hero-image-desktop {
        width: 55%;
    }
}

@media screen and (max-width: 575px) {
    .hero-back {
        height: calc(100vh - 64px);
        background: #e5e5e5;
        padding-bottom: 0;
    }
    .hero-image-desktop {
        display: none;
    }
    .hero-image-mobile {
        display: block;
        position: absolute;
        width: 85%;
        right: 0%;
        top: auto;
        bottom: 0;
    }
    .hero-wrapper {
        position: absolute;
        left: 5%;
        top: 8%;
        bottom: auto;
        width: 90% !important;
        padding: 0 !important;
        z-index: 1;
    }
    .hero-wrapper h1 {
        font-size: 28px !important;
        white-space: nowrap;
        line-height: 1.1 !important;
    }
    .hero-wrapper-sign {
        margin-top: 16px;
    }
}


.standart-wrapper {
    max-width: 70% !important;
    padding: 0px !important;
    margin: auto !important;
}
@media screen and (max-width: 1440px) {
    .standart-wrapper {
        max-width: 80% !important;
    }
}
@media screen and (max-width: 768px) {
    .standart-wrapper {
        max-width: 90% !important;
    }
}
@media screen and (max-width: 575px) {
    .standart-wrapper {
        max-width: 100% !important;
        padding-inline: 14px !important;
    }
}


.missions-container {
    margin-top: 250px;
}
.missions-container h4 {
    font-size: 52px !important;
    white-space: nowrap;
}
.missions-image-container {
    margin-top: 140px;
}
.missions-image-desktop {
    display: block;
    float: right;
    width: 80% !important;
    height: auto !important;
}
.missions-image-mobile {
    display: none;
    width: auto !important;
    height: auto !important;
}
.missions-text-container {
    margin-top: 60px;
    margin-right: 5% !important;
}
.missions-text-item {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}
.missions-rectangle {
    min-width: 100px !important;
    max-width: 100px !important;
    height: 8px !important;
    background-color: #e2e2e2 !important;
    margin-right: 60px !important;
    margin-top: 10px !important;
}
@media screen and (max-width: 1000px) {
    .missions-container {
        margin-top: 60px;
    }
    .missions-image-container {
        margin-top: 40px;
    }
    .missions-text-container {
        margin-top: 40px;
    }
    .missions-text-item {
        margin-top: 20px;
    }
}
@media screen and (max-width: 1240px) {
    .missions-rectangle {
        min-width: 8px !important;
        max-width: 8px !important;
        margin-right: 18px !important;
        margin-top: 7px !important;
    }
}
@media screen and (max-width: 575px) {
    .missions-image-desktop {
        display: none;
    }

    .missions-image-mobile {
        display: block;
        width: 100% !important;
    }

    .missions-container h4 {
        font-size: 32px !important;
        white-space: normal;
    }
}


.company-wrapper {
    max-width: 70% !important;
    padding: 0px !important;
    margin-inline: auto !important;
    margin-top: 140px !important;
}
@media screen and (max-width: 1440px) {
    .company-wrapper {
        max-width: 80% !important;
    }
}

@media screen and (max-width: 768px) {
    .company-wrapper {
        max-width: 90% !important;
    }
}

@media screen and (max-width: 575px) {
    .company-wrapper {
        max-width: 100% !important;
        padding-inline: 14px !important;
        margin-top: 60px !important;
    }
}

.company-description-wrapper {
    margin-top: 10px;
    margin-bottom: 80px;
}
.company-description-item {
    max-width: 80%;
}
.company-rectangle {
    min-width: 120px !important;
    max-width: 120px !important;
    height: 8px !important;
    background-color: #e2e2e2 !important;
    margin-bottom: 20px !important;
}
@media screen and (max-width: 1000px) {
    .company-description-wrapper {
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .company-description-item {
        max-width: 100%;
    }
}


.managers-wrapper {
    max-width: 70% !important;
    padding: 0px !important;
    margin-inline: auto !important;
    margin-top: 140px !important;
}
@media screen and (max-width: 1440px) {
    .managers-wrapper {
        max-width: 80% !important;
    }
}

@media screen and (max-width: 768px) {
    .managers-wrapper {
        max-width: 90% !important;
    }
}

@media screen and (max-width: 575px) {
    .managers-wrapper {
        max-width: 100% !important;
        padding-inline: 14px !important;
        margin-top: 60px !important;
    }
}


.manager-item {
    margin-top: 80px;
}
.manager-image {
    width: 100%;
    height: auto;
}
.manager-extra {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 24px !important;
    border-left: 1px solid #2b2c2e;
    height: 100% !important;
}
.manager-avatars {
    display: flex;
    align-items: center;
}
.manager-avatar-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #fff;
    margin-left: -10px;
}
.manager-avatar-circle:first-child {
    margin-left: 0;
}
.manager-extra .manager-extra-text {
    font-size: 20px !important;
    font-weight: 700 !important;
    padding-left: 16px !important;
}
@media screen and (max-width: 768px) {
    .manager-item {
        margin-top: 40px;
    }
}


.bim-title-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    margin-inline: 0px;
    margin-top: 0px;
    padding: 0px;
    overflow: hidden;
}
.bim-title {
    position: absolute;
    width: 42%;
    padding: 0px !important;
    top: 100px;
    left: 15%;
    z-index: 1;
}
.bim-title h1 {
    font-size: 64px !important;
    line-height: 105% !important;
}
.bim-image-dekstop {
    position: absolute;
    right: -8%;
    bottom: 0;
    width: 75%;
    height: auto;
}
.bim-image-mobile {
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1440px) {
    .bim-title {
        left: 10%;
        width: 44%;
    }
}

@media screen and (max-width: 768px) {
    .bim-title {
        width: 50%;
        left: 5%;
    }
    .bim-image-dekstop {
        width: 55%;
    }
}

@media screen and (max-width: 575px) {
    .bim-title-wrapper {
        height: auto;
        margin-top: 60px;
        overflow: visible;
    }
    .bim-title {
        position: static;
        width: 100%;
        padding: 24px !important;
    }
    .bim-image-dekstop {
        display: none;
    }
    .bim-image-mobile {
        display: block;
    }
}


.competence-wrapper {
    margin-top: 140px;
}
.design-title-wrapper + .standart-wrapper {
    margin-top: -20px !important;
}
.design-title-wrapper + .standart-wrapper .competence-wrapper {
    margin-top: 0 !important;
}
.design-title-wrapper + .standart-wrapper .missions-text-container {
    margin-right: 0 !important;
}
.design-title-wrapper + .standart-wrapper .results-container .result-wrapper {
    margin-top: 0 !important;
}
.competence-item {
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    .competence-wrapper {
        margin-top: 60px;
    }
    .competence-item {
        margin-top: 0px;
    }
}

.service-item {
    margin-top: 80px;
    position: relative;
    height: calc(100% - 80px);
    padding-top: 200px;
    padding-bottom: 90px;
    padding-inline: 20px;
    background-color: #f4f4f4 !important;
}
.service-item span {
    position: absolute;
    top: 20px;
    right: 20px;
}

.md-hidden {
    display: block;
}

@media screen and (max-width: 767px) {
    .service-item {
        margin-top: 40px;
        height: calc(100% - 40px);
        padding-top: 90px;
        padding-bottom: 40px;
    }
    .md-hidden {
        display: none;
    }
}


.results-container {
    display: flex !important;
    align-items: flex-start !important;
}

.result-wrapper {
    margin-top: 60px;
    padding-inline: 5px !important;
}

.result-item {
    margin-top: 20px;
    padding: 16px;
}
.result-item h4 {
    white-space: nowrap;
}

.result-item-mobile-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.result-item-description {
    border-top: inset !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: #2b2c2e !important;
    border-width: 1px !important;
    width: 100% !important;
}
@media screen and (max-width: 767px) {
    .result-wrapper {
        margin-top: 20px;
    }
}

.design-title-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    margin-inline: 0px;
    margin-top: 0px;
    padding-top: 90px;
    overflow: hidden;
}
.design-title {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.design-title h1 {
    font-size: 64px !important;
    line-height: 105% !important;
    margin-bottom: 30px !important;
}
.design-image-dekstop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.design-image-mobile {
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .design-title-wrapper {
        margin-top: 60px;
    }
    .design-title {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 575px) {
    .design-image-dekstop {
        display: none;
    }
    .design-image-mobile {
        display: block;
    }
}


.it-title-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    margin-inline: 0px;
    margin-top: 0px;
    overflow: hidden;
}

.it-title {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 1;
    padding: 0px !important;
}

.it-title h1 {
    font-size: 64px !important;
    line-height: 105% !important;
}

.it-image-dekstop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.it-image-mobile {
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1440px) {
    .it-title {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .it-title-wrapper {
        margin-top: 60px;
    }
    .it-title {
        width: 90%;
        bottom: 10%;
    }
}

@media screen and (max-width: 575px) {
    .it-title-wrapper {
        height: auto;
        overflow: visible;
    }
    .it-title {
        position: static;
        transform: none;
        width: 100%;
        padding: 24px !important;
    }
    .it-image-dekstop {
        display: none;
    }
    .it-image-mobile {
        display: block;
        position: relative;
    }
}

.it-title-wrapper + .standart-wrapper .results-container {
    align-items: flex-end !important;
}

.hiring-title {
    margin-top: 140px;
}

.hiring-description {
    margin-top: 80px;
    display: flex !important;
    align-items: flex-end;
}

.vacancy-link-wrapper {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .hiring-title {
        margin-top: 60px;
    }

    .hiring-description {
        margin-top: 40px;
    }

    .vacancy-link-wrapper {
        text-align: left;
        margin-top: 20px;
    }
}

.clients-wrapper {
    margin-top: 140px;
    margin-bottom: 140px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    margin-top: 80px;
}

.client-cell {
    border-top: 1px solid #231F20;
    padding-top: 30px;
    padding-bottom: 60px;
}

.client-label {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #231F20;
    display: block;
    opacity: 0.5;
    margin-bottom: 24px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo img[alt="RARITECO"],
.client-logo img[alt="A101"],
.client-logo img[alt="buromoscow"],
.client-logo img[alt="UNK engineering"],
.client-logo img[alt="Гринатом"],
.client-logo img[alt="RBTT"],
.client-logo img[alt="НПО Вектор"] {
    max-height: 150px;
}

@media screen and (max-width: 767px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .clients-wrapper {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .clients-carousel {
        margin-top: 40px;
    }
}

.projects-container {
    min-height: 100vh !important;
    background-color: #e5e5e5 !important;
}

.project-hero-title {
    padding-top: 170px;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .project-hero-title {
        padding-top: 40px;
        margin-bottom: 30px;
    }
}


/* =====================================================================
   layout.footer
   ===================================================================== */

.ft-footer {
  font-family: "Inter", sans-serif;
  background: #fff;
  width: 100%;
}

.ft-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 35px 40px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 0 55px;
  padding-bottom: 30px;
  align-items: start;
}

.ft-col {
  display: flex;
  flex-direction: column;
}

.ft-heading {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #231F20 !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.ft-text {
  font-size: 20px;
  color: #231F20;
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 400;
  padding: 0;
}

.ft-link {
  text-decoration: none;
  color: #231F20;
}

.ft-link:hover {
  opacity: 0.7;
}

.ft-privacy {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #231F20;
}

.ft-privacy:hover {
  opacity: 0.7;
}

.ft-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.ft-copy {
  grid-column: 2;
  text-align: center;
  font-size: 20px;
  color: #231F20;
  margin: 0;
  padding: 0;
}

.ft-top-link {
  font-size: 20px;
  font-weight: 700;
  color: #231F20;
  text-decoration: none;
  justify-self: end;
}

.ft-top-link:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
  }
}

@media (max-width: 700px) {
  .ft-inner {
    padding: 40px 20px 32px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
  .ft-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .ft-copy {
    grid-column: unset;
  }
  .ft-top-link {
    justify-self: unset;
  }
}


/* =====================================================================
   site.text
   ===================================================================== */

.nav-link {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 110% !important;
    color: #2b2c2e !important;
    margin-top: 0px !important;
}
    .nav-link:hover {
        color: #5c5f65 !important;
        text-decoration: none !important;
    }
@media screen and (max-width: 767px) {
    .nav-link {
        font-weight: 400 !important;
        font-size: 28px !important;
        margin-top: 40px !important;
        text-align:center !important;
    }
}

.footer-heading {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 110% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin: 0px !important;
}
.footer-text {
    font-family: "Inter", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 110% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin-top: 20px !important;
    margin-bottom: 0px !important;
}
.politics-text {
    font-family: "Jost", sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 100% !important;
    letter-spacing: -0.02em !important;
    color: #222221 !important;
    opacity: 0.5 !important;
    padding: 0px !important;
    margin: 0px !important;
}
.politics-text-fantom {
    font-family: "Jost", sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 100% !important;
    letter-spacing: -0.02em !important;
    color: #222221 !important;
    opacity: 0.5 !important;
    padding: 0px !important;
    margin-top: 20px !important;
    margin-bottom: 0px !important;
    margin-inline: 0px !important;
}
.politics-text-underline {
    font-family: "Jost", sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 100% !important;
    letter-spacing: -0.02em !important;
    text-decoration: underline !important;
    text-decoration-skip-ink: none !important;
    color: #222221 !important;
    opacity: 0.5 !important;
    padding: 0px !important;
    margin: 0px !important;
}

.vacancy-link {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 30px !important;
    line-height: 130% !important;
    text-decoration: underline !important;
    text-decoration-skip-ink: none !important;
    text-align: right !important;
    color: #2b2c2e !important;
}

h1 {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 96px !important;
    line-height: 100% !important;
    letter-spacing: -0.02em !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin: 0px !important;
}
h2 {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 128px !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin-inline: 0px !important;
}
h3 {
    font-family: "Inter", sans-serif !important;
    font-weight: 800 !important;
    font-size: 128px !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    color: #e2e2e2 !important;
    text-align:end !important;
    padding: 0px !important;
    margin-top: 80px !important;
    margin-bottom: 0px !important;
    margin-inline: 0px !important;
}
h4 {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 64px !important;
    line-height: 100% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin: 0px !important;
}
h5 {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 46px !important;
    line-height: 100% !important;
    letter-spacing: -0.02em !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin-inline: 0px !important;
}
h6 {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 30px !important;
    line-height: 130% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin-bottom: 40px !important;
    margin-top: 0px !important;
    margin-inline: 0px !important;
}

@media screen and (max-width: 1380px) {
    h1 {
        font-size: 96px !important;
    }
    h2 {
        font-size: 100px !important;
    }
    h3 {
        font-size: 100px !important;
    }
    h4 {
        font-size: 40px !important;
    }
    h5 {
        font-size: 32px !important;
    }
}

.hero-text {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 130% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
    margin: 0px !important;
}
.standart-text {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 130% !important;
    color: #2b2c2e !important;
    margin: 0px !important;
}
.standart-text a {
    color: inherit !important;
}
.title-text {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 30px !important;
    line-height: 130% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
}
.title-descr-text {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 130% !important;
    color: #2b2c2e !important;
    padding: 0px !important;
}

@media screen and (max-width: 768px) {
    .hero-text {
        font-size: 20px !important;
    }
    .standart-text {
        font-size: 16px !important;
    }
    .title-text {
        font-size: 24px !important;
    }
    .title-descr-text {
        font-size: 16px !important;
    }
    .vacancy-link {
        font-size: 16px !important;
    }
    h1 {
        font-size: 60px !important;
    }
    h2 {
        font-size: 64px !important;
    }
    h3 {
        font-size: 80px !important;
    }
    h4 {
        font-size: 32px !important;
    }
    h5 {
        font-size: 28px !important;
    }
    h6 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 32px !important;
    }
    h3 {
        font-size: 80px !important;
        text-align: center !important;
    }
    .hero-text {
        font-size: 16px !important;
    }
}


/* =====================================================================
   site.menubtn
   ===================================================================== */

/*Menu-Button for mobile navbar*/
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding-inline: 0px !important;
}

    .navbar-toggler.insearch {
        display: none;
    }

#sandwichmenu {
    margin: 0 0 0 0;
    text-align: center;
}

.tpl_hamburger svg {
    cursor: pointer;
    height: 50px;
    transform: translate3d(0px, 0px, 0px);
}

svg:not(:root) {
    overflow: hidden;
}

.tpl_hamburger path.top,
.tpl_hamburger path.bottom {
    stroke-dasharray: 240px, 950px;
}

.tpl_hamburger path {
    fill: none;
    stroke: #000;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 40px;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s, stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s;
}

    .tpl_hamburger path.middle {
        stroke-dasharray: 240px, 240px;
    }

.tpl_hamburger path {
    fill: none;
    stroke: #000;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 40px;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s, stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s;
}

.tpl_hamburger.active path.top,
.tpl_hamburger.active path.bottom {
    stroke-dashoffset: -650px;
}

.tpl_hamburger path.top,
.tpl_hamburger path.bottom {
    stroke-dasharray: 240px, 950px;
}

.tpl_hamburger.active path.middle {
    stroke-dasharray: 1px, 220px;
    stroke-dashoffset: -115px;
}


/* =====================================================================
   site.accordion
   ===================================================================== */

.mobile-description-item {
    display: none;
}
@media screen and (max-width: 767px) {
    .mobile-description-item {
        display: block;
    }
}


.mobile-accordion {
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 32px !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    color: #2b2c2e !important;
    text-align: left !important;
    position: relative !important;
    width: 100% !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    transition: 0.4s !important;
    padding: 0px !important;
}
.mobile-accordion span {
    display: block;
    position: absolute;
    right: 0px;
    bottom: 2px;
    width: 32px;
    height: 32px;
    content: '';
    transition: .2s ease-in;
}

.mobile-accordion-panel {
    display:none;
}
/* On desktop, always show accordion panels (toggling is mobile-only) */
@media (min-width: 768px) {
    .mobile-accordion-panel { display: block !important; }
    .row.mobile-accordion-panel { display: flex !important; }
}
.rotated {
    transform: rotate(180deg);
}


/* =====================================================================
   site.calc
   ===================================================================== */

/* Spacing for consultation section on department pages */
#calculate { margin-top: 140px; margin-bottom: 140px; }

/* Light theme — bim, design pages (light background) */
.calc-light .calc-title { color: #231F20 !important; font-size: 64px !important; padding-left: 32px !important; margin-inline: auto !important; }
.calc-light .calc-desc { color: #231F20; }
.calc-light .calc-hint { color: #231F20; }
.calc-light .calc-address-hint { color: #231F20; }
.calc-light .calc-address p { color: #231F20; }
.calc-light .calc-input, .calc-light .calc-textarea { color: #231F20; border-bottom-color: rgba(43, 44, 46, 0.35); }
.calc-light .calc-input::placeholder, .calc-light .calc-textarea::placeholder { color: rgba(43, 44, 46, 0.45); }
.calc-light .calc-input:focus, .calc-light .calc-textarea:focus { border-bottom-color: #231F20; }
.calc-light .calc-checkbox-label { color: #231F20; }
.calc-light .calc-checkbox-label a { color: #231F20; }
.calc-light .calc-submit { background: #231F20; color: #fff; }
.calc-light .calc-submit:hover { background: rgba(43, 44, 46, 0.85); }

/* Dark theme — it page (dark background, white text) */
.calc-dark .calc-title { font-size: 64px !important; color: #ffffff !important; padding-left: 32px !important; margin-inline: auto !important; }

@media screen and (max-width: 700px) {
    .calc-light .calc-title,
    .calc-dark .calc-title {
        font-size: 32px !important;
        padding-left: 0 !important;
    }
    #calculate {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
}

/* ---- Cookie banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 440px;
  min-height: 170px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 28px 32px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  display: none;
}

#cookie-banner.cookie-hidden {
  opacity: 0;
  transform: translateY(16px);
}

@media (max-width: 500px) {
  #cookie-banner {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 16px;
  }
}

.cookie-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.cookie-text {
  font-size: 14px;
  color: #222;
  line-height: 1.55;
  margin: 0;
}

.cookie-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}

.cookie-btn:hover {
  background: #333;
}

