/* -------------------------------------------------------------------------- */
/*                                 Theme                                      */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/* -------------------------------------------------------------------------- */
/*                                  Utilities                                 */
/* -------------------------------------------------------------------------- */
/*-----------------------------------------------
|   Bootstrap Styles
-----------------------------------------------*/
/*!
 * Bootstrap v5.0.0-alpha1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
 :root {
    --bs-blue: #00465f;
    --bs-indigo: #8845FF;
    --bs-purple: #C46DE3;
    --bs-pink: #EE6BFA;
    --bs-red: #EB6453;
    --bs-orange: #F0980E;
    --bs-yellow: #EFAB18;
    --bs-green: #96D121;
    --bs-teal: #18DEBC;
    --bs-cyan: #21D4DF;
    --bs-white: #fff;
    --bs-gray: #5A6980;
    --bs-gray-dark: #363F4D;
    --bs-primary: #00465f;
    --bs-secondary: #C46DE3;
    --bs-success: #96D121;
    --bs-info: #21D4DF;
    --bs-warning: #EFAB18;
    --bs-danger: #EB6453;
    --bs-light: #F9FAFD;
    --bs-dark: #000000;
    --bs-font-sans-serif: "Nunito", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  @media (prefers-reduced-motion: no-preference) {
    :root {
      scroll-behavior: smooth;
    }
  }
  
  body {
    margin: 0;
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #7e7e7e;
    /*background-color: #0c4255;*/
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  hr {
    margin: 1rem 0;
    color: #90A8CC;
    background-color: currentColor;
    border: 0;
    opacity: 1;
  }
  
  hr:not([size]) {
    height: 1px;
  }
  
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
  }
  
  h1, .h1 {
    font-size: calc(1.37383rem + 1.48598vw);
  }
  
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.48832rem;
    }
  }
  
  h2, .h2 {
    font-size: calc(1.33236rem + 0.98832vw);
  }
  
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2.0736rem;
    }
  }
  
  h3, .h3 {
    font-size: calc(1.2978rem + 0.5736vw);
  }
  
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.728rem;
    }
  }
  
  h4, .h4 {
    font-size: calc(1.269rem + 0.228vw);
  }
  
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.44rem;
    }
  }
  
  h5, .h5 {
    font-size: 1.2rem;
  }
  
  h6, .h6 {
    font-size: 0.83333rem;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  abbr[title],
  abbr[data-bs-original-title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
  
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
  }
  
  ol,
  ul {
    padding-right: 2rem;
  }
  
  ol,
  ul,
  dl {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  ol ol,
  ul ul,
  ol ul,
  ul ol {
    margin-bottom: 0;
  }
  
  dt {
    font-weight: 700;
  }
  
  dd {
    margin-bottom: .5rem;
    margin-right: 0;
  }
  
  blockquote {
    margin: 0 0 1rem;
  }
  
  b,
  strong {
    font-weight: 800;
  }
  
  small, .small {
    font-size: 75%;
  }
  
  mark, .mark {
    padding: 0.2em;
    background-color: #fcf8e3;
  }
  
  sub,
  sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -.25em;
  }
  
  sup {
    top: -.5em;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition:all 0.3s;
  }
  
  a:hover {
    color: inherit;
    text-decoration: underline;
  }
  
  a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  pre,
  code,
  kbd,
  samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr ;
    unicode-bidi: bidi-override;
  }
  
  pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 75%;
  }
  
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
  }
  
  code {
    font-size: 75%;
    color: #EE6BFA;
    word-wrap: break-word;
  }
  
  a > code {
    color: inherit;
  }
  
  kbd {
    padding: 0.2rem 0.4rem;
    font-size: 75%;
    color: #fff;
    background-color: #242A33;
    border-radius: 0.625rem;
  }
  
  kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
  }
  
  figure {
    margin: 0 0 1rem;
  }
  
  img,
  svg {
    vertical-align: middle;
  }
  
  table {
    caption-side: bottom;
    border-collapse: collapse;
  }
  
  caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6C7E99;
    text-align: right;
  }
  
  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 {
    border-radius: 0;
  }
  
  button: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]::-webkit-calendar-picker-indicator {
    display: none;
  }
  
  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: right;
    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: right;
  }
  
  ::-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"] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
  }
  
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  
  ::file-selector-button {
    font: inherit;
  }
  
  ::-webkit-file-upload-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;
  }
  .dropdown-item.active, .dropdown-item:active{
    color: #1e2125;
    background-color: #e9ecef;
  }
  .dropdown-item {
      font-size: 0.9rem;
   }
  .lead {
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  .display-1 {
    font-size: calc(1.55498rem + 3.65978vw);
    font-weight: 900;
    line-height: 1;
  }
  
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 4.29982rem;
    }
  }
  
  .display-2 {
    font-size: calc(1.48332rem + 2.79982vw);
    font-weight: 900;
    line-height: 1;
  }
  
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 3.58318rem;
    }
  }
  
  .display-3 {
    font-size: calc(1.4236rem + 2.08318vw);
    font-weight: 900;
    line-height: 1;
  }
  
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 2.98598rem;
    }
  }
  
  .display-4 {
    font-size: calc(1.37383rem + 1.48598vw);
    font-weight: 900;
    line-height: 1.1;
  }
  
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 2.48832rem;
    }
  }
  
  .display-5 {
    font-size: calc(1.33236rem + 0.98832vw);
    font-weight: 900;
    line-height: 1;
  }
  
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 2.0736rem;
    }
  }
  
  .display-6 {
    font-size: calc(1.2978rem + 0.5736vw);
    font-weight: 900;
    line-height: 1;
  }
  
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 1.728rem;
    }
  }
  
  .list-unstyled {
    padding-right: 0;
    list-style: none;
  }
  
  .list-inline {
    padding-right: 0;
    list-style: none;
  }
  
  .list-inline-item {
    display: inline-block;
  }
  
  .list-inline-item:not(:last-child) {
    margin-left: 0.5rem;
  }
  
  .initialism {
    font-size: 75%;
    text-transform: uppercase;
  }
  
  .blockquote {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .blockquote > :last-child {
    margin-bottom: 0;
  }
  
  .blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 75%;
    color: #5A6980;
  }
  
  .blockquote-footer::before {
    content: "\2014\00A0";
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  .img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #90A8CC;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
  }
  
  .figure {
    display: inline-block;
  }
  
  .figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .figure-caption {
    font-size: 75%;
    color: #5A6980;
  }
  
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    width: 100%;
    padding-left: var(--bs-gutter-x, 1rem);
    padding-right: var(--bs-gutter-x, 1rem);
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 576px) {
    .container, .container-sm {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container, .container-sm, .container-md {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
      max-width: 1140px;
    }
  }
  
  @media (min-width: 1540px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
      max-width: 1480px;
    }
  }
  


  .btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #6C7E99;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.313rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .btn {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }
  }
  
  .btn:hover {
    color: #6C7E99;
    text-decoration: none;
  }
  


  
  .btn-primary {
    color: #fff;
    background-color: #00465f;
    border-color: #00465f;
  }
  
  .btn-primary:hover {
    color: #fff;
    background-color: #427cd4;
    border-color: #3e75c7;
  }
  
  .btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #427cd4;
    border-color: #3e75c7;
    -webkit-box-shadow: 0 0 0 0 rgba(105, 162, 250, 0.5);
    box-shadow: 0 0 0 0 rgba(105, 162, 250, 0.5);
  }
  
  .btn-check:checked + .btn-primary,
  .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3e75c7;
    border-color: #3b6ebb;
  }
  
  .btn-check:checked + .btn-primary:focus,
  .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,
  .show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(105, 162, 250, 0.5);
    box-shadow: 0 0 0 0 rgba(105, 162, 250, 0.5);
  }
  
  .btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #00465f;
    border-color: #00465f;
  }
  
  .btn-secondary {
    color: #fff;
    background-color: #e69B00;
    border-color: #e69B00;
  }
  
  .btn-secondary:hover {
    color: #fff;
    background-color: #d99404;
    border-color: #d99404;
  }
  
  .btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #fff;
    background-color: #a75dc1;
    border-color: #9d57b6;
    -webkit-box-shadow: 0 0 0 0 rgba(205, 131, 231, 0.5);
    box-shadow: 0 0 0 0 rgba(205, 131, 231, 0.5);
  }
  
  .btn-check:checked + .btn-secondary,
  .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
  .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #9d57b6;
    border-color: #9352aa;
  }
  
  .btn-check:checked + .btn-secondary:focus,
  .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,
  .show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(205, 131, 231, 0.5);
    box-shadow: 0 0 0 0 rgba(205, 131, 231, 0.5);
  }
  
  .btn-secondary:disabled, .btn-secondary.disabled {
    color: #fff;
    background-color: #C46DE3;
    border-color: #C46DE3;
  }
  
  .btn-success {
    color: #363F4D;
    background-color: #96D121;
    border-color: #96D121;
  }
  
  .btn-success:hover {
    color: #363F4D;
    background-color: #a6d842;
    border-color: #a1d637;
  }
  
  .btn-check:focus + .btn-success, .btn-success:focus {
    color: #363F4D;
    background-color: #a6d842;
    border-color: #a1d637;
    -webkit-box-shadow: 0 0 0 0 rgba(136, 187, 40, 0.5);
    box-shadow: 0 0 0 0 rgba(136, 187, 40, 0.5);
  }
  
  .btn-check:checked + .btn-success,
  .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: #363F4D;
    background-color: #abda4d;
    border-color: #a1d637;
  }
  
  .btn-check:checked + .btn-success:focus,
  .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
  .show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(136, 187, 40, 0.5);
    box-shadow: 0 0 0 0 rgba(136, 187, 40, 0.5);
  }
  
  .btn-success:disabled, .btn-success.disabled {
    color: #363F4D;
    background-color: #96D121;
    border-color: #96D121;
  }
  
  .btn-info {
    color: #363F4D;
    background-color: #21D4DF;
    border-color: #21D4DF;
  }
  
  .btn-info:hover {
    color: #363F4D;
    background-color: #42dae4;
    border-color: #37d8e2;
  }
  
  .btn-check:focus + .btn-info, .btn-info:focus {
    color: #363F4D;
    background-color: #42dae4;
    border-color: #37d8e2;
    -webkit-box-shadow: 0 0 0 0 rgba(36, 190, 201, 0.5);
    box-shadow: 0 0 0 0 rgba(36, 190, 201, 0.5);
  }
  
  .btn-check:checked + .btn-info,
  .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: #363F4D;
    background-color: #4ddde5;
    border-color: #37d8e2;
  }
  
  .btn-check:checked + .btn-info:focus,
  .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
  .show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(36, 190, 201, 0.5);
    box-shadow: 0 0 0 0 rgba(36, 190, 201, 0.5);
  }
  
  .btn-info:disabled, .btn-info.disabled {
    color: #363F4D;
    background-color: #21D4DF;
    border-color: #21D4DF;
  }
  
  .btn-warning {
    color: #363F4D;
    background-color: #EFAB18;
    border-color: #EFAB18;
  }
  
  .btn-warning:hover {
    color: #363F4D;
    background-color: #f1b83b;
    border-color: #f1b32f;
  }
  
  .btn-check:focus + .btn-warning, .btn-warning:focus {
    color: #363F4D;
    background-color: #f1b83b;
    border-color: #f1b32f;
    -webkit-box-shadow: 0 0 0 0 rgba(211, 155, 32, 0.5);
    box-shadow: 0 0 0 0 rgba(211, 155, 32, 0.5);
  }
  
  .btn-check:checked + .btn-warning,
  .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: #363F4D;
    background-color: #f2bc46;
    border-color: #f1b32f;
  }
  
  .btn-check:checked + .btn-warning:focus,
  .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
  .show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(211, 155, 32, 0.5);
    box-shadow: 0 0 0 0 rgba(211, 155, 32, 0.5);
  }
  
  .btn-warning:disabled, .btn-warning.disabled {
    color: #363F4D;
    background-color: #EFAB18;
    border-color: #EFAB18;
  }
  
  .btn-danger {
    color: #fff;
    background-color: #EB6453;
    border-color: #EB6453;
  }
  
  .btn-danger:hover {
    color: #fff;
    background-color: #c85547;
    border-color: #bc5042;
  }
  
  .btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: #c85547;
    border-color: #bc5042;
    -webkit-box-shadow: 0 0 0 0 rgba(238, 123, 109, 0.5);
    box-shadow: 0 0 0 0 rgba(238, 123, 109, 0.5);
  }
  
  .btn-check:checked + .btn-danger,
  .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bc5042;
    border-color: #b04b3e;
  }
  
  .btn-check:checked + .btn-danger:focus,
  .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
  .show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(238, 123, 109, 0.5);
    box-shadow: 0 0 0 0 rgba(238, 123, 109, 0.5);
  }
  
  .btn-danger:disabled, .btn-danger.disabled {
    color: #fff;
    background-color: #EB6453;
    border-color: #EB6453;
  }
  
  .btn-light {
    color: #363F4D;
    background-color: #F9FAFD;
    border-color: #F9FAFD;
  }
  
  .btn-light:hover {
    color: #363F4D;
    background-color: #fafbfd;
    border-color: #fafbfd;
  }
  
  .btn-check:focus + .btn-light, .btn-light:focus {
    color: #363F4D;
    background-color: #fafbfd;
    border-color: #fafbfd;
    -webkit-box-shadow: 0 0 0 0 rgba(220, 222, 227, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 222, 227, 0.5);
  }
  
  .btn-check:checked + .btn-light,
  .btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
  .show > .btn-light.dropdown-toggle {
    color: #363F4D;
    background-color: #fafbfd;
    border-color: #fafbfd;
  }
  
  .btn-check:checked + .btn-light:focus,
  .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
  .show > .btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 222, 227, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 222, 227, 0.5);
  }
  
  .btn-light:disabled, .btn-light.disabled {
    color: #363F4D;
    background-color: #F9FAFD;
    border-color: #F9FAFD;
  }
  
  .btn-dark {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
  }
  
  .btn-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  
  .btn-check:focus + .btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: black;
    border-color: black;
    -webkit-box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
    box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
  }
  
  .btn-check:checked + .btn-dark,
  .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
  .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  
  .btn-check:checked + .btn-dark:focus,
  .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
  .show > .btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
    box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
  }
  
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
  }
  
  .btn-outline-primary {
    color: #00465f;
    border-color: #00465f;
  }
  
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #00465f;
    border-color: #00465f;
  }
  
  .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(78, 146, 249, 0.5);
    box-shadow: 0 0 0 0 rgba(78, 146, 249, 0.5);
  }
  
  .btn-check:checked + .btn-outline-primary,
  .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: #00465f;
    border-color: #00465f;
  }
  
  .btn-check:checked + .btn-outline-primary:focus,
  .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(78, 146, 249, 0.5);
    box-shadow: 0 0 0 0 rgba(78, 146, 249, 0.5);
  }
  
  .btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: #00465f;
    background-color: transparent;
  }
  
  .btn-outline-secondary {
    color: #C46DE3;
    border-color: #C46DE3;
  }
  
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #C46DE3;
    border-color: #C46DE3;
  }
  
  .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(196, 109, 227, 0.5);
    box-shadow: 0 0 0 0 rgba(196, 109, 227, 0.5);
  }
  
  .btn-check:checked + .btn-outline-secondary,
  .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: #C46DE3;
    border-color: #C46DE3;
  }
  
  .btn-check:checked + .btn-outline-secondary:focus,
  .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(196, 109, 227, 0.5);
    box-shadow: 0 0 0 0 rgba(196, 109, 227, 0.5);
  }
  
  .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
    color: #C46DE3;
    background-color: transparent;
  }
  
  .btn-outline-success {
    color: #96D121;
    border-color: #96D121;
  }
  
  .btn-outline-success:hover {
    color: #363F4D;
    background-color: #96D121;
    border-color: #96D121;
  }
  
  .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(150, 209, 33, 0.5);
    box-shadow: 0 0 0 0 rgba(150, 209, 33, 0.5);
  }
  
  .btn-check:checked + .btn-outline-success,
  .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
    color: #363F4D;
    background-color: #96D121;
    border-color: #96D121;
  }
  
  .btn-check:checked + .btn-outline-success:focus,
  .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(150, 209, 33, 0.5);
    box-shadow: 0 0 0 0 rgba(150, 209, 33, 0.5);
  }
  
  .btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #96D121;
    background-color: transparent;
  }
  
  .btn-outline-info {
    color: #21D4DF;
    border-color: #21D4DF;
  }
  
  .btn-outline-info:hover {
    color: #363F4D;
    background-color: #21D4DF;
    border-color: #21D4DF;
  }
  
  .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(33, 212, 223, 0.5);
    box-shadow: 0 0 0 0 rgba(33, 212, 223, 0.5);
  }
  
  .btn-check:checked + .btn-outline-info,
  .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
    color: #363F4D;
    background-color: #21D4DF;
    border-color: #21D4DF;
  }
  
  .btn-check:checked + .btn-outline-info:focus,
  .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(33, 212, 223, 0.5);
    box-shadow: 0 0 0 0 rgba(33, 212, 223, 0.5);
  }
  
  .btn-outline-info:disabled, .btn-outline-info.disabled {
    color: #21D4DF;
    background-color: transparent;
  }
  
  .btn-outline-warning {
    color: #EFAB18;
    border-color: #EFAB18;
  }
  
  .btn-outline-warning:hover {
    color: #363F4D;
    background-color: #EFAB18;
    border-color: #EFAB18;
  }
  
  .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(239, 171, 24, 0.5);
    box-shadow: 0 0 0 0 rgba(239, 171, 24, 0.5);
  }
  
  .btn-check:checked + .btn-outline-warning,
  .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
    color: #363F4D;
    background-color: #EFAB18;
    border-color: #EFAB18;
  }
  
  .btn-check:checked + .btn-outline-warning:focus,
  .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(239, 171, 24, 0.5);
    box-shadow: 0 0 0 0 rgba(239, 171, 24, 0.5);
  }
  
  .btn-outline-warning:disabled, .btn-outline-warning.disabled {
    color: #EFAB18;
    background-color: transparent;
  }
  
  .btn-outline-danger {
    color: #EB6453;
    border-color: #EB6453;
  }
  
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #EB6453;
    border-color: #EB6453;
  }
  
  .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(235, 100, 83, 0.5);
    box-shadow: 0 0 0 0 rgba(235, 100, 83, 0.5);
  }
  
  .btn-check:checked + .btn-outline-danger,
  .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
    color: #fff;
    background-color: #EB6453;
    border-color: #EB6453;
  }
  
  .btn-check:checked + .btn-outline-danger:focus,
  .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(235, 100, 83, 0.5);
    box-shadow: 0 0 0 0 rgba(235, 100, 83, 0.5);
  }
  
  .btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: #EB6453;
    background-color: transparent;
  }
  
  .btn-outline-light {
    color: #F9FAFD;
    border-color: #F9FAFD;
  }
  
  .btn-outline-light:hover {
    color: #363F4D;
    background-color: #F9FAFD;
    border-color: #F9FAFD;
  }
  
  .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
  }
  
  .btn-check:checked + .btn-outline-light,
  .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
    color: #363F4D;
    background-color: #F9FAFD;
    border-color: #F9FAFD;
  }
  
  .btn-check:checked + .btn-outline-light:focus,
  .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
  }
  
  .btn-outline-light:disabled, .btn-outline-light.disabled {
    color: #F9FAFD;
    background-color: transparent;
  }
  
  .btn-outline-dark {
    color: #000000;
    border-color: #000000;
  }
  
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
  }
  
  .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  
  .btn-check:checked + .btn-outline-dark,
  .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
  }
  
  .btn-check:checked + .btn-outline-dark:focus,
  .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  
  .btn-outline-dark:disabled, .btn-outline-dark.disabled {
    color: #000000;
    background-color: transparent;
  }
  
  .btn-link {
    font-weight: 400;
    color: #00465f;
    text-decoration: none;
  }
  
  .btn-link:hover {
    color: #3e75c7;
    text-decoration: underline;
  }
  
  .btn-link:focus {
    text-decoration: underline;
  }
  
  .btn-link:disabled, .btn-link.disabled {
    color: #5A6980;
  }
  
    
  .alert-primary {
    color: #2f5895;
    background-color: #dce9fe;
    border-color: #cadefd;
  }
  
  .alert-primary .alert-link {
    color: #264677;
  }
  
  .alert-secondary {
    color: #764188;
    background-color: #f3e2f9;
    border-color: #edd3f7;
  }
  
  .alert-secondary .alert-link {
    color: #5e346d;
  }
  
  .alert-success {
    color: #5a7d14;
    background-color: #eaf6d3;
    border-color: #e0f1bc;
  }
  
  .alert-success .alert-link {
    color: #486410;
  }
  
  .alert-info {
    color: #147f86;
    background-color: #d3f6f9;
    border-color: #bcf2f5;
  }
  
  .alert-info .alert-link {
    color: #10666b;
  }
  
  .alert-warning {
    color: #8f670e;
    background-color: #fceed1;
    border-color: #fae6ba;
  }
  
  .alert-warning .alert-link {
    color: #72520b;
  }
  
  .alert-danger {
    color: #8d3c32;
    background-color: #fbe0dd;
    border-color: #f9d1cb;
  }
  
  .alert-danger .alert-link {
    color: #713028;
  }
  
  .alert-light {
    color: #959698;
    background-color: #fefeff;
    border-color: #fdfefe;
  }
  
  .alert-light .alert-link {
    color: #77787a;
  }
  
  .alert-dark {
    color: black;
    background-color: #cccccc;
    border-color: #b3b3b3;
  }
  
  .alert-dark .alert-link {
    color: black;
  }
  
  .link-primary {
    color: #00465f;
  }
  
  .link-primary:hover, .link-primary:focus {
    color: #3e75c7;
  }
  
  .link-secondary {
    color: #C46DE3;
  }
  
  .link-secondary:hover, .link-secondary:focus {
    color: #9d57b6;
  }
  
  .link-success {
    color: #96D121;
  }
  
  .link-success:hover, .link-success:focus {
    color: #abda4d;
  }
  
  .link-info {
    color: #21D4DF;
  }
  
  .link-info:hover, .link-info:focus {
    color: #4ddde5;
  }
  
  .link-warning {
    color: #EFAB18;
  }
  
  .link-warning:hover, .link-warning:focus {
    color: #f2bc46;
  }
  
  .link-danger {
    color: #EB6453;
  }
  
  .link-danger:hover, .link-danger:focus {
    color: #bc5042;
  }
  
  .link-light {
    color: #F9FAFD;
  }
  
  .link-light:hover, .link-light:focus {
    color: #fafbfd;
  }
  
  .link-dark {
    color: #000000;
  }
  
  .link-dark:hover, .link-dark:focus {
    color: black;
  }
  
 
  .border-white {
    border-color: #fff !important;
  }
  
  .border-primary {
    border-color: #00465f !important;
  }
  
  .border-secondary {
    border-color: #C46DE3 !important;
  }
  
  .border-success {
    border-color: #96D121 !important;
  }
  
  .border-info {
    border-color: #21D4DF !important;
  }
  
  .border-warning {
    border-color: #EFAB18 !important;
  }
  
  .border-danger {
    border-color: #EB6453 !important;
  }
  
  .border-light {
    border-color: #F9FAFD !important;
  }
  
  .border-dark {
    border-color: #000000 !important;
  }
  
  
  
  .font-monospace {
    font-family: var(--bs-font-monospace) !important;
  }
  
  .fs--2 {
    font-size: 0.69444rem !important;
  }
  
  .fs--1 {
    font-size: 0.83333rem !important;
  }
  
  .fs-0 {
    font-size: 1rem !important;
  }
  
  .fs-1 {
    font-size: 1.2rem !important;
  }
  
  .fs-2 {
    font-size: 1.44rem !important;
  }
  
  .fs-3 {
    font-size: 1.728rem !important;
  }
  
  .fs-4 {
    font-size: 2.0736rem !important;
  }
  
  .fs-5 {
    font-size: 2.48832rem !important;
  }
  
  .fs-6 {
    font-size: 2.98598rem !important;
  }
  
  .fs-7 {
    font-size: 3.58318rem !important;
  }
  
  .fs-8 {
    font-size: 4.29982rem !important;
  }
  
  .fst-italic {
    font-style: italic !important;
  }
  
  



  .text-primary {
    color: #00465f !important;
  }
  
  .text-secondary {
    color: #C46DE3 !important;
  }
  
  .text-success {
    color: #96D121 !important;
  }
  
  .text-info {
    color: #21D4DF !important;
  }
  
  .text-warning {
    color: #EFAB18 !important;
  }
  
  .text-danger {
    color: #EB6453 !important;
  }
  
  .text-light {
    color: #F9FAFD !important;
  }
  
  .text-dark {
    color: #000000 !important;
  }
  
  .text-white {
    color: #fff !important;
  }
  
  .text-body {
    color: #6C7E99 !important;
  }
  
  .text-muted {
    color: #8f8f8f !important; 
  }
  
  .text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  
  .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  

  
  .bg-primary {
    background-color: #00465f !important;
  }
  
  .bg-secondary {
    background-color: #C46DE3 !important;
  }
  
  .bg-success {
    background-color: #96D121 !important;
  }
  
  .bg-info {
    background-color: #21D4DF !important;
  }
  
  .bg-warning {
    background-color: #EFAB18 !important;
  }
  
  .bg-danger {
    background-color: #EB6453 !important;
  }
  
  .bg-light {
    background-color: #F9FAFD !important;
  }
  
  .bg-dark {
    background-color: #000000 !important;
  }
  
  .bg-body {
    background-color: #fff !important;
  }
  

  
  .bg-gradient {
    background-image: var(--bs-gradient) !important;
  }
  
  
  @media (min-width: 576px) {
    
    
    
    
    .fs-sm--2 {
      font-size: 0.69444rem !important;
    }
    .fs-sm--1 {
      font-size: 0.83333rem !important;
    }
    .fs-sm-0 {
      font-size: 1rem !important;
    }
    .fs-sm-1 {
      font-size: 1.2rem !important;
    }
    .fs-sm-2 {
      font-size: 1.44rem !important;
    }
    .fs-sm-3 {
      font-size: 1.728rem !important;
    }
    .fs-sm-4 {
      font-size: 2.0736rem !important;
    }
    .fs-sm-5 {
      font-size: 2.48832rem !important;
    }
    .fs-sm-6 {
      font-size: 2.98598rem !important;
    }
    .fs-sm-7 {
      font-size: 3.58318rem !important;
    }
    .fs-sm-8 {
      font-size: 4.29982rem !important;
    }
    
  }
  
  @media (min-width: 768px) {
    
    
    
    
    .fs-md--2 {
      font-size: 0.69444rem !important;
    }
    .fs-md--1 {
      font-size: 0.83333rem !important;
    }
    .fs-md-0 {
      font-size: 1rem !important;
    }
    .fs-md-1 {
      font-size: 1.2rem !important;
    }
    .fs-md-2 {
      font-size: 1.44rem !important;
    }
    .fs-md-3 {
      font-size: 1.728rem !important;
    }
    .fs-md-4 {
      font-size: 2.0736rem !important;
    }
    .fs-md-5 {
      font-size: 2.48832rem !important;
    }
    .fs-md-6 {
      font-size: 2.98598rem !important;
    }
    .fs-md-7 {
      font-size: 3.58318rem !important;
    }
    .fs-md-8 {
      font-size: 4.29982rem !important;
    }
  }
  
  @media (min-width: 992px) {
    
    
    
    .fs-lg--2 {
      font-size: 0.69444rem !important;
    }
    .fs-lg--1 {
      font-size: 0.83333rem !important;
    }
    .fs-lg-0 {
      font-size: 1rem !important;
    }
    .fs-lg-1 {
      font-size: 1.2rem !important;
    }
    .fs-lg-2 {
      font-size: 1.44rem !important;
    }
    .fs-lg-3 {
      font-size: 1.728rem !important;
    }
    .fs-lg-4 {
      font-size: 2.0736rem !important;
    }
    .fs-lg-5 {
      font-size: 2.48832rem !important;
    }
    .fs-lg-6 {
      font-size: 2.98598rem !important;
    }
    .fs-lg-7 {
      font-size: 3.58318rem !important;
    }
    .fs-lg-8 {
      font-size: 4.29982rem !important;
    }
    
  }
  
  @media screen and (max-width:1200px){
    .pt-lg-10{
      padding-top: 4.5rem !important;
    }
  }
  @media (min-width: 1200px) {
    .fs-xl--2 {
      font-size: 0.69444rem !important;
    }
    .fs-xl--1 {
      font-size: 0.83333rem !important;
    }
    .fs-xl-0 {
      font-size: 1rem !important;
    }
    .fs-xl-1 {
      font-size: 1.2rem !important;
    }
    .fs-xl-2 {
      font-size: 1.44rem !important;
    }
    .fs-xl-3 {
      font-size: 1.728rem !important;
    }
    .fs-xl-4 {
      font-size: 2.0736rem !important;
    }
    .fs-xl-5 {
      font-size: 2.48832rem !important;
    }
    .fs-xl-6 {
      font-size: 2.98598rem !important;
    }
    .fs-xl-7 {
      font-size: 3.58318rem !important;
    }
    .fs-xl-8 {
      font-size: 4.29982rem !important;
    }
    
    .fs-xxl--2 {
      font-size: 0.69444rem !important;
    }
    .fs-xxl--1 {
      font-size: 0.83333rem !important;
    }
    .fs-xxl-0 {
      font-size: 1rem !important;
    }
    .fs-xxl-1 {
      font-size: 1.2rem !important;
    }
    .fs-xxl-2 {
      font-size: 1.44rem !important;
    }
    .fs-xxl-3 {
      font-size: 1.728rem !important;
    }
    .fs-xxl-4 {
      font-size: 2.0736rem !important;
    }
    .fs-xxl-5 {
      font-size: 2.48832rem !important;
    }
    .fs-xxl-6 {
      font-size: 2.98598rem !important;
    }
    .fs-xxl-7 {
      font-size: 3.58318rem !important;
    }
    .fs-xxl-8 {
      font-size: 4.29982rem !important;
    }
    
  }
  

  
  /*-----------------------------------------------
  |   Theme Styles
  -----------------------------------------------*/
  /*-----------------------------------------------
  |   Reboot
  -----------------------------------------------*/
  ::-webkit-input-placeholder {
    opacity: 1;
    color: #7E92B2 !important;
  }
  ::-moz-placeholder {
    opacity: 1;
    color: #7E92B2 !important;
  }
  :-ms-input-placeholder {
    opacity: 1;
    color: #7E92B2 !important;
  }
  ::-ms-input-placeholder {
    opacity: 1;
    color: #7E92B2 !important;
  }
  ::placeholder {
    opacity: 1;
    color: #7E92B2 !important;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: smooth;
    scroll-padding-top: 6.3125rem;
  }
  
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    /*background-image: -o-linear-gradient(-354deg, #c381db1f, #00465f2e);*/
    /*background-image: linear-gradient(-96deg, #c381db1f, #00465f2e);*/
  }
  
  
  section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }
  
  @media (min-width: 1200px) {
    section {
      padding-top: 7.5rem;
      padding-bottom: 7.5rem;
    }
  }
  @media (max-width: 1200px) {
    section {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }

  @media screen and (max-width: 767px) {
    section {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }  
  }


  /* -------------------------------------------------------------------------- */

  /*                                    Text                                    */
  /* -------------------------------------------------------------------------- */

  /*-----------------------------------------------
  |   Error Page
  -----------------------------------------------*/
  .fs-error {
    font-size: 7rem;
  }
  
  @media (min-width: 576px) {
    .fs-error {
      font-size: 10rem;
    }
  }
  
  /*-----------------------------------------------
  |   Text alignment
  -----------------------------------------------*/
  .text-justify {
    text-align: justify !important;
  }
  
  .text-gradient {
    /*background: -o-linear-gradient(-40deg, #d1941c, #004861, #0b2a9b);*/
    /*background: linear-gradient(-60deg, #d1941c, #004861, #0b2a9b);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    color:#fff;
  }
  
  /*-----------------------------------------------
  |   Backgrounds
  -----------------------------------------------*/
  .bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: -1;
  }
  
  .bg-holder.bg-cover{
    max-width: 80vw;
    background: transparent !important;
    background-size: cover;
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
    max-width: 80vw;
  }
  
  .bg-holder.bg-right {
    right: auto;
    left: 0;
  }
  
  .bg-holder.overlay:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.25);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  
  .bg-holder.overlay-0:before {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .bg-holder.overlay-1:before {
    background: rgba(0, 0, 0, 0.55);
  }
  
  .bg-holder.overlay-2:before {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .bg-holder .bg-video {
    position: absolute;
    display: block;
    z-index: -1;
    top: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    min-width: 100%;
  }
  
  .bg-holder .bg-youtube {
    position: absolute !important;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  
  .bg-light-gradient {
    background: -webkit-gradient(linear, right top, right bottom, from(rgba(236, 240, 253, 0)), color-stop(14.32%, rgba(236, 240, 253, 0.53)), color-stop(45.83%, #ECF0FD), color-stop(84.33%, rgba(236, 240, 253, 0.43)), to(rgba(236, 240, 253, 0)));
    background: -o-linear-gradient(top, rgba(236, 240, 253, 0) 0%, rgba(236, 240, 253, 0.53) 14.32%, #ECF0FD 45.83%, rgba(236, 240, 253, 0.43) 84.33%, rgba(236, 240, 253, 0) 100%);
    background: linear-gradient(-180deg, rgba(236, 240, 253, 0) 0%, rgba(236, 240, 253, 0.53) 14.32%, #ECF0FD 45.83%, rgba(236, 240, 253, 0.43) 84.33%, rgba(236, 240, 253, 0) 100%);
  }
  
  .bg-primary-gradient {
    background: -o-linear-gradient(-241.82deg, #51B4F7 9.05%, #5A98F2 76.74%);
    background: linear-gradient(-208.18deg, #51B4F7 9.05%, #5A98F2 76.74%);
  }
  
  .bg-size {
    background-size: cover;
  }
  
  @media (min-width: 1200px) {
    .bg-size {
      background-size: contain;
    }
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                   Borders                                  */
  /* -------------------------------------------------------------------------- */
  .overflow-hidden[class*='rounded'] {
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
  }
  
  .border-top-2 {
    border-top-width: 0.125rem !important;
  }
  
  .border-end-2 {
    border-left-width: 0.125rem !important;
  }
  
  .border-bottom-2 {
    border-bottom-width: 0.125rem !important;
  }
  
  .border-start-2 {
    border-right-width: 0.125rem !important;
  }
  
  .border-klean {
    border-style: solid;
    -o-border-image: -o-linear-gradient(right, rgba(180, 210, 255, 0) 1%, #c7d9f5 50%, rgba(180, 210, 255, 0) 100%) 100% 0 100% 0/1px 0 1px 0 stretch;
    border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, rgba(180, 210, 255, 0)), color-stop(50%, #c7d9f5), to(rgba(180, 210, 255, 0))) 100% 0 100% 0/1px 0 1px 0 stretch;
    border-image: linear-gradient(to left, rgba(180, 210, 255, 0) 1%, #c7d9f5 50%, rgba(180, 210, 255, 0) 100%) 100% 0 100% 0/1px 0 1px 0 stretch;
  }
  
  .border-img {
    border: 2px solid #fff;
    border-radius: 1rem;
  }
  
  .border-klean-gradient {
    border: double .5rem transparent;
    border-radius: 2.5rem;
    background-image: -webkit-gradient(linear, right top, right bottom, from(white), to(white)), -webkit-gradient(linear, right top, left top, from(#d1941c), to(#004861));
    background-image: -o-linear-gradient(white, white), -o-linear-gradient(-60deg, #d1941c, #004861, #0b2a9b);
    background-image: linear-gradient(white, white), linear-gradient(-60deg, #d1941c, #004861, #0b2a9b);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                  Position                                  */
  /* -------------------------------------------------------------------------- */


        
  /* -------------------------------------------------------------------------- */ 
  
  
  .flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  .link-black {
    color: #000 !important;
  }
  
  .link-black:hover, .link-black:focus {
    color: black !important;
  }
  
  .link-100 {
    color: #B4D2FF !important;
  }
  
  .link-100:hover, .link-100:focus {
    color: #68a4ff !important;
  }
  
  .link-200 {
    color: #A2BDE5 !important;
  }
  
  .link-200:hover, .link-200:focus {
    color: #6693d4 !important;
  }
  
  .link-300 {
    color: #90A8CC !important;
  }
  
  .link-300:hover, .link-300:focus {
    color: #5c7fb4 !important;
  }
  
  .link-400 {
    color: #7E92B2 !important;
  }
  
  .link-400:hover, .link-400:focus {
    color: #556b8e !important;
  }
  
  .link-500 {
    color: #6C7E99 !important;
  }
  
  .link-500:hover, .link-500:focus {
    color: #4c596d !important;
  }
  
  .link-600 {
    color: #5A6980 !important;
  }
  
  .link-600:hover, .link-600:focus {
    color: #3a4453 !important;
  }
  
  .link-700 {
    color: #485466 !important;
  }
  
  .link-700:hover, .link-700:focus {
    color: #282f39 !important;
  }
  
  .link-800 {
    color: #363F4D !important;
  }
  
  .link-800:hover, .link-800:focus {
    color: #161a20 !important;
  }
  
  .link-900 {
    color: #242A33 !important;
  }
  
  .link-900:hover, .link-900:focus {
    color: #040506 !important;
  }
  
  .link-1000 {
    color: #12151A !important;
  }
  
  .link-1000:hover, .link-1000:focus {
    color: black !important;
  }
  
  .link-1100 {
    color: #000000 !important;
  }
  
  .link-1100:hover, .link-1100:focus {
    color: black !important;
  }
  
  .link-1200 {
    color: #242A33 !important;
  }
  
  .link-1200:hover, .link-1200:focus {
    color: #040506 !important;
  }
  
  .link-white {
    color: #fff !important;
  }
  
  .link-white:hover, .link-white:focus {
    color: #d9d9d9 !important;
  }
  
  .shadow-transition {
    -webkit-box-shadow: 0 1.5625rem 2.8125rem rgba(36, 42, 51, 0.075);
    box-shadow: 0 1.5625rem 2.8125rem rgba(36, 42, 51, 0.075);
    -webkit-transition: -webkit-box-shadow 0.4s ease;
    transition: -webkit-box-shadow 0.4s ease;
    -o-transition: box-shadow 0.4s ease;
    transition: box-shadow 0.4s ease;
    transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  }
  
  .circle-blend {
    position: relative;
  }
  
  .circle-blend::before {
    position: absolute;
    content: '';
    -webkit-filter: blur(117px);
    filter: blur(117px);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    z-index: -1 !important;
    top: 0;
    right: 0;
    overflow-x: hidden;
  }
  
  .circle-blend-right::before {
    right: auto;
    left: 0;
  }
  
  .circle-blend-left::before {
    left: auto;
    right: 0;
  }
  
  .circle-danger:before {
    background: -o-radial-gradient(50% 50%, 50% 50%, rgba(255, 61, 37, 0.4) 0%, rgba(255, 0, 17, 0.15) 100%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 61, 37, 0.4) 0%, rgba(255, 0, 17, 0.15) 100%);
  }
  
  .circle-warning:before {
    background: -o-linear-gradient(-284.26deg, rgba(255, 186, 39, 0.25) 10.13%, rgba(255, 222, 152, 0.17) 86.62%);
    background: linear-gradient(-165.74deg, rgba(255, 186, 39, 0.25) 10.13%, rgba(255, 222, 152, 0.17) 86.62%);
  }
  
  .circle-cyan:before {
    background: -o-radial-gradient(50% 50%, 75.86% 75.86%, rgba(0, 240, 255, 0.15) 0%, rgba(0, 240, 255, 0) 100%);
    background: radial-gradient(75.86% 75.86% at 50% 50%, rgba(0, 240, 255, 0.15) 0%, rgba(0, 240, 255, 0) 100%);
  }
  
  .circle-primary:before {
    background: -o-radial-gradient(50% 50%, 83.29% 83.29%, rgba(78, 146, 249, 0.25) 0%, rgba(78, 146, 249, 0.25) 100%);
    background: radial-gradient(83.29% 83.29% at 50% 50%, rgba(78, 146, 249, 0.25) 0%, rgba(78, 146, 249, 0.25) 100%);
  }
  
  .circle-pink:before {
    background: -o-radial-gradient(50% 50%, 89.01% 89.01%, rgba(197, 130, 219, 0.322) 0%, rgba(195, 130, 219, 0) 100%);
    background: radial-gradient(89.01% 89.01% at 50% 50%, rgba(197, 130, 219, 0.322) 0%, rgba(195, 130, 219, 0) 100%);
  }
  
  .circle {
    position: relative;
  }
  
 .circle::before {
    position: absolute;
    content: '';
    height: 12.5rem;
    width: 12.5rem;
    border-radius: 50%;
    z-index: -1 !important;
    top: 0;
    right: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
    background-image: -o-linear-gradient(-250deg, rgba(86, 151, 250, 0), #00465f4a);
    background-image: linear-gradient(-200deg, rgba(86, 151, 250, 0), #00465f4a);
 }
  
  @media (min-width: 576px) {
    .square {
      position: relative;
      display: inline-block;
    }
    .square::before {
      position: absolute;
      content: '';
      height: 25rem;
      width: 25rem;
      border-radius: 3.8125rem;
      z-index: -1 !important;
      background-image: -o-linear-gradient(-250deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
      background-image: linear-gradient(-200deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
    }
    .shadow-square-bottom::before {
      top: 5rem;
      right: 5rem;
    }
    /*.shadow-square-top::before {*/
    /*  top: -5rem;*/
    /*  right: -5rem;*/
    /*}*/
  }
  
  @media (min-width: 576px) {
    .wrapper {
      position: relative;
      display: inline-block;
    }
    .wrapper::before {
      position: absolute;
      content: '';
      z-index: -1 !important;
    }
    .shadow-square-right::before {
      height: 19.75rem;
      width: 12.5rem;
      top: 0.375rem;
      right: 1.25rem;
      border-radius: 3.125rem 1.5625rem 3.125rem 1.5625rem;
      background-image: -o-linear-gradient(-250deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
      background-image: linear-gradient(-200deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
    }
    .shadow-square-left::before {
      height: 19.75rem;
      width: 12.5rem;
      top: 0.375rem;
      left: 1.25rem;
      border-radius: 1.5625rem 1.5625rem 1.5625rem 3.125rem;
      background-image: -o-linear-gradient(-250deg, rgba(225, 160, 247, 0.034), rgba(225, 160, 247, 0.642));
      background-image: linear-gradient(-200deg, rgba(225, 160, 247, 0.034), rgba(225, 160, 247, 0.642));
    }
    .shadow-square-left-bottom::before {
      height: 95%;
      width: 95%;
      top: 16%;
      left: 12%;
      border-radius: 2.5rem;
      background: #00465f;
    }
    .shadow-square-bottom::before {
      height: 25rem;
      width: 25rem;
      border-radius: 1rem;
      top: 10%;
      right: 11%;
      background: #00465f;
      /*right:auto;*/
      /*background-image: linear-gradient(-200deg, rgba(78, 146, 249, 0.034), #004861);*/
    }
    .shadow-square-top::before {
      height: 25rem;
      width: 25rem;
      border-radius: 1rem;
      top: 10%;
      left: 12%;
      background:#00465f;
    }
  }
  
  .feature-square {
    position: relative;
  }
  
  .feature-square::before {
    position: absolute;
    content: '';
    height: 6.25rem;
    width: 6.25rem;
    border-radius: 1.5625rem;
    z-index: -1 !important;
    top: 0;
    right: 0;
    -webkit-transform: translate3d(-26%, 8%, 0);
    transform: translate3d(-26%, 8%, 0);
    background-image: -o-linear-gradient(-250deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
    background-image: linear-gradient(-200deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
  }
  
  .shadow-klean {
    -webkit-box-shadow: 0px 0.4375rem 1.25rem rgba(49, 69, 255, 0.13);
    box-shadow: 0px 0.4375rem 1.25rem rgba(49, 69, 255, 0.13);
  }
  
  .icon-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .icon-wrapper::before {
    position: absolute;
    content: '';
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 0.9375rem;
    z-index: -1 !important;
    top: 0.375rem;
    right: 1.25rem;
  }
  
  .shadow-danger:before {
    background-image: -o-linear-gradient(-250deg, rgba(235, 100, 83, 0.134), rgba(235, 100, 83, 0.134));
    background-image: linear-gradient(-200deg, rgba(235, 100, 83, 0.134), rgba(235, 100, 83, 0.134));
  }
  
  .shadow-primary:before {
    background-image: -o-linear-gradient(-250deg, rgba(78, 146, 249, 0.134), rgba(78, 146, 249, 0.134));
    background-image: linear-gradient(-200deg, rgba(78, 146, 249, 0.134), rgba(78, 146, 249, 0.134));
  }
  
  .shadow-warning:before {
    background-image: -o-linear-gradient(-250deg, rgba(239, 171, 24, 0.134), rgba(239, 171, 24, 0.134));
    background-image: linear-gradient(-200deg, rgba(239, 171, 24, 0.134), rgba(239, 171, 24, 0.134));
  }
  
  .shadow-success:before {
    background-image: -o-linear-gradient(-250deg, rgba(150, 209, 33, 0.134), rgba(150, 209, 33, 0.134));
    background-image: linear-gradient(-200deg, rgba(150, 209, 33, 0.134), rgba(150, 209, 33, 0.134));
  }
  
  .shadow-secondary:before {
    background-image: -o-linear-gradient(-250deg, rgba(196, 109, 227, 0.134), rgba(196, 109, 227, 0.134));
    background-image: linear-gradient(-200deg, rgba(196, 109, 227, 0.134), rgba(196, 109, 227, 0.134));
  }
  
  .shadow-info:before {
    background-image: -o-linear-gradient(-250deg, rgba(33, 212, 223, 0.134), rgba(33, 212, 223, 0.134));
    background-image: linear-gradient(-200deg, rgba(33, 212, 223, 0.134), rgba(33, 212, 223, 0.134));
  }
  
  .circle-blend-right-feature::before {
    right: auto;
    left: 0;
    margin-top: 16.938rem;
  }
  
  .circle-blend-left-feature::before {
    left: auto;
    right: -14.375rem;
    margin-top: 3.75rem;
  }
  
  .circle-blend-left-product::before {
    left: auto;
    right: -7.188rem;
    margin-top: 18.75rem;
  }
  
  .circle-blend-right-dedicated::before {
    left: 0;
    right: auto;
    margin-bottom: 18.75rem;
  }
  
  .circle-blend-left-project::before {
    left: auto;
    right: 0;
    margin-top: 37.5rem;
  }
  
  /*-----------------------------------------------
  |   Icons group
  -----------------------------------------------*/
  .icon-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .icon-group .icon-item:not(:last-child) {
    margin-left: 0.5rem;
  }
  
  .icon-item {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #485466;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    height: 2.5rem;
    width: 2.5rem;
    border: 0;
    font-size: 0.875rem;
    -webkit-box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15);
    box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15);
  }
  
  .icon-item:hover, .icon-item:focus {
    background-color: #A2BDE5;
  }
  
  .icon-item.icon-item-sm {
    height: 1.875rem;
    width: 1.875rem;
  }
  
  .icon-item.icon-item-lg {
    height: 2.75rem;
    width: 2.75rem;
  }
  
  .fontawesome-i2svg-active .icon-indicator {
    opacity: 1;
  }
  
  /*-----------------------------------------------
  |   Object fit and Z-index
  -----------------------------------------------*/
  .fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .z-index-1 {
    z-index: 1;
  }
  
  .z-index-2 {
    z-index: 2 !important;
  }
  
  .z-index--1 {
    z-index: -1;
  }
  
  /*-----------------------------------------------
  |   Sidebar
  -----------------------------------------------*/
  .sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
    top: 5.3125rem;
  }
  
  /*-----------------------------------------------
  |   Custom circle
  -----------------------------------------------*/
  .circle-dashed {
    border: 1px dashed #00465f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
  }
  
  /*-----------------------------------------------
  |   Miscellaneous
  -----------------------------------------------*/
  .hover-text-decoration-none:hover, .hover-text-decoration-none:focus {
    text-decoration: none;
  }
  
  .resize-none {
    resize: none;
  }
  
  /*-----------------------------------------------
  |   Outline
  -----------------------------------------------*/
  .outline-none {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .outline-none:hover, .outline-none:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  /*-----------------------------------------------
  |   Vertical Line (used in kanban header)
  -----------------------------------------------*/
  .vertical-line:after {
    position: absolute;
    content: "";
    height: 75%;
    width: 1px;
    background: #90A8CC;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .vertical-line.vertical-line-400:after {
    background-color: #7E92B2;
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                 Transition                                 */
  /* -------------------------------------------------------------------------- */
  .transition-base {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .transition-none {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  
  .fsp-75 {
    font-size: 75%;
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                    Width                                   */
  /* -------------------------------------------------------------------------- */
  .min-w-0 {
    min-width: 0;
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                Terms sidebar                               */
  /* -------------------------------------------------------------------------- */
  .terms-sidebar .nav-link {
    color: #6C7E99;
    font-weight: 500;
    font-family: "Nunito", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  .terms-sidebar .nav-link.active {
    color: #00465f;
  }
  
  .border-navbar-gradient {
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(10.94%, rgba(255, 255, 255, 0.890625)), color-stop(86.46%, #FFFFFF), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.890625) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.890625) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
  }
  
  .backdrop {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  .navbar-klean {
      background:rgb(255 255 255 / 100%) !important;
  }
  .navbar-klean {
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(10.94%, rgba(219, 219, 250, 0.01)), color-stop(86.46%, #FFFFFF), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(219, 219, 250, 0.01) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(219, 219, 250, 0.01) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-style: solid;
    -o-border-image: -o-linear-gradient(right, rgba(243, 244, 245, 0.801) 1%, #f9fbff 50%, rgba(255, 255, 255, 0) 100%) 100% 0 100% 0/2px 0 2px 0 stretch;
    border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, rgba(243, 244, 245, 0.801)), color-stop(50%, #f9fbff), to(rgba(255, 255, 255, 0))) 100% 0 100% 0/2px 0 2px 0 stretch;
    border-image: linear-gradient(to left, rgba(243, 244, 245, 0.801) 1%, #f9fbff 50%, rgba(255, 255, 255, 0) 100%) 100% 0 100% 0/2px 0 2px 0 stretch;
  }
  
  .navbar-border-klean {
    border-style: solid;
    -o-border-image: -o-linear-gradient(right, rgba(255, 244, 245, 0.801) 1%, #f9fbff 50%, rgba(255, 255, 255, 0) 100%) 100% 0 100% 0/2px 0 2px 0 stretch;
    border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, rgba(255, 244, 245, 0.801)), color-stop(50%, #f9fbff), to(rgba(255, 255, 255, 0))) 100% 0 100% 0/2px 0 2px 0 stretch;
    border-image: linear-gradient(to left, rgba(255, 244, 245, 0.801) 1%, #f9fbff 50%, rgba(255, 255, 255, 0) 100%) 100% 0 100% 0/2px 0 2px 0 stretch;
  }
  
  .navbar .btn:focus{
      box-shadow:unset;
  }
  .icon {
    padding: 1rem;
    border-radius: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .icon-primary {
    color: #013649;
  }
  
  .icon-secondary {
    color: #C46DE3;
  }
  
  .icon-success {
    color: #96D121;
  }
  
  .icon-info {
    color: #21D4DF;
  }
  
  .icon-warning {
    color: #EFAB18;
  }
  
  .icon-danger {
    color: #EB6453;
  }
  
  .icon-light {
    color: #F9FAFD;
  }
  
  .icon-dark {
    color: #000000;
  }
  
  /*-----------------------------------------------
  |   LaslesVPN glow buttons
  -----------------------------------------------*/
  .btn-glow {
    position: relative;
  }
  
  .btn-glow::before {
    content: '';
    height: 80%;
    width: 80%;
    position: absolute;
    top: 10%;
    right: 10%;
    display: inline-block;
    background-color: inherit;
    opacity: 0.55;
    -webkit-filter: blur(26px);
    filter: blur(26px);
    -webkit-transform: translateY(45%);
    -ms-transform: translateY(45%);
    transform: translateY(45%);
    z-index: -1;
    border-radius: 10px;
  }
  
  .btn-gradient:hover {
    -webkit-box-shadow: 0 10px 20px #EE6BFA, 0 6px 6px #00465f;
    box-shadow: 0 10px 20px #EE6BFA, 0 6px 6px #00465f;
  }
  
  .btn-klean {
    color: #FFF;
    font-weight: 500;
    background: #004158;
  }
  
  .btn-klean-outline {
    position: relative;
    background: #275f73;
    color: #d9d5d5;
  }
  
  .btn-klean-outline:hover {
    background: #224d5d;
    color: #fff;
    /*border: 1px solid #1e7897;*/
  }
  
  /* Hover */
  .hover-top {
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .hover-top.hover-top-shadow-lg:hover, .hover-top.hover-top-shadow-lg:focus {
    -webkit-transform: translateY(-0.3125rem) translateZ(0);
    transform: translateY(-0.3125rem) translateZ(0);
  }
  
  .hover-top:hover, .hover-top:focus {
    -webkit-transform: translateY(-0.125rem) translateZ(0);
    transform: translateY(-0.125rem) translateZ(0);
    -webkit-box-shadow: -0.5rem 0.5rem 1.5rem rgba(110, 74, 156, 0.1) !important;
    box-shadow: -0.5rem 0.5rem 1.5rem rgba(110, 74, 156, 0.1) !important;
    background-color: #004662;
    color: #fff;
  }
  
  .hover-top:hover .heading-color, .hover-top:focus .heading-color {
    color: #fff;
  }
  
  /* -------------------------------------------------------------------------- */
  /*                                    Badge                                   */
  /* -------------------------------------------------------------------------- */
  .badge {
    line-height: 0.8125rem;
  }
  
  .badge-circle {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0.5rem;
  }
  
  @media (min-width: 768px) {
    .badge-circle {
      height: 3.4rem;
      width: 3.4rem;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0 1rem;
    }
  }
  
  .carousel-control-next,
  .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #12151A;
    text-align: center;
    opacity: 0.9;
    -webkit-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-next,
    .carousel-control-prev {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }
  }
  
  .carousel-control-next:hover, .carousel-control-next:focus,
  .carousel-control-prev:hover,
  .carousel-control-prev:focus {
    color: #12151A;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
  }
  
  .carousel-control-prev {
    right: 0;
  }
  
  .carousel-control-next {
    left: 0;
  }
  
  .carousel-indicators {
    position: static;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: 0;
  }
  
  .carousel-indicators li {
    border-radius: 50%;
    border-radius: 10px;
  }
  
  .carousel-indicators .active {
    opacity: 1;
  }
  
  .carousel-control-prev {
    right: auto;
    left: 45px;
  }
  
  .card-span {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 0;
  }
  
  .card-span .card-span-img {
    position: absolute;
    right: 50%;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
  }
  
  .card-bg {
    background-color: #ffffff1c;
    -webkit-backdrop-filter: blur(0.625rem);
    backdrop-filter: blur(0.625rem);
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
  }
  
  .product-card-bg {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(2.875rem);
    backdrop-filter: blur(2.875rem);
    border: 0.125rem solid #fff;
    border-radius: 5.375rem;
  }
  
  .project-card-bg {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(0.625rem);
    backdrop-filter: blur(0.625rem);
    border: 0.125rem solid #fff;
    border-radius: 1.6875rem;
  }
  
  .testimonial-card-bg {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(1.875rem);
    backdrop-filter: blur(1.875rem);
    border: 0.125rem solid #fff;
    border-radius: 7.5rem;
  }
  .testimonial .bg-holder{
      z-index: 1;
  }
  
  .team-card {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .team-card-1 {
    border-radius: 2.5rem 1.5rem 4.375rem 1.5rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.9);
  }
  
  .team-card-2 {
    border-radius: 4.375rem 1.5rem 2.5rem 1.5rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.9);
  }
  
  .team-card-3 {
    border-radius: 2.5rem 4.375rem 1.5rem 1.5rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.9);
  }
  
  .team-card-4 {
    border-radius: 1.5rem 1.5rem 2.5rem 4.375rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.9);
  }
  
  .input-group-icon {
    position: relative;
  }
  
#web-form-gallery-section .card {
    border-radius: 2.5rem;
}
  .input-group-icon .input-box {
    padding-right: 2.8rem;
    vertical-align: middle;
    text-align: right;
  }
  
  .input-group-icon .input-box-icon {
    position: absolute;
    top: 18px;
    right: 2rem;
    color: #90A8CC;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  #testimonial .testimonial-slider .item{
    padding: 52px;
  }
  #testimonial .testimonial-slider .owl-dots .owl-dot span{
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 14px;
    height: 8px;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #00465f;
    background-clip: padding-box;
    border: 0;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }
#testimonial .testimonial-slider .owl-dots .owl-dot.active span {
  opacity: 1;
}
  #testimonial .testimonial-slider .owl-nav{
    display: none; 
  }
  
  /*-----------------------------------------------
  |   textarea box
  -----------------------------------------------*/
  .input-group-text-icon {
    position: relative;
  }
  
  .input-group-text-icon .input-box {
    padding-right: 2.8rem;
    vertical-align: middle;
  }
  
  .input-group-text-icon .input-box-text-icon {
    position: absolute;
    color: #6C7E99;
    top: 15%;
    right: 2rem;
    color: #90A8CC;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  

  .contact-form .bg-form{
    background-position:center right;
    background-size:contain;
  }
  @media screen and (max-width:992px) {
    .contact-form .bg-form{
      background-size:cover;
    }
  }

  /*-----------------------------------------------
  |   User Styles
  -----------------------------------------------*/

#home h1{
  line-height: 63px;
  font-size: 2.2rem !important;
}
#home h2{
    color:#E69B00;
    font-size: 1.66rem !important;
}

#home .bg-holder.bg-1 {
  background-image:url(../img/illustrations/hero.png);
  background-position:left bottom;
}
#home .bg-holder.bg-2 {
  background-image:url(../img/illustrations/heroheader-bg.png);
  background-position:center;
  background-size:contain;
}

  .pt-10{
    padding-top: 10rem;
  }
  @media screen and (max-width:1200px) {
    .pt-10{
      padding-top: 6rem;
    }
    .nav-menu .btn{
      padding: 0.5rem 1rem;
    }
  }
  @media (min-width: 992px){
    .ms-lg-auto {
      margin-right: auto ;
    }
  }
    @media screen and (max-width:575px){
        .nav-menu .btn{
            padding:0.5rem;
        }
    }
    
.navbar .container{
    flex-wrap: nowrap;
}
        
    }
.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.mt-7 {
  margin-top: 5rem ;
}
.mb-6 {
  margin-bottom: 4rem ;
}
.mt-6 {
  margin-top: 4rem ;
}
.mb-8 {
  margin-bottom: 7.5rem ;
}
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media screen and (max-width:1200px) {
  .mb-8{
    margin-bottom: 3rem;
  }
}
@media screen and (max-width:992px) {
  .mb-8{
    margin-bottom: 5rem;
  }
  #home h1{
    line-height: 50px;
  }
}
@media (min-width: 576px){
  .px-sm-8 {
      padding-left: 7.5rem ;
      padding-right: 7.5rem ;
  }
}


.top-footer .bg-holder.bg-1{
  background-position:center;
  background-size:cover;
  z-index:0;
}
.top-footer .bg-holder.bg-2{
  background-position:right top;
  background-size:auto;
  margin-left:-200px;
} 
.top-footer .bg-holder{
    background-color: #f5f5f5;
}
.top-footer .subtitle{
    color:#333;
}
.footer p{
    color: #b4b4b4;
}
@media screen and (max-width:1399px){
    .top-footer .fs-6 {
        font-size: 2.5rem !important;
        line-height: 1.5;
    }
}


.contact-form p{
  margin-bottom: 0; 
  max-width: 265px;
}
.content-banner{
  margin: 0 auto;
  max-width: 700px;
}
@media screen and (max-width:1500px){
  .contact-form p{
    max-width:400px;
  }
  .content-banner{
    max-width: 550px;
  }
}
@media screen and (max-width:1200px){
  .contact-form p{
    max-width:unset;
  }
  #home{
    padding: 8.5rem 0 7.5rem!important;
  }
  .web-full-banner-section .bg-holder:first-child{
    height: 72% !important;
    width: 70% !important;
  }
}
@media screen and (max-width:768px){
  #home{
    padding-bottom: 2.5rem !important;
  }
  .web-full-banner-section h1{
    font-size: 28px !important;
  }
  .web-full-banner-section .bg-holder:first-child{
    height: 85% !important;
    width: 80% !important;
  }
}
@media screen and (min-width:576px){
  .text-sm-end{
    text-align: right !important;
  }
}
.border-top {
  border-top: 1px solid #90A8CC !important;
}
.contact-form .card{
  border-radius: 1rem;
}
.contact-form.order-pg , .contact-form.contat-pg{
    background: #c5c5c5;
}
.contact-form.order-pg.mt-10 , .contact-form.contat-pg.mt-10 {
    margin-top:6rem;   
}
@media screen and (max-width:767px){
    .contact-form.order-pg.mt-10 , .contact-form.contat-pg.mt-10 {
        margin-top:5rem;   
    }
}
.contact-form.order-pg h1 , .contact-form.contat-pg h1{
    color:#333;
}
.contact-form.order-pg p ,
.contact-form.contat-pg p {
     max-width: unset; 
}

.contact-form label{
    color: #c7c7c7;
    font-size: 0.8rem;
}
 .form-control{
  text-align: right;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #d2dded;
  border: 1px solid #fff;
  background-color: #224d5d;
  border-color:rgb(77 107 119);
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  border-radius: 1.5rem;
}
 .form-control:place-holder{
    color: #d2dded;
 }
.form-control:focus{
    color: #eee;
    background-color: #224d5d;
    border-color:rgb(77 107 119);
}
.input-box {
  padding-right: 2.8rem !important;
  vertical-align: middle;
}
textarea{
  resize: none;
}
textarea.form-control{
    border-radius: 1.5rem !important;
}

@media screen and (max-width:1200px) {
  .bg-cover{
    background-size: cover !important;
  }
}
@media screen and (max-width:1200px) {
  .left-radius{
    border-top-left-radius: 4.5rem;
    border-bottom-left-radius: 4.5rem;
  }
  .right-radius{
    border-top-right-radius: 4.5rem;
    border-bottom-right-radius: 4.5rem;
  }
}
@media screen and (max-width:992px) {
  .left-radius{
    border-radius: 0;
  }
  .right-radius{
    border-radius: 0;
  }
}

.flex-1 p {
  margin-bottom: 0;
  max-width: 250px;
}
@media screen and (max-width:1600px){
  .flex-1 p{
    max-width:330px;
  }
}
@media screen and (max-width:1500px){
  .flex-1 p{
    max-width:350px;
  }
}
@media screen and (max-width:1200px){
  .flex-1 p{
    max-width:unset;
  }
}
.card{
  border-radius: 1rem;
}
.text-100 {
  color: #00466230 !important;
}

#blog-list-container-section{
  overflow: visible;
}
#blog-list-container-section .tag-item{
    background-color: #194760 !important;
}

.two-wrap-section h1{
  line-height: 43px !important;
}
.two-wrap-section .tx-bx {
    box-shadow: 0px 6px 34px rgb(36 42 51 / 9%);
    padding: 20px;
    border-radius: 1rem;
}
.two-wrap-section .tx-bx  .more-info-btn {
    background: #d1941c;
}
.two-wrap-section .tx-bx  .more-info-btn span{
    color: #fff !important;
    font-weight: 500 !important;
}
.two-wrap-section p{
  line-height: 31px;
}
@media screen and (max-width:768px) {
  .two-wrap-section p{
    font-size: 16px !important;
  }
}

.two-wrap-section.rtl_sec{
    padding: 68px 0 0;
}
.two-wrap-section.ltr_sec{
    padding: 80px 0 0;
}
@media screen and (max-width:991px) {
    .two-wrap-section.ltr_sec{
        padding-top:50px;
    }
}
#blog .subtitle , #testimonial .subtitle , #home .subtitle , .top-footer .subtitle{
  line-height: 29px;
}
#blog h2{
    color:#333;
}
#blog .card-bg {
    background-color: #275f73;
}
#blog.blog_home .card-bg p{
    color:#eee;
}
#blog .col-md-6:nth-child(2) .card-bg {
    background-color: #c5c5c5;
}
#blog .card-body h3{
    height:60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#blog .col-md-6:nth-child(2)  .card-body h3 {
    color:#333;
}

#blog .col-md-6:nth-child(2)  .card-body .fw-normal {
    color:#7e7e7e;
}


#blog.recommend_author .col-md-6:nth-child(2) .card-body h5 {
    color: #333;
    font-weight: 600;
}
#blog.recommend_author .card-bg .fw-normal {
    color: #b7b7b7;
}



#web-review-section .review-box .review-item .card-body .user_index1 {
  font-size: 20px;
  margin-left: 10px;
  color: #c35a5a;
  border: 1px solid #c35a5a;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index2 {
  font-size: 20px;
  margin-left: 10px;
  color: #b96a35;
  border: 1px solid #b96a35;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index3 {
    font-size: 20px;
    margin-left: 10px;
  color: #566739;
  border: 1px solid #566739;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index4 {
    font-size: 20px;
    margin-left: 10px;
  color: #1f6580;
  border: 1px solid #1f6580;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index5 {
      font-size: 20px;
    margin-left: 10px;
  color: #4f2689;
  border: 1px solid #4f2689;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index6 {
      font-size: 20px;
    margin-left: 10px;
  color: #6f4ebc;
  border: 1px solid #6f4ebc;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index7 {
    font-size: 20px;
    margin-left: 10px;
  color: #52957b;
  border: 1px solid #52957b;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index8 {
    font-size: 20px;
    margin-left: 10px;
  color: #5f3933;
  border: 1px solid #5f3933;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index9 {
    font-size: 20px;
    margin-left: 10px;
  color: #561515;
  border: 1px solid #561515;
  padding: 9px 12px;
  border-radius: 50%;
}
#web-review-section .review-box .review-item .card-body .user_index10 {
    font-size: 20px;
    margin-left: 10px;
  color: #ff7b00;
  border: 1px solid #ff7b00;
  padding: 9px 12px;
  border-radius: 50%;
}
.card-body form .control-label{
    margin-bottom: 7px;
    font-size: 15px;
    color: #a1b1cb;
}

.brand-item {
    max-width: 120px;
    margin: 0 auto;
    background: #c5c5c5;
    border-radius: 10px;
    padding: 10px;
}
.footer .blog-list li {
    max-width: 300px;
    width: 100%;
}
.footer .blog-list li a{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width:575px){
    .footer .blog-list li {
        max-width: 80%;
        margin:0 auto;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #00465f;
}
.form-control{
    background-color: #224d5d;
    border-color: rgb(77 107 119);
}
.footer .form-control  {
    padding-right:1rem !important;
}
.footer .form-control:focus{
    background-color: #013649;
    border-color: rgb(77 107 119);
}
.footer .input-group-icon .input-box-icon{
    right:auto;
    top:20px;
    left:0.8rem;
}
.alert {
      font-size: 14px; 
}
#brand-slider-section, #home .bg-holder.bg-1,  #contact{
    background-color: #00465f;
}
#brand-slider-section {
    background-color: #f5f5f5;
}
#home{
    background-color: #00465f;
}
#home h1, , .card-body a{
    color: #fff;
}
#blog .subtitle, .footer a, #testimonial .subtitle, #home .subtitle{
    color: #d9d5d5;
}
 .two-wrap-section p , #testimonial p{
    color: #7e7e7e;
 }
.web-full-banner-section h1{
    color: #d1941c !important;
}
/*.shadow-square-bottom::before, .shadow-square-top::before{*/
/*    background-color: #d1941c;*/
/*}*/
.fw-bold{color: #d1941c;}
.footer , .bg-form{background: #013649 !important;}
.owl-carousel .owl-stage {
    transition: all 1s !important;
}


  #contact{
      background-color: #c5c5c5;
  }
  #contact h2{
      color:#333;
  }
  .contact-form .bg-form{
      background: #c5c5c5 !important;
  }
  .contact-form .bg-holder{
      background-color: #c5c5c5;
  }
  .contact-form .card-bg{
      background-color: #00465f;
  }
  .contact-form .icon{
      background-color: #00465f;
      color: #f0f7f9;
  }
  .contact-form p{
      color: #000;
  }
  .contact-form .btn-klean{
      background: #7b9eaa;
  }
.two-wrap-section h1{
    color:#333;
}
#testimonial span.fw-bold{
    color: #7e7e7e;
    font-weight: 300 !important;
    font-size: 1rem !important;
    text-align: left;
}
#testimonial .w-bold.text-gradient{
    line-height: 1.5;
}

#testimonial h2{
    color: #333;
    font-weight:700;
}

.banner-section h2{
    color:#333;
}
.banner-section .ban{
    padding: 16px;
    border-radius: 16px;
    background: #c5c5c5;
}

.banner-section .ban img{
    border-radius: 16px;
}
.banner-section .ban1 , .banner-section .ban3 , .banner-section .ban5{
    background: #275f73;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #3b393954;
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color: rgb(143 143 143);
    height: 41%;
}





