:root
{
    --white: #ffffff;
    --black: #000000;

    --primary-dark: #1D1D1D;
    --secondary-dark: #4F5D75;

    --primary-light: #EFEFEF;

    --black-additional: #080808;
    --black-additional-2: #171717;

    --red: #FF5722;
    --green: #8BC34A;
}
.text-dark
{
    color: var(--dark);
}
html, body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    /*font-family: "JetBrains Mono", monospace;*/
    /*font-family: "Manrope", sans-serif;*/
    background-color: var(--white);

    transition: all 150ms ease-in-out;
}
body {
    display: flex;
    flex-direction: column;
}


.wrapper
{
    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

header
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding: 24px 40px;

    position: fixed;
    background-color: var(--white);
    z-index: 1000;
}
.header-wrapper
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.logotype
{
    width: 100%;
    max-width: 150px;
}
.logotype-image
{
    width: 100%;
    height: auto;
}
.header-contacts
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    gap: 16px;
}
.header-nav
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    gap: 24px;
}
.header-nav a
{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 155%;

    color: var(--primary-dark);
    text-decoration: none;
}
.header-button
{
    height: 50px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    border-radius: 25px;

    box-sizing: border-box;
    padding: 12px 24px;

    border: 0;

    background-color: var(--primary-dark);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 155%;

    color: var(--white);

    cursor: pointer;

    text-decoration: none;
}


.hero
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding-top: 100px;
}
.hero-wrapper
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 80px 225px;
}
.hero-title
{
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 125%;

    color: var(--primary-dark);

    margin: 0 0 10px 0;

    text-align: center;
}
.hero-subtitle
{
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 155%;

    color: var(--secondary-dark);

    margin: 0 0 30px 0;

    text-align: center;
}
.hero-button
{
    height: 50px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    border-radius: 25px;

    box-sizing: border-box;
    padding: 12px 24px;

    border: 0;

    background-color: var(--primary-dark);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 155%;

    color: var(--white);

    margin: 0 0 60px 0;

    cursor: pointer;

    text-decoration: none;
}
.hero-video-wrapper
{
    border: 2px solid var(--primary-light);
    border-radius: 8px;
}
.hero-video
{
    width: 700px;
    height: 400px;

    background: url('../images/hero_video_preview.jpg') no-repeat center center;
    background-size: cover;

    border-radius: 8px;
    border: 10px solid var(--white);
}

.problems
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.problems-wrapper
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}

.title
{
    display: inline-block;
    max-width: 1000px;

    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 125%;

    color: var(--primary-dark);

    margin: 0 0 10px 0;

    text-align: center;
}
.subtitle
{
    display: inline-block;
    max-width: 700px;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 155%;

    color: var(--secondary-dark);

    margin: 0 0 30px 0;

    text-align: center;
}
.problems-list
{
    width: 100%;

    max-width: 1040px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;

    gap: 40px;
    position: relative;
}
.problem-result
{
    width: 100%;

    max-width: 1040px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 40px;
    position: relative;

    box-sizing: border-box;
    padding-top: 40px;
}

.problem-result-card
{
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 50px;
    box-sizing: border-box;

    background: var(--white);

    border: 1px solid var(--primary-light);
    border-radius: 8px;

    overflow: hidden;
    position: relative;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

/*
.problem-card
{
    width: 100%;
    max-width: 500px;
    max-height: 415px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 10px;

    box-sizing: border-box;
    padding: 50px;

    background-color: var(--white);

    border-radius: 8px;
    border: 1px solid var(--primary-light);

    position: relative;
    overflow: hidden;
    transform: scale(1);

    transition: all 150ms ease-in-out;
}
.problem-card::after
{
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
}
.problem-card:hover
{
    max-height:fit-content;
    position: absolute;
    transform: scale(1.03);
    z-index: 10;
}
.problem-card:hover::after
{
    display: none;
}
*/

.problem-card
{
    width: 100%;
    max-width: 500px;
    /*
    height: 415px;
    cursor: pointer;
    */

    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 50px;
    box-sizing: border-box;

    background: var(--white);

    border: 1px solid var(--primary-light);
    border-radius: 8px;

    overflow: hidden;
    position: relative;

    transition:
        transform .25s ease,
        box-shadow .25s ease;


}

.problem-card::after
{
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    background: linear-gradient(
        to top,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );

    pointer-events: none;

    transition: opacity .25s;
}

.problem-card:hover
{
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(0,0,0,.15);
}

.problem-card:hover::after
{
    opacity: 0;
}
.problem-card-preview
{
    position: fixed;

    z-index: 99999;

    background: white;

    border: 1px solid var(--primary-light);
    border-radius: 8px;

    box-shadow: 0 40px 80px rgba(0,0,0,.18);

    overflow: hidden;

    transition:
        transform .25s ease,
        height .25s ease;

    pointer-events: none;
}

.problem-card-preview .problem-card-body
{
    overflow: visible;
}

.problem-card-preview::after
{
    display: none;
}

/*----------*/

.problem-card-header
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    gap: 10px;
}
.dot
{
    width: 10px;
    height: 10px;
    border-radius: 10px;

    background-color: var(--primary-dark);
    border: 5px solid var(--secondary-dark);
}
.dot-red
{
    background-color: var(--red);
    border: 5px solid #f5a287;
}
.dot-green
{
    background-color: var(--green);
    border: 5px solid #C5E1A5;
}
.problem-card-header-text-1
{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;

    color: var(--dark);
}
.problem-card-header-text-2
{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;

    color: var(--red);
}
.problem-card-header-text-3
{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;

    color: var(--red);
}
.problem-card-body
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 10px;
}
.problem-title
{
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 125%;

    color: var(--dark);

    margin: 0;
}
.problem-text
{
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 135%;

    color: var(--secondary-dark);

    margin: 0;
}
ul
{
    width: 100%;
}
ul li
{
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 135%;

    color: var(--secondary-dark);

    margin: 0;
}

.services
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding-top: 40px;
}
.service-list
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    box-sizing: border-box;

    gap: 20px;
}
.service-list-row
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    box-sizing: border-box;

    gap: 20px;
}
.service-item
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    box-sizing: border-box;
    padding: 220px 0 20px 0;

    gap: 10px;

    border: 1px solid var(--primary-light);
    border-radius: 8px;
}
.service-item svg
{
    width: 100%;
    max-width: 100%;
}
.service-item-body
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    box-sizing: border-box;

    gap: 10px;
}
.service-item-title
{
    display: block;
    box-sizing: border-box;
    padding: 0 20px;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 135%;

    color: var(--primary-dark);

    margin: 0;
}
.service-item-text
{
    display: block;
    box-sizing: border-box;
    padding: 0 20px;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;

    color: var(--secondary-dark);

    margin: 0;
}
.service-item-result
{
    display: block;
    box-sizing: border-box;
    padding: 0 20px;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;

    color: var(--green);

    margin: 0;
}

/* Первая строка — каждый по 1/3 */
.service-list-row-3 .service-item {
    flex: 1; /* все равны */
}

/* Вторая строка — 2/3 и 1/3 */
.service-list-row-2 .service-item:first-child {
    flex: 2; /* 2/3 */
}
.service-list-row-2 .service-item:last-child {
    flex: 1; /* 1/3 */
}
.stack
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding-top: 40px;
    margin-bottom: 40px;
}
.stack-line {
    width: 100%;
    min-height: 60px;
    overflow: hidden;
    background-color: var(--secondary-dark);
    position: relative;
}

.stack-line-wrapper {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.stack-line-track {
    display: flex;
    gap: 0; /* Убираем gap полностью */
    height: 100%;
    align-items: center;
}

.stack-line-item {
    min-height: 60px;
    flex: 0 0 auto;
    padding: 0px 15px; /* Отступы через padding */
    margin: 0 5px; /* Или через margin, но тогда у первого и последнего будут отступы */
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 155%;
    color: var(--white);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}

.steps
{
    width: 100%;

    background-color: var(--black-additional);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding: 60px 0;
}
.steps-wrapper
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}
.steps-wrapper .title
{
    color: var(--white);
}
.steps-wrapper .subtitle
{
    color: var(--primary-light);
}

.steps-grid
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    box-sizing: border-box;
}
.steps-grid-rows
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    box-sizing: border-box;

    background-color: var(--black-additional);
}
.step-card
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;

    background-color: var(--black-additional);
}
.step-card-left
{
    width: 100%;
    max-width: 600px;
    height: 600px;
    /*height: 100vh;*/

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    background-color: var(--black-additional);

    box-sizing: border-box;
    padding: 100px 60px;
}
.step-card-right
{
    width: 100%;
    max-width: 600px;
    height: 600px;
    /*height: 100vh;*/

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    background-color: var(--black-additional-2);

    box-sizing: border-box;
    padding: 100px 60px;
}
.step-card-right-screen
{
    width: 100%;
    height: 300px;
    background-color: red;

    border-radius: 16px;
}
.steps-column
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;

    box-sizing: border-box;

    background-color: var(--black-additional);
}
.steps-column-animated
{
    position: relative;
    background-color: var(--black-additional-2);0px
}


.step-item
{
    width: 100%;
    max-width: 600px;
    height: 600px;
    /*height: 100vh;*/

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    background-color: var(--black-additional);

    box-sizing: border-box;
    padding: 100px 60px;
}
.step-item-title
{
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 125%;

    color: var(--white);

    margin: 0;
}
.step-item-text
{
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 125%;

    color: var(--primary-light);

    margin: 0;
}
.steps-column-animated
{
    align-items: flex-start;
}
.step-screen
{
    width: 100%;
    max-width: 600px;
    height: 600px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    box-sizing: border-box;
    padding: 100px 100px;

    background-color: var(--black-additional-2);
}
.step-screen-card
{
    width: 100%;
    height: 200px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    background-color: #b6b6b6;
}

.faqs
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding-top: 40px;

    padding-bottom: 100px;
}
.faqs-wrapper
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}
.faqs-list
{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    gap: 20px;
}
.faqs-item
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 40px;
    gap: 10px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    background-color: #ffffff;

    transition: all 150ms ease-in-out;
}
.faqs-item:hover {

    transform: translateY(-2px);

    border: 1px solid #fbfbfb;
    background-color: #fbfbfb;
}
.faqs-item.active {

    transform: translateY(-2px);

    border: 1px solid #fbfbfb;
    background-color: #fbfbfb;
}
.faqs-item-title
{
    box-sizing: border-box;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 135%;
    color: var(--primary-dark);
    margin: 0;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;
}
.faqs-item-title:after
{
    content: "";

    width: 40px;
    height: 2px;

    background-color: var(--primary-dark);

    margin-bottom: 30px;
}
.faqs-item-text
{
    display: block;
    box-sizing: border-box;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;
    color: var(--secondary-dark);
    margin: 0;
}

.cases
{
    width: 100%;

    background-color: var(--black-additional);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
    padding: 60px 0;
}
.cases-wrapper
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}
.cases-wrapper .title
{
    color: var(--white);
}
.cases-wrapper .subtitle
{
    color: var(--primary-light);
}


.cases-list
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;
}
.cases-item
{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 0px;

    /*background-color: #171717;*/

    border-radius: 16px;
}
.cases-item-left
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;

    box-sizing: border-box;
    padding: 40px;

    background-color: #171717;

    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.cases-item-right
{
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}
.cases-svg
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.case-client
{
    display: block;
    box-sizing: border-box;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #dddddd;
    margin: 0;
}
.case-title
{
    display: block;
    box-sizing: border-box;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 135%;
    color: #ffffff;
    margin: 0;
}
.case-text
{
    display: block;
    box-sizing: border-box;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #dddddd;
    margin: 0;
}
.case-list
{
    display: block;
    box-sizing: border-box;
    padding: 0 0 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #dddddd;
    margin: 0;
}
.case-list li
{
    display: block;
    box-sizing: border-box;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
    color: #ffffff;
    margin: 0;
}


.contacts
{
    width: 100%;
    background-color: var(--black-additional);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 60px 0;
}
.contact-wrapper
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
}
.contacts .title
{
    font-size: 90px;
    font-weight: 300;
    color: var(--white);
}
.contacts .subtitle
{
    color: var(--primary-light);
}
.cta-wrapper
{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    gap: 20px;
}
.cta
{
    width: 100%;
    max-width: 600px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
}
.cta-row
{
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    gap: 20px;
}
.cta-input
{
    width: 100%;
    height: 50px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    box-sizing: border-box;
    padding: 0 10px;

    border: 2px solid #171717;
    background: none;

    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    transition: all 150ms ease-in-out;
}
::placeholder
{
    color: var(--secondary-dark);
}
.cta-row-submit
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 0;
}
.cta-submit
{
    height: 50px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    border-radius: 25px;

    box-sizing: border-box;
    padding: 12px 24px;

    border: 0;

    background-color: #171717;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 155%;

    color: var(--white);

    cursor: pointer;
}



/* Стиль для уведомления */
#notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 360px;
}

#notification.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#notification button {
    background: #8BC34A;
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s;
    white-space: nowrap;
}

#notification button:hover {
    background: #45a049;
}

main
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  box-sizing: border-box;
  padding: 220px 0 0 0;

  font-size: 16px;
  line-height: 110%;
}
main div
{
  font-size: 16px;
  line-height: 135%;
}
main h5
{
  font-size: 24px;
  line-height: 135%;
}
.wrapper-doc
{
  width: 100%;
  max-width: 1200px;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.doc-row
{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-doc,
.link-doc
{
  font-size: 14px;
  line-height: 135%;
  color: #efefef;
}


/* Уведомление */
#fragum-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 24px;

    background: #333;
    color: #fff;

    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);

    font-size: 14px;
    line-height: 1.5;

    max-width: 360px;
    z-index: 99999;

    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease;
}

#fragum-notice.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#fragum-notice.success {
    background: #2e7d32;
}

#fragum-notice.error {
    background: #c62828;
}

#fragum-notice button {
    background: #8BC34A;
    color: #fff;

    border: none;
    border-radius: 4px;

    padding: 6px 18px;

    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
}

#fragum-notice button:hover {
    background: #6fa53d;
}
