#MottoSection {

    --font-family: HelveticaNeueCyr;

    @media (min-width: 1240px) {
        padding-top: 60px;
    }

    .Section {
        position: relative;

        overflow: hidden;

        background-color: #101010;

        min-height: 609px;
    }

    .Video {
        width: 100%;
        max-width: 1200px;
        height: 590px;

        margin-top: 22px;

        z-index: 99;

        background-color: #101010;

        border-radius: 30px;

        overflow: hidden;

        position: relative;

        cursor: pointer;

        @media (max-width: 1239px) {
            margin-top: 50px;
            height: min(300px, 71.43vw);
        }
    }

    .Video video {
        object-fit: cover;
        width: 100%;
        height: 100%;

        border: 0;
        border-radius: 30px;
    }

    .TextContainer {
        margin-top: 32px;

        display: flex;
        flex-wrap: wrap;

        justify-content: space-between;

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

    .Motto {
        width: 815px;
        top: 130px;

        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 55px;
        font-style: normal;
        font-weight: 550;
        line-height: 55px;
        /* 100% */

        flex-shrink: 0;

        @media (max-width: 1239px) {
            flex-shrink: 1;
            margin-left: 5px;

            font-size: 42px;
            font-style: normal;
            font-weight: 550;
            line-height: 42px;
            /* 100% */
        }
    }

    .Motto.Appear {
        animation: Motto_Motto 600ms;
    }

    .Motto>.Accent {
        color: #1D75FF;
    }

    .Description {
        align-content: space-around;
        margin-left: auto;
        padding: 10px;

        top: 143px;

        width: 318px;
        right: 12px;

        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;

        opacity: 0.502;

        flex-shrink: 0;

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

    .Description.Appear {
        animation: Motto_Description 600ms;
    }

    .DescriptionMobile {
        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 14px;
        font-style: normal;
        font-weight: 550;
        line-height: 14.875px;

        opacity: 0.502;

        margin-top: 38px;
        margin-left: 10px;

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

    .DescriptionMobile.Appear {
        animation: Motto_DescriptionMobile 600ms;
    }

    .ConsultMeContainer {
        margin-left: 10px;
        margin-right: 10px;
        max-width: 100%;

        margin-top: 50px;

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

    .ConsultMeButton {

        width: 100%;
        max-width: 380px;
        height: 55px;

        margin-left: auto;
        margin-right: auto;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 15px;
        background: #1D75FF;

        color: #FFF;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 13.96px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}

@media (max-width: 1239px) {
    @keyframes Motto_Motto {
        from {
            opacity: 0.4;
            transform: translate(20px);
        }

        to {
            opacity: 1;
            transform: translate(0);
        }
    }
}

@media (min-width: 1240px) {
    @keyframes Motto_Motto {
        from {
            opacity: 0.1;
            transform: translate(-20px);
        }

        to {
            opacity: 1;
            transform: translate(0);
        }
    }
}

@keyframes Motto_Description {
    from {
        opacity: 0.1;
        transform: translate(0, -20px);
    }

    to {
        opacity: .6;
        transform: translate(0);
    }
}

@keyframes Motto_DescriptionMobile {
    from {
        opacity: .4;
        transform: translate(0, -20px);
    }

    to {}
}