body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
/* modal */

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-footer,
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-footer,
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-footer,
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-footer,
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-footer,
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.justify-content-sm-start {
  justify-content: flex-start !important;
}
.justify-content-sm-end {
  justify-content: flex-end !important;
}
.justify-content-sm-center {
  justify-content: center !important;
}
.justify-content-sm-between {
  justify-content: space-between !important;
}
.justify-content-sm-around {
  justify-content: space-around !important;
}
.justify-content-sm-evenly {
  justify-content: space-evenly !important;
}
.text-center {
  text-align: center !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
/* @media (max-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    overflow-x: hidden;
  }
} */
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-form-control-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* margin */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}

/* padding */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}

/* row */

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* column */
.col {
  flex: 1 0 0%;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* gap */
.g-sm-0,
.gx-sm-0 {
  --bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
  --bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
  --bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
  --bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
  --bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
  --bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
  --bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
  --bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
  --bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
  --bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
  --bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
  --bs-gutter-y: 3rem;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}

.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
  cursor: pointer;
}




/*===============================*/

/*@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");*/
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", serif;
  background: #000;
  overflow-x: hidden;
}

p,
li,
span,
ol,
a,
strong,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-size: clamp(15px, 3vw, 17px);
  color: #000;
}

.para {
  line-height: 1.6;
  margin-bottom: 10px;
}
.para:last-child {
  margin: 0;
}
.para strong {
  color: #d6016c;
}
.para.white {
  color: #fff;
}
.para.center {
  text-align: center;
}

.list {
  list-style: disc;
  margin-left: 20px;
}
.list li {
  list-style: disc;
  margin-bottom: 15px;
  line-height: 1.6;
}
.list li strong,
.list li a {
  color: #d6016c;
}
.list li::marker {
  font-size: 31px;
}
.list.white li {
  color: #fff;
}

button {
  border: none;
  background: transparent;
}

.theme-btn {
  border: 1px solid;
  padding: 10px 20px;
  font-family: "Courgette", serif;
  color: #d6016c;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 30px;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
}
.theme-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #000;
  left: 0;
  bottom: 0;
  transition: 0.4s ease-in-out;
  z-index: -1;
}
.theme-btn.black {
  background: #000;
  color: #fff;
}
.theme-btn.black::before {
  filter: invert(1) brightness(100);
}
.theme-btn.black:hover {
  border-color: #fff;
}
.theme-btn.black:hover:after {
  background: #d6016c !important;
}
.theme-btn.white {
  color: #fff;
}
.theme-btn.white::before {
  filter: invert(1) brightness(100);
}
.theme-btn.white:hover {
  border-color: #000;
}
.theme-btn.call::before {
  background: url(../img/call.svg) no-repeat;
  content: "";
  position: relative;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.theme-btn.call.alt:hover {
  color: #d6016c;
}
.theme-btn.call.alt:hover::before {
  filter: brightness(0) saturate(100%) invert(13%) sepia(92%) saturate(5428%) hue-rotate(322deg) brightness(83%) contrast(103%);
}
.theme-btn.call.alt:hover:after {
  background: #fff;
}
.theme-btn.call.dark-bg {
  background: #d6016c;
  color: #fff;
  border: 1px solid #d6016c;
}
.theme-btn.call.dark-bg::before {
  filter: invert(1) brightness(100);
}
.theme-btn.call.dark-bg:hover {
  color: #d6016c;
}
.theme-btn.call.dark-bg:hover:after {
  background: #fff;
}
.theme-btn.call.dark-bg:hover::before {
  filter: brightness(0) saturate(100%) invert(13%) sepia(92%) saturate(5428%) hue-rotate(322deg) brightness(83%) contrast(103%);
}
.theme-btn.profile::before {
  background: url(../img/profile.svg) no-repeat;
  content: "";
  position: relative;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(13%) sepia(92%) saturate(5428%) hue-rotate(322deg) brightness(83%) contrast(103%);
}
.theme-btn.profile:hover:after {
  background: #fff;
}
.theme-btn.whatsapp-btn {
  border-color: #25d366;
  color: #25d366 !important;
}
.theme-btn.whatsapp-btn::before {
  background: url(../img/whatsapp.svg) no-repeat;
  content: "";
  position: relative;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(69%) sepia(69%) saturate(547%) hue-rotate(83deg) brightness(89%) contrast(87%);
}
.theme-btn.whatsapp-btn:hover {
  color: #fff;
}
.theme-btn.whatsapp-btn:hover::before {
  filter: invert(1) brightness(100);
}
.theme-btn.whatsapp-btn:hover::after {
  background: #25d366;
}
.theme-btn:hover:after {
  width: 100%;
}
@media (max-width: 767px) {
  .theme-btn::before {
    height: 20px !important;
    width: 20px !important;
  }
}

.spacing {
  padding: 70px 0px;
}
@media (max-width: 991px) {
  .spacing {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .spacing {
    padding: 30px 0;
  }
}

.heading-wrap {
  margin-bottom: 30px;
}

.main-heading,
.sub-heading {
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #fff;
}
.main-heading strong,
.sub-heading strong {
  color: #d6016c;
}
.main-heading.alt,
.sub-heading.alt {
  text-align: left;
}
.main-heading.white,
.sub-heading.white {
  color: #fff;
}
.main-heading.white strong,
.sub-heading.white strong {
  color: #000;
}
.main-heading.dark,
.sub-heading.dark {
  color: #000;
}
.main-heading.dark strong,
.sub-heading.dark strong {
  color: #d6016c;
}

.main-heading {
  font-size: clamp(28px, 3.5vw, 35px);
}
.main-heading strong {
  font-size: clamp(28px, 3.5vw, 35px);
}

.sub-heading {
  font-size: clamp(25px, 2.8vw, 28px);
}
.sub-heading strong {
  font-size: clamp(25px, 2.8vw, 28px);
}

.img-wrap {
  height: 100%;
  width: 100%;
}
.img-wrap.icon-wrap img {
  filter: invert(1) brightness(100);
}
.img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.img-wrap img.contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.img-wrap .bg-removed {
  mix-blend-mode: hard-light;
  filter: contrast(1);
  -o-object-fit: contain;
  object-fit: contain;
}

.content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
}
.content.black p,
.content.black span {
  color: #fff;
}
.content.black a,
.content.black strong {
  color: #d6016c;
}
.content.pink {
  background: #d6016c;
}
.content.pink p,
.content.pink span {
  color: #fff;
}
.content.pink p strong {
  color: #bbf5d1;
}

.reverse {
  flex-wrap: wrap-reverse;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #000;
  padding: 20px 40px;
}
header.scrolled {
  transition: 0.4s ease-in-out;
  background: #fff;
  padding: 10px 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
header.scrolled .logo {
  font-size: clamp(18px, 2.6vw, 26px);
  color: #000;
}
header.scrolled .logo img {
  height: 30px;
  width: 30px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(92%) saturate(5428%) hue-rotate(322deg) brightness(83%) contrast(103%);
}
header.scrolled .logo strong {
  color: #d6016c;
  font-size: clamp(18px, 2.6vw, 26px);
}
header.scrolled .nav-list a {
  font-size: 16px;
}
@media (min-width: 991px) {
  header.scrolled .nav-list a {
    color: #000;
  }
}
header.scrolled .menu-toggle span {
  background: #d6016c;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .logo {
  font-size: clamp(20px, 3vw, 30px);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Courgette", serif;
  color: #fff;
}
header .logo img {
  height: 40px;
  width: 40px;
}
header .logo strong {
  color: #d6016c;
  font-size: clamp(20px, 3vw, 30px);
}
header .nav-list {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .nav-list a {
  display: flex;
  align-items: center;
  padding: 0px 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(15px, 3vw, 18px);
}
@media (max-width: 1200px) and (min-width: 991px) {
  header .nav-list a {
    padding: 0 20px;
  }
}
header .theme-btn.call {
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
}
header .theme-btn.call span {
  color: #fff;
}
@media (max-width: 767px) {
  header .theme-btn.call {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .theme-btn.call span {
    display: none;
  }
}
header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}
header .menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
}
@media (max-width: 991px) {
  header {
    padding: 20px;
  }
  header.scrolled {
    padding: 10px 20px;
  }
  header.scrolled .nav-list {
    left: -30px;
    top: calc(100% + 10px);
    width: calc(100% + 60px);
  }
  header .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: -40px;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 999;
    width: calc(100% + 80px);
  }
  header .nav-list.active {
    display: flex;
  }
  header .menu-toggle {
    display: flex;
  }
  header .theme-btn.call {
    font-size: 14px;
    padding: 8px 16px;
  }
  header .nav-list a {
    padding: 10px 0;
  }
}

.dual-btn {
  display: flex;
  gap: 20px;
}
.dual-btn.alt {
  flex-flow: column;
  gap: 10px;
}
.dual-btn.alt .theme-btn {
  flex-grow: 1;
  width: 100%;
  justify-content: center;
}
.dual-btn.center {
  justify-content: center;
}
.dual-btn.margin {
  margin-top: 30px;
}
@media (max-width: 455px) {
  .dual-btn {
    flex-flow: column;
    align-items: center;
  }
  .dual-btn .theme-btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-banner {
  height: 600px;
  background: url(../img/banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.hero-banner::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
}
.hero-banner .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 30px;
  height: 100%;
}
.hero-banner .hero-content .hero-title {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 25px);
  font-family: "Courgette", serif;
  color: #fff;
  text-transform: capitalize;
}
.hero-banner .hero-content .hero-heading {
  font-size: clamp(25px, 5vw, 50px);
  color: #fff;
  text-align: center;
}
.hero-banner .hero-content .hero-heading strong {
  font-size: clamp(25px, 5vw, 50px);
  color: #d6016c;
}
@media (max-width: 767px) {
  .hero-banner {
    max-height: 500px;
  }
}

.outer-wrap {
  margin-bottom: 40px;
}
.outer-wrap:last-child {
  margin: 0;
}

.cta {
  background: #fff;
  display: block;
}
.cta .cta-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.cta .content {
  display: flex;
  flex-flow: column;
  gap: 15px;
  align-items: center;
}
.cta .content strong {
  font-size: clamp(20px, 5vw, 50px);
  font-family: "Courgette", serif;
}
.cta .content a {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  padding: 10px 30px;
  font-size: clamp(16px, 3vw, 30px);
}
.cta .content a:after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  background: #d6016c;
  z-index: -1;
  left: 0;
  transition: 0.2s ease-in;
  top: 0;
  transform: skew(40deg, 0);
}
.cta .content a::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  background: #d6016c;
  z-index: -1;
  left: 0;
  transition: 0.2s ease-in;
  bottom: 0;
  transform: skew(-40deg, 0);
}
.cta .content a:hover {
  color: #d6016c;
}
.cta .content a:hover:after,
.cta .content a:hover:before {
  background: #f9a8d4;
}
.cta .content p {
  font-size: clamp(14px, 2vw, 20px);
  text-align: center;
}

.cg-wrap {
  background: url(../img/bg2.webp) repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cg-wrap .name {
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 2.4vw, 24px);
  display: block;
  font-family: "Courgette", serif;
  text-transform: capitalize;
}
.cg-wrap .cg-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.4196078431);
}
.cg-wrap .cg-card img {
  height: 200px;
  width: 200px;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cg-wrap .cg-card img {
    height: 165px;
    width: 165px;
  }
}
@media (max-width: 360px) {
  .cg-wrap .cg-card img {
    height: 130px;
    width: 130px;
  }
}
.cg-wrap .cg-card .theme-btn::before {
  height: 20px;
  width: 20px;
  font-size: 14px;
}
.cg-wrap .dual-btn {
  justify-content: center;
}
.cg-wrap .cg-btn {
  background: #fff;
}
.cg-wrap .cg-btn:hover {
  color: #fff;
}
.cg-wrap .cg-btn:hover::before {
  filter: invert(1) brightness(100);
}
.cg-wrap .cg-btn:hover:after {
  background: #d6016c;
}

.hire-wrap .hire-card {
  background: #d6016c;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
  height: 100%;
}
.hire-wrap .hire-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../img/kiss.svg) repeat;
  background-size: 80px;
  background-position: center;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0.1;
}
.hire-wrap .hire-card span,
.hire-wrap .hire-card p {
  color: #fff;
}
.hire-wrap .hire-card span {
  font-size: clamp(16px, 2.2vw, 22px);
  font-family: "Courgette", serif;
  display: block;
  margin-bottom: 15px;
}

.benefit-outer {
  background: url(../img/benefits-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.benefit-outer:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
}
.benefit-outer .benefit-card {
  padding: 25px 25px 25px 50px;
  position: relative;
  overflow: hidden;
  border-radius: 96% 4% 96% 4%/3% 95% 5% 97%;
  background: rgba(0, 0, 0, 0.6941176471);
  height: 100%;
  display: flex;
  align-items: center;
}
.benefit-outer .benefit-card p {
  position: relative;
  color: #fff;
}
.benefit-outer .benefit-card span {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: clamp(40px, 13vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  color: #fff;
  font-weight: 600;
  font-family: "Courgette", serif;
}

.faq-wrap {
  position: relative;
  background: #fff;
}
.faq-wrap .faq-card {
  z-index: 99;
  border: 1px solid #fff;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(214, 1, 107, 0.63);
  border-radius: 20px;
  position: relative;
}
.faq-wrap .faq-card span {
  display: flex;
  gap: 10px;
  color: #fff;
  align-items: center;
  margin-bottom: 20px;
  font-size: clamp(18px, 2.4vw, 24px);
}
.faq-wrap .faq-card span strong {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  height: 50px;
  width: 50px;
  color: #d6016c;
  font-size: clamp(20px, 3vw, 30px);
  font-family: "Courgette", serif;
  flex-shrink: 0;
}
.faq-wrap .faq-card p {
  color: #fff;
  padding-left: 20px;
}
.faq-wrap .img-wrap {
  position: absolute;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.faq-wrap .img-wrap img {
  max-width: 400px;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
  object-fit: contain;
}

.divider {
  margin: 20px auto;
}

footer {
  background: url(../img/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
footer::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.4;
}
footer .footer-wrap {
  padding: 20px 0;
}
footer .divider {
  opacity: 0.3;
  background: transparent;
  border: 1px dashed #fff;
}
footer .footer-heading {
  color: #fff;
  font-size: clamp(18px, 2vw, 25px);
  text-transform: capitalize;
  font-family: "Courgette", serif;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .footer-heading:after,
footer .footer-heading::before {
  content: "";
  position: relative;
  height: 1px;
  width: 40px;
  background: #fff;
}
footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer ul li {
  color: #fff;
  padding: 5px 30px;
}
footer ul li:hover {
  color: #d6016c;
}
footer ul li:hover a {
  color: #d6016c;
}
footer ul a {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
}
footer ul a img {
  filter: invert(1) brightness(100);
  height: 30px;
}
@media (max-width: 767px) {
  footer ul li {
    padding: 5px 20px;
  }
}
footer .copy-right {
  padding: 10px;
  background: rgba(0, 0, 0, 0.7450980392);
}
footer .copy-right p,
footer .copy-right span,
footer .copy-right a {
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  footer {
    padding: 0 0 50px;
  }
}

.bread-banner {
  background: linear-gradient(to bottom right, rgba(214, 1, 108, 0.3215686275), rgba(0, 0, 0, 0.7490196078), rgba(0, 0, 0, 0.7882352941)), url(../img/benefits-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 170px 40px 70px;
}
.bread-banner.escort-banner {
  background: linear-gradient(to bottom right, rgba(214, 1, 108, 0.3215686275), rgba(0, 0, 0, 0.7490196078), rgba(0, 0, 0, 0.7882352941)), url(../img/escort-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.bread-banner .bread-heading {
  font-size: clamp(24px, 5vw, 50px);
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Courgette", serif;
  margin-bottom: 15px;
}
.bread-banner .bread-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.bread-banner .bread-list li {
  color: #fff;
}
.bread-banner .bread-list li a {
  color: #d6016c;
}

.call-girl-wrap .main-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.call-girl-wrap .main-heading::after,
.call-girl-wrap .main-heading::before {
  content: "";
  position: relative;
  height: 30px;
  width: 30px;
  background: url(../img/star.webp) no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.cg-about-wrap .img-wrap {
  position: relative;
  padding: 20px 0;
}
.cg-about-wrap .img-wrap span {
  position: absolute;
  top: 0px;
  left: 0px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 40px;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 2.2vw, 22px);
}
.cg-about-wrap .img-wrap span::after,
.cg-about-wrap .img-wrap span::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  background: #d6016c;
  z-index: -1;
  left: 0;
  transition: 0.2s ease-in;
  z-index: -1;
}
.cg-about-wrap .img-wrap span::after {
  top: 0;
  transform: skew(40deg, 0deg);
}
.cg-about-wrap .img-wrap span::before {
  bottom: 0;
  transform: skew(-40deg, 0deg);
}

.incall-wrap .sub-heading {
  margin-bottom: 25px;
  color: #d6016c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
  overflow: hidden; /* Prevents the line from overflowing */
  padding: 10px 30px;
}
.incall-wrap .sub-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #d6016c, #f9a8d4, #d6016c);
  opacity: 0.6;
  transform-origin: bottom right;
  z-index: -1;
}
.incall-wrap .incall-card {
  background: #fff;
  padding: 30px;
}

/* General Style for the Content Section */
.content-section {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Josefin Sans", serif, sans-serif;
  /* Heading Style */
  /* Paragraph Style */
}
.content-section .main-heading {
  font-weight: 600;
  color: #f9a8d4;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: "Courgette", serif;
}
.content-section .para {
  line-height: 1.8;
  margin-right: 0;
  height: 100%;
  padding: 30px;
  background: rgba(164, 2, 83, 0.651);
  position: relative;
  z-index: 1;
}
.content-section .para:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../img/loving.svg) no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(1) brightness(100);
}

.spa-wrap .img-wrap.spa-img img {
  border-radius: 58% 42% 68% 32%/44% 63% 37% 56%;
}
.spa-wrap .special-text {
  padding: 20px 30px;
  border: 1px dashed #fff;
  font-family: "Courgette", serif;
  display: flex;
  flex-flow: column;
  gap: 15px;
}
.spa-wrap .special-text p {
  font-size: clamp(16px, 2vw, 20px);
}
.spa-wrap .special-text strong {
  font-size: clamp(14px, 2vw, 16px);
  color: #f9a8d4;
  display: block;
  padding: 10px;
  border: 1px solid;
  width: -moz-fit-content;
  width: fit-content;
}

.vip-wrap {
  background: url(../img/bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.vip-wrap .vip-content {
  padding: 30px;
  background: rgba(9, 9, 9, 0.6745098039);
  margin-bottom: 40px;
}
.vip-wrap .vip-content:last-child {
  margin: 0;
}
.vip-wrap .vip-content p {
  text-align: center;
}
.vip-wrap .vip-content .main-heading {
  color: #f9a8d4;
}

.booking-wrap p {
  text-align: center;
}
.booking-wrap .inner-cta {
  background: url(../img/benefits-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px;
  position: relative;
  z-index: 1;
  font-family: "Courgette", serif;
}
.booking-wrap .inner-cta .para {
  font-size: clamp(16px, 3vw, 18px);
}
.booking-wrap .inner-cta .para a {
  color: #f9a8d4;
  font-size: clamp(16px, 3vw, 20px);
  display: inline-block;
  padding: 8px;
  margin: 0 5px;
  border: 1px solid #d6016c;
}
.booking-wrap .inner-cta .para a:hover {
  background: #fff;
}
.booking-wrap .inner-cta:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
}

.table-wrap {
  margin-top: 30px;
  /* Responsive Table */
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrap th,
.table-wrap td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}
.table-wrap th {
  background-color: #d6016c;
  color: #fff;
  text-transform: uppercase;
}
.table-wrap td {
  background-color: rgba(5, 5, 5, 0.3725490196);
  color: #fff;
}
.table-wrap td:nth-child(1) {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #f9a8d4;
}
.table-wrap tr:nth-child(even) td {
  background-color: #000000;
}
@media screen and (max-width: 600px) {
  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap th,
  .table-wrap td,
  .table-wrap tr {
    display: block;
  }
  .table-wrap th {
    display: none;
  }
  .table-wrap td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .table-wrap td:nth-child(1) {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) and (max-width: 450px) {
  .table-wrap td:nth-child(1) {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .table-wrap td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: bold;
  }
  .table-wrap td:last-child {
    padding-bottom: 10px;
  }
}
.table-wrap .table-heading {
  padding: 8px 30px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.table-wrap .table-heading::after {
  content: "";
  position: relative;
  height: 2px;
  width: 60px;
  background: #f9a8d4;
}
.table-wrap .table-heading::before {
  content: "";
  position: relative;
  height: 2px;
  width: 60px;
  background: #f9a8d4;
}

.warning-wrap {
  display: flex;
  align-items: center;
  flex-flow: column;
  background: #fff;
  padding: 40px;
  margin-top: 20px;
  gap: 15px;
}
.warning-wrap span {
  font-size: clamp(25px, 5vw, 50px);
  font-weight: 700;
  color: red;
  opacity: 0.7;
  display: flex;
  align-items: center;
  line-height: 1;
}
.warning-wrap p {
  color: red;
  font-size: clamp(16px, 2vw, 20px);
}
.warning-wrap img {
  max-height: 80px;
}

.profile-wrapper .cg-card {
  border: 1px solid #fff;
  border-radius: 30px;
  overflow: hidden;
}
.profile-wrapper .cg-card .cg-img {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.profile-wrapper .cg-card .name {
  font-size: clamp(16px, 2.5vw, 24px);
  font-family: "Courgette", serif;
  color: #fff;
  text-align: center;
}
.profile-wrapper .cg-card img {
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.profile-wrapper .cg-card .info {
  background: #fff;
}
.profile-wrapper .info-heading {
  font-size: clamp(15px, 1.8vw, 20px);
  color: #000;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}
.profile-wrapper .info-heading.white {
  color: #fff;
}
.profile-wrapper .info-heading.white::before {
  background: #fff;
}
.profile-wrapper .info-heading::before {
  content: "";
  position: relative;
  height: 2px;
  width: 30px;
  background: #000;
}
.profile-wrapper .other-info {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.profile-wrapper .info-list li {
  display: flex;
}
.profile-wrapper .info-list li:nth-child(odd) {
  background: #e0dada;
}
.profile-wrapper .info-list li span {
  display: block;
  flex-grow: 1;
  width: 50%;
  padding: 20px;
  line-height: 1;
}
.profile-wrapper .info-list li span:nth-child(2) {
  color: #d6016c;
  font-family: "Courgette", serif;
}
.profile-wrapper .cg-content {
  margin-bottom: 20px;
}
.profile-wrapper .cg-content p {
  padding-left: 40px;
}
.profile-wrapper .offer-wrap ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
}
.profile-wrapper .offer-wrap ul li {
  white-space: nowrap;
  color: #fff;
  padding: 5px 10px;
  border-right: 1px solid #fff;
}
.profile-wrapper .offer-wrap ul li:last-child {
  border: none;
}

.common-content-wrap {
  display: flex;
  justify-content: center;
  flex-flow: column;
  height: 100%;
}

.escort-wrap .common-content-wrap img {
  max-height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.escort-img {
  position: relative;
  z-index: 1;
  height: 100%;
}
.escort-img::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  border: 1px solid #fff;
  z-index: -1;
  left: -10px;
  top: -10px;
}
.escort-img img:nth-child(1) {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .escort-img {
    max-height: 400px;
    width: -moz-fit-content;
    width: fit-content;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .escort-img {
    max-height: 350px;
  }
}

.famous-card {
  padding: 30px;
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8235294118);
  border-radius: 10px;
}
.famous-card > strong {
  font-size: clamp(25px, 5vw, 50px);
  color: #d6016c;
  font-family: "Courgette", serif;
  line-height: 1;
}

.escort-content-wrapper .common-content-wrap {
  background: #000;
  padding: 20px;
}
.escort-content-wrapper .common-content-wrap .para {
  text-align: center;
}
.escort-content-wrapper .common-content-wrap .inner {
  padding: 30px;
  border: 1px dashed #fff;
  margin-bottom: 20px;
}
.escort-content-wrapper .common-content-wrap .inner:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .escort-content-wrapper .common-content-wrap .inner {
    padding: 20px;
  }
}
.escort-content-wrapper .escort-img {
  height: 100%;
}
.escort-content-wrapper .escort-img::after {
  background: #f9a8d4;
  border-color: #d6016c;
}
.escort-content-wrapper .escort-img img {
  height: 100%;
  max-height: 100%;
}
.escort-content-wrapper .reverse .escort-img::after {
  left: auto;
  right: -10px;
}

.book-es {
  background: #fff;
}
.book-es .main-heading strong {
  color: #25d366;
}
.book-es p {
  text-align: center;
}
.book-es .wa-content {
  padding: 20px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.book-es .wa-content p {
  color: #25d366;
}
.book-es .wa-content p strong {
  color: #fff;
}
.book-es .wa-content:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #000;
  z-index: -1;
  border-radius: 50px 50px 0;
}
.book-es .wa-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -4px;
  height: 30px;
  width: 30px;
  background: #000;
  transform: rotate(79deg) skew(-30deg, 0deg);
}
.book-es .wa-special {
  font-family: "Courgette", serif;
  font-size: clamp(18px, 2.4vw, 24px);
  color: #25d366;
}

.why-choose-wrap .why-choose-left {
  padding: 30px;
  border: 4px double #d6016c;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.why-choose-wrap .why-choose-left:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: url(../img/kiss.svg) no-repeat;
  background-size: 150px;
  background-position: bottom right;
  filter: invert(1) brightness(100);
  opacity: 0.5;
}
.why-choose-wrap .heading {
  color: #f9a8d4;
  font-size: clamp(16px, 2.4vw, 24px);
  margin-bottom: 15px;
  display: block;
}
.why-choose-wrap ul {
  padding-left: 20px;
}
.why-choose-wrap ul li {
  padding: 20px;
  background: #f9a8d4;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}
.why-choose-wrap ul li::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: -6px;
  background: #f9a8d4;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.reach-out {
  background: #d6016c;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 15px 30px;
}
.reach-out .para {
  font-family: "Courgette", serif;
  font-size: clamp(16px, 2.4vw, 24px);
}

@media (max-width: 767px) {
  .about-wrap .outer-wrap .img-wrap {
    max-height: 350px;
  }
}
@media (max-width: 575px) {
  .about-wrap .outer-wrap .img-wrap {
    max-height: 250px;
  }
}

.call-fixed {
  position: fixed;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: "Courgette", serif;
  color: #fff;
  background: #d6016c;
  z-index: 999;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-fixed img {
  height: 30px;
  width: 30px;
  filter: invert(1) brightness(100);
}

.wa-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-family: "Courgette", serif;
  color: #fff;
  background: #25d366;
  z-index: 999;
  padding: 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-fixed img {
  height: 30px;
  width: 30px;
  filter: invert(1) brightness(100);
}

@media (max-width: 767px) {
  .wa-fixed,
  .call-fixed {
    display: none;
  }
}

.mobile-contact-footer {
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 999;
  margin: 0;
}
@media (min-width: 767px) {
  .mobile-contact-footer {
    display: none;
  }
}
.mobile-contact-footer li {
  background: #25d366;
  border-radius: 10px 0 0;
  width: 48%;
}
.mobile-contact-footer li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  padding: 8px 14px;
  text-transform: capitalize;
  font-family: "Courgette", serif;
}
.mobile-contact-footer li:nth-child(1) {
  background: #d6016c;
  border-radius: 0 10px 0 0;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-list li a {
  display: flex;
  padding: 8px;
  color: #fff;
  border: 1px solid;
  background: #d6016c;
  font-size: clamp(12px,1.6vw,16px);
  transition: .4s all ease-in-out;
}
.area-list li a:hover{
  background: #fff;
  color: #d6016c;
}

.footer-area-list {
  display: flex;
  flex-wrap: wrap;
}
.footer-area-list li {
  padding: 8px 0px;
  margin: 0;
}
.footer-area-list li:last-child a {
  border: none;
}
.footer-area-list a {
  display: flex;
  padding: 0 10px;
  width: 100%;
  border-right: 1px solid #fff;
  font-size: clamp(12px,1.6vw,16px);
}

/* ===== Universal Text Fix for Dark Theme ===== */

/* All paragraphs */
.para {
  color: #ffffff !important;
}

/* List text inside paragraphs or containers */
.para li,
ul.para li,
ol.para li {
  color: #ffffff !important;
}

/* General list items if needed */
ul li,
ol li {
  color: #ffffff;
}

/* Footer text fix */
footer,
footer p,
footer span {
  color: #ffffff !important;
}

/* Force list items inside .list to use black text */
ul.list li {
  color: #000 !important;
}
