/* @import url('https://use.fontawesome.com/release/v6.4.2/css/all.css'); */
body{
  font-family: "Work Sans", serif !important;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  overflow-x: hidden;
}

.top-nav p{
 font-size: .7rem !important;
}
a{
  text-decoration: none !important;
}
p{
  font-size: 0.9rem !important;
  font-family: "Work Sans", serif !important;
}
.container2 {
  /* padding: 0 90px; */
  position: relative;
  width: 100%;
  height: 85vh;
}

.container2 .slide .item {
  /* width: 165px; */
  height: 240px;
  position: absolute;
  top: 70%;
  transform: translate(0, -50%);
  border-radius: 20px;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  transition: .5s;
}

.container2 .slide .item::after { 
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */ pointer-events: none;
  z-index: 1;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3) {
  left: 50%;
}

.slide .item:nth-child(n+4) {
  left: calc(50% + 210px);
  opacity: 1;
}

/* .slide .item:nth-child(n+5){
  left: calc(50% + 430px);
  opacity: 1;
} */

.item .content {
  position: absolute;
  top: 50%;
  left: 250px;
  width: 1000px;
  text-align: left;
  color: white;
  transform: translate(0, -60%);
  font-family: "Work Sans", serif !important;
  display: none;
  line-height: 70px;
  z-index: 3;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .name {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
  font-family: "Work Sans", serif !important;
  color: white;
}

.content .des {
  /* margin-top: 10px; */
  /* margin-bottom: 20px; */
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  color: #FF6666;
}

.content .des p {
  line-height: 30px;
  color: white;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%);
  }

  100%{
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}



/* CSS */
.button-62 {
  background: linear-gradient(to bottom right, #EF4765, #FF9A5A);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.button-62:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-62:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-navi {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  z-index: 1;

}

.button-navi button {
  width: 40px;
  border-radius: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  border: 1px solid #FF6666;
  transition: 0.5s;
  color: white;
}

.button-navi button:hover {
  background: #FF6666;
  color: #fff;
}

.bg-white {
  /* background-color: #ffffff; */
  color: #374151;
  /* Default text color */
  margin: 0 100px;
}



.max-w-7xl {
  max-width: 80rem;
  /* 7xl container width */
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

ul li {
  font-family: "Source Sans 3";
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-10 {
  gap: 2.5rem;
  /* Gap between grid items */
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.text-red-600 {
  color: #dd2424;
  font-family: "Work Sans", serif !important;
  text-align: left;
}

.text-red-600 {
  /* Define initial state without animation */
  transform: translateX(0);
}

.text-red-600 {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.dark\:text-red-400 {
  color: #ef4444;
  /* Dark mode red text color */
}

.mb-4 {
  margin-bottom: 1rem;
  max-width: 600px;
}

.mb-6 {
  margin-bottom: 1.5rem;

}

.text-black {
  color: #000000;
}

.dark\:text-white {
  color: #ffffff;
  /* Dark mode white text color */
}

.list-disc {
  list-style-type: disc;
}

.pl-5 {
  padding-left: 1.25rem;
}

.space-y-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* *{
 // border:2px solid red;
} */

/* .dark\:bg-zinc-900 {
   background-color: #111827; 
} */



.rounded-lg {
  border-radius: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
}



.dark\:text-blue-400 {
  color: #3b82f6;
  /* Dark mode blue text color */
}

.hover\:text-blue-800:hover {
  color: #1d4ed8;
  /* Hovered blue text color */
}

.dark\:hover\:text-blue-600:hover {
  color: #2563eb;
  /* Hovered dark mode blue text color */
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Animation for the grid container */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.grid {
  animation: slideInFromLeft 1s ease-out;
}

/* Animation for the heading */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

h1 {
  animation: fadeIn 1s ease-in-out;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* Apply animation to elements */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.show {
  animation: slideInFromRight 1s ease-out forwards;
}

.learn-more-button {
  animation: scaleUp 0.5s ease-in-out;
}


/* CSS */
.button-92 {
  --c: #fff;
  /* text color */
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p, 100%)/300% no-repeat,
    #004dff;
  /* background color */
  color: #0000;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg*var(--_i, -1)));
  text-shadow: calc(var(--_i, -1)* 0.08em) -.01em 0 var(--c),
    calc(var(--_i, -1)*-0.08em) .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}

.button-92:hover,
.button-92:focus-visible {
  --_p: 0%;
  --_i: 1;
}

.button-92:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}

.button-92 {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  cursor: pointer;
  padding: .1em .3em;
}

p {
  font-family: "Source Sans 3";
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@media(max-width: 600px){
  .services-card{
    display: flex;
    flex-direction: column;
  }

  .services-card .service-img-card img{
    max-width: 300px;
  }
}

@media (min-width: 600px) and (max-width: 768px){
  .col-md-auto .services-card{
    display: flex ;
    flex-direction: column;
  }

}


@media (min-width:768px) and (max-width: 992px){
  .services-card{
    display: flex;
    flex-direction: column;

  }


  /* .after-header-area{
    display: flex;
    flex-direction: column;
  } */

  .services-card .service-img-card img{
    max-width: 300px;
  }
}

.services-card{
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  /* height: 470px; */
}

.services-card:hover{
  background: linear-gradient(#080809, #222020);
  color: white;
  box-shadow: none;
}
.service-img-card img{
  max-width: 450px;
}

.services-card-content{
  padding: 20px;
}
.service-card-content-home{
  padding: 20px;
  /* top: 70%; */
}

.service-card-content-home h4 , .service-card-content h4{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}


.home-services .home-container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  /* padding: 20px 90px; */
  align-items: center;
  /* background-color: tomato; */
  width: 100%;
  border:155px;
}

.what-we-do {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

}

.what-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #dd2424;
  /* box-shadow: inset 1px 1px 1px black; */
  margin: 20px 0;
  border-radius: 20px;
  width: 500px;
}

.what-we-do .what-image img {
  max-width: 300px;
}

.what-info h3 {
  font-size: 1.2rem;
  color: #dd2424;
  font-weight: 700;
}




/* CSS */
.button-28 {
  appearance: none;
  background-color: transparent;
  border: 2px solid #1a1a1a;
  border-radius: 15px;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  max-width: 200px;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}


.port-heading {
  margin: 10px;
  font-size: 2.5rem;
  color: #dd2424;
  font-weight: 800;
}

.whiskey-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  /* -webkit-overflow-scrolling: touch; */
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 auto;
  padding: 48px 48px 0 48px;
  background-color: #f6f6f6;
 

}

/* .whiskey-cards::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
  height: 5px;
} */

.whiskey-cards::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(0, 0, 0, .5);
  background: linear-gradient(90deg, #02bcf5, #0073e6, #003ab9, #635bff);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  border-radius: 16px;
  opacity: .5;
}

.whiskey-cards:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

.whiskey-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  /* max-width: 400px; */
  height: 400px;
  flex-basis: 600px;
  border-radius: 16px;
  margin: 8px;
  padding: 16px;
  /* box-shadow: 0 -16px 24px rgb(0 0 0 / 5%); */
  color: #ffffff;
  /* background-color: white; */

  transition: all 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.whiskey-card h3 {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3rem;
}

.what-info h3 {
  animation: colorChange 1s infinite alternate;
}

@keyframes colorChange {
  0% {
    color: black;
  }

  100% {
    color: #dd2424;
  }
}


.whiskey-card img {
  max-width: 500px;
}

.whiskey-card:hover {
  /* background-color: #0a2540 !important; */
  transform: scale(1.04) translateY(-16px);
  box-shadow: 0 -16px 24px rgb(0 0 0 / 10%);
}


.whiskey-card .whiskey-card--content {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 300;
}





.whiskey-card h3 a,
.whiskey-card .whiskey-card--link a {
  color: #ffffff;
}



.HoverArrow__linePath {
  opacity: var(--arrowLineOpacity);
  transition: opacity var(--hoverTransition, var(--arrowHoverTransition));
}

.HoverArrow__tipPath {
  transform: var(--arrowTipTransform);
  transition: transform var(--hoverTransition, var(--arrowHoverTransition));
}

.whiskey-card:hover .HoverArrow__linePath {
  --arrowLineOpacity: 1;
}

.whiskey-card:hover .HoverArrow__tipPath {
  --arrowTipTransform: var(--arrowHoverOffset);
}



.approach {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #ffffff;
  padding-top: 50px;
}

.approach-heading {

  display: flex;
  flex-direction: column;
  flex: 1;
}

.approach-heading h1 {
  color: #d9261a;
  font-size: 4rem;
  text-align: right;
  font-weight: 700;

}

.approach-heading h2 {
  text-align: right;
  font-size: 2rem;
  color: black;
  font-weight: 700;
}

.approach-dropdown {
  display: flex;
  flex: 1;
  justify-content: end;
}

:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  --primary: hsl(var(--hue), 90%, 50%);
  --trans-dur: 0.3s;
  --trans-timing: cubic-bezier(0.65, 0, 0.35, 1);
  font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
}

a {
  color: var(--primary);
  transition: color var(--trans-dur);
}

button {
  color: #dd2424;
  font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

/* body {
	background-color: var(--bg);
	height: 100vh;
	transition:
		background-color var(--trans-dur),
		color var(--trans-dur);
} */
h1 {
  font-size: 2em;
  margin: 0 0 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: black;
}


/*clients*/
.trust-heading{
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: black;
}
.slide img {
  width: 200px;
}
.customer-logos {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.container1 {
  margin-top: 50px;
}
.slick-slide {
  margin: 0px 20px;
}
.slick-slide img {
  max-width: 150px;
}
.slick-arrow{
  display: none;
  opacity: 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  -webkit-touch-callout: none;
  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 {
  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;
}

.clients-heading {
  font-weight: 700;
  font-size: 2rem;
}

.btn {
  background-color: black;
  border-radius: 0.25em;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.375em 0.75em;
  transition:
    background-color calc(var(--trans-dur) / 2) linear,
    color var(--trans-dur);
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background-color: white;
  color: #dd2424;
}

.btn-group {
  display: flex;
  gap: 0.375em;
  margin-bottom: 1.5em;
}

.timeline {
  margin: auto;
  padding: 0 1.5em;
  width: 100%;
  max-width: 36em;
}

.timeline__arrow {
  background-color: transparent;
  border-radius: 0.25em;
  cursor: pointer;
  flex-shrink: 0;
  margin-inline-end: 0.25em;
  outline: transparent;
  width: 2em;
  height: 2em;
  transition:
    background-color calc(var(--trans-dur) / 2) linear,
    color var(--trans-dur);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.timeline__arrow:focus-visible,
.timeline__arrow:hover {
  background-color: black;
}

.timeline__arrow-icon {
  display: block;
  pointer-events: none;
  transform: rotate(-90deg);
  transition: transform var(--trans-dur) var(--trans-timing);
  width: 100%;
  height: auto;
}

.timeline__date {
  font-size: 0.833em;
  line-height: 2.4;
}

.timeline__dot {
  background-color: #dd2424;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin: 0.625em 0;
  margin-inline-end: 1em;
  position: relative;
  width: 0.75em;
  height: 0.75em;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.25em;
}

.timeline__item:not(:last-child):before {
  background-color: #dd2424;
  content: "";
  display: block;
  position: absolute;
  top: 1em;
  left: 2.625em;
  width: 0.125em;
  height: 100%;
  transform: translateX(-50%);
}

[dir="rtl"] .timeline__arrow-icon {
  transform: rotate(90deg);
}

[dir="rtl"] .timeline__item:not(:last-child):before {
  right: 2.625em;
  left: auto;
  transform: translateX(50%);
}

.timeline__item-header {
  display: flex;
}

.timeline__item-body {
  border-radius: 0.375em;
  overflow: hidden;
  margin-top: 0.5em;
  margin-inline-start: 4em;
  height: 0;
}

.timeline__item-body-content {
  background-color: black;
  opacity: 0;
  padding: 0.5em 0.75em;
  visibility: hidden;
  transition:
    opacity var(--trans-dur) var(--trans-timing),
    visibility var(--trans-dur) steps(1, end);
}

.timeline__meta {
  width: 100%;
}

.timeline__title {
  font-size: 1.4em;
  line-height: 1.333;
  color: black;
}

/* Expanded state */
.timeline__item-body--expanded {
  height: auto;
  color: white;
}

.timeline__item-body--expanded .timeline__item-body-content {
  opacity: 1;
  visibility: visible;
  transition-delay: var(--trans-dur), 0s;
}

.timeline__arrow[aria-expanded="true"] .timeline__arrow-icon {
  transform: rotate(0);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
    --primary: hsl(var(--hue), 90%, 70%);
  }
}


.why-choose-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  /* background-color: black; */
}

.why h1 {
  text-align: center;
  font-size: 30px;
  color: black;
  font-weight: 700;
}

.why-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: black;
}

.why-card {
  margin: 20px;
  text-align: center;
  /* background-color: red; */
  flex: 1;

}

.why-card .icons i {
  padding: 10px 0px;
  font-size: 2rem;
  color: #dd2424;
}

.testim {
  width: 100%;
  /* position: absolute; */
  /* top: 50%; */
  /* -webkit-transform: translatey(-50%); */
  /* -moz-transform: translatey(-50%); */
  /* -ms-transform: translatey(-50%); */
  -o-transform: translatey(-50%);
  /* transform: translatey(-50%); */
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: black;
  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: #dd2424;
}


.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: #dd2424;
  border-color: #dd2424;
}

.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: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #dd2424;
  font-size: 1.5em;
  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 #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-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 #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-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 #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-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 #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@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 #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-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 .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }

}

.container2 {
  /* max-width: 1100px; */
  margin: 0 auto;
  /* padding: 0 30px; */
}

.foot .container2 {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
}

.foot a li {
  font-family: "Source Sans 3", sans-serif;
}

.foot1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.social-media {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  justify-content: space-around ;
  /* border: 2px solid red; */
  padding:auto;
}


.header {
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.8rem;
  color: #d64541;
  text-align: center;
  font-weight: 900;
}

.products-card {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; */
}

.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* text-align: center; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  /* transition: all .3s ease-in-out; */
}


.product-card h6{
  font-weight: 500;

}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.product-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.product-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}


.demo-form {
  display: flex;
  flex-direction: column;
}

.form-heading {
  font-size: 25px;
}

.form {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}

.form input {
  padding: 10px;
  border: none;
  background-color: #0000001e;
  color: black;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.form input:focus {
  outline: none;
  /* border: none; s*/
}


.form textarea {
  padding: 10px;
  color: black;
  border: none;
  background-color: #00000047;
  margin-bottom: 10px;
}

.form textarea:focus {
  outline: none;
  border: none;
}

.submit-button {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 15px;
}
.home ul , .about-us ul, .our-services ul, .products ul{
  padding-left: 0 !important;
}
ul a{
  color: #88898b;
} 

ul a:hover{
  color: #d9261a;
}

.footer{
  background-color: #161616;
  padding: 30px;
  color: whitesmoke;
}

.footer-bottom{
  background-color: var(--primary-color);
  padding: 10px 0;
}

.social-media a i{
  margin-right: 7px;
  color: black;
  font-size: 20px;
}

.bi{color:black;}

.head{
  color: var(--main-color);
  /* font-size: 2px; */
  font-weight: 700;
}

/* .submit-button:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
} */

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.submit-button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #174ea6;
  left: 0;
  top: 0;
  border-radius: 10px;
}

label {
  font-size: 17px;
}



/*Responsive*/

@media only screen and (max-width: 600px) {

  .dropdown-menu {
    /* overflow: hidden; */
  }

  html {
    overflow: scroll;
    overflow-x: hidden;
  }

  .what-we-do {
    display: flex;
    flex-direction: column;
  }

  .what-list {
    display: flex;
    flex-direction: column;
  }

  .mb-4 {
    width: 100%;
  }

  .bg-white .grid {
    display: block;
  }

  .bg-white {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  p {
    font-family: "Source Sans 3";
  }

  .card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }

  .card-container .custom-grid {
    display: block;
    width: 100%;
  }



  .discuss {
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
  }

  .discuss-1 h2 {
    text-align: center;
  }

  .discuss-1 p {
    text-align: center;
    overflow: hidden;
  }

  .discuss-2 {
    margin: 10px 20px;
  }


  .discuss-button {
    margin-left: 35%;
    margin-right: 40%;
    padding: none;
  }

  .approach {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .item .content .name {
    top: 50%;
    left: 0;
    width: 0;
    padding: 0;
  }

  .slide .item:nth-child(3) {
    display: none;
  }

  .slide .item:nth-child(n+4) {
    display: none;
  }

  .slide .item .content .name {
    max-width: 350px;
    margin-right: 50px;
    font-size: 45px;
  }

  .slide .item .content {
    max-width: 350px;
    left: 5%;
  }

  .why-choose-us {
    display: none;
  }

  .foot1 {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
  }

  .foot2 {
    display: flex;
    flex-direction: column;
  }

  .home,
  .about-us,
  .our-services,
  .products {
    margin: 10px 0px;
  }

}

@media only screen and (min-width:600px) and (max-width:768px) {
  html {
    overflow: scroll;
    overflow-x: hidden;
  }

  .bg-white .grid {
    display: block;
  }

  .bg-white {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .slide .item:nth-child(3) {
    display: none;
  }

  .slide .item:nth-child(n+4) {
    display: none;
  }

  .slide .item .content .name {
    max-width: 500px;
    /* margin-right: 50px; */
    font-size: 60px;
  }

  .slide .item .content .des {
    max-width: 500px;
  }

  .slide .item .content {
    max-width: 500px;
    left: 15%;
  }


  .card-container .custom-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .discuss {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .discuss-1 {
    margin: 10px 0px;
  }

  .discuss-2 {
    margin: 10px 0px;
  }

  .why-choose-us {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .foot2 {
    display: flex;
    flex-direction: column;
  }

  .home,
  .about-us,
  .our-services,
  .products {
    margin: 10px 0px;
  }
}


@media only screen and (min-width:768px) and (max-width:992px) {
  html {
    overflow: scroll;
    overflow-x: hidden;
  }

  .bg-white .grid {
    display: block;
  }

  .bg-white {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .slide .item:nth-child(3) {
    display: none;
  }

  .slide .item:nth-child(n+4) {
    display: none;
  }

  .slide .item .content .name {
    max-width: 500px;

  }

  .slide .item .content {
    max-width: 600px;
    left: 20%;
  }

  .bg-white {
    display: flex;
    flex-direction: column;
  }

  .card-container {
    display: flex;
    /* padding: 0 100px; */
    margin: 0 auto;


  }

  .card-container .custom-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* flex-direction: row; */
  }

  .card {
    max-width: 300px;
  }

  .discuss {
    display: flex;
    flex-direction: column;
  }

  .discuss-1 {
    margin: 20px;
  }

  .discuss-2 {
    margin: 10px 0px;
  }

  .why-choose-us {
    margin: 0;
    padding: 0;
  }

  .foot2 {
    display: flex;
    flex-direction: column;
  }

  .home,
  .about-us,
  .our-services,
  .products {
    margin: 10px 0px;
  }
}


@media only screen and (min-width:992px) and (max-width:1200px) {
  html {
    overflow: scroll;
    overflow-x: hidden;
  }

  .bg-white .grid {
    display: block;
  }

  .bg-white {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .slide .item:nth-child(3) {
    display: none;
  }

  .slide .item:nth-child(n+4) {
    display: none;
  }

  .card-container {
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    margin: 0;
    padding: 0 20px;
    /* margin: 0 auto; */


  }


  .discuss {
    margin: 50px 0px;
    padding: 0 30px;
  }

  .why-choose-us {
    padding: 0px 20px;
  }


}

.read-more {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  margin-top: 30px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.read-more:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.read-more:hover .icon {
  transform: translate(4px);
}

.read-more:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.read-more::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.btns {
  margin-top: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  border: none;
  /* font-weight: 600; */
  cursor: pointer;
}

.btns kbd {
  margin: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.btn-products {
  background: linear-gradient(#1f5afe, #0f4cf5);
  color: white;
  box-shadow: inset 0pt 4pt 3pt -2pt #386fff, 0pt 4pt 5pt -3pt #0009;
  border-bottom: 2pt solid #083acd;
  transition: all 0.5s ease;
}

.btn-products:hover {
  border-bottom: 4pt solid #083acd;
  translate: 0pt -1pt;
}

.btn-products:active {
  box-shadow: inset 0pt 4pt 3pt -2pt #386fff, 0pt 4pt 5pt -3pt #0000;
  border-bottom: 1pt solid #083acd;
  translate: 0pt 0pt;
}

.btn-products kbd {
  background-color: #3e6eff;
  box-shadow: inset 0pt -3pt 3pt -2pt #1f54f0, inset 0pt 3pt 3pt -2pt #658dff,
    0pt 2pt 2pt -2pt #0005, 0pt 0pt 0pt 2pt #0d47f0;
}

.btn-products {
  background: #386fff;
}




.btn-shine {
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  /* padding: 12px 48px; */
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}


