 @import url('https://fonts.cdnfonts.com/css/berlin-sans-fb-demi');
*{
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
    
}
#content{
  display: none;
}
.hide{
  display: none;
}
.title1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-image: linear-gradient(90deg,white, #aed2e0,#f6f6f8, #aed2e0, #f6f6f8, #aed2e0,white); */
  background-color: white;
  /* background-size: 400% 400%; */
  animation: 12s myGradient infinite;
}
@keyframes myGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.main-title{
  font-family: 'Berlin Sans FB Demi', sans-serif;
  color: rgb(19, 125, 170);
  padding: 10px;
  padding-bottom: 0;
}

.main-title h1,p{
  margin: 0;
  padding: 0;
}
.uppertext{
  padding: 5px 20px;
  margin: 5px 0;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
  background-size: 400% 400%;
  background-image: linear-gradient(-45deg, #679c2b, #af4f79, #2e58ef, #ab4d79, #a9994b);
  animation: 12s myGradient infinite;
}
.uppertext p {
  font-size: 1.2em;
  padding: 0px;
   margin: 0;
  color: white;
}
.img img{
  width: 150px;
}
.img{
  padding: 10px;
}


.scrolling-text {
  white-space: nowrap;
  /* Prevent text from wrapping */
  background-color: rgb(19, 125, 170);
  color: white;
  height: 34px;
  overflow: hidden;
}

.scrolling-text p {
  animation: scrollText 25s linear infinite;
  /* Animate scrolling */
  font-size: 1.2em;
  padding: 0;
  padding-top: 5px;
  margin: 0;
}


/* Keyframes for scrolling effect */
@keyframes scrollText {
  0% {
    transform: translateX(100%);
    /* Start from right */
  }

  100% {
    transform: translateX(-100%);
    /* End at left */
  }
}
@keyframes myGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#carouselExampleInterval img{
  width: 100%;
  max-height: 90vh;
  /* margin: auto; */
}
.intro{
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;   
  padding: 5px;
  /* margin: 20px auto; */
  /* width: 100vw;  */
  overflow: hidden;
  
}

.subintro{
  
    max-width: 600px;
    min-width: 300px;   
}
.subintro li{
  font-family: 'Lato', sans-serif;
  list-style: none;
  font-weight: bold;
  background-color: rgb(179, 240, 239);
  border: 1px solid rgb(35, 149, 224);
  box-shadow: 0 4px 10px rgba(12, 34, 105, 0.8);
  padding: 15px;
  margin: 10px;
  text-align: center;
  align-content: center;
}

.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.card{
    margin:15px 5px;
    /* border: 2px solid black; */
    
}
.card-body{
  background-color: rgb(116, 228, 226);
  border: 2px solid rgb(35, 149, 224);
  
}
.bestseller .card-body{
  background-color: #f0cc80;
  
}
.bestseller a{
  color: #000;
  text-decoration: none;
  
}
.card img{
    width: 200px;
    height: 150px;
    margin: auto;
    padding: 5px;

}


  
  .client img {
    width: 150px;
    height: 150px;
    animation: scroll 10s linear infinite;
margin: 10px 0;
  }
  
  .client-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
  }
  
  .slider {
    margin: 0 0 2vw  0;
    background-color:white;
    padding: 1em 2em;
  }
  
  @keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translatex(-1000%)}
  }
   /* .brands{
    
   } */
   .brand{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px; 
    padding: 10px;
   }
   .brand img{
    width: 150px;
    height: 70px;
    /* height: auto; */
    padding: 15px;

   }
   .footer{
    background-color: #0b395f;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
   }
   .subfooter{
    margin: 20px;
    /* padding: 5px; */
    max-width: 400px;
   }
   .subfooter a{
    color: white;
    text-decoration: none;
    
   }

   .fade-in.animate {
    opacity: 0; /* Start hidden for each paragraph */
    animation: slideIn 2s forwards; /* Slide-in effect */
  }

  @keyframes slideIn {
    from {
        transform: translateY(20px); /* Start slightly below */
        opacity: 0; /* Start hidden */
    }
    to {
        transform: translateY(0); /* Move to original position */
        opacity: 1; /* Fade in */
    }
  }

  
  .bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, rgb(140, 159, 245) 50%, rgb(130, 223, 238) 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
  }
  
  .bg3 {
    animation-duration:5s;
  }
  
  
  
  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }

  @media only screen and (max-width: 500px){
    .uppertext{
      display: none;
    }
    .img img{
      display: none;
    }
    

   }


   @media only screen and (max-width: 1100px){
    .uppertext{
      display: none;
    }
    .img img{
      width: 100px;
    }
    

   }



   


.area{
    background: #4e54c8;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    /* height:100vh; */
    
   
}

.circles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.heading {
  font-size: 4rem;
  font-weight: bold;
  /* text-transform: uppercase; */
  background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* animation: colorShift 5s linear infinite, fadeIn 2s ease-in-out; */
}
