@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700;900&display=swap');
*{
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
body{
  max-width: 100vw;
  overflow-x: hidden!important;
}
body::-webkit-scrollbar {
  width: 5px;
  box-shadow: 1px 0px 5px #000;
}
body::-webkit-scrollbar-track {
  box-shadow: 0 20 6px rgb(0, 0, 0);
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.btn-k{
  font-size: 12px;
  text-decoration: none;
  color: #000;
  margin: 1px;
  padding: 2px 5px;
  border-radius: 6px;
  font-weight: light;
}
.btn-k:hover{
  color: #fff;
}
.btn-k:nth-child(odd)
{
  background-color: #0094e991;
}
.btn-k:nth-child(even)
{
  background-color: #8401ff91;
}
.btn-k:nth-child(3n)
{
  background-color: #ff550071;
}
.btn-silicon{
  border: none;
  outline: none;
  background:linear-gradient(54deg, #8dd0fa 1%, #f880e4 100%);
  padding: .4rem 1.5rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: all .5s;
}
.btn-silicon:hover{
  color: #ffff;
  background:linear-gradient(150deg, #f880e4 1%, #8dd0fa 100%);
}
.btn-silicon-outline {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(90deg, #8dd0fa 1%, #f880e4 100%);
  border-radius: 12px;
  padding: .4rem 1.5rem;
  border: 1px solid transparent;
  transition: all .3s ease-out;
  text-decoration: none;
  color: #a1248c
}
.btn-silicon-outline:hover{
  background:linear-gradient(54deg, #f880e4 1%, #8dd0fa 100%);
  border: 1px solid #fff;
  color: #fff;
}

.logo{
  /* font-weight: bold; */
  width: 5rem;
}
header{
  background: linear-gradient(54deg, #b7e3ffbd 1%, rgba(253, 169, 239, 0.628) 100%),url('img/bg-2.jpg')no-repeat;
  background-size: cover;
  /* backdrop-filter: blur(5px); */
  padding-top: 20px;
  max-height: 100vh;
  overflow: hidden;
}
header .title{
  font-size: 4.5rem;
  color: #333;
  font-weight: 700;
}
header .sm-title{
  color: #5a044b;
  font-weight: bolder;
}
.bounce{
  opacity: 1;
  animation: animate 1s ease-in;
}
@keyframes animate {
  0%{
    transform: scale(.5);
    opacity: 0;
  }
  50%{
    transform: scale(1.01);
    opacity: 1;
  }
  100%{
    transform: scale(1);
    opacity: 1;
  }
}

/* features */
/* circle */
.circle{
  width: 100%;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #000; */
}
.circle .box{
  position: absolute;
  /* background-color: #0093e9; */
  width: 100px;
  height: 100px;
  transform-origin: 300px;
  transform: translate(-250px)rotate(calc(360deg/9 * var(--i)));
}
.circle .box img{
  transform: scale(1)rotate(calc(-360deg/8*var(--i)));
  animation: boxToggle 5s infinite;
  animation-delay: .5s;
}
@keyframes boxToggle {
  0%{
    transform: translateY(0px)rotate(calc(-360deg/9*var(--i)));
    filter: hue-rotate(0deg)
  }
  50%{
    transform: translate(calc(20px))rotate(calc(-360deg/8*var(--i)));
    filter: hue-rotate(180deg)
  }
  100%{
    transform: translateX(0)rotate(calc(-360deg/9*var(--i)));
    filter: hue-rotate(0deg)
  }
}
/* products */
.p-card{
  box-shadow:0px 1px 100px 49px #e3e1e17a ;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  margin: 10px;
  height: 18rem;
}
.p-card img{
  margin: auto;
  width: 80%;
  max-height: 60%;
  overflow: hidden;
}
.wave{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg,#0094e942 ,#a1248c4c),url("img/bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* --------------blog---------------- */
.card-blog{
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.card_img{
  width: 100%;
  height: 30%;
  object-fit: contain;
}
.author>img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author h6,p{
  margin: 0;
  padding: 0;
}
.author h6{
  font-weight: bold;
}
.author p{
  font-size: 12px;
}
.view img{
  width: 20px;
  height: 20px;
}
.view p{
  font-weight: bold;
}
/* footer */
.tryBox {
  color: #fff;
  padding: 20px;
  background-color: #0093e9;
  background-image: linear-gradient(158deg, #0093e9 0%, #80d0c7 100%);
  transform: translateY(-50px);
  border-radius: 12px;
}
.footer-item p{
    letter-spacing: 2px;
}
.footer-item a{
    text-decoration: none;
    color: #ccc;
    display: block;
}