:root {
    --font-size-base: 16px;
    --font-size-h1: 64px;
    --line-height-h1: 70px;
    --font-size-h2: calc(var(--font-size-base) * 1.75);
    --font-size-h3: calc(var(--font-size-base) * 1.5);
    --margin-bottom: 110px;
    --padding-base: 16px;
    --time: 0.3s;
}

@media (max-width: 1232px) {
    :root {
        --font-size-h1: calc(((100vw - 320px) / (1232 - 320)) * 26 + 38px);
        --line-height-h1: calc(((100vw - 320px) / (1232 - 320)) * 28 + 42px);
        --font-size-h2: calc(((100vw - 320px) / (1232 - 320)) * 2 + 22px);
        --font-size-h3: calc(((100vw - 320px) / (1232 - 320)) * 4 + 20px);
    }
}

@media (max-width: 1024px) {
    :root {
        --margin-bottom: 72px;
    }
}

/* //////////////////////////////////////////////////************************************************** normalize */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}

/* Forms ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Misc ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}

/* //////////////////////////////////////////////////_________________________^ normalize */

/* //////////////////////////////////////////////////************************************************** preinstall */
*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000C05;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    pointer-events: none;
}

ul {
    margin: 0;
}

/* /////////////////////////========================= footer pressed */
html {
    height: 100%;
}

body,
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > .page > .main {
    flex: 1 1 auto;
    width: 100%;
}

/* /////////////////////////========================= buttons */
a {
    color: #fff;
    text-decoration: none;
    transition: background var(--time), color var(--time), border var(--time);
}

/*a:hover {
    color: #C3F953;
}*/

button {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background var(--time), color var(--time), border var(--time);
}

/* /////////////////////////========================= targets */
:target {
    scroll-margin-top: 40px;
}

@media (max-width: 1024px) {
    :target {
        scroll-margin-top: 32px;
    }
}

/* //////////////////////////////////////////////////_________________________^ preinstall */

/* //////////////////////////////////////////////////************************************************** main container */
.box {
    margin-bottom: var(--margin-bottom);
    padding: 0 calc(50% - 600px);
}

@media (max-width: 1232px) {
    .box {
        padding: 0 16px;
    }
}

/* //////////////////////////////////////////////////_________________________^ main container */

/* //////////////////////////////////////////////////************************************************** fonts */
html, body, p {
    margin: 0;
    font: normal 400 16px/24px "Roboto", sans-serif;
    color: #fff;
}

h1 {
    margin: 0 0 8px 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    line-height: 70px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    display: block;
    margin: 0 0 24px 0;
    font-size: var(--font-size-h2);
    line-height: var(--line-height-base);
    font-weight: 700;
}

h3 {
    margin: 0 0 12px 0;
    font-size: var(--font-size-h3);
    line-height: var(--line-height-base);
    font-weight: 600;
}

p {
    margin: 0 0 5px 0;
}

@media (max-width: 1024px) {
    h2 {
        margin: 0 0 8px 0;
    }

    h3 {
        margin: 0 0 4px 0;
    }
}

/* //////////////////////////////////////////////////_________________________^ fonts */

/* //////////////////////////////////////////////////************************************************** header & footer */
/* /////////////////////////========================= header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding-top: 44px;
    padding-bottom: 44px;
}

.header .logo img {
    display: block;
}

.header__btn {
    padding: 12px 23px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 100px;
}

@media (max-width: 1024px) {
    .header {
        padding-top: 16px;
        padding-bottom: 36px;
    }

    .header .logo {
        
    }

    .header__btn {
        padding: 11px 16px;
        font-size: 12px;
        line-height: 10px;
    }
}

/* //////////////////////////////////////////////////_________________________^ header & footer */

/* //////////////////////////////////////////////////************************************************** general */
/* /////////////////////////========================= columns */
.flex-double,
.flex-triple {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--padding-base);
}

.flex-double > *,
.flex-triple > * {
    width: 100%;
}

.flex-double > * {
    max-width: calc(50% - var(--padding-base) / 2);
}

.flex-triple > * {
    max-width: calc(33.333333% - var(--padding-base) / 3 * 2);
}

@media (max-width: 1100px) {
    .flex-triple > * {
        max-width: calc(50% - var(--padding-base) / 2);
    }
}

@media (max-width: 768px) {
    .flex-double,
    .flex-triple {
        gap: var(--padding-base);
    }

    .flex-double > *,
    .flex-triple > * {
        max-width: 100%;
    }
}

/* /////////////////////////========================= form input & textarea & select & radio & checkbox */
.form {
    padding: 56px 70px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(56px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.27);
    border: 1px solid #3D3D3D;
    border-radius: 24px;
}

.form .form__item {
    position: relative;
    margin-bottom: 16px;
}

/* after js remake */
.form .form__item .iti {
    width: 100% !important;
}

/* /////////////////////////========================= input */
.form .form__item input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-base);
    line-height: 24px;
    border: 0;
    border-radius: 48px;
    outline: 0;
    cursor: pointer;
}

.form__item input:focus {
    cursor: auto;
}

/* /////////////////////////========================= label */
.form__item label {
/*    z-index: -1;*/
    display: block;
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-base);
    transition: top var(--time), left var(--time), font-size var(--time), color var(--time);
}

.form__item label:hover {
    cursor: pointer;
}

.form__item input:not(:placeholder-shown) ~ label,
.form__item input:focus ~ label {
    display: none;
}

/* //////////////////////////////////////////////////_________________________^ general */

/* //////////////////////////////////////////////////************************************************** blocks */
/* /////////////////////////========================= block-1 */
.block-form {
    align-items: center;
    justify-content: space-between;
    background: url(../img/block-form.webp) bottom center no-repeat;
}

.block-form:before {
    content: "";
    position: absolute;
    top: 100px;
    right: 0;
    width: 350px;
    height: 350px;
    background: #fff;
    border-radius: 100%;
    filter: blur(220px);
}

.block-form:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: linear-gradient(#C3F953, #57D7EB);
    border-radius: 100%;
    filter: blur(220px);
}

.block-form__item:last-child {
    display: flex;
    justify-content: flex-end;
}

.block-form h1 span {
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
    line-height: 100px;
}

.block-form__decription {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1;
}

.block-form__decription img {
    margin-left: 8px;
}

.block-form__decription img:first-child {
    margin-left: 40px;
}

.users {
    display: flex;
    align-items: center;
    max-width: 486px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 10px;
}

.users .users__photo {
    display: flex;
    flex-wrap: nowrap;
}

.users .users__photo img {
    max-width: 48px;
    border-radius: 100px;
}

.users__photo img + img {
    margin-left: -18px;
}

.users__info {
    margin-left: 24px;
}

.users__info img {
    display: block;
}

.form {
    width: 100%;
    max-width: 488px;
}

.form h2 {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    line-height: 70px;
    text-transform: uppercase;
}

.form__btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    color: #2A5835;
    font-size: 24px;
    font-weight: 600;
    border-radius: 100px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 38px;
        line-height: 42px;
    }

    .block-form h1 span {
        font-size: 44px;
        line-height: 50px;
    }

    .block-form__decription {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .block-form__decription img {
        width: 40px;
    }

    .users {
        padding: 13px 8px;
    }

    .users__info {
        margin-left: 10px;
    }

    .users__info img {
        max-width: 88px;
    }

    .users__info p {
        margin: 0;
        font-size: 14px;
    }

    .users .users__photo img {
        max-width: 36px;
    }

    .form {
        padding: 24px;
    }

    .form h2 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 42px;
    }

    .form__btn {
        padding: 13px;
        font-size: 20px;
    }

    .form .form__item input {
        padding: 10px 20px;
        font-size: 14px;
    }

    .form__item label {
        top: 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .block-form {
        background: url(../img/block-form-mob.webp) bottom center no-repeat;
    }

    .block-form:before {
        top: 70vw;
        right: 0;
        width: 198px;
        height: 331px;
        filter: blur(200px);
    }

    .block-form:after {
        top: 0;
        left: 0;
        width: 200px;
        height: 200px;
        filter: blur(140px);
    }

    .users {
        max-width: 100%;
    }

    .block-form {
        display: block;
    }

    .block-form > * {
        max-width: 100%;
    }

    .form {
        margin-top: 32px;
        width: 100%;
        max-width: 100%;
    }
    h1 br{
        display: none;
    }
}

/* /////////////////////////========================= block-2 */
.tv__inner {
    padding: 50px 100px 70px;
    background: url(../img/corner1.svg) top right no-repeat,
                url(../img/corner2.svg) bottom left no-repeat;
}

.tv__item {
    display: flex;
    gap: 40px;
}

.tv__item:not(:last-child) {
    margin-bottom: 48px;
}

.tv__item-img {
    min-width: 409px;
}

.tv__item-img img {
    border-radius: 20px;
}

.tv__quote {
    margin-bottom: 28px;
}

.tv__item-info span {
    color: rgba(255, 255, 255, 0.5);
}

.tv__item-info p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .tv__inner {
        padding: 0;
        background: none;
    }

    .tv__item {
        gap: 20px;
    }

    .tv__item-img {
        min-width: 328px;
    }

    .tv__quote {
        margin-bottom: 22px;
        width: 25px;
    }

    .tv__item-info span {
        display: block;
        margin-bottom: 8px;
    }

    .tv__item-info p {
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
    .tv__item {
        display: block;
    }

    .tv__item:last-child {
        display: flex;
        flex-direction: column-reverse;
    }

    .tv__item-img {
        min-width: 100%;
        margin-bottom: 32px;
    }
}

/* /////////////////////////========================= block-3 */
.handel {
    position: relative;
    align-items: center;
}

.handel__item:last-child {
    position: relative;
}

.handel__item:last-child:before {
    content: "";
    position: absolute;
    top: 20%;
    right: 20%;
    width: 80%;
    height: 80%;
    background: linear-gradient(#C3F953, #57D7EB) center center no-repeat;
    border-radius: 100%;
    filter: blur(475px);
}

.handel__pretitle {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 28px;
}

.handel h2 {
    font-size: 28px;
    line-height: 36px;
}

.handel__img {
    display: block;
    width: 100%;
}

.cryptocurrency__item {
    display: flex;
    padding: 18px 20px;
    background: rgba(134, 134, 134, 0.12);
    backdrop-filter: blur(20px);
    gap: 20px;
    border-radius: 10px;
}

.cryptocurrency__item + .cryptocurrency__item {
    margin-top: 20px;
}

.cryptocurrency img {
/*    margin-right: 16px;*/
}

.cryptocurrency span:first-child {
    font-size: 20px;
    font-weight: 700;
    margin-right: 12px;
}

.cryptocurrency span:last-of-type {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 24px;
}

.cryptocurrency p {
    margin-top: 3px;
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.cryptocurrency__btn {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 40px;
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    color: #2A5835;
    font-size: 24px;
    font-weight: 600;
    border-radius: 100px;
}

@media (max-width: 1150px) {
    .cryptocurrency__item {
        display: block;
    }

    .cryptocurrency__btn {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .handel__pretitle {
        font-size: 18px;
    }

    .handel h2 {
        margin-bottom: 29px;
        font-size: 24px;
        line-height: 32px;
    }

    .cryptocurrency__item {
        display: flex;
        padding: 12px;
    }

    .cryptocurrency img {
        width: 44px;
    }

    .cryptocurrency span:first-child {
        margin-right: 8px;
        font-size: 18px;
    }

    .cryptocurrency span:last-of-type {
        font-size: 14px;
    }

    .cryptocurrency p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .handel {
        display: block;
    }

    .handel h2 {
        margin-bottom: 50vw;
    }

    .handel .handel__item {
        max-width: 100%;
    }

    .handel__item:last-child {
        z-index: -1;
        position: absolute;
        left: 50%;
        bottom: 250px;
        transform: translateX(-50%);
        width: 60%;
    }

    .cryptocurrency__btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cryptocurrency.flex-double > *  {
        max-width: calc(50% - var(--padding-base) / 2);
    }

    .handel__item:last-child:before {
        top: -20%;
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        height: 100%;
        filter: blur(375px);
    }

    .cryptocurrency__btn {
        padding: 18px 21px;
    }
}

@media (max-width: 576px) {
    .handel h2 {
        margin-bottom: 60vw;
    }

    .cryptocurrency {
        display: flex;
    }

    .cryptocurrency .flex__item {
        max-width: calc(50% - 10px);
    }

    .handel__item:last-child {
        bottom: 300px;
        width: 60%;
    }
}

@media (max-width: 480px) {
    .handel h2 {
        margin-bottom: 70vw;
    }

    .cryptocurrency {
        gap: 20px;
    }

    .cryptocurrency__item {
        display: block;
    }

    .cryptocurrency__item + .cryptocurrency__item {
        margin-top: 12px;
    }

    .handel__item:last-child {
        bottom: 420px;
        width: 80%;
    }
}

/* /////////////////////////========================= block-4 */
.insert {
    position: relative;
    margin: var(--margin-bottom) 0;
    padding: var(--margin-bottom) 0 1px 0;
    background: #fff;
}

.insert:before {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 450px;
    height: 450px;
    background: #fff;
    border-radius: 100%;
    filter: blur(515px);
}

.infoblock__pretitle {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    line-height: 28px;
}

.infoblock h2 {
    max-width: 700px;
    margin-bottom: 8px;
    color: #000;
    font-size: 28px;
    line-height: 36px;
}

.infoblock .stars {
    margin-bottom: 20px;
}

.infoblock .infoblock__description {
    max-width: 550px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px;
    line-height: 28px;
}

.infoblock .flex-triple .flex__item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: auto;
    margin-top: 40px;
}

.infoblock .flex__item p {
    flex: 1 1 auto;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 24px;
}

.infoblock .flex__item .infoblock__stars {
    margin-bottom: 20px;
}

.infoblock .flex__item img {
    margin-bottom: 30px;
}

.infoblock h3 {
    color: #000;
    line-height: 1;
    font-weight: 500;
}

.user {
    display: flex;
    align-items: center;
}

.infoblock .user img {
    max-width: 62px;
    margin-bottom: 0;
    margin-right: 18px;
    border-radius: 100px;
    overflow: hidden;
}

.user p {
    margin-bottom: 0;
}

.user__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user h3 {
    display: block;
    font-size: 18px;
}

.user span {
    color: #84EDA5;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.infoblock__btn {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    color: #2A5835;
    font-size: 24px;
    font-weight: 600;
    border-radius: 100px;
    text-align: center;
}

/* /////////////////////////========================= block-5 */
.infoblock--short h2 {
    max-width: 600px;
}

.infoblock--short .infoblock__btn {
    margin-top: 56px;
    background: linear-gradient(90deg, #32593B, #010E07 20%, #010E07 80%, #32593B);
    color: #fff;
}

.infoblock--short .infoblock__btn span:first-child {
    color: #C3F953;
}

.infoblock--short .infoblock__btn span:last-child {
    color: #9EED86;
}

/* /////////////////////////========================= block-6 */
.irony {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.irony__imgs {
    text-align: right;
}

.irony__imgs img:not(:last-child) {
    margin-right: -20px;
}

/* /////////////////////////========================= block-7 */
.infoblock--dark .flex-triple .flex__item {
    margin-top: 0;
    padding: 32px 32px 26px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
}

.infoblock--dark .user {
    margin-bottom: 16px;
}

.infoblock--dark .user h3 {
    color: #fff;
}

.infoblock--dark .flex__item .infoblock__stars {
    margin-bottom: 0;
}

.infoblock--dark .flex__item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.infoblock .infoblock__social {
    text-align: right;
}

.infoblock .infoblock__social span {
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.infoblock .infoblock__social img {
    margin-bottom: 0;
    margin-right: 8px;
    vertical-align: text-top;
}

.infoblock--dark .infoblock__btn {
    margin-top: 34px;
}

.infoblock__stars,
.stars {
    display: block;
}

@media (max-width: 1024px) {
    .infoblock > .flex-double {
        display: block;
    }

    .infoblock > .flex-double > * {
        max-width: 100%;
    }

    .infoblock .flex-triple .flex__item {
        margin-top: 32px;
    }

    .infoblock .flex__item .infoblock__stars {
        margin-bottom: 16px;
    }

    .irony__imgs {
        margin: 24px 0 20px;
        text-align: left;
    }

    .irony__imgs img {
        width: 48px;
    }

    .irony__imgs img:not(:last-child) {
        margin-right: 0;
    }

    .irony__imgs img + img {
        margin-left: -20px;
    }

    .infoblock__btn {
        font-size: 16px;
    }

    .infoblock--short .infoblock__btn {
        margin-top: 48px;
        font-size: 24px;
    }

    .infoblock--dark .flex-triple .flex__item {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .insert:before {
        top: 107%;
        right: auto;
        left: -100px;
        width: 220px;
        height: 200px;
        background: linear-gradient(#C3F953, #57D7EB) center center no-repeat;
        filter: blur(200px);
    }

    .infoblock--short .infoblock__btn {
        border-radius: 20px;
        text-align: left;
    }
} 

/* /////////////////////////========================= block-8 */
.win {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
}

.win:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -232px;
    width: 464px;
    height: 464px;
    background: linear-gradient(#C3F953, #57D7EB) center center no-repeat;
    border-radius: 100%;
    filter: blur(418px);
}

.win h2 {
    max-width: 720px;
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    font-weight: 700;
    text-transform: uppercase;
}

.win h2 span {
    background: linear-gradient(90deg, #C3F953, #57D7EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.win p {
    font-size: 25px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .win {
        display: block;
    }

    .win p {
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .win:before {
        top: -30%;
        left: auto;
        right: 0;
        width: 220px;
        height: 200px;
        background: #fff;
        filter: blur(150px);
    }
}

/* /////////////////////////========================= footer */
.footer {
    margin-bottom: 64px;
}

.footer__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 29px;
    padding-top: 48px;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.footer__top span {
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__top nav {
    margin-left: auto;
}

.footer__top nav a {
    flex-wrap: nowrap;
    margin-left: 28px;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 1070px) {
   
}

@media (max-width: 1024px) {
    .footer {
        margin-bottom: 42px;
    }

   

    .footer__top span {
        margin-left: auto;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer nav {
        margin-left: 0;
        margin-right: auto;
    }

    .footer__top nav a {
        margin-left: 0;
        margin-right: 16px;
    }
}

@media (max-width: 576px) {
    .footer__top nav {
        width: 100%;
    }

    .footer__top nav a {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
    }
}


/* //////////////////////////////////////////////////_________________________^ blocks */

/* //////////////////////////////////////////////////************************************************** media */
@media (max-width: 1536px) {

}

@media (max-width: 1366px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

@media (max-width: 576px) {

}

/* //////////////////////////////////////////////////_________________________^ media */


.logo-wraper{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0 !important;
}
.logo-wraper img{
    flex-shrink: 0;
    margin-right: 10px;
}
.logo-wraper span{
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .logo-wraper span{
    font-size: 20px;
}
}

@media (max-width: 380px) {
    .logo-wraper span{
    font-size: 15px;
    letter-spacing: 0px;
}
}

.form-wraper-cont{
    width: 100%;
}
.aio-sdk-form {

    width: 100% !important;
    padding: 0  !important;

}

.adas{
    color: #9EED86;
}

.info-block{width: 100%; padding:40px 54px 59px; display:flex;flex-direction:column;gap:28px;     background: url(../img/corner1.svg) top right no-repeat, url(../img/corner2.svg) bottom left no-repeat; }
.info-block__title{font-weight:700;font-size:30px;line-height:1;color:#fff;display:flex;justify-content:flex-start;gap:28px;position:relative;}
.info-icon{display:flex;align-items:center;justify-content:center;margin-top:5px;}
.info-block__cards{display:grid;grid-template-columns:repeat(3, 1fr);gap:27px;}
.info-card{background:#191d20;border-radius:10px;padding:20px 20px 33px;display:flex;flex-direction:column;align-items:flex-start;gap:10px;min-height:249px; background: rgba(134, 134, 134, 0.12);
    backdrop-filter: blur(20px); }
.info-card__icon{display:flex;align-items:center;justify-content:center;}
.info-card__title{font-weight:700;font-size:20px;line-height:1;color:#fff;}
.info-card__text{font-size:16px;line-height:120%;color:#bbb;margin-top:auto;}
@media (max-width: 1024px){
.info-block__cards{display:grid;grid-template-columns:repeat(1, 1fr);gap:19px;}
.info-card{min-height:200px;}
.info-block{padding:25px 20px 20px;}
.info-icon{transform:rotate(26deg) translateX(-22px) translateY(20px);}
}
@media (max-width: 768px){
.info-icon{transform:rotate(38deg) translateX(0) translateY(0) scale(1.2);margin-top:23px;}
.info-block{gap:14px;}
.info-block__title{gap:10px;}
}
@media (max-width: 650px){
.info-icon{margin-top:55px;}
}
@media (max-width: 600px){
.info-card{min-height:256px;}
.info-block{padding:20px 10px 13px;}
.info-block__title{font-size:25px;}
.info-card__title{font-size:19px;}
.info-icon{margin-top:15px;}
}
@media (max-width: 520px){
.info-icon{margin-top:35px;}
.info-card{padding:20px 10px 15px;}
}
@media (max-width: 410px){
.info-icon{margin-top:50px;}
.info-card__text{padding-top:25px;}
}
@media (max-width: 360px){
.info-icon{margin-top:75px;}
}




.mb-2{margin-bottom:0.5rem;}
.flex{display:-webkit-box;display:-ms-flexbox;display:flex;}
.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
.gap-3{gap:0.75rem;}
.text-sm{font-size:0.875rem;line-height:1.25rem;}
.text-xl{font-size:1.25rem;line-height:1.75rem;}
.font-black{font-weight:900;}
.uppercase{text-transform:uppercase;}
.text-primary-darker{--tw-text-opacity:1;color:rgb(13 18 16 / var(--tw-text-opacity));}
.text-primary-medium{--tw-text-opacity:1;color:rgb(84 104 128 / var(--tw-text-opacity));
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 28px;
}
.font-alt{font-family:sans-serif;}
.logo{font-size:30px;font-weight:900;}
@media (min-width: 1024px){
.lg\:col-span-2{-ms-grid-column-span:2;grid-column:span 2 / span 2;}
.lg\:text-2xl{font-size:1.5rem;line-height:2rem;}
}
.expert{margin:30px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px;}
.expert-list{display:-webkit-box;display:-ms-flexbox;display:flex;gap:20px;}
.expert-items{border-radius:20px;padding:20px; background: rgba(255, 255, 255, 0.12);}
.expert-name{font-weight:900;font-size:18px;margin-bottom:10px;}
.expert-items p{color: rgba(255, 255, 255, 0.8);}
@media (max-width: 768px){
.expert-list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}
}
@media (max-width: 480px){
.logo img{width:25px;}
}
.wrap-eb{display:flex; gap:20px;}
.logo-wrap-e{margin:0 auto;}
@media (max-width: 800px){
.wrap-eb{flex-direction:column-reverse;gap:30px;}
.logo-wrap-e img{width:40px;}
}


.box-expert{
    position: relative;
}


.box-expert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(#c2f953b7, #57d7ebc1);
    border-radius: 100%;
    filter: blur(220px);
    z-index: -1;
}