.my-m {
  margin: 4rem 0 !important;
}

.more-height {
  min-height: 80vh;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 50em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "lato", sans-serif;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: #333333;
}

.container-grid {
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 10rem 1fr min-content;
      grid-template-rows: 10rem 1fr -webkit-min-content;
      grid-template-rows: 10rem 1fr min-content;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.flex {
  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;
}

.heading-1 {
  font-size: 8rem;
  font-weight: 900;
  text-transform: capitalize;
}

.heading-1__red {
  color: #ad1414;
}

.heading-2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: capitalize;
  color: #333333;
  letter-spacing: 1px;
}

.heading-2.light {
  color: #f8f8f8;
}

.heading-3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  text-transform: capitalize;
}

.heading-4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}

.center {
  text-align: center;
}

.underline {
  height: 0.2rem;
  background-color: #f97c25;
  width: 11rem;
  margin: 0.5rem auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overlay .spinner {
  width: 7rem;
  height: 7rem;
  border: 4px solid #f8f8f8;
  border-top: 4px solid #f7a12e;
  border-right: 1px solid transparent;
  border-radius: 50%;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.primary-btn {
  display: block;
  width: 100%;
  max-width: 30rem;
  padding: 1rem 3rem;
  border: 1px solid #aaaaaa;
  outline: none;
  border-radius: 5px;
  background-color: #f7a12e;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #f8f8f8;
  cursor: pointer;
}

.primary-btn-fw {
  max-width: 100%;
}

.primary-btn:hover {
  background-color: #fa6720;
}

.navbar {
  background-color: #f8f8f8;
  position: relative;
  padding: 2rem 0;
}

.brand {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f97c25;
  margin-right: auto;
}

.nav {
  list-style: none;
  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;
}

@media only screen and (max-width: 50em) {
  .nav {
    background-color: rgba(16, 16, 16, 0.9);
    height: 100%;
    width: 100%;
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    right: 0;
    top: 0;
    padding: 8rem 0;
    z-index: 100;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }
}

.nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav__item:not(:last-child) {
  margin-right: 4rem;
}

@media only screen and (max-width: 50em) {
  .nav__item:not(:last-child) {
    margin-right: auto;
  }
}

@media only screen and (max-width: 50em) {
  .nav__item {
    margin: 1.5rem auto;
  }
}

.nav__link {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #707070;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

@media only screen and (max-width: 50em) {
  .nav__link {
    color: #fff;
    font-size: 2.2rem;
  }
}

.nav__link:hover {
  color: #fa6720;
}

.cart-btn {
  border: none;
  font-size: 2.2rem;
  color: #5bae32;
  padding: 0 4rem;
  background-color: unset;
  position: relative;
}

.cart-btn:focus {
  outline: none;
}

.cart-btn a {
  color: #5bae32;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.cart-btn a:hover {
  color: #f97c25;
}

.cart-btn__navigation {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: #f7a12e;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.8rem;
  position: absolute;
  top: -1rem;
  right: 2.5rem;
}

.menu-toggle {
  display: none;
  padding: 1rem;
  background-color: unset;
  border: none;
  outline: none;
  z-index: 200;
  cursor: pointer;
}

@media only screen and (max-width: 50em) {
  .menu-toggle {
    display: block;
  }
}

.menu-toggle span {
  position: relative;
  color: #f8f8f8;
  color: #f7a12e;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.menu-toggle span::after,
.menu-toggle span::before {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span,
.menu-toggle span::after,
.menu-toggle span::before {
  display: inline-block;
  width: 3.5rem;
  height: 0.4rem;
  background-color: #f8f8f8;
  background-color: currentColor;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.menu-toggle span::after {
  top: -0.9rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu-toggle span::before {
  top: 0.9rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu-toggle .close {
  background-color: transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.menu-toggle .close::after {
  top: 0;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.menu-toggle .close::before {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.menu-toggle:hover .close::after {
  top: 0;
}

.menu-toggle:hover .close::before {
  top: 0;
}

.btn {
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  opacity: 1;
}

/*  */
.sec-slider {
  background-color: #fdfdfd;
  margin: 2rem 0;
}

.sec-slider h2 {
  font-size: 1.6rem;
  letter-spacing: 0.4rem;
  text-align: center;
  color: #333;
  padding: 2rem;
}

.slider {
  position: relative;
  width: 100%;
  height: 40vw;
  margin: auto;
  overflow: hidden;
}

.slider .box-img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.slider .img {
  width: 100%;
  height: 100%;
}

.ctrl-box {
  width: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}

.ctrl-box .btn {
  font-size: 2rem;
  color: #f97c25;
}

.ctrl-bults {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ctrl-bults span {
  font-size: 0.8rem;
  color: #fff;
  cursor: pointer;
  margin-left: 0.5rem;
}

.ctrl-bults span .active-dot {
  color: #f97c25;
}

.footer {
  background-color: #f8f8f8;
  grid-area: "footer";
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #707070;
  padding: 2rem;
  cursor: default;
}

.footer span {
  letter-spacing: 1px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.footer span:hover {
  color: #fa6720;
}

.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem 4rem;
  margin: 4rem 0;
}

.products .product {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
  border-bottom: 1.5px solid #f97c25;
  padding: 1rem;
}

.products .product__img-link {
  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: 100%;
  margin: auto;
}

.products .product__img {
  width: 100%;
  height: 100%;
  max-height: 26rem;
  display: block;
}

.products .product__name {
  margin: 1.5rem 0;
}

.products .product__price {
  font-size: 2rem;
  font-weight: 300;
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #333333;
}

.product__img-box {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 30rem;
          flex: 2 1 30rem;
  -ms-flex: 2 1 40%;
      flex: 2 1 40%;
  min-width: 30rem;
  max-width: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2rem;
}

.product__img {
  width: 100%;
}

.product__details {
  padding: 6rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 2 50rem;
          flex: 1 2 50rem;
  -ms-flex: 1 2 55%;
      flex: 1 2 55%;
}

.product__category {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #707070;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.product__price {
  font-size: 2.5rem;
  margin: 1rem 0 3rem;
}

.product__description {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #707070;
  margin-bottom: 4rem;
}

.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 2rem;
}

.cart__text--empty {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin: 2rem 0;
}

.cart__text--empty a {
  color: #fa6720;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.cart__text--empty a:hover {
  color: #f7a12e;
}

.cart__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 65%;
          flex: 1 1 65%;
  margin-bottom: 4rem;
}

.cart__item {
  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;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.cart__item:not(:first-child) {
  min-height: 15rem;
}

.cart__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__header__price {
  font-size: 1.6rem;
}

.cart__img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
}

.cart__img {
  width: 100%;
}

.cart__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 80%;
          flex: 1 1 80%;
  margin-left: 3rem;
  font-size: 1.6rem;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}

.cart__link {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 65%;
          flex: 1 1 65%;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 3rem;
  margin-right: auto;
}

.cart__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  text-align: right;
}

.cart__qty {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart__qty__select {
  margin-left: 0.5rem;
  width: 6rem;
  height: 2.5rem;
  font-size: inherit;
  padding-left: 1rem;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}

.cart__qty__select:focus {
  outline: none;
  border: 1px solid #f7a12e;
}

.cart__delete-btn {
  padding: 0 1rem;
  background: unset;
  outline: none;
  border: 1px solid #aaaaaa;
  font-size: 1.4rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.cart__delete-btn:hover {
  background-color: #fa6720;
  color: #f8f8f8;
}

.cart__checkout {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35%;
          flex: 1 1 35%;
  min-width: 28rem;
  padding: 0 3rem;
}

.cart__checkout h4 {
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.card {
  max-width: 40rem;
  width: 100%;
  margin: 8rem 1rem;
  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;
  padding: 2rem;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
}

.card__header {
  font-size: 2.8rem;
  margin: 2rem 0;
}

.card__text {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
}

.card__link {
  color: #1613db;
}

.form__group {
  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;
  margin: 2rem 0;
}

.form__label {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 0.3rem;
}

.form__input {
  width: 100%;
  padding: 1.2rem 1rem;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 1.6rem;
}

.form__input:focus {
  border: 1px solid transparent;
  outline: 2px solid #333333;
}

.error404 {
  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: 50vh;
}

.error404__text {
  font-size: 3rem;
  color: #707070;
  letter-spacing: 3px;
}

.error404__link {
  font-size: 2rem;
  text-transform: capitalize;
  color: #f97c25;
  margin-top: 3rem;
}
/*# sourceMappingURL=main.css.map */