* {
    color: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-style: inherit;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body, html {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2D3142;
    width: 100%;
    overflow-x: hidden;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;   
}
.site-footer {
    margin-top: auto;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.2;
    font-weight: 500;
}

h1,h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
h3,h4,h5,h6 {
    margin: 1.5rem 0 1rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.125rem;
}
h6 {
    font-size: 1rem;
}
strong, b {
    font-weight: 500;
}
i, em {
    font-style: italic;
}
img, svg, iframe {
    max-width: 100%;
    height: auto;
}
.container {
    --bs-gutter-x: 1.25rem;
}
.row {
    --bs-gutter-x: 2.5rem;
}
.btn {
    padding: 0.875rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    border: none;
    border-radius: 0.5rem;
    width: fit-content;
    transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    cursor: pointer;
}
.btn-blue {
    background-color: #0D47A1;
    color: #FFF;
}
.btn-blue:hover {
    background-color: #5B7553;
}
.site-header {
    background-color: #FFF;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #D0D6D8;
    padding: 1rem 0;
}
.site-header.menu-active {
    background-color: #F0F8FE;
    border-color: #F0F8FE;
}
.site-header--logo-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.site-header--logo-col .site-logo {
    width: 142px;
    display: inline-flex;
}
.site-header--mobile-menu-toggler {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 2.25rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background-color: #D1EAFF;
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
    padding: 7px 9px;
}
.menu-active .site-header--mobile-menu-toggler {
    justify-content: center;
}
.site-header--mobile-menu-toggler span {
    height: 0.125rem;
    background-color: #0D47A1;
    width: 1.25rem;
    border-radius: 2px;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
}
.site-header--mobile-menu-toggler span:nth-child(2) {
    width: 0.9375rem;
}
.menu-active .site-header--mobile-menu-toggler span:nth-child(2) {
    opacity: 0;
}
.menu-active .site-header--mobile-menu-toggler span {
    position: absolute;
    transform: rotate(45deg);
}
.menu-active .site-header--mobile-menu-toggler span:nth-child(3) {
    transform: rotate(-45deg);
}
.site-header--nav-col {
    position: absolute;
    height: calc(100vh - 61px);
    top: 61px;
    background-color: #F0F8FE;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    overflow: auto;
    transform: translateX(110%);
    transition: transform 0.75s ease;
    width: min(100%, 390px);
    right: 0;
}
.menu-active .site-header--nav-col {
    transform: translateX(0px);
}
.site-header--nav {
    margin-bottom: 2.5rem;
}
.site-header--nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    text-align: center;
    row-gap: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
}
.site-header--nav ul.sub-menu {
    margin-top: 1.5rem;
}
.site-header--nav ul a {
    text-decoration: none;
    transition: color 0.35s ease;
}
.site-header--buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    margin-bottom: 1.25rem;
}
.site-header--lang-switcher--glob--desctop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0;
}
.site-header--lang-switcher--glob--text {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.625rem;
    margin-right: 0.75rem;
}
.site-header--lang-switcher--glob--arrow {
    display: inline-flex;
}
.site-header--lang-switcher:hover .site-header--lang-switcher--langs {
    display: block;
    margin-top: 0.5rem;
}
.site-header--lang-switcher--langs ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    box-shadow: 2px 6px 10px 0px #2D314226;
    background-color: #FFFFFF;
    border-radius: 0.625rem;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    row-gap: 1.25rem;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
}
.site-header--lang-switcher--langs .wpml-ls-item-uk {
    order: -1;
}
.site-header--lang-switcher--langs ul a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.35s ease-in-out;
    padding-bottom: 0.25rem;
}
.site-header--lang-switcher--langs ul a:hover, 
.wpml-ls-current-language a {
    color: #5B7553;
    border-bottom: 1px solid #5B7553;
}

.site-footer {
    background-color: #1A181B;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #FFF;
}
.site-footer--row {
    row-gap: 2.5rem;
}
.site-footer--logo-image {
    margin-bottom: 1.25rem;
}
.site-footer--logo-image .site-logo {
    display: flex;
}
.site-footer--nav--menu-wrapp {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
}
.site-footer a {
    text-decoration: none;
    transition: opacity 0.35s ease;
}
.site-footer a:hover {
    opacity: 0.6;
}
.site-footer--contacts-col--body {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
}
.site-footer--contacts-col--title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.site-footer--contacts-col--item {
    border: 2px solid #FFF;
    border-radius: 0.5rem;
    padding: 0.875rem 1.375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
}
.site-footer--contacts-col--item svg {
    min-width: 1.5rem;
}
.site-footer--mobile-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 1.25rem;
}
.page-breadcrumbs {
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #858c8e;
    overflow-x: auto;
}
.page-breadcrumbs > span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow: auto;
    width: max-content;
}
.page-breadcrumbs a {
    text-decoration: unset;
}
.page-breadcrumbs .breadcrumb_last {
    color: #2D3142;
}
.single-article--title {
    text-align: center;
}
.single-article--content p, 
.single-article--content ul, 
.single-article--content img, 
.single-article--content figure, 
.single-article--content iframe, 
.single-article--content ol, 
.single-article--content blockquote {
    margin-bottom: 1.5rem;
}
.single-article--content blockquote * {
    margin: 0;
}
blockquote {
    margin-left: calc(var(--bs-gutter-x) * -1);
    margin-right: calc(var(--bs-gutter-x) * -1);
    padding: 1rem var(--bs-gutter-x, 1.25rem);
    font-weight: 500;
    line-height: 1.2;
    background-color: #D1EAFF;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}
ul:not([class]) {
    list-style-type: none;
}
ul:not([class]) > li {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}
ul:not([class]) > li::before {
    content: "";
    display: inline-flex;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.70953 7.29199L14.293 12.2928L9.70953 17.292" stroke="%230D47A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
ul:not([class]) > li:not(:last-child),
ol:not([class]) > li:not(:last-child) {
    margin-bottom: 0.5rem;
}
ol:not([class]) {
    margin-left: 1.25rem;
}
.single-article--container {
    margin-bottom: 1.75rem;
}
.single-article--publish-date {
    color: #858C8E;
}
@media screen and (min-width: 576px) {
    .container {
        --bs-gutter-x: 0.75rem;
    }
    .row {
        --bs-gutter-x: 1.5rem;
    }
    blockquote {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0.625rem;
    }
}
@media screen and (min-width: 768px ) {
    .site-footer--mobile-copyright {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media screen and (min-width: 992px ) {
    .site-header {
        padding: 1.125rem 0 1.0625rem;
    }
    .site-header--logo-col {
        padding-right: 0;
    }
    .site-header--logo-col .site-logo {
        width: fit-content;
    }
    .site-header--nav-col {
        position: static;
        height: auto;
        width: 83.3333333333%;
        transform: unset;
        background-color: transparent;
        padding-top: unset;
        padding-bottom: unset;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        top: unset;
        right: unset;
        overflow: visible;
    }
    .site-header--nav {
        margin: 0;
        width: calc(100% - 306px);
    }
    .site-header--nav > ul {
        flex-direction: row;
        justify-content: flex-end;
        gap: 3.505%;
        font-size: 1rem;
        font-weight: 500;
        flex-wrap: wrap;
    }
    .site-header--nav ul.sub-menu {
        display: none;
    }
    .site-header--buttons {
        margin: 0 0 0 2.975%;
    }
    .site-header--buttons .btn {
        font-size: 1.125rem;
        line-height: 1.2222225;
        padding: 9px 20px;
        min-width: 236px;
    }
    .site-header--lang-switcher {
        margin-left: 6px;
        position: relative;
        width: 2.5rem;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #0D47A1;
        background-color: #FFF;
        transition: background-color 0.35s ease-in-out;
        border-radius: 0.375rem;
    }
    .site-header--lang-switcher:hover {
        background-color: #F0F8FE;
    }
    .site-header--lang-switcher::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 20px;
        top: 100%;
        left: 0;
    }
    .site-header--lang-switcher--langs {
        position: absolute;
        top: calc(100% + 17px);
        right: 0;
        margin: 0 !important;
        transition: 0.35s ease-in-out allow-discrete;
        opacity: 1;
        @starting-style {
            opacity: 0;
        }
    }
    .site-header--lang-switcher:not(:hover) .site-header--lang-switcher--langs {
        opacity: 0;
    }
    .site-header--lang-switcher--langs ul {
        padding: 1rem 1.25rem 1.25rem;
        border-radius: 0 0 0.625rem 0.625rem;
        font-size: 1.125rem;
        font-weight: 400;
        text-align: left;
        row-gap: 0.75rem;
        width: fit-content;
    }
    .site-header--lang-switcher--langs ul a {
        border-bottom: none !important;
    }
    .site-header a:not(.site-logo) {
        transition: color 0.35s ease-in-out;
        padding-bottom: 0.25rem;
        position: relative;
    }
    .site-header a:not(.site-logo)::before {
        content: "";
        position: absolute;
        top: calc(100% - 4px);
        width: 0%;
        height: 1px;
        left: 50%;
        opacity: 0;
        background-color: #5B7553;
        transition: width 0.35s ease-in-out, top 0.35s ease-in-out, opacity 0.35s ease-in-out;
        transform: translateX(-50%);
    }
    .site-header a:not(.site-logo):hover {
        color: #5B7553;
    }
    .site-header .menu-item:hover > a:not(.site-logo)::before,
    .wpml-ls-current-language a:not(.site-logo)::before, 
    .site-header a:not(.site-logo):hover::before {
        opacity: 1;
        width: 100%;
        top: 100%;
    }
    .site-header .menu-item-has-children {
        position: relative;
        display: flex;
        align-items: center;
    }
    .site-header .menu-item-has-children > span {
        display: inline-flex;
        width: 1rem;
        min-width: 1rem;
        height: 1rem;
        margin-left: 0.25rem;
        background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.66667 6.66699L8.00055 9.72033L11.3333 6.66699" stroke="%232D3142" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        margin-bottom: 0.25rem;
        transition: 0.35s ease-in-out;
    }
    .site-header .menu-item-has-children:hover > span {
        background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.66667 6.66699L8.00055 9.72033L11.3333 6.66699" stroke="%235B7553" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        transform: rotateX(180deg);
    }
    .site-header .menu-item-has-children::after {
        position: absolute;
        content: "";
        height: 25px;
        width: 100%;
        top: 100%;
    }
    .site-header--nav ul.sub-menu {
        position: absolute;
        top: calc(100% + 25px);
        margin: 0;
        padding: 1rem 1.25rem 1.25rem;
        background-color: #FFF;
        box-shadow: 2px 6px 10px 0px #2D314226;
        border-radius: 0 0 0.625rem 0.625rem;
        width: max-content;
        text-align: left;
        font-size: 1.125rem;
        align-items: flex-start;
        row-gap: 0.75rem;
        font-weight: 400;
        right: 0;
        transition: 0.35s ease-in-out allow-discrete;
        opacity: 1;
        @starting-style {
            opacity: 0;
        }
    }
    .site-header .menu-item-has-children:not(:hover) > ul.sub-menu {
        opacity: 0;
    }
    .site-header .menu-item-has-children:hover > ul.sub-menu {
        display: flex;
    }
    .site-footer {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .site-footer--logo-col--body {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .site-footer--logo--copyright {
        margin-top: auto;
        flex-direction: column;
        row-gap: 0.75rem;
    }
    .site-footer--nav--menu-wrapp {
        gap: 1.25rem 1.5rem;
        width: 252px;
        max-width: 100%;
        margin: 0 auto;
        grid-template-columns: repeat(auto-fit, minmax(114px, 1fr));
    }
    .page-breadcrumbs {
        margin-top: 1.75rem;
        margin-bottom: 1.5rem;
    }
    .single-article--container {
        margin-bottom: 6.25rem;
    }
}
@media screen and (min-width: 1200px ) {
    .site-header--nav > ul {
        font-size: 1.125rem;
    }
    .container {
        max-width: 1164px;
    }
    .single-article--container {
        max-width: 970px;
    }
}
@media screen and (min-width: 1400px ) {
    .site-header--container {
        max-width: 1256px;
    }
}