@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* overflow: hidden; */
}
.loading-pop-up {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 3000;
  object-fit: contain;
}
.loading-pop-up .floating-box {
  position: absolute;
  right: 10%;
  top: 50%;
  border-radius: 8px;
  padding: 15px 25px;
  background-color: rgba(255,255,240,0.6);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: #fff;
  text-shadow: 2px 1px 1px #333;
}
.loading-pop-up .floating-box h1 {
  text-decoration: underline;
}
.loading-pop-up .floating-box h2 {
  margin: 20px auto;
}
.loading-pop-up .floating-box h3 {
  margin: 10px auto;
}
.loading-pop-up a {
  color: #fff;
  text-decoration: none;
}
.loading-pop-up img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.timer-area {
  position: absolute;
  left: 50%;
  bottom: 5%;

}






.container {
  /* max-width: 1050px; */
  width: 100%;
  margin: auto;
}

.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 80px;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  height: 100vh;
  width: 240px;
  transform: translateX(-110%);
  display: flex;
  flex-direction: column;
  margin-left: 0px;
  padding-left: 0px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-color: antiquewhite;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(-10%);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .main{
  display: none;
}


.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  overflow: auto;
}
.category {
  display: block;
  margin: 20px 0 10px 0;
  padding: 5px 10px;
  color: #ffffff;
  background: rgb(2,44,122);
  background: linear-gradient(90deg, rgba(2,44,122,1) 13%, rgba(6,103,255,0) 90%);

}

section {
  margin-top: 0px;
}
section:first-child() {
  margin-top: 0;
}
section .cards {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
section .cards .card {
  padding: 10px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
/* .cards .card .item-title {
  
} */
.cards .card .item-title h2 {
  color: #333;
  text-align: left;
  margin: 5px 0;
}

.card .item-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}
.card .item-image img {
  object-fit: cover;
  max-width: 100%;
}
.card .item-price {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .main {
    padding: 50px;
  }
}
@media (min-width: 900px) {
    .cards { grid-template-columns: repeat(3, 1fr); }
    .main {
      padding: 50px;
    }
}
@media (min-width: 1200px) {
    .cards { grid-template-columns: repeat(4, 1fr); }
    .main {
      padding: 50px;
    }
}
@media (min-width: 1600px) {
    .cards { grid-template-columns: repeat(5, 1fr); }
    .main {
      padding: 50px;
    }
}





@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: pr;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}
.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}



#scroll {
  position:fixed;
  right:10px;
  bottom:10px;
  cursor:pointer;
  width:50px;
  height:50px;
  background-color:#3498db;
  text-indent:-9999px;
  display:none;
  -webkit-border-radius:60px;
  -moz-border-radius:60px;
  border-radius:60px
}
#scroll span {
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-8px;
  margin-top:-12px;
  height:0;
  width:0;
  border:8px solid transparent;
  border-bottom-color:#ffffff;
}
#scroll:hover {
  background-color:#e74c3c;
  opacity:1;filter:"alpha(opacity=100)";
  -ms-filter:"alpha(opacity=100)";
}