* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  font-size: 62%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#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;
  padding: 1.5rem 2.5rem;
  color: #fff;
}

#header .fa-bars {
  font-size: 3rem;
  z-index: 10000;
  cursor: pointer;
}

#header .fa-times {
  font-size: 3rem;
  z-index: 10000;
  cursor: pointer;
}

#header .logo {
  color: #fff;
  font-size: 2rem;
}

#header i {
  padding: 0 .5rem;
}

#header a {
  text-decoration: none;
}

#header h1 {
  display: inline;
}

#header .left .fa-shopping-cart {
  font-size: 2.5rem;
  cursor: pointer;
}

#header .left .search-container {
  display: inline;
  position: relative;
}

#header .left .search-container #search {
  position: absolute;
  top: -1.5rem;
  right: .8rem;
  height: 3.5rem;
  width: 3.5rem;
  font-size: 1.5rem;
  padding: 0 1rem;
  border: none;
  outline: none;
  border-radius: 5rem;
}

#header .left .search-container #search:hover, #header .left .search-container #search:focus {
  width: 25rem;
}

#header .left .search-container .fa-search {
  position: absolute;
  top: -.7rem;
  right: 1.2rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  color: #333;
}

#header .left .search-container .fa-search:hover ~ #search {
  width: 25rem;
}

#header .navbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.9);
  display: none;
}

#header .navbar ul {
  height: 100vh;
  width: 35rem;
  background: #333;
  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;
  list-style: none;
}

#header .navbar ul li {
  margin: .5rem 0;
}

#header .navbar ul li a {
  display: block;
  height: 4rem;
  width: 24rem;
  background-color: #fff;
  color: #333;
  border-radius: 5rem;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
}

#header .navbar ul li a:hover {
  background-color: red;
  color: #fff;
  letter-spacing: .3rem;
}

#home {
  background-color: #333;
  margin-top: -3.2rem;
}

#home .image img {
  width: 50vw;
}

#home .image2 img {
  width: 100%;
  height: auto;
}

#home .slide {
  min-height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#home .slide .content {
  margin-left: 3.3rem;
}

#home .slide .content h1 {
  font-size: 4rem;
  color: #fff;
}

#home .slide .content p {
  font-size: 1.7rem;
  color: #ccc;
  width: 60%;
}

#home .slide .stars .fa-star, #home .slide .stars .fa-star-half {
  font-size: 1.5rem;
  color: gold;
  padding-left: .4rem;
}

#home .slide .price {
  color: red;
  font-size: 3.5rem;
}

#home .slide button {
  outline: none;
  border: none;
  height: 4rem;
  width: 16rem;
  background-color: blue;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5rem;
  text-transform: capitalize;
  color: #fff;
}

#home .slide button:hover {
  background-color: red;
  letter-spacing: .2rem;
}

#home .owl-nav .owl-next, #home .owl-nav .owl-prev {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: red;
  font-size: 5rem;
  background: none;
  outline: none;
  border: none;
}

#home .owl-nav .owl-next {
  right: 1rem;
}

#home .owl-nav .owl-prev {
  left: 1rem;
}

#home .owl-nav .owl-dots {
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
}

#home .owl-nav .owl-dots .owl-dot {
  border: none;
  outline: none;
}

#products {
  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;
  width: 100vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#products .heading {
  font-size: 3rem;
  margin: 2rem 0;
  padding-top: 5rem;
  position: relative;
  text-align: center;
  color: blue;
}

#products .heading::after {
  content: '';
  width: 80%;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: red;
  height: 2px;
  margin-top: .5rem;
  display: block;
}

#products .title {
  width: 100%;
}

#products .title h2 {
  font-size: 3rem;
  color: red;
  margin-top: 5rem;
  margin-left: 6rem;
}

#products .product-container {
  width: 100%;
}

#products .product-container .owl-nav .owl-next, #products .product-container .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: red;
  font-size: 5rem;
  background: none;
  outline: none;
  border: none;
}

#products .product-container .owl-nav .owl-next {
  right: 1rem;
}

#products .product-container .owl-nav .owl-prev {
  left: 1rem;
}

#products .product-container .product-slider .product-card {
  height: 40rem;
  width: 30rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.6);
  margin: 2rem auto;
  border-radius: .5rem;
  position: relative;
}

#products .product-container .product-slider .product-card .image {
  height: 75%;
  width: 100%;
}

#products .product-container .product-slider .product-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#products .product-container .product-slider .product-card .content {
  height: 25%;
  width: 100%;
  text-align: center;
}

#products .product-container .product-slider .product-card .content h3 {
  font-size: 3rem;
  color: blue;
}

#products .product-container .product-slider .product-card .content .stars i {
  color: gold;
}

#products .product-container .product-slider .product-card .content .price {
  font-size: 2rem;
  color: red;
}

#products .product-container .product-slider .product-card .info {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  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;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .4s;
  transition: .4s;
}

#products .product-container .product-slider .product-card .info h4 {
  font-size: 3.4rem;
  color: #fff;
  margin-top: 2rem;
}

#products .product-container .product-slider .product-card .info p {
  font-size: 1.4rem;
  color: #ccc;
  text-align: center;
  margin: .5rem 0;
}

#products .product-container .product-slider .product-card .info .share a {
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  color: red;
  line-height: 4rem;
  text-align: center;
  font-size: 1.7rem;
  margin-top: 2rem;
  border-radius: 5rem;
  margin-left: .7rem;
  text-decoration: none;
}

#products .product-container .product-slider .product-card .info .share a:hover {
  background-color: red;
  color: #fff;
}

#products .product-container .product-slider .product-card .info a button {
  outline: none;
  border: none;
  height: 4rem;
  width: 16rem;
  background-color: blue;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5rem;
  text-transform: capitalize;
  color: #fff;
  background-color: red;
  margin: 5rem 0 0;
}

#products .product-container .product-slider .product-card .info a button:hover {
  background-color: red;
  letter-spacing: .2rem;
}

#products .product-container .product-slider .product-card .info a button:hover {
  background-color: blue;
}

#products .product-container .product-slider .product-card:hover .info {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#review {
  height: 90vh;
  width: 100%;
  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-flow: column;
          flex-flow: column;
  background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(red)), url("../images/slide2.jpg");
  background-image: linear-gradient(red, red), url("../images/slide2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: screen;
  position: relative;
}

#review .owl-nav .owl-next, #review .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: blue;
  font-size: 5rem;
  background: none;
  outline: none;
  border: none;
}

#review .owl-nav .owl-next {
  right: 1rem;
}

#review .owl-nav .owl-prev {
  left: 1rem;
}

#review .heading {
  font-size: 3rem;
  margin: 2rem 0;
  padding-top: 5rem;
  position: relative;
  text-align: center;
  color: blue;
  padding-top: 7rem;
}

#review .heading::after {
  content: '';
  width: 80%;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: red;
  height: 2px;
  margin-top: .5rem;
  display: block;
}

#review .heading::after {
  background: red;
}

#review .box-container {
  height: 100%;
  width: 100%;
  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;
}

#review .box-container .review-slider .box {
  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;
}

#review .box-container .review-slider .box .comment {
  height: 20rem;
  width: 45rem;
  background: #333;
  border-radius: 2% 2% 2% 40%;
  padding-top: 2rem;
}

#review .box-container .review-slider .box .comment p {
  color: #fff;
  font-size: 1.6rem;
  padding: 2rem;
}

#review .box-container .review-slider .box .comment i {
  color: blue;
  font-size: 2rem;
  padding: .5rem;
}

#review .box-container .review-slider .box .comment h3 {
  text-align: end;
  color: #fff;
  font-weight: 900;
  margin-right: .5rem;
}

#review .box-container .review-slider .box .image {
  margin-top: 10rem;
  margin-left: 3rem;
  width: 10rem;
  height: 10rem;
}

#review .box-container .review-slider .box .image img {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 0%;
  border: .5rem solid blue;
}

#offers {
  min-height: 100vh;
  width: 100vw;
  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;
}

#offers .heading {
  font-size: 3rem;
  margin: 2rem 0;
  padding-top: 5rem;
  position: relative;
  text-align: center;
  color: blue;
}

#offers .heading::after {
  content: '';
  width: 80%;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: red;
  height: 2px;
  margin-top: .5rem;
  display: block;
}

#offers .images {
  min-height: 20vh;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 7rem;
}

#offers .images .box {
  width: 30rem;
  height: 25rem;
  text-align: center;
  margin: 2rem;
}

#offers .images .box img {
  width: 25rem;
  height: 20rem;
}

#offers .images .box h3 {
  color: red;
  font-size: 2.5rem;
  margin: 1rem 0;
}

#offers .deal {
  background-image: -webkit-gradient(linear, left top, left bottom, from(blue), to(blue)), url("../images/offerbg.jpg");
  background-image: linear-gradient(blue, blue), url("../images/offerbg.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-position: center;
  background-size: cover;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-attachment: fixed;
  background-blend-mode: screen;
  width: 100%;
  padding: 5rem 0;
}

#offers .deal .image img {
  height: 50vh;
}

#offers .deal .content h4 {
  color: red;
  font-size: 4rem;
}

#offers .deal .content p {
  color: #fff;
  font-size: 2rem;
}

#offers .deal .content .stars i {
  color: gold;
  font-size: 1.7rem;
}

#offers .deal .content button {
  outline: none;
  border: none;
  height: 4rem;
  width: 16rem;
  background-color: blue;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5rem;
  text-transform: capitalize;
  color: #fff;
  background: red;
}

#offers .deal .content button:hover {
  background-color: red;
  letter-spacing: .2rem;
}

#offers .deal .content button:hover {
  background: #333;
}

#offers .deal .content .price {
  color: #fff;
  font-size: 3rem;
}

#brand {
  padding: 10rem 0;
}

#brand img {
  height: 10rem;
  width: 15rem;
  margin: 4rem auto;
}

#newsletter {
  width: 100vw;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 225, 0.4)), to(rgba(0, 0, 225, 0.4))), url("../images/offerbg.jpg");
  background: linear-gradient(rgba(0, 0, 225, 0.4), rgba(0, 0, 225, 0.4)), url("../images/offerbg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
  text-align: center;
}

#newsletter h1 {
  font-size: 6rem;
  color: #fff;
}

#newsletter p {
  font-size: 3rem;
  color: #fff;
}

#newsletter input[type="email"] {
  outline: none;
  border: none;
  background: #333;
  color: #fff;
  height: 4rem;
  width: 34rem;
  border-radius: 5rem;
  font-size: 1.5rem;
  padding: 1.5rem;
}

#newsletter input[type="email"]::-webkit-input-placeholder {
  color: #ccc;
}

#newsletter input[type="email"]:-ms-input-placeholder {
  color: #ccc;
}

#newsletter input[type="email"]::-ms-input-placeholder {
  color: #ccc;
}

#newsletter input[type="email"]::placeholder {
  color: #ccc;
}

#newsletter input[type="submit"] {
  outline: none;
  border: none;
  height: 4rem;
  width: 16rem;
  background-color: blue;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5rem;
  text-transform: capitalize;
  color: #fff;
  margin-top: 2rem;
  background: red;
}

#newsletter input[type="submit"]:hover {
  background-color: red;
  letter-spacing: .2rem;
}

#newsletter input[type="submit"]:hover {
  background: #333;
}

#footer {
  padding: 2rem 0;
  background: #333;
  width: 100vw;
}

#footer .row {
  width: 100%;
  margin: 0;
}

#footer .row h3 {
  font-size: 2rem;
  color: #fff;
}

#footer .row p {
  color: #ccc;
  font-size: 1.5rem;
  margin: 1rem 0;
}

#footer .links, #footer .follow-links {
  margin: 1rem 0;
  padding: 0;
}

#footer .links a, #footer .follow-links a {
  color: #ccc;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#footer .links a:hover, #footer .follow-links a:hover {
  text-decoration: none;
}

#footer .credit {
  color: #fff;
  font-size: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  padding-top: 1.5rem;
  margin-top: 1rem;
}

#footer .credit span {
  color: red;
  font-size: 2.5rem;
}

@media (max-width: 769px) {
  html {
    font-size: 55%;
  }
  #home {
    padding-bottom: 4rem;
  }
  #home .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #home .slide .content {
    padding: 1rem;
    margin-left: 0px;
    text-align: center;
  }
  #home .slide .content p {
    width: 100%;
  }
  #home .slide .image img {
    width: 100vw;
  }
  #home .slide .image2 img, #home .slide .image2 .img2 {
    width: 350px;
    height: 400px;
  }
  #home .slide .image2 .img2 {
    width: 400px;
  }
  #products .title {
    text-align: center;
  }
  #products .title h2 {
    margin-left: 0;
  }
  #review {
    background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(red)), url("../images/slide1.jpg");
    background-image: linear-gradient(red, red), url("../images/slide1.jpg");
  }
  #brand {
    padding: 2rem 0;
  }
}

@media (max-width: 660px) {
  #review .heading {
    padding-top: 10rem;
  }
  #review .box-container .review-slider .box {
    position: relative;
    height: 40vh;
  }
  #review .box-container .review-slider .box .image {
    position: absolute;
    top: 0;
    margin: 0;
  }
  #review .box-container .review-slider .box .image img {
    border-radius: 5rem;
  }
  #review .box-container .review-slider .box .comment {
    width: 35rem;
    border-radius: 1rem;
    text-align: center;
  }
  #review .box-container .review-slider .box .comment i {
    padding: 0;
  }
  #review .box-container .review-slider .box .comment h3 {
    text-align: center;
  }
  #offers .deal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #offers .deal .image img {
    height: auto;
    width: 100%;
  }
  #offers .deal .content {
    text-align: center;
  }
  #newsletter h1 {
    font-size: 4rem;
  }
  #newsletter p {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */