:root{
    --gm-body-min-width: 360px;
  
    --gm-black: #000;
    --gm-black-rgb: 0, 0, 0;
    --gm-white: #fff;
    --gm-white-rgb: 255, 255, 255;
    --gm-gray: #6c757d;
    --gm-gray-dark: #343a40;
    --gm-gray-100: #f8f9fa;
    --gm-gray-200: #e9ecef;
    --gm-gray-300: #dee2e6;
    --gm-gray-400: #ced4da;
    --gm-gray-500: #adb5bd;
    --gm-gray-600: #6c757d;
    --gm-gray-700: #495057;
    --gm-gray-800: #343a40;
    --gm-gray-900: #212529;
  
    --gm-primary: #f36523;
    --gm-secondary: #000;
    --gm-success: #f36523;
    --gm-info: #0dcaf0;
    --gm-warning: #ffc107;
    --gm-danger: #dc3545;
    --gm-light: #f7f7f7;
    --gm-light-txt: #3a3a3a;
    --gm-dark: #212529;
  
    --gm-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --gm-body-font-family: 'Montserrat', sans-serif;
    --gm-body-font-size: 1.25rem;
    --gm-body-font-weight: 400;
    --gm-body-font-weight-bold: 700;
    --gm-body-line-height: 1.5;
    --gm-body-text-align: left;
    
    --gm-body-color: #221e1f;
    --gm-body-color-rgb: 62, 71, 74;
    --gm-body-bg: #fff;
    --gm-body-bg-rgb: 255, 255, 255;
    --gm-heading-color: #000;
    --gm-link-color: #f36523;
    --gm-link-decoration: none;
    --gm-link-hover-color: #221e1f;
      
    --gm-border-width: 1px;
    --gm-border-style: solid;
    --gm-border-color: #dee2e6;
    --gm-border-radius: 0.375rem;
  
    --gm-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --gm-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --gm-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --gm-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  @media (prefers-reduced-motion: no-preference) {
    :root {
      scroll-behavior: smooth;
    }
  }
  
  body {
    min-width: var(--gm-body-min-width);
    margin: 0;
    font-family: var(--gm-body-font-family);
    font-size: var(--gm-body-font-size);
    font-weight: var(--gm-body-font-weight);
    line-height: var(--gm-body-line-height);
    color: var(--gm-body-color);
    text-align: var(--gm-body-text-align);
    background-color: var(--gm-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--gm-border-width) solid;
    opacity: 0.25;
  }
  
  h6, h5, h4, h3, h2, h1, .h6, .h5, .h4, .h3, .h2, .h1 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gm-heading-color);
  }
  
  h1, .h1 {
    margin-top: 0;
    font-size: calc(1.375rem + 1.5vw);
  }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.5rem;
    }
  }
  
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2rem;
    }
  }
  
  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.75rem;
    }
  }
  
  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.5rem;
    }
  }
  
  h5, .h5 {
    font-size: 1.25rem;
  }
  
  h6, .h6 {
    font-size: 1rem;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  ol,
  ul {
    padding-left: 2rem;
  }
  
  ol,
  ul,
  dl {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  ol ol,
  ul ul,
  ol ul,
  ul ol {
    margin-bottom: 0;
  }
  
  b,
  strong {
    font-weight: var(--gm-body-font-weight-bold);
  }
  
  small {
    font-size: 0.875em;
  }
  
  sub,
  sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  a {
    color: var(--gm-link-color);
    text-decoration: var(--gm-link-decoration);
  }
  a:hover {
    color: var(--gm-link-hover-color);
  }
  
  a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  img,
  svg {
    vertical-align: middle;
  }
  
  table {
    caption-side: bottom;
    border-collapse: collapse;
  }
  
  caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--gm-secondary-color);
    text-align: left;
  }
  
  th {
    text-align: inherit;
    text-align: -webkit-match-parent;
  }
  
  thead,
  tbody,
  tfoot,
  tr,
  td,
  th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
  }
  
  label {
    display: inline-block;
  }
  
  button,.btn {
    border-radius: var(--gm-border-radius);
    display: inline-block;
    padding: 0.5rem 2rem;
    border: none;
  }
  .btn-default{
    background-color: var(--gm-body-bg);
    color: var(--gm-primary);
    border: var(--gm-border-width) var(--gm-primary) var(--gm-border-style);
  }
  .btn-default:hover{
    background-color: var(--gm-body-bg);
    color: var(--gm-secondary);
    border-color: var(--gm-secondary);;
  }
  .btn-primary{
    background-color: var(--gm-primary);
    color: var(--gm-white);
  }
  .btn-primary:hover{
    background-color: var(--gm-secondary);
    color: var(--gm-white);
  }
  
  button:focus:not(:focus-visible),.btn:focus:not(:focus-visible) {
    outline: 0;
  }
  
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  [role=button] {
    cursor: pointer;
  }
  
  select {
    word-wrap: normal;
  }
  select:disabled {
    opacity: 1;
  }
  
  [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important;
  }
  
  button,
  [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
  }
  button:not(:disabled),
  [type=button]:not(:disabled),
  [type=reset]:not(:disabled),
  [type=submit]:not(:disabled) {
    cursor: pointer;
  }
  
  ::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
  }
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem;
    }
  }
  legend + * {
    clear: left;
  }
  
  ::-webkit-datetime-edit-fields-wrapper,
  ::-webkit-datetime-edit-text,
  ::-webkit-datetime-edit-minute,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-year-field {
    padding: 0;
  }
  
  ::-webkit-inner-spin-button {
    height: auto;
  }
  
  [type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  
  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
  }
  
  ::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
  }
  
  output {
    display: inline-block;
  }
  
  iframe {
    border: 0;
  }
  
  summary {
    display: list-item;
    cursor: pointer;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  [hidden] {
    display: none !important;
  }
  
  @media (min-width: 1700px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1640px;
    }
  }