/* General Styles */
body {
    margin: 0;
    /* font-family: 'Ubuntu'; */
    font-family: 'Montserrat';
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 40px;
    padding-top: 10px;
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: navy;
    font-weight: bold;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contact-info a {
    text-decoration: none;
    color: navy;
    margin-left: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .contact-info {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section Styles */
.hero {
    background: url('images/pexels-danny-meneses-340146-943096.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    height: 600px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* To create a dark overlay effect */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-button {
    background-color:white;
    color:black;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: orange;
    color: navy;
}
.element{
    font-size: 50px;
    font-weight: 700;
}

/* Responsive Hero Styles */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 20px;
        height: 400px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        height: fit-content;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .element{
        font-size: 25px;
    }
    .element{
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0px 20px;
        height: 320px;
    }
    
    .hero h1 {
        font-size: 15px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 12px;
    }
    .element{
        font-size: 20px;
    }
   
}


/* .hr-theme-slash-2 {
  display: flex;
  
  .hr-line {
    width: 10%;
    position: relative;
    margin: 85px;
    border-bottom: 5px solid #000;
  }
  .hr-icon {
    position: relative;
    top: 77px;
    color: #ff0000;
    font-size:30px
  }
} */



.new{
  height: 500px;
  background:#fff;
  margin-left: 70px;
}

.container {
  height: 300px;
  width: 100%;
  max-width: 1000px; /* Set a maximum width for the container */
  margin: 0 auto; /* Center the container horizontally */
  display: flex;
  padding-left: 10px;
  font-size: 15px;
  
}

@media (max-width: 768px) {
  .new {
      height: fit-content;
  }
  .container {
      height: fit-content;
      flex-direction: column;
      padding-top: 50px;
       margin-left: -40px; 
      align-items: center; /* Center align items vertically */
  }
  .card {
      margin-left: 0 !important; /* Remove horizontal overlap on mobile */
      transform: none !important; /* Remove hover animation on mobile */
      transition: none !important; /* Remove transition effects on mobile */
      margin-bottom: 20px; /* Add space between cards */
      padding-right: 20px; /* Add padding to the right of the cards */
     
  }
  .card:hover {
      transform: none !important; /* Remove hover animation on mobile */
  }
  .card:hover ~ .card {
      position: relative !important; /* Ensure no hover effect on adjacent cards */
      left: 0 !important; /* Ensure no horizontal shift */
  }
}

.card {
  display: flex;
  height: 300px;
  width: 280px;
  background-color: #17141d;
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;
}

.card:not(:first-child) {
  margin-left: -50px;
}

.card:hover {
  transform: translateY(-100px);
  transition: 0.4s ease-out;
}

.card:hover ~ .card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}

.title {
  color: white;
  font-weight: 300;
  position: absolute;
  left: 20px;
  top: 15px;
}

.bar {
  position: absolute;
  top: 100px;
  left: 20px;
  height: 5px;
  width: 100px;
}

.emptybar {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}

.filledbar {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 0px;
  height: 100%;
  background: rgb(0,154,217);
  background: linear-gradient(90deg, rgb(3, 10, 81) 0%, rgb(205, 225, 30) 100%);
  transition: 0.6s ease-out;
}

.card:hover .filledbar {
  width: 120px;
  transition: 0.4s ease-out;
}

.text-card {
  position: absolute;
  top: 130px;
  color: white;
  left: 20px;
}

svg {
  fill: #17141d;
  stroke-width: 2px;
}

.card:hover .stroke {
  stroke-dashoffset: 100;
  transition: 0.6s ease-out;
}



/* Blogs */



.custom-container {
  display: flex;
  justify-content: center;
  padding: 50px;
  gap: 30px;
}

.custom-square:hover {
    -webkit-transform: translate(20px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.custom-square {
  width: 460px;
  height: 430px;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 20px 50px #D9DBDF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}

.custom-mask {
  clip: rect(0px, 460px, 220px, 0px);
  border-radius: 4px;
  position: absolute;
}

.custom-mask img{
  width: 460px;
}

.custom-h1 {
  margin: auto;
  text-align: left;
  margin-top: 240px;
  padding-left: 30px;
  font-size: 24px;
}

.custom-square p{
  text-align: justify; 
  padding-left: 30px;
  padding-right: 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #C8C8C8;
  line-height: 18px;
}

.custom-button {
  background-color: #3EDD84;
  color: white;
  width: 90px;
  padding: 10px 18px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 70px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'Merriweather', serif;
}

/* Footer */



.content {
  flex: 1;
}

/* Existing footer styles */
.footer-container {
  background: url(images/pankaj-patel-Fi-GJaLRGKc-unsplash\ \(2\).jpg);
  background-size: cover;
  color: white;
  padding: 30px 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  filter: blur(8px);
  z-index: -1;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 300px;
  margin-bottom: 20px;
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 25px;
}

.footer-col p, .footer-col a {
  color: white;
  margin-bottom: 10px;
 
  font-size: 16px;
}

.footer-col a {
  text-decoration: none;
  color: white;
}

.footer-socials {
  display: flex;
  margin-bottom: 10px;
  color: white;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid white;
}

.footer-socials a:hover {
  color: white;
  border-color: #410cd3;
  background-color: #410cd3;
}

.footer-bottom {
  border-top: 1px solid #6c757d;
  padding-top: 20px;
  text-align: center;
  color: white;
  
  width: 100%;
}

iframe {
  border: 0;
  width: 100%;
  height: 200px;
}

.text-black{
  color: white;
}


/* Service Cards Animation */
.service-card {
    perspective: 1000px;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-inner {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    backface-visibility: hidden;
}



.main-aboutus {
  background: url(images/pexels-mizunokozuki-12899156.jpg);
  background-size: cover;
  padding: 40px 0;
}

.company-info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.company-info__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: black;
}

.company-info__subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: center;
  color: black;
}

.company-info__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.company-info__who-we-are,
.company-info__promise,
.company-info__history,
.company-info__mission {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease-in-out;
}

.company-info__who-we-are:hover,
.company-info__promise:hover,
.company-info__history:hover,
.company-info__mission:hover {
  transform: translateY(-5px);
}

.company-info__section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: black;
  text-align: center;
  font-weight: 700;
}

.company-info__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: navy;
  text-align: center;
}

.company-info__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.company-info__highlight {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.company-info__highlight:hover {
  transform: translateY(-5px);
}

.company-info__highlight-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
  font-weight: 700;
}

.company-info__highlight-description {
  font-size: 1rem;
  color: navy;
}

.company-info__clipart {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-info {
    padding: 20px;
  }

  .company-info__title {
    font-size: 2rem;
  }

  .company-info__subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .company-info__content {
    gap: 20px;
  }

  .company-info__section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .company-info__paragraph {
    font-size: 0.9rem;
  }

  .company-info__highlights {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .company-info {
    padding: 10px;
  }

  .company-info__title {
    font-size: 1.8rem;
  }

  .company-info__subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .company-info__content {
    gap: 15px;
  }

  .company-info__section-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .company-info__paragraph {
    font-size: 0.8rem;
  }

  .company-info__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-info__highlight-title {
    font-size: 1rem;
  }

  .company-info__highlight-description {
    font-size: 0.9rem;
  }

  .company-info__clipart {
    width: 80px;
  }
}



  
  

  #mega-menu-icons-dropdown {
    min-width: 300px;
    font-size: 1.5rem;
    background-color: white;
}
#mega-menu-icons-dropdown a {
    color: black; /* Change text color to black */
}
#mega-menu-icons-dropdown a svg {
    width: 50px; /* Adjust size */
    height: 50px; /* Adjust size */
    margin-right: 10px; /* Adjust spacing */
    color: gray; /* Change icon color */
}
#mega-menu-icons-dropdown a:hover {
    color: navy; /* Change text color on hover */
}
#mega-menu-icons-dropdown a:hover svg {
    color: navy; /* Change icon color on hover */
}



.slider-area h2 {
  font-weight: 700;
  text-align: center;
  font-size: 50px;
  margin: 10px 0 30px 0;
  color: black;
}

.wrapper {
  display: flex;
  flex-wrap: nowrap; /* Ensure items don't wrap */
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  padding: -0.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 30px;
  justify-content: space-between; /* Space items evenly */
}

.item {
  /* animation: animate 25s alternate linear infinite;
  filter: grayscale(100%);
  transition: filter 0.5s ease; */
  margin: 0 20px; /* Increase margin for more gap */
  flex: 0 0 auto; /* Prevent items from stretching */
}

.item img {
  height: 150px;
  width: 100px;
  object-fit: cover; /* Ensure images don't stretch */
}

.item:hover {
  filter: grayscale(0%);
}

.container:hover .item {
  animation-play-state: paused;
}

@keyframes animate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1100px, 0, 0);
  }
}

@media (max-width: 768px) {
  .slider-area {
    height: 400px;
  }
  .slider-area h2 {
    font-size: 30px;
  }
  .wrapper {
    width: 300px;
    height: 200px;
    border-radius: 0;
    padding: 0;
    z-index: 1;
  }

  .item {
    width: fit-content;
    margin: 50px 10px; /* Adjust margin for smaller screens */
  }
  
}

.slider {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem;
}
.item {
	animation: animate 25s linear infinite;
}
.item img
	{
		min-width: 200px;
		padding:  030px;
	}
/* .slider:hover .item {
	animation-play-state: paused;
} */
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1800px, 0, 0);
	}
}

.contact-form-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 50px 30px 50px 50px;
  align-items: center;
  
}

.form-content {
  height: fit-content;
  font-size: 50px;
  font-weight: 700;
  background: -webkit-linear-gradient(black,  black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 350px;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 20px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px 5px;
}

.custom-title {
  font-size: 28px;
  color: black;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.custom-title::before, .custom-title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: black;
}


.custom-title::before {
  width: 18px;
  height: 18px;
  background-color: black;
}

.custom-title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.custom-message, .signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.custom-flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.custom-form label {
  position: relative;
}

.custom-form label .custom-input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.custom-form label .custom-input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.custom-form label .custom-input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.custom-form label .custom-input:focus + span,
.custom-form label .custom-input:valid + span {
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.custom-form label .custom-input:valid + span {
  color: green;
}

.custom-submit {
  border: none;
  outline: none;
  background-color: black;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: .3s ease;
}

.custom-submit:hover {
  background-color: white;
  cursor: pointer;
  color: #000;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
    margin: 50px 20px;
  }

  .custom-form {
    max-width: 100%;
  }

  .custom-title {
    font-size: 24px;
  }

  .custom-form label .custom-input {
    padding: 8px;
  }

  .custom-submit {
    padding: 8px;
    font-size: 14px;
  }
}




:root{
  --background-dark: #f9f9f9;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}



.hero-section{
  align-items: flex-start;
  background: fff;
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px){
  .grid{
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media(min-width: 960px){
  .grid{
    grid-template-columns: repeat(4, 1fr); 
  }
}

.card-style{
  list-style: none;
  position: relative;
}

.card-style:before{
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
}

.background{
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  trsnsform: scale(1) translateZ(0);
  transition: 
    filter 200ms linear,
    transform 200ms linear;
}

.card-style:hover .background{
  transform: scale(1.05) translateZ(0);
}

.grid:hover > .card-style:not(:hover) .background{
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.content{
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.category{
  color: #ffffff;
  font-size: 20px;
  margin-bottom: var(--spacing-s);
}

.heading{
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
  line-height: 1.4;
  word-spacing: 100vw;
  font-weight: 700;
}

 



.wild-header {
  background-color: #4a90e2;
  color: white;
  padding: 20px 0;
  text-align: center;
}
.wild-header h1 {
  margin: 0;
  font-size: 2.5em;
}
.epic-hero {
  text-align: center;
  padding: 100px 20px;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  color: white;
}
.epic-hero h2 {
  font-size: 3em;
  margin: 0 0 10px 0;
}
.epic-hero p {
  font-size: 1.5em;
}
.hero-button {
  background-color: #4a90e2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero-button:hover {
  background-color: #357ABD;
}
.legendary-section {
  padding: 60px 20px;
  text-align: center;
}
.legendary-section h3 {
  font-size: 2.5em;
  margin-bottom: 40px;
}
.legendary-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.awesome-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px;
  transition: transform 0.3s;
}
.awesome-card:hover {
  transform: scale(1.05);
}
.awesome-card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.awesome-card-content {
  padding: 20px;
  text-align: left;
}
.awesome-card-content h4 {
  margin-top: 0;
  font-size: 1.5em;
}
.awesome-card-content ul {
  list-style: none;
  padding: 0;
}
.awesome-card-content ul li {
  background: url('images/bullet-icon.png') no-repeat left center;
  padding-left: 20px;
  margin-bottom: 10px;
}
.wild-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.wild-footer a {
  color: #4a90e2;
  text-decoration: none;
}



.bulkcard {
	box-sizing: border-box;
	width:90%;
	height: 400px;
	background:url(images/bulk.jpg);
	background-size: cover;
	border: 1px solid white;
	box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(6px);
	border-radius: 17px;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	font-weight: bolder;
	color: black;
	margin-left: 60px;
	margin-top: 40px;
	font-size: 40px;
  }

  .bulkcard-head{
	height: 100px;
	background: #ffffff5f;
	padding-top: 20px;
	border-radius: 20px;
	padding-left: 20px;
	padding-right: 20px;
  }

  @media (max-width: 768px) {
	.bulkcard{
		height: 300px;
		margin-left: 20px;
	    margin-top: 20px;
	}

	.bulkcard-head{
		height: fit-content;
		background: #ffffff5f;
		padding-top: 20px;
		border-radius: 20px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 30px;
		width: 80%;
	  }

  }

  .bulk-features{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px 50px 30px 10px;
  }



  .bulk-card {
    width: 252px;
    height: 265px;
    background: white;
    border-radius: 30px;
    box-shadow: 15px 15px 30px #bebebe,
               -15px -15px 30px #ffffff;
    transition: 0.2s ease-in-out;
    margin: 30px 0 30px 60px;
  }
  

  @media (max-width: 768px) {
    .bulk-features{
        flex-direction: column;
        margin: 30px 40px 30px 0px;
    }

    .bulk-card{
        margin-left: 40px;
    }
  }

  .bulk-img {
    width: 100%;
    height: 50%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(#000000, #363636);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
  }
  
  
  .bulk-save {
    transition: 0.2s ease-in-out;
    border-radius: 10px;
    margin: 20px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .bulk-text {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: space-around;
  }
  
  
  
  
  
  
/* .slider {
	display: flex;
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem;
}
.item {
	animation: animate 25s linear infinite;
}
.item img
	{
		min-width: 200px;
		padding: 0 30px;
	}
.slider:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1800px, 0, 0);
	}
}
 
 
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
} */