.section--content-full-block {
    overflow: hidden;
}

@media only screen and (max-width: 460px) {
    .section--content-full-block {
        margin-bottom: 0;
    }
}

.content-full-content {
    display: flex;

    max-width: 100%;
}

.section--content-full-block .content-full-header h2 {
    max-width: 900px;
}

@media only screen and (max-width: 1440px) {
    .section--content-full-block .content-full-header h2 {
        max-width: 728px;
    }
}

@media only screen and (max-width: 1280px) {
    .section--content-full-block .content-full-header h2 {
        max-width: 648px;
    }
}

@media only screen and (max-width: 1024px) {
    .section--content-full-block .content-full-header h2 {
        max-width: 802px;
    }
}

.section--content-full-block .content-full-header p {
    line-height: var(--line-height--xl);
}

.section--content-full-block .content-items .content-item {
    display: flex;

    width: auto;
    flex-direction: row-reverse;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .section--content-full-block .content-items .content-item {
        flex-direction: unset;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 460px) {
    .section--content-full-block .content-items .content-item {
        padding-bottom: 50px;
        padding-top: 0;
    }

    .section--content-full-block .content-items .content-item:first-child {
        padding-top: 50px;
    }
}

.section--content-full-block .content-items .content-item:nth-child(even) {
    flex-direction: row;
}

.section--content-full-block .content-items.reverse .content-item {
    flex-direction: row;
}

.section--content-full-block .content-items.reverse .content-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 1024px) {
    .section--content-full-block .content-items.reverse .content-item:nth-child(even) {
        flex-direction: unset;
    }
}


.section--content-full-block .content-items .content-item:before {
    position: absolute;
    z-index: -1;
    top: 0;

    display: block;

    width: 50%;
    height: 100%;

    content: "";

    background-color: var(--grey_light);
}

.section--content-full-block .content-items .content-item:nth-child(even):before {
    left: -30%;
}

.section--content-full-block .content-items .content-item:nth-child(odd):before {
    right: -30%;
}

.section--content-full-block .content-items.reverse .content-item:nth-child(even):before {
    right: -30%;
    left: unset;
}

.section--content-full-block .content-items.reverse .content-item:nth-child(odd):before {
    left: -30%;
}

@media only screen and (max-width: 1024px) {
    .section--content-full-block .content-items .content-item:nth-child(even):before {
        left: -30%;

        width: 110vw;
    }

    .section--content-full-block .content-items .content-item:nth-child(odd):before {
        display: none;
    }
}

@media only screen and (max-width: 460px) {
    .section--content-full-block .content-items .content-item:nth-child(even):before {
        display:none;
    }
}

@media only screen and (max-width: 1024px) {
    .section--content-full-block .content-item-image-container {
        margin-bottom: 20px;
    }
}

.section--content-full-block .content-item-image-container .content-image a {
    display: block;
}

.section--content-full-block .content-item-image-container .content-image a .button {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;

    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 4px 7px 0 rgba(233, 43, 100, 0.5);
}

.section--content-full-block .content-item-image-container .content-image a .button:before {
    position: absolute;
    top: -20px;
    left: -20px;
    display: block;
    width: 100px;
    height: 100px;
    content: "";
    opacity: .1;
    border-radius: 50%;
    background-color: var(--black);
}

.section--content-full-block .content-item-image-container .content-image a .button .triangle {
    position: relative;
    top: 50%;
    left: 50%;

    display: block;

    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -3px;

    transform: rotate(30deg) skewX(-30deg) scale(1, 0.866);
    text-align: left;

    border-top-right-radius: 30%;
    background-color: var(--white);
}

.section--content-full-block .content-item-image-container .content-image a .button .triangle:before,
.section--content-full-block .content-item-image-container .content-image a .button .triangle:after {
    position: absolute;

    width: 12px;
    height: 12px;

    content: "";

    border-top-right-radius: 30%;
    background-color: inherit;
}

.section--content-full-block .content-item-image-container .content-image a .button .triangle:before {
    transform: rotate(-135deg) skewX(-45deg) scale(1.414, 0.707) translate(0, -50%);
}

.section--content-full-block .content-item-image-container .content-image a .button .triangle:after {
    transform: rotate(135deg) skewY(-45deg) scale(0.707, 1.414) translate(50%);
}

.section--content-full-block .content-item-image-container .content-image img {
    display: block;

    width: 100%;
    height: auto;
}

.section--content-full-block .content-item-text h3 {
    margin-bottom: 20px;
    color: var(--brand);
}

.section--content-full-block .content-item-text .content-item-tags {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: 20px;
}

.section--content-full-block .content-item-text .content-item-tags p {
    margin-right: 20px;

    color: var(--orange);

    font-size: var(--tag);
    font-weight: var(--font_weight--semibold);
    line-height: var(--line-height--xl);
}

.section--content-full-block .content-item-text > p {
    line-height: var(--line-height--xl);
}

.lightboxPlayerContent {
    position: fixed;
    z-index: 100001;
    top: 0;
    left: 0;

    display: none;

    width: 100vw;
    height: 100vh;
    padding: 10vh 10vw;

    background: rgba(38, 41, 82, 0.7);
}

@media only screen and (max-width: 1024px) {
    .lightboxPlayerContent {
        padding: 0;
    }
}

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

    width: 100%;
    height: 100%;
}

.lightboxPlayerContent .playerContainer .plyr {
    width: 100%;
}

.lightboxPlayerContent .playerContainer .plyr__video-embed,
.lightboxPlayerContent .playerContainer .plyr__video-wrapper--fixed-ratio {
    height: 100% !important;
    padding-bottom: 0 !important;
}

.lightboxPlayerContent .playerClose {
    position: absolute;
    z-index: 2;
    top: 10vh;
    right: 10vw;

    display: block;

    width: 50px;
    height: 50px;

    cursor: pointer;
    transition: background 0.3s;
    transform: translateX(50px);
    text-indent: -999em;
}

@media only screen and (max-width: 1024px) {
    .lightboxPlayerContent .playerClose {
        top: 0;
        right: 0;

        transform: translateX(0);
    }
}

.lightboxPlayerContent .playerClose:after,
.lightboxPlayerContent .playerClose:before {
    position: absolute;
    top: 50%;
    left: 24px;

    width: 2px;
    height: 25px;
    margin-top: -23px;

    content: " ";
    transition: background var(--translation_duration);

    border-radius: 2px;
    background-color: var(--white);
}

@media only screen and (max-width: 1024px) {
    .lightboxPlayerContent .playerClose:after,
    .lightboxPlayerContent .playerClose:before {
        margin-top: -13px;
    }
}

.lightboxPlayerContent .playerClose:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.lightboxPlayerContent .playerClose:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lightboxPlayerContent .playerClose:hover:after,
.lightboxPlayerContent .playerClose:hover:before {
    background: var(--red);
}
