*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito';
   
}
body{
    overflow-x: hidden;
    
}

.fa-solid{
    color: #bb8f2c;
}
.header{
    float: left;
    height: 10%;
    width:100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right:0;
    z-index: 1000;
    padding-left:5%;
    padding-right:5%;
 
 }
 
 .header .logo{
    float: left;
    height:100%;
    width: 5%;
    padding-top: 1%;
    padding-left: 2%;
    padding-bottom: 4%;
    
 }
 
 .header .navbar{
    float: left;
    width:72%;
    height:5%;
    transition: transform 0.3s ease; 
    /*margin-left:10%;*/
    padding-bottom: 3%;
   margin-right: 0%;
   
    
 }
 @media (min-width: 1400px)  {
 .header .navbar ul {
  float: left;
  width: 100%;
  margin-top: 2%;
  margin-left: 10%;
}
}

 .header .navbar ul{
    float:left;
    width:100%;
    margin-top:2%;
    /*margin-left:1%;*/
    
 }
 .header .navbar ul li{
    float:left;
    list-style: none;
    margin-left:3%;
    
   
    
 }

 .header .navbar ul li ul{
    background-color: none;
 }
 .header .navbar ul li a{
    position: relative;
    text-decoration: none;
    color:white;
   
 }
 .header .navbar ul li a:hover{
    color: #bd902c;
 }
 .login:hover{
    color: #bd902c !important;
 }
 .navbar a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #bd902c;
    transition: width 0.3s ease;
    color: #bd902c;
    
    
 }
 .login::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #bd902c;
    transition: width 0.3s ease;
    color: #bd902c;
}
 
 .navbar a:hover::before {
    width: 100%;
   
   
 }
 #active{
    color: #ce9a29;
 }
 .header .social-icons{
    float:left;
    width:8%;
    
    margin-top:1.7%;
 }
 .header .social-icons ul{
    padding:0;
    margin-top:2%;
    width:100%;
 }
 .header .social-icons ul li{
    float:left;
    list-style: none;
    margin-left:15px;
 }
 .header .social-icons ul li a{
    color:white;
 }
 .header .social-icons ul li a i{
     color:#959595;
 }
 
 .header .social-icons ul li a:hover{
    color:blanchedalmond;
 }
 
 .header .flag-icons{
    float:left;
    width:8%;
    margin-right: 3%;
    margin-top:1.7%;
 }
 
 .header .flag-icons ul{
    padding:0;
    margin-top:2%;
    width:100%;
 }
 
 .header .flag-icons ul li{
    float:left;
    list-style: none;
    margin-left:15px;
 }
 
 .menu-toggle{
    display: none;
 }
 
 .navbar .dropdown-menu  {
     float:left;
     background-color: rgba(0, 0, 0, 0.5);
      width:100px;
      color:white;
     
      
     
 }
 .navbar .dropdown-menu li a:hover{
     color:black;
     background-color: rgba(0, 0, 0, 0.5);
 }
 
 
 
 
 
 /* Dropdown styles */
     .navbar .dropdown-toggle::after {
         display: none; /* Hide the dropdown arrow */
     }
 
     /* Show dropdown menu on hover */
     .navbar .dropdown:hover .dropdown-menu {
         display: block;
     }
 
     .arrow-up {
       transform: translateY(-50%);
   }
 
   .arrow-down {
       transform: translateY(50%);
   }
   .ssv{
      display:block;
  }
  .mbv{
      display:none;
  }
 
  @media screen and (max-width: 900px) {
      .ssv{
      display:none;
  }
  .mbv{
      display:block;
  }
  }
 @media screen and (max-width: 768px) {
    .navbar {
  display: none; /* Hide the navbar by default */
}

.navbar.show {
  display: block; /* Show the navbar when the .show class is added */
}

 
    .header .logo{
       float: left;
       height:50%;
       width: 2.5%;
       padding-top: 0.5%;
       padding-left: 1%;
       padding-bottom: 2%;
       z-index:1000;
       
    }
 
    .menu-toggle {
        display: block; /* Display hamburger menu on smaller screens */
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        cursor: pointer;
        color: white;
        font-size: 20px;
    }
 
    .header .navbar {
       float: left;
        display: none; /* Hide the navbar by default on smaller screens */
        width: 100%;
        height: 5%; 
        background-color: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        
        padding-top: 50px; /* Adjust to account for the space taken by the hamburger icon */
        color:black;
        width:100%;
        
        
    }
 
    .header .navbar.mobile-menu-open {
        display: block; /* Display the navbar when the mobile menu is open */
    }
 
    .header .navbar ul {
        list-style: none; /* Remove default list styles */
        padding: 0; /* Remove default padding */
        margin: 0; /* Remove default margin */
        text-align: center; /* Center align menu items */
        padding-top: 20px;
        transform: translateX(-30px);
    }
 
    .header .navbar ul li {
       overflow: hidden;
       width:100%;
        display: block; /* Display menu items as blocks */
        margin-bottom: 20px; /* Add some spacing between menu items */
    }
 
    .header .navbar ul li a:hover{
       width:100%;
       background-color: black;
       color: white;
    }
 
    .header .navbar ul li a {
        text-decoration: none; /* Remove underline from links */
        color:black;
        padding: 10px; /* Add padding to each menu item */
        display: block; /* Display menu items as blocks */
        transition: 0.2s;
    }
 
 
    .header .social-icons {
       float: none; /* Remove float */
       width: 100%; /* Set width to 100% */
       margin-top: 30px; /* Adjust margin */
       text-align: center; /* Center align icons */
       margin-left:130px;
   }
 
   .header .social-icons ul {
       padding: 0;
       margin-top: 0;
       width: auto; /* Set width to auto */
   }
 
   .header .social-icons ul li {
       display: inline-block; /* Display icons inline */
       list-style: none;
       margin: 0 5px; /* Adjust margin */
   }
 
 
   .header .flag-icons {
    float: none; /* Remove float */
    width: 100%; /* Set width to 100% */
    margin-top: 10px; /* Adjust margin */
    
    text-align: center; /* Center align icons */
 }
 
 .header .flag-icons ul {
    padding: 0;
    margin-top: 0;
    margin-left:30px;
    width:100%; /* Set width to auto */
 }
 
 .header .flag-icons ul li {
    display: inline-block; /* Display icons inline */
    list-style: none;
    margin: 0 5px; /* Adjust margin */
 }
    
 }
 
 
 
 
 .main-content {
     position: relative;
     z-index: 2;
     padding: 20px;
     text-align: center;
   }
 
  
 
 
 /* Adjust particles z-index */
 .parti1 {
    height: 100vh;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1;
     background-color: black;
     float: left;
    
 }


 .css-slider-wrapper {
    float: left;
  display: block;
  background: #FFF;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  
}

.slider-content button{
   background-color: #a88430;
    color: #fff;
    padding: 6px 16px;
    border:none;
    border-radius: 10%;
}
.slider-content button:hover{
    background-color:#FFAA33;
}

/* Slider */
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  -webkit-transition: -webkit-transform 1600ms;
  transition: -webkit-transform 1600ms, transform 1600ms;
  -webkit-transform: scale(1);
  transform: scale(1);
}
 
/* Slides Background Color */
.slide-1 {
  
  left: 0;
}
.slide-2 {
  
  left: 100%
}

.slider {
  display: flex;
  justify-content: flex-start;
}
.slider-content {
  width: 635px;
  padding-left: 100px;
  padding-top:100px;
}



/* Slider Inner Slide Effect */
.slider h2 {
    color:#ffff;
    font-family: 'Poppins';
  font-weight: 900;
  text-transform: capitalize;
  font-size: 60px;
  
  line-height: 1.2;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  margin-top: 0;
  letter-spacing: 2px;
}
 
.slider h4 {
  font-size: 22px;
 
  color:#FFAA33;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
}
 
.slider img {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
}
 
.slide-1  img {
    padding: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
  padding-bottom: 0px !important;
  margin-right: -190px;
  padding-right: 0px !important;
     
    
   }
   
   .slide-2 img{
     left: 25%;
     padding:5%;
   }
 
.buy-now-btn {
  background-color: #ea2e49;
  width: 220px;
  height: 50px;
  border-radius: 30px;
  border: none;
  
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  text-align: left;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  transition: all .2s;
}
 
.buy-now-btn:hover {
  box-shadow: 0px 0px 60px -17px rgba(51,51,51,1);
}
 
.buy-now-btn:after {
  content: 'Buy Now';
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  right: 35px;
  top: 18px;
}
 
.slider .buy-now-btn:focus,
.navigation .login-btn:focus {
  outline: none;
}


/* Animations */
.slider h2 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}
.slider h4 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1.4s; /* Safari */
  transition-delay: 1.4s;
}
.slider  img {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1.2s; /* Safari */
  transition-delay: 1.2s;
}

/* Number Pagination */
.number-pagination {
  position: absolute;
  bottom: 30px;
  right: 100px;
  
  font-weight: bold;
}
 
.number-pagination span {
  font-size: 30px;
  color: #ea2e49;
  letter-spacing: 4px;
}
 
.number-pagination span:after {
  
  font-size: 16px;
  color: #fff;
}

/* Slider Pagger */
.slider-pagination {
  position: absolute;
  bottom: 30px;
  width: 575px;
  left: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.slider-pagination label {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #fff;
  margin: 0 10px;
  cursor: pointer;
}



/* Slider Pagger Event */
.slide-radio1:checked ~ .slider-pagination .page1,
.slide-radio2:checked ~ .slider-pagination .page2
 {
  width: 14px;
  height: 14px;
  border: 2px solid #ea2e49;
  background: transparent;
}
 
/* Slider Slide Effect */
.slide-radio1:checked ~ .slider {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.slide-radio2:checked ~ .slider {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

 
.slide-radio1:checked ~ .slide-1 h2,
.slide-radio2:checked ~ .slide-2 h2,
.slide-radio1:checked ~ .slide-1 h4,
.slide-radio2:checked ~ .slide-2 h4,
.slide-radio1:checked ~ .slide-1  img,
.slide-radio2:checked ~ .slide-2  img
{
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1
}





/* Responsive */
@media only screen and (max-width: 768px) {
  .slider h2 {
    font-size: 20px;
  }
  .slider h4 {
    font-size: 16px;
  }
 
  .slider-content {
    padding: 0 2%
  }
 
  .navigation {
    padding: 0 2%;
  }
 
  .navigation-left {
    display: none;
  }
 
  .number-pagination {
    right: 2%;
  }
  .slider-pagination {
    left: 2%;
  }
 
  .slider .buy-now-btn {
    padding: 0 15px;
    width: 175px;
    height: 42px;
  }
 
  .slider .buy-now-btn:after {
    top: 15px;
  }
 
  .slider  img {
    right: 2%;
  }
 
  .slide-1  img {
    right: -110px;
  }
}


.brand{
    height:85%;
    width: 70%;
    
}
.about-img{
    padding-left:2%;
}
.about-content{
   padding-top:4%;
   padding-right: 2%;
}
.about-details{
    text-align: justify;
    
}

@media only screen and (max-width: 600px) {
    .about-img{
        width:100%;
        padding: 0;
    }

    .about-content{
        width:100%;
        padding-right:2%;
    }
  }
  
  @media only screen and (max-width: 1500px) {
      .home-page-panel {
    margin-top: 40% !important;
}
  }
.about-image {
    float: left;
    position: relative;
    padding-top: 8%;
}
.about-image img {
    position: relative;
    /* animation: shake 4s infinite linear; */
   
    height: auto;
    z-index: 22;
    
}

.product-image{
   
    float:left;
    position:relative;
    padding-top:8%;
    
 
    
    
    
}

.product-image img:nth-child(1) {
    position:relative;
    animation: shake 4s infinite linear;
    width:100%;
    
    height: auto;
   
        z-index: 22;
       
    
    
   
}

.product-image img:nth-child(2) {
    position:absolute;
    
       left:10px;
       width:100%;
       height: auto;
        animation: shake1 5s infinite linear;
        z-index:20;
       
        
        
        
        
}

@keyframes shake1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust the floating height as needed */
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px); /* Adjust the floating height as needed */
    }
    100% {
        transform: translateX(0);
    }
}

.product-content{
    float:left;
   
   /*padding-top:100px;*/
    
}

@media only screen and (min-width: 1500px) {
 .product-content{
    float:left;
   
   padding-top:100px;
    
}
}

.product-content h1{
    font-family: 'Poppins';
    font-weight:600;
}
.product-content p{
    text-align:justify;
    
}

.buttons {
    background-color:white;
    color: #4f62b7;
    width: 9.5em;
    height: 2.9em;
    border: #4f62b7 0.1em solid;
    border-radius: 11px;
    text-align: right;
    transition: all 0.6s ease;
  }
  
  .buttons:hover {
    background-color: #4f62b7;
    cursor: pointer;
    color:#fff;
  }
  
  .buttons i {
    width: 1.6em;
    margin: -0.2em 0.8em 1em;
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
  }
  .buttons svg {
    width: 1.6em;
    margin: -0.2em 0.8em 1em;
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
  }
  
  .buttons:hover svg {
    transform: translateX(5px);
  }
  
  .buttons .text {
    margin: 0 1.5em
  }

.product2 .product-image{
    padding-top:5%;
}
.product2 .product-image img:nth-child(1) {
    position:relative;
    animation: shake 4s infinite linear;
    z-index:30;
    float:left;
    height:100%;
        width:100%;
       
    
    
   
 }
 
 .product2 .product-image img:nth-child(2) {
    position:absolute;
     top:15%;
        left: 30px;
        animation: shake1 5s infinite linear;
        z-index:20;
        height:100%;
        width:100%;
       
 }

 /* other products */
.bg-fixed{
    background-image: url('img/Product-Section-BG.webp');
    
    background-attachment: fixed;
}

 .product-card {
    float: left;
    position: relative;
    margin-left: 10%;
    height:150%;
   height:400px;
    background: #fff;
    border-radius:20px;
}

 .product-tumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-details h3 a {
    font-size: 18px;
   text-transform: capitalize;
   font-weight: 600;
   color: #1f194c;
  
   z-index: 3;
}

.product-tumb img {
    transition: transform .5s, filter 1.5s ease-in-out;
    
}

.product-tumb:hover img {
    transform: scale(1.1);
}

.product-details h3:hover{
    color:#1f194c;
}



.justify{
    text-align: justify;
}


/* logo slider */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.logo-slider {
  height: 80px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.logo-slider .logo-slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
/*.logo-slider .logo-slide {*/
/*  height: 100px;*/
/*  width: 250px;*/
/*}*/

.brand-name h3{
        text-align: center;
    background: #412474;
    padding-top: 2px;
    padding-bottom: 2px;
    color:#fff;
}



/* other products */

  
.pl-0{
    padding-left:0;
}
.pl-1{
    padding-left:0.25rem;
}
.pl-2{
    padding-left:0.5rem;
}
.pl-3{
    padding-left:1rem;
}
.pl-4{
    padding-left:1.5rem;
}
.pl-5{
    padding-left:3rem;
}

.pl-6{
    padding-left:5rem;
}


.pr-0{
    padding-right:0;
}
.pr-1{
    padding-right:0.25rem;
}
.pr-2{
    padding-right:0.5rem;
}
.pr-3{
    padding-right:1rem;
}
.pr-4{
    padding-right:1.5rem;
}
.pr-5{
    padding-right:3rem;
}
.pr-6{
    padding-right:5rem;
}


.button-pro{
   
    color: #4f62b7;
  width:100px;
    border:none;
    
    border-radius: 11px;
    text-align: center;
    transition: all 0.6s ease; 
   padding:7px 9px;
  }
  
  .button-pro:hover {
    background-color:#4f62b7;
    cursor: pointer;
    color:#fff;
  }




  /* ADVERTISERS SERVICE CARD */
 #advertisers{
    width:100%;
    height:auto;
    float: left;
    
    background-size: cover;
    margin-bottom:30px;
}
.col{
    height:250px;
    width:350px;
    margin-top:12px;
    float: left;
}
 
 .sec-icon {
   position: relative;
   display: inline-block;
   padding: 0;
   margin: 0 auto;
   
 }
 
 .sec-icon::before {
   content: "";
   position: absolute;
   height: 1px;
   left: -70px;
   margin-top: -5.5px;
   top: 60%;
   
   width: 50px;
 }
 
 .sec-icon::after {
   content: "";
   position: absolute;
   height: 1px;
   right: -70px;
   margin-top: -5.5px;
   top: 60%;
   
   width: 50px;
 }
 
 
 
 .advertisers-service-sec span {
   color: #3c1970;
 }
 
 .advertisers-service-sec .col {
   padding: 0 1em 1em 1em;
   text-align: center;
 }
 
 .advertisers-service-sec .service-card {
   width: 100%;
   height: 100%;
   
   border-radius: 5px;
   box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
   cursor: pointer;
   transition: 0.5s;
   position: relative;
   z-index: 2;
   overflow: hidden;
   background: #fff;
 }
 
 .advertisers-service-sec .service-card::after {
   content: "";
   width: 100%;
   height: 100%;
   background: linear-gradient(#0dcaf0, #3c1970);
   position: absolute;
   left: 0%;
   top: -98%;
   z-index: -2;
   transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
 }
 
 .advertisers-service-sec h3 {
   font-size: 20px;
   text-transform: capitalize;
   font-weight: 600;
   color: #1f194c;
  
   z-index: 3;
 }
 
 .advertisers-service-sec p {
   color: #575a7b;
   font-size: 15px;
   line-height: 1.6;
   letter-spacing: 0.03em;
   z-index: 3;
 }
 
 .advertisers-service-sec .icon-wrapper {
   background-color: #2c7bfe;
   position: relative;
   margin: auto;
   font-size: 30px;
   height: 2.5em;
   width: 2.5em;
   color: #ffffff;
   border-radius: 50%;
   display: grid;
   place-items: center;
   transition: 0.5s;
   z-index: 3;
 }
 .service-card{
   width:70px;
   height: 70px;
   float: left;
   background-color:red;
 }
 .advertisers-service-sec .service-card:hover:after {
   top: 0%;
 }
 
 .service-card .icon-wrapper {
   background-color: #ffffff;
   color: #3c1970;
 }
 
 .advertisers-service-sec .service-card:hover .icon-wrapper {
   color: #0dcaf0;
 }
 
 .advertisers-service-sec .service-card:hover h3 {
   color: #ffffff;
 }
 
 .advertisers-service-sec .service-card:hover p {
   color: #f0f0f0;
 }
 /* ADVERTISERS SERVICE CARD ENDED */


 .testim {
    width: 100%;
    
    top: 100%;
    bottom: 0;
    
    float: left;
}

.testim .wrap {
position: relative;
width: 100%;
max-width: 1020px;
padding: 40px 20px;
margin: auto;
}

.testim .arrow {
display: block;
position: absolute;
color:#4f62b7;
cursor: pointer;
font-size: 2em;
top: 50%;
-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
-webkit-transition: all .3s ease-in-out;    
-ms-transition: all .3s ease-in-out;    
-moz-transition: all .3s ease-in-out;    
-o-transition: all .3s ease-in-out;    
transition: all .3s ease-in-out;
padding: 5px;
z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
color: #3c1970;
}


.testim .arrow.left {
left: 10px;
}

.testim .arrow.right {
right: 10px;
}

.testim .dots {
text-align: center;
position: absolute;
width: 100%;
bottom: 60px;
left: 0;
display: block;
z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
list-style-type: none;
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
border: 1px solid #eee;
margin: 0 10px;
cursor: pointer;
-webkit-transition: all .5s ease-in-out;    
-ms-transition: all .5s ease-in-out;    
-moz-transition: all .5s ease-in-out;    
-o-transition: all .5s ease-in-out;    
transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
background: #4f62b7;
border-color: #4f62b7;
}

.testim .dots .dot.active {
-webkit-animation: testim-scale .5s ease-in-out forwards;   
-moz-animation: testim-scale .5s ease-in-out forwards;   
-ms-animation: testim-scale .5s ease-in-out forwards;   
-o-animation: testim-scale .5s ease-in-out forwards;   
animation: testim-scale .5s ease-in-out forwards;   
}

.testim .cont {
position: relative;
    overflow: hidden;
}

.testim .cont > div {
text-align: center;
position: absolute;
top: 0;
left: 0;
padding: 0 0 70px 0;
opacity: 0;
}

.testim .cont > div.inactive {
opacity: 1;
}


.testim .cont > div.active {
position: relative;
opacity: 1;
}


.testim .cont div .img img {
display: block;
width: 100px;
height: 100px;
margin: auto;
border-radius: 50%;
}

.testim .cont div h2 {
color: #4f62b7;
font-size: 1em;
margin: 15px 0;
}

.testim .cont div p {
font-size: 1.15em;
color: black;
width: 80%;
margin: auto;
}

.testim .cont div.active .img img {
-webkit-animation: testim-show .5s ease-in-out forwards;            
-moz-animation: testim-show .5s ease-in-out forwards;            
-ms-animation: testim-show .5s ease-in-out forwards;            
-o-animation: testim-show .5s ease-in-out forwards;            
animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
-webkit-animation: testim-content-in .4s ease-in-out forwards;    
-moz-animation: testim-content-in .4s ease-in-out forwards;    
-ms-animation: testim-content-in .4s ease-in-out forwards;    
-o-animation: testim-content-in .4s ease-in-out forwards;    
animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
-webkit-animation: testim-content-in .5s ease-in-out forwards;    
-moz-animation: testim-content-in .5s ease-in-out forwards;    
-ms-animation: testim-content-in .5s ease-in-out forwards;    
-o-animation: testim-content-in .5s ease-in-out forwards;    
animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
-webkit-animation: testim-hide .5s ease-in-out forwards;            
-moz-animation: testim-hide .5s ease-in-out forwards;            
-ms-animation: testim-hide .5s ease-in-out forwards;            
-o-animation: testim-hide .5s ease-in-out forwards;            
animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
-webkit-animation: testim-content-out .4s ease-in-out forwards;        
-moz-animation: testim-content-out .4s ease-in-out forwards;        
-ms-animation: testim-content-out .4s ease-in-out forwards;        
-o-animation: testim-content-out .4s ease-in-out forwards;        
animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
-webkit-animation: testim-content-out .5s ease-in-out forwards;    
-moz-animation: testim-content-out .5s ease-in-out forwards;    
-ms-animation: testim-content-out .5s ease-in-out forwards;    
-o-animation: testim-content-out .5s ease-in-out forwards;    
animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -webkit-box-shadow: 0px 0px 10px 5px #3c1970;        
    box-shadow: 0px 0px 10px 5px #3c1970;        
}

100% {
    -webkit-box-shadow: 0px 0px 0px 0px #3c1970;        
    box-shadow: 0px 0px 0px 0px #3c1970;        
}
}

@-moz-keyframes testim-scale {
0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -moz-box-shadow: 0px 0px 10px 5px #3c1970;        
    box-shadow: 0px 0px 10px 5px #3c1970;        
}

100% {
    -moz-box-shadow: 0px 0px 0px 0px #3c1970;        
    box-shadow: 0px 0px 0px 0px #3c1970;        
}
}

@-ms-keyframes testim-scale {
0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -ms-box-shadow: 0px 0px 10px 5px #3c1970;        
    box-shadow: 0px 0px 10px 5px #3c1970;        
}

100% {
    -ms-box-shadow: 0px 0px 0px 0px #3c1970;        
    box-shadow: 0px 0px 0px 0px #3c1970;        
}
}

@-o-keyframes testim-scale {
0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -o-box-shadow: 0px 0px 10px 5px #3c1970;        
    box-shadow: 0px 0px 10px 5px #3c1970;        
}

100% {
    -o-box-shadow: 0px 0px 0px 0px #3c1970;        
    box-shadow: 0px 0px 0px 0px #3c1970;        
}
}

@keyframes testim-scale {
0% {
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    box-shadow: 0px 0px 10px 5px #3c1970;        
}

100% {
    box-shadow: 0px 0px 0px 0px #3c1970;        
}
}

@-webkit-keyframes testim-content-in {
from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -webkit-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-moz-keyframes testim-content-in {
from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -moz-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-ms-keyframes testim-content-in {
from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -ms-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-o-keyframes testim-content-in {
from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -o-transform: translateY(0);        
    transform: translateY(0);        
}
}

@keyframes testim-content-in {
from {
    opacity: 0;
    transform: translateY(100%);
}

to {
    opacity: 1;
    transform: translateY(0);        
}
}

@-webkit-keyframes testim-content-out {
from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -webkit-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-moz-keyframes testim-content-out {
from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -moz-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-ms-keyframes testim-content-out {
from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -ms-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-o-keyframes testim-content-out {
from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@keyframes testim-content-out {
from {
    opacity: 1;
    transform: translateY(0);
}

to {
    opacity: 0;
    transform: translateY(-100%);        
}
}

@-webkit-keyframes testim-show {
from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -webkit-transform: scale(1);       
    transform: scale(1);       
}
}

@-moz-keyframes testim-show {
from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -moz-transform: scale(1);       
    transform: scale(1);       
}
}

@-ms-keyframes testim-show {
from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -ms-transform: scale(1);       
    transform: scale(1);       
}
}

@-o-keyframes testim-show {
from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -o-transform: scale(1);       
    transform: scale(1);       
}
}

@keyframes testim-show {
from {
    opacity: 0;
    transform: scale(0);
}

to {
    opacity: 1;
    transform: scale(1);       
}
}

@-webkit-keyframes testim-hide {
from {
    opacity: 1;
    -webkit-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
}

@-moz-keyframes testim-hide {
from {
    opacity: 1;
    -moz-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
}
}

@-ms-keyframes testim-hide {
from {
    opacity: 1;
    -ms-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
}
}

@-o-keyframes testim-hide {
from {
    opacity: 1;
    -o-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
}
}

@keyframes testim-hide {
from {
    opacity: 1;
    transform: scale(1);       
}

to {
    opacity: 0;
    transform: scale(0);
}
}

@media all and (max-width: 300px) {
body {
    font-size: 14px;
}
}

@media all and (max-width: 500px) {
    .testim{
        background-color:white;
    }
.testim .arrow {
    font-size: 1.5em;
}

.testim .cont div p {
    line-height: 25px;
}

}


.achievements{
    float: left;
    width:100%;
    height:auto;
}

.achievements .strip{
    float: left;
    width:100%;
    height:2%;
    background-color:#dfeeff;
    
}

.achievements .strip .heading{
    width:100%;
    height: 100%;
    margin:0 auto;
    padding:5px 5px;
    text-align: center;
}
.achievements .strip .heading .para{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.achievements .images{
    float: left;
    width:100%;
    height:auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
.img-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .img-sec img {
    /*max-width: 40px;*/
    height: auto;
    margin: 1%; /* Add spacing between images */
  }

@media only screen and (max-width: 768px){
   .achievements .strip{
       height: 60px;
   }
}

footer{
    background: linear-gradient(180deg, white, #cec3b5);
    width: 100%;
    height: auto;
   
    float: left;
}
.footer-menu .menu-links{
    width:50%;
    margin: 3% auto;
    padding-left: 2%;
    text-align: center;
}
.footer-menu .menu-links li{
    list-style: none;
    margin-top:6%;
}
.footer-menu .menu-links li a{
    text-decoration: none;
   
    
}
.footer-menu .menu-links li a:hover{
    color: #4f62b7;
}
.footer-logo{
    padding-left:50%;
}
.social-links{
    
   padding-left: 0;
    
}
.social-links li{
    list-style: none;
    display: inline-block;
    
}
.social-links li a{
    text-decoration: none;
    color: #000;
    
}
.social-links li a:hover{
    color: #4f62b7;
}
.contact{
   
    padding-left:10%;
}
.contact p a:hover{
    color: #4f62b7;
}
a{
    text-decoration: none;
    color: #000;
}

.sub-footer{
    background-color:#cdcdcd;
    color:black;
    float: left;
    width: 100%;
}

.whats-float {
  position: fixed;
  transform: translate(108px,0px);
  top: 85%;
  right: 0;
  width: 150px;
  overflow: hidden;
  /* background-color: #25d366; */
  color: #FFF;
  border-radius: 2px 0 0 2px;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
}
.whats-float a span {
  color: #55cd6c;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: bolder;
}
.whats-float:hover {
  color: #FFFFFF;
  transform: translate(0px,0px);
}
small {
  font-size: 80%;
  font-weight: 400;
}



.pl-0{
    padding-left:0;
}
.pl-1{
    padding-left:0.25rem;
}
.pl-2{
    padding-left:0.5rem;
}
.pl-3{
    padding-left:1rem;
}
.pl-4{
    padding-left:1.5rem;
}
.pl-5{
    padding-left:3rem;
}

.pl-6{
    padding-left:5rem;
}


.pr-0{
    padding-right:0;
}
.pr-1{
    padding-right:0.25rem;
}
.pr-2{
    padding-right:0.5rem;
}
.pr-3{
    padding-right:1rem;
}
.pr-4{
    padding-right:1.5rem;
}
.pr-5{
    padding-right:3rem;
}
.pr-6{
    padding-right:5rem;
}

.ml-0{
    margin-left:0;
}
.ml-1{
     margin-left:0.25rem;
}
.ml-2{
     margin-left:0.5rem;
}
.ml-3{
     margin-left:1rem;
}
.ml-4{
     margin-left:1.5rem;
}
.ml-5{
     margin-left:3rem;
}


.mr-0{
    margin-right:0;
}
.mr-1{
     margin-right:0.25rem;
}
.mr-2{
    margin-right:0.5rem;
}
.mr-3{
   margin-right:1rem;
}
.mr-4{
     margin-right:1.5rem;
}
.mr-5{
     margin-right:3rem;
}



@media screen and (max-width: 768px) {
    /* Adjust the font size for larger screens */
    .slider-content h2 {
      font-size: 10px;
      
      padding-right:10%;
    }

    .slider {
        display: flex;
        justify-content: flex-start;
        width:100%;
      }
      .slider-content {
        width: 100%;
        padding-left: 100px;
        padding-top:100px;
      }

      .slider img {
        position: absolute;
        right: 10%;
        bottom: 0;
        height: 50%;
        opacity: 0;
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
      }

      .product-image{
        width:100%;
      }
      .product-tumb img {
        max-width: 50%;
        max-height: 50%;
        margin-left: 20%;
    }

    .product-card {
    
        position: relative;
        width:50%;
        height:50%;
        background: #fff;
        margin-top:5%;
        margin-left:25%;
    }

    .achievements .strip{
       
        height:10%;
      
        
    }
    .footer-menu .social-links{
        width:100%;
        padding-left:5%;
        
    }
    .footer-menu .menu-links{
        width:100%;
        padding-left:5%;
    }
    .place{
        width:100%;
        padding-left:8%;
    }

    .contact{
        width:100%;
        margin-left:10%;
    }
  }
  .icon .title {
  font-size: 12px !important;
}
.hband{
    background: #997946;
  padding: 7px;
  color: #fff;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}
.product-imageb {
  float: left;
  position: relative;
 
}
.product-imageb img:nth-child(1) {
  position: relative;
  animation: shake 4s infinite linear;
  width: 100%;
  height: auto;
  z-index: 22;
}
.product-imageb img:nth-child(2) {
  position: absolute;
  left: 10px;
  width: 100%;
  height: auto;
  animation: shake1 5s infinite linear;
  z-index: 20;
}
@media screen and (max-width: 991px) {
  .order1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
}
@media screen and (max-width: 991px) {
  .order2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}



.icons p{
    text-align:center;
    transform:translateX(-15%);
    padding-top:2%;
}
.icons a:hover img{
       rotate: y 360deg;
    /* border: dotted; */
    border-color: #31a2d7;
    /* border-radius: 50%; */
    transition: 2s, background-size .3s .3s;
}

.center-btn{
    margin-top:5%;
}

.front-text{
    width:50%;
    padding-top:3%;
    padding-left:4%
}
.front-text h1{
    font-size:50px;
}
.writing-text
{
   
    
}
.writing-panel{
    position:relative;
    padding-left:20%;
    width:100%;
    z-index: 3;
    /*transform: translateY(-100px) !important;*/
}
.connect-panel{
    transform:translateY(-135px);
}

.table-panel{
    transform: translateY(264px) !important;
    width:100%;
    /*padding-top: 20%;*/
    
}
.table-text{
    /*margin-top:55%;*/
}
.mid-content{
    padding-left:10%;
    padding-top:10%;
}
.mid-content img{
    /*padding-top:20%;*/
    width:100%;
}
.earth-text{
    position: relative;
    bottom: -10% !important;
    left: 10%;
    font-size: 50px;
}

.h1{
    padding-top:30%;
}

.home-page-panel{
    margin-top:40% !important;
}

/*.center-btn a{*/
/*    padding:1% 1%;*/
/*    background-color:#fff !important;*/
/*}*/


.counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.counter-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 140px; /* Adjust width if needed */
    background: #5455b2;
    
    border-bottom: 9px solid #dfa943;
    border-radius: 11px;
    color: #fff;
}

.counter-item i {
    font-size: 2rem; /* Icon size */
    color: #fff; /* Icon color */
    margin-right: 15px; /* Space between icon and number/label section */
    width:30%;
}

.counter-number-label-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 1.5rem; /* Number size */
    font-weight: bold;
    color: #fff;
}

.counter-label {
    font-size: 1rem; /* Label size */
    color: #fff;
}


@media only screen and (min-width: 1500px) {
 .counter-container{
    /*float:left;*/
   
   padding-top:100px;
    
}

