@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --hh-purple: #870f92;
    --hh-purple-light: #b040bb;
    --hh-pink: #ff7477;
    --hh-pink-light: #fda0a2;
}

.text-purple {
    color: var(--hh-purple);
}

.text-purple-light {
    color: var(--hh-purple-light);
}

.text-pink {
    color: var(--hh-pink);
}

.text-pink-light {
    color: var(--hh-pink-light);
}

.bg-purple {
    background-color: var(--hh-purple);
}

.bg-purple-light {
    background-color: var(--hh-purple-light);
}

.bg-pink {
    background-color: var(--hh-pink);
}

.bg-pink-light {
    background-color: var(--hh-pink-light);
}


.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.swiper-slide img {
    width: 900px;
    height: 500px;
    object-fit: cover;
}

.calendly-badge-widget {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    transform-origin: bottom right;
    transition: transform 0.3s;
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.calendly-badge-widget:hover {
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.7);
    }
    100% {
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5);
    }
  }
  

.calendly-badge-widget .calendly-badge-content {
    font-weight: 400 !important
}


body {
    background: linear-gradient(45deg, #fabeff, #e0f7fa, #ffffff);
}

.light-background {
    background: none;
}