.hero
{
    position: relative; 
    width: 100%;
}

.hero > img
{
    width: 100%;  
}
    
.hero .hero-text
{
    position: absolute; 
    padding: 0;
    margin: 0;
    font-size: 32px; 
    font-weight: bold; 
    color: white;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
    
.collection
{
    width: 100%; 
    text-align: center;
    margin-bottom: 20px;
}



/*Collection Product*/
    
.collection .product
{
    display: inline-block; 
	font-family: 'halyard-text', Arial, Helvetica, sans-serif;
    border: 1px solid #CCC;
    width: 100%;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 2px;
    padding: 4px;
    box-sizing: border-box;
    vertical-align: top;
}

.collection .product > a > img,
.collection .product > a > span > img
{
    width: 100%;
}

.collection .product > a > span:first-of-type
{
    display: block;
    min-height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.collection .product > a
{
    text-decoration: none;
    color: black;
}

/*Product*/

.product:not(.collection .product)
{
    padding: 20px;
    box-sizing: border-box;
}

.product:not(.collection .product) > h1
{
    padding: 0;
    margin: 0;
}

.product:not(.collection .product) > div
{
    width: 100%;
}

.product:not(.collection .product) > div > div > div > a
{
    display: inline-block;
    background: black;
    color: white;
    text-decoration: none;
    width: fit-content;
    padding: 10px;
	border-radius: 4px;
}

.product:not(.collection .product) > div > div > div > a:hover
{
    background: #333;
}

    
@media screen and (min-width: 800px)
{
    /*Desktop*/
    
    .hero .hero-text
    {
        position: absolute; 
        padding: 0;
        margin: 0;
        font-size: 48px; 
        font-weight: bold; 
        color: #000000;
        top: 50%;
        left: 50px;
        -o-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        text-align: left;
    }
    
    
    .product:not(.collection .product) > div > div
    {
        display: inline-block;
        width: 50%;
        vertical-align: top
    }

    .collection .product
    {
        width: 200px;
		font-family: 'halyard-text', Arial, Helvetica, sans-serif;
    }
}
