/* ----------------- Page and Content ----------------- */
.page {
    display: flex;
    margin: 4.2rem;
    padding: 7.0rem 4.2rem 14.2rem 4.2rem;
    width: calc(100% - 8.4rem);
    height: auto;
    min-height: calc(100vh - 8.4rem);
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border: solid 0.2rem var(--clr-gold-translucent);
}

.page.centered {
    padding: 4.2rem;
}


.anchor {
    position: absolute;
    width: 100%;
    height: 0;
}

.anchor.topAnchor {
    top: 0;
}

.anchor.bottomAnchor {
    bottom: 0;
}


h1, .h1, h2, .h2 {
    margin: 0 auto 4.0rem auto;
    width: max-content;
    color: var(--clr-green);
    font-weight: 500;
    border-bottom: solid 0.26rem var(--clr-gold);
}

h1, .h1 {
    padding: 0 0 1.4rem 0;
    font-size: 4.5rem;
    line-height: 5.0rem;
}

h2, .h2 {
    padding: 0 0 0.8rem 0;
    font-size: 3.4rem;
    line-height: 4.8rem;
}

.mobileTitle {
    display: none;
}


.text {
    font-family: 'Roboto Light', sans-serif;
    font-size: 2.2rem;
    line-height: 3.2rem;
    color: var(--clr-grey);
}

.text a,
.text a:visited {
    color: var(--clr-grey);
    text-decoration: underline;
}

.text a:hover {
    color: var(--clr-green);
}

.text .space {
    width: 100%;
    height: 1.8rem;
}


.list {
    margin: 3rem auto 0 auto;
    max-width: 90rem;
    font-family: 'Roboto Medium', sans-serif;
    font-size: 2.0rem;
    line-height: 3.2rem;
}

.list .item {
    padding: 2.0rem 0 2.0rem 8.0rem;
    text-align: left;
    background-image: url('/public/images/page/icons/list-bullet.svg?v=1');
    background-size: 2.9rem 2.9rem;
    background-position: left center;
}


.categoryName {
    position: absolute;
    top: 2.4rem;
    left: 2.4rem;
    color: var(--clr-gold);
    font-size: 2.0rem;
    line-height: 2.2rem;
    font-weight: 500;
}

.categoryName .thin {
    font-weight: 400;
}

.rightLink {
    position: absolute;
    top: 2.4rem;
    right: 2.4rem;
    color: var(--clr-gold);
    font-size: 2.0rem;
    line-height: 2.2rem;
    font-weight: 500;
}

.rightLink a,
.rightLink a:visited,
.rightLink a:hover {
    color: var(--clr-green);
    text-decoration: underline;
}


.pageNavigation {
    position: absolute;
    top: calc(50vh - 4.2rem);
    right: 4.2rem;
    transform: translateY(-50%);
    width: 1.2rem;
}

.pageNavigation .item {
    height: 1.8rem;
    width: 100%;
    background-image: url('/public/images/page/icons/nav-bullet.svg?v=1');
}

.pageNavigation .item.active {
    background-image: url('/public/images/page/icons/nav-bullet-active.svg?v=1');
}


.nextCategory {
    position: absolute;
    bottom: 4.2rem;
    right: 4.2rem;
}

.nextCategory div {
    height: 6.0rem;
    width: 6.0rem;
    background-color: var(--clr-white);
    background-image: url('/public/images/page/icons/aroww-double-down.svg?v=1');
    background-size: 2.0rem 2.0rem;
    box-shadow: 0 0.4rem 0.9rem 0 #0000000D;
}

video {
    margin: 2.0rem auto;
    height: 50.5rem;
    width: 90rem;
    background-color: #131313;
}


.button {
    padding: 1.6rem 3.0rem 1.6rem 3.0rem;
    width: max-content;
    color: var(--clr-gold);
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 400;
    border: solid 0.2rem var(--clr-gold);
    cursor: pointer;
}

.button:hover {
    color: var(--clr-white);
    background-color: var(--clr-gold);
}

.button.arrow {
    padding-right: 6.6rem;
    background-size: 1.6rem 1.6rem;
    background-position: center right 3.0rem;
}

.button.arrow.right {
    background-image: url('/public/images/page/icons/arrow-right-gold.svg?v=1');
}

.button.arrow.right:hover {
    background-image: url('/public/images/page/icons/arrow-right.svg?v=1');
}

.button.arrow.down {
    background-image: url('/public/images/page/icons/arrow-down-gold.svg?v=1');
}

.button.arrow.down:hover {
    background-image: url('/public/images/page/icons/arrow-down.svg?v=1');
}



