body {
    background-color: #e3dcd4;
}

.page-heading {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    padding: 0 80px;
    padding-top: 50px;
}

.page-title {
    font-family: "Playfair Display SC", serif;
    font-size: 100px;
    line-height: 90px;
    max-width: 50%;
    margin: 0;
    z-index: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.page-heading > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.915) 100%);
    z-index: 2;
}

.page-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 2;
    opacity: 0.4;
}

.full-block {
    width: 100%;
    background-color: #e3dcd4;
    display: flex;
    flex-direction: column;
    padding: 50px 80px;
    gap: 50px;
}

.full-block > .title {
    font-family: "Playfair Display SC";
    font-size: 80px;
    font-weight: 600;
    line-height: 80px;
    color: #BC8E38;
    text-align: center;
}

.full-block > .body {
    word-break: break-all;
    font-size: 22px;
    line-height: 36px;
    color: #3c3c3c;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.zig-zag {
    width: calc(100% - 180px);
    height: 20px;
    margin: 20px 90px;
    background-image: url('../media/zig.png');
    background-size: 125px 20px;
    opacity: 0.5;
    background-repeat: repeat-x;
}

.videos-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 80px;
}

.video-block {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.vjs-poster img {
    object-fit: cover !important;
    filter: brightness(0.8);
}

.video-subtitle {
    font-size: 14px;
    color: #787878;
    margin-top: 10px;
    font-weight: 500;
}

@media screen and (max-width: 1400px) {
    .page-heading {
        padding: 0 50px;
        padding-top: 50px;
        height: 350px;
    }

    .page-title {
        max-width: 70%;
        font-size: 100px;
        line-height: 90px;
    }

    .full-block > .title {
        font-size: 80px;
        line-height: 65px;
    }

    .videos-block {
        padding: 20px 80px;
        padding-bottom: 60px;
    }

    .full-block {
        padding: 50px;
    }

    .zig-zag {
        width: calc(100% - 100px);
        margin: 20px 50px;
    }

    .videos-block {
        padding: 20px 50px;
    }
}

@media screen and (max-width: 1000px) {
    .page-heading {
        padding: 0 30px;
        padding-top: 30px;
        height: 300px;
    }

    .page-title {
        max-width: 100%;
        font-size: 80px;
        line-height: 70px;
    }

    .full-block {
        padding: 40px 30px;
    }

    .videos-block {
        flex-direction: column;
        padding: 20px 30px;
        padding-bottom: 50px;
    }

    .video-block {
        width: 100%;
    }

    .video-subtitle {
        font-size: 16px;
    }

    .full-block > .title {
        font-size: 70px;
        line-height: 65px;
    }

    .full-block > .body {
        font-size: 20px;
        line-height: 28px;
    }

    .full-block {
        gap: 30px;
    }

    .zig-zag {
        width: calc(100% - 60px);
        margin: 0 30px;
    }
}

@media screen and (max-width: 700px) {
    .page-heading {
        align-items: flex-end;
        padding-bottom: 30px;
    }

    .page-title {
        width: 100%;
        font-size: 70px;
        line-height: 60px;
        text-align: center;
    }

    .full-block > .title {
        font-size: 45px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 10px;
    }

    .full-block > .body {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .page-title {
        font-size: 50px;
        line-height: 50px;
    }

    .page-heading {
        padding-left: 15px;
        padding-right: 15px;
    }

    .full-block > .body {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 400px) {
    .page-title {
        font-size: 50px;
        line-height: 45px;
    }

    .full-block {
        gap: 20px;
    }

    .full-block > .title {
        font-size: 40px;
        line-height: 40px;
    }

    .full-block > .body {
        font-size: 18px;
        line-height: 24px;
    }
}