body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #511c29;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #Db324D;
}

.grid-container {
    display: grid;
    grid-template-areas: 'header' 'banner' 'content' 'reviews' 'footer';
    background-color: #ffffff;
}

.grid-container>div {
    padding: 20px 40px;
}

.header {
    grid-area: header;
    background-color: #000000;
}

.header img {
    width: 150px;
}

.header #nav {
    float: right;
    height: 100px;
    position: relative;
    top: 40px;
}

.header .icon {
    display: none;
}

.header #nav.open {
    display: contents;
}

.header #nav.open>a {
    display: block;
}

.header a {
    color: #ffffff;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.header a:hover {
    color: #Db324D;
}

@media (max-width: 900px) {
    /* Mobile */
    .header #nav {
        display: none;
    }
    .header .icon {
        display: block;
        position: absolute;
        top: 40px;
        right: 40px;
    }
     .store-portrait{
        grid-template-columns: auto !important;
    }
    .store-portrait img{
        margin-top:220px !important;
    }
    .store{
        grid-template-columns: auto !important; 
    }
}

@media (min-width: 1050px) {
    .header a {
        float: left;
    }
}

@media (max-width: 1050px) and (min-width: 900px) {
    /* Mobile and Tablet */
    .header #logo {
        display: block;
        margin: auto;
        width: 150px;
    }
    .store-portrait{
        grid-template-columns: auto !important;
    }
    .store-portrait img{
        margin-top:220px !important;
    }
    .store{
        grid-template-columns: auto !important; 
    }
    .header #nav {
        display: block;
        float: none;
        margin: auto;
        width: 815px;
    }
}

#banner-slider {
    grid-area: banner;
}

.swiper-container {
    width: auto;
    max-width: 100%;
    background-color: #511c29;
    color: white;
}

.swi-container {
    width: auto;
    max-width: 100%;
    background-color: #511c29;
    color: white;
}

#banner-slider {
    padding:0;
    height: 500px;
}

#review-slider {
    grid-area: reviews;
    height: 250px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swi-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


.swiper-slide>h1 {
    font-size: 60px !important;
}
.swiper-slide>img {
    height: auto;
    max-width:100%;
    width: 1000px;
}

.swi-slide>img {
    height: auto;
    max-width:100%;
    width: 1000px;
}



.swiper-pagination-bullet {
    background: white !important;
}

.content {
    grid-area: content;
}

#categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
}

.content #categories .category .graphic {
    background-color: #56494e;
    border-radius: 12px;
    max-width:100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 0!important;
}
.content #categories .category .graphic>img {
    height: auto;
    max-width:100%;
    width: 350px;
}
.content .category {
    margin: auto;
}

.content .category>h3 {
    text-align: center;
}

.content h1,
h4 {
    text-align: center;
}

.content #main {
    width: 80%;
    display: block;
    margin: auto;
}

.content #main .left {
    float: left;
}

.content #main .right {
    float: right;
}

@media (min-width: 1050px) {
    iframe {
        min-width: 500px;
    }

}

.reviews {
    grid-area: reviews;
    background-color: #511c29;
}
.store{
    grid-template-columns: 1fr 1fr;
    margin:100px 0px;
    display: grid;
    grid-gap: 1rem;
}

.store-portrait{
    grid-template-columns: 1fr 1fr;
    margin:200px 0px 150px 0px;
    display: grid;
}
.single{
    grid-template-columns: auto;
}
.store-portrait img{

    width: 600px;
    margin:auto;
    height: auto;
    max-width:100%;
    border-radius: 2rem;
}
.store img{
    margin:auto;
    height: auto;
    max-width:100%;
    width: 1400px;
    border-radius: 2rem;
}

.footer {
    grid-area: footer;
    background-color: #000000;
    text-align: center;
    color: #ffffff;
    height: 200px;
}