* {
    box-sizing: border-box;
    padding:0px;
    margin:0px;
    text-decoration: none;
    font-family:Arial;
}
body { 
    color:#F1F0F3;
    text-align:center;
}
.wrapper{
    margin:auto;
    background-color:#cca47f; 
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}
header {
    background-color: rgba(255, 255, 255,1);
    border-bottom:40px solid #E1CAB4;
    grid-row-start: 1;
    grid-row-end: 2; 
    grid-column-start: 1;
    grid-column-end: -1;
    display: flex;
    justify-content: center;
    height: 105px;
}

header > div {
    max-width: 992px;
    display: flex;
    align-items: center;
    width: 100%;
}
header img{
    margin-top: 40px;
    width: 90px;
}
header > div > a{
    border-radius: 100%;
}
header nav {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0px;
    text-transform: uppercase;
}

.max-width{
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

nav ul{
    width: 70%;
    display: flex;
    flex-flow:row nowrap;
    list-style-type: none;
}
nav ul li{
    width: 100%;
}
nav a { 
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 10px;
    display: block;
    background:#cca47f;
    margin-right:10px;
}

nav a:hover{
    color:#E1CAB4;
    font-style: italic;
}

.bg-opacity{ 
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 9;
}

.home-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
    max-height: 750px;
    background-image: url(Assets/Background/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;
}
h1 > span{
    color:#cca47f;
}
.shop-now{
    margin-top:30px;
}
.h2{
    width:100%;
    height:60px;
    padding-top:15px;
}
main {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column: 2 / 8;
    padding:2rem 0rem;
}
main a{
    text-decoration: none;
    background-color: #ffffff;
    color:#cca47f;
}

.item-container{
    width:100%;
    height:400px;
    padding-top:30px;
    padding-bottom:30px;
}
.item-wrapper{
    width:100%;
    height:360px;
    display:flex;
    justify-content: space-between;
}
.item{
    border-radius: 5px;
    overflow: hidden;
    width:22.5%;
    height:90%;
    /* box-shadow: 5px 5px 100px rgba(0,0,0,0.1); */
}
.image{
    width:100%;
    height:275px;
}
.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:16px;
}
.show-more{
    text-decoration: none;
    background-color: #ffffff;
    color:#cca47f;
    border-radius:5px;
    padding:10px;

}
footer{
    grid-row-start:5;
    grid-row-end: 6;
}
.footer-container{
    grid-column-start: 1;
    grid-column-end:-1;
    height:400px;
    background:#ffffff;
    color:#cca47f;
}
.footer-wrapper{
    margin:auto;
    width:1050px;
    height:80%;
    display:flex;
}
.footer-text{
    width:33.33%;
    height:100%;
    padding-left:80px;
    padding-top:80px;
    text-align: left;
}
.icon-wrapper{
    width:200px;
    display:flex;
    justify-content:space-between;
}
.icon{
    width:30px;
    fill:#cca47f;
}
.footer{
    width:100%;
    height:20%;
    background-color: #cca47f;
    border-top:1px solid;
    padding-top: 30px;
    color:#F1F0F3;    
}




