:root {
  --bs-body-color: #0d0e10cc;
  --navbar-height: 4rem;
}

@font-face {
  font-family: JioTypeVar;
  src: url('/fonts/JioTypeVarW05-Regular.woff2') format('woff2'),
    url('/fonts/JioTypeVarW05-Regular.woff') format('woff');
}

@font-face {
  font-weight: 400;
  font-family: JioTypeVar;
  src: url('/fonts/JioTypeVarW05-Regular.woff2') format('woff2'),
    url('/fonts/JioTypeVarW05-Regular.woff') format('woff');
}

@font-face {
  font-weight: 500;
  font-family: JioType;
  src: url('/fonts/JioTypeW05-Medium.woff2') format('woff2'),
    url('/fonts/JioTypeW05-Medium.woff') format('woff');
}

@font-face {
  font-weight: 700;
  font-family: JioType;
  src: url('/fonts/JioTypeW05-Bold.woff2') format('woff2'),
    url('/fonts/JioTypeW05-Bold.woff') format('woff');
}

@font-face {
  font-weight: 800;
  font-family: JioType;
  src: url('/fonts/JioTypeW05-Bold.woff2') format('woff2'),
    url('/fonts/JioTypeW05-Bold.woff') format('woff');
}

@font-face {
  font-weight: 900;
  font-family: JioType;
  src: url('/fonts/JioTypeW05-ExtraBlack.woff2') format('woff2'),
    url('/fonts/JioTypeW05-ExtraBlack.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: JioTypeVar;
}

::selection {
  background-color: #c035c566;
}

:target {
  padding-top: calc(var(--navbar-height) + 1rem);
}

.text-justify {
  text-align: justify;
}

.form-control {
  border: none;
}

.form-control:focus {
  box-shadow: none;
}

.form-check.d-flex {
  gap: 0.35rem;
}

.form-check-input {
  --bs-body-bg: #571859;
  --bs-border-color: #ffffff;
  --bs-border-width: 0.125rem;
}

.form-check-input:focus {
  border-color: #d9008d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(217, 0, 141, 0.25);
}

.form-check-input:checked {
  background-color: #d9008d;
  border-color: #d9008d;
}

.btn:active,
.btn:focus,
.btn:focus-within,
.btn:focus-visible {
  box-shadow: none !important;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #d9008d;
  --bs-btn-border-color: #d9008d;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #ff6dcc;
  --bs-btn-hover-border-color: #ff6dcc;
  --bs-btn-focus-shadow-rgb: 192, 53, 197;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #e50e98;
  --bs-btn-active-border-color: #e50e98;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #d9008d;
  --bs-btn-disabled-border-color: #d9008d;
}

.btn-outline-primary {
  --bs-btn-color: #d9008d;
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #d9008d;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #d9008d;
  --bs-btn-hover-border-color: #d9008d;
  --bs-btn-focus-shadow-rgb: 192, 53, 197;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #ff6dcc;
  --bs-btn-active-border-color: #ff6dcc;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #d9008d;
  --bs-btn-disabled-bg: #ffffff;
  --bs-btn-disabled-border-color: #d9008d;
}

.link-primary {
  color: rgba(217, 0, 141, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: rgba(
    217,
    0,
    141,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: rgba(
    217,
    0,
    141,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-primary:focus,
.link-primary:hover {
  color: rgba(255, 109, 204, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: rgba(
    255,
    109,
    204,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: rgba(
    255,
    109,
    204,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-primary::selection {
  color: rgba(87, 24, 89, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: rgba(
    87,
    24,
    89,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: rgba(
    87,
    24,
    89,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-primary:focus::selection,
.link-primary:hover::selection {
  color: rgba(217, 0, 141, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: rgba(
    217,
    0,
    141,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: rgba(
    217,
    0,
    141,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.navbar {
  width: 100%;
  height: var(--navbar-height);
  background: #571859 !important;
  z-index: 99;
}

.list-group {
  list-style-type: none;
}

.list-group-item {
  padding: 0;
  border: none;
}

.list-group-disc {
  counter-reset: disc-section;
}

.list-group-disc > .list-group-item::before {
  content: counter(disc-section, disc) ' ';
  counter-increment: disc-section;
}

.list-group-circle {
  counter-reset: circle-section;
}

.list-group-circle > .list-group-item::before {
  content: counter(circle-section, circle) ' ';
  counter-increment: circle-section;
}

.list-group-decimal {
  counter-reset: decimal-section;
}

.list-group-decimal > .list-group-item::before {
  content: counter(decimal-section, decimal) '. ';
  counter-increment: decimal-section;
}

.list-group-lower-alpha {
  counter-reset: lower-alpha-section;
}

.list-group-lower-alpha > .list-group-item::before {
  content: counter(lower-alpha-section, lower-alpha) '. ';
  counter-increment: lower-alpha-section;
}

.list-group-upper-alpha {
  counter-reset: upper-alpha-section;
}

.list-group-upper-alpha > .list-group-item::before {
  content: counter(upper-alpha-section, upper-alpha) '. ';
  counter-increment: upper-alpha-section;
}

.list-group-lower-roman {
  counter-reset: lower-roman-section;
}

.list-group-lower-roman > .list-group-item::before {
  content: counter(lower-roman-section, lower-roman) '. ';
  counter-increment: lower-roman-section;
}

.list-group-upper-roman {
  counter-reset: upper-roman-section;
}

.list-group-upper-roman > .list-group-item::before {
  content: counter(upper-roman-section, upper-roman) '. ';
  counter-increment: upper-roman-section;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: JioType !important;
}

.brand-image {
  height: 1.5rem;
}

.login-button {
  --bs-btn-font-size: 0.75rem;
}

.login-button img {
  width: 1rem;
  height: 1rem;
}

.footer {
  background-color: #571859;
}

.footer-text {
  border-bottom: 1px solid #ffffff1a;
}

.lead-form {
  width: 100%;
  max-width: 32rem;
}

.lead-form .invalid-feedback.small {
  font-size: 0.75rem;
}

.lead-form-input {
  --bs-secondary-color: #a9a9a9;
  --bs-border-color: #d3d3d3;
  --bs-body-color: #ffffff;
  --bs-body-bg: transparent;
  --bs-secondary-bg: transparent;
}

.lead-form-input-invalid {
  --bs-border-color: var(--bs-danger);
}

.lead-form-button {
  width: 100%;
}

.footer-banner-logo {
  width: auto;
  height: 1.4rem;
}

.copyright-text {
  font-size: 0.75rem;
}

.footer-links .small {
  font-size: 0.8rem;
}

.shake {
  --shake-translate-x: 0.25rem;
  --shake-translate-y: 0rem;
  --shake-initial-translate-x: 0rem;
  --shake-initial-translate-y: 0rem;
  animation: shake 200ms linear 2 0ms;
}

#lead-form-toast-notification {
  --bs-primary-rgb: 217, 0, 141;
  --shake-translate-x: 0.5rem;
  width: min(var(--bs-toast-max-width), 90vw);
  position: fixed;
  top: 5rem;
  z-index: var(--bs-toast-zindex);
  transition: all 150ms ease-in-out;
}

#lead-form-toast-notification.show {
  --shake-initial-translate-x: 50%;
  opacity: 1;
  right: 50%;
  transform: translate(var(--shake-initial-translate-x), 0rem);
}

#lead-form-toast-notification:not(.show) {
  opacity: 0;
  right: 0;
  transform: translate(125%, 0rem);
}

@media only screen and (min-width: 380px) {
  .brand-image {
    height: 2rem;
  }

  .login-button {
    --bs-btn-font-size: 1rem;
  }

  .login-button img {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media only screen and (min-width: 576px) {
  #lead-form-toast-notification.show {
    --shake-initial-translate-x: 0rem;
    right: 1rem;
  }
}

@media only screen and (min-width: 768px) {
  .navbar {
    --navbar-height: 4.5rem;
  }

  .login-button img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .lead-form-button {
    width: auto;
  }

  #lead-form-toast-notification {
    top: 5.5rem;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translate(
      var(--shake-initial-translate-x),
      var(--shake-initial-translate-y)
    );
  }
  25%,
  75% {
    transform: translate(
      calc(var(--shake-initial-translate-x) + var(--shake-translate-x)),
      calc(var(--shake-initial-translate-y) + var(--shake-translate-y))
    );
  }
  50% {
    transform: translate(
      calc(var(--shake-initial-translate-x) - var(--shake-translate-x)),
      calc(var(--shake-initial-translate-y) - var(--shake-translate-y))
    );
  }
}
