* {
    box-sizing: border-box;
    padding:0px;
    margin:0px;
    text-decoration: none;
    font-family:Arial;
}
body { 
    color:#F1F0F3;
    text-align:center;
}
.content-wrapper{
    margin:auto;
    background-color:#cca47f; 
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns:minmax(0px, 1fr) repeat(8, minmax(0, 124px)) minmax(0px, 1fr);
}
.header-logo
    {
        width:18%;
        display:flex;
    }
header {
    width:100%;
    background-color: white;
    border-bottom:40px solid #E1CAB4;
    grid-row-start: 1;
    grid-row-end: 2; 
    grid-column-start: 1;
    grid-column-end: 11;
    display: flex;
    justify-content: center;
    height: 105px;
}
header > div {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
header img{
    margin: 40px 5px 0px 5px;
    width: 90px;
}
header nav {
    text-transform: uppercase;
}
.max-width{
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
nav ul{
    display: flex;
    list-style-type: none;
}
nav ul li{
    min-width:126px;
}
nav a { 
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 10px;
    display: block;
    background:#cca47f;
    margin-left:5px;
    margin-right:5px;
}
nav a:hover{
    color:#E1CAB4;
}
.bg-opacity{ 
    width:100%;
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 11;
}
.home-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
    max-height: 750px;
    background-image: url(background.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
    z-index: 1;
}
.home-med {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 40vh;
    max-height: 350px;
    background-image: url(background.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
    z-index: 1;
}
.home-bg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: black;
    opacity: 0.6;
    z-index: -1;
}
.punch-line{
    color:#F1F0F3;
    font-weight: bold;
}
h1 > span > i{
    color:#cca47f;
    font-weight: bold;
}
.shop-now{
    margin-top:30px;
}
.h2{
    width:100%;
    height:60px;
    padding-top:15px;
    padding-bottom:15px;
    margin-top: 25px;
}
main {
    width:100%;
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start:2;
    grid-column-end:10;
}
main a{
    text-decoration: none;
    background-color: #ffffff;
    color:#cca47f;
}

.item-container{
    width:100%;
    padding-bottom:15px;
}
.item-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
}
.item{
    border-radius: 5px;
    overflow: hidden;
    width: 219.38px;
    height: 323px;
    margin: 25px 10px 10px 10px;
}

.image{
    width:100%;
    height:275px;
    background-color: white;
    
}
.item img{
    height:275px;
    object-fit: cover;
    width:100%;
}
.item-footer{
    font-weight: lighter;
    color:#cca47f;
    float:left;
    width:100%;
    height:15%;
    background-color: rgba(255,255,255,1);
    text-align:center;
    padding:15px;
}
.item-footer:hover{
    background-color:cornsilk;
}
.show-more{
    text-decoration: none;
    background-color: #ffffff;
    color:#cca47f;
    border-radius:5px;
    padding:10px;

}
.show-more:hover{
    background-color:cornsilk;
}
footer{
    grid-row-start:5;
    grid-row-end: 6;
}
.footer-container{
    grid-column-start: 1;
    grid-column-end:11;
    background:#ffffff;
    color:#cca47f;
    display: flex;
    flex-direction: column;
    margin-top:40px;
    width:100%;
}
.footer-wrapper{
    margin:auto;
    display:flex;
    justify-content: space-around;
    margin-left:auto;
    margin-right:auto;
    flex-wrap:wrap;
    padding: 25px 10px 25px 10px;
}
.footer-text{
    text-align:left;
    margin: 15px 0px 15px 0px;
    line-height: 30px;
    padding: 0px 25px 0px 25px;
}
.icon-wrapper{
    width:200px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.icon{
    width:30px;
    fill:#cca47f;
}
.icon:hover{
    fill:#E1CAB4;
}
.footer{
    width:100%;
    height:60px;
    background-color: #cca47f;
    padding: 20px;
    color:#F1F0F3;    
}
/* MEDIA QUERIES FOR DEVICES BELOW 992px */
@media only screen and (max-width:992px)
    {
        .max-width{
            max-width:768px;
        }
        .footer-text{
            text-align:center;
        }
    }
/* MEDIA QUERIES FOR TABLETS BELOW 768px*/
    @media screen and (max-width:768px)
    {   
        nav ul {
                flex-wrap:wrap;
        }
        nav ul li{
            min-width:unset;
        }
        .header-logo
        {
            width:100%;
            justify-content:center;
        }
        header{
            height: 152px;
            border-bottom: 91px solid #E1CAB4;
        }
        header > div{
            display:block;
        }
        header img{
            margin-top:0px;
        }
        header nav
        {
            display:flex;
            justify-content: center;
            align-items:center;
        }
        main{
            grid-column-start: 3;
            grid-column-end: 9;
        }
        .item-wrapper{
            justify-content: center;
        }
        .footer-wrapper
        {
            text-align: center;
        }
    }

    form{
        display:grid;
        width:100%;
        grid-template-rows: auto;
        grid-template-columns: 200px 1fr;
        gap:0.75rem;
        
    }
    input{
        font-size: 1rem;
        padding:10px;
        color:#666666;
        background-color: #fafafa;
        border: none;
    }
    textarea{
        color:#666666;
        background-color: #fafafa;
        border: none;
        font-size: 1rem;
        padding:10px;
    }
    input:focus{
        outline: none;
        background-color: #f0f0f0;
    }
    textarea:focus{
        outline: none;
        background-color: #f0f0f0;
    }
    label{
        padding:10px;
        text-align: right;
    }
    #mySubmit{
        width:10rem;
        grid-column-start: 2;
        grid-column-end:3;
    }