#treatmentSection {

    --font-family: HelveticaNeueCyr;
    font-family: var(--font-family);

    @media (max-width: 1239px) {
        margin-top: 100px;
        width: auto;
        margin-left: 7.14vw;
        margin-right: 7.14vw;
    }

    @media (min-width: 1240px) {
        padding-top: 150px;
        width: 1200px;
        margin-left: auto;
        margin-right: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(25px, 5.95vw);
            text-align: center;
            color: #fff;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 37px;
            color: #fff;
        }
    }

    .presentation {
        @media (max-width: 1239px) {
            margin-top: 60px;
            width: auto;

            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        @media (min-width: 1240px) {
            margin-top: 80px;
            width: 1120px;
        }
    }

    .progress {
        position: relative;
    }

    .line {
        position: absolute;

        @media (max-width: 1239px) {
            margin-left: 6px;
            background-color: #fff;
            width: 1px;
            height: 100%;
            opacity: 0.3;
        }

        @media (min-width: 1240px) {
            margin-top: 7px;
            background-color: #fff;
            opacity: 0.3;
            height: 1px;
            width: 100%;
        }
    }

    .line.appear {
        @media (max-width: 1239px) {
            animation: Height_0_100 1000ms;
        }

        @media (min-width: 1240px) {
            animation: Width_0_100 1000ms;
        }
    }

    .dotQueue {
        @media (max-width: 1239px) {
            position: absolute;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            padding-top: 55.95vw;
            padding-bottom: 41.19vw;
            box-sizing: border-box;
        }

        @media (min-width: 1240px) {
            position: absolute;
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .dot {
        border-radius: 100%;
        background-color: #fff;

        @media (max-width: 1239px) {
            width: 2.62vw;
            height: 2.62vw;
            margin: 0.24vw;
        }

        @media (min-width: 1240px) {
            width: 11px;
            height: 11px;
            margin: 1px;
        }
    }

    .dot.appear {
        @media (max-width: 1239px) {
            animation: AppearInside 400ms;
        }

        @media (min-width: 1240px) {
            animation: AppearInside 400ms;
        }
    }

    .dot.accent, .dot.dark {
        background-color: #1d76ff;

        @media (max-width: 1239px) {
            width: 3.10vw;
            height: 3.10vw;
        }

        @media (min-width: 1240px) {
            width: 13px;
            height: 13px;
        }
    }

    .cardBox {
        @media (max-width: 1239px) {}

        @media (min-width: 1240px) {
            margin-top: 115px;
            width: 1120px;
            overflow: hidden;
        }
    }

    .cardHolder {
        @media (max-width: 1239px) {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;

            margin-top: 22.86vw;
        }

        @media (min-width: 1240px) {
            display: flex;
            flex-direction: row;
            align-items: stretch;
        }
    }

    .card {
        background-color: #515151;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        @media (max-width: 1239px) {
            border-radius: 3.57vw;

            width: 71.43vw;
            min-height: 69.05vw;

            padding-top: 4.05vw;
            padding-left: 4.05vw;
            padding-right: 4.76vw;
            padding-bottom: 6.67vw;
            margin-bottom: 6.67vw;
        }

        @media (min-width: 1240px) {
            border-radius: 10px;

            box-sizing: border-box;
            width: 545px;
            min-height: 350px;

            padding-top: 20px;
            padding-left: 22px;
            padding-right: 33px;
            padding-bottom: 30px;

            margin-right: 30px;
        }
    }

    .card.appear {
        @media (max-width: 1239px) {
            animation: AppearInside 600ms;
        }

        @media (min-width: 1240px) {}
    }

    .card .header {
        display: flex;
        flex-direction: row;
    }

    .card img {
        @media (max-width: 1239px) {
            width: 14.29vw;
            height: 14.29vw;

            border-radius: 2.38vw;
        }

        @media (min-width: 1240px) {
            width: 76px;
            height: 76px;

            border-radius: 10px;
        }
    }

    .card .title {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(18px, 4.29vw);
            line-height: 105%;
            color: #fff;

            align-self: center;
            text-align: left;
            margin-left: 4.52vw;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 22px;
            line-height: 104%;
            color: #fff;

            margin-left: 24px;
            margin-top: 16px;
            width: 340px;
        }
    }

    .card .number {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(8px, 1.90vw);
            color: #fff;

            margin-right: 3vw;
            margin-top: 3.81vw;
            margin-left: auto;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 14px;
            color: #fff;

            margin-top: 16px;
            margin-left: auto;
        }
    }

    .card .body {
        display: flex;
        flex-direction: column;
    }

    .card .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        @media (max-width: 1239px) {
            margin-top: 4.76vw;
        }

        @media (min-width: 1240px) {
            margin-top: 13px;
        }
    }

    .card .dot {
        @media (max-width: 1239px) {
            width: 10px;
            height: 10px;
            margin: 1px;
            margin-top: 2px;
            border-radius: 100%;
        }

        @media (min-width: 1240px) {
            width: 10px;
            height: 10px;
            margin: 1px;
            border-radius: 100%;
        }
    }

    .card .text {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(12px, 2.86vw);
            line-height: 120%;
            color: #DCDCDC;

            width: 57.62vw;
        }

        @media (min-width: 1240px) {
            width: 460px;
            color: #DCDCDC;
        }
    }

    .consultButton {
        cursor: pointer;

        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(13px, 3.10vw);
            color: #fff;

            padding-left: min(80px, 19.05vw);
            padding-right: min(80px, 19.05vw);
            padding-top: min(20px, 4.76vw);
            padding-bottom: min(20px, 4.76vw);
            border-radius: min(15px, 3.57vw);

            box-sizing: border-box;
            margin-top: 50px;

            background-color: #1d76ff;
            color: #fff;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 20px;
            color: #fff;

            padding-left: 50px;
            padding-right: 50px;
            padding-top: 26px;
            padding-bottom: 26px;
            margin-top: 117px;
            box-sizing: border-box;

            border-radius: 25px;
            background-color: #1d76ff;
            color: #fff;
        }
    }
}