@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Thin.otf);
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-UltraLight.otf);
    font-weight: 200;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Light.otf);
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Regular.otf);
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Medium.otf);
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Medium.otf);
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: eUkraine;
    src: url(../fonts/e-Ukraine-Bold.otf);
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --bg-color: #EEF1F7;
}

.button-more__wrapper {
    margin: 30px 0px;
    display: flex;
    justify-content: center;
}
.button-more__wrapper .button-more {
    font-family: 'eUkraine';
    padding: 18px;
}
.button-more__wrapper .button-more::before {
    display: none;
}

.post-single__content {
    color: #000000CC;
    white-space: break-spaces;
    width: 80%;
    line-height: 170%;
}
.post-single__content:has(p) {
    color: #000000CC;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    line-height: 170%;
}
.post-single__content:has(p) p {
    line-height: 170%;
}
.post-single__title {
    line-height: 120%;
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.post-single__content img {
    width: 902px;
    border-radius: 24px;
    margin-left: -50px;
    max-height: 500px;
    object-fit: cover;
    margin-top: 48px;
    margin-bottom: 48px;
}
.post-single__content ol {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.post-single__content ul {
    padding-inline-start: 0px;
    margin-block-end: 0px;
    margin-block-start: 0px;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 20px;
}
.post-single__content ul li {
    list-style: none!important;
    list-style-position: inside!important;
    padding: 0px!important;
    padding-left: 20px!important;
    word-wrap: break-word;
}
.post-single__content ul li::before {
    content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23CF141F'/%3E%3C/svg%3E%0A");
    position: absolute;
    left: 0;
}
.post-single__content ol li {
    list-style: auto!important;
    list-style-position: inside!important;
    padding: 0px!important;
}
.post-single__content a {
    color: #CF141F;
    text-decoration: underline;
    transition: .2s;
}
.post-single__content a:hover {
    color: #a40d16;
}
.post-single__content blockquote {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 56px 115px;
    margin-left: -50px;
    width: 902px;
    margin-bottom: 32px;
}

.post-single__content blockquote::before {
    content: url("data:image/svg+xml,%3Csvg width='89' height='77' viewBox='0 0 89 77' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40.2441 76.5V57H34.7773C29.8886 57 26.5845 55.7717 24.4814 53.2432C22.3596 50.692 21.3691 46.7129 21.3691 41V40.5H40.2441V0.5H0.5V37C0.5 50.3292 3.87356 60.2154 9.81934 66.7734C15.7711 73.3379 24.2386 76.5 34.2803 76.5H40.2441ZM88.5 76.5V57H83.0332C78.1444 57 74.8403 55.7717 72.7373 53.2432C70.6154 50.692 69.625 46.7129 69.625 41V40.5H88.5V0.5H48.7559V37C48.7559 50.3292 52.1294 60.2154 58.0752 66.7734C64.0269 73.3379 72.4945 76.5 82.5361 76.5H88.5Z' fill='white' stroke='%23CF141F'/%3E%3C/svg%3E%0A");
    position: absolute;
    left: -12px;
    top: -12px;
}

.post-single__content blockquote p {
    font-size: 20px;
    max-width: 100%;
}

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

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: "eUkraine", sans-serif;
    color: black;
    background: var(--bg-color);
    margin: 0;
    line-height: 140%;
    transition: .2s;
}

body.white {
    background: linear-gradient(-180deg, #ffffff, transparent);
}

body.locked {
    overflow: hidden;
}

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

ul,
ol,
li {
    list-style: none;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
}

input {
    background: transparent;
}

input:focus-visible {
    outline: none;
}


.form-control {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
}

.form-control:hover {
    background: #FBFBFC;
    border-color: #3E46551A;
    cursor: pointer;
}

.form-control input,
.form-control input::placeholder {
    color: #8B9099;
    font-size: 14px;
    line-height: 100%;
    font-family: 'eUkraine', sans-serif;
    width: 100%;
}

.form-control:has(input:focus) {
    border-color: #CF141F;
}

.form-control input:focus {
    caret-color: #CF141F;
}

.popup-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    transition: .3s;
}
.popup-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}
.popup-wrapper .popup {
    width: 680px;
    background: white;
    border-radius: 24px;
    padding: 35px;
    position: relative;
}
.popup-form-wrapper {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    justify-content: flex-start;
    gap: 20px;
}
.popup-form {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #3E46551A;
    transition: .3s;
    width: 100%;
}
.popup-form.focused {
    border-color: #E21C21;
}
.popup-form .popup-form-icon {
    background: #0000000D;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.popup-form .popup-icon {
    width: 18px;
    height: 18px;
}
.popup-form .form-control {
    font-family: 'eUkraine', sans-serif;
    font-weight: 400;
    padding: 0px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    width: 100%;
    height: 45px;
}
.popup-form .form-control:hover {
    background: none;
    border-color: none;
    cursor: text;
}
.popup-form .form-control::placeholder {
    color: #00000066;
}
.popup-wrapper .popup-header {
    display: flex;
    justify-content: space-between;
}
.popup-wrapper .popup-header .popup-header_switches {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.popup-wrapper .popup-header .popup-header_switches .popup-link {
    color: #A6A6A6;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    font-family: "eUkraine", sans-serif;
}
.popup-wrapper .popup-header .popup-header_switches .popup-link:hover {
    cursor: pointer;
    opacity: .5;
}
.popup-wrapper .popup-header .popup-header_switches .popup-link.active {
    color: #CF141F;
}
.popup-wrapper .popup-header_title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.popup-wrapper .popup-header_title .popup-title {
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
}
.popup-wrapper .popup-header_title .popup-description {
    font-size: 14px;
    font-weight: 400;
    color: #00000099;
}
.popup-wrapper .popup-header_close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C8C8C833;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-wrapper .popup-header_close::after {
    content: '';
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.219%206.531-12%2012m0-12%2012%2012%22%20stroke%3D%22%23A6A6A6%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E);
    background-size: cover;
    width: 25px;
    height: 25px;
}
.popup-wrapper .popup-header_close:hover {
    cursor: pointer;
}
.popup-wrapper .popup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 550px;
    overflow: auto;
}
.popup-wrapper .popup-content.hidden {
    display: none;
}
.popup-wrapper .popup .popup-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}
.popup-wrapper .popup-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.popup-wrapper .popup-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.popup-wrapper .popup-info .popup-info-title {
    font-size: 16px;
    font-weight: 500;
}
.popup-wrapper .popup-info .popup-info-content {
    font-size: 14px;
    color: #00000099;
    font-weight: 400;
}

.select {
    position: relative;
    width: 320px;
}

.select-selected {
    padding: 8px;
    background: white;
    border-radius: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    padding-right: 50px;
    cursor: pointer;
}

.select-selected::after {
    content: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23A6A6A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    position: absolute;
    right: 12px;
    top: 14px;
    width: 24px;
    height: 24px;
}

.select-selected__option {
    background: #3E46550D;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

.select-selected__option.more {
    background: #CF141F0D;
    color: #CF141F;
}

.select-dropdown {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: none;
    position: absolute;
    margin-top: 8px;
    left: 0;
    z-index: 10;
    width: 100%;
}

.select-dropdown::before {
    content: url("data:image/svg+xml,%3Csvg width='27' height='8' viewBox='0 0 27 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.5 0C24.2909 3.14678e-06 22.5 1.79086 22.5 4C22.5 6.20914 24.2909 8 26.5 8H0.5C2.70914 8 4.5 6.20914 4.5 4C4.5 1.79086 2.70914 0 0.5 0H26.5Z' fill='white'/%3E%3C/svg%3E%0A");
    top: -17px;
    left: 45%;
    position: absolute;
}

.select-dropdown.show {
    display: block;
}

.select-search {
    background: #3E46550D;
    margin-bottom: 8px;
}

.select-search:has(input:focus) {
    background: white;
}

.select-search::before {
    content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.66683 13.9997C11.1646 13.9997 14.0002 11.1641 14.0002 7.66634C14.0002 4.16854 11.1646 1.33301 7.66683 1.33301C4.16903 1.33301 1.3335 4.16854 1.3335 7.66634C1.3335 11.1641 4.16903 13.9997 7.66683 13.9997Z' stroke='%238B9099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4937 15.9066C14.8843 16.2971 15.5174 16.297 15.9079 15.9064C16.2984 15.5158 16.2983 14.8827 15.9077 14.4922L14.4937 15.9066ZM13.0405 11.6258L12.3333 10.9188L10.9193 12.3332L11.6265 13.0402L13.0405 11.6258ZM15.2007 15.1994L15.9077 14.4922L13.0405 11.6258L12.3335 12.333L11.6265 13.0402L14.4937 15.9066L15.2007 15.1994Z' fill='%238B9099'/%3E%3C/svg%3E%0A");
    height: 17px;
    width: 17px;
}

.select-option {
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all .3s ease-in-out;
}

.select-option:hover {
    background: #3E465505;
    border-color: #3E46551A;
}

.select-option.selected {
    color: #CF141F;
}

.select-option.selected::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3332 4L5.99984 11.3333L2.6665 8' stroke='%23CF141F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 16px;
}

.select-date {
    position: relative;
    background: #FFFFFF;
    padding: 8px 15px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.select-date__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
}

.select-date .datepicker-dropdown {
    top: 58px !important;
    left: 0 !important;
    width: 335px;
}

.select-date .datepicker-dropdown::before {
    content: url("data:image/svg+xml,%3Csvg width='27' height='8' viewBox='0 0 27 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.5 0C24.2909 3.14678e-06 22.5 1.79086 22.5 4C22.5 6.20914 24.2909 8 26.5 8H0.5C2.70914 8 4.5 6.20914 4.5 4C4.5 1.79086 2.70914 0 0.5 0H26.5Z' fill='white'/%3E%3C/svg%3E%0A");
    top: -13px;
    left: 45%;
    position: absolute;
}

.select-date .datepicker-dropdown .datepicker-picker {
    box-shadow: none;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
}

.select-date .datepicker-header {
    margin-bottom: 20px;
}

.select-date .datepicker-view {
    width: auto;
}

.select-date .datepicker-view {
    gap: 20px;
    row-gap: 8px;
}

.select-date .datepicker-controls .view-switch {
    order: 1;
    border: none;
    padding: 0;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 400;
    font-family: 'eUkraine', sans-serif;
}

.select-date .datepicker-controls .view-switch:hover {
    background: none;
}

.select-date .datepicker-controls .prev-button {
    order: 2;
    background: #3E46550D;
    border-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    text-indent: -9999px;
    transition: all .3s ease-in-out;
}

.select-date .datepicker-controls .prev-button::before {
    content: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999999 6L6 1' stroke='black' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    text-indent: initial;
}

.select-date .datepicker-controls .next-button {
    order: 3;
    background: #3E46550D;
    border-radius: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    text-indent: -9999px;
    transition: all .3s ease-in-out;
}

.select-date .datepicker-controls .next-button::before {
    content: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='black' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    text-indent: initial;
}

.select-date .datepicker .days .dow {
    color: #0000004D;
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    flex-basis: 40px;
}

.select-date .datepicker-cell {
    color: black;
    font-size: 14px;
    border-radius: 100px;
    transition: all .3s ease-in-out;
    flex-basis: 40px;
    height: 40px;
}

.select-date .datepicker-cell.focused:not(.selected) {
    background: none;
}

.select-date .datepicker-cell:not(.disabled):hover {
    background: #EEF1F7;
}

.select-date .datepicker-cell.next:not(.disabled),
.select-date .datepicker-cell.prev:not(.disabled) {
    color: #0000004D;
    font-size: 14px;
}


.select-date .datepicker-cell.selected,
.select-date .datepicker-cell.selected:hover,
.select-date .datepicker-cell.range-end:not(.selected),
.select-date .datepicker-cell.range-start:not(.selected) {
    background: #CF141F !important;
    color: white !important;
    border-radius: 100px;
}

.select-date .datepicker-cell.range-start:not(.selected) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.select-date .datepicker-cell.range-end:not(.range-start) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.select-date .datepicker-cell.range {
    background: #CF141F0D;
    border-radius: 0;
}


.select-date__range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.select-date__range-from {
    display: flex;
    align-items: center;
    gap: 8px;
}

.select-date__range-from::after {
    content: "";
    background: #00000033;
    width: 13px;
    height: 2px;
}

.select-date__range-from span,
.select-date__range-to span {
    background: #3E46550D;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.select-date__range-from:has(span:empty),
.select-date__range-to:has(span:empty) {
    display: none;
}



.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 40px;
}

.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 8px;
    position: relative;
}

.header-main {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    padding: 8px 16px;
    margin-left: 20px;
}

.header.fixed .header-main {
    background: white;
    box-shadow: 0px 7px 15px 0px #0000000A, 0px 27px 27px 0px #00000008, 0px 62px 37px 0px #00000005,
        0px 110px 44px 0px #00000003, 0px 171px 48px 0px #00000000, 0px 7px 15px 0px #0000000A;
    border-radius: 24px;
}

.header-logo img {
    vertical-align: middle;
    transition: .2s;
}
.header-logo img:hover {
    filter: invert(18%) sepia(38%) saturate(5916%) hue-rotate(343deg) brightness(97%) contrast(108%);
}

.header-nav {
    display: flex;
    justify-content: center;
}

.header-nav .header-nav__link {
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    transition: .3s ease;
    gap: 4px;
    display: flex;
    align-items: center;
    line-height: 100%;
    height: 100%;
}

.header-nav .header-nav__link.active {
    background: linear-gradient(180deg, #FDF3F4 0%, #FFFFFF 100%);
    color: #CF141F;
}

.header-nav .header-nav__link:hover {
    background: #3E46550D;
}

.header-nav .header-nav__link.has-dropdown::after {
    content: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 16px;
}

.header-nav__dropdown {
    display: none;
    position: absolute;
    width: calc(100% - (24px + 30px));
    left: 0;
    background: white;
    border-radius: 24px;
    margin-top: 18px;
    padding: 48px 80px;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 100;
    margin-left: 24px;
    top: 60px;
    box-shadow: 0px 7px 15px 0px #0000000A, 0px 27px 27px 0px #00000008, 0px 62px 37px 0px #00000005,        0px 110px 44px 0px #00000003, 0px 171px 48px 0px #00000000, 0px 7px 15px 0px #0000000A;
}

.header-nav__dropdown-section ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-nav__dropdown::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='51' height='12' viewBox='0 0 51 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4004 0C47.0867 0 44.4004 2.68629 44.4004 6C44.4004 9.31371 47.0867 12 50.4004 12H0C3.31371 12 6 9.31371 6 6C6 2.68629 3.31371 0 0 0H50.4004Z' fill='white'/%3E%3C/svg%3E%0A");
    top: -16px;
    right: 350px;
    position: absolute;
}

.search .header-nav__dropdown::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='43' height='18' viewBox='0 0 43 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.6855 0C37.715 0 33.6855 4.02944 33.6855 9C33.6855 13.9706 37.715 18 42.6855 18H0C4.97044 17.9999 9 13.9705 9 9C9 4.02953 4.97044 0.000142704 0 0H42.6855Z' fill='white'/%3E%3C/svg%3E%0A");
    top: -18px;
    position: absolute;
    right: 261px;
}

.header-nav__dropdown.show {
    display: flex;
}

.header-nav__dropdown-sections {
    display: flex;
    gap: 50px;
}

.header-nav__dropdown-section li a {
    word-break: break-word;
    transition: all .3s ease-in-out;
}

.header-nav__dropdown-section li a:hover {
    opacity: 30%;
}

.header-nav__social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-nav__social a {
    width: 48px;
    height: 48px;
    background: #EEF1F7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.header-nav__social a img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(1454%) hue-rotate(181deg) brightness(92%) contrast(80%);
}


.header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 30px;
}

.header-controls__btn {
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: .3s;
}

.header.fixed .header-controls__btn {
    background: white;
    box-shadow: 0px 7px 15px 0px #0000000A, 0px 27px 27px 0px #00000008, 0px 62px 37px 0px #00000005,
        0px 110px 44px 0px #00000003, 0px 171px 48px 0px #00000000, 0px 7px 15px 0px #0000000A;
    user-select: none;
}

.header.fixed .header-controls__btn.search:has(.header-nav__dropdown.show),
.header.fixed .header-controls__btn.has-dropdown:has(.header-controls__dropdown.show) {
    background: linear-gradient(180deg, #FDF3F4 0%, #FFFFFF 100%);
}

.header.fixed .header-controls__btn.search:has(.header-nav__dropdown.show) svg path,
.header.fixed .header-controls__btn.has-dropdown:has(.header-controls__dropdown.show) svg path {
    stroke: #CF141F;
}

.header.fixed .header-controls__btn.search:has(.header-nav__dropdown.show) span,
.header.fixed .header-controls__btn.has-dropdown:has(.header-controls__dropdown.show) span {
    color: #CF141F;
}

.header-controls__dropdown#languageDropdownItemMobile {
    top: 85px;
    background: #363c49;
}
.header-controls__dropdown#languageDropdownItemMobile::before {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJpc29sYXRpb246aXNvbGF0ZSIgdmlld0JveD0iMCAwIDQzIDE4IiB3aWR0aD0iNDNwdCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBkPSJNMCAwaDQzdjE4SDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBkPSJNNDIuNjg2IDBhOSA5IDAgMCAwLTkgOSA5IDkgMCAwIDAgOSA5SDBhOSA5IDAgMCAwIDktOSA5IDkgMCAwIDAtOS05eiIgZmlsbD0iIzM2M0M0OSIvPjwvZz48L3N2Zz4=");
    left: -1px;
    top: -17px;
    transform: scale(0.7);
}
.header-controls__dropdown#languageDropdownItemMobile ul li {
    padding: 12px;
    font-size: 15px;
}



.header-controls__dropdown {
    display: none;
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 4px;
    z-index: 100;
    top: 62px;
}

.header-controls__dropdown::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='43' height='18' viewBox='0 0 43 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.6855 0C37.715 0 33.6855 4.02944 33.6855 9C33.6855 13.9706 37.715 18 42.6855 18H0C4.97044 17.9999 9 13.9705 9 9C9 4.02953 4.97044 0.000142704 0 0H42.6855Z' fill='white'/%3E%3C/svg%3E%0A");
    top: -13px;
    position: absolute;
    left: 9px;
}
.header-controls__dropdown.show {
    display: flex;
}

.header-controls__dropdown ul li {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    border-radius: 100px;
}

.header-controls__dropdown ul li:hover {
    background: #3E46550D;
}

.header-controls__btn.search {
    position: unset;
    cursor: default;
}

.header-controls__btn2 {
    background: #CF141F;
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    color: white;
    padding: 18px 30px;
    border-radius: 24px;
    padding-left: 65px;
    font-size: 14px;
    position: relative;
    display: inline-flex;
    line-height: normal;
    transition: all .3s ease;
}

.header-controls__btn2::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.612 1.41452C16.1722 0.966073 15.65 0.610337 15.0752 0.367629C14.5005 0.124922 13.8844 0 13.2623 0C12.6401 0 12.0241 0.124922 11.4493 0.367629C10.8746 0.610337 10.3524 0.966073 9.91255 1.41452L9.71354 1.61733C9.32154 2.01683 8.678 2.01683 8.286 1.61733L8.08699 1.41452C7.19858 0.509117 5.99364 0.0004693 4.73725 0.000469309C3.48085 0.000469319 2.27591 0.509117 1.38751 1.41452C0.499101 2.31992 9.36088e-09 3.5479 0 4.82833C-9.36088e-09 6.10875 0.499101 7.33674 1.38751 8.24214L2.30029 9.17238L8.286 15.2726C8.678 15.6721 9.32154 15.6721 9.71354 15.2726L15.6992 9.17238L16.612 8.24214C17.0521 7.79391 17.4011 7.26171 17.6393 6.67596C17.8774 6.0902 18 5.46237 18 4.82833C18 4.19428 17.8774 3.56645 17.6393 2.9807C17.4011 2.39494 17.0521 1.86275 16.612 1.41452Z' fill='%23CF141F'/%3E%3C/svg%3E%0A");
    background: white;
    width: 40px;
    height: 40px;
    display: inline-flex;
    position: absolute;
    left: 8px;
    top: 6px;
    padding-top: 5px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.header-controls__btn2:hover {
    background: white;
    color: #CF141F;
}

.header-controls__btn2:hover::before {
    background: #CF141F;
    content: url("data:image/svg+xml,%0A%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.612 1.41452C16.1722 0.966073 15.65 0.610337 15.0752 0.367629C14.5005 0.124922 13.8844 0 13.2623 0C12.6401 0 12.0241 0.124922 11.4493 0.367629C10.8746 0.610337 10.3524 0.966073 9.91255 1.41452L9.71354 1.61733C9.32154 2.01683 8.678 2.01683 8.286 1.61733L8.08699 1.41452C7.19858 0.509117 5.99364 0.0004693 4.73725 0.000469309C3.48085 0.000469319 2.27591 0.509117 1.38751 1.41452C0.499101 2.31992 9.36088e-09 3.5479 0 4.82833C-9.36088e-09 6.10875 0.499101 7.33674 1.38751 8.24214L2.30029 9.17238L8.286 15.2726C8.678 15.6721 9.32154 15.6721 9.71354 15.2726L15.6992 9.17238L16.612 8.24214C17.0521 7.79391 17.4011 7.26171 17.6393 6.67596C17.8774 6.0902 18 5.46237 18 4.82833C18 4.19428 17.8774 3.56645 17.6393 2.9807C17.4011 2.39494 17.0521 1.86275 16.612 1.41452Z' fill='white'/%3E%3C/svg%3E%0A");
}

.header.fixed .header-controls__btn2 {
    box-shadow: 0px 7px 15px 0px #0000000A, 0px 27px 27px 0px #00000008, 0px 62px 37px 0px #00000005,
        0px 110px 44px 0px #00000003, 0px 171px 48px 0px #00000000, 0px 7px 15px 0px #0000000A,
        0px 0px 24px 4px #FFFFFFCC inset;
}


.button-red {
    border: 1px solid #CF141F;
    color: #CF141F;
    padding: 18px 40px;
    border-radius: 100px;
    padding-left: 65px;
    font-size: 14px;
    position: relative;
    display: inline-flex;
    line-height: normal;
    min-width: 330px;
    justify-content: center;
    transition: all .3s ease;
}

.button-red.button-red-alt {
    background: #CF141F;
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    border: none;
    color: white;
    font-family: 'eUkraine', sans-serif;
    display: flex;
    justify-content: space-between;
    min-width: 250px;
    padding-left: 20px;
}
.button-red.button-red-alt::before {
    content: url("data:image/svg+xml,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%2230%22%20y%3D%2230%22%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20transform%3D%22rotate(-180%2030%2030)%22%20fill%3D%22%23fff%22%20fill-opacity%3D%22.2%22%2F%3E%3Cpath%20d%3D%22M8%2015h13.536m-6.038%207L22%2015l-6.501-7%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    right: 8px;
    left: unset;
}   

.button-red::before {
    content: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.917736 12.0817L10.7436 2.25577M1.53371 1.81083L11.0808 1.91866L11.1886 11.4657' stroke='%23CF141F' stroke-width='2'/%3E%3C/svg%3E%0A");
    background: #CF141F14;
    width: 40px;
    height: 40px;
    display: inline-flex;
    position: absolute;
    left: 8px;
    top: 8px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.button-red:hover {
    background: #CF141F;
    color: white;
}

.button-red:hover::before {
    filter: brightness(0) invert(1);
}


/*

Footer

*/

.footer {
    background: #1F2634;
    padding: 40px;
    padding-top: 100px;
    color: white;
    position: relative;
}

.footer::before {
    content: "";
    height: 24px;
    width: 100%;
    background: var(--bg-color);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-lang {
    font-size: 14px;
    background: #FFFFFF1A;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-top: 40px;
    width: fit-content;
    padding: 15px 20px;
}

.footer-row {
    display: flex;
    gap: 15px;
    margin-bottom: 110px;
}

.footer-row.last {
    margin-bottom: 32px;
}

.footer-row>* {
    width: calc(50% - 7.5px);
}

.footer-navs {
    display: flex;
    gap: 20px;
    flex: 1;
}

.footer-nav {
    flex: 1;
}

.footer-nav__title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF4D;
    margin-bottom: 30px;
}

.footer-nav li a {
    word-break: break-word;
    transition: all .3s ease-in-out;
}

.footer-nav li a:hover {
    color: #FFFFFF4D;
    cursor: pointer;
}


.footer-nav li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-other .footer-nav__title {
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF33;
}

.footer-contacts .footer-nav__title {
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF33;
}

.footer-contacts .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-contacts .footer-nav__item {
    background: #FFFFFF1A;
    padding: 14px 25px;
    border-radius: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .2s;
}

.footer-contacts .footer-nav__item:hover {
    background: #4D525E;
}

.footer-scrollback {
    background: #FFFFFF1A;
    padding: 15px 19px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

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

.footer-social a {
    width: 48px;
    height: 48px;
    background: #FFFFFF26;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.back-btn__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.back-btn__wrapper .back-btn {
    background: white;
    border: 1px solid #C6CEDC;
    min-width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.back-btn__wrapper .back-btn:hover {
    cursor: pointer;
}
.back-btn__wrapper .back-btn:nth-child(1) {
    z-index: 1;
}
.back-btn__wrapper .back-btn:nth-child(2) {
    padding: 0px 20px;
    margin-left: -10px;
}

.footer-copyright {
    color: #FFFFFF80;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 100%;
    border-top: 1px solid #FFFFFF33;
    padding-top: 32px;
    font-weight: 300;
}

.footer-row.cr {
    margin: 0;
    border-top: 1px solid #FFFFFF33;
    padding-top: 32px;
    padding-bottom: 32px;
    text-transform: uppercase;
    color: #FFFFFF80;
}

.mobile {
    display: none!important;
}

.header-main-mobile {
    display: none;
}

.global-swiper__navigation-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.global-swiper__navigation-button__prev, .global-swiper__navigation-button__next {
    background: white;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s;
}
.global-swiper__navigation-buttons > *.swiper-button-disabled {
    opacity: .5;
}

.header-controls__btn.search svg {
    width: 100%;
    height: 100%;
    padding: 18px;
    cursor: pointer;
}

.search-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
.search-wrapper .swiper {
    margin-left: 0px;
    margin-right: 0px;
    width: -webkit-fill-available;
}
.search-wrapper .loader {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid #0000001A;
    border-radius: 24px;
}
.search-wrapper .loader.hidden {
    display: none;
}
.search-header__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}
.search-input {
    background: #3E46550D;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    transition: .2s;
}
.search-input.active {
    outline: 2px solid #CF141F;
}
.search-input.active input {
    color: #CF141F;
}
.search-input svg {
    width: auto!important;
    height: auto!important;
    padding: 0px!important;
}
.search-input svg path {
    stroke: rgb(139, 144, 153)!important;
}
.search-input input {
    font-family: 'eUkraine';
}
.search-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-button {
    background: #3E46550D;
    color: #3E4655;
    padding: 0px 16px;
    height: 48px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: .2s;
    outline: 0px solid #3E46551A;
    cursor: pointer;
}
.search-button:hover {
    outline: 2px solid #3E46551A;
}
.search-button.active {
    background: #FDF3F4;
    color: #CF141F;
}
.search-notfound {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 99px;
    border: 1px solid #0000001A;
    border-radius: 12px;
}
.search-notfound.hidden {
    display: none;
}


.search-vacancies__wrapper .vacancies-item {
    border: 1px solid #0000001A;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__title {
    font-size: 20px;
    font-weight: 500;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__close-caption {
    color: #00000066;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__close {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__footer {
    display: flex;
    justify-content: space-between;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__footer svg {
    width: 69px;
    height: 48px;
    padding: 0;
}
.search-vacancies__wrapper .vacancies-item .vacancies-item__footer svg path {
    stroke: rgb(207, 20, 31)!important;
}
.search-projects__wrapper .projects-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    height: auto;
    justify-content: flex-start;
}
.search-projects__wrapper .projects-item .projects-item__info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 15px;
    gap: 16px;
}
.search-projects__wrapper .projects-item .projects-item__subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #00000099;
    word-wrap: break-word;
}
.search-projects__wrapper .projects-item__logo {
    width: fit-content;
    height: 30px;
    object-fit: contain;
}
.search-projects__wrapper .projects-item__period {
    font-size: 14px;
    color: #a1a1a1;
}

.search-reports__wrapper {
    margin-top: 24px;
    display: flex;
    gap: 8px;
}
.search-reports__wrapper.hidden {
    display: none;
}
.search-reports__wrapper .materials-item {
    width: 213px;
    height: auto;
    border: 1px solid #0000001A;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.search-reports__wrapper .materials-item__title {
    font-size: 40px;
    font-family: 'Oswald';
    font-weight: 400;
    line-height: 40px;
}
.search-reports__wrapper .materials-item__type {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.search-reports__wrapper .materials-item__icon {
    width: 20px!important;
    height: 20px!important;
}

.search-documents__wrapper {
    display: flex;
    gap: 8px;
}
.search-documents__wrapper.hidden {
    display: none;
}
.search-documents__wrapper .documents-item {
    border: 1px solid #0000001A;
    padding: 24px;
    border-radius: 24px;
    width: 213px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-notfound__mobile-icon {
    display: none;
}

.search-wrapper .global-swiper__navigation-buttons {
    margin-top: 24px;
    margin-bottom: 24px;
}
.search-wrapper .global-swiper__navigation-button__prev, .global-swiper__navigation-button__next {
    border: 1px solid #0000001A;
}
.search-wrapper .global-swiper__navigation-button__prev, .global-swiper__navigation-button__next svg path,
.search-wrapper .header-controls__btn.search svg path {
    stroke: black!important;
} 

.search-documents__wrapper .documents-item__title {
    font-size: 14px;
}

.search-documents__wrapper .documents-item svg {
    width: 40px!important;
    height: 40px!important;
    padding: 0px!important;
}
.search-documents__wrapper .documents-item svg path {
    stroke: #949FB5!important;
}

.search-tenders__wrapper {
    margin-top: 24px;
    display: flex;
    gap: 8px;
}
.search-tenders__wrapper.hidden {
    display: none;
}
.search-tenders__wrapper svg {
    width: 40px!important;
    height: 40px!important;
    padding: 0px!important;
}
.search-tenders__wrapper svg path {
    stroke: #949FB5!important;
}

.search-tenders__wrapper .accordion-item__main {
    cursor: pointer;
}

.search-tenders-swiper .accordion-item__main,
.search-tenders-swiper .accordion-item.active .accordion-item__content {
    border: 1px solid #0000001A;
    padding: 20px;
}
.search-tenders-swiper .accordion-item__title {
    max-width: 50%;
}
.search-tenders-swiper .header-controls__btn.search svg {
    width: 30px!important;
    height: 30px!important;
}
.search-tenders-swiper .swiper-slide {
    margin-right: 2px!important;
}
.search-tenders-swiper .accordion-item__content {
    display: flex;
}
.search-tenders-swiper .accordion-item.active .accordion-item__content {
    overflow-y: scroll;
    max-height: 380px;
}
.search-tenders-swiper .accordion-item__content svg {
    width: 20px!important;
    height: 20px!important;
}
.search-tenders-swiper .accordion-item.active .accordion-item__content p {
    font-size: 14px;
}

.search-news__wrapper {
    display: flex;
    gap: 8px;
}
.search-news__wrapper.hidden {
    display: none;
}
.search-news__wrapper .news-posts__item {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.search-news__wrapper .news-posts__item .news-posts__item-image {
    width: auto;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.search-news__wrapper .news-posts__item .news-posts__item-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}
.search-news__wrapper .news-posts__item .news-posts__item-date {
    font-size: 14px;
    opacity: .5;
}

.socialglobal-social__wrapper {
    margin-top: 200px;
}

.socialglobal-social {
    background: #CF141F;
    border-radius: 24px;
    color: white;
    position: relative;
    box-shadow: 0px 0px 64px 2px #FFFFFFB2 inset;
    margin-bottom: 120px;
}

.socialglobal-social__content {
    padding: 64px 0;
    padding-left: 550px;
    padding-right: 155px;
}

.socialglobal-social__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    max-width: 70%;
}

.socialglobal-social__img {
    position: absolute;
    width: 250px;
    height: 594px;
    left: 130px;
    top: -90px;
}

.socialglobal-social__items {
    display: flex;
    align-items: center;
    margin-top: 100px;
    gap: 8px;
    flex-wrap: wrap;
}

.socialglobal-social__item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #FFFFFF4D;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 120px;
    transition: all .3s ease-in-out;
}

.socialglobal-social__item:hover {
    border-color: white;
    background: white;
    color: black;
}

.socialglobal-social__item:hover .socialglobal-social__item-icon {
    filter: brightness(0) saturate(100%) invert(30%) sepia(41%) saturate(374%) hue-rotate(180deg) brightness(94%) contrast(88%);
}

.socialglobal-social__item-title {
    font-size: 14px;
}

/* global */

.tenders-item__status, .accordion-item__status {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: .5;
}

@media (max-width: 768px) {
    .post-single__content:has(p), .post-single__content {
        width: 100%;
    }
    .back-btn__wrapper .back-btn:nth-child(2) {
        display: none;
    }
    .header-wrapper {
        padding: 0px 4px;
        gap: 5px;
        height: 0px;
        margin-top: 40px;
    }
    .header-nav {
        display: none;
    }
    .header-controls__btn, .header-main {
        border-radius: 24px;
    }
    .header-main {
        height: 56px;
        display: flex;
        justify-content: center;
        border-radius: 24px;
    }
    .header-controls {
        padding: 0px;
    }
    .header-controls__btn2.header-donate {
        display: none;
    }
    .header-controls__btn.search {
        display: none;
    }
    .header-controls__btn.search.mobile {
        position: absolute;
        display: flex!important;
        top: -110px;
        left: 0;
        width: 100%;
    }
    .header-controls__btn.search.mobile .header-nav__dropdown {
        position: absolute;
        margin: 0;
        top: 180px;
        width: 100%;
        background: #1f2634;
        box-shadow: none;
        padding: 0px 4px;
    }
    .header-controls__btn.search.mobile .header-nav__dropdown::before {
        display: none;
    }
    .header-controls__btn.search.mobile .search-wrapper,
    .header-controls__btn.search.mobile .search-header__wrapper {
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .header-controls__btn.search.mobile .search-input {
        position: absolute;
        bottom: 18px;
        background: #FFFFFF1A;
        border-radius: 24px;
        width: 80%;
        backdrop-filter: blur(20px);
        z-index: 9999;
        transition: .2s;
    }
    .header-controls__btn.search.mobile .search-input.hidden {
        opacity: 0;
        pointer-events: none;
    }
    .header-controls__btn.search.mobile .search-buttons {
        position: absolute;
        top: 0;
        overflow: scroll;
    }
    .header-controls__btn.search.mobile .search-buttons::-webkit-scrollbar {
        display: none;
    }
    .header-controls__btn.search.mobile .search-button {
        background: #FFFFFF1A;
        color: white;
    }
    .header-controls__btn.search.mobile .search-button.active {
        background: #CF141F33;
        color: #FF6F78;
    }
    .header-controls__btn.search.mobile .global-swiper__navigation-buttons {
        display: none;
    }
    .header-controls__btn.search.mobile .search-documents-swiper,
    .header-controls__btn.search.mobile .search-reports-swiper,
    .header-controls__btn.search.mobile .search-tenders-swiper,
    .header-controls__btn.search.mobile .search-news-swiper,
    .header-controls__btn.search.mobile .search-vacancies-swiper,
    .header-controls__btn.search.mobile .search-projects-swiper {
        position: absolute;
        top: 70px;
        height: 80%;
        overflow-y: scroll;

        &::after {
            content: '';
            width: 100%;
            position: fixed;
            background: linear-gradient(0deg, #1f2634, transparent);
            z-index: 99;
            height: 10%;
            bottom: 6%;
            pointer-events: none;
        }
    }
    .header-controls__btn.search.mobile .accordion-item.active .accordion-item__content {
        max-height: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .search-projects__wrapper .projects-item {
        background: white;
    }
    .header-controls__btn.search.mobile .search-news-swiper .news-posts__item {
        color: white;
        border-bottom: 1px solid #363c49;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .search-documents__wrapper .documents-item {
        background: white;
        border: none;
        display: flex;
        flex-direction: row;
        padding: 16px;
        border-radius: 16px;
        height: fit-content;
    }
    .search-vacancies__wrapper .vacancies-item {
        padding: 20px!important;
    }
    .search-vacancies__wrapper .vacancies-item .vacancies-item__title {
        font-size: 15px;
    }
    .search-vacancies__wrapper .vacancies-item .vacancies-item__close {
        font-size: 12px;
    }
    .search-reports__wrapper .materials-item {
        background: white;
    }
    .search-wrapper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        transform: unset!important;
        gap: 15px;
        min-height: 110%;
    }
    /* .search-wrapper .swiper-wrapper {
        padding-bottom: 80%;
    } */
    .swiper-slide {
        height: auto!important;
    }
    .header-mobile__navigator.mobile {
        display: flex!important;
        align-items: center;
        justify-content: center;
    }
    .header-main-mobile {
        display: flex!important;
        position: fixed;
        overflow: scroll;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1F2634;
        z-index: 99;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        transition: .2s;
    }
    .header-main-mobile.locked {
        overflow: hidden;
    }
    .header-main-mobile.hidden {
        opacity: 0;
        pointer-events: none;
    }
    .header-logo-mobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 4px;
        padding-right: 4px;
    }
    .header-logo-mobile .mobile-header-logo {
        height: 25px;
    }
    .header-head__button {
        background: #363c49;
        width: 56px;
        height: 56px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: 'eUkraine';
        font-weight: 500;
        box-shadow: #0000000A 0px 0px 0px 0px;
    }
    .header-nav-mobile {
        padding-top: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 32px;
        line-height: normal;
        gap: 16px;
        font-family: 'Oswald';
        font-weight: 500;
        text-transform: uppercase;
        color: white;
    }
    .header-accordion__wrapper {
        padding-top: 72px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    .header-accordion__item-wrapper {
        width: 100%;
    }
    .header-accordion__wrapper .header-accordion__item {
        border-top: 1px solid #FFFFFF1A;
        width: 100%;
        padding-top: 16px;
        padding-bottom: 16px;
        color: #FFFFFFB2;
        font-size: 24px;
        font-weight: 500;
        font-family: 'Oswald';
        display: flex;
        justify-content: space-between;
        padding-right: 10px;
    }
    .header-accordion__content {
        padding-bottom: 24px;
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        font-family: 'Oswald';
        font-size: 20px;
        gap: 16px;
        transition: .4s;
    }
    .header-accordion__content.hidden {
        height: 0px;
        padding: 0;
        opacity: 0;
        pointer-events: none;
    }
    .header-accordion__wrapper .header-accordion__item:last-child {
        border-bottom: 1px solid #FFFFFF1A;
        padding-bottom: 20px;
    }
    .header-accordion__wrapper .header-accordion__item::after {
        content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJtMyAyMyAxMC0xMEwzIDMiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW9wYWNpdHk9Ii41IiBzdHJva2Utd2lkdGg9IjQiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz4KPC9zdmc+Cg==");
    }
    .header-nav-mobile .header-nav__link.active {
        color: #F53A45;
    }
    .header-logo-mobile img {
        filter: invert(1);
    }
    .header-report__wrapper {
        padding-top: 16px;
        color: white;
        font-family: 'Oswald';
        font-size: 20px;
        padding-bottom: 100px;
    }
    .header-footer {
        display: flex;
        position: fixed;
        bottom: 16px;
        gap: 8px;
    }
    .header-footer .header-controls__btn.search,
    .header-footer .header-controls__btn2.header-donate {
        display: block!important;
    }
    .search-notfound {
        position: absolute;
        width: auto;
        top: 50px;
        height: fit-content;
        color: #FFFFFF99;
        border-color: #FFFFFF1A;
        margin-left: 20px;
        margin-right: 20px;
        display: flex;
        text-align: center;
        font-size: 14px;
        padding: 40px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .search-wrapper svg path {
        stroke: #FFFFFFB2!important;
    }
    .search-tenders__wrapper svg path {
        stroke: #949FB5 !important;
    }
    .header-footer__button {
        background: #FFFFFF1A;
        width: 56px;
        height: 56px;
        border-radius: 24px;
        backdrop-filter: blur(24px);
    }
    .mobile {
        display: block;
    }
    .search-notfound__mobile-icon {
        display: block!important;
        width: auto!important;
        height: auto!important;
        padding: 0!important;
    }
    .container {
        padding: 0px 10px;
    }
    .header-main {
        margin-left: 0px;
        display: flex;
        flex-direction: column;
    }
    .footer {
        padding: 80px 0px;
    }
    .footer-row {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-lang {
        margin-top: 20px;
    }
    .footer-row .footer-navs {
        display: grid;
        flex-wrap: nowrap;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .footer-nav__title {
        border: none!important;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 40px;
        margin-top: 30px;
        border-top: 1px solid #FFFFFF33;
    }
    .footer-contacts .footer-nav {
        justify-content: center;
    }
    .footer-row.last {
        display: flex;
        align-items: center;
        border-top: 1px solid #FFFFFF33;
        padding-top: 50px;
        gap: 50px;
    }
    .footer-row.last div {
        display: flex;
        justify-content: center;
    }
    .footer-row>* {
        width: 100%;
    }
    .footer-social {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-copyright {
        border: none;
        display: flex;
        justify-content: center;
    }

    .footer-other.mobile {
        display: block!important;
    }
    .footer-other:not(.mobile) {
        display: none;
    }

    .footer-row.cr {
        display: flex;
        align-items: center;
        padding-top: 64px;
        gap: 16px;
        text-transform: uppercase;
        text-align: center;
        margin: 0;
        color: #FFFFFF80;
    }

    .popup {
        width: 98%!important;
    }
    .button-red.button-red-alt {
        width: -webkit-fill-available;
    }
    .popup-wrapper .popup-header_title {
        text-align: center;
    }
    .popup-wrapper .popup-header_title .popup-title {
        font-size: 24px;
    }
    .popup-wrapper .popup-header_title .popup-description {
        font-size: 14px;
    }
    .popup-header_section.title-section {
        width: 100%;
    }
    .popup-wrapper .popup-content {
        max-height: 400px;
    }
    .popup-wrapper .popup-header .popup-header_switches {
        justify-content: center;
    }

    .socialglobal-social {
        margin-bottom: 0px;
    }
    .socialglobal-social__content {
        padding: 0px;
    }
    .socialglobal-social__img {
        width: 135px;
        height: 289px;
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%,-50%);
    }
    .socialglobal-social__content {
        height: 250px;
    }
    .socialglobal-social::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background: linear-gradient(0deg, #CF141F 30%, transparent 80%);
        border-radius: 24px;
    }
    .socialglobal-social {
        margin-top: 138px;
    }
    .socialglobal-social__title {
        font-size: 24px;
        width: 100%;
        text-align: center;
        bottom: -50px;
        z-index: 1;
        height: 100px;
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%,50%);
    }
    .socialglobal-social__items:not(.mobile) {
        display: none;
    }
    .socialglobal-social__items.mobile {
        display: flex!important;
        padding: 0px 10px;
        margin: 0px;
        margin-top: 20px;
        place-items: center;
        gap: 8px;
        justify-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .donate-partners__wrapper {
        margin: 120px 0px;
    }
    .socialglobal-social__item {
        background: white;
        color: #475570;
        min-width: 0px;
        width: 110px;
        height: 90px;
    }
    .socialglobal-social__item-icon {
        filter: brightness(0) saturate(100%) invert(30%) sepia(41%) saturate(374%) hue-rotate(180deg) brightness(94%) contrast(88%);
    }

    .post-single__content:has(p) {
        margin-top: 0px;
    }
    .post-single__title {
        font-size: 32px;
    }
    .post-single__content img {
        margin: 0px;
        width: 100%;
        height: auto;
    }
    .post-single__content blockquote::before {
        content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzOCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTcuNTMyIDMzLjV2LTguODk0aC0yLjU1NWMtMS45NzMgMC0zLjIzNi0uNTEtNC4wMy0xLjQ5NC0uODA4LTEtMS4yMTYtMi41OTUtMS4yMjQtNC45NzJoNy44MVYuNUguNXYxNS44NmMwIDUuNzMgMS40MDYgMTAuMDIzIDMuOTI3IDEyLjg5IDIuNTI5IDIuODc2IDYuMTIxIDQuMjUgMTAuMzQ1IDQuMjV6bTE5Ljk2OCAwdi04Ljg5NGgtMi41NTZjLTEuOTcyIDAtMy4yMzUtLjUxLTQuMDI5LTEuNDk0LS44MDctMS0xLjIxNi0yLjU5NC0xLjIyNS00Ljk3Mmg3LjgxVi41SDIwLjQ2OHYxNS44NmMwIDUuNzI5IDEuNDA2IDEwLjAyMyAzLjkyNyAxMi44OSAyLjUyOSAyLjg3NiA2LjEyMSA0LjI1IDEwLjM0NCA0LjI1eiIgZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjQ0YxNDFGIi8+PC9zdmc+");
        margin-left: 35px;
        width: 36px;
        height: 32px;
        display: flex;
    }
    .post-single__content blockquote {
        width: 100%;
        margin: 0;
        padding: 24px;
        padding-top: 30px;
    }
    .post-single__content blockquote p {
        font-size: 14px;
    }
}