@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
   /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(17px);
    --webkit-backdrop-filter: blur(17px);*/
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
	background: rgba(251, 251, 252, 0.856);
  z-index: 1;
}
.sidebar:hover {
    width: 260px;
}
.sidebar .logo {
    color: #0833a1;
    display: flex;
    align-items: center;
    padding: 25px 10px 15px;
}
.logo img {
    width: 63px;
    border-radius: 80%;
	background: #fff;
	border: 1px blue solid;
}
.logo h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-left: 15px;
    display: none;
}
.sidebar:hover .logo h2 {
    display: block;
}
.sidebar .links {
    list-style: none;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    height: calc(100% - 140px);
}
.sidebar .links::-webkit-scrollbar {
    display: none;
}
.links li {
    display: flex;
    border-radius: 4px;
    align-items: center;
	color: rgb(8, 10, 12);
}
.links li:hover {
    cursor: pointer;
    background: #1c069c;
	color: white;
}
.links li a:hover {
	cursor: pointer;
    background: #1c069c;
	color: white;
}
.links h4 {
    color: #0833a1;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
}
.sidebar:hover .links h4 {
    display: block;
}
.links hr {
    margin: 10px 8px;
    border: 1px solid #cac5c5;
}
.sidebar:hover .links hr {
    border-color: transparent;
}
.links li span {
    padding: 12px 10px;
}
.links li a {
    padding: 10px;
    color: #000;
    display: none;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}
.sidebar:hover .links li a {
    display: block;
}
.links .logout-link {
    margin-top: 20px;
}

.top{
text-align: right;
margin: 20px;
}
.top button{
	color: white;
	background: #1c069c;
	padding: 10px 30px 10px 30px;
	border-radius: 2px;
	border: none;
}
.top button:hover{
	background:#f0a032ef;
}


.cat6{
    text-align: center;
    margin-top: 50px;
    margin-left: 50px;
}
.cat6 h1{
    padding-top:7px;
    color: #2a0c8d;
    font-size: 50px;
    font-weight: 200;
    text-decoration: underline;
}
main{
    display: flex;
    flex-wrap: wrap;
    margin-left: 50px;
    justify-content: center;
    margin-top: 60px;
}
.product{
    background-color: white;
    margin: 20px;
    padding: 20px;
    width: 300px;
    height: 300px;
   /* border: 3px rgb(5, 24, 87) double;*/
    border-radius:10px;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}
.product h2{
    color: #333;
    font-size: 1.5em;
    margin-top: 20px;
    text-align: center;
}
.product img{
    display: block;
    margin: 0 auto;
    max-width:180px;
    height: 140px;
    border-radius: 20%;
}
.product:hover img{
  cursor: pointer;
  transform: scale(1.1);
}

.brand h1{
    font-size: 40px;
    color: #0a30ad;
    margin-top: 200px;
	  margin-left: 60px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: .3px;
    text-decoration: underline;
  }

.wrapper {
    max-width: 100%;
    position: relative;
    display: flex;  
    padding: 0 120px;
    align-items: center;
    justify-content: center;
    /*border: 1px solid black;
    background: #202e52;*/
    margin-top: 0px;
    margin-left: 90px;
}

.wrapper i {
    top: 48%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #ffffff1f;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: 60px;
  }
  .wrapper i:last-child{
    right: 60px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 30px 0 30px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 300px;
    list-style: none;
    background: #ffffff1b;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
  }
  .carousel .card .img {
    height: 148px;
    width: 148px;
    border-radius: 50%;
  }
  .card{
    border: none;
  }
  .card .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
  }

  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  }



.container{
    margin-left: 80px;
   }

.container,
.button,
.linking,
.linked,.linked_active1{
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  padding: 20px;
  border-radius: 8px;
  column-gap: 12px;
  background: #fff;
  margin-top: 150px;
}
.button {
  border: none;
}
.button i {
  pointer-events: none;
}
.button:disabled {
  color: #b3b3b3;
  pointer-events: none;
}
.button,
.linked,.linked_active1{
  height: 45px;
  width: 45px;
  font-size: 20px;
  color: #666666;
  background-color: #f2f2f2;
  border-radius: 6px;
  cursor: pointer;
}
.linking {
  column-gap: 12px;
}
.linked,.linked_active1{
  font-weight: 500;
  text-decoration: none;
}
.button:hover,
.linked:hover {
  color: #fff;
  background: #4070f4;
}
.linked_active1{
  color: #fff;
  background: #4070f4;
}
/*.linked.active {
  color: #fff;
  background: #4070f4;
}*/

.copyrights{
    background: rgba(238, 238, 240, 0.829);
    height: 50px;
    text-align: center;
    margin-top: 50px;
  }
  .copyrights p{
    font-size: 13px;
    color: #242222;
    padding-top: 20px;
    margin-left: 70px;
  }