html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, hr, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

a, a:hover, button, button:hover, *:focus, *:active {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

strong {
    font-weight: bold;
}

textarea {
    resize: none;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

*:focus,
*:active {
    text-decoration: none;
    outline: none;
}


/* scrollbar styling */
::-webkit-scrollbar {
    width: 0.5rem
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: var(--bg-3);
}

::-webkit-scrollbar-thumb:hover {
}

/* selection styling */
::-moz-selection {
    background: rgba(var(--bg-3-rgb));
    color: var(--txt-2);
    text-shadow: 0 0 0;

}

::selection {
    background: rgba(var(--bg-3), .5);
    color: var(--txt-2);
    text-shadow: 0 0 0;
}


::-webkit-input-placeholder {
    color: inherit;
    opacity: .3;
}

::-moz-placeholder {
    color: inherit;
    opacity: .3;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: .3;
}

/* selection styling */

*::-moz-selection {
    background-color: rgba(var(--bg-3-rgb), .5);
    color: var(--txt-2);
    text-shadow: 0 0 0;
}

*::selection {
    background-color: rgba(var(--bg-3-rgb), .5);
    color: var(--txt-2);
    text-shadow: 0 0 0;
}

:root {
    --stroke-width: 1.2;
    --transi: 0.4s;
    --cubic: cubic-bezier(.305, .045, .355, 1);
    --ff-1: "Gilroy", sans-serif;
    --ct-padding: calc(2.5rem + 15 * var(--size-coef));
    --ct: calc(80rem + 350 * var(--size-coef));
    --size-coef: calc((100vw - 32rem) / 1080);

    --txt-1: rgb(0, 0, 0);
    --txt-2: rgb(255, 255, 255);
    --txt-3: rgb(108, 105, 105);

    --color-5-rgb: 0, 0, 0;
    --color-1: rgb(255, 211, 105);
    --color-2: rgb(255, 130, 151);
    --color-3: rgb(115, 226, 254);
    --color-4: rgb(113, 254, 179);
    --color-5: rgb(var(--color-5-rgb));
    --color-6: rgb(255, 255, 255);

    --bg-1-rgb: 249, 249, 249;
    --bg-1: rgb(var(--bg-1-rgb));
    --bg-2-rgb: 255, 255, 255;
    --bg-2: rgb(var(--bg-2-rgb));
    --bg-3-rgb: 0, 0, 0;
    --bg-3: rgb(var(--bg-3-rgb));
    --bg-4: rgb(240, 240, 240);
    --bg-5: rgb(245, 245, 245);
    --bg-6: rgb(64, 64, 64);
    --bg-7: rgb(26, 26, 26);

    --grad-1: linear-gradient(to right, var(--color-1), var(--color-2));
    --grad-2: linear-gradient(to right, var(--color-3), var(--color-4));
    --grad-3: linear-gradient(to right, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    --grad-4: linear-gradient(to left, var(--color-1), var(--color-2), var(--color-3), var(--color-4));

    --danger-rgb: 255, 108, 108;
    --danger: rgb(var(--danger-rgb));
    --success: rgb(133, 215, 89);
    --star: #ffca27;

    --radius-1: 1rem; /* @todo */
    --radius-2: 2rem; /* @todo */
    --radius-3: 3rem;
    --radius-4: calc(2rem + 5 * var(--size-coef));

    --bs-1: 0 2rem 3.5rem -1rem;
    --blur: blur(1.5rem);
    --blur-opac: 1;
    --p-mobile: 2.4rem;
    --max-width: 85%;
    --p-section: calc(5rem + 1 * var(--size-coef));
    --height-button: calc((var(--padding-button) * 2) + var(--s-size-2));
    --header-padding: calc(2.5rem + 30 * var(--size-coef));
    --header-logo: calc(3.25rem + 5 * var(--size-coef));
    --header-height: calc(var(--header-padding) * 2 + var(--height-button));
    --padding-button: calc(1.6rem + 1 * var(--size-coef));

    /*--s-size-1: calc(.5rem + 1 * var(--size-coef));
    --s-size-2: calc(1rem + 1 * var(--size-coef));
    --s-size-3: calc(1.4rem + 1 * var(--size-coef));
    --s-size-4: calc(1.6rem + 1 * var(--size-coef));
    --s-size-5: calc(2.4rem + 1 * var(--size-coef));*/

    --s-size-1: calc(1.3rem + 2 * var(--size-coef));
    --s-size-2: calc(1.4rem + 2 * var(--size-coef));
    --s-size-3: calc(2.2rem + 22 * var(--size-coef));
    --s-size-4: calc(1.6rem + 3 * var(--size-coef));
    --s-size-5: calc(1.2rem + 1 * var(--size-coef));
    --s-size-6: calc(1.8rem + 3 * var(--size-coef));
    --s-size-7: calc(2.2rem + 8 * var(--size-coef));

    --s-size-button: calc(var(--f-size-3) + var(--s-size-4) * 2);

    --f-size-0: calc(1rem + 1 * var(--size-coef));
    --f-size-1: calc(1.2rem + 1 * var(--size-coef));
    --f-size-2: calc(1.4rem + 1 * var(--size-coef));
    --f-size-3: calc(1.6rem + 1 * var(--size-coef));
    --f-size-4: calc(1.8rem + 1 * var(--size-coef));
    --f-size-5: calc(2.2rem + 1 * var(--size-coef));
    --f-size-6: calc(2.4rem + 1 * var(--size-coef));
}

@font-face {
    font-display: swap;
    font-family: "Gilroy";
    src: url("./assets/fonts/gilroy/Gilroy-Bold.woff2") format("woff2"),
    url("./assets/fonts/gilroy/Gilroy-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "Gilroy";
    src: url("./assets/fonts/gilroy/Gilroy-Medium.woff2") format("woff2"),
    url("./assets/fonts/gilroy/Gilroy-Medium.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 62.5%;
    background-color: var(--bg-1);
    font-family: var(--ff-1);
    scroll-behavior: smooth;
    font-weight: normal;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    padding-top: calc(var(--header-height) / 1.2);
}

/* Typography */

strong {
    font-weight: bold;
}

a {
    color: inherit;
}

a, button {
    text-decoration: none;
    cursor: pointer;
}

.h1 {
    font-size: var(--s-size-3);
    font-weight: bold;
    line-height: .95;
}

.h2 {
    font-size: var(--s-size-7);
    font-weight: bold;
    line-height: 1.2;
}

.h3 {
    font-size: var(--f-size-5);
    font-weight: bold;
    line-height: 1.2;
}

.p {
    font-size: var(--f-size-2);
    color: var(--txt-3);
    line-height: 1.7;
}

.intro {
    font-size: var(--s-size-4);
    color: var(--txt-3);
    line-height: 1.4;
}

.h3 + .p,
.h3 + .intro,
.h2 + .p,
.h2 + .intro {
    margin-top: calc(1.5rem + 3 * var(--size-coef));
}

.p + .h3 {
    margin-top: calc(2rem + 3 * var(--size-coef));
}

.p + .p {
    margin-top: calc(1rem + 2 * var(--size-coef));
}

.hide {
    display: none !important;
}

#gradient {
    height: 0;
    width: 0;
    opacity: 0;
}

#sprite, #icon, #flag {
    display: none;
}

/* Animation */
@keyframes fadeInTop {
    from {
        opacity: 0;
        bottom: -50rem;
        visibility: hidden;
    }
    to {
        opacity: 1;
        bottom: 0;
        visibility: visible;
    }
}

@keyframes fadeOutTop {
    from {
        opacity: 1;
        bottom: 0;
        visibility: visible;
    }
    to {
        opacity: 0;
        bottom: -50rem;
        visibility: hidden;
    }
}

/* Icon */
[class*="icon-"] {
    --w: calc(2rem + 1 * var(--size-coef));
    background: linear-gradient(to bottom, var(--c1), var(--c2));
    width: var(--w);
    height: var(--w);
    min-width: var(--w);
    stroke: var(--color-6);
    display: inline-flex;
}

[class*="icon-file"] {
    --square: calc(5rem + 1 * var(--size-coef));
    --padding: calc(var(--square) / 5);
    --w: calc(var(--square) - var(--padding) * 2);
    background: linear-gradient(to bottom, var(--c1), var(--c2));
    width: var(--w);
    min-width: var(--w);
    height: var(--w);
    stroke: var(--color-6);
    padding: var(--padding);
    border-radius: calc(var(--square) / 4);
}

[class*="icon-"] path,
[class*="icon-"] circle {
    filter: drop-shadow(0 0 .2rem rgb(0, 0, 0, 0.1));
}

.icon-file-archive {
    --c1: #e4fe72;
    --c2: #9af692;
}
.icon-file-audio,
.icon-file-eco {
    --c1: #72fdb5;
    --c2: #76e4fc;
}
.icon-file-document {
    --c1: #71fcef;
    --c2: #73bcfe;
}
.icon-file-ebook {
    --c1: #72defe;
    --c2: #df9ef7;
}
.icon-file-image {
    --c1: #ffd369;
    --c2: #ff8396;
}
.icon-file-police {
    --c1: #b2f8a7;
    --c2: #71fcb2;
}
.icon-file-presentation {
    --c1: #eec7fa;
    --c2: #ed9bfc;
}
.icon-file-vector {
    --c1: #fdbdca;
    --c2: #f98282;
}
.icon-file-video {
    --c1: #ffe363;
    --c2: #ffca63;
}

/* Gradiant */
[class*="gradient-"] {
    stop-color: var(--c);
    transition: stop-color var(--transi);
}

.gradient-1 {
    --c: var(--color-1);
    background: var(--grad-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.gradient-2 {
    --c: var(--color-2);
    background: var(--grad-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.gradient-3 {
    --c: var(--color-3);
}
.gradient-4 {
    --c: var(--color-4);
}

.error {
    color: var(--danger);
}

.btn {
    --size: var(--s-size-2);
    --ecart: 1.4;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: var(--radius-1);
    font-size: var(--size);
    line-height: 1;
    padding: var(--padding-button) calc(var(--padding-button) * var(--ecart)) var(--padding-button);
    width: 100%;
    transition: background-color var(--transi);
    z-index: 1;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary,
.btn-reverse {
    overflow: hidden;
    position: relative;
    color: var(--txt-2);
    transition: transform .1s;
}

.btn-primary:before,
.btn-reverse:before {
    content: '';
    transition: transform var(--transi);
    position: absolute;
    left: 0;
    top: 0;
    width: 300%;
    height: 100%;
    background: var(--grad-3);
    z-index: 0;
}

.btn-primary > *,
.btn-reverse > * {
    z-index: 1;
}

.btn-primary:hover:before,
.btn-reverse:hover:before {
    transform: translateX(-66%);
}

.btn-reverse:before {
    background: var(--grad-4);
}

.btn-secondary {
    background-color: var(--bg-6);
    color: var(--txt-2);
}

.btn-light {
    background-color: var(--bg-4);
    color: var(--txt-1);
}

.btn-disabled {
    cursor: not-allowed;
}

.btn-success {
    background-color: var(--success);
    color: var(--txt-2);
}

.btn-fit-content {
    width: fit-content;
}

.select {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    background-color: var(--bg-1);
    border-radius: calc(3.5rem / 4);
    transition: background-color var(--transi);
    font-size: 1.4rem;
    font-weight: bold;
}

.select-white {
    background-color: var(--color-6);
}

.select:hover {
    background-color: var(--bg-4);
}

.select-disabled {
    cursor: not-allowed;
}

.select-danger {
    border: 0.1rem solid var(--danger);
    color: var(--danger);
}

fieldset {
    --h: calc(4.5rem + 5 * var(--size-coef));
    --gut: calc(var(--h) / 3);
    display: flex;
    flex-direction: column;
}

fieldset + fieldset {
    margin-top: var(--gut);
}

fieldset + .btn {
    margin-top: calc(3rem + 5 * var(--size-coef));
}


.input-label {
    font-weight: bold;
    font-size: var(--f-size-2);
}

.input-label + .input,
.input + .alert {
    margin-top: .8rem;
}

.input {
    border-radius: calc(var(--radius-1) / 1.5);
}

.input-text {
    appearance: none;
    width: 100%;
    height: var(--h);
    background-color: var(--bg-4);
    border-radius: calc(var(--h) / 3.5);
    padding: .1rem var(--gut) 0;
    border: 0;
    font-family: var(--ff-1);
    font-size: var(--s-size-1);
    box-sizing: border-box;
}

.input-textarea {
    padding: var(--gut);
    min-height: calc(var(--h) * 3);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: var(--h);
    background-color: var(--bg-4);
    border-radius: calc(var(--h) / 3.5);
    border: 0;
    font-size: var(--f-size-2);
    box-sizing: border-box;
}

.input-error {
    border: .1rem solid var(--danger);
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .3;
}

::-moz-placeholder {
    color: inherit;
    opacity: .3;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: .3;
}

/* Card */
.card {
    --opacity: .07;
    --padding: calc(2.5rem + 10 * var(--size-coef));
    position: relative;
    overflow: hidden;
    width: calc(100% / var(--n));
    background-color: var(--bg-2);
    box-shadow: var(--bs-1) rgba(0, 0, 0, var(--opacity));
    display: flex;
    flex-wrap: wrap;
    padding: var(--padding);
    border-radius: calc(2rem + 5 * var(--size-coef));
}

.card-content {
    z-index: 1;
}

.card-background-icon {
    fill: transparent;
    stroke: var(--bg-4);
    stroke-width: .3;
    position: absolute;
    right: 5%;
    top: 5%;
    width: 30%;
    z-index: 0;
}


/* toasts */

[class*="toast"] {
    --n: 0;
    --pad: var(--s-size-4);
    box-shadow: 0 1rem 2rem -1rem rgba(var(--c), .3);
    background-color: rgb(var(--c));
    color: var(--txt-2);
    border-radius: var(--radius-1);
    padding: var(--pad);
    font-size: var(--f-size-2);
    bottom: calc(var(--n) * (var(--pad) * 2 + var(--s-size-1) + var(--f-size-2)));
    transition: bottom calc(var(--transi) / 2);
    transition-delay: calc(var(--transi) / 2);
    position: fixed;
    width: calc(100% - var(--p-mobile) * 2 - var(--pad) * 2);
    max-width: var(--max-width);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
}

[class*="toast"] [class*="icon"] {
    --size: 2.6rem;
     position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    height: var(--size);
    width: var(--size);
    cursor: pointer;
}

.toast-danger {
    --c: var(--danger-rgb);
}

.alert {
    --n: 0;
    --pad: var(--s-size-4);
    box-shadow: 0 1rem 2rem -1rem rgba(var(--c), .3);
    background-color: rgb(var(--c));
    color: var(--txt-2);
    border-radius: var(--radius-1);
    padding: var(--pad);
    font-size: var(--f-size-2);
    width: fit-content;
}

.alert-danger {
    --c: var(--danger-rgb);
}

.container {
    padding: 0 var(--p-mobile);
}

.sk {
    animation: skeleton-loading 1s linear infinite alternate;
}

.sk-txt {
    height: var(--f-size-1);
    border-radius: calc(.2rem + 1 * var(--size-coef));
    width: 100%;
}

.sk-txt-sm {
    width: 30%;
}

.sk-txt-md {
    width: 50%;
}

.sk-txt-xl {
    width: 70%;
}

.sk-txt-full {
    width: 100%;
}

.sk-square {
    height: var(--square);
    width: var(--square);
    border-radius: calc(.4rem + 1 * var(--size-coef));
}

@keyframes skeleton-loading {
    0% {
        background-color: #f3f3f3;
    }
    100% {
        background-color: #dadada;
    }
}

.rates[data-rate='1'] > *:nth-child(1) ~ *,
.rates[data-rate='2'] > *:nth-child(2) ~ *,
.rates[data-rate='3'] > *:nth-child(3) ~ *,
.rates[data-rate='4'] > *:nth-child(4) ~ * {
    fill: rgba(var(--bg-3-rgb), .1) !important;
}

.header {
    --tr: .6s;
    --padding-fix: calc(2rem + 5 * var(--size-coef));
    transition: padding var(--tr), width var(--tr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - var(--header-padding) * 2);
    top: 0;
    left: 0;
    font-size: var(--s-size-2);
    padding: var(--header-padding);
    position: fixed;
    z-index: 9999;
}

.header:before {
    content: '';
    transition: var(--tr);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .07);
    background-color: var(--bg-2);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: -1;
}

.header-scroll {
    width: calc(100% - var(--padding-fix) * 2);
    padding: var(--padding-fix);
}

.header-scroll:before {
    height: 100%;
}

.header-langs {
    transition: height var(--transi), background var(--transi);
    height: 2rem;
    width: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10rem;
    position: absolute;
    top: 1.5rem;
    padding-top: .6rem;
    left: 9rem;
    background: transparent;
}

.header-langs li + li {
    margin-top: .4rem;
}

.header-langs:hover {
    height: calc(var(--n) * (2rem + 0.4rem));
    cursor: pointer;
    background: var(--color-6);
}

.header-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header .logo {
    width: 7rem;
}

.header .logo svg {
    width: 28rem;
    height: auto;
}

.header .logo svg *:not(.sigle) {
    opacity: 0;
}

.nav {
    display: flex;
}

.nav .convert-desktop {
    display: none;
}

.nav .convert-mobile {
    display: block;
    width: fit-content;
}

.nav-burger {
    padding: var(--padding-button);
    margin-left: calc(var(--header-padding) / 4);
}

.nav-burger svg {
    pointer-events: none;
    width: var(--s-size-2);
    transform: scale(6);
}

.nav-burger path {
    fill: none;
    stroke: var(--txt-2);
    stroke-width: 2;
    --length: 24;
    --offset: -38;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: stroke-dashoffset var(--transi), stroke-dasharray var(--transi);
}

.nav-burger .l-1,
.nav-burger .l-3 {
    --total-length: 125;
}

.nav-burger .l-2 {
    --total-length: 70;
}

.nav-open .nav-burger:before {
    transform: translateX(-66%);
}

.nav-open .nav-burger .l-1,
.nav-open .nav-burger .l-3 {
    --length: 22;
    --offset: -92.5;
}

.nav-open .nav-burger .l-2 {
    --length: 0;
    --offset: -50;
}

.nav-open .nav-links {
    transform: translateX(0);
}

.nav-links {
    --width: calc(16rem + 50 * var(--size-coef));
    --of: 5rem;
    position: fixed;
    right: 0;
    top: 0;
    height: calc(100% - var(--header-height));
    padding-top: var(--header-height);
    background-color: rgba(var(--bg-2-rgb), 0.6);
    width: calc(var(--width) + var(--of));
    box-shadow: 0 0 4rem rgb(0 0 0 / 10%);
    border-radius: var(--radius-2) 0 0 var(--radius-2);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(calc(var(--width) + var(--of)));
    transition: transform var(--transi);
}

.nav-link {
    padding: calc(.1rem + 2 * var(--size-coef)) calc(1.5rem + 5 * var(--size-coef))
}

.nav-link a {
    text-align: right;
    padding: calc(.8rem + 5 * var(--size-coef)) calc(1rem + 5 * var(--size-coef));
    white-space: nowrap;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border-radius: var(--radius-1);
    transition: background-color .2s;
}

.nav-link a:hover {
    background-color: var(--bg-2);
    box-shadow: 0 1rem 2rem -0.5rem rgb(0 0 0 / 10%);
}

.nav-link svg {
    --square: calc(4.2rem + 2 * var(--size-coef))
}

.nav-link strong {
    display: flex;
    flex-direction: column;
    font-size: calc(1.8rem + 2 * var(--size-coef));
    margin-right: calc(1rem + 5 * var(--size-coef));
    margin-left: 0;
}

.nav-link small {
    display: block;
    font-weight: normal;
    font-size: var(--s-size-5);
    margin-bottom: .2rem;
}

.footer {
    --ecart: calc(var(--ct-padding) * 1.5);
    box-shadow: 0 -1rem 3.5rem -.5rem rgb(0 0 0 / 3%);
    background-color: var(--bg-2);
    padding: calc(var(--ct-padding) * 1.5) 0;
}

.footer .container {
    align-items: flex-start;
    flex-direction: column-reverse;
    display: flex;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.footer-right {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid var(--bg-4);
    padding-bottom: var(--ct-padding);
    text-align: center;
}

.footer-right .logo svg {
    width: calc(18rem + 20 * var(--size-coef));
}

.footer-right .logo path:last-child {
    fill: var(--color-2);
    transition: fill var(--transi);
}

.footer-links {
    margin-top: var(--ct-padding);
}

.footer-link {
    margin-top: calc(1.5rem + 2 * var(--size-coef));
    font-size: var(--s-size-5);
    color: var(--txt-3);
}

.footer-link a:hover {
    color: var(--txt-1);
}

.footer-link--title {
    font-weight: bold;
    font-size: calc(1.6rem + 2 * var(--size-coef));
    margin-bottom: calc(2rem + 2 * var(--size-coef));
}

.footer-counter {
    margin: calc(20px + 3 * (100vw - 320px) / 1080) 0;
    padding: 12px;
    background: var(--grad-1);
    color: var(--txt-2);
    text-align: center;
    border-radius: var(--radius-1);
}

.footer-counter strong {
    display: block;
    font-weight: bold;
    font-size: calc(2.5rem + 3 * var(--size-coef));
}

.footer-counter small {
    font-size: var(--s-size-1);
}

.footer-counter-value.sk-txt-xl {
    height: calc(2.2rem + 3 * var(--size-coef));
    margin: 0 auto 0.3rem auto;
    border-radius: .4rem;
    opacity: 0.7;
}

.footer-copyright {
    font-size: var(--s-size-5);
    color: var(--txt-3);
}

.modal {
    --w: calc(40rem + 200 * var(--size-coef));
    --pad: calc(1rem + 2 * var(--size-coef));
    position: fixed;
    left: calc(50% - var(--p-mobile));
    transform: translate(-50%, -50%);
    z-index: 9998;
    overflow: hidden;
    width: var(--w);
    max-width: calc(100% - var(--p-mobile) * 2);
    background-color: var(--bg-2);
    margin: 0 var(--p-mobile);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .15);
    border-radius: var(--radius-4);
    opacity: 0;
    top: 50%;
    transition: opacity 0.3s;
    animation: fadeIn 0.3s;
}

.modal--open {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9997;
}

.modal-head {
    font-size: var(--s-size-4);
    font-weight: bold;
    box-shadow: var(--bs-1) rgba(0, 0, 0, .1);
    border-radius: var(--radius-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pad);
}

.modal-content {
    padding: calc(2.5rem + 10 * var(--size-coef));
}

.modal-link {
    --w: calc(1.6rem + 3 * var(--size-coef));
    /*margin-left: calc(.5rem + 2 * var(--size-coef));
    width: var(--w);
    height: var(--w);
    min-width: var(--w);
    display: inline-flex;*/
    width: 100%;
    height: auto;

    margin: 0;
}

.modal-link fieldset {
    width: 100%;
}

.modal-link .btn {
    margin-top: 0;
}

.modal-icon {
    --w: calc(1.6rem + 3 * var(--size-coef));
    margin-left: calc(.5rem + 2 * var(--size-coef));
    width: var(--w);
    height: var(--w);
    min-width: var(--w);
    display: inline-flex;
}

.modal-close {
    --dim: calc(4rem + 2 * var(--size-coef));
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-4);
    width: var(--dim);
    height: var(--dim);
    border-radius: calc(var(--dim) / 4);
}

.modal-close .icon-cross {
    stroke: var(--txt-1);
    --w: 60%;
}

.modal-title {
    padding: .2rem 0 0 calc(var(--pad) * 1.5);
    margin-right: auto;
}

.modal-link {
    display: flex;
}

.modal-link .btn {
    width: fit-content;
    margin-left: 2rem;
}

.modal-limit ul {
    margin: calc(2rem + 3 * var(--size-coef)) 0 calc(3rem + 3 * var(--size-coef));
}

.modal-limit li {
    padding-left: calc(2rem + 3 * var(--size-coef));
    font-size: var(--s-size-4);
    color: var(--txt-3);
    line-height: 1.4;
}

.modal-limit-button {
    display: flex;
    justify-content: center;
}

/* Home */
.section-files {
    padding-bottom: var(--p-section);
}

.section-files-content {
    text-align: center;
    padding-top: 2.6rem;
}

.section-files-title {
    font-size: var(--s-size-3);
    font-weight: bold;
    line-height: 0.95;
}

.section-files-title .gradient-2 {
    stop-color: var(--color-2);
    background: var(--grad-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.section-files-sigle {
    position: relative;
    display: inline-flex;
    margin-bottom: var(--s-size-5);
}

.section-files-sigle .icon-infinite {
    --w: 10rem;
    width: calc(10rem + 50 * var(--size-coef));
    stroke: var(--bg-4);
    stroke-width: 13;
    stroke-linejoin: round;
    stroke-linecap: round;
    height: unset;
}

.section-files-sigle .icon-shield {
    --w: 22%;
    left: 16%;
    top: 50%;
    height: unset;
    transform: translateY(-50%);
    position: absolute;
    fill: var(--grad-1);
}

.section-files-sigle .icon-leaf {
    --w: 22%;
    right: 16%;
    top: 50%;
    height: unset;
    transform: translateY(-50%);
    position: absolute;
}

.section-files-desc {
    font-size: var(--f-size-3);
    color: var(--txt-3);
    margin-top: var(--s-size-2);
}

.section-files-files {
    position: relative;
    z-index: 1;
}

.section-files-files-select {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.section-files-files-select .select {
    margin-left: 2rem;
}

.section-files-form {
    --size-button: calc(1.5rem + 6 * var(--size-coef));
    --transi-form: calc(var(--transi) * 2) var(--cubic);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: var(--radius-3);
    padding: calc(3.5rem + 1 * var(--size-coef));
    height: var(--height);
    z-index: 0;
}

.section-files-form [class*="btn"] {
    --size: var(--size-button);
}

.section-files-form-background-color::before {
    content: '';
    opacity: 1;
    border-radius: var(--radius-3);
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(to left, var(--bg-4), var(--bg-5), var(--bg-4));
    transition: opacity .4s;
}

.section-files-form-background,
.section-files-form-background-color {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    cursor: pointer;
}

.section-files-form-background::before {
    --diff: calc(1rem * 2 + var(--size-coef));
    content: '';
    opacity: .35;
    border-radius: var(--radius-3);
    position: absolute;
    left: calc(var(--diff) / 2);
    top: calc(var(--diff) / 2);
    width: calc(100% - var(--diff));
    height: calc(100% - var(--diff));
    z-index: 1;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='30' ry='30' stroke='black' stroke-width='5' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    transition: opacity .4s;
}

.section-files-form-background::after {
    content: '';
    background: url('./assets/img/svg/random-line.svg') center center no-repeat;
    opacity: 0.03;
    z-index: 0;
    border-radius: inherit;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity .4s;
}

.section-files-form-background:hover::before {
    opacity: .9;
}

.section-files-form-background-icons {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.section-files-form .icon-upload {
    --w: calc(3.5rem + 1 * var(--size-coef));
    stroke: var(--color-5);
    opacity: 1;
    z-index: 1;
    position: absolute;
    cursor: pointer;
}

.section-files-form .icon-upload,
.section-files-form-background,
.section-files-form-background-color {
    opacity: 1;
    transition: opacity var(--transi);
}

.section-files-form-desc {
    position: relative;
    z-index: 2;
    font-size: var(--f-size-1);
    line-height: 1.2;
}

.section-files-form-desc strong {
    font-size: var(--f-size-2);
    display: block;
    margin-bottom: var(--s-size-2);
}

.section-files-form-desc a {
    color: var(--color-5);
}

.section-files-form-action-wrapper {
    --padding: calc(1.2rem + 1 * var(--size-coef));
    --height: calc(var(--height-button) + var(--height-other) + var(--s-size-2));
    --height-other: calc(4rem + 1 * var(--size-coef));
    --padding-button: calc(1.6rem + 1 * var(--size-coef));
    --height-button: calc((var(--padding-button) * 2) + var(--size-button));
    height: var(--height);
    background: var(--color-5);
    padding: var(--padding);
    width: 90%;
    border-radius: calc(var(--radius-3) - .5rem);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .4);
    margin: calc(6.5rem + 1 * var(--size-coef)) 0 var(--s-size-5);
    overflow: hidden;
    position: relative;
    z-index: 4;
    transition: width var(--transi-form),
    height var(--transi-form),
    margin var(--transi-form);
}

.section-files-form-action {
    transition: transform var(--transi-form);
}

.section-files-form-action .btn-secondary {
    margin-bottom: var(--s-size-2);
}

.section-files-form-action-other {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--s-size-2) 0 var(--padding);
}

.section-files-form-action-other button {
    border-radius: var(--radius-1);
    width: var(--height-other);
    height: var(--height-other);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

.section-files-form-action-other li {
    margin-left: var(--s-size-1);
}

.section-files-form-action-other li:first-child {
    margin-left: 0;
}

.section-files-form-action-other li:nth-child(1) button,
.section-files-form-action-other li:nth-child(2) button {
    opacity: .5;
    cursor: not-allowed;
}

.section-files-form-action-other svg {
    fill: var(--txt-2);
    width: 65%;
}

.section-files-form-action .infinite-loader {
    --sa: 45rem;
    stroke: var(--txt-1);
    stroke-width: 10;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke: var(--txt-2);
    opacity: 1;
    position: absolute;
    height: calc(3rem + 1 * var(--size-coef));
}

.section-files-form-action .infinite-loader .infinite-loader-background {
    z-index: 0;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
}

.section-files-form-action .btn-success {
    flex-direction: column;
    max-height: var(--height);
}

.section-files-form-action-convert {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.section-files-form-action-convert-right p,
.section-files-form-action-convert-left p,
.section-files-form-action-convert-left svg {
    display: none;
}

.section-files-form-action-convert-right,
.section-files-form-action-convert-left {
    width: 100%;
}

.section-files-form-action-convert-right .convert {
    height: calc(var(--padding-button) * 2 + var(--size-button))
}

.section-files-alert {
    font-size: var(--f-size-2);
    color: var(--color-6);
    padding: 2rem 1.8rem;
    background-color: var(--danger);
    border-radius: var(--radius-2);
    margin-bottom: 2rem;
}

.files {
    --n: 0;
    --gap: 1.8rem;
    --square: calc(3.5rem + 1 * var(--size-coef));
    --item-height: calc(6.7rem + 1 * var(--size-coef));
    --list-height: calc((var(--item-height) + var(--s-size-1)) * var(--n));
    height: var(--list-height);
    transition: height var(--transi);
    margin: var(--ct-padding) 0 1rem;
}

.file {
    font-size: var(--s-size-1);
    display: flex;
    align-items: center;
    padding: calc(.1rem + 1 * var(--size-coef)) var(--gap) 0;
    background-color: var(--bg-2);
    height: var(--item-height);
    border-radius: calc(var(--radius-3) - 5px);
    box-shadow: 0 1rem 2rem -.5rem rgb(0 0 0 / 5%);
    transition: opacity var(--transi), margin var(--transi);
    margin-bottom: var(--s-size-1);
}

.file:last-child {
    margin-bottom: 0;
}

.file-deleted {
    opacity: 0;
    z-index: 0;
    margin-bottom: calc(var(--item-height) * -1);
}

.file-error {
    border: .1rem solid var(--danger);
}

.file-icon {
    display: none;
}

.file-content {
    display: flex;
    flex-direction: column;
    min-width: calc(8rem + 1 * var(--size-coef));
}

.file-content-wrapper {
    flex: 1;
    overflow: hidden;
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-weight {
    display: none;
}

.file-content .file-weight {
    display: block;
    font-size: 80%;
    opacity: .5;
    white-space: nowrap;
}

.file-to {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 1.2rem;
}

.file-to-src {
    max-width: calc(3rem + 1 * var(--size-coef));
    display: inline-flex;
    justify-content: center;
}

.file-to-dst {
    text-transform: uppercase;
}

.file-to-arrow {
    stroke: var(--txt-1);
    width: 1.5rem;
    margin: 0 var(--s-size-1);
}

.file-to-chevron {
    stroke: var(--color-5);
    width: var(--s-size-2);
    margin-left: var(--s-size-1);
}

.file-to-select {
    position: relative;
}

.file-action .icon-trash {
    pointer-events: none;
    stroke: var(--c);
    transition: stroke var(--transi);
}

.file-action .icon-download {
    pointer-events: none;
    stroke: var(--c);
    transition: stroke var(--transi);
}

.file-action .icon-cross {
    --w: calc(2.5rem + 1 * var(--size-coef));
    stroke: var(--danger);
}

.file-action .delete,
.file-action .error {
    --c: var(--danger);
}

.file-action .delete,
.file-action .download {
    padding: calc(var(--padding-button) / 1.5);
}

.file-action .delete:hover {
    --c: var(--txt-2);
    background-color: var(--danger);
}

.file-action .download {
    --c: var(--success);
}

.file-action .download:hover {
    --c: var(--txt-2);
    background-color: var(--success);
}

.file-action .circle-loader {
    --size: calc(4rem + 1 * var(--size-coef));
    width: var(--size);
    height: var(--size);
}

.file .select {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: calc(5rem + 1 * var(--size-coef));
}

.file .select-danger .file-to-chevron {
    stroke: var(--danger);
}

.select-format {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100vw - var(--s-size-2) * 2);
    border-radius: var(--radius-1);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: var(--bs-1) rgba(0, 0, 0, .4);
    padding: var(--s-size-2);
    background-color: var(--bg-7);
    color: var(--txt-2);
    font-weight: normal;
    z-index: 9998;
    visibility: visible;
    opacity: 1;
    animation: fadeInTop calc(var(--transi) / 2);
}

.select-format-hide {
    bottom: -50rem;
    opacity: 0;
    animation: fadeOutTop calc(var(--transi) / 2);
    visibility: hidden;
}

.select-format-search {
    --search-height: calc(4.5rem + 1 * var(--size-coef));
    margin-bottom: var(--s-size-2);
    position: relative;
}

.select-format-search svg {
    stroke: var(--txt-2);
    width: calc(var(--search-height) / 2);
    position: absolute;
    pointer-events: none;
    top: 1rem;
    left: 1rem;
}

.select-format-search input {
    width: calc(100% - var(--search-height));
    background-color: var(--bg-3);
    color: var(--txt-2);
    height: var(--search-height);
    padding-left: var(--search-height);
}

.select-format-list {
    --gap: .3rem;
    --arrow-width: 1rem;
    --radius: calc(var(--radius-1) / 1.5);
    --n-height: 5;
    --n-width: 5;
    --format-padding: .8rem;
    --format-height: calc(var(--format-padding) * 2 + var(--f-size-1));
    display: flex;
    font-size: var(--f-size-1);
}

.select-format-categories {
    text-transform: none;
}

.select-format-categories li {
    --padding: 1.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
    height: 3rem;
    min-width: calc(9rem - var(--padding));
    display: flex;
    align-items: center;
    padding-left: var(--padding);
    margin-bottom: var(--gap);
}

.select-format-categories .active {
    background-color: var(--bg-6);
}

.select-format-categories .active:after {
    content: '';
    position: absolute;
    left: 99%;
    top: .3rem;
    border-top: 1.2rem solid transparent;
    border-bottom: 1.2rem solid transparent;
    border-left: var(--arrow-width) solid var(--bg-6);
    transition: opacity var(--transi);
}

.select-format-formats ul::-webkit-scrollbar {
    width: .4rem;
    background-color: var(--bg-7);
}

.select-format-formats ul::-webkit-scrollbar-thumb {
    background-color: var(--bg-6);
}

.select-format-formats ul:hover::-webkit-scrollbar-thumb {
    background-color: rgba(var(--bg-1-rgb), .5);
}

.select-format-formats ul {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - var(--arrow-width));
    padding-left: calc(var(--arrow-width));
    padding-right: var(--s-size-1);
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(var(--format-height) * var(--n-height) + var(--gap) * var(--n-height));
}

.select-format-formats li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    text-shadow: 0 .1rem .2rem rgb(0 0 0 / 20%);
    background: var(--bg-3);
    margin: 0 0 var(--gap) var(--gap);
    text-align: center;
    width: calc(100% / var(--n-width) - var(--gap));
    height: var(--format-height);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0;
    stroke: none;
    min-width: 7rem;
}

.select-format-formats .active::before {
    content: '';
    background: linear-gradient(to bottom, var(--c1), var(--c2));
    z-index: -1;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.list-active .section-files-form-action-wrapper {
    --height: calc(var(--height-button) * 2 + var(--s-size-2));
    width: calc(100% - var(--padding) * 2);
    height: var(--height);
    margin: 0;
}

.list-active .section-files-form-action {
    transform: translateY(calc((var(--height-button) + var(--height-other) + var(--s-size-2) + var(--padding)) * -1));
}

.list-active .section-files-form {
    padding: 0;
    height: auto;
}

.list-active .section-files-form-background,
.list-active .section-files-form-background-color,
.list-active .section-files-form .icon-upload {
    opacity: 0;
}

.list-active .section-files-form-background-icons {
    opacity: 0;
}

.list-active .section-files-form-desc {
    display: none;
}

/* When dang & drop */

.drop {
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.drop::before {
    content: '';
    animation: drop-animation 8s infinite linear;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to right,
            var(--color-1),
            var(--color-2),
            var(--color-1)
    );
    background-size: 300% auto;
}

.drop-content {
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    background-color: rgba(var(--color-5-rgb), 0.05);
    padding: calc(2.8rem + 1 * var(--size-coef));
    border-radius: var(--radius-2);
}

.drop-icon {
    filter: drop-shadow(var(--shadow));
    stroke: var(--txt-2);
    width: calc(5rem + 1 * var(--size-coef));
    margin-bottom: var(--s-size-4);
}

.drop-desc {
    font-size: var(--f-size-3);
    font-weight: bold;
    color: var(--txt-2);
    text-shadow: var(--shadow);
}

.drop-desc small {
    display: block;
    font-size: 80%;
    font-weight: normal;
    margin-top: var(--s-size-1);
}

.upload-active .drop {
    display: flex;
}

@keyframes drop-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 150% 0;
    }
}

/* Animation */

.animate-head-shake {
    animation: headShake 1s ease-in-out;
}

.animate-fade-in-up {
    animation: fadeInUp var(--transi) ease-in-out;
}

.animate-fade-out-down {
    animation: fadeOutDown var(--transi) ease-in-out;
}

.animate-infinite-loader {
    animation: infiniteLoader 2s infinite linear;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translate3d(0, 0, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translate3d(0, 100%, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes infiniteLoader {
    0% {
        stroke-dasharray: 0 var(--sa);
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: var(--sa) var(--sa);
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: var(--sa) var(--sa);
        stroke-dashoffset: calc(var(--sa) * -1);
    }
}

@keyframes iconAnimation {
    0% {
        transform: translate(var(--x), calc(var(--y) - 1rem)) rotate(var(--r));
    }
    50% {
        transform: translate(var(--x), calc(var(--y) + 1rem)) rotate(var(--r));
    }
    100% {
        transform: translate(var(--x), calc(var(--y) - 1rem)) rotate(var(--r));
    }
}

.section-column {
    background: var(--bg-5);
    padding: calc(var(--ct-padding) * 1.5) 0;
    width: 100%;
    text-align: center;
}

.section-column .intro {
    margin-bottom: var(--ct-padding);
}

.section-column-list-big {
    --n: 1;
    --gap: calc(3rem + 15 * var(--size-coef));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-column-item {
    display: flex;
    text-align: left;
}

.section-column-list-big .section-column-item {
    --padding: calc(var(--gap) / 2);
    width: calc(100% / var(--n) - var(--padding) * 2);
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: var(--padding);
}

.section-column-list .section-column-item + .section-column-item {
    margin-top: calc(3rem + 1 * var(--size-coef));
}

.section-column-item [class*="icon-file-"] {
    --square: calc(5rem + 1 * var(--size-coef));
}

.section-column-list .section-column-item [class*="icon-file-"] {
    margin-right: calc(2.2rem + 1 * var(--size-coef));
}

.section-column-list-big .section-column-item [class*="icon-file-"] {
    margin-bottom: 1.5rem;
}

.section-left-right, .section-card {
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-left-right .container, .section-card .container {
    --gap: calc(3rem + 1 * var(--size-coef));
    display: flex;
    gap: var(--gap);
    flex-direction: column;
}

.section-left-right .section-left-right-item {
    flex: 1;
    width: calc(100% - var(--ct-padding) * 2);
}

.section-left-right .p {
    margin-top: 20px;
}

.section-card .p {
    margin-top: 14px;
}

.section-card p + .h3 {
    margin-top: 26px;
}

.section-left-right .intro {
    font-size: calc(1.5rem + 1 * var(--size-coef));
}

.section-cards {
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-cards-content {
    text-align: center;
    margin-bottom: var(--ct-padding);
}

.section-cards-content .icon-infinite {
    --w: calc(8.5rem + 15 * var(--size-coef));
    stroke: var(--txt-1);
    stroke-width: 6;
    stroke-linejoin: round;
    stroke-linecap: round;
    height: auto;
}

.section-cards-content h2 {
    margin: calc(2rem + 5 * var(--size-coef)) 0 0;
}

.section-cards-list .card {
    width: calc(100% - var(--padding) * 2);
}

.section-cards-list .card + .card {
    margin-top: 2rem;
}

.section-questions {
    text-align: center;
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-questions-list {
    --pad: calc(2.2rem + 6 * var(--size-coef));
    text-align: left;
    margin-top: var(--ct-padding);
}

.section-questions-item-title:hover {
    --opacity: .15;
    cursor: pointer;
}

.section-questions-item-title {
    font-weight: bold;
    font-size: var(--s-size-2);
    border-radius: var(--radius-1);
    transition: box-shadow .2s;
    margin-top: calc(1.5rem + 5 * var(--size-coef));
    padding: calc(var(--pad) - .2rem) calc(var(--pad) * 2) calc(var(--pad) - .1rem) var(--pad);
    position: relative;
}

.section-questions-item-title .icon-chevron-down {
    --w: 1.5rem;
    font-weight: normal;
    stroke: var(--txt-3);
    right: var(--pad);
    top: var(--pad);
    position: absolute;
    transition: transform .2s;
}

.section-questions-item-title .icon-chevron-down-open {
    transform: rotate(180deg);
}

.section-questions-item-content {
    margin-top: 0.2rem;
    border-radius: var(--radius-1);
    transition: max-height 0.4s;
    padding: calc(var(--pad) - .2rem) var(--pad) calc(var(--pad) - .1rem);
    display: none;

}

.section-questions-item-content-open {
    display: block;
}

.section-cta {
    position: relative;
}

.section-cta-content {
    z-index: 1;
    position: relative;
}

.section-cta-content-wrapper {
    padding: calc(2.5rem + 50 * var(--size-coef));
    position: relative;
}

.section-cta-background {
    background: var(--grad-2);
    opacity: .3;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2);
}

.section-cta-background:after {
    content: '';
    background: url('/assets/img/svg/random-line.svg') center center no-repeat;
    opacity: .1;
    border-radius: inherit;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.section-cta-illustrations {
    display: none;
}

.section-cta-list {
    --size: var(--s-size-2);
    margin: calc(2.5rem + 10 * var(--size-coef)) 0;
}

.section-cta-list-item {
    font-size: var(--s-size-2);
    display: flex;
    padding-left: calc(var(--size) * 2 + 1rem);
    line-height: 1.2;
    position: relative;
}

.section-cta-list-item + .section-cta-list-item {
    margin-top: calc(var(--size) * 1.3);
}

.section-cta-list-item .icon-leaf {
    position: absolute;
    left: 0;
    --w: calc(var(--size) * 2);
    top: calc((var(--size) / 3) * -1);
}

.section-cta-content .btn-reverse {
    width: fit-content;
}

.section-rate {
    padding: calc(var(--ct-padding) * 2) 0;
    text-align: center;
    background-color: var(--bg-5);
    position: relative;
}

.section-rate:after {
    background: url('/assets/img/svg/random-line.svg') center center no-repeat;
    opacity: .03;
    z-index: 0;
    border-radius: inherit;
    background-size: cover;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.section-rate .container {
    position: relative;
    z-index: 1;
}

.section-rate-stars {
    display: inline-flex;
    border-radius: var(--radius-1);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .07);
    padding: calc(12px + 2 * (100vw - 320px) / 1080) calc(20px + 2 * (100vw - 320px) / 1080);
    flex-direction: row-reverse;
    justify-content: center;
    margin: calc(var(--ct-padding) / 1.5) 0;
    background-color: var(--bg-2);
}

.section-rate-stars input {
    display: none;
}

.section-rate-stars label {
    cursor: pointer;
}

.section-rate-stars .icon-star {
    --w: calc(4rem + 15 * var(--size-coef));
    cursor: pointer;
    transition: fill .2s;
    fill: var(--bg-4);
}

.section-rate-stars > input:checked ~ label .icon-star,
.section-rate-stars:not(:checked) > label:hover .icon-star,
.section-rate-stars:not(:checked) > label:hover ~ label .icon-star {
    fill: var(--star);
}

.section-customers {
    text-align: center;
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-customers-list {
    --n: 2;
    --gap: calc(3rem + 15 * var(--size-coef));
    justify-content: center;
    align-items: stretch;
    margin: 2rem calc((var(--gap) / 2) * -1);
    filter: grayscale(1);
    display: flex;
    flex-wrap: wrap;
}

.section-customers-item {
    --padding: calc(var(--gap) / 2);
    width: calc(100% / var(--n) - (var(--padding) * 2));
    padding: var(--padding)
}

.section-customers-item picture {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-customers-item img {
    width: auto;
    max-width: 95%;
    max-height: 8rem;
    height: auto;
}

.section-table {
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-table .h2 {
    text-align: center;
}

.section-table-item .h3 {
    margin-bottom: 2rem;
}

.section-table-item--big {
    flex-direction: column;
}

.section-table-item--big .h3 {
    margin-top: 4rem;
}

.section-table-search {
    --h: calc(5.5rem + 5 * var(--size-coef));
    width: 100%;
    position: relative;
    margin: calc(var(--ct-padding) / 1.5) auto;
}

.section-table-search .icon-search {
    --padding: calc(var(--h) / 4);
    --w: calc(var(--h) - var(--padding) * 2);
    stroke: var(--txt-1);
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 1;
    padding: var(--padding);
}

.section-table-search input {
    padding: 0.1rem calc(var(--h) / 4) 0 var(--h);
    width: calc(100% - (var(--h) / 4) - var(--h));
    height: var(--h);
    font-size: var(--s-size-2);
    background-color: var(--bg-2);
    border-radius: var(--radius-1);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .1);
}

.table {
    --space: 0.5rem;
    --padding: 0.8rem;
    --margin: calc(var(--space) * -1);
    border-spacing: 0 var(--space);
    width: 100%;
    height: fit-content;
}

.table-head {
    display: table-header-group;
}

.table-head--hide {
    display: none;
}

.section-table .table + .table {
    margin-top: calc(1.5rem + 5 * var(--size-coef));
}

.table-header-column {
    font-size: var(--s-size-5);
    color: var(--txt-3);
    padding: calc(var(--padding) / 2) var(--padding);
}

.table-header-column:first-child {
    display: none;
}

.table-header-column.icon {
    display: none;
}

.table-header-column:nth-child(2) {
    text-align: left;
}

.table-header-column:nth-child(4) {
    text-align: right;
}

.table-body-row {
    display: table-row;
    background-color: var(--bg-2);
    box-shadow: var(--bs-1) rgba(0, 0, 0, .07);
    border-radius: var(--radius-1);
}

.table-body-row--hide {
    display: none;
}

.table-body-column {
    vertical-align: middle;
    padding: calc(var(--padding) * 2);
}

.table-body-column > *:nth-child(2) {
    border-top-left-radius: var(--radius-1);
    border-bottom-left-radius: var(--radius-1);
}

.table-body-column.icon {
    display: none;
}

.table-body-column.to {
    width: 100%;
    text-align: left;
    border-top-left-radius: var(--radius-1);
    border-bottom-left-radius: var(--radius-1);
}

.table-body-column .rates {
    margin: 0;
    width: calc(1.8rem * 5);
    padding: 0;
}

.table-body-column .rates .icon-star {
    --w: 1.8rem;
    margin: -0.2rem;
    fill: var(--star);
}

.table-body-column.votes {
    color: var(--txt-3);
    text-align: right;
    font-size: var(--s-size-5);
    white-space: nowrap;
    border-top-right-radius: var(--radius-1);
    border-bottom-right-radius: var(--radius-1);
}

.section-format {
    padding: var(--ct-padding) 0 calc(var(--ct-padding) * 2);
}

.section-format-left {
    text-align: center;
    padding: var(--ct-padding) 0 calc(var(--ct-padding));
}

.section-format-right {
    margin: auto;
    width: 90%;
    padding-left: 0;
}

.section-format-category {
    font-size: var(--s-size-4);
    color: var(--txt-3);
    margin-top: 0.5rem
}

.section-format-rate {
    margin-top: calc(var(--ct-padding) / 2);
}

.section-format-rate .icon-star {
    --w: calc(2.5rem + 3 * var(--size-coef));
    margin: -0.2rem;
    fill: var(--star);
}

.section-format-description {
    margin-top: calc(1.5rem + 3 * var(--size-coef));
    font-size: var(--s-size-5);
    line-height: 1.4;
}

.section-format-table table {
    --space: 0.5rem;
    --padding: calc(1.3rem + 2 * var(--size-coef));
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(1.5rem + 5 * var(--size-coef));
    font-size: var(--s-size-5);
    border-spacing: var(--space);
}

.section-format-table table td {
    background-color: var(--bg-2);
    border-radius: var(--radius-1);
    padding: var(--padding) var(--padding) calc(var(--padding) - .1rem);
    vertical-align: middle;
    box-shadow: var(--bs-1) rgba(0, 0, 0, .07);
    text-align: center;
}

.section-format-table table td:first-child {
    text-align: right;
}

.section-format-table table td:last-child {
    font-weight: bold;
}

.section-format-screen {
    width: auto;
    height: auto;
    background: transparent;
    display: block;
}

.section-format-extension {
    left: 0;
    top: 0;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--radius-2);
    background-color: var(--bg-1);
    text-align: center;
    box-shadow: var(--bs-1) rgba(0, 0, 0, .2);
    padding: 1.5rem;
}

.section-format-extension > * + * {
    margin-top: calc(1rem + 5 * var(--size-coef));
}

.section-format-extension [class*="icon-"] {
    --square: calc(6rem + 20 * var(--size-coef));
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-format-extension-name {
    font-size: var(--s-size-4);
    font-weight: bold;
}

.section-format-extension .btn {
    width: fit-content;
}

.section-not-found {
    text-align: center;
    padding: 20rem 0;
    margin: 10rem 0;
    position: relative;
}

.section-not-found .intro {
    margin: 4rem 0;
}

.section-not-found-background-icons {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--max-width);
    height: 70%;
    transform: translate(-50%, -50%);
}

.section-not-found-background-icons > * {
    --w: calc(2rem + 20 * var(--size-coef) * var(--dim));
    position: absolute;
    padding: calc(var(--w) / 5);
    border-radius: calc(var(--w) / 4);
    animation: iconAnimation calc(2s * var(--dim)) infinite linear;
    z-index: 2;
}

.section-not-found-background-icons .icon-file-audio {
    --dim: 2.5;
    --r: -20deg;
    --x: -150%;
    --y: 0%;
    left: 0%;
    top: 5%;
}

.section-not-found-background-icons .icon-file-document {
    --dim: 4.5;
    --r: 20deg;
    left: 0%;
    top: 80%;
    --x: -130%;
    --y: -55%;
    filter: blur(5px);
}

.section-not-found-background-icons .icon-file-ebook {
    --dim: 2.5;
    --r: -10deg;
    left: 5%;
    top: 98%;
    --x: 0%;
    --y: 0%;
}

.section-not-found-background-icons .icon-file-image {
    --dim: 2.5;
    --r: 8deg;
    right: 0%;
    top: 5%;
    --x: 60%;
    --y: -150%;
}

.section-not-found-background-icons .icon-file-police {
    --dim: 3;
    --r: -15deg;
    right: 0%;
    top: 20%;
    --x: 180%;
    --y: 0%;
}

.section-not-found-background-icons .icon-file-presentation {
    --dim: 5;
    --r: 25deg;
    right: 0%;
    top: 30%;
    --x: 90%;
    --y: 70%;
    filter: blur(8px);
}

.section-not-found-background-icons .icon-file-vector {
    --dim: 2.7;
    --r: -10deg;
    right: 7%;
    top: 95%;
    --x: 100%;
    --y: 50%;
}

.section-not-found-background-icons .icon-file-video {
    --dim: 3;
    --r: 15deg;
    left: 8%;
    --x: 10%;
    --y: -100%;
}

.section-contact {
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-contact-form {
    margin-top: calc(var(--ct-padding));
}

.section-contact-form .recaptcha {
    display: block;
    margin: 3rem 0;
}

.section-contact-success {
    padding: 3rem 0;
    font-size: var(--f-size-4);
    font-weight: 600;
}

.section-content {
    padding: calc(var(--ct-padding) * 2) 0;
}

.section-content a {
    text-decoration: underline;
}

.section-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

@media screen and (min-width: 400px) {
    .section-customers-list {
        --n: 3;
    }
    .section-files-form .icon-upload {

    }
}

@media screen and (min-width: 550px) {
    .nav-links {
        --width: calc(20rem + 50 * var(--size-coef));
    }

    .section-files-form-action-wrapper {
        --padding: calc(2rem + 1 * var(--size-coef));
    }

    .section-files-form-action-convert {
        display: flex;
    }

    .section-cards-list {
        --gap: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .section-cards-list .card {
        width: calc(100% / (var(--n) / 2) - (var(--padding) * 2) - (var(--gap) / 2));
    }

    .section-cards-list .card + .card {
        margin: 0;
    }

    .list-active .section-files-form-action {
        transform: translateY(calc((var(--height-button) + var(--height-other) + var(--s-size-2) + var(--padding)) * -1));
    }

    .section-table-search {
        width: 80%;
    }

    .table-header-column:first-child {
        display: block;
    }

    .table-header-column.icon {
        display: table-cell;
    }

    .table-body-column.icon {
        display: table-cell;
        border-top-left-radius: var(--radius-1);
        border-bottom-left-radius: var(--radius-1);
        padding: var(--padding);
    }

    .table-body-column.to {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        font-size: var(--s-size-1);
    }

    .table-body-column.icon [class*="icon-file-"] {
        --square: 3.5rem;
        vertical-align: middle;
    }

    .table-body-column {
        padding: var(--padding) calc(var(--padding) * 2) calc(var(--padding) - 1px);
    }

    .section-format-screen {
        position: relative;
        height: 35rem;
        box-shadow: var(--bs-1) rgba(0, 0, 0, .15);
        border-radius: var(--radius-3);
    }

    .section-format-extension {
        width: 40%;
        left: 50%;
        height: 65%;
        border-radius: var(--radius-3);
        transform: translateX(-50%);
        top: 10%;
        position: absolute;
    }

    .section-format-screen:before {
        background: linear-gradient(to right, var(--c1), var(--c2));
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 25%;
        width: 86%;
        height: 65%;
        z-index: 1;
        border-radius: var(--radius-2);
    }

    .section-format-screen:after {
        background: url('/assets/img/svg/random-line.svg') center center no-repeat;
        background-size: cover;
        opacity: .3;
        z-index: 2;
        mix-blend-mode: overlay;
    }
}

@media screen and (min-width: 600px) {
    .section-files-form-action-convert {
        flex-direction: row;
    }

    .section-files-form-action-convert-right,
    .section-files-form-action-convert-left {
        width: calc(50% - var(--s-size-1));
    }

    .section-files-form-action-wrapper {
        width: 55%;
    }

    .list-active .section-files-form-action-wrapper {
        --height: var(--height-button);
        width: calc(100% - var(--padding) * 2);
    }

    .section-customers-list {
        --n: 4;
    }

    .section-column-list-big {
        --n: 2;
    }

    .section-column-item {
        --padding: calc(var(--gap) / 2);
    }

    .header-langs {
        left: 10rem;
    }
}

@media screen and (min-width: 700px) {
    .container {
        padding-left: 0;
        padding-right: 0;
        max-width: var(--max-width);
        margin-left: auto;
        margin-right: auto;
        width: var(--ct)
    }

    .select-format {
        top: calc(100% + .3rem);
        box-shadow: var(--bs-1) rgba(0, 0, 0, .4);
        position: absolute;
        left: 50%;
        bottom: auto;
        transform: translateX(-50%);
        padding: var(--s-size-2);
        background-color: var(--bg-7);
        color: var(--txt-2);
        width: 40rem;
        border-radius: var(--radius-1);
        animation: fadeIn calc(var(--transi) / 2);
    }

    .select-format::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 99%;
        width: 0;
        height: 0;
        border-left: 2rem solid transparent;
        border-right: 2rem solid transparent;
        border-bottom: 1rem solid var(--bg-7);
    }

    .select-format-hide {
        animation: fadeOut calc(var(--transi) / 2);
    }

    .select-format-list {
        --n-width: 4;
    }

    .footer .container {
        align-items: inherit;
        flex-direction: row;
    }

    .footer-right {
        text-align: center;
        border-bottom: 0;
        padding-left: calc(var(--ct-padding) * 1.5);
        width: fit-content;
        padding-bottom: 0;
        border-left: .1rem solid var(--bg-4);
    }

    .footer-left {
        width: auto;
        text-align: left;
        white-space: nowrap;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: inherit;
        margin-top: calc(var(--ct-padding) * -1);
    }

    .footer-links {
        margin-right: calc(var(--ecart));
    }
}

@media screen and (min-width: 750px) {
    .section-files {
        padding-bottom: calc(16rem + 1 * var(--size-coef));
    }

    .file-content-wrapper {
        display: flex;
        align-items: center;
    }

    .file-icon {
        display: block;
        display: flex;
        align-items: center;
        margin-right: var(--s-size-5);
    }

    .file-content-wrapper {
        flex: 1.5;
    }

    .file-weight {
        display: block;
        flex: .5;
    }

    .file-content .file-weight {
        display: none;
    }

    .file-icon svg {
        --square: calc(3.5rem + 1 * var(--size-coef))
    }

    .section-files-form-background-icons {
        opacity: 1;
        transition: opacity var(--transi-form), transform var(--transi-form);
    }

    .section-files-form-background-icons > * {
        --w: calc(1rem + 20 * var(--size-coef) * var(--dim));
        position: absolute;
        padding: calc(var(--w) / 5);
        border-radius: calc(var(--w) / 4);
        animation: iconAnimation calc(2s * var(--dim)) infinite linear;
        z-index: 2;
    }

    .section-files-form-background-icons .icon-file-audio {
        --dim: 2.5;
        --r: -20deg;
        --x: -150%;
        --y: 0%;
        left: 0%;
        top: 5%;
    }

    .section-files-form-background-icons .icon-file-document {
        --dim: 4.5;
        --r: 20deg;
        left: 0%;
        top: 80%;
        --x: -130%;
        --y: -55%;
        filter: blur(5px);
    }

    .section-files-form-background-icons .icon-file-ebook {
        --dim: 2.5;
        --r: -10deg;
        left: 5%;
        top: 98%;
        --x: 0%;
        --y: 0%;
    }

    .section-files-form-background-icons .icon-file-image {
        --dim: 2.5;
        --r: 8deg;
        right: 0%;
        top: 5%;
        --x: 60%;
        --y: -150%;
    }

    .section-files-form-background-icons .icon-file-police {
        --dim: 3;
        --r: -15deg;
        right: 0%;
        top: 20%;
        --x: 180%;
        --y: 0%;
    }

    .section-files-form-background-icons .icon-file-presentation {
        --dim: 5;
        --r: 25deg;
        right: 0%;
        top: 30%;
        --x: 90%;
        --y: 70%;
        filter: blur(8px);
    }

    .section-files-form-background-icons .icon-file-vector {
        --dim: 2.7;
        --r: -10deg;
        right: 7%;
        top: 95%;
        --x: 100%;
        --y: 50%;
    }

    .section-files-form-background-icons .icon-file-video {
        --dim: 3;
        --r: 15deg;
        left: 8%;
        --x: 10%;
        --y: -100%;
    }

    .section-not-found-background-icons > * {
        --w: calc(1rem + 15 * var(--size-coef) * var(--dim));
    }
}

@media screen and (min-width: 800px) {
    body {
        padding-top: calc(var(--header-height) / 1.4);
    }

    .section-files-alert {
        padding: 3rem 2.6rem;
    }

    .section-files-form-action-convert {
        justify-content: space-between;
    }

    .section-files-form-action-convert-right p,
    .section-files-form-action-convert-left svg {
        display: block;
    }

    .section-files-form-action-convert-right p {
        color: var(--color-6);
        font-size: var(--f-size-1);
        line-height: 1.2;
        text-align: right;
        margin-right: calc(1.5rem + 1 * var(--size-coef));
    }

    .section-files-form-action-convert-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .section-files-form-action-convert-left {
        display: flex;
        align-items: center;
    }

    .section-files-form-action-convert-left svg {
        --w: calc(3.5rem + 1 * var(--size-coef));
        width: var(--w);
        height: var(--w);
        stroke: var(--color-6);
        cursor: pointer;
        margin: 0 calc(1.5rem + 1 * var(--size-coef));
    }

    .section-files-form-action-convert button:first-child {
        margin: 0;
    }

    .section-files-form-action-convert .btn-primary,
    .section-files-form-action-convert .btn-success {
        width: 15rem;
    }

    .section-files-form .icon-upload {
        --w: calc(4rem + 1 * var(--size-coef));
    }

    .nav {
        width: 100%;
        position: relative;
        height: var(--height-button);
    }

    .nav .nav-burger {
        display: none;
    }

    .nav .convert-mobile {
        position: absolute;
        right: 0;
    }

    .nav .convert-desktop {
        display: flex;
        position: absolute;
        width: fit-content;
        left: calc(var(--header-padding) / 1.5);
        height: calc(var(--height-button) + var(--header-padding) * 2);
        padding: 0;
        background: transparent;
        top: calc(var(--header-padding) * -1);
    }

    .nav .convert-desktop .icon-chevron-down {
        --w: 1.4rem;
        display: block;
        margin-left: .7rem;
        stroke: var(--color-5);
    }

    .nav .convert-desktop:hover ~ .nav-links,
    .nav-links:hover {
        opacity: 1;
        visibility: visible;
    }

    .nav .convert:hover ~ .header {
        background-color: var(--bg-2);
    }

    .nav-links {
        --n: 3;
        --padding: calc(1rem + 5 * var(--size-coef));
        top: calc(var(--header-padding) * 2 + var(--height-button));
        width: 100%;
        left: 0;
        right: auto;
        height: auto;
        border-radius: 0;
        margin-top: 0;
        border-top: .1rem solid var(--bg-4);
        background-color: var(--bg-2);
        display: flex;
        flex-wrap: wrap;
        transform: none;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: none;
        transition: opacity .3s, visibility .3s, top var(--tr);
        padding: calc(1rem + 5 * var(--size-coef));
        box-shadow: var(--bs-1) rgba(0, 0, 0, .07);
        z-index: 1;
    }

    .nav-link {
        width: calc(100% / var(--n) - var(--padding));
        padding: calc(var(--padding) / 4);
    }

    .nav-link a {
        text-align: left;
        padding: calc(var(--padding) / 2.5);
        white-space: nowrap;
        display: flex;
        flex-direction: row;
    }

    .nav-link a:hover {
        background-color: var(--bg-1);
        box-shadow: none;
    }

    .nav-link svg {
        --square: calc(4rem + 3 * var(--size-coef))
    }

    .nav-link strong {
        font-size: calc(1.4rem + 2 * var(--size-coef));
        margin-right: 0;
        margin-left: calc(1rem + 5 * var(--size-coef));
    }

    .header-scroll .nav-links {
        --height: calc(var(--padding-fix) * 2 + var(--height-button) - 0.1rem);
        top: var(--height);
    }

    .rate-modal {
        display: inline-flex;
        flex-direction: column;
        width: calc(35rem + 10 * var(--size-coef));;
        border-radius: var(--radius-1);
        box-shadow: var(--bs-1) rgba(0, 0, 0, .16);
        padding: 2rem 4rem 2rem 2rem;
        background-color: var(--bg-2);
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s;
        animation: fadeIn 0.3s;
    }

    .rate-modal--open {
        opacity: 1;
    }

    .rate-modal .icon-cross {
        --w: 2.5rem;
        stroke: var(--txt-3);
        position: absolute;
        right: 1.6rem;
        top: 1.6rem;
        cursor: pointer;
    }

    .rate-modal .p {
        font-size: var(--s-size-4);
        margin: 1rem 0;
    }

    .rate-modal-rates {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .rate-modal-rates input {
        display: none;
    }

    .rate-modal-rates label {
        cursor: pointer;
    }

    .rate-modal-rates .icon-star {
        --w: calc(3.2rem + 5 * var(--size-coef));
        cursor: pointer;
        transition: fill .2s;
        fill: var(--bg-4);
    }

    .rate-modal-rates > input:checked ~ label .icon-star,
    .rate-modal-rates:not(:checked) > label:hover .icon-star,
    .rate-modal-rates:not(:checked) > label:hover ~ label .icon-star {
        fill: var(--star);
    }

    .modal {
        margin: auto;
        left: 50%;
    }

    .header-langs {
        top: 0.5rem;
        right: 0;
        left: auto;
    }

    .header .logo {
        padding-right: calc(var(--header-padding) / 1.5);
        width: calc(22rem + 15 * var(--size-coef));
    }

    .header .logo svg {
        width: auto;
        height: var(--header-logo);
    }

    .header .logo svg *:not(.sigle) {
        opacity: 1;
    }

    .header .logo path:last-child {
        fill: var(--color-2);
        transition: fill var(--transi);
    }

    .header .logo:hover path:last-child {
        fill: var(--color-4);
    }

    .header .logo:hover .gradient-1 {
        stop-color: var(--color-3);
    }

    .header .logo:hover .gradient-2 {
        stop-color: var(--color-4);
    }

    .section-contact-form .input-email,
    .section-contact-form .input-subject {
        max-width: 40rem;
    }

    .section-contact-form .input-textarea {
        max-width: 80rem;
    }
}

@media screen and (min-width: 900px) {
    .section-column-list-big {
        --n: 3;
    }

    .section-column-list-big .section-column-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-column-list .section-column-item {
        flex-direction: column;
        width: calc(100% / var(--n));
    }

    .section-column-item [class*="icon-file-"] {
        margin-right: 0;
        margin-bottom: calc(2.2rem + 1 * var(--size-coef));
    }

    .section-column-list {
        --n: 3;
        --gap: calc(3rem + 1 * var(--size-coef));
        display: flex;
    }

    .section-column-list .section-column-item + .section-column-item {
        margin-top: 0;
        margin-left: var(--gap);
    }

    .section-customers-list {
        --n: 5;
    }
}

@media screen and (min-width: 950px) {
    .section-format {
        position: relative;
    }

    .section-format .container {
        display: flex;
        align-items: center;
        margin-top: calc((var(--ct-padding) / 2) * -1);
    }

    .section-format-left {
        text-align: left;
        width: 45%;
        z-index: 1;
        padding: var(--ct-padding) 0 0;
    }

    .section-format-right {
        flex: 1;
        padding-left: calc(var(--ct-padding) * 3);
        margin: 0;
    }

    .section-format-table table {
        margin-top: calc(1.5rem + 5 * var(--size-coef));
        font-size: var(--s-size-5);
        border-spacing: var(--space);
        margin-left: calc(var(--space) * -1);
    }

    .section-format-table table td:last-child {
        text-align: left;
    }

    .section-format-screen img {
        width: 100%;
        height: auto;
    }

    .section-left-right .container {
        flex-direction: row;
    }
    .section-left-right .section-left-right-item {
        width: 50%;
    }
}

@media screen and (min-width: 1100px) {
    .section-files-form-action-convert-left p {
        display: block;
        color: var(--txt-2);
        font-size: var(--f-size-1);
    }

    .section-files-form-action-wrapper {
        width: 40%;
    }

    .section-cards .container {
        display: flex;
    }

    .section-cards-content {
        flex: 0.4;
        padding-right: calc(var(--ct-padding) * 2);
        text-align: left;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .section-cards-list {
        flex: 0.6;
    }

    .section-cta-illustrations {
        display: block;
        overflow: hidden;
        position: absolute;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 40%;
        border-radius: var(--radius-2);
    }

    .section-cta-content {
        z-index: 2;
        margin-right: 40%;
    }

    .section-cta-illustrations [class*="icon-"] {
        background: linear-gradient(to bottom, var(--color-4), var(--color-3));
        height: auto;
        position: absolute;
        border-radius: calc(var(--w) / 4);
        z-index: 1;
        transform: rotate(-35deg);
        padding: calc(var(--w) / 5);
    }

    .section-cta-illustrations .icon-leaf {
        --w: 90%;
        top: 30%;
        left: 35%;
        padding: 5%;
    }

    .section-cta-illustrations .icon-server {
        --w: 19%;
        top: 30%;
        left: 10%;
        border-radius: 30%;
    }

    .section-cta-illustrations .icon-tree {
        --w: 33%;
        bottom: 70%;
        left: 35%;
        border-radius: 25%;
    }

    .section-table-item {
        display: flex;
    }

    .section-table .table + .table {
        margin-top: 0;
        margin-left: calc(1.5rem + 5 * var(--size-coef));
    }

    .section-not-found-background-icons > * {
        --w: calc(2rem + 10 * var(--size-coef) * var(--dim));
    }
}

@media screen and (min-width: 1250px) {
    .header-scroll .nav-links {
        top: 5rem;
    }

    .nav-links {
        width: calc(50rem + 200 * var(--size-coef));
        left: calc(var(--header-padding) / 1.5);
        top: 5rem;
        border-radius: var(--radius-1);
        border: none;
        position: absolute;
    }
}

@media screen and (min-width: 1300px) {
    .section-files-form-background-icons > * {
        --w: calc(1rem + 15 * var(--size-coef) * var(--dim));
    }
}

