html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: rgba(0, 0, 0, 0)
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

:root {
    --wrapper-width: 1920px;
    --container-width: 1328px;
    --font-default: "Inter", sans-serif;
    --font-title: "Lora", sans-serif;
    --fz-body: 18px;
    --bg-body: #40186b;
    --main-color: #e06cff;
    --main-gradient: linear-gradient(90deg, #b632d9 0.11%, #5474ff 100%);
    --formbg: #3f2f76;
    --blue-color: #5673ff;
    --title-color: #fff;
    --text-color: rgba(255, 255, 255, 0.8);
    --form-padding: 32px 48px
}

@media(max-width: 1024px) {
    :root {
        --fz-body: 16px
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

body {
    min-width: 320px;
    background: var(--bg-body);
    color: var(--text-color);
    font-family: var(--font-default);
    font-size: var(--fz-body);
    line-height: 1.5;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.page__body.lock-scroll {
    overflow: hidden
}

.page__wrapper {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 0
}

.blur-circle {
    display: block;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: var(--main-color);
    -webkit-filter: blur(204px);
    filter: blur(204px);
    opacity: .2;
    position: absolute;
    z-index: -1
}

@media(max-width: 1199px) {
    .blur-circle {
        display: none
    }
}

.blur-circle--1 {
    top: 0;
    right: -200px
}

.blur-circle--2 {
    top: 50%;
    left: 200px
}

.blur-circle--3 {
    bottom: -50%;
    right: 0
}

.page__main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.footer {
    margin-top: auto
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

@media(max-width: 1024px) {
    .container {
        max-width: 960px
    }
}

@media(max-width: 992px) {
    .container {
        max-width: 800px
    }
}

@media(max-width: 800px) {
    .container {
        max-width: 720px
    }
}

@media(max-width: 640px) {
    .container {
        max-width: 100%;
        padding: 0 16px
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    margin: 0;
    padding: 0
}

.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h5,
.title-h6 {
    color: var(--title-color);
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

a {
    cursor: pointer;
    font-size: inherit;
    color: inherit;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

a:hover {
    text-decoration: none
}

input,
button,
textarea,
select {
    font-family: var(--font-default)
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    background-color: none;
    font-size: inherit
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
    color: inherit
}

input::-webkit-input-placeholder {
    color: #666
}

input::-moz-placeholder {
    color: #666
}

input:-ms-input-placeholder {
    color: #666
}

input::-ms-input-placeholder {
    color: #666
}

input::placeholder {
    color: #666
}

strong {
    font-weight: bold;
    font-weight: 700
}

.hidden {
    display: none
}

.list-reset {
    list-style: none
}

.text-center {
    text-align: center
}

.text-accent {
    color: var(--main-color)
}

.section {
    padding-top: clamp(2.5rem, 1.227rem + 6.36vw, 6rem)
}

.title-h2 {
    color: var(--title-color);
    font-family: var(--font-title);
    font-size: clamp(2rem, 1.455rem + 2.73vw, 3.5rem);
    font-weight: 500;
    font-style: normal;
    line-height: 110%;
    margin-bottom: clamp(2rem, 1.636rem + 1.82vw, 3rem)
}

.title-h2 .text-accent {
    font-style: italic !important
}

@media(max-width: 600px) {
    .title-h2 {
        line-height: 1.2
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.m-center {
    margin: 0 auto
}

.mt-0 {
    margin-top: 0px
}

.mt-4 {
    margin-top: 4px
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mt-48 {
    margin-top: 48px
}

.mt-64 {
    margin-top: 64px
}

.ml-0 {
    margin-left: 0px
}

.ml-4 {
    margin-left: 4px
}

.ml-8 {
    margin-left: 8px
}

.ml-16 {
    margin-left: 16px
}

.ml-24 {
    margin-left: 24px
}

.ml-32 {
    margin-left: 32px
}

.ml-48 {
    margin-left: 48px
}

.ml-64 {
    margin-left: 64px
}

.mr-0 {
    margin-right: 0px
}

.mr-4 {
    margin-right: 4px
}

.mr-8 {
    margin-right: 8px
}

.mr-16 {
    margin-right: 16px
}

.mr-24 {
    margin-right: 24px
}

.mr-32 {
    margin-right: 32px
}

.mr-48 {
    margin-right: 48px
}

.mr-64 {
    margin-right: 64px
}

.mb-0 {
    margin-bottom: 0px
}

.mb-4 {
    margin-bottom: 4px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-32 {
    margin-bottom: 32px
}

.mb-48 {
    margin-bottom: 48px
}

.mb-64 {
    margin-bottom: 64px
}

.p-0 {
    padding: 0px
}

.p-4 {
    padding: 4px
}

.p-8 {
    padding: 8px
}

.p-16 {
    padding: 16px
}

.p-24 {
    padding: 16px
}

.p-32 {
    padding: 16px
}

.p-48 {
    padding: 16px
}

.p-64 {
    padding: 16px
}

.pt-0 {
    padding-top: 0px
}

.pt-4 {
    padding-top: 4px
}

.pt-8 {
    padding-top: 8px
}

.pt-16 {
    padding-top: 16px
}

.pt-24 {
    padding-top: 24px
}

.pt-32 {
    padding-top: 32px
}

.pt-48 {
    padding-top: 48px
}

.pt-64 {
    padding-top: 64px
}

.pl-0 {
    padding-left: 0px
}

.pl-4 {
    padding-left: 4px
}

.pl-8 {
    padding-left: 8px
}

.pl-16 {
    padding-left: 16px
}

.pl-24 {
    padding-left: 24px
}

.pl-32 {
    padding-left: 32px
}

.pl-48 {
    padding-left: 48px
}

.pl-64 {
    padding-left: 64px
}

.pr-0 {
    padding-right: 0px
}

.pr-4 {
    padding-right: 4px
}

.pr-8 {
    padding-right: 8px
}

.pr-16 {
    padding-right: 16px
}

.pr-24 {
    padding-right: 24px
}

.pr-32 {
    padding-right: 32px
}

.pr-48 {
    padding-right: 48px
}

.pr-64 {
    padding-right: 64px
}

.pb-0 {
    padding-bottom: 0px
}

.pb-4 {
    padding-bottom: 4px
}

.pb-8 {
    padding-bottom: 8px
}

.pb-16 {
    padding-bottom: 16px
}

.pb-24 {
    padding-bottom: 24px
}

.pb-32 {
    padding-bottom: 32px
}

.pb-48 {
    padding-bottom: 48px
}

.pb-64 {
    padding-bottom: 64px
}

#btnScrollTop {
    cursor: pointer;
    display: inline-block;
    width: 48px;
    height: 48px;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 50%;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

#btnScrollTop.show {
    opacity: .8;
    visibility: visible;
    pointer-events: all
}

#btnScrollTop.show:hover {
    opacity: 1
}

#btnScrollTop::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m10.598 5.013 8.154 8.281c.33.33.33.865 0 1.195l-.499.5a.844.844 0 0 1-1.195 0L10 7.796 2.942 14.98a.844.844 0 0 1-1.195 0l-.5-.499a.844.844 0 0 1 0-1.195l8.155-8.281a.85.85 0 0 1 1.196.007Z' fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#btnScrollTop:hover {
    opacity: 1
}

@media(max-width: 599px) {
    #btnScrollTop {
        width: 40px;
        height: 40px;
        right: 16px;
        bottom: 16px
    }
}

.btn {
    display: inline-block;
    cursor: pointer;
    position: relative;
    border: none;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.11%, #b632d9), to(#5474ff));
    background: linear-gradient(90deg, #b632d9 0.11%, #5474ff 100%);
    padding: 20px 32px;
    border-radius: 100px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0
}

.btn:hover {
    text-decoration: none
}

.btn::before {
    content: "";
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.11%, #5474ff), to(#b632d9));
    background: linear-gradient(90deg, #5474ff 0.11%, #b632d9 100%);
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    z-index: -1;
    opacity: 0
}

.btn:hover::before {
    opacity: 1
}

.btn-outline {
    color: var(--main-color);
    background: rgba(0, 0, 0, 0);
    border: 1.6px solid var(--main-color);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.btn-outline::before {
    display: none
}

.btn-outline:hover {
    color: #fff;
    background: var(--main-color);
    border-color: rgba(0, 0, 0, 0)
}

@media(max-width: 480px) {
    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px
    }
}

.btn-burger {
    cursor: pointer;
    width: 26px;
    height: 26px;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.btn-burger__line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out
}

.btn-burger__line::before,
.btn-burger__line::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    left: 0;
    opacity: 1;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.btn-burger__line::before {
    top: -8px
}

.btn-burger__line::after {
    bottom: -8px
}

.btn-burger.active .btn-burger__line {
    background: rgba(0, 0, 0, 0)
}

.btn-burger.active .btn-burger__line::before {
    top: 20%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.btn-burger.active .btn-burger__line::after {
    top: 0;
    bottom: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.logo {
    color: var(--text-title);
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none
}

.price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin-bottom: 32px;
    color: #fff
}

.price__label {
    margin-bottom: 4px
}

.price__sum {
    font-size: 32px;
    line-height: 1
}

.price__sum-old {
    font-weight: 400;
    text-decoration: line-through;
    opacity: .4;
    position: relative
}

.price__sum-new {
    color: #ffcb7d;
    font-weight: 600
}

@media(max-width: 480px) {
    .price {
        margin-bottom: 24px
    }

    .price__sum {
        font-size: 24px
    }
}

@media(max-width: 375px) {
    .price {
        margin-bottom: 20px
    }

    .price__sum {
        font-size: 24px
    }
}

.select {
    position: relative;
    width: 100%;
    height: 56px;
    margin-bottom: 16px
}

.select__trigger {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--title-color);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 0 20px;
    padding-right: 15px;
    -webkit-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
    position: relative
}

.select__trigger:hover {
    border-color: var(--main-color)
}

.select__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    width: 1.125rem;
    height: 1.125rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iOTM2OTgwZjciPgogICAgPHBhdGggaWQ9IjRkMWM0OTZiIiBkPSJNNSA3LjI1TDkuNSAxMS43NUwxNCA3LjI1IiBzdHJva2U9IiM0RjRGNEYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48L3BhdGg+CiAgPC9nPgo8L3N2Zz4=);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.select__selected {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color)
}

.select__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow-y: auto;
    list-style: none;
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #f2f4f7;
    -webkit-box-shadow: 0px 16px 32px rgba(77, 83, 103, .32);
    box-shadow: 0px 16px 32px rgba(77, 83, 103, .32);
    -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10
}

.select__options::-webkit-scrollbar {
    width: 4px
}

.select__options::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 6px
}

.select__option {
    cursor: pointer;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 16px 15px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    position: relative
}

.select__option:hover {
    color: var(--main-color);
    background-color: #f5f5f5
}

.select__option.selected {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    position: relative
}

.select__option.selected::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iMGE3MzcxYzciIGNsaXAtcGF0aD0idXJsKCM4NTFiMjdmOSkiPgogICAgPHBhdGggaWQ9Ijc5YzU4NTkyIiBkPSJNMTkuNjg3NSAxMEMxOS42ODc1IDE1LjM1MDMgMTUuMzUwMyAxOS42ODc1IDEwIDE5LjY4NzVDNC42NDk3MyAxOS42ODc1IDAuMzEyNSAxNS4zNTAzIDAuMzEyNSAxMEMwLjMxMjUgNC42NDk3MyA0LjY0OTczIDAuMzEyNSAxMCAwLjMxMjVDMTUuMzUwMyAwLjMxMjUgMTkuNjg3NSA0LjY0OTczIDE5LjY4NzUgMTBaTTguODc5NDUgMTUuMTI5NUwxNi4wNjcgNy45NDE5NUMxNi4zMTEgNy42OTc4OSAxNi4zMTEgNy4zMDIxNSAxNi4wNjcgNy4wNTgwOUwxNS4xODMxIDYuMTc0MjJDMTQuOTM5IDUuOTMwMTIgMTQuNTQzMyA1LjkzMDEyIDE0LjI5OTIgNi4xNzQyMkw4LjQzNzUgMTIuMDM1OUw1LjcwMDgyIDkuMjk5MThDNS40NTY3NiA5LjA1NTEyIDUuMDYxMDIgOS4wNTUxMiA0LjgxNjkxIDkuMjk5MThMMy45MzMwNSAxMC4xODNDMy42ODg5OCAxMC40MjcxIDMuNjg4OTggMTAuODIyOSAzLjkzMzA1IDExLjA2NjlMNy45OTU1NSAxNS4xMjk0QzguMjM5NjUgMTUuMzczNSA4LjYzNTM1IDE1LjM3MzUgOC44Nzk0NSAxNS4xMjk1WiIgZmlsbD0id2hpdGUiPjwvcGF0aD4KICA8L2c+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9Ijg1MWIyN2Y5Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSJ3aGl0ZSI+PC9yZWN0PgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+Cjwvc3ZnPg==") no-repeat center;
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.select.open {
    position: relative
}

.select.open .select__label {
    cursor: default;
    top: 0;
    left: 15px;
    -webkit-transition: top .2s;
    transition: top .2s;
    background: #fff;
    color: #6c757d;
    font-weight: 400;
    font-size: 14px;
    padding: 0 5px;
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

.select.open .select__trigger {
    border-color: var(--main-color)
}

.select.open .select__trigger::after {
    -webkit-transform: rotateX(180deg) translateY(50%);
    transform: rotateX(180deg) translateY(50%)
}

.select.open .select__options {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

@keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.check {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    position: relative
}

.check__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none
}

.check__box {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    position: absolute;
    position: relative;
    margin-right: 10px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.check__box:hover {
    border: 1px solid var(--main-color)
}

.check__label {
    display: inline-block;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.3;
    left: 30px
}

.check__label:hover .check__box {
    border: 1px solid var(--main-color)
}

.check__input:checked+.check__box {
    background: var(--main-color) url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cg%20id%3D%226544ec245ff593c3f84690fc9087dbf8%22%3E%0A%20%20%20%20%3Cpath%20id%3D%220445b5d937d516bb263a415b821229b3%22%20d%3D%22M6.20441%2012.012L2.5644%208.37197C2.34572%208.15328%202.34572%207.79871%202.5644%207.58001L3.35634%206.78805C3.57503%206.56934%203.92962%206.56934%204.14831%206.78805L6.60039%209.2401L11.8525%203.98805C12.0712%203.76936%2012.4257%203.76936%2012.6444%203.98805L13.4364%204.78001C13.6551%204.99869%2013.6551%205.35327%2013.4364%205.57197L6.99637%2012.012C6.77766%2012.2307%206.42309%2012.2307%206.20441%2012.012V12.012Z%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat center;
    background-size: 16px 16px;
    border: 1.4px solid rgba(0, 0, 0, 0)
}

.check__input:focus+.check__box {
    outline: 1.5px solid var(--main-color)
}

.check__input:checked:focus+.check__box {
    outline: 1.5px solid var(--main-color)
}

.check__input:disabled+.check__box {
    opacity: .2
}

.form__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px
}

.form__input,
.form__select .select__trigger {
    outline: none;
    border: none;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 56px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border-radius: 100px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.form__input::-webkit-input-placeholder,
.form__select .select__trigger::-webkit-input-placeholder {
    color: #666
}

.form__input::-moz-placeholder,
.form__select .select__trigger::-moz-placeholder {
    color: #666
}

.form__input:-ms-input-placeholder,
.form__select .select__trigger:-ms-input-placeholder {
    color: #666
}

.form__input::-ms-input-placeholder,
.form__select .select__trigger::-ms-input-placeholder {
    color: #666
}

.form__input::placeholder,
.form__select .select__trigger::placeholder {
    color: #666
}

.form__input:focus,
.form__select .select__trigger:focus {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.form__input.in-error,
.form__select .in-error.select__trigger {
    border: 1px solid var(--color-error)
}

.form__input.disabled,
.form__select .disabled.select__trigger {
    cursor: default;
    background: #f2f4f7
}

.form__input.error-input,
.form__select .error-input.select__trigger {
    background-color: #ffe3e3
}

.form__input.error-input::-webkit-input-placeholder,
.form__select .error-input.select__trigger::-webkit-input-placeholder {
    color: #af1212
}

.form__input.error-input::-moz-placeholder,
.form__select .error-input.select__trigger::-moz-placeholder {
    color: #af1212
}

.form__input.error-input:-ms-input-placeholder,
.form__select .error-input.select__trigger:-ms-input-placeholder {
    color: #af1212
}

.form__input.error-input::-ms-input-placeholder,
.form__select .error-input.select__trigger::-ms-input-placeholder {
    color: #af1212
}

.form__input.error-input::placeholder,
.form__select .error-input.select__trigger::placeholder {
    color: #af1212
}

.form__select {
    margin-bottom: 16px
}

.form__select .select__trigger {
    margin-bottom: 0
}

.form__btn {
    width: 100%
}

@media(max-width: 767px) {
    .form__group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0
    }

    .form__input,
    .form__select .select__trigger {
        margin-bottom: 16px
    }
}

@media(max-width: 480px) {

    .form__input,
    .form__select .select__trigger {
        height: 48px
    }

    .form__select {
        height: 48px
    }
}

.calculate {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 32px;
    background: #312658;
    padding: var(--form-padding);
    position: relative
}

.calculate__tabs {
    width: 100%;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px
}

.calculate__tabs-item {
    width: 100%;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    border: 1.8px solid rgba(255, 255, 255, .12);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    padding: 8px 16px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.calculate__tabs-item:hover {
    border-color: var(--main-color)
}

.calculate__tabs-item.active {
    background: var(--main-color);
    border-color: rgba(0, 0, 0, 0)
}

.calculate__form {
    display: none
}

.calculate__form.active {
    display: block;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

@media(max-width: 767px) {
    .calculate {
        max-width: 640px;
        padding: 32px
    }
}

@media(max-width: 600px) {
    .calculate {
        padding: 24px
    }

    .calculate .form__input,
    .calculate .form__select,
    .calculate .select__trigger {
        height: 48px
    }

    .calculate .form__btn {
        height: 56px;
        padding: 0 24px;
        font-size: 15px
    }

    .calculate__tabs {
        margin-bottom: 24px
    }
}

@media(max-width: 599px) {
    .calculate__tabs {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 480px) {
    .calculate {
        padding: 24px;
        padding: 24px;
        border-radius: 24px
    }

    .calculate .form__input,
    .calculate .form__select,
    .calculate .select__trigger {
        height: 48px;
        padding: 0 16px
    }

    .calculate .form__select {
        padding: inherit
    }

    .calculate .form__btn {
        height: 48px;
        padding: 0 24px;
        font-size: 14px
    }

    .calculate__tabs {
        margin-bottom: 16px
    }

    .calculate__tabs-item {
        padding: 8px 16px
    }
}

@media(max-width: 364px) {
    .calculate {
        padding: 24px 20px
    }
}

.form-order__pravila {
    padding-top: 24px
}

.form-order .check {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.form-order .check:not(:last-child) {
    margin-bottom: 16px
}

.form-login {
    display: none;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

.form-login .form__title {
    color: #fff
}

.form-login .form__descr {
    color: #fff
}

.form-login.active {
    display: block;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

.form-login .form__input,
.form-login .form__select .select__trigger,
.form__select .form-login .select__trigger {
    background: #f4f4f4;
    margin-bottom: 16px;
    -webkit-transition: border-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: border-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: border-color .2s ease-in-out, transform .2s ease-in-out;
    transition: border-color .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.form-login .form__input:focus,
.form-login .form__select .select__trigger:focus,
.form__select .form-login .select__trigger:focus {
    background: #fff;
    border: 1px solid var(--main-color)
}

.form-login__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1;
    padding-top: 24px
}

.form-login__link-label {
    opacity: .6
}

.form-login__link-btn {
    cursor: pointer;
    color: var(--main-color);
    text-decoration: underline
}

.form-login__link-btn:hover {
    text-decoration: none
}

@media(max-width: 375px) {
    .form-login .form__title {
        font-size: 28px
    }
}

.modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    pointer-events: none
}

.modal__overlay {
    width: 100%;
    height: 100%;
    background: rgba(33, 27, 54, .6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -webkit-transition: -webkit-backdrop-filter .3s ease-in-out;
    transition: -webkit-backdrop-filter .3s ease-in-out;
    transition: backdrop-filter .3s ease-in-out;
    transition: backdrop-filter .3s ease-in-out, -webkit-backdrop-filter .3s ease-in-out
}

.modal__content {
    width: 100%;
    max-height: 90%;
    max-width: 600px;
    margin: auto;
    overflow: auto;
    background: var(--formbg);
    border-radius: 24px;
    padding: 32px 48px;
    position: relative;
    -webkit-box-shadow: 0px 40px 40px 0px rgba(24, 31, 52, .33);
    box-shadow: 0px 40px 40px 0px rgba(24, 31, 52, .33)
}

.modal__header,
.form__header {
    margin-bottom: 32px
}

.modal__title,
.form__title {
    color: #fff;
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px
}

.modal__descr,
.form__descr {
    color: #fff;
    font-size: 16px
}

.modal__close,
.modal-process__close {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iZDIxN2VhOGQiPgogICAgPHBhdGggaWQ9IjdkMmUzZjcxIiBkPSJNMi43MjQ3NiAxLjI5Mjk3TDIyLjY5MDEgMjEuMjU4M00xLjMxMDU1IDIxLjI5M0wyMS4yNzU5IDEuMzI3NiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+CiAgPC9nPgo8L3N2Zz4=");
    background-size: cover;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: .6;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.modal__close:hover,
.modal-process__close:hover {
    opacity: 1
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 9999999999
}

.modal-sm .modal__content {
    max-width: 480px
}

@media(max-width: 480px) {

    .modal__close,
    .modal-process__close {
        width: 18px;
        height: 18px;
        top: 16px;
        right: 16px
    }

    .modal__content {
        padding: 32px 24px;
        border-radius: 16px
    }

    .modal__header,
    .form__header {
        margin-bottom: 24px
    }

    .modal__title,
    .form__title {
        font-size: 32px
    }

    .modal__descr,
    .form__descr {
        font-size: 16px;
        line-height: 24px
    }
}

.modal-process .step-1,
.modal-process .step-2 {
    display: none;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

.modal-process .step-1.active,
.modal-process .step-2.active {
    display: block;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

.progress {
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

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

@media(max-width: 480px) {
    .progress__item:not(:last-child) {
        margin-bottom: 16px
    }
}

.progress__title {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px
}

.progress__title span {
    font-size: 14px;
    opacity: .6
}

.progress-bar {
    width: 100%;
    height: 16px;
    text-align: center;
    background: rgba(255, 255, 255, .16);
    border-radius: 100px;
    padding: 0 10px;
    position: relative;
    overflow: hidden
}

.progress-bar--loading .progress-bar__fill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 0%;
    height: 100%;
    border-radius: 100px;
    background: var(--main-gradient);
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0
}

.progress-bar--loading .progress-bar__text {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    padding: 0 10px
}

@media(max-width: 480px) {
    .progress__title {
        font-size: 14px;
        margin-bottom: 4px
    }
}

.matrica-diagram {
    display: block;
    margin: auto;
    position: relative !important
}

.matrica-diagram .trans {
    -webkit-transform: rotateY(354deg);
    transform: rotateY(354deg);
    border-radius: 50%;
    text-align: center
}

.matrica-diagram .trans div {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 50%
}

.matrica-diagram .trans div img {
    margin: 0 !important;
    padding: 0 !important
}

.matrica-diagram .trans div img:not(:last-child) {
    margin-right: 2px !important
}

.matrix-karta__table {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    overflow: auto
}

.table-karta {
    width: 100%;
    border-collapse: collapse
}

.table-karta thead tr th {
    background: #312658;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 16px;
    font-size: 16px;
    line-height: 24px;
    line-height: 1
}

.table-karta tr td {
    background: #312658;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center
}

.table-chakra {
    text-align: left !important;
    padding: 12px 16px !important
}

.table-chakra__name {
    font-size: 18px;
    font-weight: 500
}

.table-chakra__descr {
    font-size: 15px
}

@media(max-width: 640px) {
    .table-chakra {
        padding: 8px !important
    }

    .table-chakra__name {
        font-size: 16px
    }

    .table-chakra__descr {
        display: none
    }
}

@media(max-width: 480px) {
    .table-karta thead tr th {
        padding: 8px;
        font-weight: 500
    }

    .table-chakra__name span {
        font-size: 14px
    }
}

.accordion__item {
    background: #312658;
    border-radius: 16px;
    padding: 32px
}

.accordion__item:not(:last-child) {
    margin-bottom: 16px
}

.accordion__item .faq-info {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../img/icons/ic-info.svg") no-repeat center;
    background-size: cover
}

.accordion__head {
    cursor: pointer;
    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: 8px
}

.accordion__head-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.accordion__title {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0
}

.accordion__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: inline-block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .4);
    position: relative;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.accordion__icon::before {
    content: "";
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .4);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: 0
}

.accordion__body {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.accordion__head.active .accordion__title {
    color: var(--main-color)
}

.accordion__head.active .accordion__icon {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: var(--main-color)
}

.accordion__head.active .accordion__icon::before {
    background: var(--main-color)
}

.accordion__body.active {
    visibility: visible;
    opacity: 1;
    padding-top: 10px
}

@media(max-width: 1024px) {
    .faq__accordion {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        grid-template-columns: 1fr
    }
}

@media(max-width: 480px) {
    .accordion__item {
        border-radius: 8px;
        padding: 16px
    }

    .accordion__icon {
        width: 20px;
        height: 2px
    }

    .accordion__icon::before {
        width: 20px
    }

    .accordion__title {
        font-size: 16px;
        line-height: 1.3
    }
}

.header {
    padding: 16px 0
}

.header__container {
    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
}

.header__right {
    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: 24px
}

.header__burger {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__login {
    color: #fff;
    padding: 10px 24px;
    font-size: 14px
}

.header .nav {
    z-index: 1
}

.header .nav-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 8, 49, .4);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    -webkit-animation: fade .3s ease-in-out;
    animation: fade .3s ease-in-out
}

.header .nav-overlay.active {
    display: block
}

.header .menu {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px
}

.header .menu__link {
    cursor: pointer;
    text-decoration: none;
    font-size: 17px;
    line-height: 24px;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    position: relative
}

.header .menu__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-gradient);
    position: absolute;
    bottom: -8px;
    left: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.header .menu__link:hover {
    color: var(--main-color)
}

.header .menu__link:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.header .menu__link.active {
    cursor: default;
    color: #fff
}

.header .menu__link.active::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

@media(max-width: 1024px) {
    .header__burger {
        display: inline-block;
        z-index: 99999
    }

    .header__burger.active .btn-burger__line::before,
    .header__burger.active .btn-burger__line::after {
        background: #fff
    }

    .header__nav {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        padding: 24px 0;
        background: var(--formbg);
        -webkit-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        z-index: 100
    }

    .header__nav .menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 0
    }

    .header__nav .menu li {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header__nav .menu__link {
        color: #fff;
        font-size: 18px;
        width: 100%;
        padding: 20px 24px;
        display: block;
        width: 100%
    }

    .header__nav .menu__link:hover {
        color: #fff;
        opacity: .8
    }

    .header__nav .menu__link::before {
        display: none
    }

    .header__nav .menu__link.active {
        color: var(--main-color);
        background: #fff
    }

    .header__nav.active {
        left: 0
    }
}

@media(max-width: 480px) {
    .header {
        padding: 10px 0
    }

    .header__container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header__logo {
        display: none
    }

    .header__login {
        padding: 8px 20px;
        font-size: 13px
    }

    .nav-overlay {
        display: none
    }

    .header__nav {
        max-width: 100%;
        padding-top: 64px
    }
}

.footer {
    background: #1b162c;
    color: rgba(255, 255, 255, .4);
    font-size: 15px;
    line-height: 1.4
}

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

.footer a:hover {
    text-decoration: underline;
    color: var(--main-color)
}

.footer__top {
    padding: 24px 0
}

.footer__top-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px
}

.footer__list {
    width: 25%;
    list-style: none
}

.footer__list li {
    margin-bottom: 8px
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0
}

.footer__bottom-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px
}

@media(max-width: 1024px) {
    .footer__top-container {
        gap: 24px
    }
}

@media(max-width: 992px) {
    .footer__top-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .footer__list {
        width: 100%
    }
}

@media(max-width: 599px) {
    .footer__top-container {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .footer__bottom-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px
    }
}

.hero {
    padding-bottom: 96px;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.hero__text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto
}

.hero__title {
    color: var(--title-color);
    font-family: var(--font-title);
    font-size: clamp(2.5rem, .909rem + 5.45vw, 5rem);
    font-weight: 600;
    line-height: 120%
}

.hero__descr {
    font-size: clamp(1rem, .909rem + .45vw, 1.25rem)
}

.hero__calculate {
    margin-top: 48px;
    position: relative
}

.hero__calculate::before,
.hero__calculate::after {
    content: "";
    display: block;
    width: 580px;
    height: 520px;
    position: absolute;
    z-index: -1
}

.hero__calculate .form__select {
    height: inherit;
    margin-bottom: 16px
}

.hero__calculate .form__select .select__trigger {
    margin-bottom: 0 !important
}

@-webkit-keyframes rotateRight {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes rotateRight {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@-webkit-keyframes rotateLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes rotateLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@media(max-width: 1200px) {
    .hero__calculate::before {
        left: -40%
    }

    .hero__calculate::after {
        right: -60%
    }
}

@media(max-width: 1024px) {
    .hero {
        padding-bottom: 0
    }

    .hero__calculate::before,
    .hero__calculate::after {
        display: none
    }
}

@media(max-width: 800px) {
    .hero__calculate {
        margin-top: 32px
    }
}

@media(max-width: 480px) {
    .hero {
        padding-top: 8px
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 12px
    }

    .hero__calculate {
        margin-top: 24px
    }
}

@media(max-width: 390px) {
    .hero__title {
        font-size: 32px
    }
}

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

.top-section {
    position: relative;
    z-index: 0
}

.top-section__bg {
    width: 100%;
    height: 100%;
    opacity: .16;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.top-section__bg::after {
    content: "";
    display: none;
    width: 100%;
    height: 64px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 27, 54, 0)), color-stop(65.71%, #211b36));
    background: linear-gradient(180deg, rgba(33, 27, 54, 0) 0%, #211b36 65.71%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

@media(max-width: 1199px) {
    .top-section__bg::after {
        display: block
    }
}

.top-section__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about {
    position: relative
}

.about-advantages {
    padding-bottom: clamp(2.5rem, 1.227rem + 6.36vw, 6rem)
}

.about-advantages .blur-circle--2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.about__grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 72px
}

.about__grid--1 .about__img {
    background: #2d1f56
}

.about__grid--1 .about__img img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9)
}

.about__grid--2 {
    grid-template-columns: 520px auto
}

.about__text:not(:last-child) {
    margin-bottom: 20px
}

.about__img {
    border-radius: 48px;
    overflow: hidden;
    position: relative
}

.about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about__img::before {
    content: "";
    width: 96%;
    height: 96%;
    border: 1px solid #fff;
    border-radius: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.about__btn {
    margin-top: 24px
}

.advantages {
    list-style: none;
    margin-bottom: 16px
}

.advantages__item {
    padding-left: 48px;
    position: relative
}

.advantages__item::before {
    display: inline-block;
    content: "";
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBpZD0iNWJjOWY4NmQiIGQ9Ik0xNiAwTDE4Ljg1MzMgOS4xMTE1NUwyNy4zMTM3IDQuNjg2MjlMMjIuODg4NCAxMy4xNDY3TDMyIDE2TDIyLjg4ODQgMTguODUzM0wyNy4zMTM3IDI3LjMxMzdMMTguODUzMyAyMi44ODg0TDE2IDMyTDEzLjE0NjcgMjIuODg4NEw0LjY4NjI5IDI3LjMxMzdMOS4xMTE1NSAxOC44NTMzTDAgMTZMOS4xMTE1NSAxMy4xNDY3TDQuNjg2MjkgNC42ODYyOUwxMy4xNDY3IDkuMTExNTVMMTYgMFoiIGZpbGw9InVybCgjZGRjZTQyMDUpIj48L3BhdGg+CiAgPGRlZnM+CiAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImRkY2U0MjA1IiB4MT0iMy4xMTA0N2UtMDciIHkxPSI2Ljk5OTk0IiB4Mj0iMzIuMTI0MiIgeTI9IjcuMTYwNTYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0I2MzJEOSI+PC9zdG9wPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM1NDc0RkYiPjwvc3RvcD4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgo8L3N2Zz4=") no-repeat center;
    background-size: cover;
    z-index: 0;
    position: absolute;
    top: -2px;
    left: 0
}

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

.advantages__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px
}

@media(max-width: 480px) {
    .advantages__title {
        font-size: 18px
    }
}

@media(max-width: 1024px) {
    .about__grid {
        gap: 32px
    }
}

@media(max-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr
    }

    .about__img {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        height: 400px;
        border-radius: 32px
    }

    .about__img::before {
        border-radius: 32px
    }
}

@media(max-width: 480px) {
    .about__img {
        height: 320px;
        border-radius: 24px
    }

    .about__img::before {
        border-radius: 24px
    }

    .about__text:not(:last-child) {
        margin-bottom: 16px
    }

    .about__btn {
        margin-top: 16px
    }

    .advantages__item {
        padding-left: 40px
    }

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

    .advantages__item::before {
        width: 24px;
        height: 24px;
        top: 3px
    }
}

.login-body {
    background: url("../img/top-sect_bg.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0
}

.login-body::after {
    display: inline-block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(38, 28, 61, .8);
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1
}

.login-body .logo {
    color: #fff
}

.login-body .header__login {
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

.login-body .header__login:hover {
    background: #fff;
    color: var(--main-color)
}

.login {
    padding: clamp(3rem, 2.636rem + 1.82vw, 4rem) 0
}

@media(max-width: 480px) {
    .login {
        padding-top: 24px
    }
}

.login__center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.login__formwrap {
    width: 100%;
    max-width: 480px;
    background: var(--formbg);
    border-radius: 32px;
    padding: 32px 48px
}

@media(max-width: 480px) {
    .login__formwrap {
        border-radius: 24px;
        padding: 24px
    }
}

.matrix {
    position: relative
}

.matrix__header {
    padding-top: 16px
}

.matrix__header .matrix__title {
    margin-bottom: 24px
}

.matrix__section {
    padding-top: clamp(3rem, 2.636rem + 1.82vw, 4rem)
}

.matrix__title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 1.636rem + 1.82vw, 3rem);
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: clamp(2rem, 1.273rem + 3.64vw, 4rem)
}

.matrix__title .text-accent {
    font-style: italic
}

.matrix .title-partners {
    text-align: center;
    font-size: 24px;
    font-weight: 600
}

@media(max-width: 480px) {
    .matrix .title-partners {
        font-size: 20px
    }
}

.matrix__calculate {
    max-width: 100%;
    border-radius: 16px;
    padding: 24px
}

@media(max-width: 375px) {
    .matrix__calculate {
        padding: 24px 16px
    }
}

.matrix__calculate .calculate__form {
    display: block
}

.matrix__calculate-grid {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto 180px;
    gap: 16px
}

@media(max-width: 1024px) {
    .matrix__calculate-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 600px) {
    .matrix__calculate-grid {
        grid-template-columns: 1fr
    }
}

.matrix__calculate-grid.grid-2 {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px
}

@media(max-width: 1024px) {
    .matrix__calculate-grid.grid-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 600px) {
    .matrix__calculate-grid.grid-2 {
        grid-template-columns: 1fr;
        margin-bottom: 0
    }
}

.matrix__calculate .form__input,
.matrix__calculate .form__select .select__trigger,
.form__select .matrix__calculate .select__trigger {
    height: 56px
}

.matrix__calculate .form__select {
    margin-bottom: 0 !important
}

.matrix__calculate .calculate__btn {
    height: 56px;
    line-height: 56px;
    padding: 0 24px;
    grid-column-end: -1
}

.matrix-result__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.matrix-result__grid.grid-partners {
    gap: 64px
}

.matrix-result__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.matrix-result__info-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 48px
}

.matrix-result__info-grid .matrix-result__info-item {
    -ms-flex-item-align: end;
    align-self: end
}

@media(max-width: 1024px) {
    .matrix-result__info-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 640px) {
    .matrix-result__info-grid {
        grid-template-columns: 1fr
    }
}

.matrix-result__info-item {
    text-align: center
}

.matrix-result__img img {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.matrix-result__numbers {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    position: relative;
    left: 20px
}

.matrix-result__numbers .matrix-result__number:last-child {
    position: relative;
    left: -18px
}

.matrix-result__number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px
}

.matrix-result__text-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px
}

.matrix-result__text-descr {
    font-size: 16px;
    line-height: 24px
}

.matrix-karta {
    position: relative
}

.matrix-karta .blur-circle--2 {
    top: 0;
    left: -200px
}

.matrix-faq {
    padding-bottom: clamp(3rem, 2.273rem + 3.64vw, 5rem);
    position: relative
}

.matrix-faq .blur-circle--3 {
    bottom: -200px;
    right: -200px
}

.matrix-faq__accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto
}

.matrix-faq__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 32px
}

@media(max-width: 1024px) {
    .matrix-faq__btn-wrap {
        display: none
    }
}

.matrix-faq .btn-print {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 1024px) {
    .matrix-result__grid {
        grid-template-columns: 1fr
    }

    .matrix-result__diagram {
        width: 60%;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
}

@media(max-width: 767px) {

    .matrix__calculate .form__input,
    .matrix__calculate .form__select .select__trigger,
    .form__select .matrix__calculate .select__trigger,
    .form__select {
        margin-bottom: 0;
        height: 48px
    }
}

@media(max-width: 640px) {
    .matrix__calculate .calculate__form {
        grid-template-columns: 1fr
    }

    .matrix-result__info {
        grid-template-columns: 1fr
    }

    .matrix-result__diagram {
        width: 90%
    }
}

@media(max-width: 480px) {
    .matrix-result__diagram {
        width: 100%
    }
}

/*# sourceMappingURL=main.min.css.map */