* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-transition: all 0.5 ease-in;
  transition: all 0.5 ease-in;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4rem;
  width: 100%;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4rem;
  width: 100%;
  padding: 0 2rem;
  background: #eeecec;
  -webkit-box-shadow: 1px 1px 4px black;
          box-shadow: 1px 1px 4px black;
  z-index: 999;
  position: fixed;
  top: 0;
}

.nav .logo h1 {
  font-family: "Brush Script MT";
}

.nav .navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 2rem;
}

.nav .navLinks div {
  position: relative;
  margin: 0 1.2rem;
}

.nav .navLinks div a {
  color: black;
}

.nav .navLinks div p {
  font-size: 1.2rem;
}

.nav .navLinks div p a {
  text-decoration: none;
  color: black;
}

.nav .navLinks div p a:hover {
  color: darkcyan;
}

.nav .navLinks .shop a {
  color: darkcyan;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.nav .navLinks .shop a::after {
  content: '';
  width: 50%;
  height: 2px;
  background: darkcyan;
  position: absolute;
  bottom: -4px;
  left: 1px;
}

.nav .navLinks #toogleBar {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    position: fixed;
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .nav .logo {
    padding-left: 1rem;
  }
  .nav .navLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #eeecec;
    height: 100vh;
    margin: 0;
    top: 0%;
    right: -1000px;
    padding-top: 3rem;
    overflow: hidden;
  }
  .nav .navLinks .home, .nav .navLinks .contact, .nav .navLinks .blog, .nav .navLinks .about, .nav .navLinks .shop, .nav .navLinks .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    width: 100%;
  }
  .nav .navLinks .shop p a {
    border-bottom: 2px solid darkcyan;
  }
  .nav .navLinks .shop p a::after {
    content: none;
  }
  .nav .navLinks #toogleBar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 1.5rem;
    z-index: -1;
    cursor: pointer;
    position: fixed;
    left: 85%;
    top: 3%;
  }
  .nav .display {
    right: 0%;
  }
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .sec1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
  margin-top: 1rem;
  width: 100%;
}

.main .sec1 .topSec1 {
  background: url(../../images/banner/b1.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40vh;
  min-width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.main .sec1 .topSec1 h1 {
  font-family: 'Trebuchet MS';
}

.main .sec1 .topSec1 p {
  font-size: smaller;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  opacity: 0.7;
}

.main .sec1 .bottomSec1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin: 2rem 1rem;
}

.main .sec1 .bottomSec1 .c1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 1rem;
  padding: 0.2rem;
  -webkit-box-shadow: 1px 1px 2px #d7d7ca;
          box-shadow: 1px 1px 2px #d7d7ca;
  border-radius: 0.3rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main .sec1 .bottomSec1 .c1:hover {
  -webkit-box-shadow: 1px 3px 4px #5d5d5c;
          box-shadow: 1px 3px 4px #5d5d5c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main .sec1 .bottomSec1 .c1 img {
  border-radius: 0.3rem;
  height: 9rem;
  width: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.main .sec1 .bottomSec1 .c1 p {
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: arial;
}

.main .sec1 .bottomSec1 .c1 h4 {
  font-family: 'Lucida Sans';
  font-size: .8rem;
}

.main .sec1 .bottomSec1 .c1 .star i {
  color: #e1c315;
  font-size: 0.7rem;
}

.main .sec1 .bottomSec1 .c1 h5 {
  color: darkcyan;
  font-size: 0.8rem;
  font-family: 'Trebuchet MS';
}

.main .sec1 .bottomSec1 .c1 .ty {
  position: absolute;
  color: darkcyan;
  left: 78%;
  bottom: 1%;
  background: #eaeae5;
  border-radius: 50%;
  padding: 0.2rem;
  font-size: 0.7rem;
}

.main .sec1 .directory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}

.main .sec1 .directory p {
  padding: 0.8rem 1rem;
  background: darkcyan;
  border-radius: 3px;
  margin: 0.1rem;
  cursor: pointer;
}

.main .sec1 .directory p:hover {
  color: darkcyan;
  background: #b1b1b1;
  border: 2px solid darkcyan inset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .main .sec1 .bottomSec1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .main .sec1 .bottomSec1 .c1 {
    margin: 1rem;
    padding: 0.5rem;
  }
  .main .sec1 .bottomSec1 .c1 img {
    height: 7rem;
    width: 5rem;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

footer .footer1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4rem;
  padding: 0;
  width: 100%;
}

footer .footer1 .newsLetter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30vh;
  width: 100%;
  background: #040f38;
  padding: 2rem;
}

footer .footer1 .newsLetter .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: white;
  text-align: left;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

footer .footer1 .newsLetter .text h1 {
  font-size: 1.3rem;
}

footer .footer1 .newsLetter .text p {
  font-size: 0.6rem;
}

footer .footer1 .newsLetter .text p span {
  color: orange;
}

footer .footer1 .newsLetter .input1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 1rem;
}

footer .footer1 .newsLetter .input1 input {
  outline: none;
  border: none;
  padding: 1rem;
  font-size: 0.7rem;
}

footer .footer1 .newsLetter .input1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: darkcyan;
  padding: 1rem;
  cursor: pointer;
  font-size: 0.7rem;
}

footer .footer1 .newsLetter .input1 p:hover {
  background: white;
  color: darkcyan;
  border: 1px solid darkcyan;
}

footer .footer1 .footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  padding: 2rem;
  position: relative;
  padding-bottom: 0;
}

footer .footer1 .footer a {
  text-decoration: none;
  color: #000;
}

footer .footer1 .footer .locate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer1 .footer .locate h1 {
  font-family: "Brush Script MT";
}

footer .footer1 .footer .locate p {
  margin: .5rem 0;
  font-size: 0.7rem;
  font-family: 'Trebuchet MS';
  font-weight: 100;
  font-weight: 400;
}

footer .footer1 .footer .locate p span {
  font-weight: 900;
}

footer .footer1 .footer .abouttt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

footer .footer1 .footer .abouttt .about1 h1, footer .footer1 .footer .abouttt .myAccount h1, footer .footer1 .footer .abouttt .installApp h1 {
  font-family: 'Segoe UI';
  font-size: 1rem;
}

footer .footer1 .footer .abouttt .about1 p, footer .footer1 .footer .abouttt .myAccount p, footer .footer1 .footer .abouttt .installApp p {
  margin: .5rem 0;
  font-size: 0.7rem;
  font-family: 'Trebuchet MS';
  font-weight: 100;
  font-weight: 400;
}

footer .footer1 .footer .abouttt .about1 p span, footer .footer1 .footer .abouttt .myAccount p span, footer .footer1 .footer .abouttt .installApp p span {
  font-weight: 900;
}

footer .footer1 .footer .abouttt .installApp .stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer1 .footer .abouttt .installApp .stores a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer1 .footer .abouttt .installApp .stores a:hover {
  color: #5d5d5c;
}

footer .footer1 .footer .abouttt .installApp .stores .apple {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 2px solid black;
  margin: 0.5rem;
  border-radius: 1rem;
  width: 8rem;
}

footer .footer1 .footer .abouttt .installApp .stores .apple i {
  font-size: 1.5rem;
}

footer .footer1 .footer .abouttt .installApp .stores .apple p {
  font-size: 0.7rem;
  font-weight: bolder;
  padding-left: 0.4rem;
}

footer .footer1 .footer .abouttt .installApp .stores .apple p span {
  font-size: 0.5rem;
}

footer .footer1 .footer .abouttt .installApp .stores .google {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid black;
  margin: 0.5rem;
  border-radius: 1rem;
  width: 8rem;
  padding: 0.4rem 0;
}

footer .footer1 .footer .abouttt .installApp .stores .google i {
  font-size: 1.5rem;
}

footer .footer1 .footer .abouttt .installApp .stores .google p {
  font-size: 0.7rem;
  font-weight: bolder;
  padding-left: 0 1rem;
}

@media screen and (max-width: 768px) {
  .footer1 .newsLetter .text {
    padding: 1rem;
  }
  .footer1 .newsLetter .text h1 {
    font-size: 1rem;
  }
  .footer1 .newsLetter .input1 input {
    outline: none;
    border: none;
    padding: 0;
    width: 70%;
    font-size: 0.5rem;
    height: 3rem;
  }
  .footer1 .newsLetter .input1 p {
    height: 3rem;
    padding: 0rem;
    font-size: 0.5rem;
    width: 50%;
  }
  .footer1 .footer {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;
  }
  .footer1 .footer .locate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem;
  }
  .footer1 .footer .locate p {
    font-size: 0.8rem;
  }
  .footer1 .footer .locate a {
    text-decoration: none;
    color: #000;
  }
  .footer1 .footer .abouttt {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer1 .footer .abouttt .about1, .footer1 .footer .abouttt .myAccount, .footer1 .footer .abouttt .installApp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    margin: 1rem;
    padding: 0;
  }
  .footer1 .footer .abouttt .about1 h1, .footer1 .footer .abouttt .myAccount h1, .footer1 .footer .abouttt .installApp h1 {
    font-family: 'Segoe UI';
    font-size: 1rem;
  }
  .footer1 .footer .abouttt .about1 p, .footer1 .footer .abouttt .myAccount p, .footer1 .footer .abouttt .installApp p {
    margin: .5rem 0;
    font-size: 0.8rem;
    font-family: 'Trebuchet MS';
    font-weight: 100;
    font-weight: 400;
  }
  .footer1 .footer .abouttt .about1 p span, .footer1 .footer .abouttt .myAccount p span, .footer1 .footer .abouttt .installApp p span {
    font-weight: 900;
  }
  .footer1 .footer .abouttt .about1 a, .footer1 .footer .abouttt .myAccount a, .footer1 .footer .abouttt .installApp a {
    text-decoration: none;
    color: #000;
  }
  .footer1 .footer .abouttt .about1 a:hover, .footer1 .footer .abouttt .myAccount a:hover, .footer1 .footer .abouttt .installApp a:hover {
    color: #5d5d5c;
  }
  .footer1 .footer .abouttt .installApp .stores {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer1 .footer .abouttt .installApp .stores a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer1 .footer .abouttt .installApp .stores a .apple {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border: 2px solid black;
    margin: 0.5rem;
    border-radius: 1rem;
    width: 8rem;
  }
  .footer1 .footer .abouttt .installApp .stores a .apple i {
    font-size: 1.5rem;
  }
  .footer1 .footer .abouttt .installApp .stores a .apple p {
    font-size: 0.7rem;
    font-weight: bolder;
    padding-left: 0.4rem;
  }
  .footer1 .footer .abouttt .installApp .stores a .apple p span {
    font-size: 0.5rem;
  }
  .footer1 .footer .abouttt .installApp .stores .google {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 2px solid black;
    margin: 0.5rem;
    border-radius: 1rem;
    width: 8rem;
    padding: 0.4rem 0;
  }
  .footer1 .footer .abouttt .installApp .stores .google i {
    font-size: 1.5rem;
  }
  .footer1 .footer .abouttt .installApp .stores .google p {
    font-size: 0.7rem;
    font-weight: bolder;
    padding-left: 0 1rem;
  }
}
/*# sourceMappingURL=shop.css.map */