@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --main-font: "Poppins", sans-serif;
  --main-color: #1f232a;
  --primary-color: #ce962e;
  --black: #222;
  --white: #fff;
  --bg: #f2f2f2;
  --light-black: #666;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
* {
  font-family: var(--main-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  text-transform: capitalize;
}
#demonote { display: none !important;}
img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {
    display: none !important;}
html {
  font-size: 62.5%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  max-width: 100%;
  overflow: hidden !important;
}
::-webkit-scrollbar {
  width: 1rem;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
/*  Multiple use */
section {
  padding: 3rem 9%;
}
.heading {
  text-align: center;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-size: 4rem;
  margin-top: 2rem;
}

.heading span {
  color: var(--primary-color);
  text-transform: uppercase;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  background-color: var(--main-color);
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 3rem;
  cursor: pointer;
  border: 2px solid var(--main-color);
}
.btn:hover {
  background-color: transparent;
  color: var(--main-color);
}
.scroll-up {
  position: fixed;
  right: 1rem;
  bottom: 3rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
}
.scroll-up i {
  font-size: 3.5rem;
  color: var(--primary-color);
}
.scroll-up i:hover {
  transform: scale(1.3);
}

/****  Multiple use    ****/
/* Header Start */
.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--box-shadow);
  border-bottom: 0.15rem solid var(--light-black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg);
  z-index: 1000;
  text-transform: capitalize;
}
.header .logo {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
}
.header .logo i {
  color: var(--primary-color);
  padding: 0.5rem;
}
.header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  color: var(--black);
}
.header .navbar a:hover,
.header .icons div:hover {
  color: var(--primary-color);
}
.header .icons div {
  cursor: pointer;
  font-size: 2.5rem;
  color: var(--black);
  margin-left: 1.25rem;
}
.header #languge-btn {
  display: inline-block;
  margin: 0;
  padding-left: 0.5rem;
}
.header #languge-btn a {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.header #languge-btn:hover a {
  color: var(--black);
}
#menu-btn {
  display: none;
}
.header .navbar .languge {
  display: none;
}
.header #cart-btn {
  position: relative;
}
.header .icons .counter {
  position: absolute;
  bottom: 0;
  right: -1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  background-color: var(--bg);
  padding: 0.1rem;
  border-radius: 0.2rem;
}

/* Header End */
/* Shopping Cart Start */
.cart-items-container::-webkit-scrollbar {
  width: 0.5rem;
}
.cart-items-container {
  position: fixed;
  top: 0;
  right: -105%;
  width: 37rem;
  background: var(--white);
  display: flex;
  flex-flow: column;
  gap: 1rem;
  justify-content: flex-start;
  height: 100vh;
  padding: 2rem;
  padding-top: 5rem;
  text-align: left;
  z-index: 1200;
  overflow-x: hidden;
  overflow-y: auto;
}
.cart-items-container.active {
  right: 0;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
}
.cart-items-container #close {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 4rem;
  cursor: pointer;
  color: var(--light-black);
  z-index: 1;
}
.cart-items-container #close:hover {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.cart-items-container .cart-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.cart-items-container .cart-item {
  position: relative;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cart-items-container .cart-item .fa-trash-can {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-color);
}
.cart-items-container .cart-item:hover .fa-trash-can {
  transform: scale(1.2);
  color: red;
}
.cart-items-container .cart-item img {
  height: 7rem;
  width: 8.5rem;
  border-radius: 0.75rem;
}
.cart-items-container .cart-item .content h3 {
  font-size: 1.8rem;
  color: var(--black);
  padding-bottom: 0.5rem;
  margin-right: 4rem;
}
.cart-items-container .cart-item .content .price {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: left;
}
.cart-items-container .cart-item .content .cart-quantity {
  border: 0.1rem solid var(--black);
  width: 4.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.5rem;
  cursor: pointer;
}
.cart-items-container .cart-item .content .cart-quantity:hover {
  border-color: red;
  border-radius: 0.5rem;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}
.total {
  display: flex;
  justify-content: flex-start;
  border-top: 0.1rem solid var(--black);
  margin-top: 2rem;
}
.total .total-title,
.total .total-price {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.total .total-price {
  margin-left: 0.5rem;
  font-weight: 600;
}
.btn-buy {
  display: flex;
  margin: 2rem auto 0 auto;
  padding: 1rem 2rem;
  border: 0.2rem solid var(--black);
  background-color: var(--black);
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-buy:hover {
  background-color: transparent;
  color: var(--black);
}

/* Shopping Cart End */

/* Account Form  Start  */
.account-form::-webkit-scrollbar {
  width: 0.5rem;
}
.account-form {
  position: fixed;
  top: 0;
  right: -105%;
  width: 35rem;
  background-color: var(--white);
  padding: 2rem;
  padding-top: 10rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 1.25rem;
  height: 100%;
  text-align: center;
  z-index: 1200;
  overflow-y: auto;
}
.account-form.active {
  right: 0;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
}
.account-form #close-form {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 4rem;
  cursor: pointer;
  color: var(--light-black);
  z-index: 9;
}
.account-form #close-form:hover {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.account-form .buttons .btn {
  margin: 0.5rem;
}
.account-form .buttons .btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}
.account-form .buttons .btn.active:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.account-form form {
  border: 0.1rem solid var(--primary-color);
  padding: 2rem;
  display: none;
}
.account-form form.active {
  display: block;
}
.account-form form h3 {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: var(--light-black);
}
.account-form form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 0.1rem solid var(--primary-color);
  font-size: 1.6rem;
  margin: 1rem 0;
}
.account-form form:hover .box {
  font-weight: 600;
}
.account-form form .flex {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.account-form form .flex label {
  font-size: 1.5rem;
  color: var(--light-black);
  cursor: pointer;
}
.account-form form .flex:hover label {
  color: var(--black);
}
.account-form form .flex a {
  font-size: 1.5rem;
  color: var(--light-black);
  margin-left: auto;
}
.account-form form .flex a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.account-form form .btn {
  width: 100%;
}

/*** Account Form  End  ***/

/* Home Start */

.home {
  padding: 0;
}

.home .slide {
  min-height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .slide .content {
  width: 70rem;
  text-align: center;
  z-index: 9;
}
.home .slide .content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black);
  opacity: 0.8;
  z-index: -1;
}

.home .slide .content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  padding: 2rem 0;
}

.home .slide .content span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.home .swiper-slide-active .content {
  display: inline-block;
}

/*** Home  End  ***/

/* About us Start */
.about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about .row .image {
  flex: 1 1 40rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 50rem;
  padding: 6rem;
}

.about .row .content span {
  font-size: 2rem;
  color: var(--light-black);
}

.about .row .content h3 {
  font-size: 2.5rem;
  color: var(--main-color);
  padding-top: 1rem;
}
.about .row .content .share {
  margin: 1.5rem 0;
}
.about .row .content .share a {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  text-align: center;
  font-size: 4rem;
  color: var(--black);
  background-color: var(--white);
  margin-right: 1rem;
}
.about .row .content .share a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.about .row .content p {
  font-size: 1.4rem;
  color: var(--light-black);
  padding: 1rem 0;
  line-height: 2;
  text-align: justify;
}

/*** About us End ***/

/* Services Start  */
.services {
  background-color: var(--bg);
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.services .box-container .box {
  padding: 2rem;
  text-align: center;
  border: 0.1rem solid var(--main-color);
  box-shadow: var(--box-shadow);
}
.services .box-container .box img {
  height: 23rem;
  margin-bottom: 1rem;
}
.services .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--main-color);
}
.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-black);
  text-align: justify;
  line-height: 2;
  padding: 1rem 0;
}
/*** Services End  ***/

/* Product Start */

.product .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2.5rem;
}

.product .box-container .box {
  padding: 2.5rem;
  background: var(--bg);
  border-radius: 0.5rem;
  border: 0.1rem solid var(--main-color);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.product .box-container .box .fa-heart,
.product .box-container .box .fa-eye {
  position: absolute;
  top: 1.5rem;
  background: var(--white);
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: var(--black);
  z-index: 1;
}

.product .box-container .box .fa-heart:hover,
.product .box-container .box .fa-eye:hover {
  background: var(--main-color);
  color: var(--white);
}

.product .box-container .box .fa-heart {
  right: -15rem;
}

.product .box-container .box .fa-eye {
  left: -15rem;
}

.product .box-container .box:hover .fa-heart {
  right: 1.5rem;
}

.product .box-container .box:hover .fa-eye {
  left: 1.5rem;
}

.product .box-container .box .img {
  height: 19rem;
  max-width: 25rem;
  margin: 2rem auto 3rem;
  padding: 0.2rem;
  z-index: 0;
}

.product .box-container .box .img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
}

.product .box-container .box:hover img {
  transform: scale(1.1);
}

.product .box-container .box h3 {
  color: var(--black);
  font-size: 2.5rem;
  z-index: 1;
}

.product .box-container .box .stars {
  padding: 1rem 0;
}

.product .box-container .box .stars i {
  font-size: 1.7rem;
  color: var(--primary-color);
}

.product .box-container .box .price {
  color: var(--main-color);
  font-weight: bolder;
  margin-right: 1rem;
  font-size: 2.5rem;
}

.product .box-container .box .price span {
  text-decoration: line-through;
  font-weight: lighter;
  font-size: 1.5rem;
  padding-left: 0.5rem;
}

/*** Product End  ***/

/* Team Start */

.team {
  background: var(--bg);
}

.team .slide {
  text-align: center;
  border: 0.1rem solid var(--main-color);
}

.team .slide .image {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
}

.team .slide .image img {
  background: var(--bg);
  width: 100%;
  min-height: 25rem;
  object-fit: fill;
  text-align: center;
}

.team .slide:hover .image img {
  transform: scale(1.1);
}

.team .slide .image .share {
  position: absolute;
  right: -10rem;
  top: 0;
  background: var(--main-color);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.team .slide .image:hover .share {
  right: 0;
}

.team .slide .image .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 4rem;
  color: var(--white);
  border: 0.1rem solid var(--white);
  text-align: center;
}

.team .slide .image .share a:hover {
  color: var(--main-color);
  background: var(--white);
  transform: scale(1.1);
  border-radius: 0.3rem;
}

.team .slide .content {
  display: flex;
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.team .slide .content h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: var(--light-black);
}

.team .slide .content span {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-black);
}

/*** Team End ***/

/* Blog Start*/

.blog .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.blog .box-container .box {
  border: 0.1rem solid var(--main-color);
  box-shadow: var(--box-shadow);
}

.blog .box-container .box .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
}

.blog .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog .box-container .box:hover .image img {
  transform: scale(1.1);
}

.blog .box-container .box .content {
  padding: 1.5rem 2rem;
}

.blog .box-container .box .content h3 {
  font-size: 2rem;
  color: var(--main-color);
}

.blog .box-container .box .content p {
  font-size: 1.4rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
}

.blog .box-container .box .content .icons {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .box-container .box .content .icons a {
  font-size: 1.4rem;
  color: var(--light-black);
}

.blog .box-container .box .content .icons a:hover {
  color: var(--main-color);
}

.blog .box-container .box .content .icons a i {
  padding-right: 0.5rem;
  color: var(--main-color);
}

/*** Blog End  ***/
/* Contact Start */
.contact {
  background-color: var(--bg);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .image {
  flex: 1 1 40rem;
}
.contact .row .image img {
  width: 100%;
}
.contact .row form {
  flex: 1 1 40rem;
  border: 0.1rem solid var(--primary-color);
  padding: 2rem;
  height: max-content;
}
.contact .row form h3 {
  font-size: 3rem;
  text-align: center;
  padding-bottom: 1rem;
  color: var(--main-color);
}
.contact .row form span {
  display: block;
  padding-bottom: 1rem;
  padding-left: 1rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: capitalize;
}
.contact .row form .box {
  width: 100%;
  color: var(--light-black);
  background-color: var(--bg);
  border: 0.1rem solid var(--primary-color);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.contact .row form .box:focus {
  color: var(--black);
  font-weight: 500;
  font-size: 1.8rem;
}
.contact .row form textarea {
  /* height: 15rem; */
  resize: none;
}
/*** Contact End  ***/
/* Footer Start */
.footer {
  background-color: var(--main-color);
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  padding: 1rem 0;
}
/* Footer End */

/* Responsive Start */
@media (max-width: 1060px) {
  .header .navbar a {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  .header .navbar a {
    font-size: 1.5rem;
  }
  section {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .fa-xmark {
    transform: rotate(180deg);
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 0.1rem solid var(--main-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .header .navbar a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    padding: 0.2rem 0;
    transform: scale(1.2);
  }
  /* languge */
  .header .navbar .languge {
    display: block;
    color: var(--primary-color);
    transform: scale(1.2);
  }
  .header .navbar .languge:hover {
    color: var(--white);
    transform: scale(1.4);
  }

  .header #languge-btn {
    display: none;
  }
  .home .slide .content {
    width: 40rem;
  }
  .home .slide .content h3 {
    font-size: 4rem;
  }
  .home .slide .content span {
    font-size: 2.2rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
  .home .slide .content span {
    font-size: 2rem;
  }
  /* about contact */

  .about .row .content .share {
    margin: 0.5rem 0;
  }
  .about .row .content .share a {
    height: 0;
    width: 2.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 275px) {
  html {
    font-size: 27%;
  }
  .cart-items-container,
  .account-form {
    right: -250%;
  }
  .btn {
    font-size: 1.3rem;
    margin-left: 1rem;
  }
  .header .icons div {
    font-size: 2rem;
    margin-left: 0.5rem;
  }
  .home .slide .content h3,
  .heading,
  .home .slide .content h3 {
    font-size: 2.2rem;
  }
  .services .box-container,
  .product .box-container,
  .blog .box-container {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  .contact .row form .box {
    width: 90%;
    margin-left: 1rem;
  }
}
/* Responsive End */

/* Loaging Pade */

.ispinner.ispinner-large {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  z-index: 99999;
}
html {
  overflow: hidden;
}
.ispinner.ispinner-large .ispinner-blade {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 2.5px;
  -webkit-animation: iSpinnerBlade 1s linear infinite;
  animation: iSpinnerBlade 1s linear infinite;
  will-change: opacity;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(-11.5px);
  transform: rotate(45deg) translateY(-11.5px);
  -webkit-animation-delay: -1.625s;
  animation-delay: -1.625s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(2) {
  -webkit-transform: rotate(90deg) translateY(-11.5px);
  transform: rotate(90deg) translateY(-11.5px);
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(3) {
  -webkit-transform: rotate(135deg) translateY(-11.5px);
  transform: rotate(135deg) translateY(-11.5px);
  -webkit-animation-delay: -1.375s;
  animation-delay: -1.375s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(4) {
  -webkit-transform: rotate(180deg) translateY(-11.5px);
  transform: rotate(180deg) translateY(-11.5px);
  -webkit-animation-delay: -1.25s;
  animation-delay: -1.25s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(5) {
  -webkit-transform: rotate(225deg) translateY(-11.5px);
  transform: rotate(225deg) translateY(-11.5px);
  -webkit-animation-delay: -1.125s;
  animation-delay: -1.125s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(6) {
  -webkit-transform: rotate(270deg) translateY(-11.5px);
  transform: rotate(270deg) translateY(-11.5px);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(7) {
  -webkit-transform: rotate(315deg) translateY(-11.5px);
  transform: rotate(315deg) translateY(-11.5px);
  -webkit-animation-delay: -0.875s;
  animation-delay: -0.875s;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(8) {
  -webkit-transform: rotate(360deg) translateY(-11.5px);
  transform: rotate(360deg) translateY(-11.5px);
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
@-webkit-keyframes iSpinnerBlade {
  0% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes iSpinnerBlade {
  0% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
/* Loaging Pade */
