/* @font-face {
  font-family: "muli";
  src: url(muli-2/MuliBold-YzEVy.ttf);
} */

* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}
body {
 
  /* font-family: kanit !important;; */
  
  background: #f2f2f238;
}
@media (max-width: 767px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* .main-container {
  position: relative;
  width: 100%;
  height: 100%;
} */



/* rotate image css */

.rotating-background {
  position: absolute;
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: 100%;
  background-image: url(../image/ps\ round\ logo.jpg);
  background-size: cover;
  background-position: center;
  /* background-image:url(im) ; */

  animation: rotateBg 10s linear infinite;
  opacity: 0.04;
  right: -2%;
  top: -25%;
}
.centered-text {
  position: absolute;

  text-align: center;

  /* transform: translateY(-50%); */
  color: black;
}
@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}




/* button css */

.btn {
  display: inline-block;
  perspective: 1000px; /* Needed for 3D transform */
}




.top {
  background:rgba(37, 82, 245, 0.705); /* Button background color */
  color: white; /* Button text color */
  padding: 10px 25px; /* Button padding */
  font-size: 16px; /* Button font size */
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  outline: none; /* Remove outline */
  transition: transform 0.9s; /* Smooth transform transition */
  transform-style: preserve-3d; /* 3D transform */
}

.top:hover {
  background:rgb(10, 60, 241) !important;
  color: white !;
 
   /* Flip the button on hover */
}
/* buttom css end  */



body {
  background: white !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
 
}
/* .fixed-top img{
    width: 80%;
    height: 80%;
  } */

.content {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
header {
  font-size: 35px;
  font-weight: 600;
  padding: 10px 0;
}
.carousel-caption p {
  font-size: 27px;
  font-weight: 500;
}
.carousel-indicators {
  text-align: center;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  /* margin-right: 15%; */
  margin-bottom: 1rem;
   
}

/* second box */




html,
body {
  height: 100%;
  
}

.carousel,
.item,
.active {
  height: 100%;
 
}

.carousel-caption {
  bottom: 60px !important;
  
}

.carousel-inner {
  height: 100%;
  background: #000;
 
  
}

.carousel-caption {
  padding-bottom: 80px;
}

.carousel-caption h2 {
  font-size: 50px;
  font-weight: bold;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif !important; */
}

.carousel-caption p {
  padding: 10px;
}

@media (max-width: 768px) {
  .carousel-caption p {
    padding: 0px;
    font-size: 18px;
  }
  .ptnr h4 {
    font-size: 25px !important;
  }
  .section-header h4 {
    font-size: 25px !important;
  }
  .carousel-caption h2 {
    font-size: 30px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  }
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
  width: 100%;
  height: 100%;
  /* background-position: center; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  opacity: 0.7;
 
}


.fil{
  background-position: center;
}


@media (max-width: 500px) {

.filli{
  background-position: center;
}
.fil{
  background-position: right;
}

 
  .carousel-inner {
  height: 70vh;
  }
  .fill{
    height: 70vh;
  }
  .carousel{
    height: 70vh;
  }
  .carousel-caption {
    bottom: 22px !important;
    padding-bottom: 90px !important;
}


@media (max-width:620px) {

  .carousel-caption { padding-bottom:40px!important;
  }

/* 
  .carousel-caption {
    height: 90vh !important;
  } */
}

/* @media (max-width:1020px) {

  .carousel{
    height: 50vh !important;

} */

  

  /* .carousel, .item, .active {
    height: 70%;
}
.carousel-caption {
  bottom: -90px !important;
} */
}


/**
   * Button
   */
/* .book {
  background: rgb(53, 182, 180) !important;
  color: white !important;

  border: 2px solid #fff !important;
  padding: 12px 15px !important;
  border-radius: 20px !important;
} */
/* .btn-transparent{
    padding: 30px !important;
    border: 1px solid gray !important;
    background-color: ;
  } */
/* .book:hover {
  background-color: #f91942 !important;
} */
/* 
.btn-rounded {
  border-radius: 70px;
} */
/* 
.btn-large {
  padding: 11px 45px;
  font-size: 18px;
} */

/**
   * Change animation duration
   */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* banner slider  */


/* 3red section */

.about .head .hearing {
 
  font-weight: 700;
  line-height: 1.2;
  color: #223a66;
  position: relative;
  margin-bottom: 30px;
  font-size: 34px !important;
  margin-top: 40px;
}

.about .head .hearing::after {
  content: "";
  width: 60px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background: rgb(37, 81, 245);;
  left: 0;
  right: 0;
  bottom: -10px;
}

.about .head p {
  color: rgb(107, 105, 105);
  line-height: 2.2;
  font-size: 20px;
  font-weight: 500;
}

.about .button {
  margin-left: -10px;
}

.about .content p {
  color: rgb(107, 105, 105);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
}

.about .head.text-center {
  margin-bottom: 14px;
}

.about h4.life {
  font-size: 27px;
  line-height: 1.7;
}

.contentt p {
  line-height: 25px;
  text-align: justify;
  color: #444444;
  font-size: 16px;
 
 
}
@media (max-width: 768px) {
  .about .head p {
    font-size: 12px;
  }

  .about h4.life {
    font-size: 20px;
  }

  .contentt p {
    font-size: 14px;
  }
  .about .head .hearing {
    font-size: 25px !important;
  }

  .ptnr h4 {
    letter-spacing: -1.7px !important;
  }
  
.pfont{
  font-size: 14px;
}
  .ptnr p {
    font-size: 14px !important;
    line-height: 20px;

    text-align: justify;
  }

  .section-header p,
  p.awesome_line {
    color: #818181;
    font-size: 14px !important;

    text-align: center;
  }

  .section-header {
    margin-bottom: 10px !important;
  }
  .feature-item p {
    font-size: 14px !important;
  }
}

.men-head{
  margin-left: -10px;
}


.tap{
  padding: 15px ;
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: bold;
  border-radius: 30px;
  background:rgb(10, 60, 241)!important;
}
.tap:hover{
  border: none !important;
  background-color: transparent !important;
  color: white;
  border: 1px solid  black;
  background: white;
  background:rgb(5, 47, 201)!important;
 
}
.top a{
  color: white !important;
  text-decoration: none !important;
}


/* company logo */

.ptnr h4 {
  text-align: center;
  padding: 20px;
  position: relative;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
}

.ptnr h4::after {
  content: "";
  width: 60px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background: rgb(37, 81, 245) !important;
  left: 0;
  right: 0;
  bottom: -2px;
}

.ptnr p {
  font-size: 16px;
  color: rgb(129, 129, 129);
  padding: 20px;
}

/* Image hover effect */
.about .imii img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about .content-section:hover ~ .imii img,
.about .imii:hover img {
  transform: scale(1.1);
  /* filter: grayscale(100%); */
}


.pfont{
  font-size: 16px;
}

/* company logo */

.ptnr h4 {
  text-align: center;
  padding: 20px;
  position: relative;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
}

.ptnr h4::after {
  content: "";
  width: 60px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background:rgb(37, 81, 245);;
  left: 0;
  right: 0;
  bottom: -2px;
}

.ptnr p {
  font-size: 20px;
  color: rgb(129, 129, 129);
  padding: 12px;
}

/* Image hover effect */
.about .imii img {
  transition: transform 0.3s ease;
}

.about .imii img:hover {
  transform: scale(1.05);
 
}

/* Slider */
.slick-slide {
  margin: 0px 20px;
}
.slick-slide img {
  width: 100%;
}
.customer-logos {
  position: relative;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: bolder;

  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);

  cursor: pointer;
  z-index: 1;
}


.slick-next:hover{
  background: rgb(129, 129, 129, 0.527); 
  cursor: pointer;
  color: white;
  border:2px solid white !important;
}
.slick-prev:hover{
  background: rgba(129, 129, 129, 0.527); 
  cursor: pointer;
  color: white;
  border:2px solid white !important;

}



.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  border: none !important;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: 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!important;
}
.slick-list.dragging {
  cursor: pointer;
}
.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;
}
.customer-logos {
  background:rgb(37,81,245);
  padding: 40px;
}
@media (max-width: 768px) {
  .customer-logos {
    padding: 0px !important;
  }
  /* .slick-slide img {
    width: 80%;
    margin: auto;
  } */


  .add-cmpny .slick-next {
      right: -30px !important ;
    }
  .add-cmpny .slick-prev {
      left: -30px !important;
    }


  

  .slick-next {
    right: -12px;
  }
  .slick-prev {
    left: -12px;
  }
  .rotating-background {
    display: none;
  }

  .cmpny {
    background:rgb(37,81,245);
    padding:5px
  }
}

.cmpny {
  background:rgb(37,81,245);
  padding:32px
}
/* compant logo end */
/* 
rgb(63, 187, 192); */
/* we chouse */

.section-header {
  margin-bottom: 30px;
}

.section-header h4 {
  position: relative;
  padding: 0;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-header h4:before {
  content: "";
  width: 60px;
  height: 3px;
  background: rgb(37, 81, 245);;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}



.section-header h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: #2f2f2f;
}

p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section-header p,
p.awesome_line {
  color: #444444;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.extra-text-new {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text-new::before {
  content: "";
  width: 60px;
  height: 3px;
  background: rgb(37, 81, 245);;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text-new span {
  font-weight: 700;
  color: #f91942;
}

@media (max-width: 1068px) {
  
  .feature-item {
    padding: 6px 15px !important
  }

}

.feature-item {
  background: #ffffff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feature-item:hover {
  background:rgb(88, 121, 238);
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feature-item:hover .feature-item,
.feature-item:hover span.icon-new {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feature-item:hover h4,
.feature-item:hover p {
  color: #fff;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feature-item .icon-new {
  font-size: 40px;
  margin-bottom: 25px;
  /* color:rgb(37,81,245)!important; */



  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

/* .fa-heartbeat:before {
  color:rgb(131,94,209);
} */

.feature-item .feature_box_col_one {
  background: rgba(23, 39, 246, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
}

.feature-item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
} 

.feature-item .feature_box_col_three {
  background: rgba(23, 39, 246, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
}

.feature-item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
}

.feature-item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
}

.feature-item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color:rgb(37, 81, 245) !important;;
  padding: 20px;
}

.feature-item p {
  font-size: 15px;
  line-height: 23px;
  text-align: justify;
   color: #444444;
}

/* 
.feature-item h5 {
  margin-bottom: 20px;
  color: #2f2f2f;
 font-size: 15px;
  margin-top: 20px;
  font-weight: bold;
}

.mission-new p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission-new i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f91942;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission-new .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills-new {
  padding-top: 0px;
}

.skills-new .prog-item-new {
  margin-bottom: 25px;
}

.skills-new .prog-item-new:last-child {
  margin-bottom: 0;
}

.skills-new .prog-item-new p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills-new .prog-item-new .skills-progress-new {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills-new .prog-item-new .skills-progress-new span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f91942;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills-new .prog-item-new .skills-progress-new span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
} */

/* we chouse end */

 .review {
  /* background-color: rgb(10, 45, 80); */
  margin-bottom: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
} 

.review h4 {
  position: relative;
  padding: 10px 0px;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 20px;
  /* width: 367px;
  background-color: rgba(255, 255, 255, 0.342);
  border-radius: 10px; */
}

.review h4:before {
  content: "";
  width: 60px;
  height: 3px;
  background: rgb(37, 81, 245);;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.revi {
  
  margin-bottom: 20px;
}
/* 
.testi {
  background-color: rgba(53, 182, 180, 0.164) !important;
} */

.testimonial-section {
  display: flex;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */



}



@media (max-width: 1020px) {
  
  .testimonial-card h2{
    font-size: 16px !important;
  }



}
@media (max-width: 768px) {
  .testimonial-section {
    display: flex;
    padding: 0 10px;
  }





  
  .testimonial-card span {
    font-size: 14px !important;
    line-height: 17px;
  }
  .revi {
    margin-bottom: 0px;
  }
}

/* 2nd slider */

/* 2nd slider */

.testimonial-card {
  scroll-snap-align: start;
  padding: 20px;
  list-style: none;
  /* background: rgb(77, 39, 63);; */
  background: white;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}

.testimonial-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin: auto;
}

.testimonial-card h2 {
  font-weight: 500;
  font-size: 2.2rem;
  margin: 20px 10px;
  text-align: center;
}

.testimonial-card span {
  font-size: 15px;
  text-align: justify;
  color: rgb(26, 24, 24);
  
}

@media screen and (max-width: 900px) {
  .carousel-track {
    grid-auto-columns: calc((100% / 2) - 9px);
  }

}

@media screen and (max-width: 600px) {
  .carousel-track {
    grid-auto-columns: 100%;
  }

  .review h4 {
    font-size: 25px;
  }
}
/* coment section end */

/* product slider starting  */

.rvw{
  /* background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(87, 190, 188, 0.589)), url(image/phonak-sky-b-1.png); */

  /* background-image: url(image/phonak-sky-b-1.png); */
   /* margin-bottom: 20px; */
   background-attachment: fixed;
}




/* .view{
  background: linear-gradient(rgba(13,14,14,0.699), rgba(15,20,20,0.411)), url(../image/banner-image/banner/%20hearing/%20aids/_/%281/index.html);
  background-image: url(image/mashine.jpg);
  background-repeat: no-repeat;
 
  background-attachment: fixed;
  background-position: center;
 
  position: relative;
 
 
}

.vvvv{
  background: linear-gradient(rgba(13,14,14,0.699), rgba(15,20,20,0.411)), url(../image/banner-image/hearing\ aid\ banner.jpg);


  background-repeat: no-repeat;
  background-position: center;
 
  background-attachment: fixed;
 
  position: relative;

}
.vie{
  background: linear-gradient(rgba(13,14,14,0.699), rgba(15,20,20,0.411)), url(../image/banner-image/signia\ c&G\ banner.jpg);


  background-repeat: no-repeat;
  background-position: center;
 
  background-attachment: fixed;
 
  position: relative;
  
} */


/*.view {*/
  /* Maine .vie wala path yahan daala hai kyunki aapka pehla section Signia ka hai */
/*  background: linear-gradient(rgba(13, 14, 14, 0.699), rgba(15, 20, 20, 0.411)), url('../image/banner-image/banner-new1.jpg');*/
/*  background-repeat: no-repeat;*/
/*  background-attachment: fixed;*/
/*  background-position: center;*/
/*  position: relative;*/
/*}*/

/*.vvvv {*/
  /* Yeh Widex ke liye hai */
/*  background: linear-gradient(rgba(13, 14, 14, 0.699), rgba(15, 20, 20, 0.411)), url('../image/banner-image/banner-new1.jpg');*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-attachment: fixed;*/
/*  position: relative;*/
/*}*/

/*.vie {*/
  /* Yeh bhi Signia ke liye hai, maine same path rakha hai */
/*  background: linear-gradient(rgba(13, 14, 14, 0.699), rgba(15, 20, 20, 0.411)), url('../image/banner-image/banner-new1.jpg');*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-attachment: fixed;*/
/*  position: relative;*/
/*}*/



.view,
.vvvv,
.vie {
  background: linear-gradient(rgba(13, 14, 14, 0.699), rgba(15, 20, 20, 0.411)), url('../image/banner-image/banner-new1.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover; /* Yeh property image ko poora space cover karne ke liye force karti hai */
  position: relative;
}



/* .view::after {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
} */
 

.card-sl {
  border-radius: 8px;
 
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1111;
  background-color: white;
}
.card-sl:hover{
  
transform: scale(1.05);

}

.card-image img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 8px 8px 0px 0;
  background-color: white;
}

.card-action {
 

 z-index: 2;
 color: #E26D5C;
 background: #fff;
 border-radius: 100%;
 padding: 15px;
 font-size: 15px;

}
.card-action:hover {
  color: #fff;
  background-color:#f91942!important;
  -webkit-animation: pulse 1.5s ;
}

.card-heading {
  font-size: 15px;
  font-weight: bold;
  /* background-color: rgba(255, 0, 0, 0.082); */
  padding: 10px 15px;
  background-color: white;
  outline: none !important;
 
}

.card-text {
  padding: 10px 15px;
  background: #fff;
  font-size: 14px;
  color: #636262;
  text-decoration: none;
  font-weight: 600;outline: none !important;

}

.card-button {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  background: rgb(37, 81, 245) !important;
  color: #fff;
  border-radius: 0 0 8px 8px;
}

.card-button:hover {
  text-decoration: none;
  background-color: red;
  color: #fff;

}


/* card responsive */
@media (max-width: 768px) {
  .card-sl{
    margin: 10px;
  }
}


@-webkit-keyframes pulse {
  0% {
      -moz-transform: scale(0.9);
    
      -webkit-transform: scale(0.9);
      box-shadow: 0 0 0 10px rgba(90, 153, 212, 0);
     
  }


}
.card-sl{
  border: 1px solid rgb(5, 141, 139) !important;
  margin-bottom: 20px;
  margin-top: 15px;
}

  /* 70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
  }

  100% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  } */


@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* display 3 */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33.333%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33.333%);
  }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  transform: translateX(0);
}
.card-img img {
  width: 100%;
 
}
.digi h2 {
  position: relative;
  margin-bottom: 40px;
  padding: 10px;
}
.digi h2::after {
  content: "";
  width: 60px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background: rgb(37, 81, 245);;
  left: 0;
  right: 0;
  bottom: -10px;
}

/* footer section */
