*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    width: 100%;
    height: auto;
    position: relative;
}
.banner{
    width: 100%;
    height: 650px;
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url(../img/slider/sli-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
.about-banner{
    background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)),url(../img/slider/sli-2.jpg);
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-icon{
    position: fixed;
    display: block;
    left:2%;
    bottom: 45px;
    z-index: 99;
    width: 55px;
    height: 55px;
    font-size: 25px;
    background-color: #25D366 !important;
    color: #fff;
    
}
.call-icon{
    position: fixed;
    display: block;
    right: 3%;
    bottom: 45px;
    z-index: 99;
    width: 55px;
    height: 55px;
    font-size: 25px;
    background-color: royalblue !important;
    color: #fff;
}


  
.call-icon::after {
    animation: pulse 1000ms cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
  }
  
  @keyframes pulse {
    0% {
      opacity: 0;
    }
    50% {
      transform: scale(1.4);
      opacity: 0.4;
    }
  }
  
  .call-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: royalblue;
    border-radius: 50%;
    z-index: -1;
  }
  

/* Animation property */
.whatsapp-icon {
    animation: wiggle 2s linear infinite;
  }
  
  /* Keyframes */
  @keyframes wiggle {
    0%, 7% {
      transform: rotateZ(0);
    }
    15% {
      transform: rotateZ(-15deg);
    }
    20% {
      transform: rotateZ(10deg);
    }
    25% {
      transform: rotateZ(-10deg);
    }
    30% {
      transform: rotateZ(6deg);
    }
    35% {
      transform: rotateZ(-4deg);
    }
    40%, 100% {
      transform: rotateZ(0);
    }
  }
  
  
  
  .whatsapp-icon {
    
    border: none;
    border-radius: 0 0 0.2em 0.2em;
    color: #fff;
    transform-origin: 50% 5em;
  }



  /* image-fit */
  .image-fit{   
     height: max(12rem,18vw);
  }