.socials.astro-UPU6FZXR {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    width: 100%
}

@media screen and (min-width: 900px) {
    .socials.astro-UPU6FZXR {
        display:grid;
        grid-template: auto/repeat(auto-fill,28px);
        justify-content: space-between;
        width: auto
    }
}

.social.astro-UPU6FZXR {
    transition: all .3s ease-in-out
}

.social.astro-UPU6FZXR:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(470%) hue-rotate(257deg) brightness(114%) contrast(88%)
}

.menu {
    display: flex;
    justify-content: space-between;
    width: 100%
}

@media screen and (min-width: 900px) {
    .menu {
        align-items:center;
        height: 100%;
        justify-content: center;
        margin-right: 0;
        width: 100%
    }

    .menu .menu_aside {
        display: none
    }
}

.menu .toggle__wrapper {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
    margin-left: 8px;
    position: relative;
    width: 30px;
    z-index: 1
}

@media screen and (min-width: 900px) {
    .menu .toggle__wrapper {
        display:none
    }
}

.menu .toggle__wrapper>span {
    display: block;
    margin-bottom: auto;
    margin-top: auto
}

.menu .toggle__wrapper>span:before {
    background-color: var(--color-header-burger-button);
    content: "";
    top: 0;
    transform: translateY(-4px)
}

.menu .toggle__wrapper>span:after {
    background-color: var(--color-header-burger-button);
    content: "";
    transform: translateY(4px)
}

.menu .toggle__wrapper>span,.menu .toggle__wrapper>span:after,.menu .toggle__wrapper>span:before {
    display: block;
    height: 2px;
    position: absolute;
    width: 16px
}

@media (prefers-reduced-motion:reduce) {
    .menu .toggle__wrapper>span,.menu .toggle__wrapper>span:after,.menu .toggle__wrapper>span:before {
        animation: none;
        transition: none
    }
}

@media (prefers-reduced-motion:no-preference) {
    .menu .toggle__wrapper>span,.menu .toggle__wrapper>span:after,.menu .toggle__wrapper>span:before {
        transition: .25s
    }
}

.menu .toggle__content {
    background-color: var(--color-header-menu-aside,#fff);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: calc(28px + var(--header-nav-height)) 24px 0;
    position: fixed;
    top: 0;
    transform: translate(100%);
    width: 100%;
    z-index: -1
}

@media (prefers-reduced-motion:reduce) {
    .menu .toggle__content {
        animation: none;
        transition: none
    }
}

@media (prefers-reduced-motion:no-preference) {
    .menu .toggle__content {
        transition: transform .25s ease,opacity .2s ease-in-out
    }
}

@media screen and (min-width: 768px) {
    .menu .toggle__content {
        padding:calc(28px + var(--header-nav-height)) calc(var(--page-padding-inline-base) + var(--width-cell-3)) 0
    }
}

@media screen and (min-width: 900px) {
    .menu .toggle__content {
        align-items:center;
        background: transparent;
        box-shadow: none;
        display: flex;
        height: auto;
        justify-content: center;
        opacity: 1;
        padding: 0;
        position: static;
        transform: translate(0);
        transition-duration: unset;
        visibility: visible;
        width: auto;
        z-index: auto
    }
}

.menu .menu__list {
    list-style: none
}

@media screen and (min-width: 900px) {
    .menu .menu__list {
        display:flex;
        flex-direction: row;
        gap: 24px;
        height: 100%;
        justify-content: space-between;
        padding: 0;
        position: relative;
        right: auto;
        width: 100%
    }
}

.menu .menu__item {
    align-items: center;
    color: var(--color-header-font);
    display: flex;
    font-size: 21px;
    letter-spacing: .063px;
    line-height: 1.2;
    padding: 22px 0;
    position: relative
}

.menu .menu__item:after {
    background: linear-gradient(90deg,#585858,rgba(48,48,53,0));
    bottom: 0;
    content: "";
    flex-shrink: 0;
    height: 1px;
    position: absolute;
    width: 345px
}

@media screen and (min-width: 768px) {
    .menu .menu__item {
        font-size:28px;
        font-weight: 400;
        letter-spacing: .084px;
        padding: 28px 0
    }
}

@media screen and (min-width: 900px) {
    .menu .menu__item {
        font-size:16px;
        font-weight: 400;
        letter-spacing: .048px;
        line-height: 110%;
        padding: 10px
    }

    .menu .menu__item:after {
        content: none
    }
}

@media screen and (min-width: 900px) {
    .menu .menu__item:focus,.menu .menu__item:hover {
        color:var(--color-header-font-hover)
    }

    .menu .menu__item:focus img,.menu .menu__item:hover img {
        filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(764%) hue-rotate(214deg) brightness(116%) contrast(88%)
    }
}

@media screen and (min-width: 900px) {
    .menu .menu__item.menu_aside {
        display:none
    }
}

.menu .menu__item_active {
    color: var(--color-header-font-selected)
}

.menu .toggle {
    opacity: 0;
    width: 0
}

@media screen and (min-width: 900px) {
    .menu .toggle {
        display:none
    }
}

.menu .toggle:checked~.toggle__wrapper>span {
    transform: rotate(45deg)
}

.menu .toggle:checked~.toggle__wrapper>span:before {
    transform: rotate(0)
}

.menu .toggle:checked~.toggle__wrapper>span:after {
    transform: rotate(-90deg);
    transform-origin: center
}

.menu .toggle:checked~.toggle__content {
    opacity: 1;
    transform: translate(0)
}

.toggle__icon {
    margin: 7px
}

.menu__copyright {
    color: #494949;
    display: flex;
    font-size: 12px;
    justify-content: center;
    line-height: 130%;
    padding: 18px 0;
    text-align: center
}

.menu__socials {
    margin-top: 30px
}

@media screen and (min-width: 900px) {
    .menu__socials {
        display:none
    }
}

body:has(.menu .toggle:checked) {
    overflow: hidden
}

.menu-button-links {
    margin: 0;
    position: relative
}

@media screen and (min-width: 900px) {
    .menu-button-links {
        font-size:16px;
        font-weight: 400;
        letter-spacing: .048px;
        line-height: 1.1
    }
}

.menu-button-links button {
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: var(--color-gray);
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    white-space: nowrap
}

@media screen and (min-width: 900px) {
    .menu-button-links button {
        line-height:1.1;
        padding: 9px 10px
    }
}

@media screen and (min-width: 900px) {
    .menu-button-links [role=menu] {
        background:#1c1c1d;
        border-radius: 10px;
        box-shadow: 0 4px 25px #01010199;
        display: none;
        left: calc(50% - 70px);
        list-style: none;
        margin: 0 auto;
        padding: 10px 0;
        position: absolute;
        right: calc(50% - 70px);
        width: 160px
    }
}

.menu-button-links [role=menuitem] {
    border: none;
    display: block;
    margin: 0;
    padding-top: 22px;
    text-align: center
}

@media screen and (min-width: 768px) {
    .menu-button-links [role=menuitem] {
        padding-top:28px
    }
}

@media screen and (min-width: 900px) {
    .menu-button-links [role=menuitem] {
        color:var(--color-white);
        padding: 13px
    }
}

.menu .menu-button-links [role=menuitem] {
    text-align: start;
    white-space: nowrap
}

@media screen and (min-width: 900px) {
    .menu .menu-button-links [role=menuitem] {
        padding:13px 16px
    }
}

.menu-button-links button svg.down {
    transform: rotate(0)
}

@media (prefers-reduced-motion:reduce) {
    .menu-button-links button svg.down {
        animation: none;
        transition: none
    }
}

@media (prefers-reduced-motion:no-preference) {
    .menu-button-links button svg.down {
        transition: transform .3s ease-in-out
    }
}

.menu-button-links button[aria-expanded=true] svg.down {
    transform: rotate(180deg)
}

.menu-button-links button[aria-expanded=true] {
    color: var(--color-grey-dark);
    outline: none
}

@media screen and (min-width: 900px) {
    .menu-button-links button[aria-expanded=true] {
        color:var(--color-white)
    }
}

.menu-button-links button:focus,.menu-button-links button:hover {
    outline: none
}

@media screen and (min-width: 900px) {
    .menu-button-links button:focus,.menu-button-links button:hover {
        color:var(--color-white)
    }
}

.menu-button-links [role=menuitem]:focus {
    margin: 0;
    outline: none
}

@media screen and (min-width: 900px) {
    .menu-button-links [role=menuitem]:focus {
        background:#2c2c2d;
        color: #fff
    }
}

.menu__languages {
    padding: 24px 0
}

.menu__languages-label {
    position: relative
}

.menu__languages-caption {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 8px
}

@media screen and (min-width: 768px) {
    .menu__languages-caption {
        gap:10px
    }
}

.menu__languages-select {
    -webkit-appearance: none;
    appearance: none;
    inset: 0;
    max-width: 100%;
    opacity: 0;
    position: absolute;
    text-indent: 1px;
    text-overflow: ""
}

.menu__languages-select option {
    color: #000;
    max-width: 100%;
    overflow: hidden;
    width: 100%
}

.menu__languages-select:focus {
    background: transparent;
    border: none;
    color: transparent;
    opacity: 1;
    outline: none
}

.menu__languages-arrow {
    transform: rotate(-90deg)
}

@media screen and (min-width: 768px) {
    .menu__languages-icon {
        transform:scale(1.5)
    }
}

.header {
    align-items: center;
    -webkit-backdrop-filter: var(--backdrop-filter-header,blur(40px));
    backdrop-filter: var(--backdrop-filter-header,blur(40px));
    background: var(--color-header-bg,hsla(180,8%,97%,.7));
    color: var(--color-header-font,#090e13);
    display: grid;
    flex-direction: column;
    grid-template: auto/min-content 1fr min-content;
    justify-content: space-between;
    left: 0;
    margin: 0 auto;
    max-width: var(--page-max-width);
    padding: 0 var(--page-padding-inline-base);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50
}

.header__button {
    flex-direction: row;
    justify-self: flex-end
}

.header__button,.nav {
    align-items: center;
    display: flex
}

.nav {
    height: var(--header-nav-height);
    justify-content: flex-start;
    width: 100%
}

@media screen and (min-width: 900px) {
    .header__nav {
        grid-area:1/2
    }
}

.logo {
    display: flex
}

.logo__icon {
    color: var(--color-header-logo,#090e13);
    height: 20px;
    width: 87px
}

@media screen and (min-width: 768px) {
    .logo__icon {
        height:22px;
        width: 106px
    }
}

@media screen and (min-width: 1240px) {
    .logo__icon {
        height:25px;
        width: 120px
    }
}

.lang-selector {
    display: none
}

@media screen and (min-width: 900px) {
    .lang-selector {
        display:block
    }
}

.footer {
    background-color: #111;
    display: grid;
    gap: 25px;
    grid-template: auto/repeat(2,1fr);
    max-width: 100%;
    overflow: hidden;
    padding-left: var(--page-padding-inline-base);
    padding-right: var(--page-padding-inline-base);
    padding-top: 80px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .footer {
        gap:16px var(--width-cell-1);
        grid-template: auto/repeat(2,var(--width-cell-3)) var(--width-cell-8)
    }
}

@media screen and (min-width: 1240px) {
    .footer {
        grid-template:auto/var(--width-cell-3) var(--width-cell-3) repeat(2,var(--width-cell-1));
        margin: 0 auto;
        max-width: var(--page-max-width)
    }
}

.footer__logo {
    color: var(--color-gray-light)
}

.footer__list {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .048px;
    line-height: 120%
}

@media screen and (min-width: 768px) {
    .footer__list {
        padding-top:54px
    }
}

@media screen and (min-width: 1240px) {
    .footer__list {
        padding-top:0
    }
}

.footer__copyright {
    color: #494949;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    grid-area: 5/1/6/3;
    line-height: 1;
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center
}

@media screen and (min-width: 768px) {
    .footer__copyright {
        grid-area:4/1/5/4
    }
}

@media screen and (min-width: 1240px) {
    .footer__copyright {
        grid-area:4/1/5/5
    }
}

.footer__address {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    grid-area: 2/1/3/3;
    line-height: 140%
}

.footer__socials {
    grid-area: 3/1/4/3;
    margin-bottom: 24px
}

@media screen and (min-width: 768px) {
    .footer__socials {
        grid-area:2/3
    }
}

@media screen and (min-width: 1240px) {
    .footer__socials {
        grid-area:3/1
    }
}

.footer__list_legal {
    grid-area: 4/2/5/3
}

@media screen and (min-width: 768px) {
    .footer__list_legal {
        grid-area:3/2/4/3
    }
}

@media screen and (min-width: 1240px) {
    .footer__list_legal {
        grid-area:1/3/4/4
    }
}

.footer__list_company {
    grid-area: 4/1/5/2
}

@media screen and (min-width: 768px) {
    .footer__list_company {
        grid-area:3/1/4/2
    }
}

@media screen and (min-width: 1240px) {
    .footer__list_company {
        grid-area:1/4/4/5
    }
}

.footer__list-head {
    color: var(--color-gray-light);
    margin-bottom: 16px
}

.footer__list-item {
    margin-bottom: 12px
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 100;
    src: url(/fonts/graphik/Graphik-Thin-Web.eot);
    src: url(/fonts/graphik/Graphik-Thin-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Thin-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Thin-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 100;
    src: url(/fonts/graphik/Graphik-Thin\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Thin\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Thin\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Thin\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 200;
    src: url(/fonts/graphik/Graphik-Extralight-Web.eot);
    src: url(/fonts/graphik/Graphik-Extralight-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Extralight-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Extralight-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 200;
    src: url(/fonts/graphik/Graphik-Extralight\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Extralight\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Extralight\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Extralight\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 300;
    src: url(/fonts/graphik/Graphik-Light-Web.eot);
    src: url(/fonts/graphik/Graphik-Light-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Light-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Light-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 300;
    src: url(/fonts/graphik/Graphik-Light\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Light\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Light\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Light\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/graphik/Graphik-Regular-Web.eot);
    src: url(/fonts/graphik/Graphik-Regular-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Regular-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Regular-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 400;
    src: url(/fonts/graphik/Graphik-Regular\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Regular\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Regular\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Regular\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 500;
    src: url(/fonts/graphik/Graphik-Medium-Web.eot);
    src: url(/fonts/graphik/Graphik-Medium-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Medium-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Medium-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 500;
    src: url(/fonts/graphik/Graphik-Medium\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Medium\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Medium\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Medium\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 600;
    src: url(/fonts/graphik/Graphik-Semibold-Web.eot);
    src: url(/fonts/graphik/Graphik-Semibold-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Semibold-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Semibold-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 600;
    src: url(/fonts/graphik/Graphik-Semibold\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Semibold\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Semibold\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Semibold\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 700;
    src: url(/fonts/graphik/Graphik-Bold-Web.eot);
    src: url(/fonts/graphik/Graphik-Bold-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Bold-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Bold-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 700;
    src: url(/fonts/graphik/Graphik-Bold\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Bold\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Bold\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Bold\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 800;
    src: url(/fonts/graphik/Graphik-Black-Web.eot);
    src: url(/fonts/graphik/Graphik-Black-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Black-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Black-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 800;
    src: url(/fonts/graphik/Graphik-Black\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Black\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Black\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Black\\ Italic-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: normal;
    font-weight: 900;
    src: url(/fonts/graphik/Graphik-Super-Web.eot);
    src: url(/fonts/graphik/Graphik-Super-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Super-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Super-Web.ttf) format("truetype")
}

@font-face {
    font-family: Graphik LC Web;
    font-style: italic;
    font-weight: 900;
    src: url(/fonts/graphik/Graphik-Super\\ Italic-Web.eot);
    src: url(/fonts/graphik/Graphik-Super\\ Italic-Web.woff2) format("woff2"),url(/fonts/graphik/Graphik-Super\\ Italic-Web.woff) format("woff"),url(/fonts/graphik/Graphik-Super\\ Italic-Web.ttf) format("truetype")
}

:root {
    --color-black: #010101;
    --color-grey-dark: #2c2c2d;
    --color-gray-medium: #444445;
    --color-gray: #6c6c70;
    --color-gray-light: #aaaaaf;
    --color-white: #f0f0f0;
    --color-page-bg: var(--color-black);
    --color-page-font: var(--color-gray);
    --color-breadcrumbs-text: hsla(0,0%,100%,.5);
    --color-breadcrumbs-separator: hsla(0,0%,100%,.05);
    --color-header-bg: rgba(0,0,0,.1);
    --color-header-font: #6c6c70;
    --color-header-font-selected: var(--color-white);
    --color-header-font-hover: #f0f0f0;
    --color-header-logo: var(--color-white);
    --color-header-burger-button: #fff;
    --color-header-menu-aside: #010101;
    --color-body-bg: #f8f9f9;
    --color-button-primary-bg: #000;
    --color-button-primary-bg-hover: #333;
    --color-button-primary-font: #fff;
    --color-footer-logo: #090e13;
    --color-footer-head-bg: #090e13;
    --color-accent-first: #1ace80;
    --color-accent-second: #007aff;
    --backdrop-filter-header: blur(20px);
    --backdrop-filter-header-button: blur(30px);
    --header-nav-height: 54px;
    --page-padding-inline-base: 24px;
    --page-max-width: 1728px;
    --cell-numbers: 2;
    --page-padding-inline: var(--page-padding-inline-base);
    --gradient-button: linear-gradient(90deg,#09f,#6cf);
    --gradient-head-text: linear-gradient(90deg,#525255,#f0f0f0);
    --gradient-text: linear-gradient(90deg,#f0f0f0,hsla(0,0%,94%,.1) 100%);
    --gradient-border: linear-gradient(270deg,rgba(88,88,88,0),#585858 53.65%,rgba(88,88,88,0))
}

@media screen and (min-width: 768px) {
    :root {
        --cell-numbers:16;
        --width-cell-1: calc((min(100vw, var(--page-max-width)) - (2*var(--page-padding-inline-base)))/var(--cell-numbers));
        --width-cell-2: calc(var(--width-cell-1)*2);
        --width-cell-3: calc(var(--width-cell-1)*3);
        --width-cell-4: calc(var(--width-cell-1)*4);
        --width-cell-5: calc(var(--width-cell-1)*5);
        --width-cell-6: calc(var(--width-cell-1)*6);
        --width-cell-7: calc(var(--width-cell-1)*7);
        --width-cell-8: calc(var(--width-cell-1)*8);
        --width-cell-10: calc(var(--width-cell-1)*10);
        --width-cell-11: calc(var(--width-cell-1)*11);
        --width-cell-12: calc(var(--width-cell-1)*12);
        --width-cell-14: calc(var(--width-cell-1)*14);
        --width-cell-16: calc(var(--width-cell-1)*16);
        --page-padding-inline: calc(var(--page-padding-inline-base) + var(--width-cell-1))
    }
}

@media screen and (min-width: 1240px) {
    :root {
        --header-nav-height:60px;
        --page-padding-inline-base: 60px;
        --cell-numbers: 12
    }
}

.button {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    justify-content: center;
    letter-spacing: .1px;
    line-height: 1.1;
    padding: 16px 26px;
    text-align: center
}

.button_full {
    width: 100%
}

.button_primary {
    background: linear-gradient(90deg,rgba(102,204,255,0),rgba(102,204,255,.7)),#09f;
    color: #fff;
    opacity: .9
}

.button_primary:focus,.button_primary:hover {
    background: #09f
}

.button_primary.disabled {
    background: linear-gradient(90deg,rgba(102,204,255,0),rgba(102,204,255,.7)),#09f;
    cursor: not-allowed;
    opacity: .5
}

.button.button__loading {
    color: transparent;
    position: relative
}

@media screen and (prefers-reduced-motion:reduce) {
    .button.button__loading:after {
        animation: none;
        border: 3px solid transparent;
        border-radius: 50%;
        border-top: 3px solid var(--color-white);
        color: transparent;
        content: "";
        display: flex;
        height: 24px;
        inset: 0;
        margin: auto;
        position: absolute;
        width: 24px
    }
}

.button.button__loading:after {
    animation: spin 2s linear infinite;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top: 3px solid var(--color-white);
    color: transparent;
    content: "";
    display: flex;
    height: 24px;
    inset: 0;
    margin: auto;
    position: absolute;
    width: 24px
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.link_primary {
    background: var(--gradient-button,#09f);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    padding: 10px 14px;
    text-shadow: 0 0 30px rgba(102,204,255,.2);
    white-space: nowrap;
    -webkit-text-fill-color: transparent
}

@media screen and (min-width: 768px) {
    .link_primary {
        font-size:15px
    }
}

@media screen and (min-width: 1240px) {
    .link_primary {
        font-size:16px
    }
}

.link_primary:focus,.link_primary:hover {
    --gradient-button: #6cf
}

.link_white {
    color: var(--color-white);
    text-decoration: underline
}

.link_white:focus,.link_white:hover {
    background: var(--gradient-button,#09f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.text_white {
    color: var(--color-white)
}

.text_accent {
    color: var(--color-accent)
}

.text_gradient {
    background: var(--gradient-head-text);
    -webkit-background-clip: text;
    background-clip: text
}

.text_gradient,.text_gradient-text {
    -webkit-text-fill-color: transparent
}

.text_gradient-text {
    background: var(--gradient-text),var(--color-gray);
    -webkit-background-clip: text;
    background-clip: text
}

.text_gradient_accent {
    background: var(--gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.text_small {
    letter-spacing: .018px;
    line-height: 1.2
}

.text_base,.text_small {
    font-size: 18px;
    font-style: normal;
    font-weight: 500
}

.text_base {
    letter-spacing: .2px;
    line-height: 120%
}

@media screen and (min-width: 768px) {
    .text_base {
        font-size:20px;
        letter-spacing: .3px
    }
}

@media screen and (min-width: 1240px) {
    .text_base {
        font-size:21px
    }
}

.text_center {
    text-align: center
}

.label_small {
    color: var(--color-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .08px;
    line-height: 120%
}

html {
    font-family: Graphik LC Web,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

body {
    background-color: var(--color-page-bg);
    color: var(--color-page-font);
    display: grid;
    grid-auto-rows: 0;
    grid-template: min-content auto min-content/auto;
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    white-space: pre-line;
    width: 100vw
}

ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: inherit
}

a,div,footer,h1,h2,h3,h4,header,input,label,li,main,p,section,ul {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.container {
    max-width: 100%;
    padding-left: var(--page-padding-inline);
    padding-right: var(--page-padding-inline);
    width: 100vw
}

.visually-hidden {
    border: 0;
    height: 1px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.scrollable-wrapper {
    left: calc(var(--page-padding-inline)*-1);
    margin: 0;
    overflow: scroll hidden;
    padding: 0;
    position: relative;
    scrollbar-width: none;
    width: calc(100% + var(--page-padding-inline)*2)
}

.scrollable-wrapper::-webkit-scrollbar {
    display: none
}

@media screen and (min-width: 768px) {
    .scrollable-wrapper {
        left:auto;
        margin: 0;
        max-width: 100%;
        overflow: inherit;
        position: static;
        width: auto
    }
}

.scrollable {
    margin: 0 var(--page-padding-inline);
    padding: 0;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (min-width: 768px) {
    .scrollable {
        margin:0;
        width: 100%
    }
}

.nowrap {
    white-space: nowrap
}

.only-desktop {
    display: none
}

@media screen and (min-width: 1240px) {
    .only-desktop {
        display:initial
    }

    .only-not-desktop {
        display: none
    }
}

.only-not-mobile {
    display: none
}

@media screen and (min-width: 768px) {
    .only-not-mobile {
        display:inherit
    }

    .only-mobile {
        display: none
    }
}

.only-tablet {
    display: none
}

@media screen and (min-width: 768px) {
    .only-tablet {
        display:initial
    }
}

@media screen and (min-width: 1240px) {
    .only-tablet {
        display:none
    }
}

picture {
    height: auto;
    max-width: 100%
}

.sticky {
    position: sticky
}

.section-border {
    position: relative
}

.section-border:before {
    background: var(--gradient-border);
    content: "";
    display: block;
    height: 1px;
    margin-left: calc(var(--page-padding-inline)*-1);
    position: absolute;
    top: 0;
    width: 100%
}

button,label {
    cursor: pointer
}
