
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fcfcfc;
    color: rgb(253, 253, 253);
}
.icon img{
    height: 150px;
}

nav .navmenu {
    display: flex;
    list-style: none;
}
nav .navmenu a {
    display: inline-block;
    margin: 0 1em;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: 0.4s ease-in-out;
    padding: 0.2em;
}
.navmenu a:hover {
    color: rgb(219, 20, 20);
 }
nav .openMenu {
    font-size: 2rem;
    margin: 20px;
    display: none;
    cursor: pointer;
  }
nav .navmenu .closeMenu, .icons i {
    font-size: 2rem;
    display: none;
    cursor: pointer;
  }
  .fa-facebook:hover {
    color: rgb(3, 40, 88);
  }
  .fa-whatsapp:hover {
    color: rgb(11, 131, 37);
  }
  .fa-phone:hover {
    color: rgb(211, 2, 2);
  }

.hero {
    text-align: center;
    padding: 2em 0;
    background-image: url('hero.jpeg');
    background-size: cover;
    color: white;
}

.featured-products {
    padding: 2em;
    justify-content: center;
}

.slider{
    width: 1300px;
    max-width: 100vw;
    height: 400px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
footer {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center;
}

.icon i {
    font-size: 1.4rem;
    display: inline-block;
    padding: 15px;
}
      .fa-facebook:hover {
        color: rgb(3, 40, 88);
      }
      .fa-whatsapp:hover {
        color: rgb(11, 131, 37);
      }
      .fa-phone:hover {
        color: rgb(211, 2, 2);
    
}

/*Store Location CSS*/
.container {
    width: 100%;
    height: 600px;
}
.content{
    text-align: center;
    padding-bottom: 7em;
}
.hours{
    line-height: 2.1;
}

.cart {
    text-align: center;
    padding: 1em 0;
    background-image: url('cart.jpeg');
    background-size: cover;
    color: white;
}

/*Contact CSS*/
.map-container{
    position: relative;
    width: 100%;
    height: 500px;
}
.mapBg{
    position: absolute;
    background-color: var(--primaryColor);
    top: 0;
    right: 0;
    width: 200px;
    height: 90%;
    border-radius: 20px;
}

.map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.contactMethod{
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    text-align: left;
}

.method{
    display: flex;
    align-items: center;
}

.contactIcon{
    font-size: 2rem;
    color: var(--primaryColor);
    width: 70px;
}
/*Mobile Phone View*/
@media (max-width: 767px) {
    nav .navmenu {
        height: 100vh;
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(0, 0, 0);
        transition: top 1s ease 0s;
        display: none;
      }
    nav .navmenu a {
        margin: 0 1em;
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 1.1em;
        transition: 0.4s ease-in-out;
        padding: 0.2em;
    }  
    nav .navmenu .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }
    nav .openMenu {
        display: block;
        color: black;
      }
    nav .navmenu a:hover {
        background: none;
        color: rgb(0, 80, 4);
      }
      .icons i {
        display: inline-block;
        padding: 15px;
      }

.slider{
    height: 400px;
    width: 400px;
       }
    .contactMethod{
        flex-direction: row;
        justify-content: space-between; 
}}
