/*
Theme Name:  Brigade 128
Theme URI:
Author:      uscc
Description: Офіційний сайт 128-ї окремої гірсько-штурмової бригади ЗСУ
Version:     1.0.0
*/

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-Book.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-NameTape.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans';
  src: url('assets/font/UAFSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UAFSans Condensed';
  src: url('assets/font/UAFSans-CondUltra.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'UAFSans', sans-serif;
  overflow-x: hidden;
}

:root {
    --primary-color: #165EFC;
    --secondary-color: #8C7C6D;
    --dark-bg: #000;
    --light-color: #fff;
    --dark-color: rgba(255, 255, 255, 0.50);
    --nav-border: rgba(255, 255, 255, 0.20);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-color);
}

nav {
    position: relative;
    z-index: 100
}

.header {
    display: flex;
    padding: 29px 242px 22.5px 243px;
    justify-content: center;
    align-items: center;
    border-bottom: 0.818px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(90deg, rgba(133, 157, 189, 0.17) 0.01%, rgba(133, 157, 189, 0.04) 11.69%, rgba(133, 157, 189, 0.05) 32.24%, rgba(133, 157, 189, 0.06) 75.04%, rgba(133, 157, 189, 0.25) 99.99%);
    backdrop-filter: blur(32.067665100097656px);
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.logo-text span {
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 33px
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: background .18s, color .18s;
    white-space: nowrap
}

.nav-item>a:hover {
    background: var(--hover-bg);
    color: #fff
}

.nav-item>a svg {
    transition: transform .22s;
    flex-shrink: 0
}

.nav-item>a:hover svg {
    transform: rotate(180deg)
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #000;
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    min-width: 180px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45)
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    display: block
}

.dropdown a {
    display: block;
    padding: 9px 14px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: background .15s
}

.dropdown a:hover {
    background: var(--hover-bg)
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: background .18s;
}

.phone-link:hover {
    background: var(--hover-bg)
}

.phone-link svg {
    color: var(--accent);
    margin-right: 12px;
}

.cta-btn {
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #165EFC;
    backdrop-filter: blur(3.1500000953674316px);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    margin-left: 36px;
}

.cta-btn:hover {
    background: #1048c0;
    transform: translateY(-1px)
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    border-radius: 6px;
    transition: background .18s
}

.burger:hover {
    background: var(--hover-bg)
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .2s, width .2s
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0;
    width: 0
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    background: #06090e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s;
}

.mobile-close:hover {
    background: rgba(22, 94, 252, 0.2);
}

.mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    counter-reset: mobile-nav;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.mobile-menu__body::-webkit-scrollbar {
    width: 3px;
}

.mobile-menu__body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
}

.mobile-plain,
.mobile-section {
    counter-increment: mobile-nav;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-plain > a,
.mobile-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color .2s, background .2s;
    cursor: pointer;
    user-select: none;
}

.mobile-plain > a::before,
.mobile-section-header::before {
    content: '[ ' counter(mobile-nav, decimal-leading-zero) ' ]';
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: color .2s;
}

.mobile-plain > a:hover,
.mobile-section-header:hover {
    color: #165EFC;
    background: rgba(22, 94, 252, 0.06);
}

.mobile-plain > a:hover::before,
.mobile-section-header:hover::before {
    color: rgba(22, 94, 252, 0.5);
}

.mobile-section-header svg {
    margin-left: auto;
    transition: transform .25s;
    flex-shrink: 0;
    opacity: 0.5;
}

.mobile-section-header.expanded svg {
    transform: rotate(180deg);
}

.mobile-sub {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 0 8px;
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: block;
    padding: 12px 28px 12px 60px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: color .15s;
}

.mobile-sub a:hover {
    color: #165EFC;
}

.mobile-bottom {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity .18s;
}

.mobile-phone:hover {
    opacity: 1;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #165EFC;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background .18s;
}

.mobile-cta:hover {
    background: #1048c0;
}

@media(max-width:900px) {
    .nav-links,
    .phone-link,
    .cta-btn {
        display: none
    }

    .burger {
        display: flex
    }
}

.banner-img {
    position: relative;
}

.banner-right-coll {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 220s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.banner-img-block {
    position: relative;
    left: 10%;
}

.banner-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-69%, -36%) !important;
    z-index: 1;
}

.banner-section {
    height: 100vh;
    overflow: hidden;
    padding-top: 86px;
    position: relative;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/banner-left-bg.png');
    z-index: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.page-template .header, .blog .header {
    position: relative;
}

.page-template .header:after, .blog .header:after {
        content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://128.usccdigital.org.ua/wp-content/uploads/2026/06/header.png);
    z-index: 1;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.banner-section::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 156px;
    width: 100%;
    height: 68px;
    background: url(assets/images/banner-top-bg.png);
    z-index: 1;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.banner-content-bottom {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-top: 52px;
}

.btn-banner {
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #165ffc;
    backdrop-filter: blur(3.1500000953674316px);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.btn-banner:hover {
    background: #1048c0;
    transform: translateY(-1px)
}

.v-btn {
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: color .18s;
}

.v-btn:hover {
    color: #165ffc;
}

.banner-social-block {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.banner-social-block .social-items svg {
    transition: fill .18s;
}

.banner-social-block .social-items:hover svg path {
    fill: #165ffc;
}

.banner-content {
    max-width: 630px;
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    color: #165EFC;
    text-shadow: 0 0 22.1px #165EFC;
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    line-height: 103.236%;
    text-transform: uppercase;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
        padding: 0
    }
}

.banner-soldier {
    width: 100%;
}

.banner-content .text {
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 12px;
}

.why h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    margin-top: 37px;
}

.about-line {
    margin-top: 0.9rem;
}

.why {
    margin-bottom: 66px;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    margin-top: 64px;
    gap: 63px;
}

.why-content .why-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-content .number {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.8;
}

.why-content h3 {
    margin-bottom: 0;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.why-content p {
    margin-bottom: 0;
    color: #8C7C6D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.status {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.8;
}

.vacancy-btn {
    display: inline-flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 1px solid #165EFC;
    backdrop-filter: blur(3.1500000953674316px);
    width: fit-content;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.vacancy-btn:hover {
    background: #165EFC;
    transform: translateY(-1px)
}

.filter-item {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    cursor: pointer;
}

.filter-item.active {
    color: #165EFC;
}

.filter-item svg {
    margin-right: 25px;
}

.filter {
    margin-top: 26px;
}

.filter .items {
    position: relative;
}

.filter .items::after {
    position: absolute;
    top: 0;
    content: '';
    display: block;
    width: 1px;
    height: var(--filter-line-h, 218px);
    background-color: #8C7C6D;
}

#toggles {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 51px;
}

#toggles > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

#toggles span {
    color: #8C7C6D;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    transition: color .25s;
}

#toggles .active {
    color: #165EFC;
}

#toggles label {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

#toggles input {
    opacity: 0;
    width: 0;
    height: 0;
}

#toggles i {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1.5px solid #2a2f42;
    background: transparent;
    transition: border-color .25s;
}

#toggles i::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    background: #2a2f42;
    transition: transform .25s cubic-bezier(.4,0,.2,1), background .25s;
}

#toggles input:checked + i {
    border-color: #165EFC;
}

#toggles input:checked + i::before {
    background: #165EFC;
    transform: translate(10px, -50%);
    box-shadow: 0 0 8px rgba(22, 94, 252, .6);
}

#toggles input:checked ~ span {
    color: #165EFC;
}

.work-bg {
    position: relative;
}

.work-bg::after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 0;
    background: url('assets/images/vac-affter.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    width: 995px;
    height: 100%;
}

.why {
    position: relative;
    z-index: 1;
}

.form {
    margin-bottom: 52px;
}

.site-form {
    display: flex;
    padding: 30px;
    align-items: center;
    gap: 43px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: url('assets/images/Forn.png') no-repeat;
    background-size: cover;
    background-position: right;
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(190px);
}

.site-form-left {
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    background: url('assets/images/form-bg.png') no-repeat;
    background-size: cover;
}

.form-left-content h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.form-left-content .text {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.site-form-right h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.site-form-right .text {
    align-self: stretch;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    margin-bottom: 24px;
}

.requirement-left {
    padding-right: 63px;
}

.site-form-right {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.required {
    margin-bottom: 94px;
}

.required h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.requirement-left img {
    margin-bottom: 15px;
    width: 100%;
}

.req-block .title {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 30px;
}

.req-block .description {
    color: #8C7C6D;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 27px;
}

.req-block .description.last {
    margin-bottom: 0;
}

.requirement-right h2 {
    margin-bottom: 11px;
}

.requirement-right .why-content {
    margin-top: 28px;
    grid-template-columns: 2fr 2fr;
}

.requirement-right .why-content .why-item {
    max-width: 363px;
}

.requirement-right .why-content p {
    color: #8C7C6D;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.requirement-right {
    position: relative;
    z-index: 2;
}

.requirement-right::after {
    position: absolute;
    content: '';
    width: 751px;
    height: 751px;
    background: url(assets/images/stage.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    right: 0;
    background-position: bottom;
}

.requirement-right img {
    width: 100%;
}

.history {
    background: url('assets/images/history.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 54px;
}

.history-left h2 {
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 130px;
    font-style: normal;
    font-weight: 900;
    line-height: 103.236%;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.history-left {
    padding: 70px 0;
}

.h-taab-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
}

.h-taab-block .number {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.8;
}

.h-taab-block .text {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 78%;
    letter-spacing: -0.96px;
    text-transform: uppercase;
    margin-left: 22px;
}

.h-taab-block.active .text {
    color: #165EFC;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.26px;
    text-transform: uppercase;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.h-taab-block.active {
    position: relative;
}

.h-taab-block.active::after {
    position: absolute;
    content: '';
    right: 0;
    top: -274px;
    width: 404px;
    height: 293px;
    background: url(assets/images/active-h.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.history-right {
    padding: 81px 78px;
}

.tab-content .number {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.8;
}

.tab-content h3 {
    padding-top: 10px;
    padding-bottom: 21px;
    color: #FFF;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    letter-spacing: -1.26px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
}

.tab-content .content {
    padding-top: 35px;
	position: relative;
	z-index: 4;
}

.tab-content .content a {
	color: white;
}

.tab-content .text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 28px;
}

.tab-content .text:last-child {
    margin-bottom: 0;
}

.history {
    position: relative;
}

.history::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 936px;
    height: 100%;
    max-width: 100%;
    background: url(assets/images/h-right.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.faq h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq .text {
    color: #8C7C6D;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 313px;
}

.faq .text a {
    color: #8C7C6D;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.faq {
    margin-bottom: 58px;
    position: relative;
    background: url('assets/images/faq-bg.png');
    background-repeat: no-repeat;
}

.accordion {
    margin-top: 47px;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    border: none !important;
}

.accordion-item {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #8C7C6D;
}

.accordion-header {
    margin-bottom: 0 !important;
}

.accordion-button {
    padding: 0;
    background: transparent;
    color: #8C7C6D;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #8C7C6D;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.accordion-collapse {
    background: #8c7c6d36;
    color: white;
    margin-top: 0.5rem;
    border-radius: 5px;
    opacity: 0.8;
}

.accordion-button:focus,
.accordion-button:focus-visible {
    box-shadow: none !important;
    outline: none !important;
    border-color: transparent !important;
}

.slider {
    margin-bottom: 95px;
    height: 100vh;
}

.slider h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    padding-bottom: 43px;
    border-bottom: 1px solid #fff;
    margin-bottom: 43px;
}

.slider .text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 43px;
}

.slider-turn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider-turn .block {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.slider-turn .block .number {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin-right: 22px;
}

.slider-turn .block .title {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 78%;
    letter-spacing: -0.96px;
    text-transform: uppercase;
}

.slider-turn .block.active .title {
    color: #165EFC;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.26px;
    text-transform: uppercase;
}

.slider-block {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.slider-block .top .number {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-transform: uppercase;
    opacity: 0.8;
    margin-left: 11px;
    margin-right: 11px;
}

.j-slider .slick-slide {
    margin: 0 10px;
}

.j-slider .slick-list {
    margin: 0 -10px;
}

.tab-content-slide { display: none; }
.tab-content-slide.active { display: block; }

.slider {
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 74px;
    padding-bottom: 92px;
    position: relative;
}

.slider::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    backdrop-filter: blur(1.0499999523162842px);
}

.slider-left, .tab-content-slide {
    position: relative;
    z-index: 3;
}

.footer {
    padding: 53px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .item {
    display: flex;
    align-items: end;
}

.footer-contact .item a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-left: 25px;
}

.footer h3 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 14px;
}

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

.footer ul li a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-social a {
    text-decoration: none;
}

.social-block {
    width: fit-content;
}

.copy-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 23px 0;
}

.copy-block p {
    margin: 0;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.copy-block a {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}

.page-hero {
    background: linear-gradient(135deg, rgba(22, 94, 252, 0.08) 0%, rgba(0,0,0,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero.has-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.has-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.68px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.page-hero__sub {
    color: #8C7C6D;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 0;
}

.post-hero-meta {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.post-hero-meta .post-cat {
    color: #165EFC;
    text-decoration: none;
}

.inner-page {
    padding: 80px 0 100px;
}

.entry-content {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.entry-content h2 {
    color: var(--Absolute-White, #FFF);
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 150%;
letter-spacing: -0.84px;
}
.entry-content h3 { font-size: 28px; }
.entry-content h4 { font-size: 22px; }

.entry-content p { margin-bottom: 1.4em; }

.entry-content a {
    color: #165EFC;
    transition: opacity 0.2s;
}

.entry-content a:hover { opacity: 0.8; }

.entry-content ul,
.entry-content ol {
    color: #8C7C6D;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.entry-content li { margin-bottom: 0.5em; }

.entry-content blockquote {
    border-left: 3px solid #165EFC;
    padding: 16px 24px;
    margin: 2em 0;
    color: #8C7C6D;
    font-style: italic;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em 0;
}

.entry-content figure { margin: 0; }

.entry-content figcaption {
    color: #8C7C6D;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

.entry-content th,
.entry-content td {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px;
    color: #fff;
    font-size: 15px;
}

.entry-content th {
    background: rgba(22, 94, 252, 0.12);
    font-weight: 600;
}

.page-links {
    margin-top: 2em;
    color: #8C7C6D;
}

.page-links a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    margin-right: 4px;
    transition: background 0.2s;
}

.page-links a:hover { background: #165EFC; border-color: #165EFC; }

.post-card {
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px;
    margin-bottom: 2px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s;
}

.post-card__thumb {
    display: block;
    overflow: hidden;
    margin-bottom: 24px;
}

.post-card__thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
}

.post-card__thumb:hover img { transform: scale(1.03); }

.post-card__meta {
    color: #8C7C6D;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.post-card__title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.84px;
    margin-bottom: 14px;
}

.post-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card__title a:hover { color: #165EFC; }

.post-card__excerpt {
    color: #8C7C6D;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.post-card__excerpt p { margin: 0; }

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #165EFC;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}

.post-card__link:hover { gap: 14px; color: #165EFC; }

.no-posts p {
    color: #8C7C6D;
    font-size: 18px;
}

.pagination-wrap { margin-top: 56px; }

.pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
    background: #165EFC;
    border-color: #165EFC;
    color: #fff;
}

.post-tags {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #8C7C6D;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.post-tag:hover {
    border-color: #165EFC;
    color: #165EFC;
}

.post-nav {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar { padding-left: 24px; }

.sidebar-widget { margin-bottom: 40px; }

.sidebar-widget-title {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.63px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-widget ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-widget ul li a {
    color: #8C7C6D;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.sidebar-widget ul li a:hover { color: #165EFC; }

.page-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.error-number {
    color: #165EFC;
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 60px rgba(22, 94, 252, 0.35);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.page-404 h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 16px;
}

.page-404 p {
    color: #8C7C6D;
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 1px solid #165EFC;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary-outline:hover {
    background: #165EFC;
    color: #fff;
    transform: translateY(-2px);
}

.comments-area {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.comments-title,
.comment-reply-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.84px;
    margin-bottom: 32px;
}

.comment-list { padding: 0; list-style: none; }

.comment-body {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.comment-author .fn { color: #fff; font-size: 16px; font-weight: 500; }

.comment-metadata a {
    color: #8C7C6D;
    font-size: 13px;
    text-decoration: none;
}

.comment-content { color: rgba(255,255,255,0.8); margin-top: 10px; }

.comment-form label { color: #8C7C6D; display: block; margin-bottom: 6px; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #165EFC;
}

.comment-form .submit {
    display: inline-flex;
    padding: 12px 30px;
    background: #165EFC;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-form .submit:hover { background: #1048c0; }

@media (max-width: 991px) {
    .sidebar { padding-left: 0; margin-top: 48px; }
    .page-hero h1 { font-size: 40px; }
    .work-bg::after {
        display: none;
    }

    .h-taab-block {
        margin-bottom: 0;
    }

    .h-tab {
        display: flex;
        justify-content: space-between;
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #d3d3d34d;
        border-bottom: 1px solid #d3d3d34d;
    }
    .header-left svg, .about-line {
        display: none;
    }

    .social-block {
        width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-menu, .footer h3, .footer-logo {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
        margin: 1rem 0;
    }

}

@media (max-width: 767px) {
    .page-hero { padding: 120px 0 50px; }
    .page-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
    .inner-page { padding: 48px 0 64px; }
    .post-card { padding: 24px; }
    .post-card__title { font-size: 22px; }
    .entry-content { font-size: 16px; }
    .entry-content h2 { font-size: 28px; }
    .entry-content h3 { font-size: 22px; }
}

input:focus {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.entire-form__button p {
    margin-bottom: 0;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.wpcf7-submit br {
    display: none;
}

.wpcf7-response-output {
    color: white !important;
}

.entire-form__button {
    align-items: flex-start;
    margin-top: 24px;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-radio {
  display: flex;
  gap: 9px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%;

}

.wpcf7-radio {
    margin-top: 1rem;
}

.wpcf7-list-item input[type="radio"] {
  display: none;
}

.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid #eee;
  background: #fff;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.wpcf7-list-item input[type="radio"]:checked
+ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #165EFC;
  transform: translateY(-50%);
}

.wpcf7-checkbox {
  display: block;
}

.wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
}

.wpcf7-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 18px;
  height: 18px;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.wpcf7-checkbox input[type="checkbox"]:checked
+ .wpcf7-list-item-label::after {
      content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #165EFC;
}

form input {
    display: flex;
    padding: 12px 14px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 5px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.05);
width: 100%;
color: white;
}

form p {
    max-width: 100% !important;
}

form .wpcf7-tel {
    width: 100% !important;
}

.wpcf7-submit {
    display: flex;
    padding: 12px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #165EFC;
    color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
    width: 100%;
    border: none;

}

.entire-form__button p {
    width: 100%;
}

@media (max-width: 1400px) {
    .header {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1200px) {
    .header {
        padding-left: 32px;
        padding-right: 32px;
    }
	
	.phone-text {
		display: none;
	}

    .banner-content h1 {
        font-size: 68px;
    }

    .history-left h2 {
        font-size: 90px;
    }

    .h-taab-block.active::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .header {
        padding-left: 24px;
        padding-right: 24px;
        height: 80px;
    }

    .banner-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .banner-content h1 {
        font-size: 56px;
    }

    .banner-content .text {
        font-size: 18px;
    }

    .banner-img-block {
        left: 0;
    }

    .banner-logo {
        transform: translate(-30%, -36%) !important;
    }

    .banner-section::after {
        left: 0;
        background-size: contain;
    }

    .why h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .requirement-right .why-content {
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
    }

    .site-form {
        flex-direction: column;
        gap: 0;
        padding: 0;
        background-position: center;
    }

    .site-form-left {
        min-height: 280px;
        padding: 32px 24px;
    }

    .form-left-content h2 {
        font-size: 40px;
    }

    .site-form-right {
        padding: 32px 24px;
    }

    .required h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .requirement-left {
        padding-right: 32px;
    }

    .requirement-right::after {
        width: 400px;
        height: 400px;
    }

    .history-left h2 {
        font-size: 64px;
        margin-bottom: 28px;
    }

    .history-left {
        padding: 48px 0;
    }

    .h-taab-block .text {
        font-size: 24px;
        margin-left: 5px;
    }

    .h-taab-block.active .text {
        font-size: 32px;
    }

    .history-right {
        padding: 48px 32px;
    }

    .tab-content h3 {
        font-size: 32px;
    }

    .history::after {
        width: 50%;
        background-size: cover;
    }

    .faq h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .slider {
        height: auto;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .slider h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    #toggles span {
        font-size: 18px;
    }

    .filter-item {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .banner-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content .text {
        font-size: 16px;
    }

    .banner-content-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 28px;
    }

    .banner-social-block {
        margin-top: 4px;
    }

    .banner-img-block {
        left: 0;
        margin-top: 24px;
    }

    .banner-logo {
        display: none;
    }

    .banner-right-coll {
        max-width: 70%;
        height: auto;
    }

    .banner-section::before,
    .banner-section::after {
        background-size: contain;
        background-position: left bottom;
    }

    .why h2 {
        font-size: 32px;
    }

    .why {
        margin-bottom: 40px;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 28px;
    }

    .why-content h3 {
        font-size: 18px;
    }

    .why-content p {
        font-size: 16px;
    }

    .requirement-right .why-content {
        grid-template-columns: 1fr;
    }

    .filter .items::after {
        display: none;
    }

    .filter-item {
        font-size: 16px;
        line-height: 36px;
    }

    #toggles span {
        font-size: 16px;
        line-height: 32px;
    }

    .site-form-left {
        min-height: 220px;
        padding: 24px 20px;
    }

    .form-left-content h2 {
        font-size: 32px;
    }

    .site-form-right {
        padding: 24px 20px;
    }

    .site-form-right h3 {
        font-size: 22px;
    }

    .form {
        margin-bottom: 36px;
    }

    .required {
        margin-bottom: 56px;
    }

    .required h2 {
        font-size: 32px;
    }

    .requirement-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .req-block .title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .req-block .description {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .requirement-right::after {
        display: none;
    }

    .history-left h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .history-left {
        padding: 36px 0 0;
    }

    .h-taab-block .text {
        font-size: 16px;
    }

    .h-taab-block.active .text {
        font-size: 16px;
    }

    .history-right {
        padding: 28px 0 36px;
    }

    .tab-content h3 {
        font-size: 26px;
        padding-bottom: 14px;
    }

    .tab-content .text {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .history::after {
        display: none;
    }

    .faq h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .faq .text,
    .faq .text a {
        font-size: 16px;
    }

    .faq {
        margin-bottom: 40px;
    }

    .accordion-button,
    .accordion-button:not(.collapsed) {
        font-size: 16px;
    }

    .slider {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .slider h2 {
        font-size: 32px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .slider .text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .slider-turn .block .title {
        font-size: 22px;
    }

    .slider-turn .block.active .title {
        font-size: 28px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-contact .item a {
        font-size: 15px;
    }

    .copy-block {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .banner-content h1 {
        font-size: 66px;
    }

    .btn-banner {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .v-btn {
        font-size: 15px;
    }

    .why h2,
    .required h2,
    .faq h2,
    .slider h2 {
        font-size: 28px;
    }

    .form-left-content h2 {
        font-size: 26px;
    }

    .history-left h2 {
        font-size: 66px;
    }

    .site-form-right h3 {
        font-size: 20px;
    }

    .wpcf7-radio {
        flex-direction: column;
        gap: 6px;
    }

    .vacancy-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    .history {
        margin-bottom: 36px;
    }
}

.vacancy-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.vacancy-card__thumb {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.vacancy-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vacancy-card__no-photo {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.08);
}
.vacancy-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vacancy-card__rank {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8a96e;
    margin-bottom: 8px;
}
.vacancy-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.vacancy-card__title a {
    color: inherit;
    text-decoration: none;
}
.vacancy-card__title a:hover { text-decoration: underline; }
.vacancy-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
}
.vacancy-card__excerpt {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
    flex: 1;
}
.vacancy-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #c8a96e;
    margin-top: auto;
}
.vacancy-card__link:hover { text-decoration: underline; color: #c8a96e; }

@media (max-width: 1200px) {
    .vacancies .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .vacancies .filter-item {
        font-size: 18px;
    }

    .vacancies #toggles span {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .vacancies h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 20px;
    }

    .vacancies .filter {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .vacancies .filter .items {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .vacancies .filter .items::-webkit-scrollbar { display: none; }
    .vacancies .filter .items::after           { display: none; }

    .vacancies .filter-item {
        font-size: 13px;
        line-height: 1;
        padding: 7px 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        white-space: nowrap;
        flex-shrink: 0;
        transition: border-color 0.25s, background 0.25s;
    }

    .vacancies .filter-item svg       { display: none; }
    .vacancies .filter-item.active    {
        border-color: #165EFC;
        background: rgba(22, 94, 252, 0.1);
        color: #165EFC;
    }

    #toggles {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 28px;
        margin-top: 16px;
    }

    #toggles span { font-size: 18px; }

    .vacancies .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-top: 24px;
    }

    .vacancies .col-xl-3 { margin-bottom: 8px; }
}

@media (max-width: 767px) {
    .vacancies h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .vacancies .filter-item {
        font-size: 12px;
        padding: 6px 14px;
    }

    #toggles { gap: 8px 20px; margin-top: 12px; }
    #toggles span { font-size: 15px; }

    .vacancies .why-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 16px;
    }

    .vacancies .why-item h3  { font-size: 18px; }
    .vacancies .why-item p   { font-size: 15px; }

    .vacancies .vacancy-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .vacancies h2 { font-size: 24px; }

    .vacancies .filter-item {
        font-size: 12px;
        padding: 5px 12px;
    }

    #toggles span { font-size: 14px; }

    .vacancies .why-item h3 { font-size: 16px; }
    .vacancies .why-item p  { font-size: 14px; }
}

.vacancies .why-item p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#home-vacancy-grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s;
}

.vacancy-meta {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}
.vacancy-meta__row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vacancy-meta__row:last-child { border-bottom: none; }
.vacancy-meta__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 2px;
}
.vacancy-meta__value {
    font-size: 15px;
    font-weight: 500;
}
.vacancy-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c8a96e;
    display: inline-block;
}
.vacancy-photo img {
    border-radius: 8px;
}

.vacancy-top-filter .head .top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 16px;
}
.vacancy-top-filter .head .top span {
    display: inline-flex;
    align-items: center;
}
.vacancy-top-filter .head .top input[type="radio"] {
    display: none;
}
.vacancy-top-filter .head .top label {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.55;
    transition: opacity 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.vacancy-top-filter .head .top label.active,
.vacancy-top-filter .head .top input[type="radio"]:checked + label {
    opacity: 1;
    border-bottom-color: #c8a96e;
    color: #c8a96e;
}

.vacancy-top-filter .bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
}
.vacancy-top-filter .filter-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vacancy-top-filter .filter-link .link {
    cursor: pointer;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    user-select: none;
}
.vacancy-top-filter .filter-link .link:hover,
.vacancy-top-filter .filter-link .link.active {
    background: #c8a96e;
    border-color: #c8a96e;
    color: #000;
}

.vacancy-scroll-wrap {
    position: relative;
    display: flex;
    gap: 12px;
    height: 620px;
    margin-top: 32px;
}
.vacancy-block {
    flex: 1;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 8px;
}
.vacancy-block::-webkit-scrollbar { display: none; }

.vacancy-block.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

.vacancy-block .items {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vacancy-block .items:first-child { padding-top: 0; }
.vacancy-block .items:last-child  { border-bottom: none; }

.vacancy-block .items-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vacancy-block .items-top .number {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.45;
}
.vacancy-block .items-top h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}
.vacancy-block .items-top .position {
    font-size: 13px;
    font-weight: 500;
    color: #c8a96e;
}
.vacancy-block .items-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vacancy-block .items-bottom .description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
}
.vacancy-block .items-bottom .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid #c8a96e;
    color: #c8a96e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 3px;
}
.vacancy-block .items-bottom .button:hover {
    background: #c8a96e;
    color: #000;
}

.vacancy-empty {
    padding: 24px 0;
    opacity: 0.6;
    font-size: 15px;
}

.vacancy-scrollbar {
    width: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
}
.vacancy-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #c8a96e;
    border-radius: 2px;
    transition: top 0.05s linear;
    min-height: 32px;
}

.site-form-right {
    padding: 32px 0 0 40px;
}
.site-form-right h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
}
.site-form-right .text {
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.75;
    margin-bottom: 24px;
}
.vacancy-form-wrap {
    margin-top: 8px;
}

@media (max-width: 1199px) {
    .vacancy-scroll-wrap { height: 500px; }
    .site-form-right     { padding-left: 0; margin-top: 40px; }
}
@media (max-width: 767px) {
    .vacancy-scroll-wrap { height: 420px; }
    .vacancy-top-filter .head .top { gap: 8px 16px; }
}

.vacancy-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vacancy-filter__btn {
    padding: 7px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.vacancy-filter__btn:hover,
.vacancy-filter__btn.active {
    background: #c8a96e;
    border-color: #c8a96e;
    color: #000;
}

.vacancy-hero-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.vacancy-cat-badge {
    padding: 4px 12px;
    border-radius: 3px;
    background: rgba(200,169,110,0.2);
    border: 1px solid #c8a96e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c8a96e;
    text-decoration: none;
}
.vacancy-cat-badge:hover { background: #c8a96e; color: #000; }

.sv-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 68vh;
    display: flex;
    align-items: center;
    background: #000 center center / cover no-repeat;
    overflow: hidden;
}

.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('assets/images/banner-top-bg.png') center top / cover no-repeat,
        linear-gradient(160deg, rgba(22,94,252,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.sv-hero--has-img::before {
    display: none;
}
.sv-hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 420px;
    background: url('assets/images/banner-left-bg.png') left bottom / contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

.sv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.55) 55%,
        rgba(0,0,0,0.35) 100%
    );
    pointer-events: none;
}
.sv-hero--has-img .sv-hero__overlay {
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.30) 100%
    );
}
.sv-hero .container { position: relative; z-index: 1; }

.sv-hero__inner { max-width: 780px; }

.sv-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8C7C6D;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.2s;
}
.sv-hero__back:hover { color: #fff; }

.sv-hero__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sv-hero h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 16px;
}

.sv-hero__rank {
    color: #8C7C6D;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 44px;
}

.sv-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #165EFC;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s;
}
.sv-apply-btn:hover {
    background: #1048c0;
    color: #fff;
}

.sv-top-line {
    margin-bottom: 64px;
    opacity: 0.35;
}
.sv-top-line img { display: block; width: 100%; }

.sv-content {
    padding: 72px 0 100px;
    background: #000;
}

.sv-sidebar {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-right: 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.sv-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sv-meta-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8C7C6D;
}
.sv-meta-value {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.sv-apply-btn-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #165EFC;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s;
}
.sv-apply-btn-side:hover {
    background: #1048c0;
    color: #fff;
}

.sv-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8C7C6D;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}
.sv-back-link:hover { color: #fff; }

.sv-entry.entry-content {
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.85;
}
.sv-entry.entry-content h2,
.sv-entry.entry-content h3,
.sv-entry.entry-content h4 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.sv-entry.entry-content strong { color: #fff; }
.sv-entry.entry-content ul,
.sv-entry.entry-content ol { padding-left: 1.4em; }
.sv-entry.entry-content li { margin-bottom: 0.5em; }
.sv-entry.entry-content a { color: #165EFC; }
.sv-entry.entry-content a:hover { color: #fff; }

@media (max-width: 1400px) {
    .sv-hero h1 { font-size: 50px; }
}
@media (max-width: 1199px) {
    .sv-hero h1 { font-size: 44px; }
    .sv-sidebar { padding-right: 24px; }
    .sv-top-line { margin-bottom: 48px; }
}
@media (max-width: 991px) {
    .sv-hero { padding-top: 120px; padding-bottom: 72px; min-height: auto; }
    .sv-hero h1 { font-size: 38px; letter-spacing: -0.5px; }
    .sv-content { padding: 56px 0 80px; }
    .sv-top-line { margin-bottom: 36px; }
    .sv-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px 48px;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 28px;
        margin-bottom: 40px;
    }
    .sv-apply-btn-side { display: none; }
}
@media (max-width: 767px) {
    .sv-hero { padding-top: 100px; padding-bottom: 56px; }
    .sv-hero h1 { font-size: 30px; letter-spacing: -0.3px; }
    .sv-hero__back { margin-bottom: 28px; }
    .sv-hero__rank { margin-bottom: 32px; }
    .sv-apply-btn { width: 100%; justify-content: center; }
    .sv-content { padding: 40px 0 64px; }
    .sv-top-line { margin-bottom: 28px; }
    .sv-sidebar { gap: 16px 32px; padding-bottom: 24px; margin-bottom: 32px; }
    .sv-entry.entry-content { font-size: 16px; }
}
@media (max-width: 575px) {
    .sv-hero { padding-top: 88px; }
    .sv-hero h1 { font-size: 26px; }
    .sv-meta-value { font-size: 15px; }
}

.sv-modal {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}
.sv-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.sv-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sv-modal.is-open .sv-modal__overlay { opacity: 1; }

.sv-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #165EFC;
    padding: 52px 48px 56px;
    transform: translateY(28px) scale(0.98);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.sv-modal.is-open .sv-modal__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.sv-modal__box::-webkit-scrollbar { width: 3px; }
.sv-modal__box::-webkit-scrollbar-track { background: transparent; }
.sv-modal__box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); }

.sv-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}
.sv-modal__close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.sv-modal__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8C7C6D;
    margin-bottom: 10px;
}
.sv-modal__vacancy-name {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    color: #fff;
    line-height: 1.2;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-modal__body .wpcf7 { margin: 0; }

.sv-modal__body form p { margin-bottom: 12px; }

.sv-modal__body form input[type="text"],
.sv-modal__body form input[type="email"],
.sv-modal__body form input[type="tel"],
.sv-modal__body form input[type="number"],
.sv-modal__body form select,
.sv-modal__body form textarea {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.sv-modal__body form input[type="text"]:focus,
.sv-modal__body form input[type="email"]:focus,
.sv-modal__body form input[type="tel"]:focus,
.sv-modal__body form textarea:focus {
    border-color: #165EFC;
    background: rgba(22, 94, 252, 0.05);
}
.sv-modal__body form input[type="text"]::placeholder,
.sv-modal__body form input[type="email"]::placeholder,
.sv-modal__body form input[type="tel"]::placeholder,
.sv-modal__body form textarea::placeholder { color: rgba(255,255,255,0.3); }

.sv-modal__body form textarea {
    min-height: 110px;
    resize: vertical;
}

.sv-modal__body .wpcf7-submit {
    width: 100%;
    padding: 15px 24px;
    background: #165EFC;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s;
    margin-top: 8px;
}
.sv-modal__body .wpcf7-submit:hover { background: #1048c0; }

.sv-modal__body .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    font-size: 14px;
    border-width: 1px;
    border-style: solid;
}
.sv-modal__body .wpcf7-mail-sent-ok {
    border-color: rgba(22, 94, 252, 0.5);
    background: rgba(22, 94, 252, 0.08);
    color: #7ab0ff;
}
.sv-modal__body .wpcf7-mail-sent-ng,
.sv-modal__body .wpcf7-validation-errors,
.sv-modal__body .wpcf7-spam-blocked {
    border-color: rgba(220, 60, 60, 0.4);
    background: rgba(220, 60, 60, 0.06);
    color: #ff9090;
}

.sv-modal__body .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #ff9090;
    margin-top: 4px;
    display: block;
}
.sv-modal__body form input.wpcf7-not-valid,
.sv-modal__body form textarea.wpcf7-not-valid {
    border-color: rgba(220, 60, 60, 0.5);
}

.sv-modal__body .wpcf7-spinner {
    display: none !important;
}

@media (max-width: 640px) {
    .sv-modal__box {
        max-width: 100%;
        max-height: 100vh;
        padding: 44px 20px 48px;
        margin: 0 10px;
        clip-path: none;
        border-top: 2px solid #165EFC;
    }
    .sv-modal__vacancy-name { font-size: 18px; }
}

.page-template .header, .blog .header {
    position: static;
}

.blog .page-hero__inner {
    padding-left: 0;
}

.news-block h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.news-item {
    padding: 20px 20px 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(164deg, rgba(25, 25, 25, 0.20) 18.19%, rgba(37, 59, 119, 0.20) 100%);
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(190px);
}

.news-item .title {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.news-item .description {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 51px;
align-self: stretch;
    margin-bottom: 10px;
}

.news-data {
    display: flex;
    align-items: center;
}

.news-data .author {
    color: #B6B6B6;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.news-data .time {
    color: #B6B6B6;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 5px;
}

.news-item .blog-link {
    color: #165EFC;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.blog-photo {
    margin-top: 20px;
}

.news-block {
    margin-bottom: 67px;
}

.blog-more {
    text-align: center;
    margin-top: 46px;
}

.blog-more a {
    display: inline-flex;
padding: 12px 30px;
justify-content: center;
align-items: center;
color: #FFF;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
border: 1px solid #165EFC;
backdrop-filter: blur(3.1500000953674316px);
text-decoration: none;
}

.single .page-hero.has-thumbnail {
    height: 690px;
    margin-top: 100px;
}

.page-hero__inner {
    display: flex;
padding: 56px 80px 56px 162px;
flex-direction: column;
align-items: flex-start;
gap: 14px;
align-self: stretch;
border-top: 1px solid var(--Dark-15, #262626);
border-bottom: 1px solid var(--Dark-15, #262626);
}

.post-hero-label {
    color: var(--Absolute-White, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.6px;

}

.post-hero-excerpt p {
    margin-bottom: 0;
    color: var(--Grey-60, #98989A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.54px;
}

.single .entry-content {
    display: flex;
padding: 56px 80px 80px 162px;
flex-direction: column;
align-items: flex-start;
gap: 30px;
align-self: stretch;
border-bottom: 1px solid var(--Dark-15, #262626);
}

.single .inner-page {
    padding-top: 0 !important;
}

.single .inner-page p {
    margin-bottom: 0;
    color: var(--Grey-60, #98989A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.54px;
    width: 100%;
}
.single .inner-page img {
    width: 100%;
}

.contact-top {
    margin-top: 50px;
    margin-bottom: 42px;
}

.contact-top h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    margin-bottom: 21px;
}

.contact-top p {
    margin-bottom: 0;
    color: var(--Pure-White, #FFF);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 734px;
    margin: 0 auto;
}

.contact-top-info {
    display: flex;
    padding: 40px;
    width: 343px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #1A1A1A;
}

.contact-data {
    ;display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    padding-bottom: 42px;
    border-bottom: 1px solid #fff;
    gap: 56px;
}

.contact-top-info a {
    color: var(--Absolute-White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.b128-overlay {
    position: fixed;
    inset: 0;
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.b128-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.b128-popup {
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 2px solid #165EFC;
    padding: 48px 40px 40px;
    max-width: 460px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.28s ease;
}
.b128-overlay.is-open .b128-popup {
    transform: translateY(0);
}

.b128-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.50);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    padding: 0;
}
.b128-popup__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.b128-popup__text {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 32px;
}

.b128-popup__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.b128-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.b128-btn--primary {
    background: #165EFC;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.b128-btn--primary:hover {
    background: #1048c0;
    color: #fff;
    transform: translateY(-1px);
}
.b128-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.b128-btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}
.b128-btn--full { width: 100%; margin-top: 4px; }

.b128-callback-form__input {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 12px;
    -webkit-appearance: none;
}
.b128-callback-form__input::placeholder { color: rgba(255, 255, 255, 0.30); }
.b128-callback-form__input:focus {
    border-color: #165EFC;
    background: rgba(22, 94, 252, 0.05);
}

.b128-callback-form__msg {
    display: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 4px;
}
.b128-callback-form__msg.is-visible { display: block; }
.b128-callback-form__msg.is-error   { color: #ff9090; }

@media (max-width: 500px) {
    .b128-popup { padding: 44px 20px 32px; }
    .b128-popup__text { font-size: 17px; }
    .b128-popup__actions { flex-direction: column; }
    .b128-btn { min-width: 100%; }
}

.b128-callback-cf7 .wpcf7 { margin: 0; }
.b128-callback-cf7 form p  { margin-bottom: 10px; }

.b128-callback-cf7 form input[type="text"],
.b128-callback-cf7 form input[type="email"],
.b128-callback-cf7 form input[type="tel"],
.b128-callback-cf7 form textarea,
.b128-callback-cf7 form select {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}
.b128-callback-cf7 form input[type="text"]:focus,
.b128-callback-cf7 form input[type="email"]:focus,
.b128-callback-cf7 form input[type="tel"]:focus,
.b128-callback-cf7 form textarea:focus {
    border-color: #165EFC;
    background: rgba(22, 94, 252, 0.05);
}
.b128-callback-cf7 form input::placeholder,
.b128-callback-cf7 form textarea::placeholder { color: rgba(255,255,255,0.30); }

.b128-callback-cf7 form textarea { min-height: 100px; resize: vertical; }

.b128-callback-cf7 .wpcf7-submit {
    width: 100%;
    padding: 13px 24px;
    background: #165EFC;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    transition: background 0.2s;
    margin-top: 4px;
}
.b128-callback-cf7 .wpcf7-submit:hover { background: #1048c0; }

.b128-callback-cf7 .wpcf7-not-valid-tip {
    color: #ff9090;
    font-size: 11px;
    margin-top: 3px;
    display: block;
}
.b128-callback-cf7 form input.wpcf7-not-valid,
.b128-callback-cf7 form textarea.wpcf7-not-valid {
    border-color: rgba(220, 60, 60, 0.5);
}
.b128-callback-cf7 .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 10px 14px;
    font-size: 13px;
    border-width: 1px;
    border-style: solid;
}
.b128-callback-cf7 .wpcf7-mail-sent-ok {
    border-color: rgba(22,94,252,0.4);
    background: rgba(22,94,252,0.08);
    color: #7ab0ff;
}
.b128-callback-cf7 .wpcf7-mail-sent-ng,
.b128-callback-cf7 .wpcf7-validation-errors {
    border-color: rgba(220,60,60,0.4);
    background: rgba(220,60,60,0.06);
    color: #ff9090;
}
.b128-callback-cf7 .wpcf7-spinner { display: none !important; }

.b128-popup__phone {
    display: inline-block;
    margin-top: 10px;
    color: #165EFC;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}
.b128-popup__phone:hover { color: #7ab0ff; }

.nav-right-phone {
    text-align: right;
}

.phone-text, .footer-contact-text {
    font-size: small;
    color: #b5b5b5;
}

.footer-contact-text {
    margin-left: 1rem;
}