.hypercube {
    margin-top: 170px;
    margin-left: 100px;
    margin-right: 100px;
}

.hyopercube-text {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 64px;
    text-align: center;
}

.hypercube-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.hypercube-items {
    width: 50%;
}

.hypercube-image {
    width: 50%;
    border-radius: 16px;
    background-image: url(../media/hyper.png);
    background-size: cover;
}

.hypercube-item {
    height: 128px;
    padding: 24px;
    border-left: 3px solid #53586244;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hypercube-item-title {
    font-size: 1.2em;
    color: black;
    font-weight: 700;
}

.emphysis {
    border-left: 3px solid #863E68;
}

.hypercube-box-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 32px;
    background-color: white;
    border-radius: 18px;
    max-width: 392px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-264px);
    transition: 0.2s ease-in-out;
}

.hypercube-box-item:hover {
    transform: translateY(-255px);
    padding-top: 20;
    padding-bottom: 38;
    box-shadow: -5px 7px 9px rgba(0, 0, 0, 0.3);
}

.hypercube-box-item-center {
    transition: 0.2s ease-in-out;
}

.hypercube-box-item-center:hover {
    transform: translate(5px, -15px)
}

.hypercube-item-image {
    size: 64px;
    height: 64px;
    width: 64px;
    border-radius: 8px;
    background-image: url("../media/why1.png");
    background-repeat: no-repeat;
    margin-bottom: 32px;
}

.hypercue-item-title {
    color: black;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hypercube-item-text {
    font-size: 0.9em;
}

.hypercube-item-bg {
    height: 100%;
    width: 100%;
    border-radius: 18px;
    background-color: #F59619;
}

@media (orientation: portrait) {
    .hypercube-box-item {
        max-width: 100%;
    }

    .hypercube-item-bg {
        visibility: collapse;
    }

    .hypercube-box-item-center .hypercube-box-item {
        padding-top: 40px;
        padding-bottom: 75px;
        width: 100%;
    }

    .hyopercube-text {
        width: 100%;
    }
}
