

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    position: relative;
  }

  .marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    min-width: 200%;
  }


#whatsapp a{
    animation-name: pulse2;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }

  @keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgb(50 155 145 / 55%);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
  }
.rating-card {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden
}

.rating-card:after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -150px;
    left: -150px;
    z-index: -1;
    border-radius: 50%;
    background-color: white;
}

.rating-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(215deg,#234495 7.78%,#2880fbb7 98.17%)
}

.rating-card h2 {
    color: #021633;
    font-size: clamp(48px,5vw,90px);
    line-height: 1.35;
    letter-spacing: -2.7px
}



.rating-card h6 {
    color: #021633;
    font-size: 18px;
    font-weight: 400
}

.rating-card p {
    color: white;
    margin-top: 120px
}
