/*!
Themosis boilerplate is based on Underscores https://underscores.me/.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/	
@import url(https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700|Montserrat:400,500,600,700&display=swap);
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
  }
  
  [tabindex="-1"]:focus {
    outline: 0 !important;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  abbr[title],
  abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
  
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
  }
  
  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: 0.5rem;
    margin-left: 0;
  }
  
  blockquote {
    margin: 0 0 1rem;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
  }
  a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
  }
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
  }
  a:not([href]):not([tabindex]):focus {
    outline: 0;
  }
  
  pre,
  code,
  kbd,
  samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
  }
  
  pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
  }
  
  figure {
    margin: 0 0 1rem;
  }
  
  img {
    vertical-align: middle;
    border-style: none;
  }
  
  svg {
    overflow: hidden;
    vertical-align: middle;
  }
  
  table {
    border-collapse: collapse;
  }
  
  caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
  }
  
  th {
    text-align: inherit;
  }
  
  label {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  button {
    border-radius: 0;
  }
  
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
  }
  
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  select {
    word-wrap: normal;
  }
  
  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;
  }
  
  button::-moz-focus-inner,
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }
  
  input[type=radio],
  input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
  }
  
  input[type=date],
  input[type=time],
  input[type=datetime-local],
  input[type=month] {
    -webkit-appearance: listbox;
  }
  
  textarea {
    overflow: auto;
    resize: vertical;
  }
  
  fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  [type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
  }
  
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
  }
  
  output {
    display: inline-block;
  }
  
  summary {
    display: list-item;
    cursor: pointer;
  }
  
  template {
    display: none;
  }
  
  [hidden] {
    display: none !important;
  }
  
  .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  @media (min-width: 576px) {
    .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
      max-width: 1140px;
    }
  }
  
  .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  .no-gutters > .col,
  .no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
  
  .col-xl,
  .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
  .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
  .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
  .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
  .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  
  .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  
  .col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  
  .col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  
  .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  
  .col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  
  .col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  
  .col-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  
  .col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  
  .col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .order-first {
    order: -1;
  }
  
  .order-last {
    order: 13;
  }
  
  .order-0 {
    order: 0;
  }
  
  .order-1 {
    order: 1;
  }
  
  .order-2 {
    order: 2;
  }
  
  .order-3 {
    order: 3;
  }
  
  .order-4 {
    order: 4;
  }
  
  .order-5 {
    order: 5;
  }
  
  .order-6 {
    order: 6;
  }
  
  .order-7 {
    order: 7;
  }
  
  .order-8 {
    order: 8;
  }
  
  .order-9 {
    order: 9;
  }
  
  .order-10 {
    order: 10;
  }
  
  .order-11 {
    order: 11;
  }
  
  .order-12 {
    order: 12;
  }
  
  .offset-1 {
    margin-left: 8.3333333333%;
  }
  
  .offset-2 {
    margin-left: 16.6666666667%;
  }
  
  .offset-3 {
    margin-left: 25%;
  }
  
  .offset-4 {
    margin-left: 33.3333333333%;
  }
  
  .offset-5 {
    margin-left: 41.6666666667%;
  }
  
  .offset-6 {
    margin-left: 50%;
  }
  
  .offset-7 {
    margin-left: 58.3333333333%;
  }
  
  .offset-8 {
    margin-left: 66.6666666667%;
  }
  
  .offset-9 {
    margin-left: 75%;
  }
  
  .offset-10 {
    margin-left: 83.3333333333%;
  }
  
  .offset-11 {
    margin-left: 91.6666666667%;
  }
  
  @media (min-width: 576px) {
    .col-sm {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
    }
  
    .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
  
    .col-sm-1 {
      flex: 0 0 8.3333333333%;
      max-width: 8.3333333333%;
    }
  
    .col-sm-2 {
      flex: 0 0 16.6666666667%;
      max-width: 16.6666666667%;
    }
  
    .col-sm-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  
    .col-sm-4 {
      flex: 0 0 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .col-sm-5 {
      flex: 0 0 41.6666666667%;
      max-width: 41.6666666667%;
    }
  
    .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  
    .col-sm-7 {
      flex: 0 0 58.3333333333%;
      max-width: 58.3333333333%;
    }
  
    .col-sm-8 {
      flex: 0 0 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .col-sm-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
  
    .col-sm-10 {
      flex: 0 0 83.3333333333%;
      max-width: 83.3333333333%;
    }
  
    .col-sm-11 {
      flex: 0 0 91.6666666667%;
      max-width: 91.6666666667%;
    }
  
    .col-sm-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .order-sm-first {
      order: -1;
    }
  
    .order-sm-last {
      order: 13;
    }
  
    .order-sm-0 {
      order: 0;
    }
  
    .order-sm-1 {
      order: 1;
    }
  
    .order-sm-2 {
      order: 2;
    }
  
    .order-sm-3 {
      order: 3;
    }
  
    .order-sm-4 {
      order: 4;
    }
  
    .order-sm-5 {
      order: 5;
    }
  
    .order-sm-6 {
      order: 6;
    }
  
    .order-sm-7 {
      order: 7;
    }
  
    .order-sm-8 {
      order: 8;
    }
  
    .order-sm-9 {
      order: 9;
    }
  
    .order-sm-10 {
      order: 10;
    }
  
    .order-sm-11 {
      order: 11;
    }
  
    .order-sm-12 {
      order: 12;
    }
  
    .offset-sm-0 {
      margin-left: 0;
    }
  
    .offset-sm-1 {
      margin-left: 8.3333333333%;
    }
  
    .offset-sm-2 {
      margin-left: 16.6666666667%;
    }
  
    .offset-sm-3 {
      margin-left: 25%;
    }
  
    .offset-sm-4 {
      margin-left: 33.3333333333%;
    }
  
    .offset-sm-5 {
      margin-left: 41.6666666667%;
    }
  
    .offset-sm-6 {
      margin-left: 50%;
    }
  
    .offset-sm-7 {
      margin-left: 58.3333333333%;
    }
  
    .offset-sm-8 {
      margin-left: 66.6666666667%;
    }
  
    .offset-sm-9 {
      margin-left: 75%;
    }
  
    .offset-sm-10 {
      margin-left: 83.3333333333%;
    }
  
    .offset-sm-11 {
      margin-left: 91.6666666667%;
    }
  }
  @media (min-width: 768px) {
    .col-md {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
    }
  
    .col-md-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
  
    .col-md-1 {
      flex: 0 0 8.3333333333%;
      max-width: 8.3333333333%;
    }
  
    .col-md-2 {
      flex: 0 0 16.6666666667%;
      max-width: 16.6666666667%;
    }
  
    .col-md-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  
    .col-md-4 {
      flex: 0 0 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .col-md-5 {
      flex: 0 0 41.6666666667%;
      max-width: 41.6666666667%;
    }
  
    .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  
    .col-md-7 {
      flex: 0 0 58.3333333333%;
      max-width: 58.3333333333%;
    }
  
    .col-md-8 {
      flex: 0 0 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .col-md-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
  
    .col-md-10 {
      flex: 0 0 83.3333333333%;
      max-width: 83.3333333333%;
    }
  
    .col-md-11 {
      flex: 0 0 91.6666666667%;
      max-width: 91.6666666667%;
    }
  
    .col-md-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .order-md-first {
      order: -1;
    }
  
    .order-md-last {
      order: 13;
    }
  
    .order-md-0 {
      order: 0;
    }
  
    .order-md-1 {
      order: 1;
    }
  
    .order-md-2 {
      order: 2;
    }
  
    .order-md-3 {
      order: 3;
    }
  
    .order-md-4 {
      order: 4;
    }
  
    .order-md-5 {
      order: 5;
    }
  
    .order-md-6 {
      order: 6;
    }
  
    .order-md-7 {
      order: 7;
    }
  
    .order-md-8 {
      order: 8;
    }
  
    .order-md-9 {
      order: 9;
    }
  
    .order-md-10 {
      order: 10;
    }
  
    .order-md-11 {
      order: 11;
    }
  
    .order-md-12 {
      order: 12;
    }
  
    .offset-md-0 {
      margin-left: 0;
    }
  
    .offset-md-1 {
      margin-left: 8.3333333333%;
    }
  
    .offset-md-2 {
      margin-left: 16.6666666667%;
    }
  
    .offset-md-3 {
      margin-left: 25%;
    }
  
    .offset-md-4 {
      margin-left: 33.3333333333%;
    }
  
    .offset-md-5 {
      margin-left: 41.6666666667%;
    }
  
    .offset-md-6 {
      margin-left: 50%;
    }
  
    .offset-md-7 {
      margin-left: 58.3333333333%;
    }
  
    .offset-md-8 {
      margin-left: 66.6666666667%;
    }
  
    .offset-md-9 {
      margin-left: 75%;
    }
  
    .offset-md-10 {
      margin-left: 83.3333333333%;
    }
  
    .offset-md-11 {
      margin-left: 91.6666666667%;
    }
  }
  @media (min-width: 992px) {
    .col-lg {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
    }
  
    .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
  
    .col-lg-1 {
      flex: 0 0 8.3333333333%;
      max-width: 8.3333333333%;
    }
  
    .col-lg-2 {
      flex: 0 0 16.6666666667%;
      max-width: 16.6666666667%;
    }
  
    .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  
    .col-lg-4 {
      flex: 0 0 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .col-lg-5 {
      flex: 0 0 41.6666666667%;
      max-width: 41.6666666667%;
    }
  
    .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  
    .col-lg-7 {
      flex: 0 0 58.3333333333%;
      max-width: 58.3333333333%;
    }
  
    .col-lg-8 {
      flex: 0 0 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .col-lg-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
  
    .col-lg-10 {
      flex: 0 0 83.3333333333%;
      max-width: 83.3333333333%;
    }
  
    .col-lg-11 {
      flex: 0 0 91.6666666667%;
      max-width: 91.6666666667%;
    }
  
    .col-lg-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .order-lg-first {
      order: -1;
    }
  
    .order-lg-last {
      order: 13;
    }
  
    .order-lg-0 {
      order: 0;
    }
  
    .order-lg-1 {
      order: 1;
    }
  
    .order-lg-2 {
      order: 2;
    }
  
    .order-lg-3 {
      order: 3;
    }
  
    .order-lg-4 {
      order: 4;
    }
  
    .order-lg-5 {
      order: 5;
    }
  
    .order-lg-6 {
      order: 6;
    }
  
    .order-lg-7 {
      order: 7;
    }
  
    .order-lg-8 {
      order: 8;
    }
  
    .order-lg-9 {
      order: 9;
    }
  
    .order-lg-10 {
      order: 10;
    }
  
    .order-lg-11 {
      order: 11;
    }
  
    .order-lg-12 {
      order: 12;
    }
  
    .offset-lg-0 {
      margin-left: 0;
    }
  
    .offset-lg-1 {
      margin-left: 8.3333333333%;
    }
  
    .offset-lg-2 {
      margin-left: 16.6666666667%;
    }
  
    .offset-lg-3 {
      margin-left: 25%;
    }
  
    .offset-lg-4 {
      margin-left: 33.3333333333%;
    }
  
    .offset-lg-5 {
      margin-left: 41.6666666667%;
    }
  
    .offset-lg-6 {
      margin-left: 50%;
    }
  
    .offset-lg-7 {
      margin-left: 58.3333333333%;
    }
  
    .offset-lg-8 {
      margin-left: 66.6666666667%;
    }
  
    .offset-lg-9 {
      margin-left: 75%;
    }
  
    .offset-lg-10 {
      margin-left: 83.3333333333%;
    }
  
    .offset-lg-11 {
      margin-left: 91.6666666667%;
    }
  }
  @media (min-width: 1200px) {
    .col-xl {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
    }
  
    .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
  
    .col-xl-1 {
      flex: 0 0 8.3333333333%;
      max-width: 8.3333333333%;
    }
  
    .col-xl-2 {
      flex: 0 0 16.6666666667%;
      max-width: 16.6666666667%;
    }
  
    .col-xl-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  
    .col-xl-4 {
      flex: 0 0 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .col-xl-5 {
      flex: 0 0 41.6666666667%;
      max-width: 41.6666666667%;
    }
  
    .col-xl-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  
    .col-xl-7 {
      flex: 0 0 58.3333333333%;
      max-width: 58.3333333333%;
    }
  
    .col-xl-8 {
      flex: 0 0 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .col-xl-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
  
    .col-xl-10 {
      flex: 0 0 83.3333333333%;
      max-width: 83.3333333333%;
    }
  
    .col-xl-11 {
      flex: 0 0 91.6666666667%;
      max-width: 91.6666666667%;
    }
  
    .col-xl-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .order-xl-first {
      order: -1;
    }
  
    .order-xl-last {
      order: 13;
    }
  
    .order-xl-0 {
      order: 0;
    }
  
    .order-xl-1 {
      order: 1;
    }
  
    .order-xl-2 {
      order: 2;
    }
  
    .order-xl-3 {
      order: 3;
    }
  
    .order-xl-4 {
      order: 4;
    }
  
    .order-xl-5 {
      order: 5;
    }
  
    .order-xl-6 {
      order: 6;
    }
  
    .order-xl-7 {
      order: 7;
    }
  
    .order-xl-8 {
      order: 8;
    }
  
    .order-xl-9 {
      order: 9;
    }
  
    .order-xl-10 {
      order: 10;
    }
  
    .order-xl-11 {
      order: 11;
    }
  
    .order-xl-12 {
      order: 12;
    }
  
    .offset-xl-0 {
      margin-left: 0;
    }
  
    .offset-xl-1 {
      margin-left: 8.3333333333%;
    }
  
    .offset-xl-2 {
      margin-left: 16.6666666667%;
    }
  
    .offset-xl-3 {
      margin-left: 25%;
    }
  
    .offset-xl-4 {
      margin-left: 33.3333333333%;
    }
  
    .offset-xl-5 {
      margin-left: 41.6666666667%;
    }
  
    .offset-xl-6 {
      margin-left: 50%;
    }
  
    .offset-xl-7 {
      margin-left: 58.3333333333%;
    }
  
    .offset-xl-8 {
      margin-left: 66.6666666667%;
    }
  
    .offset-xl-9 {
      margin-left: 75%;
    }
  
    .offset-xl-10 {
      margin-left: 83.3333333333%;
    }
  
    .offset-xl-11 {
      margin-left: 91.6666666667%;
    }
  }
  .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
  }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6;
  }
  
  .table-sm th,
  .table-sm td {
    padding: 0.3rem;
  }
  
  .table-bordered {
    border: 1px solid #dee2e6;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px;
  }
  
  .table-borderless th,
  .table-borderless td,
  .table-borderless thead th,
  .table-borderless tbody + tbody {
    border: 0;
  }
  
  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
  }
  
  .table-active,
  .table-active > th,
  .table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
  }
  
  .table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
  }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
  }
  
  .table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
  }
  .table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
  }
  
  .table-dark {
    color: #fff;
    background-color: #343a40;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th {
    border-color: #454d55;
  }
  .table-dark.table-bordered {
    border: 0;
  }
  .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
  }
  .table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.075);
  }
  
  @media (max-width: 575.98px) {
    .table-responsive-sm {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered {
      border: 0;
    }
  }
  @media (max-width: 767.98px) {
    .table-responsive-md {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered {
      border: 0;
    }
  }
  @media (max-width: 991.98px) {
    .table-responsive-lg {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered {
      border: 0;
    }
  }
  @media (max-width: 1199.98px) {
    .table-responsive-xl {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered {
      border: 0;
    }
  }
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  
  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none;
    }
  }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0;
  }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }
  
  select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
  }
  
  .form-control-file,
  .form-control-range {
    display: block;
    width: 100%;
  }
  
  .col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
  }
  
  .col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
  }
  
  .col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
  }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0;
  }
  
  .form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
  }
  
  .form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  
  select.form-control[size], select.form-control[multiple] {
    height: auto;
  }
  
  textarea.form-control {
    height: auto;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-text {
    display: block;
    margin-top: 0.25rem;
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
  }
  .form-row > .col,
  .form-row > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
  }
  
  .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
  }
  .form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
  }
  
  .form-check-label {
    margin-bottom: 0;
  }
  
  .form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
  }
  .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
  }
  
  .valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
  }
  
  .valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 0.25rem;
  }
  
  .was-validated .form-control:valid, .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }
  .was-validated .form-control:valid ~ .valid-feedback,
  .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  .form-control.is-valid ~ .valid-tooltip {
    display: block;
  }
  
  .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  }
  
  .was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #28a745;
    padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }
  .was-validated .custom-select:valid ~ .valid-feedback,
  .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
  .custom-select.is-valid ~ .valid-tooltip {
    display: block;
  }
  
  .was-validated .form-control-file:valid ~ .valid-feedback,
  .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
  .form-control-file.is-valid ~ .valid-tooltip {
    display: block;
  }
  
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
  }
  .was-validated .form-check-input:valid ~ .valid-feedback,
  .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  .form-check-input.is-valid ~ .valid-tooltip {
    display: block;
  }
  
  .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745;
  }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #28a745;
  }
  .was-validated .custom-control-input:valid ~ .valid-feedback,
  .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
  .custom-control-input.is-valid ~ .valid-tooltip {
    display: block;
  }
  .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57;
  }
  .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }
  .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745;
  }
  
  .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745;
  }
  .was-validated .custom-file-input:valid ~ .valid-feedback,
  .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
  .custom-file-input.is-valid ~ .valid-tooltip {
    display: block;
  }
  .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }
  
  .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
  }
  
  .invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
  }
  
  .was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  .was-validated .form-control:invalid ~ .invalid-feedback,
  .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  .form-control.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  
  .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  }
  
  .was-validated .custom-select:invalid, .custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  .was-validated .custom-select:invalid ~ .invalid-feedback,
  .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
  .custom-select.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  
  .was-validated .form-control-file:invalid ~ .invalid-feedback,
  .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
  .form-control-file.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
  }
  .was-validated .form-check-input:invalid ~ .invalid-feedback,
  .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  
  .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
  }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #dc3545;
  }
  .was-validated .custom-control-input:invalid ~ .invalid-feedback,
  .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
  .custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d;
  }
  .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545;
  }
  
  .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
  }
  .was-validated .custom-file-input:invalid ~ .invalid-feedback,
  .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
  .custom-file-input.is-invalid ~ .invalid-tooltip {
    display: block;
  }
  .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  
  .form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .form-inline .form-check {
    width: 100%;
  }
  @media (min-width: 576px) {
    .form-inline label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
    }
    .form-inline .form-group {
      display: flex;
      flex: 0 0 auto;
      flex-flow: row wrap;
      align-items: center;
      margin-bottom: 0;
    }
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
      display: inline-block;
    }
    .form-inline .input-group,
  .form-inline .custom-select {
      width: auto;
    }
    .form-inline .form-check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      padding-left: 0;
    }
    .form-inline .form-check-input {
      position: relative;
      flex-shrink: 0;
      margin-top: 0;
      margin-right: 0.25rem;
      margin-left: 0;
    }
    .form-inline .custom-control {
      align-items: center;
      justify-content: center;
    }
    .form-inline .custom-control-label {
      margin-bottom: 0;
    }
  }
  
  .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    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;
  }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none;
    }
  }
  .btn:hover {
    color: #212529;
    text-decoration: none;
  }
  .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .btn.disabled, .btn:disabled {
    opacity: 0.65;
  }
  a.btn.disabled,
  fieldset:disabled a.btn {
    pointer-events: none;
  }
  
  .btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
  }
  .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    box-shadow: none;
  }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  .btn-block + .btn-block {
    margin-top: 0.5rem;
  }
  
  input[type=submit].btn-block,
  input[type=reset].btn-block,
  input[type=button].btn-block {
    width: 100%;
  }
  
  .fade {
    transition: opacity 0.15s linear;
  }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none;
    }
  }
  .fade:not(.show) {
    opacity: 0;
  }
  
  .collapse:not(.show) {
    display: none;
  }
  
  .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
  }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none;
    }
  }
  
  .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .custom-control-inline {
    display: inline-flex;
    margin-right: 1rem;
  }
  
  .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
  }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff;
  }
  .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
  }
  .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
  }
  .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
  }
  
  .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
  }
  .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
  }
  .custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
  }
  
  .custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
  }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff;
  }
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  }
  .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
  }
  .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
  }
  
  .custom-radio .custom-control-label::before {
    border-radius: 50%;
  }
  .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }
  .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
  }
  
  .custom-switch {
    padding-left: 2.25rem;
  }
  .custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
  }
  .custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
    transition: transform 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: transform 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-transform 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
      transition: none;
    }
  }
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
            transform: translateX(0.75rem);
  }
  .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
  }
  
  .custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
  }
  .custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
  }
  .custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
  }
  .custom-select::-ms-expand {
    display: none;
  }
  
  .custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
  }
  
  .custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
  }
  
  .custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
  }
  
  .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    opacity: 0;
  }
  .custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
  }
  .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
  }
  .custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
  }
  
  .custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
  }
  .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
  }
  
  .custom-range {
    width: 100%;
    height: calc(1rem + 0.4rem);
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .custom-range:focus {
    outline: none;
  }
  .custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-range::-moz-focus-outer {
    border: 0;
  }
  .custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
            appearance: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
      transition: none;
    }
  }
  .custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff;
  }
  .custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
  }
  .custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
         appearance: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
      transition: none;
    }
  }
  .custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff;
  }
  .custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
  }
  .custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
      transition: none;
    }
  }
  .custom-range::-ms-thumb:active {
    background-color: #b3d7ff;
  }
  .custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
  }
  .custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem;
  }
  .custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem;
  }
  .custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
  }
  .custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
  }
  .custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
  }
  .custom-range:disabled::-moz-range-track {
    cursor: default;
  }
  .custom-range:disabled::-ms-thumb {
    background-color: #adb5bd;
  }
  
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
  .custom-file-label,
  .custom-select {
      transition: none;
    }
  }
  
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
  }
  .card > hr {
    margin-right: 0;
    margin-left: 0;
  }
  .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  
  .card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
  }
  
  .card-title {
    margin-bottom: 0.75rem;
  }
  
  .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
  }
  
  .card-text:last-child {
    margin-bottom: 0;
  }
  
  .card-link:hover {
    text-decoration: none;
  }
  .card-link + .card-link {
    margin-left: 1.25rem;
  }
  
  .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  }
  .card-header + .list-group .list-group-item:first-child {
    border-top: 0;
  }
  
  .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
  }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  }
  
  .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
  }
  
  .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
  
  .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
  }
  
  .card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
  }
  
  .card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
  }
  
  .card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
  }
  
  .card-deck {
    display: flex;
    flex-direction: column;
  }
  .card-deck .card {
    margin-bottom: 15px;
  }
  @media (min-width: 576px) {
    .card-deck {
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px;
    }
    .card-deck .card {
      display: flex;
      flex: 1 0 0%;
      flex-direction: column;
      margin-right: 15px;
      margin-bottom: 0;
      margin-left: 15px;
    }
  }
  
  .card-group {
    display: flex;
    flex-direction: column;
  }
  .card-group > .card {
    margin-bottom: 15px;
  }
  @media (min-width: 576px) {
    .card-group {
      flex-flow: row wrap;
    }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0;
    }
    .card-group > .card + .card {
      margin-left: 0;
      border-left: 0;
    }
    .card-group > .card:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
      border-top-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
      border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:first-child) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
      border-top-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
      border-bottom-left-radius: 0;
    }
  }
  
  .card-columns .card {
    margin-bottom: 0.75rem;
  }
  @media (min-width: 576px) {
    .card-columns {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3;
      -webkit-column-gap: 1.25rem;
         -moz-column-gap: 1.25rem;
              column-gap: 1.25rem;
      orphans: 1;
      widows: 1;
    }
    .card-columns .card {
      display: inline-block;
      width: 100%;
    }
  }
  
  .accordion > .card {
    overflow: hidden;
  }
  .accordion > .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0;
  }
  .accordion > .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0;
  }
  .accordion > .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .accordion > .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .accordion > .card .card-header {
    margin-bottom: -1px;
  }
  
  .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
  }
  
  .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
  }
  .page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
  }
  .page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
  .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
  }
  
  .pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
  }
  .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
  }
  
  .pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
  }
  .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
  }
  
  .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
  }
  .close:hover {
    color: #000;
    text-decoration: none;
  }
  .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: 0.75;
  }
  
  button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  a.close.disabled {
    pointer-events: none;
  }
  
  .d-none {
    display: none !important;
  }
  
  .d-inline {
    display: inline !important;
  }
  
  .d-inline-block {
    display: inline-block !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  .d-table {
    display: table !important;
  }
  
  .d-table-row {
    display: table-row !important;
  }
  
  .d-table-cell {
    display: table-cell !important;
  }
  
  .d-flex {
    display: flex !important;
  }
  
  .d-inline-flex {
    display: inline-flex !important;
  }
  
  @media (min-width: 576px) {
    .d-sm-none {
      display: none !important;
    }
  
    .d-sm-inline {
      display: inline !important;
    }
  
    .d-sm-inline-block {
      display: inline-block !important;
    }
  
    .d-sm-block {
      display: block !important;
    }
  
    .d-sm-table {
      display: table !important;
    }
  
    .d-sm-table-row {
      display: table-row !important;
    }
  
    .d-sm-table-cell {
      display: table-cell !important;
    }
  
    .d-sm-flex {
      display: flex !important;
    }
  
    .d-sm-inline-flex {
      display: inline-flex !important;
    }
  }
  @media (min-width: 768px) {
    .d-md-none {
      display: none !important;
    }
  
    .d-md-inline {
      display: inline !important;
    }
  
    .d-md-inline-block {
      display: inline-block !important;
    }
  
    .d-md-block {
      display: block !important;
    }
  
    .d-md-table {
      display: table !important;
    }
  
    .d-md-table-row {
      display: table-row !important;
    }
  
    .d-md-table-cell {
      display: table-cell !important;
    }
  
    .d-md-flex {
      display: flex !important;
    }
  
    .d-md-inline-flex {
      display: inline-flex !important;
    }
  }
  @media (min-width: 992px) {
    .d-lg-none {
      display: none !important;
    }
  
    .d-lg-inline {
      display: inline !important;
    }
  
    .d-lg-inline-block {
      display: inline-block !important;
    }
  
    .d-lg-block {
      display: block !important;
    }
  
    .d-lg-table {
      display: table !important;
    }
  
    .d-lg-table-row {
      display: table-row !important;
    }
  
    .d-lg-table-cell {
      display: table-cell !important;
    }
  
    .d-lg-flex {
      display: flex !important;
    }
  
    .d-lg-inline-flex {
      display: inline-flex !important;
    }
  }
  @media (min-width: 1200px) {
    .d-xl-none {
      display: none !important;
    }
  
    .d-xl-inline {
      display: inline !important;
    }
  
    .d-xl-inline-block {
      display: inline-block !important;
    }
  
    .d-xl-block {
      display: block !important;
    }
  
    .d-xl-table {
      display: table !important;
    }
  
    .d-xl-table-row {
      display: table-row !important;
    }
  
    .d-xl-table-cell {
      display: table-cell !important;
    }
  
    .d-xl-flex {
      display: flex !important;
    }
  
    .d-xl-inline-flex {
      display: inline-flex !important;
    }
  }
  @media print {
    .d-print-none {
      display: none !important;
    }
  
    .d-print-inline {
      display: inline !important;
    }
  
    .d-print-inline-block {
      display: inline-block !important;
    }
  
    .d-print-block {
      display: block !important;
    }
  
    .d-print-table {
      display: table !important;
    }
  
    .d-print-table-row {
      display: table-row !important;
    }
  
    .d-print-table-cell {
      display: table-cell !important;
    }
  
    .d-print-flex {
      display: flex !important;
    }
  
    .d-print-inline-flex {
      display: inline-flex !important;
    }
  }
  .float-left {
    float: left !important;
  }
  
  .float-right {
    float: right !important;
  }
  
  .float-none {
    float: none !important;
  }
  
  @media (min-width: 576px) {
    .float-sm-left {
      float: left !important;
    }
  
    .float-sm-right {
      float: right !important;
    }
  
    .float-sm-none {
      float: none !important;
    }
  }
  @media (min-width: 768px) {
    .float-md-left {
      float: left !important;
    }
  
    .float-md-right {
      float: right !important;
    }
  
    .float-md-none {
      float: none !important;
    }
  }
  @media (min-width: 992px) {
    .float-lg-left {
      float: left !important;
    }
  
    .float-lg-right {
      float: right !important;
    }
  
    .float-lg-none {
      float: none !important;
    }
  }
  @media (min-width: 1200px) {
    .float-xl-left {
      float: left !important;
    }
  
    .float-xl-right {
      float: right !important;
    }
  
    .float-xl-none {
      float: none !important;
    }
  }
  .overflow-auto {
    overflow: auto !important;
  }
  
  .overflow-hidden {
    overflow: hidden !important;
  }
  
  .position-absolute {
    position: absolute !important;
  }
  
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
  }
  
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
  
  .m-0 {
    margin: 0 !important;
  }
  
  .mt-0,
  .my-0 {
    margin-top: 0 !important;
  }
  
  .mr-0,
  .mx-0 {
    margin-right: 0 !important;
  }
  
  .mb-0,
  .my-0 {
    margin-bottom: 0 !important;
  }
  
  .ml-0,
  .mx-0 {
    margin-left: 0 !important;
  }
  
  .m-1 {
    margin: 0.25rem !important;
  }
  
  .mt-1,
  .my-1 {
    margin-top: 0.25rem !important;
  }
  
  .mr-1,
  .mx-1 {
    margin-right: 0.25rem !important;
  }
  
  .mb-1,
  .my-1 {
    margin-bottom: 0.25rem !important;
  }
  
  .ml-1,
  .mx-1 {
    margin-left: 0.25rem !important;
  }
  
  .m-2 {
    margin: 0.5rem !important;
  }
  
  .mt-2,
  .my-2 {
    margin-top: 0.5rem !important;
  }
  
  .mr-2,
  .mx-2 {
    margin-right: 0.5rem !important;
  }
  
  .mb-2,
  .my-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .ml-2,
  .mx-2 {
    margin-left: 0.5rem !important;
  }
  
  .m-3 {
    margin: 1rem !important;
  }
  
  .mt-3,
  .my-3 {
    margin-top: 1rem !important;
  }
  
  .mr-3,
  .mx-3 {
    margin-right: 1rem !important;
  }
  
  .mb-3,
  .my-3 {
    margin-bottom: 1rem !important;
  }
  
  .ml-3,
  .mx-3 {
    margin-left: 1rem !important;
  }
  
  .m-4 {
    margin: 1.5rem !important;
  }
  
  .mt-4,
  .my-4 {
    margin-top: 1.5rem !important;
  }
  
  .mr-4,
  .mx-4 {
    margin-right: 1.5rem !important;
  }
  
  .mb-4,
  .my-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .ml-4,
  .mx-4 {
    margin-left: 1.5rem !important;
  }
  
  .m-5 {
    margin: 3rem !important;
  }
  
  .mt-5,
  .my-5 {
    margin-top: 3rem !important;
  }
  
  .mr-5,
  .mx-5 {
    margin-right: 3rem !important;
  }
  
  .mb-5,
  .my-5 {
    margin-bottom: 3rem !important;
  }
  
  .ml-5,
  .mx-5 {
    margin-left: 3rem !important;
  }
  
  .p-0 {
    padding: 0 !important;
  }
  
  .pt-0,
  .py-0 {
    padding-top: 0 !important;
  }
  
  .pr-0,
  .px-0 {
    padding-right: 0 !important;
  }
  
  .pb-0,
  .py-0 {
    padding-bottom: 0 !important;
  }
  
  .pl-0,
  .px-0 {
    padding-left: 0 !important;
  }
  
  .p-1 {
    padding: 0.25rem !important;
  }
  
  .pt-1,
  .py-1 {
    padding-top: 0.25rem !important;
  }
  
  .pr-1,
  .px-1 {
    padding-right: 0.25rem !important;
  }
  
  .pb-1,
  .py-1 {
    padding-bottom: 0.25rem !important;
  }
  
  .pl-1,
  .px-1 {
    padding-left: 0.25rem !important;
  }
  
  .p-2 {
    padding: 0.5rem !important;
  }
  
  .pt-2,
  .py-2 {
    padding-top: 0.5rem !important;
  }
  
  .pr-2,
  .px-2 {
    padding-right: 0.5rem !important;
  }
  
  .pb-2,
  .py-2 {
    padding-bottom: 0.5rem !important;
  }
  
  .pl-2,
  .px-2 {
    padding-left: 0.5rem !important;
  }
  
  .p-3 {
    padding: 1rem !important;
  }
  
  .pt-3,
  .py-3 {
    padding-top: 1rem !important;
  }
  
  .pr-3,
  .px-3 {
    padding-right: 1rem !important;
  }
  
  .pb-3,
  .py-3 {
    padding-bottom: 1rem !important;
  }
  
  .pl-3,
  .px-3 {
    padding-left: 1rem !important;
  }
  
  .p-4 {
    padding: 1.5rem !important;
  }
  
  .pt-4,
  .py-4 {
    padding-top: 1.5rem !important;
  }
  
  .pr-4,
  .px-4 {
    padding-right: 1.5rem !important;
  }
  
  .pb-4,
  .py-4 {
    padding-bottom: 1.5rem !important;
  }
  
  .pl-4,
  .px-4 {
    padding-left: 1.5rem !important;
  }
  
  .p-5 {
    padding: 3rem !important;
  }
  
  .pt-5,
  .py-5 {
    padding-top: 3rem !important;
  }
  
  .pr-5,
  .px-5 {
    padding-right: 3rem !important;
  }
  
  .pb-5,
  .py-5 {
    padding-bottom: 3rem !important;
  }
  
  .pl-5,
  .px-5 {
    padding-left: 3rem !important;
  }
  
  .m-n1 {
    margin: -0.25rem !important;
  }
  
  .mt-n1,
  .my-n1 {
    margin-top: -0.25rem !important;
  }
  
  .mr-n1,
  .mx-n1 {
    margin-right: -0.25rem !important;
  }
  
  .mb-n1,
  .my-n1 {
    margin-bottom: -0.25rem !important;
  }
  
  .ml-n1,
  .mx-n1 {
    margin-left: -0.25rem !important;
  }
  
  .m-n2 {
    margin: -0.5rem !important;
  }
  
  .mt-n2,
  .my-n2 {
    margin-top: -0.5rem !important;
  }
  
  .mr-n2,
  .mx-n2 {
    margin-right: -0.5rem !important;
  }
  
  .mb-n2,
  .my-n2 {
    margin-bottom: -0.5rem !important;
  }
  
  .ml-n2,
  .mx-n2 {
    margin-left: -0.5rem !important;
  }
  
  .m-n3 {
    margin: -1rem !important;
  }
  
  .mt-n3,
  .my-n3 {
    margin-top: -1rem !important;
  }
  
  .mr-n3,
  .mx-n3 {
    margin-right: -1rem !important;
  }
  
  .mb-n3,
  .my-n3 {
    margin-bottom: -1rem !important;
  }
  
  .ml-n3,
  .mx-n3 {
    margin-left: -1rem !important;
  }
  
  .m-n4 {
    margin: -1.5rem !important;
  }
  
  .mt-n4,
  .my-n4 {
    margin-top: -1.5rem !important;
  }
  
  .mr-n4,
  .mx-n4 {
    margin-right: -1.5rem !important;
  }
  
  .mb-n4,
  .my-n4 {
    margin-bottom: -1.5rem !important;
  }
  
  .ml-n4,
  .mx-n4 {
    margin-left: -1.5rem !important;
  }
  
  .m-n5 {
    margin: -3rem !important;
  }
  
  .mt-n5,
  .my-n5 {
    margin-top: -3rem !important;
  }
  
  .mr-n5,
  .mx-n5 {
    margin-right: -3rem !important;
  }
  
  .mb-n5,
  .my-n5 {
    margin-bottom: -3rem !important;
  }
  
  .ml-n5,
  .mx-n5 {
    margin-left: -3rem !important;
  }
  
  .m-auto {
    margin: auto !important;
  }
  
  .mt-auto,
  .my-auto {
    margin-top: auto !important;
  }
  
  .mr-auto,
  .mx-auto {
    margin-right: auto !important;
  }
  
  .mb-auto,
  .my-auto {
    margin-bottom: auto !important;
  }
  
  .ml-auto,
  .mx-auto {
    margin-left: auto !important;
  }
  
  @media (min-width: 576px) {
    .m-sm-0 {
      margin: 0 !important;
    }
  
    .mt-sm-0,
  .my-sm-0 {
      margin-top: 0 !important;
    }
  
    .mr-sm-0,
  .mx-sm-0 {
      margin-right: 0 !important;
    }
  
    .mb-sm-0,
  .my-sm-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-sm-0,
  .mx-sm-0 {
      margin-left: 0 !important;
    }
  
    .m-sm-1 {
      margin: 0.25rem !important;
    }
  
    .mt-sm-1,
  .my-sm-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-sm-1,
  .mx-sm-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-sm-1,
  .my-sm-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-sm-1,
  .mx-sm-1 {
      margin-left: 0.25rem !important;
    }
  
    .m-sm-2 {
      margin: 0.5rem !important;
    }
  
    .mt-sm-2,
  .my-sm-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-sm-2,
  .mx-sm-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-sm-2,
  .my-sm-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-sm-2,
  .mx-sm-2 {
      margin-left: 0.5rem !important;
    }
  
    .m-sm-3 {
      margin: 1rem !important;
    }
  
    .mt-sm-3,
  .my-sm-3 {
      margin-top: 1rem !important;
    }
  
    .mr-sm-3,
  .mx-sm-3 {
      margin-right: 1rem !important;
    }
  
    .mb-sm-3,
  .my-sm-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-sm-3,
  .mx-sm-3 {
      margin-left: 1rem !important;
    }
  
    .m-sm-4 {
      margin: 1.5rem !important;
    }
  
    .mt-sm-4,
  .my-sm-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-sm-4,
  .mx-sm-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-sm-4,
  .my-sm-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-sm-4,
  .mx-sm-4 {
      margin-left: 1.5rem !important;
    }
  
    .m-sm-5 {
      margin: 3rem !important;
    }
  
    .mt-sm-5,
  .my-sm-5 {
      margin-top: 3rem !important;
    }
  
    .mr-sm-5,
  .mx-sm-5 {
      margin-right: 3rem !important;
    }
  
    .mb-sm-5,
  .my-sm-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-sm-5,
  .mx-sm-5 {
      margin-left: 3rem !important;
    }
  
    .p-sm-0 {
      padding: 0 !important;
    }
  
    .pt-sm-0,
  .py-sm-0 {
      padding-top: 0 !important;
    }
  
    .pr-sm-0,
  .px-sm-0 {
      padding-right: 0 !important;
    }
  
    .pb-sm-0,
  .py-sm-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-sm-0,
  .px-sm-0 {
      padding-left: 0 !important;
    }
  
    .p-sm-1 {
      padding: 0.25rem !important;
    }
  
    .pt-sm-1,
  .py-sm-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-sm-1,
  .px-sm-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-sm-1,
  .py-sm-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-sm-1,
  .px-sm-1 {
      padding-left: 0.25rem !important;
    }
  
    .p-sm-2 {
      padding: 0.5rem !important;
    }
  
    .pt-sm-2,
  .py-sm-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-sm-2,
  .px-sm-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-sm-2,
  .py-sm-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-sm-2,
  .px-sm-2 {
      padding-left: 0.5rem !important;
    }
  
    .p-sm-3 {
      padding: 1rem !important;
    }
  
    .pt-sm-3,
  .py-sm-3 {
      padding-top: 1rem !important;
    }
  
    .pr-sm-3,
  .px-sm-3 {
      padding-right: 1rem !important;
    }
  
    .pb-sm-3,
  .py-sm-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-sm-3,
  .px-sm-3 {
      padding-left: 1rem !important;
    }
  
    .p-sm-4 {
      padding: 1.5rem !important;
    }
  
    .pt-sm-4,
  .py-sm-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-sm-4,
  .px-sm-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-sm-4,
  .py-sm-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-sm-4,
  .px-sm-4 {
      padding-left: 1.5rem !important;
    }
  
    .p-sm-5 {
      padding: 3rem !important;
    }
  
    .pt-sm-5,
  .py-sm-5 {
      padding-top: 3rem !important;
    }
  
    .pr-sm-5,
  .px-sm-5 {
      padding-right: 3rem !important;
    }
  
    .pb-sm-5,
  .py-sm-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-sm-5,
  .px-sm-5 {
      padding-left: 3rem !important;
    }
  
    .m-sm-n1 {
      margin: -0.25rem !important;
    }
  
    .mt-sm-n1,
  .my-sm-n1 {
      margin-top: -0.25rem !important;
    }
  
    .mr-sm-n1,
  .mx-sm-n1 {
      margin-right: -0.25rem !important;
    }
  
    .mb-sm-n1,
  .my-sm-n1 {
      margin-bottom: -0.25rem !important;
    }
  
    .ml-sm-n1,
  .mx-sm-n1 {
      margin-left: -0.25rem !important;
    }
  
    .m-sm-n2 {
      margin: -0.5rem !important;
    }
  
    .mt-sm-n2,
  .my-sm-n2 {
      margin-top: -0.5rem !important;
    }
  
    .mr-sm-n2,
  .mx-sm-n2 {
      margin-right: -0.5rem !important;
    }
  
    .mb-sm-n2,
  .my-sm-n2 {
      margin-bottom: -0.5rem !important;
    }
  
    .ml-sm-n2,
  .mx-sm-n2 {
      margin-left: -0.5rem !important;
    }
  
    .m-sm-n3 {
      margin: -1rem !important;
    }
  
    .mt-sm-n3,
  .my-sm-n3 {
      margin-top: -1rem !important;
    }
  
    .mr-sm-n3,
  .mx-sm-n3 {
      margin-right: -1rem !important;
    }
  
    .mb-sm-n3,
  .my-sm-n3 {
      margin-bottom: -1rem !important;
    }
  
    .ml-sm-n3,
  .mx-sm-n3 {
      margin-left: -1rem !important;
    }
  
    .m-sm-n4 {
      margin: -1.5rem !important;
    }
  
    .mt-sm-n4,
  .my-sm-n4 {
      margin-top: -1.5rem !important;
    }
  
    .mr-sm-n4,
  .mx-sm-n4 {
      margin-right: -1.5rem !important;
    }
  
    .mb-sm-n4,
  .my-sm-n4 {
      margin-bottom: -1.5rem !important;
    }
  
    .ml-sm-n4,
  .mx-sm-n4 {
      margin-left: -1.5rem !important;
    }
  
    .m-sm-n5 {
      margin: -3rem !important;
    }
  
    .mt-sm-n5,
  .my-sm-n5 {
      margin-top: -3rem !important;
    }
  
    .mr-sm-n5,
  .mx-sm-n5 {
      margin-right: -3rem !important;
    }
  
    .mb-sm-n5,
  .my-sm-n5 {
      margin-bottom: -3rem !important;
    }
  
    .ml-sm-n5,
  .mx-sm-n5 {
      margin-left: -3rem !important;
    }
  
    .m-sm-auto {
      margin: auto !important;
    }
  
    .mt-sm-auto,
  .my-sm-auto {
      margin-top: auto !important;
    }
  
    .mr-sm-auto,
  .mx-sm-auto {
      margin-right: auto !important;
    }
  
    .mb-sm-auto,
  .my-sm-auto {
      margin-bottom: auto !important;
    }
  
    .ml-sm-auto,
  .mx-sm-auto {
      margin-left: auto !important;
    }
  }
  @media (min-width: 768px) {
    .m-md-0 {
      margin: 0 !important;
    }
  
    .mt-md-0,
  .my-md-0 {
      margin-top: 0 !important;
    }
  
    .mr-md-0,
  .mx-md-0 {
      margin-right: 0 !important;
    }
  
    .mb-md-0,
  .my-md-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-md-0,
  .mx-md-0 {
      margin-left: 0 !important;
    }
  
    .m-md-1 {
      margin: 0.25rem !important;
    }
  
    .mt-md-1,
  .my-md-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-md-1,
  .mx-md-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-md-1,
  .my-md-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-md-1,
  .mx-md-1 {
      margin-left: 0.25rem !important;
    }
  
    .m-md-2 {
      margin: 0.5rem !important;
    }
  
    .mt-md-2,
  .my-md-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-md-2,
  .mx-md-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-md-2,
  .my-md-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-md-2,
  .mx-md-2 {
      margin-left: 0.5rem !important;
    }
  
    .m-md-3 {
      margin: 1rem !important;
    }
  
    .mt-md-3,
  .my-md-3 {
      margin-top: 1rem !important;
    }
  
    .mr-md-3,
  .mx-md-3 {
      margin-right: 1rem !important;
    }
  
    .mb-md-3,
  .my-md-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-md-3,
  .mx-md-3 {
      margin-left: 1rem !important;
    }
  
    .m-md-4 {
      margin: 1.5rem !important;
    }
  
    .mt-md-4,
  .my-md-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-md-4,
  .mx-md-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-md-4,
  .my-md-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-md-4,
  .mx-md-4 {
      margin-left: 1.5rem !important;
    }
  
    .m-md-5 {
      margin: 3rem !important;
    }
  
    .mt-md-5,
  .my-md-5 {
      margin-top: 3rem !important;
    }
  
    .mr-md-5,
  .mx-md-5 {
      margin-right: 3rem !important;
    }
  
    .mb-md-5,
  .my-md-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-md-5,
  .mx-md-5 {
      margin-left: 3rem !important;
    }
  
    .p-md-0 {
      padding: 0 !important;
    }
  
    .pt-md-0,
  .py-md-0 {
      padding-top: 0 !important;
    }
  
    .pr-md-0,
  .px-md-0 {
      padding-right: 0 !important;
    }
  
    .pb-md-0,
  .py-md-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-md-0,
  .px-md-0 {
      padding-left: 0 !important;
    }
  
    .p-md-1 {
      padding: 0.25rem !important;
    }
  
    .pt-md-1,
  .py-md-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-md-1,
  .px-md-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-md-1,
  .py-md-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-md-1,
  .px-md-1 {
      padding-left: 0.25rem !important;
    }
  
    .p-md-2 {
      padding: 0.5rem !important;
    }
  
    .pt-md-2,
  .py-md-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-md-2,
  .px-md-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-md-2,
  .py-md-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-md-2,
  .px-md-2 {
      padding-left: 0.5rem !important;
    }
  
    .p-md-3 {
      padding: 1rem !important;
    }
  
    .pt-md-3,
  .py-md-3 {
      padding-top: 1rem !important;
    }
  
    .pr-md-3,
  .px-md-3 {
      padding-right: 1rem !important;
    }
  
    .pb-md-3,
  .py-md-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-md-3,
  .px-md-3 {
      padding-left: 1rem !important;
    }
  
    .p-md-4 {
      padding: 1.5rem !important;
    }
  
    .pt-md-4,
  .py-md-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-md-4,
  .px-md-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-md-4,
  .py-md-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-md-4,
  .px-md-4 {
      padding-left: 1.5rem !important;
    }
  
    .p-md-5 {
      padding: 3rem !important;
    }
  
    .pt-md-5,
  .py-md-5 {
      padding-top: 3rem !important;
    }
  
    .pr-md-5,
  .px-md-5 {
      padding-right: 3rem !important;
    }
  
    .pb-md-5,
  .py-md-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-md-5,
  .px-md-5 {
      padding-left: 3rem !important;
    }
  
    .m-md-n1 {
      margin: -0.25rem !important;
    }
  
    .mt-md-n1,
  .my-md-n1 {
      margin-top: -0.25rem !important;
    }
  
    .mr-md-n1,
  .mx-md-n1 {
      margin-right: -0.25rem !important;
    }
  
    .mb-md-n1,
  .my-md-n1 {
      margin-bottom: -0.25rem !important;
    }
  
    .ml-md-n1,
  .mx-md-n1 {
      margin-left: -0.25rem !important;
    }
  
    .m-md-n2 {
      margin: -0.5rem !important;
    }
  
    .mt-md-n2,
  .my-md-n2 {
      margin-top: -0.5rem !important;
    }
  
    .mr-md-n2,
  .mx-md-n2 {
      margin-right: -0.5rem !important;
    }
  
    .mb-md-n2,
  .my-md-n2 {
      margin-bottom: -0.5rem !important;
    }
  
    .ml-md-n2,
  .mx-md-n2 {
      margin-left: -0.5rem !important;
    }
  
    .m-md-n3 {
      margin: -1rem !important;
    }
  
    .mt-md-n3,
  .my-md-n3 {
      margin-top: -1rem !important;
    }
  
    .mr-md-n3,
  .mx-md-n3 {
      margin-right: -1rem !important;
    }
  
    .mb-md-n3,
  .my-md-n3 {
      margin-bottom: -1rem !important;
    }
  
    .ml-md-n3,
  .mx-md-n3 {
      margin-left: -1rem !important;
    }
  
    .m-md-n4 {
      margin: -1.5rem !important;
    }
  
    .mt-md-n4,
  .my-md-n4 {
      margin-top: -1.5rem !important;
    }
  
    .mr-md-n4,
  .mx-md-n4 {
      margin-right: -1.5rem !important;
    }
  
    .mb-md-n4,
  .my-md-n4 {
      margin-bottom: -1.5rem !important;
    }
  
    .ml-md-n4,
  .mx-md-n4 {
      margin-left: -1.5rem !important;
    }
  
    .m-md-n5 {
      margin: -3rem !important;
    }
  
    .mt-md-n5,
  .my-md-n5 {
      margin-top: -3rem !important;
    }
  
    .mr-md-n5,
  .mx-md-n5 {
      margin-right: -3rem !important;
    }
  
    .mb-md-n5,
  .my-md-n5 {
      margin-bottom: -3rem !important;
    }
  
    .ml-md-n5,
  .mx-md-n5 {
      margin-left: -3rem !important;
    }
  
    .m-md-auto {
      margin: auto !important;
    }
  
    .mt-md-auto,
  .my-md-auto {
      margin-top: auto !important;
    }
  
    .mr-md-auto,
  .mx-md-auto {
      margin-right: auto !important;
    }
  
    .mb-md-auto,
  .my-md-auto {
      margin-bottom: auto !important;
    }
  
    .ml-md-auto,
  .mx-md-auto {
      margin-left: auto !important;
    }
  }
  @media (min-width: 992px) {
    .m-lg-0 {
      margin: 0 !important;
    }
  
    .mt-lg-0,
  .my-lg-0 {
      margin-top: 0 !important;
    }
  
    .mr-lg-0,
  .mx-lg-0 {
      margin-right: 0 !important;
    }
  
    .mb-lg-0,
  .my-lg-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-lg-0,
  .mx-lg-0 {
      margin-left: 0 !important;
    }
  
    .m-lg-1 {
      margin: 0.25rem !important;
    }
  
    .mt-lg-1,
  .my-lg-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-lg-1,
  .mx-lg-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-lg-1,
  .my-lg-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-lg-1,
  .mx-lg-1 {
      margin-left: 0.25rem !important;
    }
  
    .m-lg-2 {
      margin: 0.5rem !important;
    }
  
    .mt-lg-2,
  .my-lg-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-lg-2,
  .mx-lg-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-lg-2,
  .my-lg-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-lg-2,
  .mx-lg-2 {
      margin-left: 0.5rem !important;
    }
  
    .m-lg-3 {
      margin: 1rem !important;
    }
  
    .mt-lg-3,
  .my-lg-3 {
      margin-top: 1rem !important;
    }
  
    .mr-lg-3,
  .mx-lg-3 {
      margin-right: 1rem !important;
    }
  
    .mb-lg-3,
  .my-lg-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-lg-3,
  .mx-lg-3 {
      margin-left: 1rem !important;
    }
  
    .m-lg-4 {
      margin: 1.5rem !important;
    }
  
    .mt-lg-4,
  .my-lg-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-lg-4,
  .mx-lg-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-lg-4,
  .my-lg-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-lg-4,
  .mx-lg-4 {
      margin-left: 1.5rem !important;
    }
  
    .m-lg-5 {
      margin: 3rem !important;
    }
  
    .mt-lg-5,
  .my-lg-5 {
      margin-top: 3rem !important;
    }
  
    .mr-lg-5,
  .mx-lg-5 {
      margin-right: 3rem !important;
    }
  
    .mb-lg-5,
  .my-lg-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-lg-5,
  .mx-lg-5 {
      margin-left: 3rem !important;
    }
  
    .p-lg-0 {
      padding: 0 !important;
    }
  
    .pt-lg-0,
  .py-lg-0 {
      padding-top: 0 !important;
    }
  
    .pr-lg-0,
  .px-lg-0 {
      padding-right: 0 !important;
    }
  
    .pb-lg-0,
  .py-lg-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-lg-0,
  .px-lg-0 {
      padding-left: 0 !important;
    }
  
    .p-lg-1 {
      padding: 0.25rem !important;
    }
  
    .pt-lg-1,
  .py-lg-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-lg-1,
  .px-lg-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-lg-1,
  .py-lg-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-lg-1,
  .px-lg-1 {
      padding-left: 0.25rem !important;
    }
  
    .p-lg-2 {
      padding: 0.5rem !important;
    }
  
    .pt-lg-2,
  .py-lg-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-lg-2,
  .px-lg-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-lg-2,
  .py-lg-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-lg-2,
  .px-lg-2 {
      padding-left: 0.5rem !important;
    }
  
    .p-lg-3 {
      padding: 1rem !important;
    }
  
    .pt-lg-3,
  .py-lg-3 {
      padding-top: 1rem !important;
    }
  
    .pr-lg-3,
  .px-lg-3 {
      padding-right: 1rem !important;
    }
  
    .pb-lg-3,
  .py-lg-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-lg-3,
  .px-lg-3 {
      padding-left: 1rem !important;
    }
  
    .p-lg-4 {
      padding: 1.5rem !important;
    }
  
    .pt-lg-4,
  .py-lg-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-lg-4,
  .px-lg-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-lg-4,
  .py-lg-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-lg-4,
  .px-lg-4 {
      padding-left: 1.5rem !important;
    }
  
    .p-lg-5 {
      padding: 3rem !important;
    }
  
    .pt-lg-5,
  .py-lg-5 {
      padding-top: 3rem !important;
    }
  
    .pr-lg-5,
  .px-lg-5 {
      padding-right: 3rem !important;
    }
  
    .pb-lg-5,
  .py-lg-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-lg-5,
  .px-lg-5 {
      padding-left: 3rem !important;
    }
  
    .m-lg-n1 {
      margin: -0.25rem !important;
    }
  
    .mt-lg-n1,
  .my-lg-n1 {
      margin-top: -0.25rem !important;
    }
  
    .mr-lg-n1,
  .mx-lg-n1 {
      margin-right: -0.25rem !important;
    }
  
    .mb-lg-n1,
  .my-lg-n1 {
      margin-bottom: -0.25rem !important;
    }
  
    .ml-lg-n1,
  .mx-lg-n1 {
      margin-left: -0.25rem !important;
    }
  
    .m-lg-n2 {
      margin: -0.5rem !important;
    }
  
    .mt-lg-n2,
  .my-lg-n2 {
      margin-top: -0.5rem !important;
    }
  
    .mr-lg-n2,
  .mx-lg-n2 {
      margin-right: -0.5rem !important;
    }
  
    .mb-lg-n2,
  .my-lg-n2 {
      margin-bottom: -0.5rem !important;
    }
  
    .ml-lg-n2,
  .mx-lg-n2 {
      margin-left: -0.5rem !important;
    }
  
    .m-lg-n3 {
      margin: -1rem !important;
    }
  
    .mt-lg-n3,
  .my-lg-n3 {
      margin-top: -1rem !important;
    }
  
    .mr-lg-n3,
  .mx-lg-n3 {
      margin-right: -1rem !important;
    }
  
    .mb-lg-n3,
  .my-lg-n3 {
      margin-bottom: -1rem !important;
    }
  
    .ml-lg-n3,
  .mx-lg-n3 {
      margin-left: -1rem !important;
    }
  
    .m-lg-n4 {
      margin: -1.5rem !important;
    }
  
    .mt-lg-n4,
  .my-lg-n4 {
      margin-top: -1.5rem !important;
    }
  
    .mr-lg-n4,
  .mx-lg-n4 {
      margin-right: -1.5rem !important;
    }
  
    .mb-lg-n4,
  .my-lg-n4 {
      margin-bottom: -1.5rem !important;
    }
  
    .ml-lg-n4,
  .mx-lg-n4 {
      margin-left: -1.5rem !important;
    }
  
    .m-lg-n5 {
      margin: -3rem !important;
    }
  
    .mt-lg-n5,
  .my-lg-n5 {
      margin-top: -3rem !important;
    }
  
    .mr-lg-n5,
  .mx-lg-n5 {
      margin-right: -3rem !important;
    }
  
    .mb-lg-n5,
  .my-lg-n5 {
      margin-bottom: -3rem !important;
    }
  
    .ml-lg-n5,
  .mx-lg-n5 {
      margin-left: -3rem !important;
    }
  
    .m-lg-auto {
      margin: auto !important;
    }
  
    .mt-lg-auto,
  .my-lg-auto {
      margin-top: auto !important;
    }
  
    .mr-lg-auto,
  .mx-lg-auto {
      margin-right: auto !important;
    }
  
    .mb-lg-auto,
  .my-lg-auto {
      margin-bottom: auto !important;
    }
  
    .ml-lg-auto,
  .mx-lg-auto {
      margin-left: auto !important;
    }
  }
  @media (min-width: 1200px) {
    .m-xl-0 {
      margin: 0 !important;
    }
  
    .mt-xl-0,
  .my-xl-0 {
      margin-top: 0 !important;
    }
  
    .mr-xl-0,
  .mx-xl-0 {
      margin-right: 0 !important;
    }
  
    .mb-xl-0,
  .my-xl-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-xl-0,
  .mx-xl-0 {
      margin-left: 0 !important;
    }
  
    .m-xl-1 {
      margin: 0.25rem !important;
    }
  
    .mt-xl-1,
  .my-xl-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-xl-1,
  .mx-xl-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-xl-1,
  .my-xl-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-xl-1,
  .mx-xl-1 {
      margin-left: 0.25rem !important;
    }
  
    .m-xl-2 {
      margin: 0.5rem !important;
    }
  
    .mt-xl-2,
  .my-xl-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-xl-2,
  .mx-xl-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-xl-2,
  .my-xl-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-xl-2,
  .mx-xl-2 {
      margin-left: 0.5rem !important;
    }
  
    .m-xl-3 {
      margin: 1rem !important;
    }
  
    .mt-xl-3,
  .my-xl-3 {
      margin-top: 1rem !important;
    }
  
    .mr-xl-3,
  .mx-xl-3 {
      margin-right: 1rem !important;
    }
  
    .mb-xl-3,
  .my-xl-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-xl-3,
  .mx-xl-3 {
      margin-left: 1rem !important;
    }
  
    .m-xl-4 {
      margin: 1.5rem !important;
    }
  
    .mt-xl-4,
  .my-xl-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-xl-4,
  .mx-xl-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-xl-4,
  .my-xl-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-xl-4,
  .mx-xl-4 {
      margin-left: 1.5rem !important;
    }
  
    .m-xl-5 {
      margin: 3rem !important;
    }
  
    .mt-xl-5,
  .my-xl-5 {
      margin-top: 3rem !important;
    }
  
    .mr-xl-5,
  .mx-xl-5 {
      margin-right: 3rem !important;
    }
  
    .mb-xl-5,
  .my-xl-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-xl-5,
  .mx-xl-5 {
      margin-left: 3rem !important;
    }
  
    .p-xl-0 {
      padding: 0 !important;
    }
  
    .pt-xl-0,
  .py-xl-0 {
      padding-top: 0 !important;
    }
  
    .pr-xl-0,
  .px-xl-0 {
      padding-right: 0 !important;
    }
  
    .pb-xl-0,
  .py-xl-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-xl-0,
  .px-xl-0 {
      padding-left: 0 !important;
    }
  
    .p-xl-1 {
      padding: 0.25rem !important;
    }
  
    .pt-xl-1,
  .py-xl-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-xl-1,
  .px-xl-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-xl-1,
  .py-xl-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-xl-1,
  .px-xl-1 {
      padding-left: 0.25rem !important;
    }
  
    .p-xl-2 {
      padding: 0.5rem !important;
    }
  
    .pt-xl-2,
  .py-xl-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-xl-2,
  .px-xl-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-xl-2,
  .py-xl-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-xl-2,
  .px-xl-2 {
      padding-left: 0.5rem !important;
    }
  
    .p-xl-3 {
      padding: 1rem !important;
    }
  
    .pt-xl-3,
  .py-xl-3 {
      padding-top: 1rem !important;
    }
  
    .pr-xl-3,
  .px-xl-3 {
      padding-right: 1rem !important;
    }
  
    .pb-xl-3,
  .py-xl-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-xl-3,
  .px-xl-3 {
      padding-left: 1rem !important;
    }
  
    .p-xl-4 {
      padding: 1.5rem !important;
    }
  
    .pt-xl-4,
  .py-xl-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-xl-4,
  .px-xl-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-xl-4,
  .py-xl-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-xl-4,
  .px-xl-4 {
      padding-left: 1.5rem !important;
    }
  
    .p-xl-5 {
      padding: 3rem !important;
    }
  
    .pt-xl-5,
  .py-xl-5 {
      padding-top: 3rem !important;
    }
  
    .pr-xl-5,
  .px-xl-5 {
      padding-right: 3rem !important;
    }
  
    .pb-xl-5,
  .py-xl-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-xl-5,
  .px-xl-5 {
      padding-left: 3rem !important;
    }
  
    .m-xl-n1 {
      margin: -0.25rem !important;
    }
  
    .mt-xl-n1,
  .my-xl-n1 {
      margin-top: -0.25rem !important;
    }
  
    .mr-xl-n1,
  .mx-xl-n1 {
      margin-right: -0.25rem !important;
    }
  
    .mb-xl-n1,
  .my-xl-n1 {
      margin-bottom: -0.25rem !important;
    }
  
    .ml-xl-n1,
  .mx-xl-n1 {
      margin-left: -0.25rem !important;
    }
  
    .m-xl-n2 {
      margin: -0.5rem !important;
    }
  
    .mt-xl-n2,
  .my-xl-n2 {
      margin-top: -0.5rem !important;
    }
  
    .mr-xl-n2,
  .mx-xl-n2 {
      margin-right: -0.5rem !important;
    }
  
    .mb-xl-n2,
  .my-xl-n2 {
      margin-bottom: -0.5rem !important;
    }
  
    .ml-xl-n2,
  .mx-xl-n2 {
      margin-left: -0.5rem !important;
    }
  
    .m-xl-n3 {
      margin: -1rem !important;
    }
  
    .mt-xl-n3,
  .my-xl-n3 {
      margin-top: -1rem !important;
    }
  
    .mr-xl-n3,
  .mx-xl-n3 {
      margin-right: -1rem !important;
    }
  
    .mb-xl-n3,
  .my-xl-n3 {
      margin-bottom: -1rem !important;
    }
  
    .ml-xl-n3,
  .mx-xl-n3 {
      margin-left: -1rem !important;
    }
  
    .m-xl-n4 {
      margin: -1.5rem !important;
    }
  
    .mt-xl-n4,
  .my-xl-n4 {
      margin-top: -1.5rem !important;
    }
  
    .mr-xl-n4,
  .mx-xl-n4 {
      margin-right: -1.5rem !important;
    }
  
    .mb-xl-n4,
  .my-xl-n4 {
      margin-bottom: -1.5rem !important;
    }
  
    .ml-xl-n4,
  .mx-xl-n4 {
      margin-left: -1.5rem !important;
    }
  
    .m-xl-n5 {
      margin: -3rem !important;
    }
  
    .mt-xl-n5,
  .my-xl-n5 {
      margin-top: -3rem !important;
    }
  
    .mr-xl-n5,
  .mx-xl-n5 {
      margin-right: -3rem !important;
    }
  
    .mb-xl-n5,
  .my-xl-n5 {
      margin-bottom: -3rem !important;
    }
  
    .ml-xl-n5,
  .mx-xl-n5 {
      margin-left: -3rem !important;
    }
  
    .m-xl-auto {
      margin: auto !important;
    }
  
    .mt-xl-auto,
  .my-xl-auto {
      margin-top: auto !important;
    }
  
    .mr-xl-auto,
  .mx-xl-auto {
      margin-right: auto !important;
    }
  
    .mb-xl-auto,
  .my-xl-auto {
      margin-bottom: auto !important;
    }
  
    .ml-xl-auto,
  .mx-xl-auto {
      margin-left: auto !important;
    }
  }
  .text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }
  
  .text-justify {
    text-align: justify !important;
  }
  
  .text-wrap {
    white-space: normal !important;
  }
  
  .text-nowrap {
    white-space: nowrap !important;
  }
  
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .text-left {
    text-align: left !important;
  }
  
  .text-right {
    text-align: right !important;
  }
  
  .text-center {
    text-align: center !important;
  }
  
  @media (min-width: 576px) {
    .text-sm-left {
      text-align: left !important;
    }
  
    .text-sm-right {
      text-align: right !important;
    }
  
    .text-sm-center {
      text-align: center !important;
    }
  }
  @media (min-width: 768px) {
    .text-md-left {
      text-align: left !important;
    }
  
    .text-md-right {
      text-align: right !important;
    }
  
    .text-md-center {
      text-align: center !important;
    }
  }
  @media (min-width: 992px) {
    .text-lg-left {
      text-align: left !important;
    }
  
    .text-lg-right {
      text-align: right !important;
    }
  
    .text-lg-center {
      text-align: center !important;
    }
  }
  @media (min-width: 1200px) {
    .text-xl-left {
      text-align: left !important;
    }
  
    .text-xl-right {
      text-align: right !important;
    }
  
    .text-xl-center {
      text-align: center !important;
    }
  }
  .text-lowercase {
    text-transform: lowercase !important;
  }
  
  .text-uppercase {
    text-transform: uppercase !important;
  }
  
  .text-capitalize {
    text-transform: capitalize !important;
  }
  
  .font-weight-light {
    font-weight: 300 !important;
  }
  
  .font-weight-lighter {
    font-weight: lighter !important;
  }
  
  .font-weight-normal {
    font-weight: 400 !important;
  }
  
  .font-weight-bold {
    font-weight: 700 !important;
  }
  
  .font-weight-bolder {
    font-weight: bolder !important;
  }
  
  .font-italic {
    font-style: italic !important;
  }
  
  .text-white {
    color: #fff !important;
  }
  
  .text-body {
    color: #212529 !important;
  }
  
  .text-muted {
    color: #6c757d !important;
  }
  
  .text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  
  .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .text-decoration-none {
    text-decoration: none !important;
  }
  
  .text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .text-reset {
    color: inherit !important;
  }
  
  /*--------------------------------------------------------------
  # Normalize
  --------------------------------------------------------------*/
  /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
  /* Document
       ========================================================================== */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   */
  html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
  }
  
  /* Sections
       ========================================================================== */
  /**
   * Remove the margin in all browsers.
   */
  body {
    margin: 0;
  }
  
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  /* Grouping content
       ========================================================================== */
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  
  /* Text-level semantics
       ========================================================================== */
  /**
   * Remove the gray background on active links in IE 10.
   */
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    /* 2 */
  }
  
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  
  /**
   * Add the correct font size in all browsers.
   */
  small {
    font-size: 80%;
  }
  
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
       ========================================================================== */
  /**
   * Remove the border on images inside links in IE 10.
   */
  img {
    border-style: none;
  }
  
  /* Forms
       ========================================================================== */
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  button,
  select {
    /* 1 */
    text-transform: none;
  }
  
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  button,
  [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
  }
  
  /**
   * Remove the inner border and padding in Firefox.
   */
  button::-moz-focus-inner,
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
   * Restore the focus styles unset by the previous rule.
   */
  button:-moz-focusring,
  [type=button]:-moz-focusring,
  [type=reset]:-moz-focusring,
  [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
   * Correct the padding in Firefox.
   */
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *		`fieldset` elements in all browsers.
   */
  legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  [type=checkbox],
  [type=radio] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
  }
  
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  [type=search] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
  }
  
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
  }
  
  /* Interactive
       ========================================================================== */
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  summary {
    display: list-item;
  }
  
  /* Misc
       ========================================================================== */
  /**
   * Add the correct display in IE 10+.
   */
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  [hidden] {
    display: none;
  }
  
  /*--------------------------------------------------------------
  # Typography
  --------------------------------------------------------------*/
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    color: #404040;
    font-family: "Montserrat", "Trebuchet MS", Helvetica, sans-serif;
    font-size: 0.0625rem;
    line-height: 1.5;
  }
  
  h1, h2, h3, h4, h5, h6 {
    clear: both;
  }
  
  p {
    margin-bottom: 1.5em;
  }
  
  dfn, cite, em, i {
    font-style: italic;
  }
  
  blockquote {
    margin: 0 1.5em;
  }
  
  address {
    margin: 0 0 1.5em;
  }
  
  pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 0.05859375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
  }
  
  code, kbd, tt, var {
    font-family: Monaco, "Lucida Console", "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 0.05859375rem;
  }
  
  abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
  }
  
  mark, ins {
    background: #fff9c0;
    text-decoration: none;
  }
  
  big {
    font-size: 125%;
  }
  
  /*--------------------------------------------------------------
  # Elements
  --------------------------------------------------------------*/
  html {
    box-sizing: border-box;
  }
  
  *,
  *:before,
  *:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
  }
  
  body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
  }
  
  hr {
    background-color: #eef1f5;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
  }
  
  ul, ol {
    margin: 0 0 1.5em 3em;
  }
  
  ul {
    list-style: disc;
  }
  
  ol {
    list-style: decimal;
  }
  
  li > ul,
  li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
  }
  
  dt {
    font-weight: bold;
  }
  
  dd {
    margin: 0 1.5em 1.5em;
  }
  
  ul.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    background: transparent;
    word-break: break-word;
  }
  
  img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
  }
  
  figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
  }
  
  table {
    margin: 0 0 1.5em;
    width: 100%;
  }
  
  @media (max-width: 991.98px) {
    .table thead {
      display: none;
    }
  }
  .table .btn-secondary {
    height: 60px;
    padding: 0 76px;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid #ebeff3;
  }
  .table tr:nth-of-type(even) {
    background: #fff !important;
  }
  .table tr:nth-of-type(odd) {
    background: #f8fafc !important;
  }
  .table tr td {
    width: 24%;
    color: #02213e;
    font-size: 1rem;
    font-weight: 500;
    line-height: 60px;
    border: 0 !important;
  }
  .table tr td.info {
    width: 40%;
    color: #02213e;
    font-size: 15px;
    line-height: 1.3em;
  }
  .table tr td.action {
    width: 18%;
  }
  .table tr td.location {
    width: 60%;
  }
  .table tr td span {
    color: #1f5699;
    display: inline-block;
    line-height: 26px;
    vertical-align: middle;
  }
  .table#center tr:nth-of-type(odd) {
    background: #f4f7f9 !important;
  }
  .table#center tr td {
    padding-left: 30px;
    padding-right: 30px;
  }
  @media screen and (max-width: 990px) {
    .table tr td {
      display: block;
      float: left;
      width: 100%;
      line-height: 26px;
    }
    .table tr td.info {
      width: 100%;
    }
    .table tr td.location, .table tr td.time, .table tr td.action {
      width: 50%;
    }
    .table tr td.action {
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .table .btn {
      min-width: 160px !important;
    }
  }
  @media screen and (max-width: 380px) {
    .table tr td.location, .table tr td.time, .table tr td.action {
      width: 100%;
    }
    .table .btn {
      width: 100%;
    }
  }
  .table.no-border thead tr {
    background: none !important;
  }
  .table.no-border thead th {
    border: none;
  }
  
  /*--------------------------------------------------------------
  # Forms
  --------------------------------------------------------------*/
  button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    border: 1px solid;
    border-color: #e0eef9;
    border-radius: 3px;
    background: #32b283;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.046875rem;
    line-height: 1;
    padding: 0.6em 1em 0.4em;
  }
  button:hover,
  input[type=button]:hover,
  input[type=reset]:hover,
  input[type=submit]:hover {
    border-color: #ccc #bbb #aaa;
  }
  button:active, button:focus,
  input[type=button]:active,
  input[type=button]:focus,
  input[type=reset]:active,
  input[type=reset]:focus,
  input[type=submit]:active,
  input[type=submit]:focus {
    border-color: #aaa #bbb #bbb;
  }
  
  .contact-us .btn.btn-primary {
    font-size: 14px;
    letter-spacing: normal;
    line-height: initial;
  }
  .contact-us .btn.btn-primary span {
    position: relative;
    top: 20px;
  }
  
  input[type=text],
  input[type=email],
  input[type=url],
  input[type=password],
  input[type=search],
  input[type=number],
  input[type=tel],
  input[type=range],
  input[type=date],
  input[type=month],
  input[type=week],
  input[type=time],
  input[type=datetime],
  input[type=datetime-local],
  input[type=color],
  textarea {
    color: #666 !important;
    font-size: 18px !important;
    font-family: "Maven Pro", sans-serif !important;
    border: 2px solid #f0f3f5 ;
    border-radius: 5px !important;
    background: #fff !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
  }
  input[type=text]:focus,
  input[type=email]:focus,
  input[type=url]:focus,
  input[type=password]:focus,
  input[type=search]:focus,
  input[type=number]:focus,
  input[type=tel]:focus,
  input[type=range]:focus,
  input[type=date]:focus,
  input[type=month]:focus,
  input[type=week]:focus,
  input[type=time]:focus,
  input[type=datetime]:focus,
  input[type=datetime-local]:focus,
  input[type=color]:focus,
  textarea:focus {
    color: #111 !important;
  }
  
  select {
    color: #8f9faf !important;
    font-size: 18px !important;
    font-family: "Maven Pro", sans-serif !important;
    padding: 0 40px 0 15px !important;
    border: 2px solid #f0f3f5 !important;
    border-radius: 5px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: #fff url(../images/bg-select.svg) no-repeat 97% 50% !important;
  }
  select::-ms-expand {
    display: none !important;
  }
  
  .nf-form-content .list-select-wrap > div div {
    display: none !important;
  }
  
  textarea {
    width: 100% !important;
    resize: none !important;
  }
  
  label {
    color: #02213e;
    font-size: 18px;
    font-weight: 500;
  }
  
  #search-job,
  #search-center {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 60px;
  }
  #search-job .form-field-col,
  #search-center .form-field-col {
    float: left;
    width: 25.33%;
    margin-right: 2.6%;
  }
  #search-job .form-field-col label,
  #search-center .form-field-col label {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    font-family: "Maven Pro", sans-serif;
  }
  #search-job .form-field-col input,
  #search-job .form-field-col select,
  #search-center .form-field-col input,
  #search-center .form-field-col select {
    width: 100%;
    height: 60px;
    padding: 0 16px !important;
    color: #02213e;
    line-height: 60px;
  }
  #search-job .form-submit-col,
  #search-center .form-submit-col {
    float: left;
    width: 16%;
  }
  #search-job .form-submit-col input,
  #search-center .form-submit-col input {
    width: 100% !important;
    max-width: 240px;
    margin-top: 35px;
  }
  @media screen and (max-width: 767px) {
    #search-job .form-field-col,
  #search-job .form-submit-col,
  #search-center .form-field-col,
  #search-center .form-submit-col {
      width: 100%;
      margin: 0 0 20px;
    }
    #search-job .form-field-col input,
  #search-job .form-submit-col input,
  #search-center .form-field-col input,
  #search-center .form-submit-col input {
      max-width: 100%;
    }
  }
  
  #search-center {
    margin-top: 40px;
  }
  #search-center .form-field-col {
    width: 66%;
  }
  #search-center .form-submit-col {
    width: 31%;
  }
  @media screen and (max-width: 767px) {
    #search-center .form-field-col,
  #search-center .form-submit-col {
      width: 100%;
    }
    #search-center .form-submit-col input {
      margin: 0;
    }
  }
  
  input[type=submit],
  input[type=button] {
    width: 220px !important;
    height: 60px !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: 0 !important;
    background: #0b81dc !important;
    border-radius: 5px !important;
  }
  
  .verification-form {
    max-width: 560px;
    margin: 0 auto 25px;
    padding: 50px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
  .verification-form h2 {
    color: #357d8b;
    font-size: 30px;
    line-height: 1.8em;
    margin-bottom: 40px;
  }
  .verification-form .verification-form-row {
    position: relative;
  }
  .verification-form .verification-form-row input[type=text] {
    display: inline-block;
    width: 100%;
    height: 60px;
    margin-bottom: 50px;
    padding: 0 50px !important;
    color: #02213e !important;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #e0e6eb !important;
    background: url(../images/icon-search.svg) no-repeat 18px 50% !important;
  }
  .verification-form .verification-form-row input[type=text]::-webkit-input-placeholder {
    color: #8f9faf;
    font-weight: 400;
  }
  .verification-form .verification-form-row input[type=text]:-ms-input-placeholder {
    color: #8f9faf;
    font-weight: 400;
  }
  .verification-form .verification-form-row input[type=text]:-moz-placeholder {
    color: #8f9faf;
    font-weight: 400;
    opacity: 1;
  }
  .verification-form .verification-form-row input[type=text]::-moz-placeholder {
    color: #8f9faf;
    font-weight: 400;
    opacity: 1;
  }
  .verification-form .verification-form-row .clear-field {
    display: inline-block;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 21px;
    right: 18px;
    background: url(../images/icon-close.svg) no-repeat;
  }
  @media screen and (max-width: 1200px) {
    .verification-form h2 {
      font-size: 22px;
    }
  }
  @media screen and (max-width: 380px) {
    .verification-form {
      padding: 15px;
    }
  }
  
  .contact-form label,
  .login-form label {
    color: #4d6277;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .contact-form label span,
  .login-form label span {
    display: none !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .login-form input,
  .login-form textarea,
  .login-form select {
    color: #02213e;
    font-size: 13px !important;
    font-weight: 500;
    border: 1px solid #e0e6eb !important;
  }
  .contact-form .btn.btn-primary {
    font-size: 14px;
    letter-spacing: normal;
    line-height: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-form input,
  .login-form input {
    height: 48px;
    padding: 0 20px !important;
  }
  .contact-form input::-webkit-input-placeholder,
  .login-form input::-webkit-input-placeholder {
    color: #8f9faf;
    font-weight: 400;
  }
  .contact-form input:-ms-input-placeholder,
  .login-form input:-ms-input-placeholder {
    color: #8f9faf;
    font-weight: 400;
  }
  .contact-form input:-moz-placeholder,
  .login-form input:-moz-placeholder {
    color: #8f9faf;
    font-weight: 400;
    opacity: 1;
  }
  .contact-form input::-moz-placeholder,
  .login-form input::-moz-placeholder {
    color: #8f9faf;
    font-weight: 400;
    opacity: 1;
  }
  
  .contact-form {
    margin-top: 73px;
    padding: 55px 55px 25px;
    border-radius: 10px;
    border-top: 2px solid #0b81dc;
    background: #fff;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  .contact-form .services-block-title {
    font-size: 12px;
    min-height: 40px;
    color:#404040;
  }
  .contact-form h3,
  .contact-form .nf-form-fields-required {
    display: none !important;
  }
  .contact-form textarea {
    height: 150px !important;
    resize: none;
  }
  .contact-form input[type=button] {
    display: block;
    margin: 0 auto;
  }
  .contact-form.gray {
    max-width: 600px;
    margin: 0;
    padding: 30px;
    box-shadow: none;
    border-top-color: #dee4ea;
    background: #f8fafc;
  }
  .contact-form.gray h3 {
    display: inline-block !important;
    margin-bottom: 25px;
    color: #357d8b;
  }
  .contact-form.gray .nf-form-wrap {
    padding: 0 30px;
  }
  .contact-form.gray .nf-form-wrap input[type=button] {
    margin: 0;
  }
  @media screen and (max-width: 991px) {
    .contact-form.gray {
      max-width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .contact-form.gray .nf-form-wrap {
      padding: 0;
    }
  }
  .contact-form.big-head {
    margin: 85px 0 0;
    padding: 0;
    border: 0;
  }
  .contact-form.big-head .contact-form-head {
    height: 388px;
    padding: 96px 50px 60px 44%;
    position: relative;
    background: #f7f9fb;
    border-top: 2px solid #0b81dc;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .contact-form.big-head .contact-form-head img {
    max-width: 359px;
    max-height: 471px;
    position: absolute;
    top: -62px;
    left: 20px;
  }
  .contact-form.big-head .contact-form-head h2 {
    color: #1f5699;
    font-size: 30px;
    line-height: 1.5em;
  }
  @media screen and (max-width: 1440px) {
    .contact-form.big-head .contact-form-head {
      height: 350px;
      padding: 50px 50px 60px 44%;
    }
    .contact-form.big-head .contact-form-head img {
      max-width: 265px;
      top: -46px;
    }
    .contact-form.big-head .contact-form-head h2 {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 1200px) {
    .contact-form.big-head .contact-form-head img {
      max-width: 235px;
      top: -41px;
    }
  }
  .contact-form.big-head .nf-form-wrap {
    padding: 60px 60px 20px;
  }
  .contact-form.big-head .nf-form-wrap input[type=button] {
    width: 100% !important;
    max-width: 490px;
    margin-top: 20px;
  }
  @media screen and (max-width: 767px) {
    .contact-form.big-head {
      padding: 0 !important;
    }
    .contact-form.big-head .contact-form-head {
      height: auto;
      padding: 20px;
      border: 0;
      text-align: center;
      background: #fff;
    }
    .contact-form.big-head .contact-form-head img {
      position: static;
    }
    .contact-form.big-head .nf-form-wrap {
      padding: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .contact-form {
      margin: 0;
      padding: 25px;
      box-shadow: none;
    }
  }
  @media screen and (max-width: 414px) {
    .contact-form {
      padding: 15px;
    }
  }
  
  .login-form {
    max-width: 580px;
    margin: 50px auto 0;
    padding: 50px 60px 60px;
    border-top: 2px solid #0b81dc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  .login-form h2 {
    text-align: center;
  }
  .login-form input[type=text],
  .login-form input[type=email],
  .login-form input[type=password] {
    width: 100%;
  }
  .login-form .submit {
    line-height: 60px;
    margin-bottom: 0;
  }
  .login-form .submit a {
    font-weight: 500;
  }
  .login-form .submit input[type=submit] {
    float: right;
  }
  @media screen and (max-width: 767px) {
    .login-form {
      margin: 0;
      padding: 25px;
      box-shadow: none;
    }
    .login-form .submit input[type=submit] {
      float: none;
    }
  }
  
  .myform-row {
    margin-bottom: 20px;
  }
  
  .search-form input {
    vertical-align: top;
  }
  .search-form input[type=search] {
    height: 60px;
    margin: 0 !important;
    padding: 0 20px !important;
  }
  @media screen and (max-width: 414px) {
    .search-form label,
  .search-form input {
      width: 100% !important;
    }
  }
  
  .freemium-container-form {
    background: #f8fafc;
    padding: 25px;
  }
  .freemium-container-form .alert-danger {
    color: #641313;
    background-color: #f3d3d3;
    border-color: #eec2c2;
  }
  .freemium-container-form .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .freemium-container-form .api-error {
    display: none;
  }
  
  .whp-form select {
    text-transform: capitalize;
  }
  
  .alert-danger {
    color: #641313;
    background-color: #f3d3d3;
    border-color: #eec2c2;
  }
  
  /*--------------------------------------------------------------
  # Navigation 
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  ## Links
  --------------------------------------------------------------*/
  a {
    color: #003367;
  }
  a:visited {
    color: purple;
  }
  a:hover, a:focus, a:active {
    color: midnightblue;
  }
  a:focus {
    outline: thin dotted;
  }
  a:hover, a:active {
    outline: 0;
  }
  
  /*--------------------------------------------------------------
  ## Menus
  --------------------------------------------------------------*/
  .main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
  }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  .main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
  }
  .main-navigation ul ul ul {
    left: -999em;
    top: 0;
  }
  .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
    left: 100%;
  }
  .main-navigation ul ul a {
    width: 200px;
  }
  .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
    left: auto;
  }
  @media screen and (max-width: 1200px) {
    .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
      left: -999em;
    }
  }
  .main-navigation li {
    float: left;
    position: relative;
  }
  .main-navigation a {
    display: block;
    text-decoration: none;
  }
  /* Small menu. */
  .menu-toggle,
  .main-navigation.toggled ul {
    display: block;
  }
  
  @media screen and (min-width: 37.5em) {
    .menu-toggle {
      display: none;
    }
  
    .main-navigation ul {
      display: block;
    }
  }
  .site-main .comment-navigation,
  .site-main .posts-navigation,
  .site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
  }
  .comment-navigation .nav-previous,
  .posts-navigation .nav-previous,
  .post-navigation .nav-previous {
    float: left;
    width: 50%;
  }
  .comment-navigation .nav-next,
  .posts-navigation .nav-next,
  .post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
  }
  
  /*--------------------------------------------------------------
  # Accessibility
  --------------------------------------------------------------*/
  /* Text meant only for screen readers. */
  .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.0546875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
  }
  
  /* Do not show the outline on the skip link target. */
  #content[tabindex="-1"]:focus {
    outline: 0;
  }
  
  /*--------------------------------------------------------------
  # Alignments
  --------------------------------------------------------------*/
  .alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
  }
  
  .alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
  }
  
  .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /*--------------------------------------------------------------
  # Clearings
  --------------------------------------------------------------*/
  .clear:before::after,
  .clear:after::after,
  .entry-content:before::after,
  .entry-content:after::after,
  .comment-content:before::after,
  .comment-content:after::after,
  .site-header:before::after,
  .site-header:after::after,
  .site-content:before::after,
  .site-content:after::after,
  .site-footer:before::after,
  .site-footer:after::after {
    display: block;
    clear: both;
    content: "";
  }
  
  .clear:after,
  .entry-content:after,
  .comment-content:after,
  .site-header:after,
  .site-content:after,
  .site-footer:after {
    clear: both;
  }
  
  /*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/
  .widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
  }
  .widget select {
    max-width: 100%;
  }
  
  /*--------------------------------------------------------------
  # Content
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  ## Global
  --------------------------------------------------------------*/
  body {
    font-size: 1rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif !important;
    font-display: auto;
  }
  
  h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3em;
    margin: 0 0 35px;
    color: #357d8b;
  }
  @media screen and (max-width: 1440px) {
    h1 {
      font-size: 42px;
    }
  }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 32px;
    }
  }
  @media screen and (max-width: 380px) {
    h1 {
      font-size: 28px;
    }
  }
  
  h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #357d8b;
  }
  @media screen and (max-width: 1440px) {
    h2 {
      font-size: 32px;
    }
  }
  @media screen and (max-width: 767px) {
    h2 {
      color: #1f5699;
    }
  }
  @media screen and (max-width: 414px) {
    h2 {
      font-size: 28px;
    }
  }
  
  h3 {
    font-size: 25px;
    font-weight: 700;
    color: #3a536d;
  }
  h3 strong {
    color: #32b283;
  }
  
  h4, h5 {
    font-size: 18px;
    font-weight: 700;
    color: #3a536d;
  }
  h4 strong, h5 strong {
    font-size: 25px;
    color: #1f5699;
  }
  
  h5 {
    line-height: 1.5em;
    margin-bottom: 30px;
  }
  h5 strong {
    font-size: 18px;
  }
  
  p {
    font-family: "Maven Pro", sans-serif;
    font-display: auto;
    font-size: 16px;
    line-height: 2em;
    margin-bottom: 20px;
    color: #02213e;
  }
  p:last-child {
    margin-bottom: 0;
  }
  p strong {
    font-family: "Montserrat", sans-serif;
    font-display: auto;
    color: #3a536d;
  }
  
  ul, ol {
    margin: 0;
    padding: 0;
  }
  
  .site-content {
    padding-top: 68px;
  }
  .site-content p {
    font-size: 18px;
  }
  .site-content .has-small-font-size {
    font-size: 13px;
  }
  .site-content .has-regular-font-size, .site-content .has-normal-font-size {
    font-size: 16px;
  }
  .site-content .has-medium-font-size {
    font-size: 20px;
  }
  .site-content .has-large-font-size {
    font-size: 36px;
  }
  .site-content .has-larger-font-size, .site-content .has-huge-font-size {
    font-size: 42px;
  }
  .site-content ul {
    display: inline-block;
    margin-bottom: 30px;
    padding: 30px 35px;
  }
  .site-content ul li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-left: 20px;
    color: #02213e;
    background: none;
  }
  .site-content ul li:last-child {
    margin: 0;
  }
  .site-content ul.fa-ul {
    background: none;
  }
  @media screen and (max-width: 1440px) {
    .site-content p {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 767px) {
    .site-content ul {
      padding: 30px 5px;
    }
  }
  
  a {
    outline-style: none !important;
  }
  
  .site-content .spa-container ul li {
    margin-bottom: 0;
    padding-left: 0;
    background: none;
  }
  
  /* multiselect spa */
  .multiselect ul.multiselect__content {
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .multiselect .multiselect__input {
    font-size: 15px !important;
    margin-left: 0 !important;
    padding-bottom: 5px !important;
    padding-left: 0 !important;
    border: none !important;
  }
  .multiselect .multiselect__content-wrapper .multiselect__content .multiselect__element .multiselect__option {
    font-size: 15px;
  }
  
  /* list overwrite */
  .li-default ul {
    display: inline-block;
    margin-bottom: inherit;
    padding: inherit;
    background: none;
    list-style-type: disc;
    list-style-position: inside;
  }
  .li-default ul li {
    font-size: inherit;
    font-weight: inherit;
    margin-bottom: inherit;
    padding-left: inherit;
    color: #02213e;
    background: none;
    background-size: inherit;
  }
  .li-default ul li:last-child {
    margin: 0;
  }
  
  /* v-select spa */
  .site-content .spa-container .dropdown.v-select .dropdown-toggle {
    background: #FFF;
  }
  .site-content .spa-container .dropdown.v-select .dropdown-toggle:after {
    display: none;
  }
  .site-content .spa-container .dropdown.v-select .dropdown-toggle .vs__selected-options input[type=search] {
    font-size: 1em !important;
    border: 1px solid transparent !important;
    background: none !important;
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }
  
  /* Breadcrumb
  -----------------------------------------*/
  .breadcrumb {
    font-family: "Maven Pro", sans-serif;
    font-display: auto;
    font-size: 14px;
    margin: 60px 0 0;
    padding: 0;
    color: #8f9faf;
    background: transparent;
  }
  .breadcrumb a {
    position: relative;
    display: inline-block;
    margin-right: 7px;
    padding-right: 9px;
    color: #003367;
  }
  .breadcrumb a::after {
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 9px;
    content: "";
    background: #e5ebf2;
  }
  @media screen and (max-width: 990px) {
    .breadcrumb {
      display: none;
    }
  }
  
  .ovh {
    overflow: hidden;
  }
  
  /* Modal
  -----------------------------------------*/
  .modal {
    background: rgba(2, 41, 80, 0.6);
  }
  .modal .modal-dialog {
    max-width: 982px;
  }
  .modal .modal-dialog .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 10px;
  }
  .modal .modal-dialog .modal-content .modal-header {
    position: relative;
    z-index: 2;
    display: block;
    padding: 40px 20px 20px;
    text-align: center;
    border: 0;
    box-shadow: 0 5px 10px 0 rgba(31, 86, 153, 0.06);
  }
  .modal .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    color: #8f9faf;
    background: #f0f4f7;
  }
  @media screen and (max-width: 767px) {
    .modal .modal-dialog .modal-content .modal-header .close {
      top: 10px;
      right: 10px;
    }
  }
  .modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 25px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    color: #357d8b;
  }
  .modal .modal-dialog .modal-content .modal-header p {
    font-weight: 700;
    margin: 0;
    color: #0b81dc;
  }
  .modal .modal-dialog .modal-content .modal-header p span {
    display: inline-block;
    margin: 0 20px;
  }
  .modal .modal-dialog .modal-content .modal-body {
    padding: 30px 50px;
    background: #f5f8fa;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-form-title, .modal .modal-dialog .modal-content .modal-body .nf-form-fields-required {
    display: none;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-label {
    margin: 0;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-label label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4d6277;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-description p {
    font-size: 13px;
    font-weight: 500;
    color: #8f9faf;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-element {
    margin-top: 10px;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-element input, .modal .modal-dialog .modal-content .modal-body .nf-field-element select, .modal .modal-dialog .modal-content .modal-body .nf-field-element textarea {
    font-size: 13px;
    font-weight: 500;
    padding: 0 40px 0 20px !important;
    color: #8f9faf !important;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-element textarea {
    height: 170px;
  }
  .modal .modal-dialog .modal-content .modal-body .nf-field-element input[type=button] {
    font-size: 15px !important;
    font-weight: 500 !important;
    display: block;
    width: 220px;
    height: 60px;
    margin: 0 auto;
    padding: 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    color: #FFF !important;
    border: 0;
    background: #0b81dc;
  }
  
  .mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
    /* ideally, transition speed should match zoom duration */
    transition: all 0.3s ease-out;
    opacity: 0;
    -webkit-backface-visibility: hidden;
  }
  
  .mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
  }
  
  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
  }
  
  .mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }
  
  .mfp-with-zoom {
    /* start state */
    /* animate in */
    /* animate out */
  }
  .mfp-with-zoom .mfp-with-anim {
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  .mfp-with-zoom.mfp-bg {
    transition: all 0.3s ease-out;
    opacity: 0;
  }
  .mfp-with-zoom.mfp-ready .mfp-with-anim {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
  }
  .mfp-with-zoom.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }
  
  /* Vertical Navigation
  -----------------------------------------*/
  .careers-navigation, .services-navigation, .education-navigation {
    float: left;
    width: 100%;
    margin: 40px 0 0;
  }
  .careers-navigation .menu, .services-navigation .menu, .education-navigation .menu {
    display: block;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .careers-navigation .menu .menu-item, .services-navigation .menu .menu-item, .education-navigation .menu .menu-item {
    line-height: 60px;
    display: block;
    float: left;
    height: 60px;
    margin: 0;
    padding: 0;
    text-align: center;
    border-right: 2px solid #FFF;
    background: #eff3f6;
    flex: 1 0 auto;
  }
  .careers-navigation .menu .menu-item:first-child, .services-navigation .menu .menu-item:first-child, .education-navigation .menu .menu-item:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .careers-navigation .menu .menu-item:last-child, .services-navigation .menu .menu-item:last-child, .education-navigation .menu .menu-item:last-child {
    border: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .careers-navigation .menu .menu-item a, .services-navigation .menu .menu-item a, .education-navigation .menu .menu-item a {
    font-family: "Maven Pro", sans-serif;
    font-display: auto;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    letter-spacing: 1px;
    color: #02213e;
  }
  .careers-navigation .menu .menu-item.current-menu-item, .services-navigation .menu .menu-item.current-menu-item, .education-navigation .menu .menu-item.current-menu-item {
    background: #0b81dc;
  }
  .careers-navigation .menu .menu-item.current-menu-item a, .services-navigation .menu .menu-item.current-menu-item a, .education-navigation .menu .menu-item.current-menu-item a {
    color: #FFF;
  }
  .careers-navigation .menu .menu-item:hover, .services-navigation .menu .menu-item:hover, .education-navigation .menu .menu-item:hover {
    background: #0b81dc;
  }
  .careers-navigation .menu .menu-item:hover a, .services-navigation .menu .menu-item:hover a, .education-navigation .menu .menu-item:hover a {
    color: #FFF;
  }
  
  @media screen and (max-width: 990px) {
    .careers-navigation ul {
      flex-wrap: wrap;
    }
    .careers-navigation ul li {
      width: 100%;
      margin-bottom: 2px !important;
      border-radius: 10px !important;
      flex: 0 0 100%;
      flex-basis: auto !important;
    }
  }
  
  .education-navigation ul li {
    width: 33.3333%;
  }
  @media screen and (max-width: 767px) {
    .education-navigation ul {
      flex-wrap: wrap;
    }
    .education-navigation ul li {
      width: 100%;
      margin-bottom: 2px !important;
      border-radius: 10px !important;
      flex: 0 0 100%;
      flex-basis: auto !important;
    }
  }
  
  @media screen and (max-width: 990px) {
    .services-navigation {
      display: none;
    }
  }
  .services-navigation ul li a {
    font-size: 12px;
  }
  @media screen and (max-width: 990px) {
    .services-navigation ul {
      flex-wrap: wrap;
    }
    .services-navigation ul li {
      width: 100%;
      margin-bottom: 2px !important;
      border-radius: 10px !important;
      flex: 0 0 100%;
      flex-basis: auto !important;
    }
  }
  .services-navigation.min ul li {
    width: 25%;
  }
  
  /* Video Block
  -----------------------------------------*/
  .video-block {
    position: relative;
  }
  .video-block.big {
    max-width: 850px;
  }
  .video-block.full {
    max-width: 100%;
  }
  .video-block a {
    position: relative;
    z-index: 3;
  }
  .video-block a::before {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    content: "";
    opacity: 0.8;
    background: url(../images/orange-play-button.png) no-repeat;
    background-size: cover;
    filter: alpha(opacity=80);
  }
  .video-block a:hover::before {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .video-block a img {
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .video-block p {
    font-size: 15px;
    font-weight: 500;
    color: #8f9faf;
  }
  
  .gallery {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    background: none !important;
  }
  .gallery li {
    display: block;
    float: left;
    padding: 0 15px !important;
    background: none !important;
  }
  
  /* Accordion
  -----------------------------------------*/
  .accordion.faq .card {
    margin-bottom: 20px;
    border: 2px solid #f0f3f5 !important;
    border-radius: 5px !important;
  }
  .accordion.faq .card .card-header {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f8fafc;
  }
  .accordion.faq .card .card-header button {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 80px;
    padding: 0 35px;
    text-align: left;
    text-decoration: none;
    color: #02213e;
    border: 0;
    background-image: url(../images/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 98% 50%;
  }
  .accordion.faq .card .card-header button[aria-expanded=true] {
    background-image: url(../images/icon-arrow-up.svg);
  }
  @media screen and (max-width: 767px) {
    .accordion.faq .card .card-header button {
      line-height: 26px;
      height: auto;
    }
  }
  .accordion.faq .card .card-body {
    padding: 30px;
  }
  .accordion.faq.accordionOurServices .card {
    position: relative;
    height: 90px;
    border: 0 !important;
  }
  .accordion.faq.accordionOurServices .card .card-header {
    border-radius: 10px !important;
    background: #FFF;
  }
  .accordion.faq.accordionOurServices .card .card-header button {
    position: relative;
    height: 90px;
    padding: 0 40px 0 80px;
    color: #003367;
    background-position: 95% 50%;
  }
  .accordion.faq.accordionOurServices .card .card-header button span {
    line-height: 26px;
    position: absolute;
    top: 32px;
    left: 29px;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #1f5699;
    border: 2px solid #0b81dc;
    border-radius: 50%;
    background: #f8fafc;
  }
  .accordion.faq.accordionOurServices .card .collapse {
    position: relative;
  }
  .accordion.faq.accordionOurServices .card .collapse.show {
    z-index: 2;
  }
  .accordion.faq.accordionOurServices .card .collapse .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 30px 30px 80px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #FFF;
    box-shadow: 0 15px 20px 0 rgba(31, 86, 153, 0.08);
  }
  .accordion.faq.accordionOurServices .card .collapse .card-body p {
    line-height: 1.8em;
  }
  
  /* Steps
  -----------------------------------------*/
  #steps {
    padding: 40px 0 60px;
    background: #f8fafc;
  }
  #steps #steps-title {
    margin-bottom: 50px;
  }
  #steps #steps-body {
    position: relative;
  }
  #steps #steps-body::before {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    border-bottom: 1px dashed #81bdec;
  }
  #steps #steps-body .steps-body-element {
    position: relative;
    width: 96%;
    margin: 0 auto;
    padding: 60px 0 0;
  }
  #steps #steps-body .steps-body-element .steps-body-element-number {
    font-family: "Maven Pro", sans-serif;
    font-display: auto;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #1f5699;
    border: 2px solid #0b81dc;
    border-radius: 50%;
    background: #FFF;
  }
  #steps #steps-body .steps-body-element .steps-body-element-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px;
    color: #357d8b;
  }
  #steps #steps-body .steps-body-element .steps-body-element-text p {
    font-weight: 500;
    line-height: 1.8em;
  }
  
  /* Services Info
  -----------------------------------------*/
  #services-info {
    padding: 40px 0 125px;
    background-color: #f8fafc;
  }
  #services-info .services-info-element {
    position: relative;
    width: 96%;
    max-width: 460px;
    margin: 0 auto;
    padding-top: 120px;
  }
  #services-info .services-info-element::before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 230px;
    height: 230px;
    content: "";
    border: 4px solid #f2f2f2;
    border-radius: 50%;
    background-color: #f8fafc;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  #services-info .services-info-element#sie-0::before {
    background-image: url(../images/icon-mission.svg);
  }
  #services-info .services-info-element#sie-1::before {
    background-image: url(../images/icon-facilities.svg);
  }
  #services-info .services-info-element#sie-2::before {
    background-image: url(../images/icon-education.svg);
  }
  #services-info .services-info-element#sie-3::before {
    background-image: url(../images/icon-app.svg);
  }
  #services-info .services-info-element .services-info-element-body {
    position: relative;
    padding: 157px 45px 45px;
    border: 2px solid #ebeff3;
    border-radius: 10px;
    background: #FFF;
  }
  #services-info .services-info-element .services-info-element-body::after {
    position: absolute;
    z-index: 1;
    top: 159px;
    left: -2px;
    width: 3px;
    height: 211px;
    content: "";
    background: #0b81dc;
  }
  #services-info .services-info-element .services-info-element-body h2 {
    margin-bottom: 45px;
  }
  #services-info .services-info-element .services-info-element-body p {
    font-size: 18px;
    line-height: 2em;
    color: #02213e;
  }
  #services-info.about-services-info .services-info-element {
    padding-top: 90px;
  }
  #services-info.about-services-info .services-info-element::before {
    display: block;
    width: 172px;
    height: 172px;
    content: "";
    background-size: 50% 50%;
  }
  #services-info.about-services-info .services-info-element .services-info-element-body {
    padding: 106px 45px 45px;
  }
  @media screen and (max-width: 1440px) {
    #services-info {
      padding: 90px 0;
    }
    #services-info .services-info-element .services-info-element-body h2 {
      margin-bottom: 15px;
    }
    #services-info .services-info-element .services-info-element-body p {
      font-size: 16px;
      line-height: 1.8em;
    }
  }
  @media screen and (max-width: 1200px) {
    #services-info {
      padding: 40px 0;
    }
    #services-info .services-info-element {
      padding-top: 60px;
    }
    #services-info .services-info-element::before {
      width: 120px;
      height: 120px;
      background-size: 50% 50%;
    }
    #services-info .services-info-element .services-info-element-body {
      padding: 97px 45px 45px;
    }
  }
  
  /* Person
  -----------------------------------------*/
  .person-element {
    max-width: 500px;
    height: 100%;
    margin: 0 auto 30px;
    padding: 35px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
    background: #FFF;
  }
  .person-element.medium {
    max-width: 380px;
  }
  .person-element .person-element-head {
    position: relative;
    height: 150px;
    margin-bottom: 30px;
    padding: 5px 0 0 180px;
  }
  .person-element .person-element-head h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .person-element .person-element-head h3 span {
    font-size: 18px;
    color: #0b81dc;
  }
  .person-element .person-element-head h4 {
    font-size: 15px;
    margin: 0;
    color: #8f9faf;
  }
  .person-element .person-element-head img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
  }
  .person-element .person-element-head.no-img {
    height: 60px;
    padding: 5px 0 0;
  }
  .person-element .person-element-body p {
    font-size: 16px;
  }
  .person-element:hover {
    box-shadow: 0 15px 20px 0 rgba(31, 86, 153, 0.08);
  }
  @media screen and (max-width: 1440px) {
    .person-element .person-element-head {
      height: 120px;
      padding: 5px 0 0 140px;
    }
    .person-element .person-element-head img {
      max-width: 120px;
      max-height: 120px;
    }
  }
  @media screen and (max-width: 414px) {
    .person-element {
      padding: 15px;
    }
  }
  
  .careers .person-element .person-element-head {
    height: 120px;
    margin-bottom: 20px;
    padding: 5px 0 0 140px;
  }
  .careers .person-element .person-element-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: #357d8b;
  }
  .careers .person-element .person-element-head img {
    max-width: 114px;
    max-height: 114px;
  }
  
  /* Testimonials
  -----------------------------------------*/
  .jc-home-testimonials-title h2 {
    margin-bottom: 0;
  }
  .jc-home-testimonials-title h3 {
    font-weight: 700 !important;
    margin: 0;
  }
  
  #testimonials {
    padding: 110px 0 100px;
  }
  #testimonials .testimonials-element {
    width: 96%;
    max-width: 450px;
    margin: 0 auto;
  }
  #testimonials .testimonials-element .testimonials-element-head {
    position: relative;
    height: 60px;
    padding: 5px 0 0 139px;
  }
  #testimonials .testimonials-element .testimonials-element-head img {
    position: absolute;
    top: 0;
    left: 47px;
    max-width: 60px;
    max-height: 60px;
  }
  #testimonials .testimonials-element .testimonials-element-head h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b81dc;
  }
  #testimonials .testimonials-element .testimonials-element-head h4 {
    font-family: "Maven Pro", sans-serif;
    font-display: auto;
    font-size: 15px;
    font-weight: 500;
    color: #8f9faf;
  }
  #testimonials .testimonials-element .testimonials-element-body {
    position: relative;
    margin-top: 30px;
    padding: 30px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  #testimonials .testimonials-element .testimonials-element-body::before {
    position: absolute;
    top: -17px;
    left: 56px;
    display: block;
    width: 30px;
    height: 17px;
    content: "";
    background: url(../images/bg-testimonials-element-body.jpg) no-repeat;
  }
  #testimonials .testimonials-element .testimonials-element-body p {
    font-size: 16px;
    line-height: 2em;
    color: #02213e;
  }
  #testimonials .testimonials-element .testimonials-element-body p:last-child {
    margin: 0;
  }
  #testimonials .testimonials-element.rating {
    padding: 30px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  #testimonials .testimonials-element.rating .testimonials-element-head {
    height: 110px;
    padding: 0;
  }
  #testimonials .testimonials-element.rating .testimonials-element-head .testimonials-element-head-rating {
    margin-bottom: 20px;
  }
  #testimonials .testimonials-element.rating .testimonials-element-head .testimonials-element-head-rating img {
    position: static;
    display: inline-block;
    margin-right: 5px;
  }
  #testimonials .testimonials-element.rating .testimonials-element-head h3 {
    color: #357d8b;
  }
  #testimonials .testimonials-element.rating .testimonials-element-body {
    margin-top: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  #testimonials .testimonials-element.rating .testimonials-element-body::before {
    display: none;
  }
  @media screen and (max-width: 1440px) {
    #testimonials {
      padding: 90px 0;
    }
  }
  @media screen and (max-width: 767px) {
    #testimonials {
      padding: 40px 0;
    }
  }
  
  /* Block Title
  -----------------------------------------*/
  .block-title {
    position: relative;
    margin-bottom: 85px;
  }
  .block-title::before {
    position: absolute;
    z-index: 1;
    top: 49px;
    left: 0;
    width: 88%;
    height: 1px;
    content: "";
    background: #E7EDF2;
  }
  .block-title h2 {
    font-size: 60px;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding-right: 28px;
    background: #FFF;
  }
  .block-title.nobg {
    margin-bottom: 35px;
  }
  .block-title.nobg::before {
    display: none;
  }
  .block-title.nobg h2 {
    margin-bottom: 5px;
  }
  @media screen and (max-width: 1440px) {
    .block-title {
      margin-bottom: 35px;
    }
    .block-title h2 {
      font-size: 50px;
    }
  }
  @media screen and (max-width: 1200px) {
    .block-title::before {
      width: 80%;
    }
  }
  @media screen and (max-width: 990px) {
    .block-title {
      text-align: center;
    }
    .block-title h2 {
      font-size: 32px;
      margin: 0;
      padding: 0;
    }
    .block-title::before {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .block-title {
      text-align: center;
    }
    .block-title h2 {
      font-size: 28px;
    }
  }
  
  /* Spa account
  -----------------------------------------*/
  body.page-template-legacy-spa .navbar-fixed {
    top: 91px;
    border-top: solid 1px #E4EDF3;
    background: #FFF;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-top-dark, body.page-template-legacy-spa .navbar-fixed .navbar-top-light {
    display: none !important;
  }
  body.page-template-legacy-spa .navbar-fixed ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
  }
  body.page-template-legacy-spa .navbar-fixed ul li {
    font-size: inherit;
    margin: 0;
    padding: 0;
    background: none;
  }
  body.page-template-legacy-spa .navbar-fixed ul li a {
    -webkit-transform: none !important;
            transform: none !important;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav {
    display: flex;
    align-items: center;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav li a {
    color: #003367;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav li a.active {
    color: #003367;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav li a:hover {
    color: #003367;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav li a:hover:after {
    opacity: 1;
    border-color: #003367 !important;
  }
  body.page-template-legacy-spa .navbar-fixed .navbar-nav li a:after {
    border-color: #003367 !important;
  }
  
  .modal .close {
    position: absolute !important;
    top: 1.25rem !important;
    right: 1.25rem !important;
  }
  
  /* Global dump from the site */
  @media screen and (max-width: 1539px) {
    #numbers .numbers-element .numbers-element-body {
      background-image: none;
    }
  }
  @media screen and (max-width: 990px) {
    .slug2-apply .careers-navigation {
      display: none;
    }
  }
  @media screen and (max-width: 762px) {
    #layer_content_401220845, #layer_content_970087373 {
      display: none;
    }
  }
  .apply-global-form h3 {
    display: none;
  }
  
  .page-id-2246 .apply-container-form label {
    color: white;
    font-weight: 300;
  }
  
  .page-id-2246 #careers-apply-form > div:nth-child(9) {
    color: #d4d4d4;
  }
  
  .heateor_sss_sharing_container ul {
    background: none;
    padding: 0px;
  }
  
  .strong-view.modern .testimonial-content:before {
    content: none;
  }
  
  .strong-view.modern .testimonial-content:after {
    content: none;
  }
  
  #wpmtst_featured_image {
    font-size: 1em;
  }
  
  /* New Careers page
  -----------------------------------------*/
  .table-list {
    background-color: #f8fafc;
  }
  
  /* Contact Modal */
  #contact-modal {
    display: none;
    width: 100%;
    max-width: 600px;
    border-radius: 3px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
  
  #contact-modal .content-header {
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-align: center;
    color: #1f5699;
    font-size: 26px;
  }
  
  #contact-subject {
    margin: 10px 0px;
    width: 100%;
    padding: 6px;
  }
  
  #contact-send {
    font-size: 19px;
    background-color: #0b81dc !important;
    color: #FFF;
    border-radius: 5px;
    padding: 8px 20px;
    float: right;
    margin-top: 18px;
    width: 200px;
    text-transform: uppercase;
    height: 50px;
  }
  
  input#from_name {
    margin: 10px 0px;
  }
  
  .vwc-error-message, .vwc-validation-message {
    color: #FFF;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    display: none;
    background-color: #df453a;
  }
  
  .vwc-success-message {
    color: #FFF;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    display: none;
    background-color: #a9deb5;
  }
  
  /** Process Shortcode **/
  .process-container {
    text-align: center;
    margin: 0px 30px;
  }
  
  .process-title {
    font-size: 20px;
    font-weight: bold;
    margin: 16px 10px;
  }
  
  .process-img {
    display: flex;
    justify-content: center;
  }
  
  .process-number {
    background: #357d8b;
    color: #FFF;
    display: inline-block;
    border-radius: 50%;
    font-weight: bold;
    padding: 8px 16px;
    text-align: center;
    margin-top: 20px;
  }
  
  /**Contact Us Form */
  .contact-us-select {
    height: 50px;
  }
  
  #contact-form-submit {
    margin: 24px auto;
  }
  
  /* Center Excellence of Application */
  #coe-send-application {
    width: 200px;
  }
  
  #nurse-fields {
    display: none;
  }
  
  #nurse-link {
    padding: 12px;
    display: none;
  }
  
  .nurse_email {
    display: none;
  }
  
  #nurse-link a, #nurse-link a:visited, #nurse-link:hover {
    color: #3a536d;
    text-decoration: none;
  }
  
  #nurse-search-result-container {
    border: 1px solid #bdc7d8;
    display: none;
    padding: 10px;
    cursor: pointer;
  }
  
  /* Banner Blocks */
  .banner-apply-now {
    background: #167fd2;
    background: linear-gradient(to right, #1780d3 0%, #1381d8 50%, #002e67 50%, #002d61 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#9c9e9f", endColorstr="#33ccff",GradientType=1 );
    background: #167fd2;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to right, #1381d8 0%, #1381d8 50%, #002d61 50%, #002d61 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#9c9e9f", endColorstr="#002d61",GradientType=1 );
    /* IE6-9 */
  }
  
  .banner-apply-now-container {
    margin-top: 24px;
  }
  
  .state-positions-container {
    background-color: #003061;
    color: #FFF;
    padding: 16px;
    font-size: 24px;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 3px;
  }
  
  /* COE Search Map */
  #coe-map {
    width: auto;
    height: 100%;
  }
  
  @media screen and (max-width: 990px) {
    #coe-map {
      height: 520px;
    }
  }
  .banner-apply-now-container {
    margin-top: 24px;
    margin-bottom: 3px;
  }
  
  .coe-list {
    overflow-y: auto;
    max-height: 502px;
  }
  
  .btn-coe-link {
    background-color: #213547;
    padding: 12px 24px;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
  }
  .btn-coe-link:hover {
    color: #fff;
    background-color: #213547;
    text-decoration: none;
  }
  .btn-coe-link:visited {
    color: #fff;
  }
  
  .coe-facility-title {
    font-family: "Maven Pro", sans-serif;
    font-size: 13px;
    color: #02213e;
  }
  
  .coe-more-info {
    color: #357d8b;
    font-weight: 600;
    display: inline-block;
    vertical-align: bottom;
  }
  
  #facilities-content {
    overflow-y: scroll;
    height: 900px;
    max-height: 900px;
  }
  
  #coe-modal, .modal_phone_container, .modal_url_container, .modal_address_container {
    display: none;
  }
  
  .coe-icon {
    font-size: 32px;
  }
  
  div#facilities-content > .row {
    height: 60px;
  }
  
  .blue-button {
    background-color: #213547;
  }
  
  .gray-button {
    background-color: #eaeaea;
  }
  
  a.btn-coe-link.gray-button:hover {
    background-color: #eaeaea;
  }
  
  #facilities-content > .row:first-child {
    margin-top: 1px;
  }
  
  @media screen and (max-width: 762px) {
    a.btn-coe-link {
      padding: 10px 18px;
      color: #fff;
      border-radius: 3px;
      font-size: 10px;
    }
  }
  @media screen and (max-width: 518px) {
    a.btn-coe-link {
      display: none;
    }
  
    .coe-facility-title {
      font-size: 12px;
      line-height: 1;
    }
  }
  .coe-select {
    color: #000 !important;
  }
  
  .captcha-validate-error {
    display: none;
  }
  
  .general-container-form {
    background: #f8fafc;
    padding: 25px;
  }
  
  /*--------------------------------------------------------------
  ## Posts and pages
  --------------------------------------------------------------*/
  .sticky {
    display: block;
  }
  
  .hentry {
    margin: 0 0 1.5em;
  }
  
  .updated:not(.published) {
    display: none;
  }
  
  .page-content,
  .entry-content,
  .entry-summary {
    margin: 1.5em 0 0;
  }
  
  .page-links {
    clear: both;
    margin: 0 0 1.5em;
  }
  
  /*--------------------------------------------------------------
  ## Comments
  --------------------------------------------------------------*/
  .comment-content a {
    word-wrap: break-word;
  }
  
  .bypostauthor {
    display: block;
  }
  
  /*--------------------------------------------------------------
  ## Helpers
  --------------------------------------------------------------*/
  body {
    overflow-x: hidden;
  }
  
  @media (min-width: 1540px) {
    .container, .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
      max-width: 1530px;
    }
  }
  .marT--30 {
    margin-top: -30px;
  }
  
  .marT--35 {
    margin-top: -35px;
  }
  
  .lblue {
    background-color: #f8fafc;
  }
  
  .white {
    background-color: #fff !important;
  }
  
  .br-10 {
    border-radius: 10px;
  }
  
  .text-green {
    color: #32b283;
  }
  
  .text-green {
    color: #32b283;
  }
  
  .text-red {
    color: #cc0f04;
  }
  
  @media screen and (max-width: 1024px) {
    .marT--30 {
      margin-top: 0;
    }
  
    .marT--35 {
      margin-top: 0;
    }
  }
  @media screen and (min-width: 1540px) {
    .d-xxxl-none {
      display: none !important;
    }
  }
  #set-title {
    display: none;
  }
  
  /*--------------------------------------------------------------
  ## Elements
  --------------------------------------------------------------*/
  .site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: #fff;
    box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.05);
  }
  .site-header .site-header-logo {
    display: inline-block;
    max-width: 200px;
    vertical-align: top;
  }
  .site-header-logo img{
    height: 50px;
  }
  .site-header .site-header-menu-block {
    float: right;
  }
  .site-header .site-header-menu-block .main-navigation {
    display: inline-block;
    float: none;
    width: auto;
    margin: 10px 53px 0 0;
    vertical-align: top;
  }
  .site-header .site-header-menu-block .main-navigation ul {
    display: block !important;
  }
  .site-header .site-header-menu-block .main-navigation ul > li a {
    border-bottom: 1px solid #FFF;
  }
  .site-header .site-header-menu-block .main-navigation ul > li:hover a, .site-header .site-header-menu-block .main-navigation ul > li.current-menu-item a, .site-header .site-header-menu-block .main-navigation ul > li.current-menu-ancestor a {
    padding-bottom: 7px;
    border-color: #0b81dc;
  }
  @media (max-width: 991.98px) {
    .site-header .site-header-menu-block .main-navigation ul > li:hover a, .site-header .site-header-menu-block .main-navigation ul > li.current-menu-item a, .site-header .site-header-menu-block .main-navigation ul > li.current-menu-ancestor a {
      border: none;
    }
  }
  .site-header .site-header-menu-block .main-navigation ul li {
    margin: 0 22px;
  }
  .site-header .site-header-menu-block .main-navigation ul li a {
    font-family: "Maven Pro", sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    color: #003367;
  }
  .site-header .site-header-menu-block .main-navigation ul li ul {
    padding: 29px 0 0;
    background: #FFF;
    box-shadow: none;
  }
  .site-header .site-header-menu-block .main-navigation ul li ul li {
    width: 100%;
    margin: 0 !important;
  }
  .site-header .site-header-menu-block .main-navigation ul li ul li a {
    line-height: 55px;
    display: inline-block;
    width: 100%;
    height: 55px;
    padding: 0 35px 0 40px;
    vertical-align: middle;
    border: 0 !important;
    background: #FFF;
  }
  @media (max-width: 991.98px) {
    .site-header .site-header-menu-block .main-navigation ul li ul li a {
      line-height: 2;
      overflow: visible;
      width: 100%;
      height: auto;
      white-space: unset;
    }
  }
  .site-header .site-header-menu-block .main-navigation ul li ul li:hover > a, .site-header .site-header-menu-block .main-navigation ul li ul li.current-menu-item > a, .site-header .site-header-menu-block .main-navigation ul li ul li.current-menu-ancestor > a {
    background: #EEF2F5;
  }
  .site-header .site-header-menu-block .main-navigation ul li ul li ul {
    padding: 0;
  }
  @media screen and (max-width: 1540px) {
    .site-header .site-header-menu-block .main-navigation {
      margin: 10px 10px 0 0;
    }
    .site-header .site-header-menu-block .main-navigation ul > li {
      margin: 0 5px !important;
    }
  }
  .site-header .site-header-menu-block .site-header-info-element {
    position: relative;
  }
  .site-header .site-header-menu-block .site-header-info-element .login-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    padding-top: 25px;
    background-color: #FFF;
  }
  .site-header .site-header-menu-block .site-header-info-element .login-navigation a {
    display: block;
    padding: 10px 30px;
  }
  .site-header .site-header-menu-block .site-header-info-element:hover .login-navigation {
    display: block;
  }
  .site-header .site-header-menu-block .site-header-info-element {
    float: right;
    height: 40px;
    padding: 7px 25px;
    border-left: 1px solid #e5edf3;
  }
  .site-header .site-header-menu-block .site-header-info-element a {
    font-family: "Maven Pro", sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    padding-left: 23px;
    text-decoration: none;
    text-transform: uppercase;
    color: #1779c5;
  }
  /*.site-header .site-header-menu-block .site-header-info-element a.site-header-info-element-phone {
    background: url(../images/icon-phone.svg) no-repeat 0 50%;
  }
  .site-header .site-header-menu-block .site-header-info-element a.site-header-info-element-login {
    background: url(../images/icon-login.svg) no-repeat 0 50%;
  }*/
  @media screen and (max-width: 1540px) {
    .site-header .site-header-menu-block .site-header-info-element {
      padding: 7px 15px;
    }
  }
  .site-header .nav-trigger {
    display: none;
  }
  .site-header .nav-trigger .fa-times {
    display: none;
  }
  .site-header .site-header-menu-block-cover {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 23, 43, 0.4);
  }
  @media screen and (max-width: 1200px) {
    .site-header .site-header-menu-block {
      position: absolute;
      z-index: 101;
      top: -10px;
      right: 0;
      display: none;
      width: 100%;
      max-width: 330px;
      padding: 50px 20px 0 25px;
      border-radius: 10px;
      background: #FFF;
    }
    .site-header .site-header-menu-block .main-navigation {
      width: 100%;
      margin: 10px 0 0;
    }
    .site-header .site-header-menu-block .main-navigation ul {
      width: 100%;
    }
    .site-header .site-header-menu-block .main-navigation ul > li {
      display: inline-block;
      width: 100%;
      margin: 0 0 33px !important;
    }
    .site-header .site-header-menu-block .main-navigation ul > li.menu-item-has-children {
      position: relative;
    }
    .site-header .site-header-menu-block .main-navigation ul > li.menu-item-has-children::after {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      zoom: 0.8;
      width: 11px;
      height: 18px;
      content: "";
      background-image: url(../images/icon-jcarousel-arrows.png);
      background-repeat: no-repeat;
      background-position: -12px -19px;
    }
    .site-header .site-header-menu-block .main-navigation ul > li.menu-item-has-children.active::after {
      background-position: 0 -19px;
    }
    .site-header .site-header-menu-block .main-navigation ul > li a {
      padding-bottom: 7px;
    }
    .site-header .site-header-menu-block .main-navigation ul > li ul {
      box-shadow: none;
    }
    .site-header .site-header-menu-block .main-navigation ul > li ul li {
      margin: 0 !important;
      padding: 0 20px 0 !important;
    }
    .site-header .site-header-menu-block .main-navigation ul > li ul li::after {
      top: 25px !important;
    }
    .site-header .site-header-menu-block .main-navigation ul > li ul li a {
      padding: 0;
      border-bottom: 1px solid #FFF !important;
    }
    .site-header .site-header-menu-block .main-navigation ul > li ul li:hover > a, .site-header .site-header-menu-block .main-navigation ul > li ul li.current-menu-item > a, .site-header .site-header-menu-block .main-navigation ul > li ul li.current-menu-ancestor > a {
      border-color: #0b81dc !important;
      background: #FFF;
    }
    .site-header .site-header-menu-block .main-navigation ul > li:hover > ul, .site-header .site-header-menu-block .main-navigation ul > li.focus > ul {
      left: -999em;
    }
    .site-header .site-header-menu-block .main-navigation ul.active > li {
      display: none;
    }
    .site-header .site-header-menu-block .main-navigation ul.active > li.active {
      display: inline-block;
    }
    .site-header .site-header-menu-block .main-navigation ul.active > li.active > ul {
      position: static;
    }
    .site-header .site-header-menu-block .site-header-info-element {
      float: left;
      width: 100%;
      height: 80px;
      padding: 27px 0;
      border: 0;
      border-top: 1px solid #e5edf3;
    }
    .site-header .site-header-menu-block.active {
      display: block;
    }
    .site-header .site-header-menu-block-cover.active {
      display: block;
    }
    .site-header .nav-trigger {
      position: relative;
      z-index: 102;
      display: block;
      float: right;
      margin-top: 5px;
      cursor: pointer;
    }
    .site-header .nav-trigger .bar1, .site-header .nav-trigger .bar2, .site-header .nav-trigger .bar3 {
      width: 30px;
      height: 3px;
      margin: 5px 0;
      transition: 0.4s;
      background-color: #0b81dc;
    }
    .site-header .nav-trigger.active .bar1, .site-header .nav-trigger.active .bar2, .site-header .nav-trigger.active .bar3 {
      background-color: #0b81dc;
    }
    .site-header .nav-trigger.active .bar1 {
      -webkit-transform: rotate(-45deg) translate(-6px, 6px);
      transform: rotate(-45deg) translate(-6px, 6px);
    }
    .site-header .nav-trigger.active .bar2 {
      opacity: 0;
    }
    .site-header .nav-trigger.active .bar3 {
      -webkit-transform: rotate(45deg) translate(-5px, -6px);
      transform: rotate(45deg) translate(-5px, -6px);
    }
  }
  @media screen and (max-width: 360px) {
    .site-header .site-header-menu-block.active {
      overflow-y: scroll;
      height: 500px;
    }
  }
  
  .sub-menu .menu-item {
    display: block;
    width: 100%;
  }
  
  .site-footer .site-footer-body {
    padding: 110px 0 100px;
    border-top: 2px solid #f0f3f5;
    background: #f8fafc;
  }
  .site-footer .site-footer-body .site-footer-logo {
    display: inline-block;
    max-width: 183px;
    margin-bottom: 30px;
  }
  .site-footer .site-footer-body .site-footer-body-phone {
    font-size: 14px;
    display: inline-block;
    padding-left: 20px;
    background: url(../images/icon-phone-transparent.svg) no-repeat 0 10px;
  }
  .site-footer .site-footer-body .site-footer-body-fax {
    font-size: 14px;
    display: inline-block;
  }
  .site-footer .site-footer-body .site-footer-body-email {
    font-size: 14px;
    display: inline-block;
    padding-left: 20px;
    background: url(../images/icon-email-transparent.svg) no-repeat 0 12px;
  }
  .site-footer .site-footer-body a {
    font-family: "Maven Pro", sans-serif;
    text-decoration: none;
    color: #02213e;
  }
  .site-footer .site-footer-body p {
    margin-bottom: 15px;
  }
  .site-footer .site-footer-body .site-footer-body-navelements {
    display: flex;
  }
  .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement {
    min-width: 90px;
    max-width: 186px;
    margin: 0 1%;
  }
  .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    color: #191919;
  }
  .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement .footer-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement .footer-navigation ul li {
    margin-bottom: 20px;
  }
  .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement .footer-navigation ul li a {
    font-size: 15px;
  }
  .site-footer .site-footer-bottom-bar {
    padding: 20px 0;
    background: #357d8b;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list li {
    font-family: "Maven Pro", sans-serif;
    font-size: 14px;
    display: inline-block;
    padding: 0 15px 0 12px;
    color: #cddef3;
    border-right: 1px solid #204c7c;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list li:first-child {
    padding-left: 0;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list li:last-child {
    border: 0;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list li a {
    color: #cddef3;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-icons {
    display: inline-block;
    margin: 0 0 0 30px;
    padding: 0;
    list-style: none;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-icons li {
    display: inline-block;
    padding: 0 6px 0 3px;
  }
  .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-icons li:last-child {
    padding-right: 0;
  }
  @media screen and (max-width: 1200px) {
    .site-footer .site-footer-body {
      padding: 70px 0 0;
    }
    .site-footer .site-footer-body .btn {
      min-width: 220px;
      margin-bottom: 40px;
    }
    .site-footer .site-footer-body .site-footer-body-navelements {
      display: block;
    }
    .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement {
      width: 100%;
      max-width: none;
      padding: 25px 0;
      border-bottom: 1px solid #E4E9EE;
    }
    .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement h5 {
      margin-bottom: 0;
      cursor: pointer;
      outline-style: none;
      /*background-image: url(../images/icon-arrow-down.svg);*/
      background-repeat: no-repeat;
      background-position: 98% 50%;
    }
    .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement h5.ui-accordion-header-active {
      background-image: url(../images/icon-arrow-up.svg);
    }
    .site-footer .site-footer-body .site-footer-body-navelements .site-footer-body-navelement nav {
      padding-top: 20px;
    }
    .site-footer .site-footer-bottom-bar {
      text-align: center;
    }
    .site-footer .site-footer-bottom-bar .text-right {
      text-align: center !important;
    }
    .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list, .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-icons {
      width: 100%;
      margin: 0 0 20px;
    }
    .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list li {
      padding: 0 10px !important;
    }
    .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-list.copyright li {
      padding: 0 !important;
      border: 0 !important;
    }
    .site-footer .site-footer-bottom-bar .site-footer-bottom-bar-icons li {
      padding: 0 5px !important;
    }
  }
  @media screen and (max-width: 767px) {
    .site-footer .site-footer-body {
      text-align: center;
    }
    .site-footer .site-footer-body .site-footer-body-navelement {
      text-align: left;
    }
  }
  
  /*--------------------------------------------------------------
  ## Global overwrites
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Infinite scroll
  --------------------------------------------------------------*/
  /* Globally hidden elements when Infinite Scroll is supported and in use. */
  .infinite-scroll .posts-navigation,
  .infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
  }
  
  /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  .infinity-end.neverending .site-footer {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Media
  --------------------------------------------------------------*/
  .page-content .wp-smiley,
  .entry-content .wp-smiley,
  .comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
  }
  
  /* Make sure embeds and iframes fit their containers. */
  embed,
  iframe,
  object {
    max-width: 100%;
  }
  
  /* Make sure logo link wraps around logo image. */
  .custom-logo-link {
    display: inline-block;
  }
  
  /*--------------------------------------------------------------
  ## Captions
  --------------------------------------------------------------*/
  .wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
  }
  .wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0;
  }
  
  .wp-caption-text {
    text-align: center;
  }
  
  /*--------------------------------------------------------------
  ## Galleries
  --------------------------------------------------------------*/
  .gallery {
    margin-bottom: 1.5em;
  }
  
  .gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
  }
  .gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%;
  }
  .gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
  .gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%;
  }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%;
  }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%;
  }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%;
  }
  
  .gallery-caption {
    display: block;
  }
  
  /*--------------------------------------------------------------
  ## JCarousel
  --------------------------------------------------------------*/
  .jcarousel-wrapper {
    margin: 0 auto;
    position: relative;
  }
  .jcarousel-wrapper#jc-careers-gallery {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .jcarousel-wrapper#jc-careers-gallery::after {
    content: "";
    width: 76%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #e7edf2;
  }
  @media screen and (max-width: 767px) {
    .jcarousel-wrapper#jc-careers-gallery::after {
      display: none;
    }
  }
  .jcarousel-wrapper#jc-bce-info-blocks {
    padding-bottom: 107px;
  }
  @media screen and (max-width: 1200px) {
    .jcarousel-wrapper#jc-services-blocks, .jcarousel-wrapper#jc-pages-testimonials, .jcarousel-wrapper#jc-benefits, .jcarousel-wrapper#jc-hyc-benefits, .jcarousel-wrapper#jc-verification-forms, .jcarousel-wrapper#jc-emr-info-blocks {
      padding-bottom: 50px;
    }
  }
  @media screen and (max-width: 1024px) {
    .jcarousel-wrapper#jc-steps-6 {
      padding-bottom: 50px;
    }
  }
  @media screen and (max-width: 990px) {
    .jcarousel-wrapper#jc-home-testimonials, .jcarousel-wrapper#jc-home-news {
      padding-bottom: 50px;
    }
  }
  
  /** Carousel **/
  .jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 30px !important;
    background: transparent !important;
  }
  
  .jcarousel li {
    width: 200px;
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  
  #jc-careers-gallery .jcarousel li p {
    color: #8f9faf;
    font-size: 15px;
    font-weight: 500;
    font-family: "Maven Pro", sans-serif;
    margin: 30px 0 0;
  }
  
  .jcarousel img {
    display: block;
    max-width: 100%;
    height: auto !important;
  }
  
  /** Carousel Controls **/
  .jcarousel-control-prev,
  .jcarousel-control-next {
    position: absolute;
    width: 56px;
    height: 56px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #f0f3f5;
    background-color: #fff;
    border-radius: 5px;
    z-index: 15;
  }
  .jcarousel-control-prev::before,
  .jcarousel-control-next::before {
    content: "";
    display: block;
    width: 11px;
    height: 18px;
    margin: 17px 0 0 21px;
    background-image: url(../images/icon-jcarousel-arrows.png);
    background-repeat: no-repeat;
  }
  .jcarousel-control-prev:hover,
  .jcarousel-control-next:hover {
    border-color: #0868b2;
    background-color: #0b81dc;
  }
  
  #jc-home-testimonials .jcarousel-control-prev,
  #jc-home-testimonials .jcarousel-control-next,
  #jc-home-news .jcarousel-control-prev,
  #jc-home-news .jcarousel-control-next {
    top: -178px;
  }
  @media screen and (max-width: 1440px) {
    #jc-home-testimonials .jcarousel-control-prev,
  #jc-home-testimonials .jcarousel-control-next,
  #jc-home-news .jcarousel-control-prev,
  #jc-home-news .jcarousel-control-next {
      top: -117px;
    }
  }
  
  .big-title#jc-home-testimonials .jcarousel-control-prev,
  .big-title#jc-home-testimonials .jcarousel-control-next {
    top: -122px;
  }
  @media screen and (max-width: 1440px) {
    .big-title#jc-home-testimonials .jcarousel-control-prev,
  .big-title#jc-home-testimonials .jcarousel-control-next {
      top: -108px;
    }
  }
  
  #jc-careers-gallery .jcarousel-control-prev,
  #jc-careers-gallery .jcarousel-control-next,
  #jc-bce-info-blocks .jcarousel-control-prev,
  #jc-bce-info-blocks .jcarousel-control-next {
    bottom: 0;
  }
  
  .jcarousel-control-prev {
    right: 65px;
  }
  .jcarousel-control-prev::before {
    background-position: 0 -19px;
  }
  .jcarousel-control-prev:hover::before {
    background-position: 0 0;
  }
  
  .jcarousel-control-next {
    right: 0;
  }
  .jcarousel-control-next::before {
    background-position: -12px -19px;
  }
  .jcarousel-control-next:hover::before {
    background-position: -12px 0;
  }
  
  #jc-bce-info-blocks .jcarousel-control-prev {
    left: 56px;
  }
  #jc-bce-info-blocks .jcarousel-control-next {
    right: 56px;
  }
  
  /** Carousel Pagination **/
  .jcarousel-pagination {
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
  }
  .jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;
    background: #dee4ea;
    border-radius: 10px;
    text-indent: -9999px;
  }
  .jcarousel-pagination a.active {
    background: #0b81dc;
    opacity: 1;
  }
  
  #jc-bce-info-blocks .jcarousel-pagination {
    bottom: 17px;
  }
  
  #jc-home-news .jcarousel-pagination {
    bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Buttons
  --------------------------------------------------------------*/
  .btn {
    display: inline-block;
    min-height: 60px;
    line-height: 60px;
    text-align: center;
    outline-style: none !important;
    font-family: "Maven Pro", sans-serif;
    box-shadow: none !important;
  }
  .btn.btn-primary {
    padding: 0 20px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    background: #0b81dc;
  }
  .btn.btn-secondary {
    min-width: 220px;
    padding: 0 20px;
    color: #0b81dc !important;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #e0eef9 !important;
    background: #fff !important;
  }
  .btn.btn-third {
    min-width: 220px;
    padding: 0 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
    background: #32b283;
  }
  .btn.btn-third:not([href]):not([tabindex]) {
    color: #fff;
  }
  .btn.btn-learn-more {
    padding: 0 33px 0 0;
    color: #0b81dc;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: url(../images/icon-arrow-right-blue.svg) no-repeat 100% 50%;
  }
  .btn.btn-play-link {
    height: 54px;
    padding: 0 68px 0 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase;
    background: url(../images/icon-play-transparent.svg) no-repeat 100% 50%;
  }
  .btn.btn-gray {
    min-width: 220px;
    padding: 0 25px;
    color: #0b81dc;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
    background: #eff3f6;
  }
  .btn.btn-download {
    min-height: 20px;
    padding-left: 32px;
    color: #0b81dc;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    background: url(../images/icon-download.svg) no-repeat 0 5px;
  }
  .btn.mw-210 {
    min-width: 210px;
  }
  .btn.mw-220 {
    min-width: 220px;
  }
  .btn.w-453 {
    width: 100%;
    max-width: 453px;
  }
  .btn.w-reset {
    min-width: unset;
    max-width: unset;
  }
  .btn.btn-xs {
    min-height: 40px;
    line-height: 40px;
  }
  @media screen and (max-width: 414px) {
    .btn {
      width: 100%;
    }
    .btn span {
      display: inline-block;
      vertical-align: middle;
      line-height: 38px;
    }
  }
  
  /*--------------------------------------------------------------
  # Pages
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  ## Posts and pages
  --------------------------------------------------------------*/
  .metaslider .msHtmlOverlay .layer * {
    font-size: 18px;
  }
  
  .msHtmlOverlay .layer {
    z-index: 15;
  }
  
  .msHtmlOverlay:after {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: " ";
    background: rgba(10, 47, 97, 0.47);
  }
  
  .home .slides, .page-template-home-custom .slides {
    display: block;
  }
  .home .slides .msHtmlOverlay .layer, .page-template-home-custom .slides .msHtmlOverlay .layer {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .home .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    align-items: center;
  }
  .home .slides .content, .page-template-home-custom .slides .content {
    font-family: Montserrat, Helvetica;
    line-height: 4.6rem;
  }
  @media screen and (max-width: 990px) {
    .home .slides .content, .page-template-home-custom .slides .content {
      top: -200px;
    }
  }
  @media screen and (max-width: 762px) {
    .home .slides .content, .page-template-home-custom .slides .content {
      display: none;
    }
  }
  .home .slides .content .title, .page-template-home-custom .slides .content .title {
    font-size: 5.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFF;
  }
  .home .slides .content .subtitle, .page-template-home-custom .slides .content .subtitle {
    font-size: 1.4rem;
    display: block;
    color: #FFF;
  }
  @media screen and (max-width: 1400px) {
    .home .slides .content, .page-template-home-custom .slides .content {
      left: -50px;
    }
  }
  @media screen and (max-width: 1260px) {
    .home .slides .content, .page-template-home-custom .slides .content {
      left: 0px;
    }
    .home .slides .content .title, .page-template-home-custom .slides .content .title {
      font-size: 4rem;
      line-height: 1;
    }
    .home .slides .content .subtitle, .page-template-home-custom .slides .content .subtitle {
      max-width: 500px;
      font-size: 1rem;
    }
  }
  
  #services {
    position: absolute;
    top: 540px;
    right: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  @media screen and (max-width: 2100px) {
    #services {
      top: 480px;
    }
  }
  @media screen and (max-width: 1539px) {
    #services {
      top: 400px;
    }
  }
  @media screen and (max-width: 1300px) {
    #services {
      top: 316px;
    }
  }
  @media screen and (max-width: 990px) {
    #services {
      right: 0;
      left: 0;
      top: 1000px;
    }
  }
  @media screen and (max-width: 858px) {
    #services {
      top: 918px;
    }
  }
  @media screen and (max-width: 762px) {
    #services {
      top: 600px;
    }
  }
  @media screen and (max-width: 600px) {
    #services {
      top: 460px;
    }
  }
  @media screen and (max-width: 420px) {
    #services {
      top: 395px;
    }
  }
  @media screen and (max-width: 370px) {
    #services {
      top: 332px;
    }
  }
  .services-body {
    float: left;
    width: 100%;
  }
  @media screen and (max-width: 990px) {
    .services-body {
      float: none;
      max-width: 500px;
      margin: auto;
    }
  }
  .services-body .services-element {
    width: 93%;
    height: 103px;
    margin: 20px auto;
    padding: 30px 0 26px;
    transition: all 0.3s;
    color: #357d8b;
    border-radius: 5px;
    background-color: white;
    background-repeat: no-repeat;
    background-position: 97% 50%;
  }
  @media screen and (max-width: 858px) {
    .services-body .services-element {
      margin: 7px auto;
      min-width: auto;
    }
  }
  .services-body .services-element .services-element-body {
    float: left;
    width: 100%;
    padding: 0 25px 0 65px;
    background-repeat: no-repeat;
  }
  .services-body .services-element .services-element-body > div {
    line-height: 42px;
    float: left;
    height: 42px;
  }
  .services-body .services-element .services-element-body > div span {
    display: inline-block;
    vertical-align: middle;
  }
  .services-body .services-element .services-element-body .services-element-title {
    max-width: 37%;
    padding-right: 15px;
    border-right: 0px solid #FFF;
  }
  .services-body .services-element .services-element-body .services-element-title span {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    color: #357d8b;
  }
  .services-body .services-element .services-element-body .services-element-text {
    background-color: #357d8b;
    border-radius: 6px;
    border: 1px solid #6d8aa8;
    width: 62%;
    height: 50px;
    padding: 0px 15px;
    text-align: center;
    margin-top: -2px;
    float:right;
  }
  .services-body .services-element .services-element-body .services-element-text span {
    font-family: "Maven Pro", sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #FFF;
    text-align: center;
    font-weight: 700;
  }
  @media screen and (max-width: 1440px) {
    .services-body .services-element .services-element-body .services-element-title span {
      font-size: 16px;
    }
    .services-body .services-element .services-element-body .services-element-text span {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 460px) {
    .services-body .services-element .services-element-body .services-element-title span {
      margin-left: 8px;
      font-size: 14px;
    }
    .services-body .services-element .services-element-body .services-element-text span {
      font-size: 12px;
    }
  }
  @media screen and (max-width: 370px) {
    .services-body .services-element .services-element-body .services-element-title span {
      margin-left: 6px;
      font-size: 12px;
    }
    .services-body .services-element .services-element-body .services-element-text span {
      font-size: 10px;
    }
  }
  .services-body .services-element#se-0 .services-element-body {
    background-image: url(../images/icon-services-1-blue.svg);
    background-position: 23px 6px;
  }
  .services-body .services-element#se-1 .services-element-body {
    background-image: url(../images/icon-services-2-blue.svg);
    background-position: 20px 5px;
  }
  .services-body .services-element#se-2 .services-element-body {
    background-image: url(../images/icon-services-3-blue.svg);
    background-position: 20px 7px;
  }
  #services .services-body .services-element#se-3 .services-element-body {
    background-image: url(../images/telemedicine-at-home.svg);
    background-size: contain;
  }
  .services-body .services-element:hover .services-element-text {
    background-color: #006dc1;
  }
  @media screen and (max-width: 1539px) {
    .services-body .services-element .services-element-body {
      padding: 0 25px 0 55px;
    }
    .services-body .services-element#se-0 .services-element-body {
      background-position: 19px 6px;
    }
    .services-body .services-element#se-1 .services-element-body {
      background-position: 15px 5px;
    }
    .services-body .services-element#se-2 .services-element-body {
      background-position: 10px 7px;
    }
  }
  @media screen and (max-width: 380px) {
    .services-body .services-element .services-element-body {
      padding: 0 0 0 45px;
    }
  }
  
  #numbers {
    padding: 80px 0 68px;
    background: #f8fafc;
  }
  #numbers .numbers-element {
    position: relative;
    height: 240px;
  }
  #numbers .numbers-element .numbers-element-body {
    min-height: 240px;
    padding: 30px 18px;
    transition: all 0.3s;
    text-align: center;
    background-image: url(../images/icon-info.svg);
    background-repeat: no-repeat;
    background-position: 50% calc(100% - 30px);
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    height: 90px;
    padding: 0 0 30px;
    color: #357d8b;
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-title::after {
    position: absolute;
    bottom: 14px;
    left: 50%;
    width: 40px;
    height: 3px;
    margin: 0 0 0 -20px;
    content: "";
    background: #0b81dc;
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-title span {
    font-size: 20px;
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-subtitle {
    font-family: "Maven Pro", sans-serif;
    font-size: 18px;
    font-weight: 500;
    min-height: 60px;
    color: #02213e;
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-text {
    font-family: "Maven Pro", sans-serif;
    font-size: 14px;
    line-height: 2em;
    display: none;
    min-height: 90px;
    margin-top: 16px;
    transition: all 0.3s;
    color: #02213e;
    align-content: center;
    align-items: center;
  }
  #numbers .numbers-element .numbers-element-body .numbers-element-body-text p {
    font-size: 14px;
    line-height: 2em;
  }
  #numbers .numbers-element .numbers-element-body:hover {
    cursor: default;
    background-color: #FFF;
    background-image: none;
    box-shadow: 0 15px 20px 0 rgba(31, 86, 153, 0.08);
  }
  #numbers .numbers-element .numbers-element-body:hover .numbers-element-body-text {
    display: flex;
  }
  @media screen and (max-width: 1440px) {
    #numbers .numbers-element .numbers-element-body {
      background-image: none;
    }
    #numbers .numbers-element .numbers-element-body .numbers-element-body-title {
      font-size: 50px;
    }
    #numbers .numbers-element .numbers-element-body .numbers-element-body-subtitle {
      font-size: 16px;
    }
    #numbers .numbers-element .numbers-element-body:hover {
      background-color: transparent;
      box-shadow: none;
    }
    #numbers .numbers-element .numbers-element-body:hover .numbers-element-body-text {
      display: none;
    }
  }
  @media screen and (max-width: 1200px) {
    #numbers {
      padding: 20px 0;
    }
    #numbers .numbers-element {
      height: auto;
      margin: 20px 0;
    }
    #numbers .numbers-element .numbers-element-body {
      padding: 0 10px;
    }
  }
  
  #jobs {
    padding: 130px 0 130px;
  }
  #jobs .jobs-text {
    padding: 0 100px 0 60px;
  }
  #jobs .jobs-text h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 25px;
    color: #357d8b;
  }
  #jobs .jobs-text p {
    font-family: "Maven Pro", sans-serif;
    font-size: 18px;
    line-height: 2em;
    color: #02213e;
  }
  #jobs .jobs-text p .btn {
    margin-right: 10px;
  }
  #jobs .jobs-buttons {
    margin-top: 70px;
    text-align: right;
  }
  #jobs .jobs-buttons .btn {
    min-width: 280px;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 1440px) {
    #jobs {
      padding: 90px 0;
    }
    #jobs .jobs-text {
      padding: 0 10px 0 20px;
    }
  }
  @media screen and (max-width: 1200px) {
    #jobs .jobs-buttons {
      text-align: center;
    }
    #jobs .jobs-buttons a {
      display: inline-block;
      margin: 0 10px;
    }
  }
  @media screen and (max-width: 990px) {
    #jobs {
      text-align: center;
    }
    #jobs img {
      margin-bottom: 40px;
    }
    #jobs .jobs-text {
      text-align: left;
    }
  }
  @media screen and (max-width: 767px) {
    #jobs {
      padding: 30px 0;
    }
    #jobs .jobs-text .btn {
      margin: 0 0 30px;
    }
    #jobs .jobs-buttons {
      margin: 0;
    }
  }
  
  #about {
    padding: 160px 0 100px;
    background-color: #f8fafc;
  }
  #about .about-text h2 {
    font-size: 70px;
    margin-bottom: 35px;
  }
  #about .about-text p {
    font-size: 18px;
    line-height: 2em;
  }
  #about .about-text .btn {
    margin-top: 40px;
  }
  #about .about-doc {
    max-width: 400px;
    min-height: 600px;
    padding: 40% 0 0 0;
    border-left: 3px solid #e4eaf0;
    /*a{
  
      span{
        display: inline-block;
        margin-top: 24px;
        padding: 5px 40px 0 0;
        color: $color__text-button;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: 'Maven Pro', sans-serif;
        background: url(../images/icon-download.svg) no-repeat 100% 50%;
      }
    }*/
  }
  @media screen and (max-width: 1200px) {
    #about .about-doc {
      max-width: none;
      min-height: 100px;
      padding: 50px 0 0;
      border: 0;
    }
  }
  @media screen and (max-width: 1440px) {
    #about .about-text h2 {
      font-size: 50px;
    }
  }
  @media screen and (max-width: 767px) {
    #about {
      padding: 40px 0;
    }
    #about .about-text {
      text-align: center;
    }
    #about .about-text h2 {
      font-size: 28px;
    }
    #about .about-doc {
      padding: 47px 0 30px;
      border: 0;
    }
  }
  
  #news {
    padding: 145px 0 90px;
  }
  #news .news-element {
    max-width: 330px;
    margin: 0 auto;
    padding: 20px;
    transition: all 0.3s;
    border: 2px solid #FFF;
    border-radius: 10px;
  }
  #news .news-element .news-element-image {
    overflow: hidden;
    max-height: 290px;
    margin-bottom: 25px;
  }
  #news .news-element .news-element-image img {
    border-radius: 5px;
  }
  #news .news-element .news-element-title h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s;
    color: #152b46;
  }
  #news .news-element .news-element-title time {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #8f9faf;
  }
  #news .news-element:hover {
    border-color: #f0f3f5;
  }
  #news .news-element:hover .news-element-title h3 {
    color: #1f5699;
  }
  @media screen and (max-width: 1440px) {
    #news {
      padding: 90px 0;
    }
  }
  @media screen and (max-width: 767px) {
    #news {
      padding: 45px 0 30px;
    }
    #news .news-element {
      text-align: center;
    }
  }
  
  .careers h2 {
    font-size: 60px;
  }
  .careers h3 {
    font-weight: 500;
  }
  .careers .apply-container h1 {
    font-size: 40px;
    max-width: 95%;
  }
  .careers .apply-container h3 {
    font-size: 30px;
    color: #1f5699;
    font-weight: 700;
  }
  .careers .embed-video-responsive iframe {
    width: 755px;
    height: 424px;
    max-width: 100%;
    max-height: calc((100vw - 40px) / (16/9));
  }
  .careers .apply-container-form {
    background: #f8fafc;
    padding: 25px;
  }
  .careers .apply-container-form .form-control-file {
    font-size: medium;
  }
  @media screen and (max-width: 1440px) {
    .careers h2 {
      font-size: 40px;
    }
  }
  @media screen and (max-width: 990px) {
    .careers h2 {
      font-size: 32px;
    }
    .careers .apply-container h1 {
      font-size: 30px;
    }
    .careers .apply-container h3 {
      font-size: 25px;
    }
  }
  .careers .spa-container {
    font-size: 1rem;
  }
  .careers .spa-container a:not(.btn) {
    font-weight: bold;
    color: #1f5699;
  }
  .careers .spa-container ul {
    padding: 0 0 0 20px;
    margin-left: 20px;
    list-style-type: disc;
    background: transparent;
  }
  .careers .spa-container ul li {
    font-weight: 400;
  }
  .careers .spa-container section.testimonials h4 {
    font-size: 24px;
  }
  .careers .spa-container section.testimonials .testimonials-head-title {
    font-size: 38px;
    font-weight: bold;
  }
  .careers .spa-container section.testimonials p {
    font-size: 16px;
  }
  
  .careers-content {
    max-width: 640px;
  }
  
  .graph-element {
    margin-bottom: 10rem;
  }
  .graph-element p {
    font-size: 18px;
    font-weight: 500;
  }
  .graph-element p span {
    display: inline-block;
    padding-right: 10px;
    color: #1f5699;
  }
  @media screen and (max-width: 990px) {
    .graph-element {
      margin: 3rem 0 !important;
    }
  }
  
  .careers-detail-sidebar {
    background: #357d8b;
  }
  
  #emr-info-blocks {
    padding: 115px 0 90px;
    background: #f8fafc;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-img {
    max-height: 264px;
    overflow: hidden;
    text-align: center;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-img img {
    display: inline-block !important;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-text {
    max-width: 380px;
    margin: -2px auto 0;
    padding: 55px 35px 35px;
    text-align: center;
    border: 2px solid #ebeff3;
    background: #fff;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-text h4 {
    color: #1f5699;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 33px;
    position: relative;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-text h4::after {
    content: "";
    width: 40px;
    height: 3px;
    margin-left: -20px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #eef1f5;
  }
  #emr-info-blocks .emr-info-blocks-body-element .emr-info-blocks-body-element-text p {
    color: #003367;
    font-size: 16px;
    line-height: 1.8em;
  }
  
  .error-404 .navigation-404 ul li {
    margin-bottom: 0;
  }
  .error-404 .navigation-404 ul li a {
    display: block;
    padding: 5px 10px;
  }
  .error-404 .navigation-404 ul li ul {
    margin: 0;
    padding: 0;
  }
  
  .services-our-results {
    min-height: 500px;
    position: relative;
  }
  .services-our-results .services-our-results-title {
    width: 100%;
    max-width: 340px;
    height: 90px;
    padding: 0 20px 0 85px;
    line-height: 90px;
    position: absolute;
    top: -120px;
    right: 0;
    background: #f8fafc url(../images/icon-our-proven-record.svg) no-repeat 44px 50%;
    border-radius: 10px;
  }
  .services-our-results .services-our-results-title h2 {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin: 0;
  }
  .services-our-results .services-our-results-element {
    max-width: 340px;
    height: 240px;
    padding: 45px 40px;
    position: absolute;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .services-our-results .services-our-results-element::after {
    content: "";
    width: 3px;
    height: 110px;
    position: absolute;
    top: 50px;
    left: -2px;
    background: #0b81dc;
  }
  .services-our-results .services-our-results-element#sore-1 {
    top: 140px;
    left: 0;
  }
  .services-our-results .services-our-results-element#sore-2 {
    top: 0;
    right: 0;
  }
  .services-our-results .services-our-results-element#sore-3 {
    top: 260px;
    right: 0;
  }
  .services-our-results .services-our-results-element h3 {
    color: #1f5699;
    font-size: 60px;
    margin-bottom: 5px;
  }
  .services-our-results .services-our-results-element p {
    color: #357d8b;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
  }
  @media screen and (max-width: 1500px) {
    .services-our-results .services-our-results-title,
  .services-our-results .services-our-results-element {
      float: left;
      position: relative;
      top: initial !important;
      left: initial !important;
      right: initial !important;
      margin-bottom: 20px;
    }
    .services-our-results .services-our-results-element#sore-1, .services-our-results .services-our-results-element#sore-3 {
      float: right;
    }
  }
  @media screen and (max-width: 767px) {
    .services-our-results .services-our-results-title,
  .services-our-results .services-our-results-element {
      float: left;
      width: 100%;
      max-width: 100%;
    }
    .services-our-results .services-our-results-element {
      height: auto;
    }
    .services-our-results .services-our-results-element h3 {
      font-size: 32px;
    }
    .services-our-results .services-our-results-element p {
      font-size: 18px;
    }
  }
  
  .gallery li {
    width: 20%;
    height: 125px;
    overflow: hidden;
    line-height: 125px;
    margin-bottom: 20px;
  }
  .gallery li img {
    max-height: 100%;
  }
  @media screen and (max-width: 990px) {
    .gallery li {
      width: 33.3333%;
    }
  }
  @media screen and (max-width: 767px) {
    .gallery li {
      width: 50%;
    }
  }
  
  .benefits-element {
    width: 96%;
    max-width: 280px;
    height: 420px;
    overflow: hidden;
    padding: 30px;
    margin: 0 auto 20px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .benefits-element .benefits-element-icon {
    height: 66px;
    margin-bottom: 25px;
  }
  .benefits-element .benefits-element-text h3 {
    font-size: 20px;
  }
  .benefits-element .benefits-element-text p {
    font-size: 16px;
    line-height: 1.8em;
  }
  @media screen and (max-width: 1440px) {
    .benefits-element {
      padding: 15px;
    }
  }
  
  #our-services-info {
    position: relative;
  }
  #our-services-info::after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: #f8fafc;
  }
  #our-services-info .container, #our-services-info .home .slides .msHtmlOverlay .layer .ms_content_wrap, .home .slides .msHtmlOverlay .layer #our-services-info .ms_content_wrap, #our-services-info .page-template-home-custom .slides .msHtmlOverlay .layer .ms_content_wrap, .page-template-home-custom .slides .msHtmlOverlay .layer #our-services-info .ms_content_wrap {
    position: relative;
    z-index: 2;
  }
  #our-services-info a.btn {
    margin: 0 15px 20px;
  }
  
  .bce-info-blocks {
    padding: 80px 0 90px;
    background: #f8fafc;
  }
  .bce-info-blocks .bce-info-blocks-element {
    width: 96%;
    max-width: 380px;
    /*height: 470px;*/
    min-height: 220px;
    position: relative;
    margin: 35px auto;
    padding: 80px 30px 30px;
    text-align: center;
    border: 1px solid #ebeff3;
    background: #fff;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .bce-info-blocks .bce-info-blocks-element span {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-left: -35px;
    position: absolute;
    top: -35px;
    left: 50%;
    color: #8f9faf;
    font-size: 25px;
    font-weight: 700;
    line-height: 70px;
    border: 1px solid #ebeff3;
    background: #fff;
    border-radius: 50%;
  }
  .bce-info-blocks .bce-info-blocks-element .bce-info-blocks-element-text {
    width: 100%;
    /*height: 360px;*/
    overflow: hidden;
  }
  .bce-info-blocks .bce-info-blocks-element .bce-info-blocks-element-text h3 {
    color: #1f5699;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 33px;
    position: relative;
  }
  .bce-info-blocks .bce-info-blocks-element .bce-info-blocks-element-text h3::after {
    content: "";
    width: 40px;
    height: 3px;
    margin-left: -20px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #eef1f5;
  }
  .bce-info-blocks .bce-info-blocks-element .bce-info-blocks-element-text p {
    color: #003367;
    font-size: 16px;
    line-height: 1.8em;
  }
  .bce-info-blocks .bce-info-blocks-element:hover {
    margin-top: 33px;
    border-top: 3px solid #0b81dc;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  .bce-info-blocks .bce-info-blocks-element:hover span {
    border-color: #fff;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  .bce-info-blocks .bce-info-blocks-element:hover .bce-info-blocks-element-text h3 {
    color: #357d8b;
  }
  .bce-info-blocks .bce-info-blocks-element:hover .bce-info-blocks-element-text h3::after {
    background: #0b81dc;
  }
  
  .hyc-benefits-element {
    width: 96%;
    max-width: 360px;
    min-height: 300px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .hyc-benefits-element::after {
    content: "";
    display: block;
    width: 3px;
    height: 90px;
    position: absolute;
    top: 30px;
    left: -2px;
    background-color: #0b81dc;
  }
  .hyc-benefits-element .hyc-benefits-element-title {
    height: 150px;
    overflow: hidden;
    padding: 60px 35px 30px;
    background: #f8fafc url(../images/icon-li.svg) no-repeat 26px 26px;
    background-size: 22px 22px;
  }
  .hyc-benefits-element .hyc-benefits-element-title h3 {
    color: #357d8b;
    font-size: 20px;
  }
  @media screen and (max-width: 1440px) {
    .hyc-benefits-element .hyc-benefits-element-title h3 {
      font-size: 16px;
    }
  }
  .hyc-benefits-element .hyc-benefits-element-text {
    padding: 25px 35px 25px;
  }
  .hyc-benefits-element .hyc-benefits-element-text p {
    line-height: 1.5em;
    margin-bottom: 30px;
  }
  .hyc-benefits-element .hyc-benefits-element-text p:last-child {
    margin: 0;
  }
  @media screen and (max-width: 1440px) {
    .hyc-benefits-element .hyc-benefits-element-text p {
      font-size: 14px;
    }
  }
  
  .va-info-blocks-element {
    max-width: 460px;
    min-height: 390px;
    padding: 45px;
    margin: 0 auto 30px;
    position: relative;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .va-info-blocks-element::after {
    content: "";
    display: block;
    width: 3px;
    height: 110px;
    position: absolute;
    top: 60px;
    left: -2px;
    background-color: #0b81dc;
  }
  .va-info-blocks-element h2 {
    color: #1f5699;
    font-size: 60px;
    margin-bottom: 0;
  }
  .va-info-blocks-element p {
    margin: 0 0 20px;
    line-height: 1.5em;
  }
  @media screen and (max-width: 1440px) {
    .va-info-blocks-element {
      padding: 35px;
    }
    .va-info-blocks-element h2 {
      font-size: 40px;
    }
  }
  @media screen and (max-width: 767px) {
    .va-info-blocks-element {
      min-height: 50px;
    }
  }
  
  .education-bc-info-blocks-element {
    max-width: 360px;
    height: 530px;
    margin: 0 auto;
    padding-top: 80px;
    position: relative;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-icon {
    width: 160px;
    height: 160px;
    margin-left: -80px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    text-align: center;
    line-height: 160px;
    border-radius: 50%;
    background-color: #f8fafc;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-icon::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url(../images/icons-benefits-of-certification.svg);
    background-repeat: no-repeat;
  }
  .education-bc-info-blocks-element#ebcibe-1 .education-bc-info-blocks-element-icon::before {
    width: 82px;
    height: 82px;
    background-position: 0 0;
  }
  .education-bc-info-blocks-element#ebcibe-2 .education-bc-info-blocks-element-icon::before {
    width: 82px;
    height: 82px;
    background-position: -90px 0;
  }
  .education-bc-info-blocks-element#ebcibe-3 .education-bc-info-blocks-element-icon::before {
    width: 83px;
    height: 78px;
    background-position: -184px 0;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-body {
    width: 100%;
    height: 448px;
    padding: 130px 30px 30px;
    position: relative;
    text-align: center;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-body::after {
    content: "";
    display: block;
    width: 180px;
    height: 5px;
    margin-left: -90px;
    position: absolute;
    left: 50%;
    bottom: -2px;
    background: #0b81dc;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-body h3 {
    color: #1f5699;
    font-size: 30px;
    margin-bottom: 25px;
  }
  .education-bc-info-blocks-element .education-bc-info-blocks-element-body p {
    color: #357d8b;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8em;
  }
  @media screen and (max-width: 1440px) {
    .education-bc-info-blocks-element {
      height: 428px;
    }
    .education-bc-info-blocks-element .education-bc-info-blocks-element-body {
      height: 348px;
    }
    .education-bc-info-blocks-element .education-bc-info-blocks-element-body h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }
    .education-bc-info-blocks-element .education-bc-info-blocks-element-body p {
      font-size: 16px;
    }
  }
  
  .education-bc-info-block {
    padding: 80px 0;
    margin-top: 110px;
    background: #f8fafc;
  }
  .education-bc-info-block h3 {
    color: #357d8b;
    font-size: 30px;
    margin-bottom: 40px;
  }
  .education-bc-info-block p {
    margin-bottom: 30px;
  }
  .education-bc-info-block ul {
    padding: 0;
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
  }
  .education-bc-info-block ul li {
    font-weight: 700;
  }
  .education-bc-info-block img {
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  
  .education-bc-content {
    padding-top: 140px;
    position: relative;
  }
  .education-bc-content::before {
    content: "";
    display: block;
    width: 220px;
    height: 128px;
    margin-left: -110px;
    position: absolute;
    top: 90px;
    left: 50%;
    background: #fff url(../images/icon-90-days.svg) no-repeat 50% 50%;
  }
  .education-bc-content .education-bc-content-body {
    padding: 96px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  
  .education-main-banner {
    height: 610px;
    padding-top: 128px;
    background-color: #004783;
    background-repeat: no-repeat;
    background-position: 50%;
  }
  .education-main-banner h1 {
    color: #fff;
    margin-bottom: 60px;
  }
  .education-main-banner p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }
  @media screen and (max-width: 990px) {
    .education-main-banner p br {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .education-main-banner {
      padding-top: 30px;
    }
  }
  @media screen and (max-width: 414px) {
    .education-main-banner {
      height: 360px;
      background-size: cover;
    }
    .education-main-banner h1 {
      margin-bottom: 10px;
    }
    .education-main-banner p {
      font-size: 16px;
      font-weight: 500;
    }
  }
  
  .education-content {
    background: url(../images/icon-90-days-green.png) no-repeat 100% 0;
  }
  @media screen and (max-width: 1200px) {
    .education-content {
      background-size: 90px;
    }
  }
  .education-content h3 {
    display: inline-block;
    width: 80%;
  }
  @media screen and (max-width: 414px) {
    .education-content .mw-220 {
      width: 48%;
      min-width: 160px !important;
    }
    .education-content .mw-220:first-child {
      margin-right: 2%;
    }
    .education-content .btn-secondary {
      width: 100%;
    }
  }
  @media screen and (max-width: 380px) {
    .education-content .btn {
      width: 100%;
    }
    .education-content .mw-220:first-child {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
  
  .verification-forms-block {
    margin-top: -210px;
  }
  @media screen and (max-width: 414px) {
    .verification-forms-block {
      margin-top: -60px;
    }
  }
  
  .verification-info-block {
    max-width: 1185px;
    margin: 50px auto 115px;
    padding: 55px;
    border: 2px solid #ebeff3;
    background: #fff;
    border-radius: 10px;
  }
  .verification-info-block p {
    color: #357d8b;
    font-size: 20px;
    font-weight: 500;
  }
  @media screen and (max-width: 414px) {
    .verification-info-block {
      padding: 15px;
    }
    .verification-info-block p {
      font-size: 16px;
    }
  }
  
  /*
  .level-access{
    float: left;
    margin-bottom: 120px;
  
    div{
      float: left;
    }
    & > div{
      width: 100%;
    }
  
    .level-access-head{
      height: 138px;
  
      & > div{
        height: inherit;
        text-align: center;
        line-height: 134px;
        position: relative;
  
        span{
          display: inline-block;
          color: $color__text-3;
          font-size: 20px;
          font-weight: 700;
          line-height: 1.5em;
          vertical-align: middle;
        }
      }
      .col-info{
        position: relative;
        border-top: 2px solid $color__border-6;
        border-left: 2px solid $color__border-6;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
  
        &:last-child{
          border-right: 2px solid $color__border-6;
        }
  
        &::before{
          content: "";
          width: 88%;
          height: 2px;
          position: absolute;
          top: -1px;
          left: 6%;
        }
  
        &:nth-child(2){
          &::before{ background: #a6b8d2 }
        }
        &:nth-child(3){
          &::before{ background: #98d8ce }
        }
        &:nth-child(4){
          &::before{ background: #0c81dc }
        }
      }
    }
  
    .col-title{ width: 26% }
    .col-info{ width: 24.667% }
  
    .level-access-body{
      .level-access-body-row{
        float: left;
        width: 100%;
        height: 90px;
        margin-top: -2px;
        line-height: 90px;
        border: 2px solid $color__border-6;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
  
        &:nth-child(2n-1){
          background: $color__background-body-lblue;
        }
  
        .col-title{
          color: $color__text-4;
          font-size: 18px;
          font-weight: 500;
          padding-left: 35px
        }
        .col-info{
          color: $color__text-4;
          font-size: 20px;
          font-weight: 500;
          text-align: center;
  
          .col-info-checkmark{
            display: inline-block;
            width: 33px;
            height: 33px;
            margin-top: 30px;
            background: url(../images/icon-li-green.svg) no-repeat;
            background-size: cover;
          }
        }
  
        & > div{
          height: inherit;
        }
      }
    }
  
    .level-access-footer{
  
      .col-title{
        height: 232px;
      }
  
      .col-info{
        height: 232px;
        padding-top: 45px;
        color: $color__text-6;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-left: 2px solid $color__border-6;
        border-bottom: 2px solid $color__border-6;
  
        &:last-child{
          border-right: 2px solid $color__border-6;
        }
  
        .btn{
          margin-top: 35px;
        }
      }
    }
  }
  */
  .get-vohra-certified-content h1 {
    display: inline-block;
    padding: 50px 150px 0;
    margin-bottom: 20px;
    background-image: url(../images/icon-90-days-green.png);
    background-repeat: no-repeat;
    background-position: 95% 0;
    background-size: 90px;
  }
  .get-vohra-certified-content h3 {
    color: #32b283;
    margin-bottom: 20px;
  }
  .get-vohra-certified-content blockquote {
    margin: 0;
    padding: 23px 26px;
    background: #f8fafc;
  }
  @media screen and (max-width: 767px) {
    .get-vohra-certified-content h1 {
      padding: 0 0 110px;
      background-position: 0 100%;
    }
  }
  
  .level-access-element {
    width: 96%;
    max-width: 360px;
    margin: 0 auto 20px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .level-access-element .level-access-element-title {
    height: 66px;
    padding: 0 30px;
    position: relative;
    line-height: 66px;
    background: #f8fafc;
  }
  .level-access-element .level-access-element-title:before {
    content: "";
    display: block;
    width: 3px;
    height: 40px;
    position: absolute;
    top: 15px;
    left: -2px;
    background: #0b81dc;
  }
  .level-access-element .level-access-element-title span {
    display: inline-block;
    color: #357d8b;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    vertical-align: middle;
  }
  .level-access-element .level-access-element-body {
    padding: 25px 30px;
  }
  .level-access-element .level-access-element-body ul {
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .level-access-element .level-access-element-body ul li {
    min-height: 32px;
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 400;
  }
  .level-access-element .level-access-element-body .level-access-element-body-price {
    color: #1f5699;
    font-size: 30px;
    font-weight: 700;
    padding: 25px 0;
  }
  .level-access-element .level-access-element-body .level-access-element-body-price span {
    color: #0b81dc;
    font-size: 15px;
    font-weight: 700;
  }
  
  .education-op-info-blocks {
    margin: 50px 0 110px;
    background: #f8fafc;
  }
  .education-op-info-blocks ul:last-child {
    margin: 0;
  }
  .education-op-info-blocks p {
    font-size: 16px;
    font-weight: 500;
  }
  .education-op-info-blocks p strong {
    color: #1f5699;
    font-size: 20px;
    font-weight: 700;
  }
  
  .education-op-ywl-info-blocks-element {
    height: 160px;
    margin-bottom: 20px;
    padding: 0 20px 0 148px;
    position: relative;
    line-height: 156px;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .education-op-ywl-info-blocks-element img {
    position: absolute;
    top: 40px;
    left: 40px;
  }
  .education-op-ywl-info-blocks-element p {
    display: inline-block;
    color: #357d8b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    vertical-align: middle;
  }
  @media screen and (max-width: 1539px) {
    .education-op-ywl-info-blocks-element {
      padding: 0 15px 0 100px;
    }
    .education-op-ywl-info-blocks-element img {
      max-width: 52px;
      top: 50px;
      left: 20px;
    }
    .education-op-ywl-info-blocks-element p {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 1200px) {
    .education-op-ywl-info-blocks-element {
      padding: 0 5px 0 90px;
    }
  }
  @media screen and (max-width: 414px) {
    .education-op-ywl-info-blocks-element {
      height: 90px;
      line-height: 110px;
      border: 0;
      border-radius: 0;
      border-top: 1px solid #f0f3f5;
    }
    .education-op-ywl-info-blocks-element img {
      top: 30px;
    }
  }
  
  .education-programs {
    padding: 110px 0;
  }
  .education-programs .education-programs-elements {
    overflow: hidden;
    margin-top: 50px;
    border: 2px solid #ebeff3;
    border-radius: 10px;
  }
  .education-programs .education-programs-elements .accordion .card {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 0 0 70px;
    background-color: #f9fafb;
    background-image: url(../images/icon-li-gray.svg);
    background-repeat: no-repeat;
    background-position: 20px 18px;
    background-size: 32px 32px;
  }
  .education-programs .education-programs-elements .accordion .card .card-header {
    margin: 0;
    border: 0;
    padding: 0;
    border-radius: 0;
  }
  .education-programs .education-programs-elements .accordion .card .card-header button {
    width: 100%;
    height: 70px;
    padding: 0 70px 0 35px;
    position: relative;
    border: 0;
    border-radius: 0;
    color: #02213e;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    background-color: #fff;
    background-image: url(../images/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 92% 50%;
  }
  .education-programs .education-programs-elements .accordion .card .card-header button[aria-expanded=true] {
    background-image: url(../images/icon-arrow-up.svg);
  }
  .education-programs .education-programs-elements .accordion .card .card-header button:after {
    content: "";
    display: block;
    width: 93%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ebeff3;
  }
  .education-programs .education-programs-elements .accordion .card .card-body {
    padding: 25px 25px 25px 35px;
    background: #fff;
  }
  .education-programs .education-programs-elements .accordion .card .card-body p {
    color: #02213e;
    font-size: 16px;
    font-weight: 400;
  }
  .education-programs .education-programs-elements .accordion .card.active {
    background-color: #0c81dc;
    background-image: url(../images/icon-li.svg);
  }
  @media screen and (max-width: 767px) {
    .education-programs .education-programs-elements .accordion .card {
      padding: 0;
      background-image: none;
    }
  }
  .education-programs .education-programs-elements .accordion > div:last-child {
    margin-bottom: -1px;
  }
  
  /* The Certification Process
  ---------------------------------------*/
  .certification-process-header {
    padding: 70px 0 100px;
    background: #00599f;
  }
  .certification-process-header h1, .certification-process-header h2, .certification-process-header h3, .certification-process-header p {
    color: #fff;
    margin: 0;
  }
  .certification-process-header .certification-process-header-body {
    position: relative;
    padding-top: 43px;
  }
  .certification-process-header .certification-process-header-body::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 58px;
    left: 0;
    border-top: 1px dashed #337ab2;
  }
  .certification-process-header .certification-process-header-body p {
    font-size: 17px;
  }
  .certification-process-header .certification-process-header-body .certification-process-steps-element {
    padding-top: 65px;
    background-image: url(../images/bg-certification-process-steps.png);
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .certification-process-header .certification-process-header-body .certification-process-steps-element.active {
    background-image: url(../images/bg-certification-process-steps-active.png);
    background-position: -10px -2px;
  }
  .certification-process-header .certification-process-header-body .certification-process-steps-element h3 {
    color: #fff;
    margin-bottom: 20px;
  }
  .certification-process-header .certification-process-header-body .certification-process-steps-element p {
    color: #d2ebff;
  }
  .certification-process-header .certification-process-header-body .quizzes-completed p {
    color: #fff;
    font-weight: 500;
  }
  .certification-process-header .certification-process-header-body .quizzes-completed p span {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(248, 250, 252, 0.1);
  }
  .certification-process-header .certification-process-header-body .btn {
    width: 100%;
    max-width: 310px;
    margin-bottom: 20px;
  }
  .certification-process-header .certification-process-header-body .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #0b81dc;
  }
  @media screen and (max-width: 991px) {
    .certification-process-header .certification-process-header-body::before {
      display: none;
    }
    .certification-process-header .certification-process-header-body .certification-process-steps-element {
      margin-bottom: 20px;
    }
  }
  
  .certification-modules {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .certification-modules .block-header h2 {
    font-size: 60px;
  }
  .certification-modules .certification-element {
    max-width: 460px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #f0f3f5;
    border-radius: 10px;
  }
  .certification-modules .certification-element::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    position: absolute;
    top: -25px;
    left: 50%;
    z-index: 2;
    background-image: url(../images/bg-certification-element.png);
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .certification-modules .certification-element.active::before {
    background-position: 0 -50px;
  }
  .certification-modules .certification-element .certification-element-header {
    height: 170px;
    padding: 55px 45px;
    position: relative;
    background: #f0f4f7;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .certification-modules .certification-element .certification-element-header h3 {
    display: inline-block;
    height: 60px;
    margin: 0;
    color: #357d8b;
    font-size: 24px;
  }
  .certification-modules .certification-element .certification-element-header ul {
    width: 100%;
    max-width: 360px;
    margin: 20px 0 0;
    padding: 15px 20px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 15px 20px 0px rgba(31, 86, 153, 0.08);
  }
  .certification-modules .certification-element .certification-element-header ul li {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 400;
    border-right: 1px solid #f0f3f5;
    background: none;
  }
  .certification-modules .certification-element .certification-element-header ul li:first-child {
    padding-left: 0;
  }
  .certification-modules .certification-element .certification-element-header ul li:last-child {
    border: 0;
    padding-right: 0;
  }
  .certification-modules .certification-element .certification-element-header ul li strong {
    font-weight: 500;
  }
  .certification-modules .certification-element .certification-element-body {
    height: 90px;
    padding: 34px 45px 0 45px;
    background: #f8fafc;
  }
  .certification-modules .certification-element .certification-element-body p {
    color: #3a536d;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
  }
  .certification-modules .certification-element .certification-element-body p span {
    color: #8f9faf;
    font-size: 13px;
  }
  .certification-modules .certification-element .certification-element-footer {
    height: 210px;
    padding: 35px 20px 60px;
    text-align: center;
    border-top: 2px solid #f0f3f5;
    background: #fff;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .certification-modules .certification-element .certification-element-footer .btn-primary,
  .certification-modules .certification-element .certification-element-footer .btn-third {
    width: 100%;
    max-width: 340px;
    margin-top: 35px;
  }
  @media screen and (max-width: 1440px) {
    .certification-modules {
      padding-bottom: 0;
    }
    .certification-modules .block-header h2 {
      font-size: 32px;
    }
    .certification-modules .certification-element .certification-element-header {
      padding: 45px;
    }
    .certification-modules .certification-element .certification-element-header h3 {
      font-size: 18px;
    }
    .certification-modules .certification-element .certification-element-header ul li {
      font-size: 14px;
    }
    .certification-modules .certification-element .certification-element-body {
      padding: 26px 45px 0;
    }
  }
  @media screen and (max-width: 1200px) {
    .certification-modules .certification-element .certification-element-header {
      padding: 45px 25px;
    }
    .certification-modules .certification-element .certification-element-header ul li {
      font-size: 12px;
    }
    .certification-modules .certification-element .certification-element-body {
      padding: 26px 25px 0;
    }
  }
  
  .instructor-block {
    padding: 120px 0;
  }
  .instructor-block .instructor-block-text {
    margin-bottom: 40px;
    padding-left: 70px;
  }
  .instructor-block .instructor-block-text .instructor-block-text-header h2 {
    font-size: 60px;
    margin-bottom: 20px;
  }
  .instructor-block .instructor-block-text .instructor-block-text-header h3 {
    margin-bottom: 30px;
  }
  .instructor-block .instructor-block-text .instructor-block-text-lside {
    float: left;
    width: 47%;
    margin-right: 6%;
  }
  .instructor-block .instructor-block-text .instructor-block-text-rside {
    float: left;
    width: 47%;
  }
  @media screen and (max-width: 1440px) {
    .instructor-block .instructor-block-text .instructor-block-text-header h2 {
      font-size: 32px;
    }
  }
  @media screen and (max-width: 991px) {
    .instructor-block .instructor-block-text {
      padding: 0;
    }
    .instructor-block .instructor-block-text .instructor-block-text-lside {
      width: 100%;
      margin-right: 0%;
    }
    .instructor-block .instructor-block-text .instructor-block-text-rside {
      width: 100%;
    }
  }
  
  .technology-main-banner {
    height: 650px;
    padding-top: 30px;
    background-color: #004783;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .technology-main-banner .breadcrumb {
    color: #578dba;
  }
  .technology-main-banner .breadcrumb a {
    color: #fff;
  }
  .technology-main-banner .technology-main-banner-text {
    max-width: 655px;
    padding-top: 85px;
  }
  .technology-main-banner .technology-main-banner-text h1 {
    color: #fff;
    font-size: 90px;
    line-height: 1em;
  }
  .technology-main-banner .technology-main-banner-text ul {
    margin-top: 50px;
    padding: 0;
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    background: transparent;
  }
  .technology-main-banner .technology-main-banner-text ul li {
    color: #c9e9ff;
    font-size: 18px;
  }
  @media screen and (max-width: 1539px) {
    .technology-main-banner {
      height: 590px;
      background-size: cover;
    }
    .technology-main-banner .technology-main-banner-text h1 {
      font-size: 60px;
    }
  }
  @media screen and (max-width: 1200px) {
    .technology-main-banner .technology-main-banner-text .btn-play-link {
      display: none;
    }
  }
  @media screen and (max-width: 1024px) {
    .technology-main-banner ul {
      display: none;
    }
  }
  @media screen and (max-width: 991px) {
    .technology-main-banner .technology-main-banner-text .mr-0 {
      margin-bottom: 10px;
    }
  }
  @media screen and (max-width: 767px) {
    .technology-main-banner .technology-main-banner-text .mr-0 {
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 414px) {
    .technology-main-banner {
      height: 503px;
      background-image: url(../images/technology-img-1-mobile.jpg) !important;
      background-size: cover;
    }
    .technology-main-banner::after {
      content: "";
      display: block;
      width: 305px;
      height: 355px;
      margin: 0 auto;
      background: url(../images/technology-img-1-mobile-phone.png);
    }
    .technology-main-banner .technology-main-banner-text {
      padding-top: 25px;
      text-align: center;
    }
    .technology-main-banner .technology-main-banner-text h1 {
      font-size: 40px;
    }
  }
  @media screen and (max-width: 380px) {
    .technology-main-banner .technology-main-banner-text .mr-0 {
      margin-bottom: 10px;
    }
  }
  
  .technology-element {
    display: inline-block;
    width: 96%;
    min-height: 250px;
    overflow: hidden;
    margin: 0 auto;
    vertical-align: top;
    text-align: center;
  }
  .technology-element span {
    display: inline-block;
    height: 120px;
    margin-bottom: 30px;
  }
  .technology-element p {
    color: #02213e;
    font-size: 18px;
    font-weight: 500;
  }
  @media screen and (max-width: 1440px) {
    .technology-element {
      height: 250px;
      min-height: 250px;
      padding: 45px 25px;
    }
    .technology-element span {
      margin-bottom: 10px;
    }
    .technology-element p {
      font-size: 16px;
      line-height: 1.5em;
    }
  }
  @media screen and (max-width: 1024px) {
    .technology-element {
      margin: 0 auto 20px;
    }
  }
  @media screen and (max-width: 991px) {
    .technology-element {
      height: auto;
      min-height: 130px;
      padding: 35px 25px;
    }
  }
  
  .technology-text p strong {
    color: #357d8b;
  }
  .technology-text ul {
    padding: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
  .technology-text ul li {
    min-height: 48px;
    color: #357d8b;
    font-size: 16px;
    font-weight: 400;
    font-family: "Maven Pro", sans-serif;
    padding-left: 20px;
    background: url(../images/icon-li-simple.svg) no-repeat 0 10px;
  }
  @media screen and (max-width: 1024px) {
    .technology-text ul {
      columns: 1;
      -webkit-columns: 1;
      -moz-columns: 1;
    }
    .technology-text ul li {
      min-height: 24px;
    }
  }
  
  .thank-you .fa-check-circle {
    font-size: 90px;
    color: #0b81dc;
  }
  .thank-you h1 {
    font-size: 80px;
    margin-top: 50px;
    margin-bottom: 5px;
  }
  .thank-you h2 {
    font-size: 50px;
    margin-top: 0;
  }
  .thank-you h3 {
    font-size: 20px;
    font-weight: normal;
    color: #02213e;
  }
  .thank-you .plan {
    font-size: 20px;
    font-weight: bold;
    line-height: 90px;
    display: inline-block;
    margin: 20px auto;
    padding: 0 150px;
    color: #1f5699;
    border-bottom: 1px solid #1388E2;
    background-color: #F8FAFC;
  }
  .thank-you .email {
    font-weight: 500;
    color: #1f5699;
  }
  .thank-you .btn {
    margin-top: 15px;
  }
  
  .contact-address,
  .contact-phone {
    max-width: 334px;
    padding-left: 35px;
    padding-right: 100px;
  }
  @media screen and (max-width: 414px) {
    .contact-address,
  .contact-phone {
      max-width: 100%;
      padding-right: 0;
    }
    .contact-address p,
  .contact-phone p {
      margin: 0;
    }
  }
  
  .contact-address {
    margin: 40px 0;
    padding-bottom: 39px;
    border-bottom: 1px solid #e5ebf2;
    background: url(../images/icon-pin.svg) no-repeat 0 6px;
  }
  
  .contact-phone {
    background: url(../images/icon-phone.svg) no-repeat 0 10px;
  }
  
  .patients #locations-centers h2 {
    font-size: 30px;
  }
  .patients #locations-centers .col-lg-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  @media screen and (max-width: 1200px) {
    .patients .btn.mw-210 {
      width: 48% !important;
      min-width: 160px;
    }
    .patients .btn.mw-210:first-child {
      margin-right: 2% !important;
    }
  }
  @media screen and (max-width: 991px) {
    .patients .btn-gray {
      width: 100%;
      max-width: none;
      margin-bottom: 40px;
    }
  }
  @media screen and (max-width: 414px) {
    .patients .btn.mw-210 {
      width: 100% !important;
    }
    .patients .btn.mw-210:first-child {
      margin-right: 0;
      margin-bottom: 20px !important;
    }
  }
  
  .modal-info-element {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 273px;
    height: 200px;
    padding: 50px 20px 0;
    vertical-align: top;
    border: 2px solid #E9EEF2;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #FFF;
  }
  .modal-info-element p {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
  }
  .modal-info-element p span {
    font-size: 15px;
    font-weight: 700;
    line-height: 17px;
    color: #0b81dc;
  }
  .modal-info-element::before {
    position: absolute;
    top: -25px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    content: "";
    border: 2px solid #E9EEF2;
    border-radius: 50%;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .modal-info-element#phone::before {
    background-image: url(../images/icon-phone-gray.svg);
  }
  .modal-info-element#email::before {
    background-image: url(../images/icon-email-gray.svg);
  }
  @media screen and (max-width: 991px) {
    .modal-info-element {
      display: block;
      margin: 0 auto;
    }
  }
  
  .modal-info-element-or {
    font-size: 12px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    width: 137px;
    height: 200px;
    padding-top: 96px;
    vertical-align: top;
    color: #4d6277;
  }
  .modal-info-element-or::before {
    position: absolute;
    top: 103px;
    left: 37px;
    display: block;
    width: 15px;
    height: 2px;
    content: "";
    background: #4d6277;
  }
  .modal-info-element-or::after {
    position: absolute;
    top: 103px;
    right: 37px;
    display: block;
    width: 15px;
    height: 2px;
    content: "";
    background: #4d6277;
  }
  @media screen and (max-width: 991px) {
    .modal-info-element-or {
      display: block;
      height: 90px;
      margin: 0 auto;
      padding-top: 30px;
    }
    .modal-info-element-or::before {
      top: 38px;
    }
    .modal-info-element-or::after {
      top: 38px;
    }
  }
  
  .blog-navigation {
    max-width: 360px;
    overflow: hidden;
    margin-bottom: 50px;
  }
  .blog-navigation ul {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
  }
  .blog-navigation ul li {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f3f5;
    background: none;
  }
  .blog-navigation ul li:hover {
    border-left: 5px solid #357d8b;
  }
  .blog-navigation ul li:hover a {
    margin-left: 3px;
  }
  .blog-navigation ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0px;
    color: #02213e;
    font-size: 16px;
    font-weight: 500;
    line-height: 45px;
    background: none;
    margin-left: 8px;
  }
  .blog-navigation ul li a:hover {
    text-decoration: none;
  }
  .blog-navigation ul li.current-menu-item {
    border-left: 5px solid #357d8b;
  }
  .blog-navigation ul li.current-menu-item a {
    color: #1f5699;
    margin-left: 3px;
  }
  .blog-navigation ul li:last-child {
    border-bottom: 0;
  }
  @media screen and (max-width: 991px) {
    .blog-navigation {
      max-width: 100%;
    }
  }
  
  article.post a, article.page a {
    text-decoration: none !important;
  }
  article.post img, article.page img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  article.post time, article.page time {
    display: inline-block;
    width: 100%;
    margin: 0;
    color: white;
    font-size: 12px;
    font-weight: 500;
  }
  article.post h2, article.page h2 {
    color: #152b46 !important;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1.2em;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  article.post h2 a, article.page h2 a {
    color: white;
  }
  article.post .page-title, article.page .page-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin: 0 0 10px;
    color: #357d8b;
  }
  @media screen and (max-width: 1440px) {
    article.post .page-title, article.page .page-title {
      font-size: 32px;
    }
  }
  @media screen and (max-width: 767px) {
    article.post .page-title, article.page .page-title {
      font-size: 22px;
    }
  }
  @media screen and (max-width: 380px) {
    article.post .page-title, article.page .page-title {
      font-size: 18px;
    }
  }
  article.post p, article.page p {
    color: #02213e !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: Maven Pro, sans-serif !important;
    margin-bottom: 0px;
    line-height: 1.5;
  }
  article.post .btn, article.page .btn {
    margin-top: 0px;
  }
  article.post .btn.btn-learn-more, article.page .btn.btn-learn-more {
    padding: 0 20px 0 0;
    background: none;
    color: #357d8b;
  }
  
  .pagination span,
  .pagination a {
    display: inline-block;
    margin: 0 10px 0 0;
    color: #152b46;
    font-size: 18px;
  }
  
  .single article .content-body {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ebeff3;
  }
  
  .related-articles {
    margin-bottom: 40px;
  }
  .related-articles h3 {
    color: #152b46;
    font-size: 25px;
    margin-bottom: 20px;
  }
  
  .page-title {
    margin-bottom: 10px;
  }
  
  @media screen and (max-width: 767px) {
    .top_banner_container, .sidebar_banner_container {
      display: none;
    }
  }
  
  .news-title, .related-title, .featured-title, .news-sidebar-featured, .featured-category {
    overflow: hidden;
    border-bottom: 2px solid #357d8b;
  }
  .news-title span, .related-title span, .featured-title span, .news-sidebar-featured span, .featured-category span {
    color: white;
    background-color: #357d8b;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 600;
  }
  
  .news-title, .news-sidebar-featured {
    max-width: 360px;
  }
  @media screen and (max-width: 991px) {
    .news-title, .news-sidebar-featured {
      max-width: 100%;
    }
  }
  
  .news-sidebar-featured {
    border-bottom: 2px solid #f9c100;
  }
  .news-sidebar-featured span {
    background-color: #f9c100;
  }
  
  .featured-title {
    border-bottom: 2px solid #cc2329;
    max-width: 960px;
  }
  .featured-title span {
    background-color: #cc2329;
  }
  
  .featured-category {
    border-bottom: 2px solid #2a8a73;
    max-width: 960px;
  }
  @media screen and (max-width: 1199px) {
    .featured-category {
      display: none;
    }
  }
  .featured-category span {
    background-color: #2a8a73;
  }
  
  .archive-title {
    overflow: hidden;
    border-bottom: 2px solid #357d8b;
    line-height: 0.82em;
    max-width: 960px;
    margin: 40px 0 7px;
  }
  @media screen and (max-width: 991px) {
    .archive-title {
      line-height: 1em;
    }
  }
  .archive-title span {
    color: white;
    background-color: #357d8b;
    padding: 5px 10px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .top_banner_container {
    margin-top: 38px;
  }
  
  .sidebar_banner_container {
    margin-top: 37px;
    margin-bottom: 44px;
  }
  
  .sidebar_banner_container_single {
    margin-bottom: 40px;
  }
  .sidebar_banner_container_single img {
    min-height: auto !important;
  }
  
  .post-thumb-container {
    overflow: hidden;
    max-width: 450px;
    background-size: cover;
    box-shadow: inset 0 -185px 205px -125px rgba(0, 0, 0, 0.7);
    height: 300px;
  }
  .post-thumb-container img {
    transition: 0.3s ease-in-out;
  }
  .post-thumb-container img:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .post-thumb-container .thumb-layer {
    overflow: hidden;
    max-width: 450px;
    background-size: cover;
    box-shadow: inset 0 -185px 205px -125px rgba(0,0,0,.7);
    height: 300px;
}
  @media screen and (max-width: 1539px) {
    .post-thumb-container .thumb-layer {
      max-width: 350px;
    }
  }
  @media screen and (max-width: 1199px) {
    .post-thumb-container .thumb-layer {
      max-width: 290px;
    }
  }
  @media screen and (max-width: 991px) {
    .post-thumb-container .thumb-layer {
      max-width: 330px;
    }
  }
  @media screen and (max-width: 767px) {
    .post-thumb-container .thumb-layer {
      max-width: 450px;
    }
  }
  @media screen and (max-width: 496px) {
    .post-thumb-container .thumb-layer {
      max-width: 93%;
    }
  }
  
  .post-meta-container {
    left: 7px;
    position: relative;
    bottom: 70px;
    max-width: 420px;
  }
  
  .entry-content.d-none {
    margin: -55px 0 0;
    max-width: 450px;
    text-align: justify;
  }
  
  .wpfp-featured-post {
    max-width: 960px;
  }
  
  .wpfp-featured-post-grid {
    max-width: 390px;
  }
  
  .featured-gallery-container {
    max-width: 966px;
    height: 270px;
  }
  @media screen and (max-width: 1539px) {
    .featured-gallery-container {
      display: none;
    }
  }
  .featured-gallery-container article {
    margin: 0;
  }
  .featured-gallery-container article .entry-title {
    font-size: 16px;
  }
  .featured-gallery-container article .post-thumb-container {
    width: 235px;
  }
  .featured-gallery-container article .post-thumb-container .thumb-layer {
    width: 235px;
    height: 250px;
  }
  .featured-gallery-container article img {
    max-width: 250px;
    min-height: 250px !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  
  .large-post {
    max-height: 450px;
  }
  @media screen and (max-width: 1199px) {
    .large-post {
      display: none;
    }
  }
  .large-post .post-thumb-container {
    width: 100%;
    height: 450px;
    max-width: 480px;
  }
  @media screen and (max-width: 1539px) {
    .large-post .post-thumb-container {
      min-width: 365px;
    }
  }
  .large-post .post-thumb-container img {
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  .large-post .post-thumb-container .thumb-layer {
    max-width: 480px;
    height: 450px;
  }
  @media screen and (max-width: 1539px) {
    .large-post .post-thumb-container .thumb-layer {
      max-width: 365px;
    }
    .post-thumb-container {
      height:233px;
    }
  }


@media screen and (max-width: 1539px) {
    .post-thumb-container {
        height: 233px;
    }
}
@media screen and (max-width: 1199px) {
    .post-thumb-container {
        height: 193px;
    }
}
@media screen and (max-width: 991px) {
    .post-thumb-container {
        height: 220px;
    }
}
@media screen and (max-width: 768px) {
    .post-thumb-container {
        height: 300px;
    }
}
@media screen and (max-width: 375px) {
    .post-thumb-container {
        height: 273px;
    }
}
  
  .list-post {
    padding: 0;
    margin: 1px 0 0 -9px;
    font-size: 14px;
  }
  @media screen and (max-width: 1199px) {
    .list-post {
      display: none;
    }
  }
  .list-post .row a {
    font-weight: 700;
  }
  .list-post .row a:hover {
    text-decoration: none;
  }
  .list-post .row a:visited {
    color: #003367;
  }
  .list-post .row img {
    min-height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  .list-post .row .col-lg-4 {
    margin: 0 0 16px 16px;
  }
  .list-post .row:hover a {
    color: #2a8a73;
  }
  
  @media screen and (max-width: 991px) {
    .hentry {
      margin: 0 0 0.4em;
      max-height: 300px;
    }
  }
  
  
  body .site-content ul.timeline {
    background: transparent;
  }
  body .site-content ul.timeline li {
    background: #ffffff;
  }
  
  .wound-predictor-form {
    max-width: 400px;
  }
  .wound-predictor-form input[type=number] {
    max-width: 150px;
  }
  .wound-predictor-form .results-whp {
    display: none;
  }
  .wound-predictor-form .results-whp img {
    margin: 10%;
    min-height: auto;
  }
  .wound-predictor-form .results-whp p {
    font-size: 18px;
  }
  .wound-predictor-form .results-whp p span {
    font-weight: bold;
  }

  #cmp-message-send, .api-error {
    display: none;
  }

  #cmp-register {
    width: 100%;
  }

  #home_inquiry_button, #wizard-next-button {
    width: 100%;
    font-size: 30px;
    background: #213547;
    padding: 14px;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    font-size: 44px;
  }
  
  #wizard-container {
    background: aliceblue;
    padding: 20px;
  }
  
  #wizard-error {
    padding: 10px;
    background: #ef5350;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    display: none;
  }
  
  #step-2-a, #step-2-b, #step-3-a, #step-3-b, #step-2-c, #step-4-a, #step-5-a, #step-2-c-3, #step-2-c-2, .captcha-validate-error, #step-2-c-1 {
    display: none;
  }

  #job_title {
    max-width: 100%;
  }
  #job_title > option {
    font-size: 16px;
  }
  
  .step-2-btn {
    line-height: 30px !important;
  }
  
  .text-center.mb-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .text-none {
    text-transform: none !important;
  }

  /* End Wizard Form */

.invalid-input {
  border: 1px solid red !important;
}
.site-footer-logo img {
  height: 40px;
}
