

.card {
    position: relative;
    width: 300px;
    height: 250px;
    /* background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% ); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border:0px;
  }
  
  .card svg {
    width: 48px;
    fill: #333;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card:hover {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color:#124E66;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card:hover .card__content {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  
  .card__title {
    margin: 0;
    font-size: 24px;
    color: #FFB400;
    font-weight: 700;
  }
  
  .card__description {
    margin: 10px 0 0;
    font-size: 14px;
    color: white;
    line-height: 1.4;
  }
  
  .card:hover svg {
    scale: 0;
    transform: rotate(-45deg);
  }

  
  .aqua-service-h-txt p {
    color: black;
    font-size: 20px;
    font-family: 'Poppins';
}


.smll{
    font-size: 35px !important;
}
.description li i{
    background-color: white;
    font-size: 16px !important;
}


@media only screen and (max-width: 460px){
    .card:hover {
        transform: rotate(0deg) scale(1.0);
    }
    .smll{
        font-size: 25px !important;
    }
    .card{
      width:100%;
    }
    
}