/* @import url('https://fonts.googleapis.com/css2?family=Inter&display=swap'); */
@font-face {
  font-family: 'futura-bk-bt';
  src: url(/assets/fonts/Futura/Futura\ Bk\ BT\ Book.ttf);
}

@font-face {
  font-family: 'kaleko-heavy';
  src: url(/assets/fonts/Kaleko/Kaleko105-Heavy.ttf);
}

@font-face {
  font-family: 'kaleko-bold';
  src: url(/assets/fonts/Kaleko/Kaleko105-Bold.ttf);
}

*:focus-visible {
  outline: none;
}

body {
  margin: 0;
  font-family: 'futura-bk-bt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
.header-font-heavy,
h1 span,
h2 span,
.header-font-heavy span {
  font-family: 'kaleko-heavy';
}

h3,
h4,
h5,
h6,
.header-font-bold,
h3 span,
h4 span,
h5 span,
h6 span,
.header-font-bold span {
  font-family: 'kaleko-bold';
}

.body-font {
  font-family: 'futura-bk-bt';
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.react-datepicker__header {
  background-color: var(--primary) !important;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Main Module Css

/* common colors for app */
.app_colors {
  /* Gray */
  /* gray-500*/
  --gray: #8e9195;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d2d6db;
  --gray-400: #d2d3d5;
  --gray-600: #4d5761;
  --gray-700: #384250;
  --gray-800: #1f2a37;
  --gray-900: #111927;

  /* Primary */
  /* primary-500 (brand color)*/
  --primary: #fdbe10;
  --primary-50: #fff8e1;
  --primary-100: #ffebb3;
  --primary-200: #fede82;
  --primary-300: #fed250;
  --primary-400: #fec72b;
  --primary-600: #fdb00a;
  --primary-700: #fc9d0a;
  --primary-800: #fc8c0a;
  --primary-900: #fb6d09;

  /* Secondary */
  /* secondary-800 (brand color)*/
  --secondary: #6176f7;
  --secondary-50: #f7f8ff;
  --secondary-100: #eff1fe;
  --secondary-200: #d0d6fd;
  --secondary-300: #d0d6fd;
  --secondary-400: #c0c8fc;
  --secondary-500: #b0bbfb;
  --secondary-600: #a0adfa;
  --secondary-700: #909ff9;
  --secondary-900: #445df5;

  /* Error */
  --error-50: #fef3f2;
  --error-100: #fee4e2;
  --error-200: #fecdca;
  --error-300: #fda29b;
  --error-400: #f97066;
  --error-500: #f04438;
  --error-600: #d92d20;
  --error-700: #b42318;
  --error-800: #912018;
  --error-900: #7a271a;

  /* Warning */
  --warning-50: #fffaeb;
  --warning-100: #fef0c7;
  --warning-200: #fedf89;
  --warning-300: #fec84b;
  --warning-400: #fdb022;
  --warning-500: #f79009;
  --warning-600: #dc6803;
  --warning-700: #b54708;
  --warning-800: #93370d;
  --warning-900: #7a2e0e;

  /* Success */
  --success-50: #ecfdf3;
  --success-100: #d1fadf;
  --success-200: #a6f4c5;
  --success-300: #6ce9a6;
  --success-400: #32d583;
  --success-500: #12b76a;
  --success-600: #039855;
  --success-700: #027a48;
  --success-800: #05603a;
  --success-900: #054f31;

  /* Brand Colors */
  --black: #343433;
  --secondary-2: #fff8e1;
  --white: #fff;

  /* Base color */
  --base-black: #000;

  /* State Color */
  --info: #a0c3ff;
  --error: #ba0000;
  --success: #76ca66;
  --warning: #fbc756;

  /* size in vw */
  --size-10vw: 10vw;
  --size-20vw: 20vw;
  --size-30vw: 30vw;
  --size-40vw: 40vw;
  --size-50vw: 50vw;
  --size-60vw: 60vw;
  --size-70vw: 70vw;
  --size-80vw: 80vw;
  --size-90vw: 90vw;
  --size-100vw: 100vw;

  /* size in vh */
  --size-10vh: 10vh;
  --size-20vh: 20vh;
  --size-30vh: 30vh;
  --size-40vh: 40vh;
  --size-50vh: 50vh;
  --size-60vh: 60vh;
  --size-70vh: 70vh;
  --size-80vh: 80vh;
  --size-90vh: 90vh;
  --size-100vh: 100vh;

  /*size in px */
  --size-2px: 2px;
  --size-4px: 4px;
  --size-8px: 8px;
  --size-16px: 16px;
  --size-32px: 32px;
  --size-64px: 64px;
  --size-128px: 128px;
  --size-256px: 256px;

  /* font weight numbers */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  /*  */
}

.width_10_vw {
  width: 10vw;
}

.width_20_vw {
  width: 20vw;
}

.width_30_vw {
  width: 30vw;
}

.width_40_vw {
  width: 40vw;
}

.width_50_vw {
  width: 50vw;
}

.width_60_vw {
  width: 60vw;
}

.width_70_vw {
  width: 70vw;
}

.width_80_vw {
  width: 80vw;
}

.width_90_vw {
  width: 90vw;
}

.width_100_vw {
  width: 100vw;
}

.min_width_10_vw {
  min-width: 10vw;
}

.min_width_20_vw {
  min-width: 20vw;
}

.min_width_30_vw {
  min-width: 30vw;
}

.min_width_40_vw {
  min-width: 40vw;
}

.min_width_50_vw {
  min-width: 50vw;
}

.min_width_60_vw {
  min-width: 60vw;
}

.min_width_70_vw {
  min-width: 70vw;
}

.min_width_80_vw {
  min-width: 80vw;
}

.min_width_90_vw {
  min-width: 90vw;
}

.min_width_100_vw {
  min-width: 100vw;
}

.max_width_10_vw {
  max-width: 10vw;
}

.max_width_20_vw {
  max-width: 20vw;
}

.max_width_30_vw {
  max-width: 30vw;
}

.max_width_40_vw {
  max-width: 40vw;
}

.max_width_50_vw {
  max-width: 50vw;
}

.max_width_60_vw {
  max-width: 60vw;
}

.max_width_70_vw {
  max-width: 70vw;
}

.max_width_80_vw {
  max-width: 80vw;
}

.max_width_90_vw {
  max-width: 90vw;
}

.max_width_100_vw {
  max-width: 100vw;
}

.height_10_vh {
  height: 10vh;
  height: 10vh;
}

.height_20_vh {
  height: 20vh;
}

.height_30_vh {
  height: 30vh;
}

.height_40_vh {
  height: 40vh;
}

.height_50_vh {
  height: 50vh;
}

.height_60_vh {
  height: 60vh;
}

.height_70_vh {
  height: 70vh;
}

.height_80_vh {
  height: 80vh;
}

.height_90_vh {
  height: 90vh;
}

.height_100_vh {
  height: 100vh;
}

.min_height_10_vh {
  min-height: 10vh;
}

.min_height_20_vh {
  min-height: 20vh;
}

.min_height_30_vh {
  min-height: 30vh;
}

.min_height_40_vh {
  min-height: 40vh;
}

.min_height_50_vh {
  min-height: 50vh;
}

.min_height_60_vh {
  min-height: 60vh;
}

.min_height_70_vh {
  min-height: 70vh;
}

.min_height_80_vh {
  min-height: 80vh;
}

.min_height_90_vh {
  min-height: 90vh;
}

.min_height_100_vh {
  min-height: 100vh;
}

.max_height_10_vh {
  max-height: 10vh;
}

.max_height_20_vh {
  max-height: 20vh;
}

.max_height_30_vh {
  max-height: 30vh;
}

.max_height_40_vh {
  max-height: 40vh;
}

.max_height_50_vh {
  max-height: 50vh;
}

.max_height_60_vh {
  max-height: 60vh;
}

.max_height_70_vh {
  max-height: 70vh;
}

.max_height_80_vh {
  max-height: 80vh;
}

.max_height_90_vh {
  max-height: 90vh;
}

.max_height_100_vh {
  max-height: 100vh;
}

.main_section {
  min-height: calc(100vh - 15vh);
  padding-bottom: 60px;
}

.gap_1 {
  gap: 4px;
}

.gap_2 {
  gap: 8px;
}

.gap_3 {
  gap: 16px;
}

.gap_4 {
  gap: 24px;
}

.gap_5 {
  gap: 32px;
}

.font_regular {
  font-weight: 400;
}

.font_medium {
  font-weight: 500;
}

.font_semibold {
  font-weight: 600;
}

.font_bold {
  font-weight: 700;
}

.font_max_bold {
  font-weight: 900;
}

.display_2xl {
  font-size: 4.5rem;
  line-height: 4.95rem;
}

.display_xl {
  font-size: 3.5rem;
  line-height: 3.85rem;
}

.display_lg {
  font-size: 3rem;
  line-height: 3.3rem;
}

.display_md {
  font-size: 2.25rem;
  line-height: 2.75rem;
}

.display_sm {
  font-size: 2rem;
  line-height: 2.4rem;
}

.display_xs {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text_xl {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.text_lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text_md {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text_sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text_xs {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.tel-color:hover {
  color: var(--primary);
}
.color_primary {
  color: var(--primary);
}

.color_secondary {
  color: var(--secondary);
}

.react-datepicker-popper {
  z-index: 111 !important;
}

.btn {
  background-color: var(--primary-600);
  border-radius: 5px;
  color: var(--white);
  width: 93px;
  height: 43px;
  border: 0;
  padding: 0;
}

.btn:focus-visible {
  outline: 0;
}

.btn:hover {
  color: var(--white);
}

.cursor-pointer {
  cursor: pointer;
}

.bg-theme-primary {
  background-color: #fff8e1;
}

.kataria-text::before {
  content: '';
  background: url(/assets/images/kataria-logo.png) no-repeat center;
  background-size: cover;
  width: 14px /* width of the image */;
  height: 14px /* height of the image */;
  display: inline-block;
  margin: 0 1px 0 6px;
}

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

/* Section common */

.section-header {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}

.page-section {
  padding: 50px 0;
}
.page-section.page-section-dark {
  background-color: var(--gray-200);
}
.page-section-header {
  text-align: center;
  margin-bottom: 30px;
}
.page-section-header-title,
.page-section-header-title > span {
  color: var(--gray-700);
  font-family: 'futura-bk-bt' !important;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 0;
}
.page-section-header-sub-title,
.page-section-header-sub-title > span {
  font-size: 18px;
  margin-bottom: 0;
}
.page-section-content {
  text-align: justify;
  font-size: 16px;
}
.page-section-sub-header {
}
.page-section-sub-header-title {
}
.page-section-sub-header-sub-title {
}
.page-section-sub-header-sub-content {
  text-align: justify;
  font-size: 16px;
}
.card-title {
  font-size: 18px;
  line-height: 20px;
  color: var(--black);
  font-weight: 800;
}
.card-content {
  text-align: justify;
  font-size: 16px;
}

/*
 *  custom wesite scroll bar for the UI
 */

.custom-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  border-radius: 6px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #aaa;
}

/* btn bootstrap class */
.bs-btn:focus,
.bs-btn:active {
  box-shadow: none;
}
.bs-btn:disabled {
  background-color: var(--gray-200);
  cursor: not-allowed;
  border-color: var(--gray-600);
  color: var(--gray-600);
}

@media only screen and (max-width: 1200px) {
  /* Section common */

  .section-header {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .display_2xl {
    font-size: 3.75rem;
    line-height: 4.625rem;
  }

  .h-40 {
    height: 40%;
  }

  .display_xl {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .display_lg {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .display_md {
    font-size: 1.87rem;
    line-height: 2.375rem;
  }

  .display_sm {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .display_xs {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .text_xl {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .text_lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text_md {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .text_sm {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }

  .text_xs {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }

  /* Section common */

  .section-header {
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
  }
}

@media only screen and (max-width: 768px) {
  /* Section common */

  .section-header {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
  }
}

@media only screen and (max-width: 576px) {
  .display_2xl {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .display_xl {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .display_lg {
    font-size: 1.87rem;
    line-height: 2.375rem;
  }

  .display_md {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .display_sm {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .display_xs {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .text_xl {
    font-size: 1.12rem;
    line-height: 1.75rem;
  }

  .text_lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text_md {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .text_sm {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }

  .text_xs {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }

  /* Section common */

  .section-header {
    padding: 0.5rem 0;
    justify-content: space-around !important;
    /* margin-bottom: 2rem; */
  }

  .section-header > .section-title {
    text-align: center;
  }
}

.toastify {
  z-index: 10000 !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

@media only screen and (max-width: 576px) {
  .mt_95 {
    margin-top: 95px !important;
  }
}

.list-style-lower-roman {
  list-style: lower-roman;
}
.list-style-decimal {
  list-style: decimal;
}
.list-style-lower-alpha {
  list-style: lower-alpha;
}
.b-0 {
  border: 0 !important;
}
