/* Highlight animation for form */
.rtx-highlight {
  box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.9);
  animation: rtxPulse 1.5s ease-out;
  border-radius: 12px;
}

@keyframes rtxPulse {
  0% {
      box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.9);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(247, 148, 29, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
  }
}


@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* ============================
     FONT FAMILY VARIABLES
  ============================ */
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;

  /* ============================
     FONT WEIGHT VARIABLES
  ============================ */
  --fw-thin: 100;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* ============================
     EXAMPLE COLOR VARIABLES
  ============================ */
  --color-primary: #f7941d;
  --color-secondary: #333333;

  /* ============================
     FONT SIZE VARIABLES (optional)
  ============================ */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 32px;
  --fs-20: 20px;
  --fs-14: 14px;
  --fs-28: 28px;
}

.containerr {
  width: 100%;
  max-width: 1102px; /* your required width */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;

  /* responsive padding */
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

@media (max-width: 640px) {
  .containerr {
    max-width: 320px !important;
    width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
strong,
a,
li,
button,
input,
textarea {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.font-18 {
  font-size: 18px;
  font-weight: 700;
}

.font-20 {
  font-size: 20px;
  font-weight: 700;
}

.font-22 {
  font-size: 22px;
  font-weight: 700;
}

.border-gray-1 {
  border: 1px solid #cccccc;
}

/* button {
  display: block;
  border-style: none;
  border-radius: 8px;
  left: 27px;
  top: 7538px;
  z-index: 199;
  width: 269px;
  height: 41px;
  background: rgba(250, 173, 49, 1);
  box-shadow: none;
  text-shadow: none;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: Montserrat;
  font-style: normal;
  text-align: center;
  background-repeat: no-repeat;
} */

.input-field {
  font-size: 12px;
}

.grecaptcha-badge {
    visibility: hidden !important;
}