.txteditor__content {
    max-width: 100%;
    width: 1400px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}
.txteditor__link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.titleimg__img {
    max-width: 100%;
    width: 800px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.chess {
    overflow: hidden;
}
.chess__item:nth-child(even) {
    flex-direction: row-reverse;
}
.chess__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.chess__img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.chess__img img {
    width: 500px;
    object-fit: cover;
}

.team {
    overflow: hidden;
    position: relative;
}
.team .spire {
    display: block;
    position: absolute;
    width: 56vw;
    height: 40vw;
    top: 20%;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .3;
}
.team .spire.active {
    animation: rotateSlowly 260s linear infinite;
}
.team__item {
    position: relative;
    z-index: 3;
}
.team__txt {
    max-width: 100%;
    width: 900px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
.team__img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    flex: 0 0 500px;
}
.team__img img {
    width: 500px;
}
.team__txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 120px;
}
.team__txt>h3 {
    margin-bottom: 20px;
}
.team__txt>span {
    display: block;
    font-weight: 500;
    color: #bfbfbf;
}
.team__txt>div {
    font-weight: 300;
    margin-top: 20px;
}

@media(max-width: 1440px) {
    .team__img {
        max-width: 300px;
        flex: 0 0 300px;
    }
    .team__img img {
        width: 300px;
    }
}
@media(max-width: 1200px) {
    .team__txt {
        padding-left: 60px;
    }
}
@media(max-width: 992px) {
    .chess__img {
        margin-bottom: 30px;
        order: 0;
    }
    .chess__txt {
        order: 1;
    }
}
@media(max-width: 767px) {
    .team__img {
        max-width: 100%;
        flex: 0 0 100%;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    .team__img img {
        width: 200px;
    }
    .team__txt {
        padding: 0;
    }
    .team__txt>div {
        margin-top: 0;
    }
    .team__txt>h3 {
        margin-bottom: 10px;
    }
}