@charset "UTF-8";

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: RobotoSlab;
    font-display: swap;
    src: url("../fonts/RobotoSlab-Thin.woff2") format("woff2"), url("../fonts/RobotoSlab-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

:root {
    --mainColor: #ffffff;
    --greenColor: #0091bf;
    --lightDark: rgba(17, 19, 23, 0.7);
    --lightGreen: rgba(11, 85, 110, 0.7);
}

html {
    background: #152026;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: var(--mainColor);
    line-height: 1;
    font-family: "Roboto";
    font-size: 1rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "Roboto";
    font-size: inherit;
}

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

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

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

body img {
    max-width: 100%;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

@supports (overflow: clip) {
    .wrapper {
        overflow: clip;
    }
}

.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper > * {
    min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 0.625rem;
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 16px;
    height: 51px;
    font-weight: 500;
    background: #0091bf;
    border-radius: 8px;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.button_border {
    background: transparent;
    border: 1px solid #0091bf;
    color: #0091bf;
    margin-bottom: 35px;
}

.button_border:hover {
    color: #fff;
    background: #0091bf;
}

.button._fw {
    width: 100%;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    width: 100%;
    background: #111317;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* Note: backdrop-filter has minimal browser support */
    padding: 80px;
    border-radius: 16px;
    max-width: 35rem;
    position: relative;
}

.lock .popup__content {
    visibility: visible;
}

.popup__close {
    position: absolute;
    top: 24px;
    right: 24px;
}

.popup__title {
    font-weight: 300;
    line-height: 1.32;
    font-family: "RobotoSlab";
}

.popup__title:not(:last-child) {
    margin-bottom: 2rem;
}

.popup__text {
    font-size: 16px;
    line-height: 1.5;
}

.popup__text:not(:last-child) {
    margin-bottom: 2rem;
}

[class*=-ibg] {
    position: relative;
}

[class*=-ibg] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*=-ibg_contain] img {
    -o-object-fit: contain;
    object-fit: contain;
}

.title {
    font-family: "RobotoSlab";
    font-weight: 300;
    font-size: 80px;
    line-height: 1.35;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9375rem 0;
    z-index: 5;
}

.header__menu {
    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: 1.25rem;
}

.menu__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
    padding-right: 6.3125rem;
}

.menu__list::after {
    content: "";
    height: 68px;
    right: 0;
    width: 200vw;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 50%;
    -webkit-transform: translate(0, -50%) skewX(-50deg);
    -ms-transform: translate(0, -50%) skewX(-50deg);
    transform: translate(0, -50%) skewX(-50deg);
    position: absolute;
    border-radius: 0 0 10px 0;
    border: 1px solid transparent;
    background: -o-linear-gradient(rgba(17, 19, 23, 0.95), rgba(17, 19, 23, 0.95)) padding-box, -o-linear-gradient(154.01deg, #0382ab 5.57%, rgba(3, 130, 171, 0) 45.94%) border-box;
    background: linear-gradient(rgba(17, 19, 23, 0.95), rgba(17, 19, 23, 0.95)) padding-box, linear-gradient(295.99deg, #0382ab 5.57%, rgba(3, 130, 171, 0) 45.94%) border-box;
}

.menu__item {
    position: relative;
    z-index: 2;
}

.menu__link {
    font-weight: 500;
    padding: 0.53125rem 0rem;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.menu__link:hover {
    color: var(--greenColor);
}

.menu__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 4;
}

.menu__social-link {
    width: 36px;
    height: 36px;
    background: #16191f;
    border: 1px solid transparent;
    background: -webkit-gradient(linear, left top, left bottom, from(#16191f), to(#16191f)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#4381f9), to(#4381f9)) border-box;
    background: -o-linear-gradient(#16191f, #16191f) padding-box, -o-linear-gradient(#4381f9, #4381f9) border-box;
    background: linear-gradient(#16191f, #16191f) padding-box, linear-gradient(#4381f9, #4381f9) border-box;
    border-radius: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.menu__social-link.instagram {
    background: -o-linear-gradient(#16191f, #16191f) padding-box, -o-linear-gradient(228.01deg, #8a43ff 15.68%, #ff4dcd 40.07%, #ff3528 69.02%, #ffd600 95.07%) border-box;
    background: linear-gradient(#16191f, #16191f) padding-box, linear-gradient(221.99deg, #8a43ff 15.68%, #ff4dcd 40.07%, #ff3528 69.02%, #ffd600 95.07%) border-box;
}

.menu__social-link.instagram svg {
    fill: url(#paint0_linear_24_3201);
}

.menu__social-link.telegram {
    background: -webkit-gradient(linear, left top, left bottom, from(#16191f), to(#16191f)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#20afff), to(#20afff)) border-box;
    background: -o-linear-gradient(#16191f, #16191f) padding-box, -o-linear-gradient(#20afff, #20afff) border-box;
    background: linear-gradient(#16191f, #16191f) padding-box, linear-gradient(#20afff, #20afff) border-box;
}

.menu__social-link.telegram svg {
    fill: #20afff;
}

.menu__social-link.linkedin {
    background: -webkit-gradient(linear, left top, left bottom, from(#16191f), to(#16191f)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#2e6aaa), to(#2e6aaa)) border-box;
    background: -o-linear-gradient(#16191f, #16191f) padding-box, -o-linear-gradient(#2e6aaa, #2e6aaa) border-box;
    background: linear-gradient(#16191f, #16191f) padding-box, linear-gradient(#2e6aaa, #2e6aaa) border-box;
}

.menu__social-link.linkedin svg {
    fill: #2e6aaa;
}

.menu__social-link.gitlab {
    background: -webkit-gradient(linear, left top, left bottom, from(#16191f), to(#16191f)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff)) border-box;
    background: -o-linear-gradient(#16191f, #16191f) padding-box, -o-linear-gradient(#ffffff, #ffffff) border-box;
    background: linear-gradient(#16191f, #16191f) padding-box, linear-gradient(#ffffff, #ffffff) border-box;
}

.menu__social-link.gitlab svg {
    fill: #ffffff;
}

.menu__social-link:hover {
    background: #0091bf;
    border: 1px solid #0091bf;
}

.menu__social-link:hover svg {
    fill: var(--mainColor);
}

.menu__social-link svg {
    width: 16px;
    height: 16px;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    fill: #4381f9;
}

.icon-menu {
    display: none;
}

.main-block {
    position: relative;
    padding: 10.875rem 0 6.25rem;
}

.main-block__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    display: block;
}

.main-block__container {
    position: relative;
    z-index: 2;
}

.main-block__content {
    position: relative;
    padding: 80px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: var(--lightDark);
    border-radius: 16px;
}

.main-block__name {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 24px;
    border-radius: 16px;
    font-weight: 300;
    font-size: 50px;
    line-height: 1.18;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    background: var(--lightGreen);
    max-width: 61.3125rem;
}

.main-block__name:not(:last-child) {
    margin-bottom: 1.5rem;
}

.main-block__title {
    font-weight: 300;
    font-size: 130px;
    line-height: 1.3153846154;
    font-family: "RobotoSlab";
}

.main-block__title:not(:last-child) {
    margin-bottom: 1rem;
}

.main-block__descr {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.1666666667;
    letter-spacing: 0.135em;
    text-transform: uppercase;
    color: #0091bf;
}

.main-block__image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 24.6875rem;
}

[data-typed] {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border-right: 2px solid var(--lightGreen);
    -webkit-animation: typing 3s steps(40, end) infinite, blink-caret 0.75s step-end infinite;
    animation: typing 3s steps(40, end) infinite, blink-caret 0.75s step-end infinite;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

@-webkit-keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@-webkit-keyframes blink-caret {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: var(--lightGreen);
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: var(--lightGreen);
    }
}

.about {
    position: relative;
    padding: 4.6875rem 0 4.0625rem;
}

.about__decor {
    position: absolute;
    top: 0;
    right: 0;
}

.about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about__left {
    background: rgba(17, 19, 23, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 80px;
    border-radius: 16px;
    max-width: 34.9375rem;
    margin-bottom: 4.375rem;
}

.about__title:not(:last-child) {
    margin-bottom: 2rem;
}

.about__descr {
    line-height: 1.5;
}

.about__descr:not(:last-child) {
    margin-bottom: 2rem;
}

.about__image {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 30.75rem;
    -webkit-transform: translate(-35%, -20%);
    -ms-transform: translate(-35%, -20%);
    transform: translate(-35%, -20%);
}

.about__right {
    max-width: 23.5625rem;
    background: rgba(17, 19, 23, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 40px;
}

.about__row-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    line-height: 1.5;
}

.about__row-table:not(:last-child) {
    margin-bottom: 1rem;
}

.about__label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    color: #6177a0;
}

.about__value a {
    color: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.about__value a:hover {
    color: var(--greenColor);
}

.tech {
    padding: 3.4375rem 0;
    position: relative;
}

.tech__decor {
    position: absolute;
    left: 0;
    top: 505px;
    pointer-events: none;
}

.tech__container {
    position: relative;
    z-index: 2;
}

.tech__digit1 {
    position: absolute;
    pointer-events: none;
    left: -80px;
    top: 0;
    z-index: 1;
}

.tech__digit2 {
    right: -140px;
    top: 0;
    position: absolute;
    pointer-events: none;
}

.tech__title {
    position: relative;
    z-index: 2;
}

.tech__title:not(:last-child) {
    margin-bottom: 2rem;
}

.tech__grid-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.item-tech {
    padding: 80px 70px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 16px;
}

.item-tech:nth-child(1) {
    width: 57.457627%;
    /* 678/1180 */
}

.item-tech:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: -120px;
    margin-top: -13.5rem;
}

.item-tech_dark {
    background: rgba(17, 19, 23, 0.7);
}

.item-tech_dark .item-tech__title {
    color: #0091bf;
}

.item-tech_green {
    background: rgba(11, 85, 110, 0.7);
}

.item-tech_green .item-tech__tag {
    background: #12171c;
}

.item-tech_big {
    margin-top: -2.875rem;
    max-width: 48.75rem;
    width: 100%;
}

.item-tech_big .item-tech__image {
    width: 150px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.item-tech_big .item-tech__image:not(:last-child) {
    margin-bottom: 0rem;
}

.item-tech_big .item-tech__title {
    text-align: left;
}

.item-tech_big .item-tech__title:not(:last-child) {
    margin-bottom: 1.5rem;
}

.item-tech__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.item-tech__image:not(:last-child) {
    margin-bottom: 2rem;
}

.item-tech__title {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.3333333333;
    text-align: center;
    letter-spacing: 0.135em;
    text-transform: uppercase;
}

.item-tech__title:not(:last-child) {
    margin-bottom: 2rem;
}

.item-tech__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.item-tech__tag {
    background: #0e4559;
    border-radius: 8px;
    padding: 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1875;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.item-tech__tag:hover {
    background: #0091bf;
    color: #fff;
}

.item-tech__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.item-tech__right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.item-tech__tags-scroll {
    max-height: 13.25rem;
    padding-right: 10px;
}

.item-tech__tags-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #0091bf;
}

.portfolio {
    position: relative;
    z-index: 2;
    padding: 3.4375rem 0 7.5rem;
}

.portfolio__decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio__decor img {
    width: 100%;
}

.portfolio__container {
    position: relative;
    z-index: 2;
}

.portfolio__title {
    max-width: 33%;
}

.portfolio__title:not(:last-child) {
    margin-bottom: 2rem;
}

.portfolio__slider {
    overflow: visible !important;
}

.portfolio__wrapper.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.portfolio__slide.swiper-slide {
    width: calc(33.33% - 13.33px);
}

.portfolio__slide.swiper-slide:nth-child(3n+2) {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
}

.portfolio__slide.swiper-slide:nth-child(3n+3) {
    -webkit-transform: translateY(-120px);
    -ms-transform: translateY(-120px);
    transform: translateY(-120px);
}

.item-portfolio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 542px;
    padding: 24px;
}

.item-portfolio__image-ibg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 24px);
    border-radius: 16px;
    overflow: hidden;
}

.item-portfolio__content {
    position: relative;
    z-index: 2;
    background: rgba(17, 19, 23, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    margin-bottom: -24px;
    width: 100%;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.item-portfolio__left {
    max-width: calc(100% - 70px);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.item-portfolio__title-link {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.item-portfolio__title-link:not(:last-child) {
    margin-bottom: 1rem;
}

.item-portfolio__descr {
    font-size: 16px;
    line-height: 1.5;
}

.item-portfolio__descr p {
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.item-portfolio__link {
    border: 1px solid #0091bf;
    border-radius: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.item-portfolio__link:hover {
    background: #0091bf;
}

.item-portfolio__link:hover svg {
    stroke: #fff;
}

.item-portfolio__link svg {
    stroke: #0091bf;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.work {
    padding: 145px 0 65px;
    position: relative;
}

.work__decor {
    position: absolute;
    width: 100%;
    top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.work__decor img {
    width: 100%;
    max-width: none;
}

.work__container {
    position: relative;
    z-index: 2;
}

.work__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.work__column:nth-child(2) {
    padding-top: 25px;
}

.work__title:not(:last-child) {
    margin-bottom: 2rem;
}

.work__items {
    display: -ms-grid;
    display: grid;
    gap: 24px;
}

.work__digit {
    position: absolute;
    width: 645px;
}

.work__digit_01 {
    left: -100px;
    top: calc(100% - 250px);
}

.work__digit_02 {
    top: -30px;
    right: 100px;
}

.item-work {
    background: rgba(17, 19, 23, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding-top: 24px;
}

.item-work_green {
    background: rgba(11, 85, 110, 0.7);
}

.item-work__date {
    background: #0091bf;
    border-radius: 0px 8px 8px 0px;
    min-width: 11.375rem;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 5px 10px 24px;
    display: inline-block;
}

.item-work__content {
    padding: 16px 24px 24px 24px;
}

.item-work__content > *:not(:last-child) {
    margin-bottom: 1rem;
}

.item-work__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    display: block;
}

.item-work__title:hover {
    color: #0091bf;
}

.item-work__descr {
    font-size: 16px;
    line-height: 1.5;
}

.item-work__link {
    font-size: 16px;
    line-height: 1.5;
    text-decoration-line: underline;
    color: #0091bf;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    word-break: break-word;
}

.item-work__link:hover {
    color: #fff;
}

.footer {
    padding: 60px 0 40px;
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__copy {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

/**
 * Swiper 9.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 13, 2023
 */

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    display: block;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    direction: inherit;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
    width: auto;
    max-width: 100%;
    /* Not required for horizontal scroll to trigger */
    max-height: 100%;
    /* Needed for vertical scroll to trigger */
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
    content: " ";
    display: table;
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.simplebar-height-auto-observer {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

[data-simplebar].simplebar-dragging {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}

.simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    background: #0091bf;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    border-radius: 7px;
    left: 2px;
    right: 2px;
    background: #0091bf;
    -webkit-transition: opacity 0.2s 0.5s linear;
    -o-transition: opacity 0.2s 0.5s linear;
    transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 0.5;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 2px;
    background: #12171c;
}

.simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 0;
    bottom: 0;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}

.simplebar-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%;
    margin: 10px 0;
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media (min-width: 47.99875em) {
    .portfolio__wrapper.swiper-wrapper {
        gap: 1.25rem;
    }
}

@media (min-width: 75em) {
    .popup__title {
        font-size: 3.125rem;
    }

    .about__image {
        max-width: 30.75rem;
    }

    .tech__title {
        font-size: 4.375rem;
    }

    .portfolio__title {
        font-size: 4.375rem;
    }

    .work__title {
        font-size: 3.125rem;
    }
}

@media (max-width: 120em) {
    .portfolio__decor img {
        width: 1920px;
        max-width: none;
    }

    .work__decor img {
        width: 1920px;
    }
}

@media (max-width: 75em) {
    .main-block__title {
        font-size: 6.25rem;
    }

    .tech__digit1 {
        left: -110px;
        top: -50px;
    }

    .item-tech {
        padding: 40px;
        z-index: 2;
        position: relative;
    }

    .item-tech:nth-child(1) {
        width: 50%;
    }

    .item-tech:nth-child(2) {
        width: 50%;
        margin-left: -50px;
    }

    .item-tech_big {
        margin-top: -20px;
    }
}

@media (max-width: 48em) {
    .about__image {
        max-width: 18.75rem;
    }
}

@media (max-width: 20em) {
    .popup__title {
        font-size: 2.5rem;
    }

    .tech__title {
        font-size: 2.5rem;
    }

    .portfolio__title {
        font-size: 2.5rem;
    }

    .work__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 93.75em) {
    .work__digit_01 {
        left: auto;
        right: calc(100% - 200px);
    }

    .work__digit_02 {
        right: auto;
        left: calc(100% - 300px);
    }
}

@media (max-width: 71.875em) {
    .main-block__content {
        padding: 4.375rem 1.5rem;
    }

    .main-block__image {
        max-width: 30%;
    }
}

@media (max-width: 68.75em) {
    .about__left {
        max-width: 500px;
        padding: 50px;
    }
}

@media (max-width: 61.99875em) {
    .title {
        font-size: 3.75rem;
    }

    .menu__list {
        gap: 2.5rem;
        padding-right: 4.375rem;
    }

    .main-block {
        padding: 6.1875rem 0 1.875rem;
    }

    .main-block__title {
        font-size: 5rem;
    }

    .main-block__descr {
        max-width: 50%;
        font-size: 1.5rem;
    }

    .about {
        padding-top: 7.5rem;
    }

    .about__row {
        gap: 1.25rem;
    }

    .about__left {
        margin-bottom: 0;
    }

    .about__image {
        -webkit-transform: translate(15%, -300px);
        -ms-transform: translate(15%, -300px);
        transform: translate(15%, -300px);
    }

    .tech__digit2 {
        z-index: 3;
        right: -100px;
        top: 500px;
    }

    .item-tech:nth-child(1) {
        width: 100%;
    }

    .item-tech:nth-child(2) {
        margin-left: -20px;
        margin-top: -100px;
    }

    .item-portfolio {
        height: 400px;
        padding: 0 0 24px;
    }

    .work__decor {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media (max-width: 53.75em) {
    .portfolio__slide.swiper-slide {
        width: calc(50% - 10px);
    }

    .portfolio__slide.swiper-slide:nth-child(3n+2) {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    .portfolio__slide.swiper-slide:nth-child(3n+3) {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    .portfolio__slide.swiper-slide:nth-child(2n+2) {
        -webkit-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}

@media (max-width: 47.99875em) {
    .title {
        font-size: 40px;
    }

    .header::after {
        content: "";
        height: 68px;
        left: 0;
        width: 300px;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        top: 50%;
        -webkit-transform: translate(-200px, -50%) skewX(-50deg);
        -ms-transform: translate(-200px, -50%) skewX(-50deg);
        transform: translate(-200px, -50%) skewX(-50deg);
        position: absolute;
        border-radius: 0 0 10px 0;
        border: 1px solid transparent;
        background: -o-linear-gradient(rgba(17, 19, 23, 0.95), rgba(17, 19, 23, 0.95)) padding-box, -o-linear-gradient(154.01deg, #0382ab 5.57%, rgba(3, 130, 171, 0) 45.94%) border-box;
        background: linear-gradient(rgba(17, 19, 23, 0.95), rgba(17, 19, 23, 0.95)) padding-box, linear-gradient(295.99deg, #0382ab 5.57%, rgba(3, 130, 171, 0) 45.94%) border-box;
    }

    .menu__body {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #152026;
        overflow: auto;
        z-index: 4;
        padding: 6.25rem 1.25rem 3.125rem;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
        -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
        transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    }

    .menu-open .menu__body {
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

    .menu__list::after {
        display: none;
    }

    .menu__list {
        padding-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3.125rem;
    }

    .menu__socials {
        gap: 1rem;
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 2.25rem;
        height: 2.25rem;
        background: #09546d;
        border-radius: 8px;
        z-index: 5;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        content: "";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        position: absolute;
        width: 16px;
        border-radius: 2px;
        height: 0.125rem;
        background-color: #fff;
    }

    .icon-menu::before {
        top: 11px;
    }

    .icon-menu::after {
        bottom: 11px;
    }

    .icon-menu span {
        top: calc(50% - 0.0625rem);
    }

    .menu-open .icon-menu span {
        width: 0;
    }

    .menu-open .icon-menu::before {
        top: calc(50% - 0.0625rem);
        -webkit-transform: translate(-50%, 0) rotate(-45deg);
        -ms-transform: translate(-50%, 0) rotate(-45deg);
        transform: translate(-50%, 0) rotate(-45deg);
    }

    .menu-open .icon-menu::after {
        bottom: calc(50% - 0.0625rem);
        -webkit-transform: translate(-50%, 0) rotate(45deg);
        -ms-transform: translate(-50%, 0) rotate(45deg);
        transform: translate(-50%, 0) rotate(45deg);
    }

    .main-block__name {
        padding: 16px;
        font-size: 1.5rem;
    }

    .main-block__name:not(:last-child) {
        margin-bottom: 0.6875rem;
    }

    .main-block__title {
        font-size: 2.5rem;
    }

    .main-block__descr {
        font-size: 1.25rem;
    }

    .main-block__image {
        max-width: 12.5rem;
    }

    .about {
        padding: 1.875rem 0;
    }

    .about__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5.625rem;
    }

    .about__left {
        padding: 24px;
        max-width: 100%;
    }

    .about__title:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .about__descr:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .about__image {
        -webkit-transform: translate(0, -250px);
        -ms-transform: translate(0, -250px);
        transform: translate(0, -250px);
        left: auto;
        right: 10px;
        max-width: 14.375rem;
    }

    .about__right {
        max-width: 100%;
        width: 100%;
        padding: 24px;
    }

    .tech {
        padding: 1.875rem 0;
    }

    .tech__title {
        text-align: center;
    }

    .tech__title:not(:last-child) {
        margin-bottom: 24px;
    }

    .tech__grid-layout {
        gap: 1.25rem;
    }

    .item-tech {
        padding: 24px;
    }

    .item-tech:nth-child(2) {
        width: 100%;
        margin: 0;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .item-tech_big {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .item-tech_big .item-tech__image {
        width: 100%;
    }

    .item-tech_big .item-tech__title {
        text-align: center;
    }

    .item-tech__image:not(:last-child) {
        margin-bottom: 24px;
    }

    .item-tech__title {
        font-size: 20px;
    }

    .item-tech__title:not(:last-child) {
        margin-bottom: 24px;
    }

    .item-tech__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
    }

    .item-tech__tags-scroll {
        max-height: 15rem;
        word-break: break-word;
    }

    .item-tech__tags-vertical .item-tech__tag {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .portfolio {
        padding: 30px 0 126px;
    }

    .portfolio__title {
        text-align: center;
        max-width: 100%;
    }

    .portfolio__title:not(:last-child) {
        margin-bottom: 24px;
    }

    .portfolio__wrapper.swiper-wrapper {
        gap: 0;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .portfolio__slide.swiper-slide:nth-child(2n+2) {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .portfolio__slide.swiper-slide {
        width: 293px !important;
    }

    .item-portfolio {
        padding: 0;
    }

    .item-portfolio__image-ibg {
        height: 100%;
    }

    .item-portfolio__content {
        margin-bottom: -66px;
    }

    .work {
        padding: 60px 0 30px;
    }

    .work__row {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }

    .work__column:nth-child(2) {
        padding-top: 0;
    }

    .work__title {
        text-align: center;
        font-size: 40px;
    }

    .work__digit_01 {
        right: calc(100% - 70px);
        top: calc(100% - 100px);
    }

    .work__digit_02 {
        top: 20%;
        left: calc(100% - 187px);
    }

    .footer {
        padding: 1.875rem 0 36px;
    }
}

@media (max-width: 47.99875em) and (any-hover: none) {
    .icon-menu {
        cursor: default;
    }
}

@media (max-width: 37.5em) {
    .popup__content {
        padding: 40px 20px 30px 20px;
    }

    .popup__title:not(:last-child) {
        margin-bottom: 24px;
    }

    .popup__text:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media (max-width: 29.99875em) {
    .popup__button {
        width: 100%;
    }

    .main-block__content {
        padding: 24px;
    }

    .main-block__image {
        max-width: 9.25rem;
    }
}

@media (max-width: 23.4375em) {
    .about__image {
        max-width: 180px;
    }
}

@media (min-width: 20em) and (max-width: 75em) {
    @supports (font-size: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
        .popup__title {
            font-size: clamp(2.5rem, 2.2727272727rem + 1.1363636364vw, 3.125rem);
        }
    }

    @supports not (font-size: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
        .popup__title {
            font-size: calc(2.5rem + 0.625 * (100vw - 20rem) / 55);
        }
    }

    @supports (font-size: clamp( 2.5rem , 1.8181818182rem  +  3.4090909091vw , 4.375rem )) {
        .tech__title {
            font-size: clamp(2.5rem, 1.8181818182rem + 3.4090909091vw, 4.375rem);
        }
    }

    @supports not (font-size: clamp( 2.5rem , 1.8181818182rem  +  3.4090909091vw , 4.375rem )) {
        .tech__title {
            font-size: calc(2.5rem + 1.875 * (100vw - 20rem) / 55);
        }
    }

    @supports (font-size: clamp( 2.5rem , 1.8181818182rem  +  3.4090909091vw , 4.375rem )) {
        .portfolio__title {
            font-size: clamp(2.5rem, 1.8181818182rem + 3.4090909091vw, 4.375rem);
        }
    }

    @supports not (font-size: clamp( 2.5rem , 1.8181818182rem  +  3.4090909091vw , 4.375rem )) {
        .portfolio__title {
            font-size: calc(2.5rem + 1.875 * (100vw - 20rem) / 55);
        }
    }

    @supports (font-size: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
        .work__title {
            font-size: clamp(2.5rem, 2.2727272727rem + 1.1363636364vw, 3.125rem);
        }
    }

    @supports not (font-size: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
        .work__title {
            font-size: calc(2.5rem + 0.625 * (100vw - 20rem) / 55);
        }
    }
}

@media (min-width: 48em) and (max-width: 75em) {
    @supports (max-width: clamp( 18.75rem , -2.5833333333rem  +  44.4444444444vw , 30.75rem )) {
        .about__image {
            max-width: clamp(18.75rem, -2.5833333333rem + 44.4444444444vw, 30.75rem);
        }
    }

    @supports not (max-width: clamp( 18.75rem , -2.5833333333rem  +  44.4444444444vw , 30.75rem )) {
        .about__image {
            max-width: calc(18.75rem + 12 * (100vw - 48rem) / 27);
        }
    }
}