@font-face {
    font-family: Manrope;
    src: url(/build/assets/manrope-CZfUxJDf.ttf)
}

* {
    transition: all .2s ease-in-out
}

html {
    background: #040813
}

body {
    margin: 0;
    font-family: Manrope;
    background: #040813;
    color: #fff;
    width: 100vw;
    position: relative;
    overflow-x: hidden
}

button {
    cursor: pointer
}

input,
button {
    border: 0;
    font-family: inherit;
    font-weight: inherit;
    padding: 0
}

input,
button,
a,
select {
    outline: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: currentColor
}

.container {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto
}

@media (max-width: 1460px) {
    .container {
        padding: 0 50px;
        box-sizing: border-box
    }
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 160px;
    margin-bottom: 50px
}

@media (max-width: 1540px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 27px
    }
}

.footer p {
    font-size: 12px;
    opacity: .25
}

.download {
    height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 33px;
    border-radius: 36px;
    background: radial-gradient(44% 77% at 50% 0%, #00b6f0, #0070f0);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.download svg {
    width: 18px
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 130px;
    padding: 0 30px;
    height: 88px;
    border-radius: 114px;
    background-color: #ffffff0d;
    max-width: 986px;
    margin: 52px auto 0
}

@media (max-width: 1540px) {
    .header {
        justify-content: space-between
    }
}

.header .logo {
    width: 60px
}

.header .logo img {
    width: 100%
}

.header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 140px;
    width: 100%
}

@media (max-width: 1540px) {
    .header .navigation {
        position: absolute;
        flex-direction: column;
        top: 108px;
        padding: 36px;
        box-sizing: border-box;
        gap: 36px;
        border-radius: 35px;
        background: radial-gradient(61.77% 85% at 100% 100%, #fff3, #0003), #ffffff0d;
        z-index: 3;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        left: -100vw;
        transition: left .4s ease-in-out
    }

    .header .navigation.opened {
        left: 0
    }
}

.header .navigation .links {
    display: flex;
    align-items: center;
    gap: 32px
}

@media (max-width: 1540px) {
    .header .navigation .links {
        flex-direction: column
    }
}

.header .navigation .links a {
    font-weight: 800;
    color: #ffffffbf;
    transition: color .2s ease-in-out, transform .2s ease-in-out
}

.header .navigation .links a:hover {
    color: #faed00;
    transform: scale(1.1)
}

.header .navigation .socials {
    display: flex;
    align-items: center;
    gap: 25px
}

.header .navigation .socials svg {
    transition: transform .2s ease-in-out
}

.header .navigation .socials path {
    fill: #ffffffbf;
    transition: fill .2s ease-in-out
}

.header .navigation .socials a:hover svg {
    transform: scale(1.2)
}

.header .navigation .socials a:hover path {
    fill: #faed00
}

.header .navigation .donateLink {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 10px;
    background: radial-gradient(44% 77% at 50% 0%, #f0ad00, #f06500);
    font-weight: 800;
    color: #fff;
    padding: 20px 0;
    width: 196px;
    font-size: 14px
}

.header .navigation .donateLink:hover {
    box-shadow: 0 0 43px #f0650080
}

.header .navigation .wrapper {
    display: flex;
    align-items: center;
    gap: 140px
}

@media (max-width: 1540px) {
    .header .navigation .wrapper {
        gap: 36px;
        flex-direction: column
    }
}

.header .burger {
    display: flex;
    flex-direction: column
}

@media (min-width: 1540px) {
    .header .burger {
        display: none
    }
}

.header .burger div {
    height: 2px;
    background-color: #fff;
    width: 40px;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out
}

.header .burger div.first {
    transform: translateY(-10px)
}

.header .burger div.third {
    transform: translateY(10px)
}

.header .burger.active div.first {
    transform: rotate(45deg)
}

.header .burger.active div.second {
    opacity: 0
}

.header .burger.active div.third {
    transform: translateY(-4px) rotate(-45deg)
}

.decoration {
    position: absolute;
    z-index: -1
}

.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    margin-top: 100px
}

@media (max-width: 1540px) {
    .main {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        row-gap: 45px;
        margin-top: 35px;
        align-items: unset
    }
}

.main .thumbnail {
    grid-row: 1/3
}

@media (max-width: 1540px) {
    .main .thumbnail {
        grid-row: 2/3
    }

    .main .thumbnail img {
        width: 100%
    }
}

.main .title {
    grid-row: 1/2;
    grid-column: 2/3;
    font-weight: 800;
    font-size: 39px;
    line-height: 150%;
    align-self: end
}

@media (max-width: 1540px) {
    .main .title {
        grid-column: 1/2;
        grid-row: 1/2;
        align-self: auto
    }
}

.main .title span {
    position: relative;
    color: #ff3f59
}

.main .title span:after {
    content: "";
    position: absolute;
    height: 3px;
    background-color: currentColor;
    width: 100%;
    left: 0;
    bottom: -3px
}

.main .description {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 24px;
    opacity: .75;
    align-self: center
}

@media (max-width: 1540px) {
    .main .description {
        grid-column: 1/2;
        grid-row: 3/4;
        align-self: auto;
        text-align: center;
        font-size: 19px
    }
}

.main .servers {
    grid-column: 1/3;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 1540px) {
    .main .servers {
        flex-direction: column;
        justify-content: flex-start;
        gap: 25px
    }
}

.main .servers .server {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 15px 30px
}

.main .servers .server .copy {
    transition: transform .1s ease-in-out
}

.main .servers .server .copy:active {
    transform: scale(.9)
}

@media (max-width: 1540px) {
    .main .servers .server {
        max-width: 317px;
        width: 100%;
        box-sizing: border-box
    }
}

.main .servers .server.--moscow {
    background-color: #ff3f591a;
    border-color: #ff3f59
}

.main .servers .server.--moscow .copy {
    background: radial-gradient(70.71% 70.71% at 50% 50%, #ff7184, #e01d37)
}

.main .servers .server.--petersburg {
    background-color: #ffb03a1a;
    border-color: #ffb03a80
}

.main .servers .server.--petersburg .copy {
    background: radial-gradient(70.71% 70.71% at 50% 50%, #ffc56f, #d7870f)
}

.main .servers .server.--novosibirsk {
    border-color: #009af080;
    background: #009af01a
}

.main .servers .server.--novosibirsk .copy {
    background: radial-gradient(70.71% 70.71% at 50% 50%, #00b6f0, #0070f0)
}

.main .servers .server.--ekaterinburg {
    border-color: #3dc57380;
    background: #3dc5731a
}

.main .servers .server.--ekaterinburg .copy {
    background: radial-gradient(70.71% 70.71% at 50% 50%, #63f09b, #0ab04c)
}

.main .servers .server .text {
    display: flex;
    flex-direction: column
}

.main .servers .server .text :first-child {
    font-size: 18px;
    font-weight: 800
}

.main .servers .server .text :last-child {
    font-size: 15px;
    opacity: .5
}

.main .servers .server .copy {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    width: 35px;
    height: 35px
}

.howto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 47px;
    margin-top: 260px
}

@media (max-width: 1540px) {
    .howto {
        margin-top: 70px;
        grid-template-columns: 1fr;
        row-gap: 70px
    }
}

@media (max-width: 1540px) {
    .howto .heading {
        text-align: center
    }
}

.howto .heading h2 {
    font-size: 48px;
    font-weight: 800
}

@media (max-width: 1540px) {
    .howto .heading h2 {
        font-size: 22px
    }
}

.howto .heading p {
    font-size: 32px;
    font-weight: 500;
    color: #ffffffbf
}

@media (max-width: 1540px) {
    .howto .heading p {
        font-size: 19px;
        margin-top: 5px
    }
}

.howto .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(129, 95, 95, .1);
    border-radius: 25px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: #ffffff08;
    padding: 0 35px
}

@media (max-width: 1540px) {
    .howto .steps {
        text-align: center;
        padding: 55px 40px
    }
}

.howto .steps .title {
    font-size: 32px;
    font-weight: 800;
    width: 100%
}

@media (max-width: 1540px) {
    .howto .steps .title {
        font-size: 22px
    }
}

.howto .steps .grid {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    margin-top: 32px;
    gap: 31px
}

@media (max-width: 1540px) {
    .howto .steps .grid {
        grid-template-columns: 1fr
    }
}

.howto .steps .grid .step {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 25px;
    border-radius: 15px;
    background: radial-gradient(72.12% 58.31% at 100% 100%, #ffffff26, #fff0), linear-gradient(135deg, #ffffff0d, #0070f00d);
    padding: 20px 16px
}

@media (max-width: 1540px) {
    .howto .steps .grid .step {
        padding: 30px 36px
    }
}

@media (max-width: 1540px) {
    .howto .steps .grid .step.--desktop {
        display: none
    }
}

.howto .steps .grid .step.--mobile {
    display: none
}

@media (max-width: 1540px) {
    .howto .steps .grid .step.--mobile {
        display: flex
    }
}

.howto .steps .grid .step.with-button {
    margin-bottom: 30px
}

.howto .steps .grid .step .download {
    position: absolute;
    bottom: -30px
}

.howto .steps>.download {
    margin-top: 34px
}

@media (max-width: 1540px) {
    .howto .steps>.download {
        display: none
    }
}

.howto .thumbnail {
    grid-column: 2/3;
    grid-row: 1/3;
    transform: translateY(50px)
}

@media (max-width: 1540px) {
    .howto .thumbnail {
        display: none
    }
}

.blue-glow-top {
    top: -600px;
    left: -700px;
    width: 1200px;
    height: 1200px;
    background-image: url(/build/assets/blue_glow-CjHtVrtV.png);
    background-size: cover
}

.blue-glow-bottom {
    width: 1500px;
    right: -900px;
    top: 200px;
    height: 1500px;
    background-image: url(/build/assets/blue_glow-CjHtVrtV.png);
    background-size: cover
}

@media (max-width: 1540px) {
    .blue-glow-bottom {
        top: 400px;
        right: -1050px
    }
}

.main-blob-left {
    width: 1500px;
    height: 1500px;
    left: -750px;
    bottom: 200px;
    background-image: url(/build/assets/down_left-CjCRb55O.png);
    background-size: cover
}

@media (max-width: 1540px) {
    .main-blob-left {
        left: -220px
    }
}

.main-blog-right {
    width: 1500px;
    height: 1500px;
    right: -700px;
    bottom: -70px;
    background-image: url(/build/assets/down_left-CjCRb55O.png);
    background-size: cover
}

@media (max-width: 1540px) {
    .main-blog-right {
        right: -110px;
        bottom: -64px;
        width: 1200px
    }
}

.donate {
    display: grid;
    grid-template-columns: 460px auto;
    column-gap: 200px;
    margin-top: 134px
}

@media (max-width: 1540px) {
    .donate {
        grid-template-columns: 1fr
    }
}

.donate .form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.donate .form .title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px
}

.donate .form .input {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 35px;
    height: 84px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    background: #ffffff0d;
    font-weight: 700
}

.donate .form .input svg {
    min-width: 20px
}

.donate .form .input input {
    background-color: transparent;
    width: 100%;
    color: currentColor;
    font-size: 16px
}

.donate .form .input input::-webkit-outer-spin-button,
.donate .form .input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.donate .form .input input[type=number] {
    -moz-appearance: textfield
}

.donate .form .input .total {
    white-space: nowrap;
    color: #00b6f0
}

.donate .form .select {
    position: relative
}

.donate .form .select select {
    background-color: #ffffff26;
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 0 35px;
    height: 84px;
    border-radius: 10px;
    font-family: inherit;
    font-size: inherit;
    color: currentColor;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%
}

.donate .form .select select option {
    color: #000
}

.donate .form .select select:focus+.dropdown {
    transform: rotate(180deg)
}

.donate .form .dropdown {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    right: 20px;
    width: 15px;
    transform-origin: top center
}

.donate .form .submit {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 10px;
    background: radial-gradient(44% 77% at 50% 0%, #f0ad00, #f06500);
    font-weight: 800;
    color: #fff;
    padding: 29px 0;
    font-size: 24px;
    margin-top: 25px
}

.donate .form .submit:hover {
    box-shadow: 0 0 43px #f0650080
}

.donate .form .submit:hover svg {
    transform: translate(10px)
}

.donate .form .bonuses {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: -335px;
    top: 33%
}

@media (max-width: 1540px) {
    .donate .form .bonuses {
        position: static;
        flex-direction: row;
        gap: 10px;
        border: 1px solid rgba(0, 182, 240, .1);
        border-radius: 10px;
        background: #00b6f00d;
        padding: 10px
    }

    .donate .form .bonuses:before {
        display: none
    }
}

.donate .form .bonuses:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #00b6f026;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg)
}

.donate .form .bonuses button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #00b6f026;
    color: inherit;
    padding: 11px 0;
    width: 300px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

@media (max-width: 1540px) {
    .donate .form .bonuses button {
        width: 100%;
        border-radius: 7px !important;
        border: 1px solid rgba(0, 182, 240, .25)
    }

    .donate .form .bonuses button.selected {
        border: 1px solid rgba(0, 182, 240, .35);
        background: #00b6f040
    }
}

.donate .form .bonuses button.selected,
.donate .form .bonuses button:hover {
    background: #00b6f040
}

.donate .form .bonuses button:first-of-type {
    border-radius: 10px 10px 0 0
}

.donate .form .bonuses button:last-of-type {
    border-radius: 0 0 10px 10px
}

.donate .form .bonuses button :first-child {
    font-size: 12px;
    font-weight: 300
}

.donate .form .bonuses button :last-child {
    font-size: 20px
}

@media (max-width: 1540px) {
    .donate .thumbnail {
        display: none
    }
}

.donate-left-blob {
    left: -1200px;
    top: -700px
}

.donate-right-blob {
    right: -800px;
    bottom: -120px;
    width: 1200px
}