@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&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=Montserrat:ital,wght@0,100..900;1,100..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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: 0;
  border: none;
  font-family: "Jost", sans-serif;
}

body {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

:root {
  --dark-blue-text: rgb(11, 20, 46);
  --light-color: rgba(27, 27, 27, 0.418);
  --primary-color: #f866c4;
  --white-text: white;

  --card-clr: #161922;
  --body-clr: #191d28;
  --primary-clr: #f0bf6a;
  --heading-clr: #dadada;
  --text-clr: #767a86;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgb(146, 146, 146);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

::-webkit-scrollbar-corner {
  background: #ccc;
}

.main-heading {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue-text);
  padding-bottom: 30px;
}

.wh-chat {
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 1;
}

button {
  cursor: pointer;
}

.top {
  height: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.top h2 {
  font-size: 2.2rem;
  font-family: "Raleway", sans-serif;
  margin-bottom: 10px;
  font-weight: 800;
}

.top p {
  width: 60%;
  margin-bottom: 20px;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bottom-btn {
  position: relative;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg,rgba(248, 102, 196, 1) 0%, rgba(248, 102, 196, 1) 100%);
  transition: all 0.2s ease;
}
.bottom-btn:active {
  transform: scale(0.96);
}
.bottom-btn:before,
.bottom-btn:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}
.bottom-btn.animate::before {
  top: -70%;
  background-image: radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #f866c4 20%, transparent 30%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #f866c4 15%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  animation: greentopBubbles ease-in-out 0.6s forwards infinite;
}
@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.bottom-btn.animate::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #f866c4 15%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%),
    radial-gradient(circle, #f866c4 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  animation: greenbottomBubbles ease-in-out 0.6s forwards infinite;
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.client-testimonial .btns {
  width: 20%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-testimonial .btns .btn {
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--dark-blue-text);
  border-radius: 50px;
  margin: 0 20px;
  position: relative;
  box-shadow: rgba(4, 113, 255, 0.103) 0px 2px 10px;
}

.client-testimonial .btns .btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: rgb(221, 219, 219);
}

.client-testimonial .btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: rgba(4, 113, 255, 0.158) 0px 2px 10px;
}

.client-testimonial .btns .btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.enq_quick {
    padding: 0;
    margin: 40px 0 40px 0;
}
.enq_quick_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0px 0 0px 0;
}
.enq_quick_area input, .frm_drp {
    max-width: 180px;
    margin: 0 !important;
    background: #f5f6f6;
    color: #000 !important;
    height: 50px !important;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    padding: 0 0px 0 15px;
}
.enq_quick_area button {
    max-width: 120px;
    height: 50px;
}
.btn_style {
    color: #fff;
    background: linear-gradient(120deg, #3f5edf 0%, #3f5edf 100%) !important;
    border-color: #2e6da4;
    width: 100%;
    box-shadow: none;
    margin: 0 5px 0 5px;
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}