@charset "utf-8";

html {
  height: 100%;
}
img {
  /*position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(-50%, -50%);*/
  vertical-align: middle;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body,
td,
th,
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-weight: 500;
  font-size: 16px;
  color: #111316;
  height: 100%;
  line-height: 130%;
}
body {
  background: white;
  overflow: hidden;
}
a {
  text-decoration: none;
  /* Убираем подчеркивание у ссылок */
}
        #wrap {
            width: 100%;
            height: 100%;
            max-width: 1920px;
            background-color: white;
            position: relative;
            left: 0;
            top: 0;
            margin: 0 auto;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
           
            /* прокрутка  */
            z-index: 0;

            background-image: url('images/back-mm.jpg');
            background-size: cover;
            background-position: center;   /* Центрирует изображение */
            background-repeat: repeat-y;
            
        }

        .all {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
           

            width: 100%;
            height: 100%;
        }

        .page-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;

            margin: auto;
           

            width: -webkit-fit-content;
           

            width: -moz-fit-content;
           

            width: fit-content;
            max-width: 90%;
            padding: 20px;

            
            background: linear-gradient(
                135deg,
                blue 0%,
                #764ba2 100%
            );

            border: white 1px solid;
            border-radius: 26px;

            -webkit-box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.25);

                    box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.25);

            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

       
        h1 {
            width: 100%;
            max-width: 500px;

            margin-bottom: 30px;
            padding: 0 10px;

            color: white;
            text-align: center;
            font-size: clamp(22px, 5vw, 28px);
            line-height: 1.25;

            text-shadow:
                0 2px 10px rgba(0, 0, 0, 0.3);

            -webkit-animation: titleTremble 3s ease-in-out infinite;

                    animation: titleTremble 3s ease-in-out infinite;
            -webkit-transform-origin: center;
                -ms-transform-origin: center;
                    transform-origin: center;
        }

        @-webkit-keyframes titleTremble {
            0%, 86%, 100% {
                -webkit-transform: translate(0, 0) rotate(0deg);
                        transform: translate(0, 0) rotate(0deg);
            }

            88% {
                -webkit-transform: translate(-1px, 0) rotate(-0.35deg);
                        transform: translate(-1px, 0) rotate(-0.35deg);
            }

            90% {
                -webkit-transform: translate(1px, -1px) rotate(0.35deg);
                        transform: translate(1px, -1px) rotate(0.35deg);
            }

            92% {
                -webkit-transform: translate(-1px, 1px) rotate(-0.25deg);
                        transform: translate(-1px, 1px) rotate(-0.25deg);
            }

            94% {
                -webkit-transform: translate(1px, 0) rotate(0.25deg);
                        transform: translate(1px, 0) rotate(0.25deg);
            }

            96% {
                -webkit-transform: translate(0, -1px) rotate(0deg);
                        transform: translate(0, -1px) rotate(0deg);
            }
        }

        @keyframes titleTremble {
            0%, 86%, 100% {
                -webkit-transform: translate(0, 0) rotate(0deg);
                        transform: translate(0, 0) rotate(0deg);
            }

            88% {
                -webkit-transform: translate(-1px, 0) rotate(-0.35deg);
                        transform: translate(-1px, 0) rotate(-0.35deg);
            }

            90% {
                -webkit-transform: translate(1px, -1px) rotate(0.35deg);
                        transform: translate(1px, -1px) rotate(0.35deg);
            }

            92% {
                -webkit-transform: translate(-1px, 1px) rotate(-0.25deg);
                        transform: translate(-1px, 1px) rotate(-0.25deg);
            }

            94% {
                -webkit-transform: translate(1px, 0) rotate(0.25deg);
                        transform: translate(1px, 0) rotate(0.25deg);
            }

            96% {
                -webkit-transform: translate(0, -1px) rotate(0deg);
                        transform: translate(0, -1px) rotate(0deg);
            }
        }

        .captcha-container {
            width: 400px;
            max-width: 100%;

            padding: 40px;

            background: white;
            border-radius: 20px;
            text-align: center;

            -webkit-box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.3);

                    box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .captcha-title {
            margin-bottom: 30px;

            color: #333;
            font-size: 18px;
            line-height: 1.4;
            font-weight: 500;
        }

        .slider-track {
            position: relative;

            width: 100%;
            height: 50px;

            overflow: hidden;

            background:
                -webkit-gradient(
                    linear,
                    left top, right top,
                    from(#e0e5ec),
                    to(#c9d1db)
                );

            background:
                linear-gradient(
                    90deg,
                    #e0e5ec 0%,
                    #c9d1db 100%
                );

            border-radius: 25px;

            -webkit-box-shadow:
                inset 0 2px 5px rgba(0, 0, 0, 0.1);

                    box-shadow:
                inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .slider-progress {
            position: absolute;
            top: 0;
            left: 0;

            width: 0;
            height: 100%;

            background:
                -webkit-gradient(
                    linear,
                    left top, right top,
                    from(#4facfe),
                    to(#00f2fe)
                );

            background:
                linear-gradient(
                    90deg,
                    #4facfe 0%,
                    #00f2fe 100%
                );

            border-radius: 25px;

            -webkit-transition: background 0.3s;

            transition: background 0.3s;
        }

        .slider-progress.success {
            background:
                -webkit-gradient(
                    linear,
                    left top, right top,
                    from(#43e97b),
                    to(#38f9d7)
                );
            background:
                linear-gradient(
                    90deg,
                    #43e97b 0%,
                    #38f9d7 100%
                );
        }

        .slider-progress.error {
            background:
                -webkit-gradient(
                    linear,
                    left top, right top,
                    from(#f5576c),
                    to(#f093fb)
                );
            background:
                linear-gradient(
                    90deg,
                    #f5576c 0%,
                    #f093fb 100%
                );
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            left: 50%;

            -webkit-transform: translate(-50%, -50%);

                -ms-transform: translate(-50%, -50%);

                    transform: translate(-50%, -50%);

            color: #a0aec0;
            font-size: 20px;
            letter-spacing: 5px;

            -webkit-user-select: none;

               -moz-user-select: none;

                -ms-user-select: none;

                    user-select: none;
            pointer-events: none;

            -webkit-transition: opacity 0.3s;

            transition: opacity 0.3s;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;

            display: -webkit-box;

            display: -ms-flexbox;

            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;

            width: 50px;
            height: 50px;

            background:
                linear-gradient(
                    135deg,
                    #667eea 0%,
                    #764ba2 100%
                );

            border-radius: 50%;
            cursor: -webkit-grab;
            cursor: grab;
            -ms-touch-action: none;
                touch-action: none;

            -webkit-box-shadow:
                0 4px 15px rgba(102, 126, 234, 0.4);

                    box-shadow:
                0 4px 15px rgba(102, 126, 234, 0.4);

            -webkit-transition:
                -webkit-transform 0.2s,
                -webkit-box-shadow 0.2s;

            transition:
                -webkit-transform 0.2s,
                -webkit-box-shadow 0.2s;

            transition:
                transform 0.2s,
                box-shadow 0.2s;

            transition:
                transform 0.2s,
                box-shadow 0.2s,
                -webkit-transform 0.2s,
                -webkit-box-shadow 0.2s;
        }

        .slider-handle:hover {
            -webkit-transform: scale(1.05);
                -ms-transform: scale(1.05);
                    transform: scale(1.05);

            -webkit-box-shadow:
                0 6px 20px rgba(102, 126, 234, 0.5);

                    box-shadow:
                0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .slider-handle:active {
            cursor: -webkit-grabbing;
            cursor: grabbing;
            -webkit-transform: scale(0.98);
                -ms-transform: scale(0.98);
                    transform: scale(0.98);
        }

        .slider-handle.success {
            background:
                linear-gradient(
                    135deg,
                    #43e97b 0%,
                    #38f9d7 100%
                );

            -webkit-box-shadow:
                0 4px 15px rgba(67, 233, 123, 0.4);

                    box-shadow:
                0 4px 15px rgba(67, 233, 123, 0.4);
        }

        .slider-handle.error {
            background:
                linear-gradient(
                    135deg,
                    #f5576c 0%,
                    #f093fb 100%
                );

            -webkit-box-shadow:
                0 4px 15px rgba(245, 87, 108, 0.4);

                    box-shadow:
                0 4px 15px rgba(245, 87, 108, 0.4);
        }

        .slider-handle svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .status-message {
            min-height: 20px;
            margin-top: 20px;

            color: #718096;
            font-size: 14px;

            -webkit-transition: all 0.3s;

            transition: all 0.3s;
        }

        .status-message.success {
            color: #38a169;
            font-weight: 600;
        }

        .status-message.error {
            color: #e53e3e;
        }

        .loader {
            display: none;
            margin-top: 20px;
        }

        .loader.active {
            display: block;
        }

        .loader-spinner {
            width: 30px;
            height: 30px;
            margin: 0 auto;

            border: 3px solid #e2e8f0;
            border-top-color: #667eea;
            border-radius: 50%;

            -webkit-animation: spin 1s linear infinite;

                    animation: spin 1s linear infinite;
        }

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

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

        .shield-icon {
            display: block;

            width: 72px;
            height: 72px;

            margin: 0 auto 20px;
            padding: 12px;

            background: #ffffff;
            border: 3px solid #667eea;
            border-radius: 50%;

            fill: #667eea;

            -webkit-box-shadow:
                0 6px 20px rgba(102, 126, 234, 0.18),
                inset 0 1px 0 rgba(255,255,255,0.8);

                    box-shadow:
                0 6px 20px rgba(102, 126, 234, 0.18),
                inset 0 1px 0 rgba(255,255,255,0.8);

            -webkit-transition: -webkit-transform .2s ease;

            transition: -webkit-transform .2s ease;

            transition: transform .2s ease;

            transition: transform .2s ease, -webkit-transform .2s ease;

            
        }

        

        .shield-icon:hover {
            -webkit-transform: scale(1.05);
                -ms-transform: scale(1.05);
                    transform: scale(1.05);
        }

        .hp-field {
            position: absolute;
            top: -9999px;
            left: -9999px;
            z-index: -1;

            width: 0;
            height: 0;

            opacity: 0;
            pointer-events: none;
        }

        .security-info {
            margin-top: 25px;
            padding-top: 20px;

            border-top: 1px solid #e2e8f0;

            color: #a0aec0;
            font-size: 11px;
        }

        .attempt-counter {
            margin-top: 10px;

            color: #a0aec0;
            font-size: 12px;
        }

        @media (max-width: 520px) {
            body {
                -webkit-box-align: start;
                    -ms-flex-align: start;
                        align-items: flex-start;
                padding: 10px;
            }

            .page-container {
                width: 100%;
                padding: 20px;
                border-radius: 20px;
            }

            h1 {
                margin-bottom: 20px;
                padding: 0;
            }

            .captcha-container {
                width: 100%;
                padding: 30px 20px;
                border-radius: 16px;
            }
        }

        @media (max-width: 360px) {
            body {
                padding: 6px;
            }

            .page-container {
                padding: 20px;
            }

            .captcha-container {
                padding: 25px 15px;
            }

            .captcha-title {
                font-size: 16px;
            }
        }


        /* КУКИ-БАННЕР*/

        .cookie-banner-overlay,
    .cookie-banner-overlay * {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }

    .cookie-banner-overlay {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99999;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        padding: 12px 16px;

        pointer-events: none;

        -webkit-animation:
            cookieSlideUp
            0.45s
            cubic-bezier(0.22, 1, 0.36, 1)
            forwards;

                animation:
            cookieSlideUp
            0.45s
            cubic-bezier(0.22, 1, 0.36, 1)
            forwards;
    }

    @-webkit-keyframes cookieSlideUp {
        from {
            opacity: 0;
            -webkit-transform: translateY(30px);
                    transform: translateY(30px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @keyframes cookieSlideUp {
        from {
            opacity: 0;
            -webkit-transform: translateY(30px);
                    transform: translateY(30px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @-webkit-keyframes cookieFadeOut {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        to {
            opacity: 0;
            -webkit-transform: translateY(20px);
                    transform: translateY(20px);
        }
    }

    @keyframes cookieFadeOut {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        to {
            opacity: 0;
            -webkit-transform: translateY(20px);
                    transform: translateY(20px);
        }
    }

    .cookie-banner-wrapper {
        position: relative;

        width: 100%;
        max-width: 560px;

        pointer-events: auto;
    }

    .cookie-banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 14px;

        width: 100%;
        padding: 14px 20px;

        background: #ffffff;
        border: 1px solid #e6e6e6;
        border-radius: 16px;

        -webkit-box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.08),
            0 1px 4px rgba(0, 0, 0, 0.04);

                box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.08),
            0 1px 4px rgba(0, 0, 0, 0.04);

        font-family:
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Helvetica,
            Arial,
            sans-serif;

        cursor: default;
        outline: none;

        -webkit-transition:
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;

        transition:
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;

        transition:
            box-shadow 0.2s ease,
            transform 0.15s ease;

        transition:
            box-shadow 0.2s ease,
            transform 0.15s ease,
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;
    }

    .cookie-banner:hover {
        -webkit-box-shadow:
            0 6px 28px rgba(0, 0, 0, 0.1),
            0 2px 6px rgba(0, 0, 0, 0.05);
                box-shadow:
            0 6px 28px rgba(0, 0, 0, 0.1),
            0 2px 6px rgba(0, 0, 0, 0.05);

        -webkit-transform: translateY(-1px);

            -ms-transform: translateY(-1px);

                transform: translateY(-1px);
    }

    .cookie-banner:focus-visible {
        outline: 3px solid rgba(255, 171, 0, 0.4);
        outline-offset: 3px;
    }

    .cookie-banner-icon {
        -ms-flex-negative: 0;
            flex-shrink: 0;

        width: 38px;
        height: 38px;
    }

    .cookie-banner-text {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;

        margin: 0;

        color: #333333;
        font-size: 13px;
        line-height: 1.45;
    }

    .cookie-banner-text a {
        color: #d88f00;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .cookie-banner-btn {
        -ms-flex-negative: 0;
            flex-shrink: 0;

        padding: 9px 18px;

        background: #ffdd2d;
        color: #333333;

        border: none;
        border-radius: 10px;

        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;

        cursor: pointer;

        -webkit-transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease,
            -webkit-transform 0.15s ease;
        
            -webkit-animation: cookieButtonAttention 3s ease-in-out infinite;
        
                    animation: cookieButtonAttention 3s ease-in-out infinite;
    }

    @-webkit-keyframes cookieButtonAttention {

        0%, 88%, 100% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        91% {
            -webkit-transform: translateY(-2px);
                    transform: translateY(-2px);
        }

        94% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        96% {
            -webkit-transform: translateY(-1px);
                    transform: translateY(-1px);
        }

        98% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @keyframes cookieButtonAttention {

        0%, 88%, 100% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        91% {
            -webkit-transform: translateY(-2px);
                    transform: translateY(-2px);
        }

        94% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        96% {
            -webkit-transform: translateY(-1px);
                    transform: translateY(-1px);
        }

        98% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    .cookie-banner-btn:hover {
        background: #ffd319;
    }

    .cookie-banner-btn:active {
        -webkit-transform: scale(0.97);
            -ms-transform: scale(0.97);
                transform: scale(0.97);
    }

    .cookie-banner-btn:focus-visible,
    .cookie-banner-close:focus-visible {
        outline: 3px solid rgba(255, 171, 0, 0.45);
        outline-offset: 2px;
    }

    .cookie-banner-close {
        position: absolute;
        top: -6px;
        right: -6px;
        z-index: 2;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        width: 22px;
        height: 22px;
        padding: 0;

        background: #f0f0f0;
        border: none;
        border-radius: 50%;

        line-height: 1;
        cursor: pointer;

        -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

                box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

        -webkit-transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease,
            -webkit-transform 0.15s ease;
    }

    .cookie-banner-close:hover {
        background: #e0e0e0;
        -webkit-transform: scale(1.06);
            -ms-transform: scale(1.06);
                transform: scale(1.06);
    }

    .cookie-banner-close svg {
        width: 10px;
        height: 10px;
    }

    /* Мобильная адаптация */
    @media (max-width: 600px) {
        .cookie-banner-overlay {
            max-height: 20vh;
            padding: 8px 10px;
        }

        .cookie-banner {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            gap: 10px;

            max-height: 20vh;
            padding: 10px 14px;

            overflow: hidden;

            border-radius: 12px;
        }

        .cookie-banner-icon {
            width: 28px;
            height: 28px;
        }

        .cookie-banner-text {
            -ms-flex-preferred-size: calc(100% - 42px);
                flex-basis: calc(100% - 42px);

            font-size: 11.5px;
            line-height: 1.35;
        }

        .cookie-banner-btn {
            width: auto;
            margin: 0 auto;
            padding: 8px 24px;

            border-radius: 8px;

            font-size: 12.5px;
        }
    }

    /* Совсем маленькие экраны */
    @media (max-width: 380px) {
        .cookie-banner-text {
            font-size: 11px;
        }

        .cookie-banner-btn {
            padding: 7px 12px;
            font-size: 12px;
        }
    }

    /* Отключение анимации для пользователей,
       предпочитающих уменьшенное движение */
    @media (prefers-reduced-motion: reduce) {
        .cookie-banner-overlay,
        .cookie-banner,
        .cookie-banner-btn,
        .cookie-banner-close {
            -webkit-animation: none;
                    animation: none;
            -webkit-transition: none;
            transition: none;
        }
    }

    /* КОНТЕЙНЕРЫ */
    .container {
        position: relative;
        width: 90vw;
        padding: 0;
        margin-right: auto;
        margin-left: auto;

        z-index: 10;
    }

    @media (min-width: 360px) {
        .container {
            width: 325px;
        }
    }

    @media (min-width: 390px) {
        .container {
            width: 350px;
        }
    }


    @media (min-width: 576px) {
        .container {
            width: 540px;
        }
    }

    @media (min-width: 768px) {
        .container {
            width: 720px;
        }
    }



    .row {
        width: 100%;
        margin-bottom: 50px;
    }


    /* Блок с мокапом и аннотацией */

    .anno {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;

        background-color: #fff;
        padding: 20px;
       
        margin-top: 20px;

        border-radius: 10px;
    }

    @media (min-width: 576px) {
        .anno {
            width: 540px;
        }
    }

    @media (min-width: 768px) {
        .anno {
            width: 720px;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
        }

    }

    .anno__mockup {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: auto;

        margin-bottom: 30px;
    }
    .anno__mockup img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
			
        width: 100%;
        height: auto;
        
        margin: auto;
    }

    .anno__textzone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        width: 100%;
    }

    .anno__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 10px;
    }

    .anno__title p {
        font-family: "Roboto", sans-serif;
        font-size: 24px;
        font-weight: 300;
        font-style: normal;
        text-align: left;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;

        color: #58595b;
    }

    .anno__subtitle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 10px;
    }

    .anno__subtitle p {
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-weight: 500;
        font-style: normal;
        text-align: left;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;
    }

    .anno__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 10px;
    }

    .anno__text p {
        font-family: "Roboto", sans-serif;
        font-size: 17px;
        font-weight: 500;
        font-style: normal;
        text-align: left;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;

        color: #13639e;
    }

    @media (min-width: 768px) {
        .anno__mockup {
            width: 250px;
            margin-bottom: 0;
            margin-right: 20px;
        }

        .anno__textzone {
            width: 410px;
        }

    }

    /* Имитация ридера */



    .rider {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;

        width: 100%;
        padding: 20px;

        background-color: white;

        border-radius: 10px;
    }

    @media (min-width: 768px) {
        .container {
            padding: 0;
        }
    }

    .rider__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 24px;
    }

    .rider__title p {
        font-family: "Roboto", sans-serif;
        font-size: 36px;
        font-weight: 500;
        font-style: normal;
        text-align: center;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;

        
    }

    .rider__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: normal;
        
            -ms-flex-direction: column;
        
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;

        
    }

    .rider__text p {
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: lighter;
        font-weight: 300;
        
       
        line-height: 1.2;
        
        text-align: justify;
        margin-bottom: 7px;
        padding-right: 1px;

        color: #58595b;
    }

    .rider__refzone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        width: 100%;

        margin-top: 30px;
        margin-bottom: 10px;

    }

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

        
        
        width: 100%;
        height: auto;
        border-radius: 20px;

        padding: 10px;

        cursor: pointer;


        background-color: #fff;
		border: 1px solid #13639e;
		
    }

    .rider__button:hover {
        border: 1px solid red;
    }

    .rider__button p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: auto;

        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 500;
        font-style: normal;
        text-align: center;
       
        line-height: 100%;

        color: #13639e;
    }

    @media (min-width: 360px) {
        .rider__button {
            width: 255px;

            
            
        }
    }


    @media (min-width: 576px) {
        .rider__button {
            width: 300px;
            padding-left: 10px;
            padding-right: 10px;
            
            font-size: 14px;

            
            
            &-last{
                
                margin: 0;
            }
        }
    }

    
    /* ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ ССЫЛКА */

    .privacy-link {
    position: fixed;
    left: 50%;
    bottom: 12px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);

    z-index: 1000;

    text-align: center;

    background-color: rgba(255,255,255,.8);
    padding: 5px 15px;

    border-radius: 5px;

    
}

.privacy-link a {
    display: inline-block;

    

    color: blue;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;

    -webkit-transition:
        color .2s ease,
        opacity .2s ease;

    transition:
        color .2s ease,
        opacity .2s ease;
}

.privacy-link a:hover {
    color: red;
    text-decoration: underline;
}

.privacy-link a:focus-visible {
    outline: 2px solid rgba(255,255,255,.5);
    outline-offset: 4px;
    border-radius: 3px;
}

@media (max-width:600px) {
    .privacy-link {
        bottom: 8px;
        width: 90%;
        margin-bottom: 10px;
        
    }

    .privacy-link a {
        font-size: 12px;
    }
}


    /* ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ БЛОК */

    .politic {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;

        width: 100%;
        height: 95vh;
        padding: 20px;

        background-color: white;

        border-radius: 10px;
        margin-top: 2.5vh;
        margin-bottom: 2.5vh;
    }

    .politic__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 16px;
    }

    .politic__title p {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
        text-align: left;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;

        
    }

    .politic__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: normal;
        
            -ms-flex-direction: column;
        
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;

        
    }

    .politic__text p {
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: lighter;
        font-weight: 300;
        
       
        line-height: 1.2;
        
        text-align: left;
        margin-bottom: 7px;
        padding-right: 1px;

        color: #58595b;
    }

    .politic__text p a:hover {
        color: red;
    }

    @media (min-width:576px) {
        .politic__title {
            
            margin-bottom: 24px;
        }
        .politic__title p {
            text-align: center;
            font-size: 24px;
        }
        .politic__text p {
             font-size: 16px;
        }
    }

    @media (min-width:768px) {
        .politic {
            width: 540px;
            margin-left: auto;
            margin-right: auto;
        }
    }