:root {
    color-scheme: only light;
    --red: #A8412B;
    --black: #1e2728;
    --green: #2A5C45;
    --green-hover: #1D4032;
    --green-l: #EBF2EE;
    --mono: 'DM Mono', 'Courier New', monospace;
    --sans: 'Plus Jakarta Sans',system-ui,sans-serif;
    --serif: "Newsreader", serif;
    --rule: #D4D1CB;
    --off: #F4F3F0;
    --ink: #1A191A;
    --pale: #AEACA7;
    --mid: #6B6865;
    --light: #E8E6E1;
    --search-icon: url(img/icons/search.svg);
    --ink-2: #323028;
}

@keyframes fadeOut {
    from {
        transform: translate(50%, 0);
        opacity: 1;
        visibility: visible
    }

    to {
        transform: translate(50%, 50%);
        opacity: 0;
        visibility: hidden
    }
}

@keyframes fadeIn {
    from {
        transform: translate(50%, 50%);
        opacity: 0;
        visibility: hidden
    }

    to {
        transform: translate(50%, 0);
        opacity: 1;
        visibility: visible
    }
}

body {
    color: var(--ink);
    font-family: var(--sans);
    padding: 64px 0 0;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    color: var(--black);
    text-decoration: none;
    background-color: transparent;
}

textarea {
    width: 100%;
    border: 1px solid #ebebeb;
    min-height: 120px;
    border-radius: 8px;
    background: #fff;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 20px;
}

select {
    appearance: none;
    background: #FFF;
    border: 1.5px solid #D4D1CB;
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231A1916' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(42, 92, 69, .08);
}

input[type="text"] {
    background: #FFF;
    border: 1.5px solid #D4D1CB;
    border-radius: 8px;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.mono {
    font-family: var(--mono);
}

header {
    align-items: stretch;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #D4D1CB;
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header a {
    text-decoration: none;
}

.navbar {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 64px;
}

.header-logo {
    align-items: center;
    display: flex;
    gap: 12px;
    height: 100%;
}

.logo {
    background: var(--green);
    border-radius: 8px;
    font-family: var(--mono);
    padding: 6px 10px;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
    color: #F4F3F0;
    letter-spacing: -.02em;
}

.header-info {
    line-height: 1;
}

.header-title {
    color: #1A1916;
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    letter-spacing: -.01em;
    padding: 0;
}

footer .header-title {
    color: #fff;
    font-size: 17px;
}

footer .header-descr {
    color: rgba(255, 255, 255, .4);
}

.header-descr {
    color: var(--green);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 16px;
}

.header-menu {
    display: flex;
    gap: 2px;
    padding: 0;
    margin: 0;
}

.header-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

.header-menu-item.active a:after {
    width: 100%;
}

.header-menu-nav {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: .005em;
}

.header-menu a {
    color: #6B6865;
    display: block;
    padding: 6px 12px;
    transition: color .15s, background .15s;
}

.header-menu a:hover {
    color: #323028;
}

.header-contact {
    align-items: center;
    display: flex;
    gap: 16px;
    height: 100%;
    justify-content: center;
}

.header-phones {
    align-items: center;
    display: none;
    flex-direction: column;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .02em;
}

h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    margin: 0;
}

.button-primary {
    background: var(--red);
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.thead-sticky {
    position: sticky;
    z-index: 10;
    top: 0;
}

.table-style {
    margin: 0 0 10px;
    position: relative;
    width: 100%;
}

.table-style th {
    text-align: left;
    padding: 0 16px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    white-space: nowrap;
}

.table-style th:first-child,
.table-style td:first-child {
    padding-left: 0;
}

.table-style tbody tr:hover {
    background: #ebebeb;
}

.base-table-row {
    border-bottom: 1px solid #ebebeb;
    position: relative;
    transition: background .15s;
}

.base-table-row td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--off);
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    vertical-align: middle;
}

.filter-block {
    border-bottom: 1px solid var(--rule);
    color: #1A1916;
    padding: 28px 0 24px;
}

.filter-items {
    align-items: end;
    display: grid;
    gap: 10px;
}

.filter-item {
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    margin: 0 0 8px;
}

.treeselect-input {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    min-height: 48px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 36px;
    transition-duration: .2s;
    transition-property: border-color, box-shadow, width, height, background-color, opacity;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.pagination-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 80px;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination-descr {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--mid);
    font-weight: 500;
}

.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pagination-button {
    background: none;
    border: 1px solid transparent;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-button:hover:not(:disabled) {
    background: var(--off);
    color: var(--ink);
}

.active .pagination-button {
    background: var(--ink);
    color: #fff;
}

.pagination-button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.pagination-item-arrow {
    font-family: var(--mono);
    border: 1px solid var(--rule);
}

.pagination-filter {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--mid);
}

.pagination-filter select {
    padding: 6px 26px 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--rule);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6865' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    appearance: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.header-image {
    padding: 30px;
}

.about-data {
    padding: 0 48px;
}

.achievements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 160px;
}

.achievement {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    width: 250px;
    height: 120px;
}

.achievement-title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}

.achievement-descr {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.services-header {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 150px;
    justify-content: space-around;
}

.services-category {
    display: flex;
    gap: 20px;
}

.services-category-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    padding: 24px;
    width: 64px;
    height: 64px;
}

.services-category-icon img {
    height: 15px;
    max-height: 15px;
    width: 16px;
    max-width: 16px;
}

.services-category-descr {
    display: flex;
    flex-direction: column;
    gap: 46.5px;
}

.services-category-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.services-categories ul {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 0 18px;
}

.services-categories li {
    padding: 8px 0;
}

.services-categories ::marker {
    color: #bfbfbf;
}

.partners-block {
    padding: 80px 30px;
}

.header {
    font-weight: 400;
    font-size: clamp(20px, 5vw, 40px);
    line-height: 1.2;
    color: var(--black);
    margin-top: 60px;
    margin-bottom: 40px;
}

.header-2 {
    display: inline-flex;
    position: relative;
    width: 100%;
    max-width: 324px;
    justify-content: space-between;
    align-items: center;
    padding-left: 12px;
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .04em;
    text-transform: lowercase;
    border-top: 1px solid var(--black);
    padding-top: 8px;
    text-decoration: none;
}

.header-2::before {
    content: "";
    position: absolute;
    height: 4px;
    width: 4px;
    left: 0;
    top: 18px;
    background: var(--black);
    border-radius: 5px;
}

a.header-2::after {
    content: url(img/icons/arrow-red.svg);
    transform: rotate(180deg);
    height: 26px;
    transition: all .4s;
}

a.header-2:hover::after {
    transform: rotate(180deg) translateX(-10px);
}

.partners {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-gap: 0;
    padding-bottom: 30px;
    max-width: 1380px;
    margin: 3rem auto 0;
}

.partner {
    position: relative;
    padding: 20px;
    border: 1px solid #ebebeb;
    min-width: 150px;
}

.container {
    max-width: 1280px;
    padding: 0 20px;
}

.feedback-block {
    padding: 80px 30px 120px;
}

.feedback-form-columns {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feedback-form-column {
    width: 100%;
}

.form-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.form-item {
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    width: 100%;
}

.form-item-checkbox {
    display: flex;
    gap: 10px;
    align-items: start;
}

.form-item-checkbox input {
    margin: 5px 0 0;
}

.form-label {
    margin: 0;
    width: 100%;
}

.text-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    box-sizing: border-box;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: all .15s ease;
    height: 48px;
    width: 100%;
    border: 1px solid #ebebeb;
    padding: 13px 16px;
    color: var(--black);
    line-height: 20px;
}

.text-field:focus-visible {
    border: 1px solid #f04343;
}

.field-name {
    position: absolute;
    top: 10px;
    left: 16px;
    right: 36px;
    font-size: 14px;
    font-weight: 400;
    transform-origin: 0 0;
    transform: translateZ(0);
    transition: all .2s ease;
    pointer-events: none;
    color: #7e7f8a;
    padding: 2px;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
}

.field-name::before {
    background: #fff;
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: -1;
    bottom: 9px;
}

.text-field:not(:placeholder-shown) + .field-name,
.text-field:focus+.field-name {
    transform: translate3d(0, -22px, 0);
    font-size: 12px;
    right: auto;
}

.feedback-form textarea {
    height: 252px;
}

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    padding: 64px 0 32px;
    margin-top: 0;
}

.footer-data {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-header {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px;
}

.footer-menu {
    list-style: none;
    font-size: 14px;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 9px;
}

footer a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .25);
    flex-direction: column;
    gap: 8px;
}

.policy-privacy {
    cursor: pointer;
    color: #7e7f8a;
    transition: all .4s ease;
}

.container-wide {
    width: 100%;
    max-width: 1440px;
    padding: 30px;
    margin: 0 auto;
}

.container-short {
    max-width: 900px;
    margin: 0 auto;
}

.news {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    padding-bottom: 80px;
}

.news-item {
    width: 50%;
}

.news-link {
    text-decoration: none;
}

.news-image {
    width: 100%;
    margin-bottom: 16px;
    height: 395px;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-data {
    align-items: center;
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.news-category {
    color: var(--red);
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid #bfbfbf;
    margin-bottom: 0;
}

.news-date {
    color: #bfbfbf;
    margin-bottom: 0;
}

.news-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-aside {
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
}

.news-aside nav {
    margin-bottom: 40px;
}

.breadcrumbs-block {
    color: var(--mid);
    font-size: 13px;
    font-weight: 500;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    list-style: none;
    padding: 0;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
}

.breadcrumbs a {
    color: var(--green);
}

.breadcrumbs li {
    position: relative;
    padding: 0 15px 0 10px;
}

.breadcrumbs li:first-child {
    padding: 0 15px 0 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: var(--rule);
    position: absolute;
    right: 0;
    top: 0;
}

.news-header {
    font-weight: 500;
    font-size: clamp(24px, 5vw, 32px);
    line-height: 36px;
    margin-bottom: 12px;
    order: 1;
}

.news-detail-date {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #bfbfbf;
    order: 2;
}

.news-content {
    width: 100%;
    padding-top: 20px;
}

.news-detail-image {
    margin-bottom: 40px;
}

.news-detail-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.back-page {
    padding: 15px 20px;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    display: inline-flex;
}

.back-page::before {
    content: url(img/icons/arrow-red.svg);
    height: 18px;
    transition: all .4s;
}

.last-news-block {
    margin-bottom: 120px;
}

.last-news-header {
    font-weight: 600;
    font-size: clamp(20px, 5vw, 40px);
    line-height: 1.2;
    text-align: left;
    max-width: 800px;
    margin: 40px 0;
}

.last-news {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.last-news-item {
    flex-basis: 300px;
    flex-grow: 1;
}

.last-news-image {
    width: 100%;
    margin-bottom: 16px;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}

.last-news-category {
    color: #424242;
}

.news-title:hover {
    color: var(--red);
}

.cases-block {
    padding: 80px 30px;
}

.case-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    padding-bottom: 30px;
}

.case-item {
    text-align: left;
    padding: 36px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    flex-basis: 324px;
    position: relative;
}

.case-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: all .2s linear;
    z-index: 2;
}

.case-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.case-item::after {
    content: url(img/icons/open-cases.svg);
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: hsla(0, 0%, 100%, .5);
    opacity: 0;
    visibility: hidden;
    transition: all .4s linear;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(30px, 30px);
}

.case-item:hover::after {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.case-item-header {
    font-weight: 500;
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.case-item-descr {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #7e7f8a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 28px;
}

.case-item-image {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 165px;
}

.case-item-slider {
    padding: 36px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    flex-basis: 440px;
    flex-shrink: 0;
    width: 100%;
    display: block;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-descr {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #7e7f8a;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-icon {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    margin-bottom: 32px;
    border-radius: 60px;
}

.case-icon::before {
    content: url(img/icons/dark-arrow.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -39%);
    transition: all .4s;
}

.case-item:hover .case-icon::before {
    left: 60%;
}

.case-image {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 236px;
}

.cases-descr {
    overflow: hidden;
    padding: 90px 30px;
}

.cases-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cases-content-items-block {
    flex-shrink: 1;
    flex-grow: 1;
    width: 50%;
}

.cases-content-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.cases-content-item {
    text-align: left;
    width: calc(50% - 20px);
}

.cases-content-item-img {
    margin-bottom: 16px;
}

.cases-content-item-desr {
    color: #424242;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.cases-content-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 516px;
    flex-shrink: 0;
}

.cases-content-image img:not(.bg) {
    position: absolute;
}

.cases-content-image img:not(.bg):nth-child(2) {
    top: 10%;
    left: 70%;
}

.cases-content-image img:not(.bg):nth-child(3) {
    top: -6%;
    left: 60%;
}

.cases-content-image img:not(.bg):nth-child(4) {
    top: 80%;
    left: 53%;
}

.cases-content-image img:not(.bg):nth-child(5) {
    top: 57%;
    left: 6%;
}

.cases-content-image img:not(.bg):nth-child(6) {
    top: 10%;
    left: 24%;
}

.cases-content-image img:not(.bg):nth-child(7) {
    top: 45%;
    left: 60%;
}

.all-cases-block {
    padding: 60px 30px;
}

.container-faq {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

.faq-block {
    width: 100%;
    padding: 40px 30px;
    /* border-right: 1px solid #ebebeb; */
}

.faq-header {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin: 40px 0 10px;
}

.faq-header:first-child {
    margin-top: 0;
}

.accordion-item {
    border: none;
    border-top: 1px solid #ebebeb;
    padding: 0;
    display: block;
    position: relative;
    background-color: transparent;
    background-clip: border-box;
    border-radius: 0;
    word-wrap: break-word;
}

.accordion-header {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: none;
}

.accordion-button {
    background: none;
    border: none;
    border-radius: .25rem;
    color: #212529;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    vertical-align: middle;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-transform: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
    color: var(--red);
}

.accordion-button::after {
    content: none;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-collapse {
    border: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #424242;
}

.accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.faq-form-block {
    width: 100%;
    padding: 40px 30px;
}

.faq-form-header {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

textarea.text-field:not(:placeholder-shown)+.field-name {
    transform: translate3d(0, -22px, 0);
    font-size: 12px;
    background: transparent;
    right: auto;
}

.faq-form .button-primary {
    margin-top: 20px;
    width: 135px;
}

.case-detail-header {
    line-height: 1.2;
    font-size: clamp(20px, 5vw, 40px);
    margin-bottom: 20px;
}

.case-detail-image {
    margin: 0 -30px;
    width: calc(100% + 60px);
    max-width: none;
}

.case-detail-lead {
    max-width: 920px;
    margin: 60px auto;
    font-weight: 500;
    font-size: 20px;
}

.case-detail-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 30px 10px;
    overflow-x: hidden;
}

.case-detail-gallery-item {
    display: inline;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 5px;
}

.case-detail-gallery img {
    height: 145px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.case-detail-content {
    max-width: 920px;
    margin: 30px auto;
}

.gallery-block {
    display: flex;
    flex-direction: column;
}

.gallery-header {
    margin-bottom: 40px;
    line-height: 44px;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: auto;
    border-radius: 4px;
    display: block;
}

.gallery-item::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, .3137254901960784), transparent);
    border-radius: 4px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-item-header {
    align-items: start;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.gallery-item-image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.gallery-item-title {
    white-space: normal;
    font-weight: 500;
    font-size: 20px;
    flex: 1;
    line-height: 28px;
    color: #fff;
}

.gallery-item-count {
    background: #fff;
    border-radius: 20px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 8px;
    margin: 5px 0 0;
}

.gallery-container {
    padding: 56px 32px 64px;
}

h1 .badge {
    color: #212529;
    display: inline-block;
    padding: 10px 16px;
    margin: 0 0 0 24px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background-color: #dee2e9;
    vertical-align: top;
}

.gallery-detail-header {
    margin-bottom: 24px;
}

.employees-block {
    overflow: hidden;
    padding: 100px 30px 80px;
}

.employ {
    border: 1px solid #ebebeb;
    align-items: center;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    width: 336px;
}

.employ-image {
    border-radius: 100px;
    margin-bottom: 24px;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 180px;
    height: 180px;
}

.employ-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 4px;
}

.employ-position {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #7e7f8a;
    margin-bottom: 12px;
}

.employ-contacts {
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.table-address-link {
    display: block;
}

.catalog-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
    align-items: start;
}

.catalog-detail-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    background: #f6f6f6;
    border: 1px solid var(--rule);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.copy {
    cursor: pointer;
    gap: 6px;
    transition: background .15s;
}

.copy:hover {
    background: #ebebeb;
}

.copy::before {
    content: "";
    background: #575757;
    -webkit-mask: url(img/icons/copy.svg) no-repeat center / contain padding-box;
    mask: url(img/icons/copy.svg) no-repeat center / contain padding-box;
    width: 14px;
    height: 14px;
}

.copy span {
    font-weight: 600;
}

.catalog-detail-image-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.catalog-detail-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--off);
    aspect-ratio: 16 / 10;
}

.catalog-detail-image-el {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    display: block;
    transition: transform .3s ease;
    object-fit: cover;
    object-position: center;
}

.catalog-detail-map {
    position: relative;
    border-radius: 10px;
    background: var(--off);
    border: 1px solid var(--rule);
    height: 288px;
}

.catalog-detail-map:empty,
.contact-map:empty {
    display: none;
}

.catalog-wb-map {
    position: relative;
    border-radius: 10px;
    background: var(--off);
    border: 1px solid var(--rule);
    height: 288px;
    width: 100%;
}

.contact-wb-map {
    position: relative;
    border-radius: 10px;
    background: var(--off);
    border: 1px solid var(--rule);
    height: 230px;
    width: 300px;
}

#panel {
    margin-top: -64px;
    margin-bottom: 25px;
}

.btn-green {
    background: var(--green);
    border-radius: 100px;
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 9px 18px;
    transition: background .2s, transform .15s;
}

.btn-green:hover {
    background: var(--green-hover);
    color: #FFF;
}

.btn-white {
    background: transparent;
    color: var(--mid);
    border-color: transparent;
    padding: 9px 18px;
    font-size: 13px;
}

.btn-green .mono {
    margin-left: 8px;
}

.page-header-block {
    background: #323028;
    border-bottom: 1px solid #D4D1CB;
    color: rgba(255, 255, 255, .55);
    display: grid;
    place-items: center;
    height: 380px;
    height: auto;
    position: relative;
}

.page-header-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, .02) 20px 21px);
}

.page-header {
    color: rgba(255,255,255,.45);
    font-size: clamp(48px, 6vw, 84px);
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: -.03em;
    line-height: .96;
}

.page-header em {
    color: #7CB89F;
    font-weight: 400;
}

.top-header-subheader {
    align-items: center;
    color: rgba(255, 255, 255, .55);
    display: flex;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    gap: 10px;
    margin-bottom: 16px;
}

.top-header-subheader::before {
    background: rgba(255, 255, 255, .3);
    content: '';
    width: 20px;
    height: 1px;
}

.page-header-descr {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .65);
    max-width: 560px;
    font-weight: 300;
    margin-top: 14px;
}

.page-header-text {
    padding: 25px 0;
    font-size: 18px;

}

.input-reset {
    background: none;
    border: none;
    color: #6B6865;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    transition: all .2s;
}

.input-reset:hover {
    color: #1A191A;
}

.cat-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #EBF2EE;
    border: 1px solid rgba(42, 92, 69, .18);
    border-radius: 8px;
    margin: 16px 0 0;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--green-hover);
    font-weight: 500;
}

.cat-hint-icon {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--green);
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 92, 69, .2);
    flex-shrink: 0;
}

.cat-hit-hide {
    background: none;
    border: none;
    margin-left: auto;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mid);
    padding: 4px 8px;
    border-radius: 4px;
}

.cat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    flex-wrap: wrap;
    gap: 12px;
}

.cat-sort {
    display: flex;
    gap: 4px;
    align-items: center;
}

.cat-meta strong {
    color: var(--ink);
    font-weight: 600;
}

.sort-label {
    font-size: 12px;
    color: var(--pale);
    margin-right: 4px;
    font-weight: 500;
}

.sort-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--pale);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sort-btn.on {
    background: var(--off);
    color: var(--ink);
}

.sort-btn .dir {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--green);
}

.sort-btn .dir-desc {
    transform: rotate(180deg);
    margin-top: 6px;
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact {
    margin-bottom: 9px;
}

.li-on,
.li-off {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
}

.li-on::before,
.li-off::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.li-on::before {
    background: var(--green);
    box-shadow: 0 0 6px rgba(42, 92, 69, .4);
}

.li-off::before {
    background: var(--light);
    border: 1px solid var(--rule);
}

.li-on {
    color: var(--green);
}

.li-off {
    color: var(--pale);
}

.td-go {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--pale);
    text-align: right;
    width: 32px;
    transition: color .15s, transform .15s;
    display: inline-block;
}

tr:hover .td-go {
    color: var(--green);
    transform: translateX(2px);
}

.catalog-detail-props-block {
    width: 100%;
}

.catalog-detail-top {
    align-items: end;
    border-bottom: 1px solid #000;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 0 15px;
    padding: 20px 0 13px;
}

.catalog-detail-header {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: -.01em;
    line-height: 1.2;
    color: var(--ink);
}

.catalog-detail-top-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.catalog-detail-gray-block {
    border: 1px solid #D4D1CB;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 15px;
    margin: 15px 0;
}

.catalog-detail-block-header {
    font-weight: 700;
    margin: 0;
}

.catalog-props {
    column-count: 2;
}

.catalog-prop {
    margin: 0 0 5px;
    page-break-inside: avoid;
}

.catalog-prop-value {
    color: var(--ink);
}

.catalog-props a {
    color: var(--green);
}

.download {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.download::before {
    content: '⤓';
    font-family: var(--mono);
}

.catalog-prop-tags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.catalog-prop-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    background: var(--off);
    color: var(--ink-2);
}

.catalog-prop-tag.red {
    background: #FBEFEC;
    color: var(--red);
}

.similiar-block {
    padding: 60px 0;
}

.similiar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 48px;
}

.similiar-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    margin-top: 40px;
}

.similiar-item {
    background: #FFF;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
    display: flex;
    flex-direction: column;
}

.similiar-image-block {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--off);
}

.similiar-image-block img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.similiar-image-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #FFF;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    border: 1px solid var(--rule);
}

.similiar-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.similiar-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: var(--mid);
}

.similiar-sku {
    color: var(--green);
    font-weight: 500;
}

.similiar-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: 1.15;
    margin: 0;
}

.similiar-arrow {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--pale);
    margin-top: auto;
    padding-top: 8px;
}

.updating {
    opacity: .3;
}

.form-item-error {
    color: red;
    display: none;
}

.error .form-item-error {
    display: block;
}

.error .text-field {
    border-color: red;
}

[disabled] {
    opacity: .5;
}

.feedback-error {
    color: red;
    margin: 10px 0 0;
}

.feedback-form-success {
    display: none;
}

.SmartCaptcha-Shield.SmartCaptcha-Shield_visible {
    display: none;
}

.catalog-top-properties,
.catalog-props {
    color: #5f5f5f;
}

.catalog-top-properties {
    border-bottom: 1px solid #D4D1CB;
    margin: 0 0 20px;
    padding: 20px 0;
}

.catalog-prop-grey-text{
    color: #5f5f5f;
    font-size: 12px;
}

.select2-selection__choice:nth-child(n+3) {
    display: none !important;
}

.SelectBox .placeholder {
    background: #FFF;
}

.catalog-detail-top-icons {
    display: flex;
    gap: 10px;
}

.catalog-detail-top-icon {
    background: #e7e7e7;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
}

.catalog-detail-breadcrumbs {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 28px 0 0;
}

.contact-address-block {
    padding: 50px 0 0;
}

.contact-address-wrap {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.contact-map {
    width: 100%;
    height: 200px;
}

.contact-address {
    font-size: 18px;
}

.modal-header {
    justify-content: space-between;
}

.modal-close {
    background: none;
    border: none;
}

.catalog-prop-value-ots {
    margin-right: 10px;
}

.SumoSelect {
    width: 100%;
}

.SumoSelect .select-all {
    height: auto;
}

.SumoSelect .select-all>label {
    line-height: 0.5;
    margin: 0 0 13px;
}

.catalog-more {
    color: #0081e8;
}

.catalog {
    overflow: auto;
}

.burger-button {
    height: 48px;
    width: 48px;
}

.mobile-menu-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #FFFF;
}

.mobile-menu {
    font-size: 22px;
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: center;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
}

.mobile-menu-header {
    text-align: right;
    padding: 10px;
}

.mobile-menu-close {
    background: url(img/icons/close.svg) no-repeat 50% 50%;
    background-size: contain;
    border: none;
    height: 28px;
    width: 28px;
}

.mobile-menu-wrapper {
    display: grid;
    place-items: center;
    height: 100%;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ms-choice {
    height: 37px;
}

.ms-choice>span {
    top: 5px;
}

.ckie {
    font-size: 16px;
    line-height: 1.3;
    max-width: 369px;
    width: 100%;
    padding: 0 15px;
    position: fixed;
    bottom: 15px;
    right: 50%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translate(50%, 0);
}

.ckie-block {
    background: #2b2b2b;
    border-radius: 12px;
    color: #FFF;
    padding: 24px;
}

.ckie-buttons {
    display: flex;
    gap: 8px;
}

.ckie-button {
    background: none;
    border: none;
    border-radius: 8px;
    color: #FFF;
    padding: 14px;
    width: 100%;
    transition: background .2s;
}

.ckie-accept,
.ckie-decline {
    background: var(--green);
}

.ckie-button:hover {
    background: var(--green-hover);
}

.ckie a {
    color: inherit;
    text-decoration: underline;
}

.ckie a:hover {
    text-decoration: none;
}

.use-cookie-visible {
    animation: fadeIn .85s cubic-bezier(0.19, 1, 0.22, 1) both alternate;
}

.use-cookie-hidden {
    animation: fadeOut .85s cubic-bezier(0.19, 1, 0.22, 1) both alternate;
}

.feedback-form-block a {
    text-decoration: underline;
}

.feedback-form-block a:hover {
    text-decoration: none;
}

.form-check-input:checked {
    background-color: #00a559;
    border-color: var(--green);
}

[data-cookie-approved="off"] {
    display: none;
}

.form-switch a {
    text-decoration: underline;
}

.form-switch a:hover {
    color: inherit;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-page {
    padding: 30px 0;
}

.content-page h1 {
    font-size: 30px;
    margin: 0 0 25px;
}

.content-page h2 {
    font-size: 25px;
    margin-top: 30px;
}

.content-page h3 {
    font-size: 22px;
}

.content-page thead {
    text-align: center;
}

.content-page ul,
.content-page ol {
    padding: 0 0 0 18px;
}

.content-page a {
    color: #0081e8;
}

.content-page a:hover {
    text-decoration: underline;
}

.table-block {
    overflow: auto;
}

.catalog-search {
    display: flex;
    gap: 10px;
    position: relative;
}

.catalog-search input[type="text"] {
    padding: 10px 16px;
    width: 320px;
}

.clear-btn {
    position: absolute;
    /* подстрой под ширину кнопки "Искать" */
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    right: 90px;
    top: 17px;
    color: #999;
    cursor: pointer;
    padding: 0 10px;
    display: none; /* скрыт по умолчанию */
    transition: color 0.2s;
    line-height: 1;
}

.clear-btn:hover {
    color: #333;
}

.clear-btn.visible {
    display: block; /* показываем когда есть текст */
}

.modal-feedback .modal-content {
    height: auto;
}

.ccode-tooltip {
    background: #333;
    --bs-popover-body-color: #FFF;
    --bs-popover-body-padding-x: 10px;
    --bs-popover-body-padding-y: 8px;
    --bs-border-radius-lg: 5px;
}

.ccode-tooltip .popover-arrow::before,
.ccode-tooltip .popover-arrow::after {
    content: none !important;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}

@media (min-width: 640px) {
    .partners {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .contact-address-wrap {
        flex-direction: row;
    }

    .contact-map {
        width: 300px;
    }
}

@media (min-width: 768px) {
    .show-mobile {
        display: none;
    }

    .news-detail {
        flex-direction: row;
        gap: 60px;
        margin-bottom: 160px;
    }

    .news-aside {
        width: 420px;
        padding-top: 30px;
        position: sticky;
        top: 102px;
    }

    .news-header {
        margin-bottom: 40px;
        order: 2;
    }

    .news-detail-date {
        margin: 0 0 12px;
        order: 1;
    }

    .news-content {
        width: calc(100% - 420px);
        padding-top: 30px;
    }

    .last-news-header {
        font-weight: 500;
        margin: 60px 0;
    }

    .case-detail-header {
        font-weight: 500;
        margin-bottom: 40px;
    }

    .case-detail-image {
        margin: 0;
        width: 100%;
    }

    .case-detail-gallery {
        gap: 30px;
        overflow-x: auto;
    }

    .case-detail-gallery img {
        height: 350px;
    }

    .case-detail-gallery-item {
        flex-grow: unset;
    }

    .case-detail-content {
        margin: 60px auto;
    }

    .container-faq {
        flex-wrap: nowrap;
    }

    /*
    .faq-block {
        width: 65%;
    }
    */

    .faq-form-block {
        width: 35%;
        max-width: 500px;
    }

    .accordion-button {
        font-size: 20px;
        font-weight: 400;
    }

    .accordion-button:not(.collapsed) {
        color: var(--black);
    }

    .accordion-button::after {
        background: url(img/icons/accordion-arrow-red.svg) no-repeat 50% 50%;
        background-size: 8px;
        transform: rotate(0deg);
        transition: .4s all;
    }

    .accordion-button:not(.collapsed)::after {
        background: url(img/icons/accordion-arrow-red.svg) no-repeat 50% 50%;
    }

    .accordion-collapse {
        font-size: 16px;
    }

    .faq-form-header {
        font-weight: 500;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-form-block-sticky {
        position: sticky;
        top: 110px;
    }

    .gallery-items {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .header {
        font-weight: 500;
    }

    .employ-image {
        border-radius: 0;
        margin-bottom: 24px;
        width: auto;
        height: auto;
    }

    .employ-name {
        font-weight: 400;
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 14px;
    }

    .employ-position {
        font-size: 14px;
        line-height: 20px;
    }

    .employ-contacts {
        font-size: 12px;
        gap: 14px;
        line-height: 14px;
    }

    .feedback-form-columns {
        flex-direction: row;
        gap: 30px;
    }

    .feedback-form-column {
        width: 50%;
    }

    .header-logo {
        border-right: 1px solid #D4D1CB;
        padding-right: 32px;
    }

    .header-contact {
        border-left: 1px solid #D4D1CB;
        padding-left: 24px;
    }

    .filter-items {
        grid-template-columns: 1fr 1fr;
    }

    .header-phones {
        display: flex;
    }

    .partners {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 960px) {
    .catalog-detail-top {
        gap: 40px;
    }

    .catalog-detail {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 12px;
    }

    .container {
        padding: 0 48px;
    }

    .navbar {
        padding: 0 48px;
    }

    .similiar-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-items {
        grid-template-columns: 1fr 1fr 1fr 1.6fr auto auto;
        gap: 12px;
    }

    .footer-data {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .footer-copyright {
        flex-direction: row;
        gap: 0;
    }

    .footer-bottom-links {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .services-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .partners {
        grid-template-columns: repeat(5, 1fr);
    }

    .content-page {
        padding: 50px 0;
    }
}

@media (min-width: 1200px) {
    .services-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners {
        grid-template-columns: repeat(6, minmax(150px, 1fr));
    }
}

.catalog-detail-top-icon img:hover {
    opacity: 0.5;
}
body.frame-body {
    padding: 0;
    margin: 0;
}
