body.oc-loading,
body.oc-loading *,
body.wn-loading,
body.wn-loading * {
    cursor: wait !important;
}

.stripe-loading-indicator {
    height: 5px;
    background: 0 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2000;
}

.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
    height: 5px;
    display: block;
    background: #0090c0;
    position: absolute;
    -webkit-box-shadow: inset 0 1px 1px -1px #fff, inset 0 -1px 1px -1px #fff;
    box-shadow: inset 0 1px 1px -1px #fff, inset 0 -1px 1px -1px #fff;
}

.stripe-loading-indicator .stripe {
    width: 100%;
    -webkit-animation: wn-infinite-loader 60s linear;
    animation: wn-infinite-loader 60s linear;
}

.stripe-loading-indicator .stripe-loaded {
    width: 100%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
}

.stripe-loading-indicator.loaded {
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    -o-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.stripe-loading-indicator.loaded .stripe {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.stripe-loading-indicator.loaded .stripe-loaded {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.stripe-loading-indicator.hide {
    display: none;
}

body>p.flash-message {
    position: fixed;
    width: 500px;
    left: 50%;
    top: 13px;
    margin-left: -250px;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px 10px 15px;
    z-index: 10300;
    word-wrap: break-word;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
    text-align: center;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
    border-radius: 3px;
}

body>p.flash-message.fade {
    opacity: 0;
    -webkit-transition: all 0.5s, width 0s;
    -o-transition: all 0.5s, width 0s;
    transition: all 0.5s, width 0s;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

body>p.flash-message.fade.in {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

body>p.flash-message.success {
    background: #8da85e;
}

body>p.flash-message.error {
    background: #c30;
}

body>p.flash-message.warning {
    background: #f0ad4e;
}

body>p.flash-message.info {
    background: #5fb6f5;
}

body>p.flash-message button.close {
    float: none;
    position: absolute;
    right: 10px;
    top: 8px;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.2;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    outline: 0;
}

body>p.flash-message button.close:focus,
body>p.flash-message button.close:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
}

@media (max-width: 768px) {
    body>p.flash-message {
        left: 10px;
        right: 10px;
        top: 10px;
        margin-left: 0;
        width: auto;
    }
}

[data-request][data-request-validate] [data-validate-error]:not(.visible),
[data-request][data-request-validate] [data-validate-for]:not(.visible) {
    display: none;
}

a.oc-loading:after,
a.wn-loading:after,
button.oc-loading:after,
button.wn-loading:after,
span.oc-loading:after,
span.wn-loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.4em;
    height: 1em;
    width: 1em;
    -webkit-animation: wn-rotate-loader 0.8s infinite linear;
    animation: wn-rotate-loader 0.8s infinite linear;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0.5;
}

@-webkit-keyframes wn-rotate-loader {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes wn-rotate-loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes oc-rotate-loader {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes oc-rotate-loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wn-infinite-loader {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    10% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    20% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    30% {
        -webkit-transform: translateX(-12.5%);
        transform: translateX(-12.5%);
    }
    40% {
        -webkit-transform: translateX(-6.25%);
        transform: translateX(-6.25%);
    }
    50% {
        -webkit-transform: translateX(-3.125%);
        transform: translateX(-3.125%);
    }
    60% {
        -webkit-transform: translateX(-1.5625%);
        transform: translateX(-1.5625%);
    }
    70% {
        -webkit-transform: translateX(-0.78125%);
        transform: translateX(-0.78125%);
    }
    80% {
        -webkit-transform: translateX(-0.39063%);
        transform: translateX(-0.39063%);
    }
    90% {
        -webkit-transform: translateX(-0.19531%);
        transform: translateX(-0.19531%);
    }
    100% {
        -webkit-transform: translateX(-0.09766%);
        transform: translateX(-0.09766%);
    }
}

@keyframes wn-infinite-loader {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    10% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    20% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    30% {
        -webkit-transform: translateX(-12.5%);
        transform: translateX(-12.5%);
    }
    40% {
        -webkit-transform: translateX(-6.25%);
        transform: translateX(-6.25%);
    }
    50% {
        -webkit-transform: translateX(-3.125%);
        transform: translateX(-3.125%);
    }
    60% {
        -webkit-transform: translateX(-1.5625%);
        transform: translateX(-1.5625%);
    }
    70% {
        -webkit-transform: translateX(-0.78125%);
        transform: translateX(-0.78125%);
    }
    80% {
        -webkit-transform: translateX(-0.39063%);
        transform: translateX(-0.39063%);
    }
    90% {
        -webkit-transform: translateX(-0.19531%);
        transform: translateX(-0.19531%);
    }
    100% {
        -webkit-transform: translateX(-0.09766%);
        transform: translateX(-0.09766%);
    }
}

@-webkit-keyframes oc-infinite-loader {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    10% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    20% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    30% {
        -webkit-transform: translateX(-12.5%);
        transform: translateX(-12.5%);
    }
    40% {
        -webkit-transform: translateX(-6.25%);
        transform: translateX(-6.25%);
    }
    50% {
        -webkit-transform: translateX(-3.125%);
        transform: translateX(-3.125%);
    }
    60% {
        -webkit-transform: translateX(-1.5625%);
        transform: translateX(-1.5625%);
    }
    70% {
        -webkit-transform: translateX(-0.78125%);
        transform: translateX(-0.78125%);
    }
    80% {
        -webkit-transform: translateX(-0.39063%);
        transform: translateX(-0.39063%);
    }
    90% {
        -webkit-transform: translateX(-0.19531%);
        transform: translateX(-0.19531%);
    }
    100% {
        -webkit-transform: translateX(-0.09766%);
        transform: translateX(-0.09766%);
    }
}

@keyframes oc-infinite-loader {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    10% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    20% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    30% {
        -webkit-transform: translateX(-12.5%);
        transform: translateX(-12.5%);
    }
    40% {
        -webkit-transform: translateX(-6.25%);
        transform: translateX(-6.25%);
    }
    50% {
        -webkit-transform: translateX(-3.125%);
        transform: translateX(-3.125%);
    }
    60% {
        -webkit-transform: translateX(-1.5625%);
        transform: translateX(-1.5625%);
    }
    70% {
        -webkit-transform: translateX(-0.78125%);
        transform: translateX(-0.78125%);
    }
    80% {
        -webkit-transform: translateX(-0.39063%);
        transform: translateX(-0.39063%);
    }
    90% {
        -webkit-transform: translateX(-0.19531%);
        transform: translateX(-0.19531%);
    }
    100% {
        -webkit-transform: translateX(-0.09766%);
        transform: translateX(-0.09766%);
    }
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient( 180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
     :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[data-bs-original-title],
abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:hover {
    color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

@font-face {
    font-family: mariupol;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Mariupol-Regular.woff2) format("woff2");
}

@font-face {
    font-family: mariupol;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Mariupol-Medium.woff2) format("woff2");
}

@font-face {
    font-family: mariupol;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Mariupol-Bold.woff2) format("woff2");
}

::-webkit-input-placeholder {
    color: #666;
}

::-moz-placeholder {
    color: #666;
}

:-ms-input-placeholder {
    color: #666;
}

::-ms-input-placeholder {
    color: #666;
}

::placeholder {
    color: #666;
}

::-moz-selection {
    background-color: #00a023;
    color: #fff;
}

::selection {
    background-color: #00a023;
    color: #fff;
}

input,
textarea {
    outline: 0;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

body,
html {
    height: -webkit-fill-available;
    height: 100%;
}

body {
    font-family: mariupol, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    min-width: 320px;
    position: relative;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    overflow-y:scroll;
}

@media (max-width: 1499.98px) {
    body {
        font-size: 18px;
    }
}

body.open-nav {
    overflow: hidden;
}

a {
    color: inherit;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    white-space: normal;
}

a:hover {
    color: #00a023;
}

h1 {
    font-size: 64px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 36px;
    }
}

h2 {
    font-size: 48px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 36px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    h3 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 28px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    h4 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    h4 {
        font-size: 20px;
    }
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.barba-loader {
    position: fixed;
    z-index: 9999;
    height: calc(100vh - 100px);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 100px;
    left: 0;
    margin: 0;
    pointer-events: none;
    list-style: none;
    padding: 0;
}

@media (max-width: 575.98px) {
    .barba-loader {
        top: 0;
        height: 100vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.barba-loader li {
    width: 33.333%;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    list-style: none;
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .barba-loader li {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .barba-loader li {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        height: 100%;
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .barba-loader li:last-child {
        display: none;
    }
}

.button {
    display: block;
    text-decoration: none;
    padding: 16px 32px;
    border: 1px solid #00a023;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
    position: relative;
    color: #fff;
}

@media (max-width: 575.98px) {
    .button {
        width: 100%;
        text-align: center;
    }
}

.button:hover {
    color: #333;
    background-color: transparent;
    text-shadow: nthree;
}

.button:hover::before {
    left: auto;
    right: 0;
    width: 0%;
}

.button::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: "";
    color: #fff;
    background: #00a023;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.button--back {
    border: 1px solid #d1d1d1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
}

.button--back:hover {
    border: 1px solid #00a023;
    color: #333;
}

.button--back::before {
    content: none;
}

.button--back img {
    margin-left: 5px;
    margin-top: -4px;
}

.cases-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-auto-rows: 1fr;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
}

.cases-list__image {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cases-list__image img {
    max-width: 100%;
    height: auto;
}

.cases-list__link {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: block;
}

.cases-list__link:hover .cases-list__date,
.cases-list__link:hover .cases-list__title {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cases-list__link:hover .cases-list__description,
.cases-list__link:hover .cases-list__description__inner,
.cases-list__link:hover .cases-list__description__inner p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    max-height: 500px;
}

.cases-list__link:hover .cases-list__more::after {
    width: 100%;
}

.cases-list__shadow {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.cases-list__body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    padding: 100px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
}

.cases-list__title {
    font-size: 64px;
    font-size--webkit-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cases-list__date {
    display: block;
    margin-bottom: 25px;
    font-size: 20px;
    font-size--webkit-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cases-list__description {
    overflow: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    max-height: 0;
}

.cases-list__description__inner {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.cases-list__description__inner p {
    font-size: 20px;
    font-weight: 500;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: 0.8s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: 0.8s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1), 0.8s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 20px;
    line-height: 1.1;
}

.cases-list__description,
.cases-list__description__inner {
    transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1), 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
}

.cases-list__more {
    font-size: 20px;
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.cases-list__more::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #fff;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}

.contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 30px;
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .contact-grid {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .contact-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.contact__main__item {
    grid-column: 1/-1;
}

.contact__title {
    font-size: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 15px;
    line-height: 1;
    min-height: 60px;
}

@media (max-width: 991.98px) {
    .contact__title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .contact__title {
        min-height: auto;
        margin-bottom: 10px;
    }
}

.contact__link {
    display: block;
    text-decoration: none;
    opacity: 0.7;
    position: relative;
    padding-left: 25px;
}

@media (max-width: 575.98px) {
    .contact__link {
        font-size: 18px;
    }
}

.contact__link::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact__link--phone::before {
    background-image: url(/themes/mir/assets/images/phone.svg);
}

.contact__link--mail::before {
    background-image: url(/themes/mir/assets/images/mail.svg);
}

.grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-auto-rows: 1fr;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding-bottom: 100px;
}

.grid-container--three-col {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
}

.col-1 {
    -ms-grid-column-span: 4;
    grid-column: span 4;
}

.col-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.col-2--offset {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .col-2--offset {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .col-2--offset {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
}

@media (max-width: 991.98px) {
    .col-2--offset {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1/4;
    }
}

.col-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3;
}

.col-4 {
    -ms-grid-column: 1;
    grid-column: 1fr;
}

@media (max-width: 991.98px) {
    .col-4 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1/4;
    }
}

.job-item_image {
    justify-content: center;
    height: auto;
    width: 350px;
}

.header {
    height: 100px;
    padding: 0 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    z-index: 1;
}

}
@media (min-width: 1200px) and (max-width: 1439.98px) {
    .header {
        padding: 0 50px;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .header {
        padding: 0 20px;
    }
}

@media (max-width: 575.98px) {
    .header {
        padding: 10px;
        height: auto;
    }
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-nav {
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .header-nav {
        width: 50px;
        height: 50px;
        position: relative;
        cursor: pointer;
        z-index: 999;
    }
}

.header-nav__link {
    font-size: 24px;
    text-decoration: none;
    position: relative;
    display: block;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .header-nav__link {
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-nav__link {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .header-nav__link {
        display: none;
    }
}

.header-nav__link:hover::after {
    width: 100%;
}

.header-nav__link::after {
    display: block;
    content: " ";
    height: 2px;
    width: 0%;
    bottom: 0;
    left: 0;
    background-color: #00a023;
    -webkit-transition: width 0.3s ease-in;
    -o-transition: width 0.3s ease-in;
    transition: width 0.3s ease-in;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo__link {
    text-decoration: none;
    display: block;
    margin-right: 25px;
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .logo__link {
        margin-right: 25px;
    }
}

@media (max-width: 575.98px) {
    .logo__link {
        margin-right: 10px;
    }
}

.logo__image {
    max-height: 50px;
}

.logo__descriptor {
    font-size: 24px;
    font-weight: 400;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .logo__descriptor {
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .logo__descriptor {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .logo__descriptor {
        font-size: 16px;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .logo__image {
        max-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .logo__image {
        max-height: 40px;
    }
}

.hamburger {
    height: 3px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 25px;
    background-color: #333;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    display: none;
}

@media (max-width: 991.98px) {
    .hamburger {
        display: block;
    }
}

.hamburger::after,
.hamburger::before {
    content: "";
    position: absolute;
    height: inherit;
    border-radius: inherit;
    background-color: inherit;
    margin: auto;
    width: 50%;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hamburger::before {
    top: -10px;
    left: 0;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

.hamburger::after {
    bottom: -10px;
    right: 0;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.hamburger.open {
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.open::before {
    top: 0;
    -webkit-transform: translateX(100%) rotate(-90deg);
    -ms-transform: translateX(100%) rotate(-90deg);
    transform: translateX(100%) rotate(-90deg);
}

.hamburger.open::after {
    bottom: 0;
    -webkit-transform: translateX(-100%) rotate(-90deg);
    -ms-transform: translateX(-100%) rotate(-90deg);
    transform: translateX(-100%) rotate(-90deg);
}

html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100vh;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    opacity: 1;
}

.c-scrollbar:hover {
    -webkit-transform: scaleX(1.45);
    -ms-transform: scaleX(1.45);
    transform: scaleX(1.45);
}

.c-scrollbar .has-scroll-dragging .c-scrollbar,
.c-scrollbar .has-scroll-scrolling .c-scrollbar,
.c-scrollbar:hover {
    opacity: 1;
}

[data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

[data-scroll-direction="horizontal"] .c-scrollbar:hover {
    -webkit-transform: scaleY(1.3);
    -ms-transform: scaleY(1.3);
    transform: scaleY(1.3);
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #282828;
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0;
}

.horizontal-wrapper {
    height: calc(100vh - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: inherit;
    position: relative;
}

@media (max-width: 991.98px) {
    .horizontal-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        row-gap: 10px;
        padding: 10px;
    }
}

.horizontal-item {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    height: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .horizontal-item {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

@media (max-width: 991.98px) {
    .horizontal-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.horizontal-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.horizontal-item__link:hover {
    color: #fff;
}

.horizontal-item__link:hover .horizontal-item__name {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.horizontal-item__link:hover .horizontal-item__category {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

@media (max-width: 575.98px) {
    .horizontal-item__link:hover .horizontal-item__category {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.horizontal-item__link:hover .horizontal-item__description,
.horizontal-item__link:hover .horizontal-item__description__inner,
.horizontal-item__link:hover .horizontal-item__description__inner p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    max-height: 500px;
}

.horizontal-item__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.horizontal-item__image img {
    height: 100%;
}

@media (max-width: 575.98px) {
    .horizontal-item__image img {
        height: auto;
        max-width: 100%;
    }
}

.horizontal-item__detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 150px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

@media (max-width: 575.98px) {
    .horizontal-item__detail {
        padding: 20px 10px;
        background-color: rgba(0, 0, 0, 0.4);
    }
}

.horizontal-item__name {
    font-size: 48px;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    word-break: break-word;
    transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 40px;
    white-space: normal;
    line-height: 1;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .horizontal-item__name {
        font-size: 32px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .horizontal-item__name {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .horizontal-item__name {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .horizontal-item__name {
        font-size: 28px;
    }
}

.horizontal-item__description {
    overflow: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    white-space: normal;
    max-height: 0;
}

@media (max-width: 991.98px) {
    .horizontal-item__description {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        max-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .horizontal-item__description {
        display: none;
    }
}

.horizontal-item__description__inner {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

@media (max-width: 991.98px) {
    .horizontal-item__description__inner {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.horizontal-item__description__inner p {
    font-size: 24px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: 0.6s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: 0.6s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: 0.6s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.6s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.6s transform cubic-bezier(0.19, 1, 0.22, 1), 0.6s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    margin: 0;
    line-height: 1.1;
}

@media (min-width: 768px) and (max-width: 1439.98px) {
    .horizontal-item__description__inner p {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .horizontal-item__description__inner p {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .horizontal-item__description__inner p {
        font-size: 18px;
    }
}

.horizontal-item__description,
.horizontal-item__description__inner {
    transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1);
    transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1), 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
}

.horizontal-item__category {
    display: inline-block;
    transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.horizontal-item[data-scroll-section] {
    height: calc(100vh - 100px);
}

@media (max-width: 991.98px) {
    .horizontal-item[data-scroll-section] {
        height: auto;
    }
}

.horizontal-nav__button {
    position: absolute;
    bottom: 120px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 19;
    padding: 10px 25px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

@media (max-width: 991.98px) {
    .horizontal-nav__button {
        display: none;
    }
}

.horizontal-nav__button--prev {
    left: 50px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
}

.horizontal-nav__button--next {
    right: 50px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: -webkit-fill-available;
    height: 100%;
    z-index: 20;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (1fr) [4];
    grid-template-rows: repeat(4, 1fr);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav.open {
    pointer-events: auto;
}

.nav__link {
    position: relative;
}

.nav__link:nth-child(1) .nav__bg {
    background-color: #2a2a2b;
}

.nav__link:nth-child(2) .nav__bg {
    background-color: #222224;
}

.nav__link:nth-child(3) .nav__bg {
    background-color: #171719;
}

.nav__link:nth-child(4) .nav__bg {
    background-color: #121212;
}

.nav__link:hover .nav__name::after {
    width: 100%;
}

.nav__bg {
    height: 100%;
    width: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}

.nav__body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 3rem;
    padding: 50px;
}

@media (max-width: 767.98px) {
    .nav__body {
        font-size: 2rem;
    }
}

.nav__name {
    display: block;
    height: 0;
    overflow: hidden;
    transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    position: relative;
}

.nav__name::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #fff;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news-list__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    height: calc(100vh - 100px);
    margin-bottom: 100px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .news-list__row {
        height: 60vh;
    }
}

@media (max-width: 991.98px) {
    .news-list__row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .news-list__row {
        height: auto;
    }
}

.news-list__image {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .news-list__image {
        overflow: inherit;
    }
}

.news-list__image img {
    height: 100%;
}

@media (max-width: 991.98px) {
    .news-list__image img {
        height: auto;
        max-width: 100%;
    }
}

.news-list__body {
    padding: 100px;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .news-list__body {
        padding: 50px;
    }
}

@media (max-width: 1199.98px) {
    .news-list__body {
        padding: 50px 0;
    }
}

.news-list__title {
    font-size: 64px;
    margin-bottom: 10px;
    line-height: 1;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .news-list__title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .news-list__title {
        font-size: 36px;
    }
}

.news-list__date {
    font-size: 18px;
    opacity: 0.6;
    display: block;
    margin-bottom: 50px;
}

@media (max-width: 991.98px) {
    .news-list__date {
        margin-bottom: 25px;
    }
}

.news-list__description {
    font-size: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .news-list__description {
        font-size: 18px;
    }
}

.news-list__link {
    display: block;
}

.news-list__link:hover {
    opacity: 0.6;
}

.news-single {
    font-size: 20px;
    height: 100%;
}

.news-single__text {
    padding-bottom: 100px;
    max-width: 700px;
}

@media (max-width: 1199.98px) {
    .news-single__text {
        padding-bottom: 50px;
        max-width: 100%;
    }
}

.news-single__row {
    height: 100%;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    grid-auto-rows: auto;
    row-gap: 50px;
    padding-bottom: 50px;
}

@media (max-width: 1439.98px) {
    .news-single__row {
        -ms-grid-columns: (1fr) [3];
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 0;
    }
}

.news-single__row--pb100 {
    padding-bottom: 100px;
}

@media (max-width: 1199.98px) {
    .news-single__row--pb100 {
        padding-bottom: 50px;
    }
}

.news-single__inner img {
    margin-bottom: 50px;
}

.news-single__title {
    margin-bottom: 50px;
}

.company-page__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    height: 100%;
}

@media (max-width: 991.98px) {
    .company-page__row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

.company-page__col__fullpage {
    -ms-grid-column-span: 3;
    grid-column: span 3;
}

.company-page img {
    max-width: 100%;
    height: auto;
}

.company-page__image {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /*align-items: center;*/
    padding: 60px;
    height: 100vh;
}

@media (max-width: 991.98px) {
    .company-page__image {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
    .company-page__image--single {
        height: 100%;
    }
}

.company-page__image img {
    max-width: inherit;
    height: 100%;
}

@media (max-width: 991.98px) {
    .company-page__image img {
        height: auto;
        max-width: 100%;
    }
}

.company-page__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px 0;
    margin-bottom: 50px;
}

@media (max-width: 1499.98px) {
    .company-page__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 25px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.company-page__name {
    line-height: 1;
}

.company-page__logo {
    max-height: 150px;
}

@media (max-width: 1499.98px) {
    .company-page__logo {
        max-height: 100px;
    }
}

.company-page__decription {
    padding: 50px 100px;
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
    .company-page__decription {
        padding: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .company-page__decription {
        padding: 50px 25px;
    }
}

@media (max-width: 991.98px) {
    .company-page__decription {
        padding: 25px 20px;
    }
}

.company-page__decription p {
    font-size: 20px;
    white-space: normal;
}

@media (max-width: 1199.98px) {
    .company-page__decription p {
        font-size: 18px;
    }
}

.company-page__link {
    display: inline-block;
    margin-top: 50px;
    margin-right: 25px;
}

@media (max-width: 991.98px) {
    .company-page__link {
        margin-top: 25px;
    }
}

@media (max-width: 575.98px) {
    .company-page__link {
        margin-right: 0;
    }
}

.company-page__citate {
    font-size: 48px;
    white-space: normal;
    line-height: 1.2;
    z-index: 2;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .company-page__citate {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .company-page__citate {
        font-size: 28px;
    }
}

.company-page__right-item {
    padding-top: 80px; /*Было 100px*/
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .company-page__right-item {
        padding-top: 50px;
    }
}

@media (max-width: 991.98px) {
    .company-page__right-item {
        padding-top: 25px;
    }
}

.company-page__right-item * {
    margin-bottom: 80px; /*Было 100px*/
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .company-page__right-item * {
        margin-bottom: 50px;
    }
}

@media (max-width: 991.98px) {
    .company-page__right-item * {
        margin-bottom: 25px;
    }
}

.main {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991.98px) {
    .main {
        height: inherit;
        overflow: inherit;
    }
}

.section {
    padding: 100px;
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .section {
        padding: 100px 50px;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .section {
        padding: 50px 20px;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 50px 10px;
    }
}

.section__title {
    margin-bottom: 100px;
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .section__title {
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .section__title {
        margin-bottom: 50px;
    }
}

.scroll-container {
    min-height: 100vh;
}

@media (max-width: 991.98px) {
    .scroll-container {
        min-height: auto;
    }
    
  scroll-job {
    width: 300px;
    height: 200px;
    border: 25px solid #E8C48F;
    padding: 20px;
    overflow: auto;
  }

}