.mixedContent {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
}
.mixedContent .text {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 700px;
}
.mixedContent .text p,
.mixedContent .text ol,
.mixedContent .text ul {
    float: left;
    width: 100%;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 30px;
}
.mixedContent .text p:last-child,
.mixedContent .text ol:last-child,
.mixedContent .text ul:last-child {
    margin-bottom: 0;
}
.mixedContent .image {
    float: left;
    width: auto;
    margin: 0 auto 30px;
    max-width: 950px;
}
.mixedContent .image img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.mixedContent .youTube {
    float: left;
    width: 100%;
    margin: 0 auto 30px;
    max-width: 950px;
}
.mixedContent .youTube iframe {
    float: left;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
}

.mixedContent .timeline {
    float: left;
    width: 100%;
    margin: 0 auto 30px;
    max-width: 950px;
}
.mixedContent .timeline > .title {
    text-align: center;
    font-size: 30px;
}
.mixedContent .timeline .timelineItems {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.mixedContent .timeline .timelineItems:before {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--color-two);
}
.mixedContent .timeline .timelineItem:nth-child(2n+1) {
    float: left;
    clear: both;
    width: calc(50% - 35px);
    padding-right: 35px;
    margin-bottom: 30px;
    text-align: right;
}
.mixedContent .timeline .timelineItem:nth-child(2n) {
     float: right;
    clear: both;
     width: calc(50% - 35px);
     padding-left: 35px;
    margin-bottom: 30px;
    text-align: left;
}
.mixedContent .timeline .timelineItem:last-child {
    margin-bottom: 0;
}
.mixedContent .timeline .timelineItem .date {
    float: left;
    width: 100%;
    position: relative;
    color: var(--color-one);
}
.mixedContent .timeline .timelineItem .date:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    right: -41px;
    box-sizing: border-box;
    margin-top: 2px;
    background-color: var(--color-three);
}
.mixedContent .timeline .timelineItem:nth-child(2n) .date:before {
    left: -41px;
}
.mixedContent .timeline .timelineItem .title {
    float: left;
    width: 100%;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}
.mixedContent .timeline .timelineItem .text {
    text-align: justify;
    margin-bottom: 0;
}

.mixedContent .leftRightBlocks {
    float: left;
    width: 100%;
    margin: 0 auto 30px;
    max-width: var(--page-width);
}
.mixedContent .leftRightBlock {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 30px;
}
.mixedContent .leftRightBlock:last-child {
    margin-bottom: 0;
}
.mixedContent .leftRightBlock .image {
    width: 50%;
}
.mixedContent .leftRightBlock:nth-child(2n+1) .image {
    padding-right: 35px;
    order: 1;
    -webkit-order:1;
}
.mixedContent .leftRightBlock:nth-child(2n) .image {
    padding-left: 35px;
    order: 2;
    -webkit-order:2;
}
.mixedContent .leftRightBlock .image img {
    width: 100%;
    height: auto;
}
.mixedContent .leftRightBlock .titleText {
    width: 50%;
}
.mixedContent .leftRightBlock:nth-child(2n+1) .titleText {
    padding-left: 35px;
    order: 2;
    -webkit-order:2;
}
.mixedContent .leftRightBlock:nth-child(2n) .titleText {
    padding-right: 35px;
    order: 1;
    -webkit-order:1;
}
.mixedContent .leftRightBlock .title {
    font-weight: bold;
    margin-bottom: 10px;
}