#details .page {
    height: 75vh;
    background-color: #0e0e0e;
}

#details .half-wrapper {
    width: 100vw;
}

#details .half-wrapper .half {
    text-align: center;
    border-bottom: 2px grey solid;
    height: 75vh;
}

#details .half-wrapper .half:nth-child(1) {
    width: 33.333vw;
    border-right: 2px grey solid;
}

#details .half-wrapper .half:nth-child(2) {
    width: 66.666vw;
}

#details ul {
    width: 20vw;
    margin: 0 auto;
    margin-top: 5vh;
    list-style: none;
}

#details ul li {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
}

#details .cuts {
    display: flex;
    justify-content: space-around;
    width: 50vw;
    margin: 0 auto;
    margin-top: 5vh;
}

#details .cuts .cut img {
    width: 14vw;
    border-radius: 15px;
    transition: .15s;
    filter: brightness(75%);
}

#details .cuts img:hover {
    transform: scale(1.025);
    border-radius: 5px;
    filter: brightness(100%);
}

@media screen and (max-width: 1200px) {
    #details .page {
        height: unset;
    }

    #details .page .half-wrapper {
        display: block;
    }

    #details .page .half {
        border: none;
        width: 100%;
    }

    .center {
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }

    #details .half-wrapper .half:nth-child(1) {
        padding: 5vh 0;
        width: 100%;
        border-bottom: 2px grey solid;
        border-right: unset;
        height: unset;
    }

    #details .half-wrapper .half ul {
        width: 80vw;
    }

    #details .half-wrapper .half:nth-child(2) {
        padding: 5vh 0;
        width: 100%;
        height: unset;
    }

    #details .cuts {
        display: block;
        width: 80vw;
    }

    #details .cuts .cut img {
        width: 80vw;
        margin: 2.5vh 0;
    }

    #details .cuts .cut img:hover {
        transform: scale(1);
        border-radius: 15px;
        filter: brightness(75%);
    }

    #details .title-wrapper h2 {
        font-size: 2rem;
        max-width: 100%;
        text-align: center;
    }

    #details .title-wrapper .subtitle {
        font-size: 1.2rem;
    }
}