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

ol[class], ul[class] {
    padding: 0
}

ul:not([class]) {
    max-width: 75ch
}

ol:not([class]) {
    max-width: 75ch;
    counter-reset: item
}

ol:not([class]) li {
    display: block
}

ol:not([class]) li:before {
    content: counters(item, ".") ". ";
    counter-increment: item
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

ol[class], ul[class] {
    list-style: none
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

article > * + * {
    margin-top: 1em
}

button, input, select, textarea {
    font: inherit
}

:root {
    --prim: 215;
    --lightdark: var(--prim), 0%, 100%;
    --lightlight: var(--prim), 0%, 100%;
    --darklight: var(--prim), 0%, 20%;
    --darksecond: var(--prim), 0%, 20%;
    --second: var(--prim), 0%, 90%;
    --accentlight: var(--prim), 52%, 44%;
    --accent: var(--prim), 90%, 19%;
    --on-accent: var(--prim), 6%, 5%;
    --err: 0, 80%, 35%;
    --on-err: 356, 0%, 100%;
    --brightness: brightness(1)
}

:root[data-theme=dark] {
    --lightdark: var(--prim), 0%, 20%;
    --lightlight: var(--prim), 0%, 80%;
    --darklight: var(--prim), 0%, 80%;
    --darksecond: var(--prim), 0%, 30%;
    --accentlight: var(--prim), 0%, 80%;
    --second: var(--prim), 0%, 30%;
    --accent: var(--prim), 52%, 44%;
    --on-accent: var(--prim), 0%, 75%;
    --err: 0, 60%, 45%;
    --on-err: 356, 0%, 0%;
    --brightness: brightness(0.8)
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background-color: hsl(0deg, 0%, 50%)
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0deg, 0%, 70%)
}

* {
    scrollbar-width: thin;
    scrollbar-color: hsl(0deg, 0%, 50%) hsl(0deg, 0%, 70%)
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h4, h5, h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 900
}

.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child, h1:first-child, h2:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0
}

.h1 + .h2, h1 + h2 {
    margin-top: 1.2em
}

.h2 + .h3, h2 + h3 {
    margin-top: 1.3em
}

.h3 + .h4, h3 + h4 {
    margin-top: 1.4em
}

.h4 + .h5, h4 + h5 {
    margin-top: 1.5em
}

.h5 + .h6, h5 + h6 {
    margin-top: 2em
}

.h1, h1 {
    font-size: calc(26px + 22 * ((100vw - 375px) / 1545));
    margin-bottom: calc(17px + -5 * ((100vw - 375px) / 1545));
    margin-top: calc(50px + -1 * ((100vw - 375px) / 1545));
    line-height: 1.2
}

.h2, h2 {
    font-size: calc(26px + 22 * ((100vw - 375px) / 1545));
    margin-bottom: calc(17px + -5 * ((100vw - 375px) / 1545));
    margin-top: calc(50px + -1 * ((100vw - 375px) / 1545));
    line-height: 1.2
}

.h3, h3 {
    font-size: calc(20px + 5 * ((100vw - 375px) / 1545));
    margin-bottom: calc(19px + -4 * ((100vw - 375px) / 1545));
    margin-top: calc(48px + -2 * ((100vw - 375px) / 1545));
    line-height: 1.3
}

.h4, h4 {
    font-size: calc(18px + 2 * ((100vw - 375px) / 1545));
    margin-bottom: calc(21px + -2 * ((100vw - 375px) / 1545));
    margin-top: calc(43px + -5 * ((100vw - 375px) / 1545));
    line-height: 1.4
}

.h5, h5 {
    font-size: calc(13px + 3 * ((100vw - 375px) / 1545));
    line-height: 1.5;
    margin: 2.25em 0 1.5em
}

.h6, h6 {
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 1.6;
    margin: 2em 0 .5em;
    text-transform: uppercase
}

p:not([class]) {
    margin: 0 0 1.5em;
    max-width: 75ch
}

p:not([class]):last-child {
    margin: 0
}

a:not([class]) {
    color: currentColor;
    transition: color .3s
}

::-moz-selection {
    background-color: hsl(var(--darklight));
    color: hsl(var(--lightdark))
}

::selection {
    background-color: hsl(var(--darklight));
    color: hsl(var(--lightdark))
}

.title {
    position: relative;
    padding-left: calc(28px + 22 * ((100vw - 375px) / 1545));
    margin-bottom: calc(20px + 30 * ((100vw - 375px) / 1545))
}

.title::before {
    content: "";
    position: absolute;
    top: calc(7px + 7 * ((100vw - 375px) / 1545));
    left: 0;
    width: calc(17px + 13 * ((100vw - 375px) / 1545));
    height: calc(17px + 13 * ((100vw - 375px) / 1545));
    background-color: hsl(var(--accent));
    border-radius: 50%
}

html {
    height: 100%
}

body {
    line-height: 1.5;
    font-size: calc(16px + 2 * ((100vw - 375px) / 1545));
    background-color: hsl(var(--lightdark));
    color: hsl(var(--darklight));
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    height: 100%;
    max-width: 1920px;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed
}

body.lock {
    overflow: hidden
}

body.lock .main {
    filter: blur(10px)
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%
}

.main {
    flex: 1 0 auto;
    position: relative;
    transition: filter .8s ease
}

.container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 3.125%;
    position: relative;
    width: 100%
}

article, section {
    position: relative;
    padding-top: calc(50px + 50 * ((100vw - 375px) / 1545));
    padding-bottom: calc(50px + 50 * ((100vw - 375px) / 1545))
}

.notfound {
    padding-top: 180px;
    text-align: center;
    width: 100%
}

.notfound span {
    font-size: calc(80px + 120 * ((100vw - 375px) / 1545));
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--accent))
}

.notfound b {
    display: block;
    margin-bottom: 40px
}

a.btn {
    text-decoration: none
}

button.btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0
}

a.btn, button.btn {
    align-items: center;
    background-color: hsl(var(--accent));
    border-radius: 25px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .18);
    color: hsl(var(--lightlight));
    display: inline-flex;
    justify-content: center;
    height: 50px;
    width: 270px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: 220ms all ease-in-out
}

a.btn:active, a.btn:hover, button.btn:active, button.btn:hover {
    background-color: hsl(var(--darklight));
    color: hsl(var(--lightdark))
}

a.btn:focus, button.btn:focus {
    box-shadow: 0 0 0 4px hsl(var(--accent));
    outline-color: transparent;
    outline-style: solid
}

a.btn__transparent, button.btn__transparent {
    background-color: transparent;
    border: 2px solid hsl(var(--darklight));
    color: hsl(var(--darklight))
}

a.btn__transparent:active, a.btn__transparent:hover, button.btn__transparent:active, button.btn__transparent:hover {
    color: hsl(var(--lightdark))
}

a.btn__yes, button.btn__yes {
    border-color: hsl(var(--accent));
    color: hsl(var(--lightlight))
}

a.btn__yes:active, a.btn__yes:hover, button.btn__yes:active, button.btn__yes:hover {
    background-color: hsl(var(--darklight));
    border: 2px solid hsl(var(--darklight));
    color: hsl(var(--lightdark))
}

a.btn__yes:focus, button.btn__yes:focus {
    box-shadow: 0 0 0 4px hsla(var(--accent), .8);
    outline-color: transparent;
    outline-style: solid
}

a.btn__no, button.btn__no {
    background-color: transparent;
    border: 2px solid hsl(var(--err));
    color: hsl(var(--err))
}

a.btn__no:active, a.btn__no:hover, button.btn__no:active, button.btn__no:hover {
    background-color: hsl(var(--err));
    border: 2px solid hsl(var(--err));
    color: hsl(var(--on-err))
}

a.btn__no:focus, button.btn__no:focus {
    box-shadow: 0 0 0 4px hsla(var(--err), .8);
    outline-color: transparent;
    outline-style: solid
}

a.btn--block, button.btn--block {
    width: 100%
}

.ppcookie {
    background-color: hsl(var(--second), .98);
    border-top: 2px solid hsl(var(--darklight));
    border-bottom: 2px solid hsl(var(--darklight));
    bottom: 0;
    color: hsl(var(--darklight));
    left: 0;
    padding: 20px 3.125%;
    position: fixed;
    width: 100%;
    z-index: 10
}

.ppcookie__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.ppcookie__text {
    flex: 0 1 100%;
    text-align: center
}

.ppcookie__text .politic-txt {
    margin: 0;
    max-width: 100%
}

.ppcookie__text .politic-link {
    color: currentColor;
    display: inline-block;
    font-weight: 700;
    margin: 10px 0;
    text-decoration: underline;
    transition: color .3s ease-out
}

.ppcookie__text .politic-link:hover {
    color: hsl(var(--accent))
}

.ppcookie__btn {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    justify-content: center
}

.ppcookie__btn .btn {
    margin: 10px 10px 0
}

.pp-icon {
    fill: none;
    height: 30px;
    margin: 0 5px 0 0;
    position: relative;
    stroke-width: 1px;
    stroke: hsl(var(--darklight));
    transition: stroke .3s ease;
    width: 30px
}

.pp-icon:hover {
    stroke: hsl(var(--accent))
}

.breadcrumbs {
    position: relative;
    margin: 100px 0 0 0;
    padding-bottom: 3px;
}

.breadcrumbs ol {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none
}

.breadcrumbs ol li {
    display: inline-block;
    font-size: 12px;
    line-height: 1.2;
    list-style: none
}

.breadcrumbs ol li a {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    transition: top .3s ease;
    left: 0;
    z-index: 10
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--second));
    z-index: 3;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.header .container {
    position: relative;
    display: flex;
    height: 80px;
    align-items: flex-end;
    padding: 20px 3.125%
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: hsl(var(--accent));
    flex: 0 0 250px;
    font-size: 20px;
    z-index: 3;
    font-weight: 900;
    line-height: 1;
    bottom: -3px;
    margin-right: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    padding-top: 25px
}

.header__links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end
}

.header__menu {
    position: fixed;
    background-color: hsla(var(--second), .95);
    width: 100%;
    height: 100vh;
    z-index: 1;
    top: -100%;
    visibility: hidden;
    opacity: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .8s ease-in-out
}

.header__menu.active {
    opacity: 1;
    top: 0;
    visibility: visible
}

.header__list {
    position: relative;
    top: 50px
}

.header__list li {
    margin: 0 10px
}

.header__list li.current-menu-item a, .header__list li:hover a {
    color: hsl(var(--accent))
}

.header__list li.current-menu-item a::before, .header__list li:hover a::before {
    width: 50%;
    background-color: hsl(var(--accent))
}

.header__list li a {
    text-transform: uppercase;
    font-size: 18px;
    display: inline-flex;
    text-decoration: none;
    padding: 15px 0 10px;
    font-weight: 600;
    position: relative;
    transition: all .3s ease
}

.header__list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: hsl(var(--darklight));
    border-radius: 5px;
    transition: all .3s ease
}

.header__theme {
    background: 0 0;
    border: 2px solid hsl(var(--darklight));
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 30px;
    line-height: 0;
    margin: 0 5px 0 0;
    padding: 0;
    position: relative;
    width: 30px;
    transition: all .3s ease;
    z-index: 3
}

.header__theme:hover {
    border-color: hsl(var(--accent))
}

.header__theme:hover svg {
    stroke: hsl(var(--accent))
}

.header__theme span {
    display: block
}

.header__theme svg {
    stroke: hsl(var(--darklight));
    stroke-width: 2px;
    margin: 0 !important;
    width: 20px;
    height: 20px
}

.header__lang {
    margin-left: 48px;
}

.header__lang a {
    display: inline-block;
    font-size: 10px;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    z-index: 3;
    border: 2px solid hsl(var(--darklight));
    color: hsl(var(--darklight));
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 26px;
    transition: all .3s ease
}

.header__lang a.active, .header__lang a:hover {
    color: #1db2e7;
    border-color: #1db2e7;
}

.header__burger {
    cursor: pointer;
    display: block;
    height: 20px;
    margin: 0;
    padding: 12px 0;
    position: relative;
    width: 30px;
    z-index: 3
}

.header__burger span {
    background-color: hsl(var(--darklight));
    height: 2px;
    left: 0;
    position: absolute;
    top: 11px;
    transition: all .3s ease;
    transform: scale(1);
    width: 30px
}

.header__burger:after, .header__burger:before {
    background-color: hsl(var(--darklight));
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .3s ease 0s;
    width: 30px
}

.header__burger:before {
    top: 0
}

.header__burger:after {
    bottom: 0
}

.header__burger.active span {
    transform: scale(0)
}

.header__burger.active:before {
    top: 12px;
    transform: rotate(45deg);
    width: 100%;
    left: 0
}

.header__burger.active:after {
    bottom: 10px;
    transform: rotate(-45deg);
    width: 100%;
    left: 0
}

.footer {
    position: relative;
    border-top: 1px solid hsl(var(--darklight))
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.footer__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex
}

.footer__item {
    margin: 30px 0;
    font-size: 16px;
    display: block
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: hsl(var(--accent));
    flex: 0 0 105px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    bottom: -3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin: 10px 0 25px;
    max-width: 265px;
}

.footer__link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: hsl(var(--darklight));
    transition: color .3s ease
}

.footer__link:hover {
    color: hsl(var(--accent))
}

.footer__links {
    display: block;
    margin: 0;
    text-decoration: none;
    font-weight: 600;
    color: hsl(var(--darklight));
    transition: color .3s ease
}

.footer__links:hover {
    color: hsl(var(--accent))
}

.footer__social-link {
    text-decoration: none;
    transition: color .3s ease
}

.footer__social-link:hover {
    color: hsl(var(--accent))
}

.footer__text a {
    font-weight: 600;
    color: hsl(var(--darklight));
    transition: color .3s ease;
}

.footer__text a:hover {
    color: hsl(var(--accent));
}

.copyright {
    position: relative;
    width: 100%;
    background-color: hsl(var(--darksecond));
    color: hsl(var(--lightlight));
    font-size: 11px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 10px
}

.copyright .dev {
    padding: 5px 20px;
    display: flex;
    align-items: center
}

.copyright .dev a {
    display: flex;
    align-items: center;
    color: hsl(var(--on-header));
    text-decoration: none;
    margin-bottom: 0;
    font-size: 10px
}

.copyright .dev a:hover {
    color: hsl(var(--accent))
}

.copyright .dev a:hover .pp {
    fill: hsl(var(--accent))
}

.copyright .dev a .pp {
    fill: currentColor;
    width: 18px;
    height: 18px;
    transition: fill .3s ease;
    position: relative;
    margin: 0 4px
}

.top {
    background-color: hsl(var(--darklight));
    border-radius: 25px;
    bottom: 10px;
    cursor: pointer;
    height: 40px;
    opacity: .2;
    position: fixed;
    right: -100px;
    transition: all .3s ease;
    width: 40px;
    z-index: 2
}

.top::after, .top::before {
    background-color: hsl(var(--lightdark));
    content: "";
    position: absolute
}

.top::before {
    height: 40%;
    left: 36%;
    margin-left: -1px;
    top: 31%;
    transform: rotate(45deg);
    width: 3px
}

.top::after {
    height: 3px;
    left: 41%;
    margin-top: -1px;
    top: 50%;
    transform: rotate(45deg);
    width: 40%
}

.top:hover {
    opacity: 1;
    background-color: hsl(var(--accent))
}

.top.active {
    right: 3.125%
}

::-moz-placeholder {
    color: hsl(var(--darklight), .6)
}

:-ms-input-placeholder {
    color: hsl(var(--darklight), .6)
}

::placeholder {
    color: hsl(var(--darklight), .6)
}

abbr {
    color: hsl(var(--err))
}

.form {
    margin: 0 auto;
    position: relative
}

.form__row2 {
    display: block;
    margin: 0
}

.form__col2 {
    max-width: 100%;
    width: 100%;
    padding: 0
}

.form__row3 {
    margin: 0;
    display: block
}

.form__col3 {
    max-width: 100%;
    width: 100%;
    padding: 0
}

.form__fieldset {
    border-radius: 25px;
    border-width: 2px;
    border-style: solid;
    border-color: hsl(var(--darklight));
    margin: 0 0 20px 0;
    padding: 30px 15px 40px;
    position: relative
}

.form__legend {
    font-style: italic;
    font-weight: 700;
    color: hsl(var(--on-bg));
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.form .formgroup {
    padding-bottom: 20px;
    position: relative
}

.form__input-label {
    display: block;
    color: hsl(var(--darklight));
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.form input[type=email], .form input[type=password], .form input[type=tel], .form input[type=text], .form textarea {
    background-color: hsl(var(--lightdark));
    border-color: hsl(var(--darklight));
    border-radius: 25px;
    border-style: solid;
    border-width: 2px;
    color: hsl(var(--darklight));
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: inherit;
    height: 50px;
    outline: 0;
    padding: .375rem .75rem;
    position: relative;
    text-align: center;
    transition: all .3s ease;
    width: 100%
}

.form input[type=email]:hover, .form input[type=password]:hover, .form input[type=tel]:hover, .form input[type=text]:hover, .form textarea:hover {
    background-color: hsl(var(--lightdark), .1)
}

.form input[type=email]:focus, .form input[type=password]:focus, .form input[type=tel]:focus, .form input[type=text]:focus, .form textarea:focus {
    border-color: hsl(var(--accent));
    background-color: hsl(var(--lightdark), .1)
}

.form input[type=email].error, .form input[type=password].error, .form input[type=tel].error, .form input[type=text].error, .form textarea.error {
    border-color: hsl(var(--err))
}

.form textarea {
    min-height: calc(50px * 2);
    padding: .375rem .75rem;
    resize: vertical
}

span.error {
    color: hsl(var(--err)) !important;
    display: block;
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    text-align: center
}

.success {
    align-items: center;
    background-color: hsl(var(--accent));
    border-radius: 25px;
    color: hsl(var(--lightlight));
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    left: 50%;
    opacity: 0;
    padding: 32px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: scale(0);
    transition: all .3s ease;
    visibility: hidden;
    z-index: 3
}

.success.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translate(-50%, -50%);
    width: 100%;
    height: 100%
}

#s-message {
    display: none
}

.hero {
    height: 100%;
    padding: 0
}

.hero__title {
    font-weight: 900;
    font-size: calc(52 * ((100vw - 375px) / 1545));
    position: relative;
    margin-bottom: calc(5px + 5 * ((100vw - 375px) / 1545))
}

.hero__title span {
    display: block;
    font-size: calc(17.5px + 14.5 * ((100vw - 375px) / 1545));
    margin-top: calc(20px + 20 * ((100vw - 375px) / 1545));
    font-weight: 600;
    text-transform: uppercase
}

.hero__subtitle {
    font-size: calc(14.2px + 10.2 * ((100vw - 375px) / 1545));
    font-weight: 600
}

.hero__frame {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    flex-wrap: wrap
}

.hero__block {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 100px 0;
    position: relative;
    max-width: calc(400px + 180 * ((100vw - 375px) / 1545))
}

.hero__img {
    padding: 100px 0 20px;
    height: 100%
}

.hero__img img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top right;
    object-position: top right;
    width: 100%;
    height: 100%
}

.hero__btns {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.hero__btns .btn {
    margin: 10px 5px 10px 0
}

.scrolldown {
    bottom: 15px;
    width: 21px;
    height: 63px;
    left: 50%;
    position: absolute;
    z-index: 2;
    display: block;
    cursor: pointer
}

.scrolldown:hover span {
    border-bottom: 2px solid hsl(var(--accent));
    border-left: 2px solid hsl(var(--accent))
}

.scrolldown span {
    -webkit-animation: down 2s infinite;
    animation: down 2s infinite;
    border-bottom: 2px solid hsl(var(--darklight));
    border-left: 2px solid hsl(var(--darklight));
    display: block;
    height: 24px;
    opacity: 0;
    position: absolute;
    top: 0;
    transform-origin: 0 100%;
    transform: rotate(-45deg);
    width: 24px;
    transition: linear .5s all
}

.scrolldown span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.scrolldown span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s
}

.scrolldown span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

@-webkit-keyframes down {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes down {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.intro {
    background-color: hsl(var(--second))
}

.intro__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    align-items: center
}

.intro__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0
}

.intro__media {
    position: relative;
    padding: 0 0 20px 20px
}

.intro__media::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 0;
    left: 0;
    background-color: hsl(var(--accent));
    border-radius: 20px
}

.intro__img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.intro__text {
    padding-top: 30px
}

.video-responsive {
    height: 0;
    margin-top: 40px;
    outline: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 20px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.video-responsive embed, .video-responsive iframe, .video-responsive object {
    border-width: 0;
    height: 100%;
    left: 0;
    outline: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.report__text {
    margin-bottom: 40px
}

.report__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.report__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: flex
}

.report__item {
    position: relative;
    padding: 0 0 20px 20px;
    width: 100%
}

.report__item::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 0;
    left: 0;
    background-color: hsl(var(--accent));
    border-radius: 20px
}

.report__desc {
    background-color: hsl(var(--second));
    position: relative;
    padding: 15px;
    border-radius: 20px;
    height: 100%;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.report__desc .numscroller {
    font-size: 48px;
    font-weight: 700;
    display: block
}

.activities-list {
    font-weight: 700;
    margin-bottom: 10px
}

.activities-list a {
    transition: color .3s ease
}

.activities-list a:hover {
    color: hsl(var(--accent))
}

.get-help {
    background-color: hsl(var(--second))
}

.get-help__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.get-help__left {
    flex: 0 1 800px;
    padding-right: 20px;
    margin: 0 0 40px 0
}

.get-help__phone {
    font-size: calc(20px + 12 * ((100vw - 375px) / 1545));
    text-decoration: none;
    font-weight: 900;
    color: hsl(var(--darklight));
    margin: 20px 0;
    display: inline-block;
    transition: color .3s ease
}

.get-help__phone:hover {
    color: hsl(var(--accent))
}

.get-help__right {
    margin: 0 auto
}

.events__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center
}

.events__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 0 40px;
    display: flex
}

.events__item {
    background-color: hsl(var(--second));
    border-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    text-decoration: none;
    color: hsl(var(--darklight));
    margin: 0 auto;
    transition: all .3s ease;
    width: 100%
}

.events__item:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--lightlight))
}

.events__item:hover img {
    transform: scale(1.1)
}

.events__title {
    font-size: calc(16px + 2 * ((100vw - 375px) / 1545));
    padding: 20px 15px;
    margin: 0;
    font-weight: 600
}

.events__img {
    overflow: hidden;
    padding-top: 75%;
    position: relative
}

.events__img img {
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform .3s ease
}

.cta {
    text-align: center;
    margin-top: 20px
}

.need-help {
    background-color: hsl(var(--second))
}

.need-help__desc {
    text-transform: uppercase;
    margin-bottom: 40px
}

.need-help__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.need-help__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    margin-bottom: 40px
}

.need-help__col:last-child {
    margin-bottom: 0
}

.need-help__item {
    background-color: hsl(var(--lightdark));
    padding: 30px 3.125%;
    border-radius: 20px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    width: 100%
}

.need-help__accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--lightlight));
    padding: 30px 3.125%;
    border-radius: 20px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    width: 100%;
    margin: 40px 0
}

.partners {
    background-color: hsl(var(--second))
}

.partners__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.partners__item {
    margin: 20px;
    text-align: center;
    max-width: 330px;
    display: flex;
    align-items: center;
    background-color: hsl(var(--lightlight));
    padding: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    border-radius: 20px;
    text-decoration: none;
    color: hsl(var(--darksecond));
    transition: color .3s ease
}

.partners__item:hover {
    color: hsl(var(--accent))
}

.partners__name {
    font-weight: 600;
    font-size: 16px;
    margin-top: 25px;
    display: block
}

.contacts {
    padding-bottom: 0;
}

.contacts p:last-child {
    margin-bottom: 24px;
}

.contacts__map {
    filter: var(--brightness) drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.contacts__map iframe {
    width: 100%;
    height: 450px;
    border: none
}

.team {
    background-color: hsl(var(--second));
    padding-bottom: calc(0px + 40 * ((100vw - 375px) / 1545))
}

.team__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.team__item {
    max-width: 380px;
    width: 100%;
    margin: 0 20px 60px;
    text-align: center
}

.team__photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 40px;
    border-radius: 50%;
    position: relative
}

.team__photo::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -5px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: hsl(var(--accent))
}

.team__photo img {
    position: relative;
    border-radius: 50%;
    filter: var(--brightness) drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.team__surname {
    text-transform: uppercase;
    font-weight: 700
}

.team__name {
    font-weight: 700;
    margin-bottom: 20px
}

.politic {
    background-color: hsl(var(--second))
}

.politic .container {
    max-width: 800px;
    background-color: hsl(var(--lightdark));
    padding: 80px 3.125%;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    border-radius: 20px;
    margin-top: 60px
}

.politic h1 {
    margin-bottom: 1.5em;
}

.offices__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

.offices__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    margin-bottom: 40px
}

.offices__item {
    width: 100%;
    margin-bottom: 40px
}

.offices__map {
    padding: 0 0 2px 10px;
    position: relative;
    width: 100%;
    margin-bottom: 20px
}

.offices__map::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    left: 0;
    bottom: 0;
    background-color: hsl(var(--accent));
    border-radius: 20px
}

.offices__map iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 2;
    filter: var(--brightness) drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.offices__place {
    font-weight: 600
}

.warehouses {
    background-color: hsl(var(--second))
}

.article {
    position: relative;
    background-color: hsl(var(--second));
    margin: 0;
    padding: 50px 0
}

.article__container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    background-color: hsl(var(--lightdark));
    padding-top: calc(30px + 20 * ((100vw - 375px) / 1545));
    padding-left: calc(10px + 86 * ((100vw - 375px) / 1545));
    padding-bottom: calc(30px + 20 * ((100vw - 375px) / 1545));
    padding-right: calc(10px + 86 * ((100vw - 375px) / 1545));
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.article__title {
    position: relative;
    font-weight: 600;
    font-size: calc(20px + 6 * ((100vw - 375px) / 1545));
    padding-left: calc(28px + 4 * ((100vw - 375px) / 1545));
    margin-bottom: calc(20px + 10 * ((100vw - 375px) / 1545))
}

.article__title::before {
    content: "";
    position: absolute;
    top: calc(4px + 1 * ((100vw - 375px) / 1545));
    left: 0;
    width: calc(17px + 3 * ((100vw - 375px) / 1545));
    height: calc(17px + 3 * ((100vw - 375px) / 1545));
    background-color: hsl(var(--accent));
    border-radius: 50%
}

.article__img {
    margin-bottom: 40px
}

.article__img img {
    filter: var(--brightness) drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    border-radius: 20px
}

.article .video-responsive {
    margin-bottom: 40px
}

.alignleft {
    float: left;
    margin: 0 15px 28px 0;
}

.alignright {
    float: right;
    margin: 0 0 28px 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 28px;
}

.share {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end
}

.share ul {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
    flex: 0 0 130px
}

.share ul li {
    display: inline-block
}

.share ul li a {
    display: inline-block;
    margin-left: 8px
}

body.hidden-scroll {
    overflow: hidden
}

.sl-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: hsl(var(--lightdark));
    opacity: .95;
    display: none;
    z-index: 1035
}

.sl-wrapper {
    z-index: 1040;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed
}

.sl-wrapper * {
    box-sizing: border-box
}

.sl-wrapper button {
    border: 0 none;
    background: 0 0;
    font-size: 28px;
    padding: 0;
    cursor: pointer
}

.sl-wrapper button:hover {
    opacity: .7
}

.sl-wrapper .sl-close {
    display: none;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 10060;
    margin-top: -14px;
    margin-right: -14px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-family: Montserrat, sans-serif;
    color: hsl(var(--darklight));
    font-size: 3rem
}

.sl-wrapper .sl-counter {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1060;
    color: hsl(var(--darklight));
    font-size: 1rem
}

.sl-wrapper .sl-navigation {
    width: 100%;
    display: none
}

.sl-wrapper .sl-navigation button {
    position: fixed;
    top: 50%;
    margin-top: -22px;
    height: 44px;
    width: 22px;
    line-height: 44px;
    text-align: center;
    display: block;
    z-index: 10060;
    font-family: inherit;
    color: hsl(var(--darklight))
}

.sl-wrapper .sl-navigation button.sl-next {
    right: 5px;
    font-size: 2rem
}

.sl-wrapper .sl-navigation button.sl-prev {
    left: 5px;
    font-size: 2rem
}

.sl-wrapper.sl-dir-rtl .sl-navigation {
    direction: ltr
}

.sl-wrapper .sl-image {
    position: fixed;
    touch-action: none;
    z-index: 10000
}

.sl-wrapper .sl-image img {
    margin: 0;
    padding: 0;
    display: block;
    border: 0 none;
    width: 100%;
    height: auto;
    opacity: 1
}

.sl-wrapper .sl-image iframe {
    background: #000;
    border: 0 none
}

.sl-wrapper .sl-image .sl-caption {
    display: none;
    padding: 10px;
    color: hsl(var(--darklight));
    background: hsla(var(--lightdark), .95);
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.sl-wrapper .sl-image .sl-caption.pos-top {
    bottom: auto;
    top: 0
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
    bottom: auto
}

.sl-wrapper .sl-image .sl-download {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #000;
    z-index: 1060
}

.sl-spinner {
    display: none;
    border: 5px solid #333;
    border-radius: 40px;
    height: 40px;
    left: 50%;
    margin: -20px 0 0 -20px;
    opacity: 0;
    position: fixed;
    top: 50%;
    width: 40px;
    z-index: 1007;
    -webkit-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite
}

.sl-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.sl-transition {
    transition: transform ease .2s
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

@keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

.gallery__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.gallery__col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0
}

.gallery__item {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
    filter: var(--brightness) drop-shadow(0 4px 4px rgba(0, 0, 0, .25))
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1)
}

.gallery__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .4s ease-in-out
}

.line-neighbors {
    position: relative;
    background-color: hsl(var(--lightdark))
}

.neighbors {
    position: relative;
    display: flex;
    justify-content: center;
    text-decoration: none;
    flex-wrap: wrap
}

.neighbors .n-next, .neighbors .n-prev {
    width: 100%
}

.neighbors .n-next a, .neighbors .n-prev a {
    color: hsl(var(--darklight));
    padding: 15px 0;
    display: block;
    text-decoration: none
}

.neighbors .n-next a:hover, .neighbors .n-prev a:hover {
    color: hsl(var(--accent))
}

.neighbors .n-prev {
    padding-right: 20px
}

.neighbors .n-next {
    padding-left: 20px;
    text-align: right
}

.programm {
    background-color: hsl(var(--lightdark))
}

.programm:nth-child(odd) {
    background-color: hsl(var(--second))
}

.programm:nth-child(odd) .programm__col-r {
    order: 1
}

.programm:nth-child(odd) .programm__col-l {
    order: 2
}

.programm__row {
    display: block;
    margin: 0
}

.programm__col-l, .programm__col-r {
    flex: 0 1 100%;
    padding: 0
}

.meter {
    height: 30px;
    position: relative;
    margin: 20px 0;
    background-color: hsl(var(--lightdark));
    border-radius: 15px;
    width: 100%
}

.meter > span {
    display: block;
    height: 30px;
    background-color: hsl(var(--accent));
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px
}

@media (min-width: 35.5em) {
    .sl-wrapper .sl-navigation button {
        width: 44px
    }

    .sl-wrapper .sl-navigation button.sl-next {
        right: 10px;
        font-size: 3rem
    }

    .sl-wrapper .sl-navigation button.sl-prev {
        left: 10px;
        font-size: 3rem
    }

    .sl-wrapper .sl-image img {
        border: 0 none
    }

    .sl-wrapper .sl-image iframe {
        border: 0 none
    }
}

@media (min-width: 641px) {
    .footer__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .hero__block {
        margin: 200px 0 100px
    }

    .hero__img {
        padding: 120px 0 80px;
        position: absolute;
        right: 0
    }

    .report__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .get-help__row {
        flex-wrap: nowrap
    }

    .get-help__left {
        flex-wrap: nowrap;
        margin: 0
    }

    .gallery__row {
        margin: 0 -20px
    }

    .gallery__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px;
        margin: 0 auto
    }

    .neighbors .n-next, .neighbors .n-prev {
        width: 48%
    }
}

@media (min-width: 769px) {
    .header__menu {
        position: relative;
        background-color: transparent;
        opacity: 1;
        top: 0;
        visibility: visible;
        height: auto;
        width: auto;
        z-index: 3;
        transition: none
    }

    .header__list {
        display: flex;
        align-items: flex-end;
        top: 0;
        z-index: 3
    }

    .header__list li {
        display: flex;
        align-items: flex-end
    }

    .header__list li a {
        padding: 20px 0 0 0;
        font-size: 14px;
        margin-top: auto;
        display: block;
        line-height: 10px
    }

    .header__burger {
        display: none
    }

    .footer__row {
        margin: 0 -20px
    }

    .footer__col {
        flex: 0 1 33.333%;
        max-width: 33.333%;
        padding: 0 20px
    }

    .form__row2 {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px
    }

    .form__col2 {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .form__row3 {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px
    }

    .form__col3 {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .intro__row {
        margin: 0 -20px
    }

    .intro__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .report__row {
        margin: 0 -20px
    }

    .report__col {
        flex: 0 1 33.333%;
        max-width: 33.333%;
        padding: 0 20px
    }

    .events__row {
        margin: 0 -20px;
        justify-content: center
    }

    .events__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px
    }

    .need-help__row {
        margin: 0 -20px
    }

    .need-help__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px;
        margin: 0
    }

    .offices__row {
        margin: 0 -20px
    }

    .offices__col {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 20px;
        margin: 0
    }

    .gallery__col {
        flex: 0 1 33.333%;
        max-width: 33.333%;
        padding: 0 20px;
        margin: 0 auto
    }

    .programm__row {
        display: flex;
        margin: 0 -20px;
        align-items: center
    }

    .programm__col-l, .programm__col-r {
        padding: 0 20px
    }

    .programm__col-l .article__img, .programm__col-r .article__img {
        margin-bottom: 0
    }
}

@media (min-width: 50em) {
    .sl-wrapper .sl-navigation button {
        width: 44px
    }

    .sl-wrapper .sl-navigation button.sl-next {
        right: 20px;
        font-size: 3rem
    }

    .sl-wrapper .sl-navigation button.sl-prev {
        left: 20px;
        font-size: 3rem
    }

    .sl-wrapper .sl-image img {
        border: 0 none
    }

    .sl-wrapper .sl-image iframe {
        border: 0 none
    }
}

@media (min-width: 1025px) {
    .footer__col {
        flex: 0 1 25%;
        max-width: 25%;
        padding: 0 20px
    }

    .form__col3 {
        flex: 0 1 33.333%;
        max-width: 33.333%;
        padding: 0 20px
    }

    .report__col {
        flex: 0 1 25%;
        max-width: 25%;
        padding: 0 20px
    }

    .events__col {
        flex: 0 1 33.333%;
        max-width: 33.333%;
        padding: 0 20px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0s !important;
        animation-duration: 0s !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }
}

@media screen and (-ms-high-contrast: active) {
    button.btn {
        border: 2px solid currentcolor
    }
}

@media (max-width: 1200px) {
    .hero__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        align-items: center;
    }

    .header__logo {
        bottom: 0;
        padding-top: 0;
    }

    .header__lang {
        margin-left: 0;
        margin-right: 24px;
    }
}

@media (max-width: 640px) {
    .hero__img {
        position: absolute;
    }

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

    .hero__logo img {
        max-width: 200px;
        margin: 0 auto;
    }

    .hero__btns {
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .hero__title {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .header__logo {
        gap: 10px;
        flex: 0 0 170px;
        font-size: 15px;
    }

    .header__lang {
        margin-right: 10px;
    }

    .footer__logo {
        gap: 10px;
        max-width: 170px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .hero__logo img {
        max-width: 130px;
    }
}


body.admin-bar { margin-top: 32px; }
body.admin-bar header { top: 32px; }