.full-width {
    position: relative;
    width: 100%;
    max-height: 100vh;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 70px 80px;
}

.full-width > .background,
.full-width > .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: .3s ease-in-out opacity;
}

.full-width > .background-video-controls {
    position: absolute;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 3;
    display: none;
}

.full-width > .background-video-controls > button {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    opacity: 0.2;
    transition: .3s ease-in-out opacity;
}

.full-width > .background-video-controls > button:hover {
    opacity: 1;
}

.full-width > .background-video-controls > button > svg {
    fill: white;
}

.full-width > .background-video {
    z-index: 2;
    opacity: 0;
}

.full-width > .background.hide {
    opacity: 0;
}

.full-width > .background-video.show {
    opacity: 1;
}

.full-width > .shadow {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 5%, #00000000 80%);
    z-index: 2;
}

.full-width > .title {
    font-family: "Playfair Display SC";
    z-index: 3;
    font-size: 120px;
    line-height: 110px;
    font-weight: 600;
}

.one-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70vh;
    padding: 50px 20px;
    background-color: black;
}

.one-block > .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    opacity: 0.5;
}

.one-block > .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.one-block > .title {
    font-family: "Playfair Display SC";
    font-size: 100px;
    line-height: 90px;
    font-weight: 600;
    max-width: 900px;
    text-align: center;
    margin-bottom: 40px;
    z-index: 3;
}

.one-block > .subtitle {
    font-size: 24px;
    color: #d5d5d5;
    z-index: 3;
    margin-bottom: 50px;
    max-width: 800px;
    text-align: center;
}

.one-block > .cta {
    position: relative;
    font-size: 22px;
    color: #d5d5d5;
    text-align: center;
    text-decoration: none;
    border: 2px solid #d5d5d5;
    z-index: 3;
    padding: 16px 18px;
    text-transform: uppercase;
    overflow-y: hidden;
    transition: .3s ease-in-out color;
}

.one-block > .cta::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: .3s ease-in-out bottom;
    z-index: -1;
}

.one-block > .cta:hover {
    color: black;
}

.one-block > .cta:hover::after {
    bottom: 0;
}

.two-block {
    display: flex;
    width: 100%;
}

.two-block.inverse {
    flex-direction: row-reverse;
}

.two-block > .col {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color: #e3dcd4;
    padding: 80px;
    padding-right: 0;
    justify-content: center;
}

.two-block.limit > .col {
    padding-bottom: 15px;
}

.two-block.inverse > .col {
    padding-right: 80px;
    padding-left: 0;
}

.two-block > .col > .background {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.two-block > .col:has(.title) {
    padding: 60px 150px;
    justify-content: center;
}

.two-block > .col > .deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.two-block.inverse > .col > .deco {
    transform: scale(-1);
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
}

.two-block > .col > .title {
    font-family: "Playfair Display SC", serif;
    font-size: 90px;
    line-height: 80px;
    font-weight: 600;
    color: #BC8E38;
    margin-bottom: 40px;
    max-width: 900px;
    z-index: 2;
}

.two-block > .col > .subtitle {
    color: #3c3c3c;
    z-index: 2;
    font-size: 24px;
    line-height: 36px;
    max-width: 800px;
    margin-bottom: 40px;
}

.two-block > .col > .background.keep-size {
    max-width: 600px;
    height: unset;
    width: unset;
    max-height: unset;
    margin: 0 100px;
}

.two-block:has(.background.keep-size) > .col:has(.background) {
    width: unset;
}

.two-block:has(.background.keep-size) > .col {
    width: 100%;
}

@media screen and (max-width: 1900px) {
    .two-block > .col:has(.title) {
        padding: 60px 80px;
    }

    .two-block > .col > .background.keep-size {
        max-width: 450px;
    }
}

@media screen and (max-width: 1400px) {
    .full-width {
        padding: 40px 50px;
        aspect-ratio: 5 / 4;
    }

    .full-width > .title {
        font-size: 100px;
        line-height: 90px;
    }

    .two-block {
        min-height: 60vh;
    }

    .two-block > .col {
        padding: 50px;
        padding-right: 0;
    }

    .two-block.inverse > .col {
        padding-right: 50px;
        padding-left: 0;
    }

    .two-block > .col > .background {
        max-height: 500px;
    }

    .two-block > .col:has(.title) {
        padding: 40px 50px;
    }

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

    .full-width > .background-video-controls {
        bottom: 40px;
    }

    .two-block > .col > .background.keep-size {
        margin: 0;
    }
}

@media screen and (max-width: 1200px) {
    .two-block:has(.background.keep-size) > .col:has(.background) {
        width: unset;
    }

    .two-block:has(.background.keep-size) > .col {
        width: 100%;
    }

    .two-block > .col > .background.keep-size {
        max-width: 400px;
    }
}

@media screen and (max-width: 1000px) {
    .full-width {
        padding: 30px 30px;
    }

    .full-width > .title {
        font-size: 80px;
        line-height: 70px;
    }

    .one-block {
        padding: 0 20px;
    }

    .one-block > .title {
        font-size: 70px;
        line-height: 65px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .one-block > .subtitle {
        font-size: 20px;
        line-height: 28px;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .one-block > .cta {
        font-size: 18px;
        padding: 14px 16px;
    }

    .two-block {
        flex-direction: column-reverse !important;
        height: auto;
    }

    .two-block > .col {
        width: 100%;
        padding: 20px;
        padding-top: 0;
        align-items: center;
    }

    .two-block.inverse > .col {
        padding: 20px;
        padding-top: 0;
    }

    .two-block > .col > .background {
        aspect-ratio: 5 / 4;
        border-radius: 5px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }

    .two-block > .col:has(.title) {
        padding: 30px;
        height: fit-content;
    }

    .two-block > .col > .title {
        text-align: center;
        font-size: 70px;
        line-height: 65px;
        margin-bottom: 25px;
    }

    .two-block > .col > .subtitle {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 0;
    }

    .full-width > .background-video-controls {
        right: 20px;
        bottom: 30px;
    }

    .two-block > .col > .background.keep-size {
        aspect-ratio: unset;
        width: 100%;
        max-width: 500px;
        margin: 30px 0;
    }
}

@media screen and (max-width: 700px) {
    .full-width {
        padding: 30px 20px;
        aspect-ratio: 1 / 1;
    }

    .full-width > .title {
        font-size: 70px;
        line-height: 60px;
        text-align: center;
    }

    .one-block > .title {
        font-size: 60px;
        line-height: 50px;
        max-width: 600px;
        margin-bottom: 25px;
    }

    .one-block,
    .two-block {
        min-height: 60vh;
    }

    .two-block > .col > .title {
        text-align: center;
        font-size: 60px;
        line-height: 50px;
    }

    .full-width > .background-video-controls {
        width: 30px;
        height: 30px;
        top: 90px;
        right: 15px;
        bottom: unset;
    }
}

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

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

    .one-block > .title {
        font-size: 50px;
        line-height: 45px;
    }

    .one-block > .subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .one-block > .cta {
        font-size: 16px;
        padding: 14px 16px;
    }

    .two-block > .col > .title {
        text-align: center;
        font-size: 50px;
        line-height: 45px;
    }

    .two-block > .col > .subtitle {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        margin-bottom: 0;
    }
}