hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #101010;
}

hero * {
    user-select: none;
    -webkit-user-select: none;
}

hero > content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
    max-width: 1400px;
    opacity: 0;
    padding: 52px;
}

hero > content > titlewrap {
    position: relative;
    display: block;
    text-align: left;
    margin: 0;
    max-width: 600px;
}

hero > content > titlewrap > h6 {
    position: relative;
    display: block;
    margin: 0 0 32px;
    color: #ffffff;
}

hero > content > titlewrap > h1 {
    position: relative;
    display: block;
    margin: 0;
    width: 548px;
    color: var(--accent-color);
}

hero > content > imagewrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

hero > content > imagewrap > img {
    position: absolute;
    left: -152px;
    top: 5%;
    display: block;
    height: 110%;
    width: auto;
    opacity: 0;
    pointer-events: none;
}

hero > backgroundwrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
}

hero > backgroundwrap > inner {
    position: relative;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    width: 100%;
    height: 100%;
}

hero > backgroundwrap > inner > side {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

hero > backgroundwrap > inner > side:last-of-type::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 35%;
    background: var(--accent-color);
    content: '';
}

hero > backgroundwrap > inner > side > svg {
    position: absolute;
    left: -10%;
    top: 0;
    width: 100%;
    min-width: 1400px;
    height: 35%;
    display: block;
    margin: 0;
    padding: 0;
    fill: #212121;
    transform: skewX(25deg);
}

@media(max-width: 1709px) {
    hero > backgroundwrap > inner {
        grid-template-columns: 1fr 1fr;
    }

    hero > backgroundwrap > inner > side > svg {
        left: -15%;
    }
}

@media(max-width: 1197px) {
    hero > backgroundwrap > inner > side > svg {
        left: -19%;
    }
}


hero > backgroundwrap > h1 {
    position: absolute;
    left: -30%;
    bottom: -200px;
    display: block;
    font-size: 452px;
    font-variation-settings: 'wght' 900, 'wdth' 115;
    color: #000000;
    opacity: .15;
}


hero > preanimcontent {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

hero > preanimcontent > titlewrap {
    position: relative;
    display: block;
}

hero > preanimcontent > titlewrap > h1 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--accent-color);
    font-variation-settings: 'wght' 700, 'wdth' 100;
    margin: 0;
    animation: textTest 2s infinite;
    white-space: nowrap;
}



productcategorypicker {
    position: relative;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

productcategorypicker > imagewrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 700px;
}


productcategorypicker > imagewrap > entry {
    position: relative;
    display: flex;
    width: 33.3333%;
    height: 100%;
}

productcategorypicker > imagewrap > entry:nth-child(1) {
    justify-content: flex-end;
    z-index: 3;
    padding-top: 13%;
}

productcategorypicker > imagewrap > entry:nth-child(2) {
    z-index: 2;
    justify-content: center;
    padding-top: 26%;
}

productcategorypicker > imagewrap > entry:nth-child(3) {
    z-index: 1;
}

@media(max-width: 1650px) {
    productcategorypicker > imagewrap {
        height: 600px;
    }
}

@media(max-width: 1500px) {
    productcategorypicker > imagewrap {
        height: 500px;
    }

    productcategorypicker > imagewrap > entry:nth-child(1) {
        padding-top: 8%;
    }

    productcategorypicker > imagewrap > entry:nth-child(2) {
        padding-top: 16%;
    }
}

@media(max-width: 1300px) {
    productcategorypicker > imagewrap {
        height: 400px;
    }

    productcategorypicker > imagewrap > entry:nth-child(1) {
        padding-top: 6%;
    }

    productcategorypicker > imagewrap > entry:nth-child(2) {
        padding-top: 13%;
    }
}


productcategorypicker > imagewrap > entry > img {
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    pointer-events: none;
}


productcategorypicker > buttonwrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 52px 0 0 0;
}

productcategorypicker > buttonwrap > entry {
    position: relative;
    display: block;
    text-align: center;
}

productcategorypicker > buttonwrap > entry > p {
    position: relative;
    display: block;
    margin: 16px 0 0 0;
}