#mottoSection {

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

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

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

    .head {
        display: flex;
        flex-direction: column;

        @media (max-width: 1239px) {
            align-items: flex-start;
        }

        @media (min-width: 1240px) {
            align-items: center;
        }
    }

    .goBack {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 12px;
        color: #fff;

        text-decoration: none;

        background-color: #2f2f2f;
        border-radius: 40px;

        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 27px;
        padding-right: 27px;

        @media (max-width: 1239px) {
            margin-bottom: 50px;
        }

        @media (min-width: 1240px) {
            margin-bottom: 60px;
        }
    }

    .motto {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(10.00vw, 42px);
            line-height: 100%;
            color: #fff;

            width: 78.57vw;
            margin-bottom: 35px;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 46px;
            line-height: 100%;
            text-align: center;
            color: #fff;

            max-width: 790px;
            margin-bottom: 65px;
        }
    }

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

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

    .motto>.accent {
        color: #1d76ff;
    }

    .head>.description {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(3.81vw, 16px);
            line-height: 100%;
            color: #9F9F9F;

            max-width: 87.14vw;
            margin-bottom: 55px;
        }

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

            max-width: 920px;
            margin-bottom: 110px;
        }
    }

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

        @media (min-width: 1240px) {
            animation: AppearOutside 600ms;
        }
    }

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

        @media (min-width: 1240px) {
            margin-bottom: 5px;
        }
    }

    .singleRow>img, .singleRow>video {
        @media (max-width: 1239px) {
            width: 90.48vw;
            height: 57.14vw;

            object-fit: cover;
            border-radius: 4.76vw;
        }

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

            object-fit: cover;
            border-radius: 30px;

            animation: CardDeFocus 200ms;
        }
    }

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

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

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

    .doubleRow>img, .doubleRow>video {
        object-fit: cover;

        @media (max-width: 1239px) {
            border-radius: 4.76vw;
            width: 44.05vw;
            height: 41.90vw;
        }

        @media (min-width: 1240px) {
            border-radius: 20px;
            width: 590px;
            height: 350px;

            animation: CardDeFocus 200ms;
        }
    }

    .doubleRow>img:hover {
        animation: CardFocus 200ms;
        transform: translate(0, -6px);
    }

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

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

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

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

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

    .tripleRow>img:hover {
        animation: CardFocus 200ms;
        transform: translate(0, -6px);
    }

    .tripleRow>img {
        @media (max-width: 1239px) {}

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

            object-fit: cover;
            border-radius: 20px;

            animation: CardDeFocus 200ms;
        }
    }

    .card {
        background-color: #1d76ff;
        color: #fff;

        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        @media (max-width: 1239px) {
            min-height: 57.14vw;
            width: 90.48vw;
            border-radius: 5.95vw;
            padding-left: 5.48vw;
            padding-right: 5.48vw;
            padding-top: 6.90vw;
            padding-bottom: 6.90vw;
        }

        @media (min-width: 1240px) {
            height: 300px;
            width: 393px;
            border-radius: 20px;
            padding: 30px;

            animation: CardDeFocus 200ms;
        }
    }

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

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

    .card:hover {
        animation: CardFocus 200ms;
        transform: translate(0, -6px);
    }

    .card .head {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;

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

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

    .card img {
        object-fit: cover;

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

            border-radius: 2.38vw;
        }

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

            border-radius: 10px;
        }
    }

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

            margin-top: 4.05vw;
            width: 45.24vw;
        }

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

            width: 200px;
            margin-top: 17px;
        }
    }

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

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

            margin-top: 4.05vw;
        }

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

            margin-top: 20px;
        }
    }

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

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

    .card .description {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(14px, 3.33vw);
            line-height: 100%;
            color: #e5e9f4;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 17px;
            line-height: 111%;
            color: #e5e9f4;
        }
    }

    .postscriptum {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(14px, 3.33vw);
            line-height: 100%;
            color: #fff;

            width: 75.00vw;
            margin-top: 55px;
        }

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

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

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