@font-face {
    font-family: 'Istok Web';
    src: url('/fonts/IstokWeb-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Istok Web';
    src: url('/fonts/IstokWeb-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Rimma Sans';
    src: url('/fonts/RimmaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

:root {
    font-family: 'Istok Web', sans-serif;
    font-size: 0;
    color: #FDEAD4;
    background-color: #141321;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

*,
*:before,
*:after {
    font: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
}

a {
    color: #FDEAD4;
    text-decoration: none;
}

.app {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1568px;
    padding: 0 64px;
    margin: 0 auto;
}

.header {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    z-index: 10;
}

.header-container {
    display: flex;
    align-items: center;
    height: 80px;
}

.header-logo {
    flex: none;
    width: 98px;
}

.header-logo a {
    display: block;
    transition-duration: 350ms;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.header-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 60px;
}

.header-menu-item a,
.header-menu-item span {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition-duration: 350ms;
    cursor: pointer;
}

.header-menu-item a:hover,
.header-menu-item span:hover {
    color: #D9AE2E;
}

.header-menu-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex: none;
    cursor: pointer;
}

.header-menu-burger div {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 18px;
    flex: none;
}

.header-menu-burger span {
    position: absolute;
    background-color: #D9AE2E;
    width: 100%;
    height: 2px;
    transition: all 200ms ease 200ms, transform 200ms ease;
}

.header-menu-burger span:nth-child(1) {
    top: 0;
}

.header-menu-burger span:nth-child(2) {
    top: calc(50% - 1px);
    right: 0;
}

.header-menu-burger span:nth-child(3) {
    bottom: 0;
}

.open-mobile-menu .header-menu-burger span {
    transition: transform 200ms ease 200ms, top 200ms ease, bottom 200ms ease, opacity 200ms ease;
}

.open-mobile-menu .header-menu-burger span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% - 1px);
}

.open-mobile-menu .header-menu-burger span:nth-child(2) {
    opacity: 0;
}

.open-mobile-menu .header-menu-burger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: calc(50% - 1px);
}

.header-menu-overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(20 19 33 / 50%);
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-block {
    position: relative;
    z-index: -1;
}

.header-bg {
    position: absolute;
    display: flex;
    justify-content: center;
    inset: 0 0 auto;
    width: 100%;
    z-index: -1;
}

.header-bg img {
    display: block;
    width: 100%;
    height: auto;
    flex: none;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

.header-title {
    font-family: 'Rimma Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-top: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
}

.animation-1 .header-title {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    transition-duration: 1s;
}

.header-logo-big img {
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 532px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
}

.animation-2 .header-logo-big img {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    transition-duration: 1s;
}

.header-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 58px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
}

.animation-3 .header-buttons {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    transition-duration: 1s;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    height: 53px;
    min-width: 240px;
    padding: 0 32px;
    font-weight: 700;
    border-radius: 8px;
    color: #141321;
    background-color: #D9AE2E;
    transition-duration: 350ms;
    cursor: pointer;
}

.header-button:hover {
    opacity: 0.8;
}

.header-button-transparent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    height: 53px;
    min-width: 240px;
    padding: 0 32px;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid #D9AE2E;
    transition-duration: 350ms;
    cursor: pointer;
}

.header-button-transparent:hover {
    opacity: 0.8;
}

.header-downloads {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 58px;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
}

.animation-4 .header-downloads {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    transition-duration: 1s;
}

.header-download {
    flex: none;
}

.header-download a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgb(20 19 33 / 50%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition-duration: 350ms;
}

.header-download a:hover {
    box-shadow: 0 0 12px 2px rgb(255 255 255 / 40%);
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature-item {
    width: calc(100% / 3 - 27px);
    max-width: 375px;
    text-align: center;
}

.feature-item-photo {
    width: 100px;
    margin: 0 auto 16px;
}

.feature-item-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-item-title {
    font-size: 20px;
    font-weight: 700;
}

.feature-item-text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 140%;
}

.tariff-block {
    padding-top: 120px;
}

.tariff-title {
    font-family: 'Rimma Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #D9AE2E;
    margin-bottom: 64px;
}

.tariff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tariff-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: calc(25% - 23px);
    background-color: #FDEAD426;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 2px solid transparent;
    padding: 24px 20px;
    border-radius: 16px;
    max-width: 310px;
    transition-duration: 350ms;
}

.tariff-item:hover {
    border-color: #D9AE2E;
    box-shadow: 0 0 12px 2px rgb(255 254 227 / 40%);
}

.tariff-item-time {
    margin-bottom: 24px;
}

.tariff-item-time span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 700;
    height: 43px;
    padding: 0 24px;
    border-radius: 40px;
    background-color: #141321;
    color: #D9AE2E;
}

.tariff-item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 8px;
}

.tariff-item-price-value {
    font-size: 48px;
    font-weight: 700;
    color: #FF8041;
}

.tariff-item-price-time {
    font-size: 18px;
}

.tariff-item-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    gap: 8px;
}

.tariff-item-benefit img {
    display: block;
    width: 42px;
    height: auto;
    flex: none;
}

.tariff-item-button {
    margin-top: auto;
    padding-top: 24px;
}

.tariff-item-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    height: 45px;
    padding: 0 24px;
    font-weight: 700;
    border-radius: 8px;
    color: #141321;
    background-color: #D9AE2E;
    transition-duration: 350ms;
    cursor: pointer;
}

.tariff-item-button a:hover {
    opacity: 0.8;
}

.tariff-item-scroll-fixed {
    display: none;
    width: 8px;
    flex: none;
}

@media screen and (min-width: 1280px) {
    .tariff-enterprise {
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 100%;
        max-width: 1330px;
        height: 117px;
        gap: 40px;
    }

    .tariff-enterprise .tariff-item-time {
        margin-bottom: 0;
    }

    .tariff-enterprise .tariff-item-benefit {
        margin-top: 0;
    }

    .tariff-enterprise .tariff-item-button {
        margin-top: 0;
        padding-top: 0;
    }
}

.test-block {
    padding-top: 120px;
}

.test-title {
    font-family: 'Rimma Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #D9AE2E;
    margin-bottom: 64px;
}

.test-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

.test-item {
    position: relative;
    font-size: 18px;
    padding: 16px 24px;
    border-radius: 16px;
    border: 3px solid #D9AE2E;
}

.test-item:not(:last-child):after {
    content: '';
    position: absolute;
    display: block;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMyIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDMgNjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF80OV8yKSI+CjxyZWN0IHdpZHRoPSIzIiBoZWlnaHQ9IjUiIGZpbGw9IiNEOUFFMkUiLz4KPHJlY3QgeT0iMTUiIHdpZHRoPSIzIiBoZWlnaHQ9IjEwIiBmaWxsPSIjRDlBRTJFIi8+CjxyZWN0IHk9IjM1IiB3aWR0aD0iMyIgaGVpZ2h0PSIxMCIgZmlsbD0iI0Q5QUUyRSIvPgo8cmVjdCB5PSI1NSIgd2lkdGg9IjMiIGhlaWdodD0iNSIgZmlsbD0iI0Q5QUUyRSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzQ5XzIiPgo8cmVjdCB3aWR0aD0iMyIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K');
    width: 3px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    transform: translatex(-50%);
    top: calc(100% + 3px);
}

.test-item-button {
    margin-top: 64px;
    text-align: center;
}

.test-item-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    height: 53px;
    padding: 0 24px;
    font-weight: 700;
    border-radius: 8px;
    color: #141321;
    background-color: #D9AE2E;
    transition-duration: 350ms;
    cursor: pointer;
}

.test-item-button a:hover {
    opacity: 0.8;
}

.test-item-noty {
    text-align: center;
    margin-top: 24px;
    font-weight: 700;
    font-size: 18px;
}

.guide-block {
    margin-top: 120px;
    padding: 80px 0;
    background-color: #FDEAD426;
}

.guide-header {
    margin-bottom: 64px;
    text-align: center;
}

.guide-title {
    font-family: 'Rimma Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #D9AE2E;
}

.guide-text {
    margin-top: 24px;
    font-size: 18px;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 710px;
    margin: 0 auto;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guide-item-num {
    display: flex;
    align-items: flex-end;
    font-family: 'Rimma Sans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    width: 50px;
    height: 28px;
    color: #D9AE2E;
    flex: none;
}

.guide-item-text {
    font-size: 20px;
    line-height: 140%;
    font-weight: 700;
    width: 100%;
}

.footer {
    border-top: 1px solid rgb(253 234 212 / 40%);
    margin-top: 120px;
    padding-top: 64px;
    padding-bottom: 80px;
}

.footer-logo {
    text-align: center;
}

.footer-logo a {
    display: inline-block;
    width: 100%;
    max-width: 196px;
    transition-duration: 350ms;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
}

.footer-contact {
    width: 100%;
    max-width: 265px;
    padding: 8px 16px;
    text-align: center;
    border-radius: 8px;
    border: 1.5px solid #D9AE2E;
    white-space: nowrap;
    transition-duration: 350ms;
}

.footer-contact:hover {
    opacity: 0.8;
}

.footer-contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    gap: 8px;
}

.footer-contact-title img {
    display: block;
    width: 24px;
    height: auto;
    flex: none;
}

.footer-contact-text {
    margin-top: 4px;
    font-size: 16px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 40px auto 0;
    gap: 12px 46px;
}

.footer-link a {
    font-size: 18px;
    white-space: nowrap;
    transition-duration: 350ms;
}

.footer-link a:hover {
    color: #D9AE2E;
}

.html-page {
    padding: 120px 0 80px;
    font-size: 18px;
    line-height: 140%;
}

.html-page-content {
    max-width: 1024px;
}

.html-page a {
    color: #D9AE2E;
    text-decoration: underline;
    text-underline-offset: 20%;
    transition-duration: 350ms;
}

.html-page a:hover {
    opacity: 0.8;
}

.html-page h1 {
    font-family: 'Rimma Sans', sans-serif;
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
    color: #D9AE2E;
    margin-bottom: 64px;
}

.html-page h3 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 16px;
}

.html-page h3:not(:first-child) {
    margin-top: 32px;
}

.html-page p:not(:first-child) {
    margin-top: 16px;
}

.html-page ul {
    padding-left: 16px;
}

.html-page ul:not(:first-child) {
    margin-top: 24px;
}

.html-page ul:not(:last-child) {
    margin-bottom: 24px;
}

.html-page li {
    padding-left: 8px;
    line-height: 150%;
}

.html-page-table {
    overflow: auto;
    scrollbar-width: none;
    margin: 32px 0;
}

.html-page table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.html-page table th {
    font-weight: 700;
}

.html-page table td,
.html-page table th {
    padding: 20px;
    vertical-align: top;
    text-align: left;
}

.html-page table td {
    border-bottom: 1px solid rgb(253 234 212 / 40%);
}

.html-page table thead th {
    border-bottom: 2px solid rgb(253 234 212 / 40%);
}

@media screen and (max-width: 1440px) {
    .header-bg img {
        width: 1440px;
    }
}

@media screen and (max-width: 1439px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1279px) {
    .container {
        padding: 0 32px;
    }

    .header-menu {
        gap: 40px;
    }

    .header-downloads {
        gap: 20px;
    }

    .header-download a {
        width: 60px;
        height: 60px;
    }

    .tariff-list-scroll {
        overflow: hidden;
        overflow-x: auto;
        scrollbar-width: none;
        margin: -12px -32px;
    }

    .tariff-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 12px 32px;
        gap: 24px;
    }

    .tariff-item {
        width: 100%;
        max-width: 285px;
        flex: none;
    }

    .tariff-item-scroll-fixed {
        display: block;
    }
}

@media screen and (max-width: 1023px) {
    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .header .container {
        padding: 0 18px 0 24px;
    }

    .header-menu {
        position: absolute;
        width: 100%;
        inset: 0 0 auto;
        flex-direction: column;
        background-color: #141321;
        padding: 80px 16px 42px;
        gap: 24px;
        border-radius: 0 0 16px 16px;
        transform: translatey(-100%);
        z-index: -1;
    }

    .open-mobile-menu {
        overflow: hidden;
    }

    .header-menu.has-animation {
        transition-duration: 350ms;
    }

    .open-mobile-menu .header-menu {
        transform: translatey(0);
    }

    .header-menu-burger {
        display: flex;
    }

    .header-menu-overlay {
        display: block;
    }

    .header-menu-overlay.has-animation {
        transition-duration: 350ms;
    }

    .open-mobile-menu .header-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .header-content {
        padding: 185px 0 80px;
    }

    .header-title {
        font-size: 16px;
        margin-bottom: 24px;
        padding-top: 0;
    }

    .header-logo-big img {
        max-width: 320px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .header-button {
        height: 50px;
        font-size: 18px;
        padding: 0 24px;
        min-width: 300px;
    }

    .header-button-transparent {
        height: 50px;
        font-size: 18px;
        padding: 0 24px;
        min-width: 300px;
    }

    .header-downloads {
        flex-wrap: wrap;
        margin-top: 42px;
    }

    .header-download a {
        width: 50px;
        height: 50px;
    }

    .header-download img {
        transform: scale(0.8);
    }

    .feature-list {
        gap: 24px;
    }

    .feature-item {
        max-width: 400px;
    }

    .feature-item-title {
        font-size: 18px;
    }

    .feature-item-text {
        font-size: 16px;
    }

    .tariff-block {
        padding-top: 80px;
    }

    .tariff-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .tariff-list-scroll {
        margin: -12px -16px;
    }

    .tariff-list {
        gap: 16px;
        padding: 12px 16px;
    }

    .tariff-item {
        max-width: 364px;
        width: calc(100% - 24px);
    }

    .tariff-item-scroll-fixed {
        width: 1px;
    }

    .tariff-item-time span {
        height: 37px;
        font-size: 20px;
    }

    .tariff-item-price-value {
        font-size: 42px;
    }

    .tariff-item-benefit img {
        width: 32px;
    }

    .tariff-item-button a {
        height: 42px;
        font-size: 18px;
    }

    .test-block {
        padding-top: 80px;
    }

    .test-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .test-list {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .test-item {
        font-size: 16px;
        padding: 24px;
        width: 100%;
        text-align: center;
    }

    .test-item-noty {
        font-size: 14px;
        max-width: 380px;
        margin: 16px auto 0;
    }

    .test-item-button {
        margin-top: 42px;
    }

    .test-item-button a {
        font-size: 18px;
        height: 50px;
    }

    .test-item-noty {
        font-size: 14px;
    }

    .guide-block {
        padding: 60px 0;
        margin-top: 60px;
    }

    .guide-header {
        margin-bottom: 32px;
    }

    .guide-title {
        font-size: 28px;
    }

    .guide-text {
        font-size: 16px;
    }

    .guide-item-num {
        width: 32px;
        font-size: 28px;
    }

    .guide-list {
        gap: 24px;
        width: 100%;
        max-width: 400px;
    }

    .guide-item {
        align-items: flex-start;
        gap: 16px;
    }

    .guide-item-text {
        font-size: 18px;
    }

    .footer {
        margin-top: 80px;
        padding: 40px 0 60px;
    }

    .footer-logo a {
        max-width: 150px;
    }

    .footer-contacts {
        flex-direction: column;
    }

    .footer-link a {
        font-size: 16px;
        white-space: normal;
    }

    .html-page {
        padding: 60px 0 40px;
        font-size: 16px;
    }

    .html-page h1 {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: center;
    }

    .html-page li {
        padding-left: 4px;
    }
}