.popover__title {
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
  color: rgb(228, 68, 68);
  text-align: center;
  padding: 15px 0;
}

.popover__wrapper {
  position: relative;
  margin-top: 1.5rem;
  display: inline-block;
}
.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -53px;
  transform: translate(0, 10px);
  padding: 1.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  width: 150px;
}
.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 10px);
  top: -8px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #bfbfbf transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__message {
  text-align: center;
}

/*@media only screen and (max-width: 600px) {
  .silder-item-s {
    height: 84vh !important;
  }

  .hero-1{
    background-image:url('../images/products/m-hero-1.jpg') !important;
  }

  .hero-2{
    background-image:url('../images/products/m-hero-2.jpg') !important;
  }

  .hero-3{
    background-image:url('../images/products/m-hero-3.jpg') !important;
  }
}*/

/*@media only screen and (min-width: 1200px) {
  .silder-item-s {
    height: 90vh !important;
  }
}*/

 .bg-home{background-color: #132C33}

   @mixin ripple($duration, $delay) {
      opacity: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      height: 100%;
      width: 100%;
      background: #0460CC;
      border-radius: 100%;
      animation-name: ripple;
      animation-duration: $duration;
      animation-delay: $delay;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(.65,0,.34,1);
      z-index: -1;
  }

  .whatsapp-animation {
     position: relative;
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
     height: 60px;
     width: 60px;
     border-radius: 100%;
  }
   .whatsapp-animation span {
     position: relative;
     font-size: 72px;
     top: 5px;
     left: -5px;
  }
   .whatsapp-animation::after {
     opacity: 0;
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     content: '';
     height: 100%;
     width: 100%;
     background: #00bb3b;
     border-radius: 100%;
     animation-name: ripple;
     animation-duration: 3s;
     animation-delay: 0s;
     animation-iteration-count: infinite;
     animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
     z-index: -1;
  }
   @keyframes ripple {
     from {
       opacity: 1;
       transform: scale3d(0.75, 0.75, 1);
    }
     to {
       opacity: 0;
       transform: scale3d(1.5, 1.5, 1);
    }
  }

 .table tr td, .table tr th {
    padding: 5px !important;
}