:root {
    --orange: #EA7600;
    --light-grey: #888B8D;
    --med-grey: #5F5F61;
    --dark-grey: #313131;
}


/* Layout */
main {
    display: grid;
    grid-template: repeat(7, minmax(200px, auto)) 75px / 100%;
}

.section-spacer {
    margin-top: 100px;
}

.small-section-spacer {
    padding-top: 20px;
}



/* HEADINGS */
h1,
h3 {
    font-family: bebas-neue-pro, sans-serif;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 10px;
}


h4 {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
}

p,
li,
a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 13px;
    line-height: 26px;
    color: var(--light-grey);
}

.text_orange {
    color: var(--orange);
}

.header-text {
    font-family: bebas-neue-pro, sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.header-text__grey {
    font-family: open-sans, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--light-grey);
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.header-bold {
    font-weight: bold;
}


/* TEXT */

.white-text {
    color: white;
}

.inline-link {
    color: var(--med-grey);
    text-decoration: underline;
}

.inline-link:hover {
    color: var(--dark-grey);
}

.bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

/* LISTS */
.product-categories div ul {
    padding-left: 0;
}

.product-categories div ul li a:hover {
    text-decoration: none;
}

/****************************************************************************************************/
/*** TOP SECTION ************************************************************************************/
/****************************************************************************************************/
.top-section {
    grid-row: 1/2;
    display: grid;
    position: relative;
    grid-template-rows: 250px 100px;
}

#page_banner {
    background-image: url("/images/banners/Hero_Redrock_Juniper_1600x880.webp");
    background-position-y: center;
    background-size: 625px 350px;
    height: 625px;
}

.top-section__banner-title {
    width: 100%;
    font-size: 24px;
    padding: 20px 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--orange);
    color: white;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

#page_heading {
    font-size: 48px;
    line-height: 56px;
    left: unset;
    position: relative;
    margin-top: 232px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 100;
    font-family: DaxOT, sans-serif;
    top: 40px;
    color: white;
    text-shadow: #000000bf 3px 3px 10px;
    opacity: 80%;
    max-width: 500px;
}

/****************************************************************************************************/
/*** CATEGORY SECTION *******************************************************************************/
/****************************************************************************************************/
.product-categories {
    margin: 30px 50px;
    display: flex;
    flex-direction: column;
}

.product-categories div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-categories div h3 {
    margin-top: 30px;
    font-size: 32px;
}

.product-categories div p {
    font-size: 16px;
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xxs breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (max-width: 349px) {

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
    }

    #page_banner {
        background-position-y: unset;
        background-size: auto 85%;
        background-repeat: no-repeat;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories div {
        margin-bottom: 30px;
    }

    .product-categories div h3 {
        text-align: center;
    }
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xs breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 350px) and (max-width: 575px) {

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories div {
        margin-bottom: 40px;
    }

    .product-categories div h3 {
        text-align: center;
    }
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| sm breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 576px) and (max-width: 767px) {

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories {
        margin: 30px 50px;
        display: flex;
        flex-direction: column;
    }

    .product-categories div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 50px;
    }

    .product-categories div img {
        width: 100%;
        margin: 0 auto;
    }

    .product-categories div h3 {
        text-align: center;
    }
}


/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| md breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
    main {
        grid-template: repeat(7, minmax(200px, auto)) 75px / 12.5% 37.5% 37.5% 12.5%;
    }

    .small-section-spacer {
        padding-top: 100px;
    }

    .img-gap {
        padding-top: 48px;
    }

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
        grid-column: 1/5;
        grid-template: 250px 100px / 12.5% 37.5% 37.5% 12.5%;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    .top-section__banner-title {
        text-align: left;
        left: 12.5%;
        width: unset;
    }

    .product-banner {
        grid-column: 2/5;
    }

    #page_heading {
        position: absolute;
        font-size: 4.5em;
        margin-top: 232px;
        text-align: left;
        left: 12.5%;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories {
        display: grid;
        grid-row-gap: 50px;
        flex-direction: unset;
        margin: 55px 0px 0px 0px;
        grid-template: 1fr 1fr 1fr/ 225px 225px;
        grid-column: 2;
        grid-row: 2;
        grid-gap: 50px;
    }

    .product-categories div {
        justify-content: unset;
    }

    .product-categories div img {
        width: 225px;
    }

    .product-categories div h3 {
        font-size: 24px;
    }

    .product-categories div p {
        font-size: 13px;
    }
}



/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| lg breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {

    h1,
    h3 {
        font-size: 38px;
    }

    main {
        grid-template: repeat(7, minmax(200px, auto)) 75px / 12.5% 37.5% 37.5% 12.5%;
    }

    .small-section-spacer {
        padding-top: 100px;
    }

    .img-gap {
        padding-top: 10px;
    }

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
        grid-column: 1/5;
        grid-template: 250px 100px / 12.5% 37.5% 37.5% 12.5%;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    .top-section__banner-title {
        font-size: 32px;
        line-height: 32px;
        padding-left: 60px;
        text-align: left;
        left: 12.5%;
        width: unset;
    }

    .product-banner {
        grid-column: 2/5;
    }

    #page_heading {
        font-size: 5.5em;
        line-height: 80px;
        position: absolute;
        margin-top: 232px;
        text-align: left;
        left: 12.5%;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories {
        display: grid;
        grid-row-gap: 50px;
        flex-direction: unset;
        margin: 55px 0px 0px 0px;
        grid-template: 1fr 1fr/ 350px 350px 350px;
        grid-column: 2;
        grid-row: 2;
    }

    .product-categories div {
        justify-content: unset;
    }

    .product-categories div img {
        width: 300px;
    }

    .product-categories div p {
        width: 300px;
        font-size: 13px;
    }

    .product-categories div h3 {
        font-size: 32px;
    }
}


/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xl breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1559px) {

    h1,
    h3 {
        font-size: 38px;
    }

    main {
        grid-template: repeat(7, minmax(200px, auto)) 75px / 21% 29% 29% 21%;
    }

    .small-section-spacer {
        padding-top: 100px;
    }

    .img-gap {
        padding-top: 10px;
    }

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
        grid-column: 1/5;
        grid-template: 250px 100px / 21% 29% 29% 21%;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    .top-section__banner-title {
        font-size: 32px;
        line-height: 32px;
        padding-left: 60px;
        text-align: left;
        left: 21%;
        width: unset;
    }

    .product-banner {
        grid-column: 2/5;
    }

    #page_heading {
        font-size: 5.5em;
        line-height: 80px;
        position: absolute;
        margin-top: 232px;
        text-align: left;
        left: 21%;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories {
        display: grid;
        grid-row-gap: 50px;
        flex-direction: unset;
        margin: 55px 0px 0px 0px;
        grid-template: 1fr 1fr/ 350px 350px 350px;
        grid-column: 2;
        grid-row: 2;
    }

    .product-categories div {
        justify-content: unset;
    }

    .product-categories div img {
        width: 300px;
    }

    .product-categories div p {
        width: 300px;
        font-size: 13px;
    }

    .product-categories div h3 {
        font-size: 32px;
    }
}


/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xxl breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 1560px) {

    h1,
    h3 {
        font-size: 38px;
    }

    main {
        grid-template: repeat(7, minmax(200px, auto)) 75px / 21% 29% 29% 21%;
    }

    .small-section-spacer {
        padding-top: 100px;
    }

    .img-gap {
        padding-top: 10px;
    }

    /****************************************************************************************************/
    /*** TOP SECTION ************************************************************************************/
    /****************************************************************************************************/
    .top-section {
        justify-items: center;
        align-items: center;
        grid-column: 1/5;
        grid-template: 250px 100px / 21% 29% 29% 21%;
    }

    #page_banner {
        background-position: center center;
        background-size: cover;
    }

    .top-section__banner-title {
        font-size: 32px;
        line-height: 32px;
        padding-left: 60px;
        text-align: left;
        left: 21%;
        width: unset;
    }

    .product-banner {
        grid-column: 2/5;
    }

    #page_heading {
        font-size: 5.5em;
        line-height: 80px;
        position: absolute;
        margin-top: 232px;
        text-align: left;
        left: 21%;
    }

    /****************************************************************************************************/
    /*** CATEGORY SECTION *******************************************************************************/
    /****************************************************************************************************/
    .product-categories {
        display: grid;
        grid-row-gap: 50px;
        flex-direction: unset;
        margin: 55px 0px 0px 0px;
        grid-template: 1fr 1fr/ 400px 400px 400px;
        grid-column: 2;
        grid-row: 2;
    }

    .product-categories div {
        justify-content: unset;
    }

    .product-categories div img {
        width: 300px;
    }

    .product-categories div p {
        width: 300px;
        font-size: 13px;
    }

    .product-categories div h3 {
        font-size: 32px;
    }
}