#PhilosophySection {
    margin-top: 0px;

    @media (max-width: 1239px) {
        margin-left: 0px;
        margin-right: 0px;
    }

    @media (max-width: 1239px) {
        .Heading.Appear {
            animation: AppearInside 600ms;
        }
        .Description.Appear {
            animation: AppearLeft 600ms;
        }
        .Video.Appear {
            animation: AppearInside 600ms;
        }
        .Legend.Appear {
            animation: AppearRight 600ms;
        }
        .Photo img.Appear {
            animation: AppearInside 600ms;
        }
        .Quote1.Appear {
            animation: AppearLeft 600ms;
        }
        .Quote2.Appear {
            animation: AppearRight 600ms;
        }
        .Quote3.Appear {
            animation: AppearLeft 600ms;
        }
        .Quote4.Appear {
            animation: AppearRight 600ms;
        }
        .KeyPhrase.Appear {
            animation: AppearRight 600ms;
        }
        .Motto.Appear {
            animation: AppearInside 600ms;
        }
    }
    
    @media (min-width: 1240px) {    
        .Heading.Appear {
            animation: AppearInside 600ms;
        }
        .Description.Appear {
            animation: AppearBottom 600ms;
        }
        .Video.Appear {
            animation: AppearLeft 600ms;
        }
        .Legend.Appear {
            animation: AppearBottom 600ms;
        }
        .Photo img.Appear {
            animation: AppearInside 600ms;
        }
        .Quote1.Appear {
            animation: AppearLeft 600ms;
        }
        .Quote2.Appear {
            animation: AppearRight 600ms;
        }
        .Quote3.Appear {
            animation: AppearRight 600ms;
        }
        .Quote4.Appear {
            animation: AppearLeft 600ms;
        }
        .KeyPhrase.Appear {
            animation: AppearRight 600ms;
        }
        .Motto.Appear {
            animation: AppearInside 600ms;
        }
    }

    .Section {
        position: relative;

        overflow: hidden;

        background-color: #101010;

        display: flex;

    }

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

        background-color: #101010;

        height: auto;

        @media (max-width: 1239px) {
            margin-left: 0px;
            margin-right: 0px;
            width: 100%;
        }
    }

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

        padding-bottom: 150px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;

        margin-bottom: 192px;

        border-radius: 32px;

        background-color: #2f2f2f;

        @media (max-width: 1239px) {
            border-radius: unset;
            padding-top: 100px;
            padding-bottom: 90px;
            margin-bottom: 150px;
        }
    }

    .ContentRow {
        display: flex;
        flex-direction: row;
    }

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

        .Row2 {
            flex-direction: column;
            margin-bottom: 100px;

            .ContentColumn {
                width: unset;
                margin-left: unset;
                margin-right: unset;
                max-width: 420px;
            }
        }

        .Row2Column {
            margin-top: 50px;
        }

        .Row3 {
            flex-direction: column;

            .ContentColumn {
                width: unset;
            }
        }
    }

    .ContentRow:not(:last-child) {
        margin-bottom: 145px;
    }

    .ContentColumn {
        margin-left: 10px;
        margin-right: 10px;

        width: calc(50% - 20px);
    }

    .Heading {
        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 37px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        @media (max-width: 1239px) {
            color: #fff;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: min(5.9vw, 25px);
            font-style: normal;
            font-weight: 550;
            line-height: min(5.9vw, 25px);
        }
    }

    .Description {
        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 35px;

        @media (max-width: 1239px) {
            color: #fff;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: min(3.3vw, 14px);
            font-style: normal;
            font-weight: 550;
            line-height: 100%;

            opacity: 0.6;
        }
    }

    .Video {
        width: 100%;
        max-width: 520px;
        height: 300px;

        z-index: 99;

        background-color: #EEE;

        border-radius: 32px;

        overflow: hidden;

        pointer-events: none;

        position: relative;

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

    .Video iframe {
        border: 0;

        border-radius: 32px;

        width: 300%;
        height: 100%;
        margin-left: -100%;
    }

    .Legend {
        margin-top: 60px;
        width: 470px;

        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 21.913px;

        @media (max-width: 1239px) {
            color: #fff;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: 14px;
            font-style: normal;
            font-weight: 550;
            line-height: 100%;
            /* 14px */

            width: 80vw;
            margin-top: 30px;
        }
    }

    .Photo {
        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;
    }

    .Photo img {
        width: 300px;
        height: 500px;
        border-radius: 110px;
        object-fit: cover;

        @media (max-width: 1239px) {
            width: min(260px, 62vw);
            height: min(340px, 81vw);
        }
    }

    @media (min-width: 1240px) {
        .Photo .Quote1 {
            top: 70px;
            left: 90px;
        }

        .Photo .Quote2 {
            top: 150px;
            right: 45px;
        }

        .Photo .Quote3 {
            top: 260px;
            right: 15px;
        }

        .Photo .Quote4 {
            top: 400px;
            left: 40px;
        }
    }

    @media (max-width: 1239px) {
        .Photo .Quote1 {
            top: min(80px, 19vw);
            left: min(12px, 4.5vw);
        }

        .Photo .Quote2 {
            top: min(233px, 55.5vw);
            right: min(15px, 3.6vw);
        }

        .Photo .Quote3 {
            top: min(320px, 76vw);
            left: min(20px, 4.7vw);
        }

        .Photo .Quote4 {
            top: min(10px, 2.4vw);
            left: min(210px, 50vw);
        }
    }

    .Photo .Quote {
        position: absolute;

        padding-left: 25px;
        padding-right: 25px;
        padding-top: 17px;
        padding-bottom: 17px;

        border-radius: 40px;

        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        @media (max-width: 1239px) {
            color: #0C0D0D;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: min(4vw, 16.858px);
            font-style: normal;
            font-weight: 550;
            line-height: normal;

            padding-top: min(2.4vw, 10px);
            padding-bottom: min(2.4vw, 10px);

            padding-left: min(3.6vw, 15px);
            padding-right: min(3.6vw, 15px);
        }
    }

    .Photo .QuoteBlue {
        background-color: #4775FF;

        color: #FFF;
    }

    .Photo .QuoteWhite {
        background-color: #FFFFFF;

        color: black;
    }

    .KeyPhraseHeading {
        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        @media (max-width: 1239px) {
            color: #fff;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: 14px;
            font-style: normal;
            font-weight: 550;
            line-height: 100%;

            opacity: 0.6;

            margin-bottom: 40px;
        }
    }

    .KeyPhraseContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

        @media (max-width: 1239px) {
            flex-direction: column;
        }
    }

    .KeyPhrase {
        display: flex;
        align-items: center;

        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        width: calc(50% - 20px);

        padding: 10px;

        border-bottom: 1px solid #595959;

        @media (max-width: 1239px) {
            width: unset;
            padding: 15px;

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

    .KeyPhrase>.Accent {
        color: #fff;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        opacity: 0.5;

        margin-right: 35px;
    }

    .Motto {
        color: #fff;
        text-align: center;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;

        width: 800px;

        margin-bottom: 140px;

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

        @media (max-width: 1239px) {
            color: #fff;
            text-align: center;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: 26px;
            font-style: normal;
            font-weight: 550;
            line-height: 26.929px;
            /* 103.571% */

            width: unset;
            margin-bottom: 100px;
        }
    }

    .Motto>.Accent {
        color: #4775FF;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;

        @media (max-width: 1239px) {
            color: #1D76FF;
            leading-trim: both;
            text-edge: cap;
            font-family: HelveticaNeueCyr;
            font-size: 26px;
            font-style: normal;
            font-weight: 550;
            line-height: 26.929px;
        }
    }

    .ActionButton {
        cursor: pointer;

        padding-left: 50px;
        padding-right: 50px;

        box-sizing: border-box;

        padding-top: 30px;
        padding-bottom: 30px;

        background-color: #F4F4F4;

        border-radius: 24px;

        color: #0C0D0D;
        leading-trim: both;
        text-edge: cap;
        font-family: HelveticaNeueCyr;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        margin-bottom: 214px;

        width: fit-content;

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

        animation: ButtonColorUnHover 300ms;

        @media (max-width: 1239px) {
            padding-top: 23px;
            padding-bottom: 23px;

            padding-left: 60px;
            padding-right: 60px;

            margin-bottom: 100px;

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

    .ActionButton:hover {
        background-color: #1D75FF;
        color: #FFF;
        animation: ButtonColorHover 300ms;
    }

    .ActionButton i {
        margin-left: 12px;

        font-size: 125%;
    }
}