@charset "UTF-8";
/*
 * 
	- Folder Table of Content -

	Components: Stand alone styles for specific html structures & elements.
	Navigation: Styles specific to navigation menus.
	Helpers:    Includes Sass functions & extends/placeholders.
	Plugins:    Styles overrides or additions for JS plugins.
	Layout:     Containers & structures that make up the site's general layout.
	Mixins:     Custom Sass helper mixins.
	Modules:    Styles for CMS module components or pages (eg. login, registration and user accounts, sitemap, search results, etc...). 
	            If these view templates are copied into your theme for modification, still keep their styles in "Modules" directory.
	Pages:      Styles unique and specific to page templates or modules (eg. blog, services, homepage, etc...)


	- Other Files -

	_fonts.scss:      Include custom fonts here.
	_framework.scss:  Customize your bootstrap build as needed.
	_globals.scss:    Global site styles (usually related to <html>, <body> or styles applied to direct html elements).
	_typography.scss: Heading and text styles.
	_variables.scss:  Override bootstrap variables here.
	_vendor.scss:     Compile all 3rd party libraries into a separate file.

	NOTES:
	Included image & font paths are relative to scss folder. For Example:

 	background: url('../images/galaxy.png');  

 	@font-face {
		font-famly: 'Roboto';
		src: url('../fonts/Roboto.eot');
	}
 *
 */
/* Framework: Bootstrap v4.0.0-beta
 *
 * Includes variables over-ride file
 *
 * Framework may be customized by commenting out partials that 
 * are not necessary for your build.
 *
 * Please keep in mind commenting out CORE partials is not
 * recommended and could result in errors on compliation.
 *
 * IMPORTANT: Bootstrap function must come before all other files (including variables). Do not reorder.
 *
 */
/* Custom settings and variables
 * 
 * This file is a copy of the bootstrap variables file.
 * This allows you to customize Bootstrap defaults without modifying key, versioned files.
 *
 * Some addition sections or functions have been added for easier customization.
 * This file should always come BEFORE the bootstrap variables file.
 *
*/
@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
*,
*::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: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4f5b67;
  text-align: left;
  background-color: #fefefe;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: calc(1rem / 2);
}

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: inherit;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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;
  -ms-overflow-style: scrollbar;
}

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;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

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;
}

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, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta),
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    max-width: 1200px;
  }
}
.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          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-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .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 {
  -webkit-flex-basis: 0;
          flex-basis: 0;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-order: -1;
          order: -1;
}

.order-last {
  -webkit-order: 13;
          order: 13;
}

.order-0 {
  -webkit-order: 0;
          order: 0;
}

.order-1 {
  -webkit-order: 1;
          order: 1;
}

.order-2 {
  -webkit-order: 2;
          order: 2;
}

.order-3 {
  -webkit-order: 3;
          order: 3;
}

.order-4 {
  -webkit-order: 4;
          order: 4;
}

.order-5 {
  -webkit-order: 5;
          order: 5;
}

.order-6 {
  -webkit-order: 6;
          order: 6;
}

.order-7 {
  -webkit-order: 7;
          order: 7;
}

.order-8 {
  -webkit-order: 8;
          order: 8;
}

.order-9 {
  -webkit-order: 9;
          order: 9;
}

.order-10 {
  -webkit-order: 10;
          order: 10;
}

.order-11 {
  -webkit-order: 11;
          order: 11;
}

.order-12 {
  -webkit-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 {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-order: 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 {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-order: 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 {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-order: 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 {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-order: 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%;
  }
}
@media (min-width: 1440px) {
  .col-xxl {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    -webkit-order: -1;
            order: -1;
  }

  .order-xxl-last {
    -webkit-order: 13;
            order: 13;
  }

  .order-xxl-0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-xxl-1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-xxl-2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-xxl-3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-xxl-4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-xxl-5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-xxl-6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-xxl-7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-xxl-8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-xxl-9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-xxl-10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-xxl-11 {
    -webkit-order: 11;
            order: 11;
  }

  .order-xxl-12 {
    -webkit-order: 12;
            order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.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;
  }
}

.nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fefefe;
  border-color: #dee2e6 #dee2e6 #fefefe;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #ed8116;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -webkit-flex-basis: 0;
          flex-basis: 0;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.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;
}

a.close.disabled {
  pointer-events: none;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #ed8116 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #c1680f !important;
}

.bg-secondary {
  background-color: #50bef1 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #21aced !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #fefefe !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e5e5e5 !important;
}

.bg-dark {
  background-color: #021627 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: black !important;
}

.bg-primary-dark {
  background-color: #c0551a !important;
}

a.bg-primary-dark:hover, a.bg-primary-dark:focus,
button.bg-primary-dark:hover,
button.bg-primary-dark:focus {
  background-color: #934114 !important;
}

.bg-secondary-very-dark {
  background-color: #053968 !important;
}

a.bg-secondary-very-dark:hover, a.bg-secondary-very-dark:focus,
button.bg-secondary-very-dark:hover,
button.bg-secondary-very-dark:focus {
  background-color: #031e37 !important;
}

.bg-secondary-dark {
  background-color: #0b5998 !important;
}

a.bg-secondary-dark:hover, a.bg-secondary-dark:focus,
button.bg-secondary-dark:hover,
button.bg-secondary-dark:focus {
  background-color: #083d68 !important;
}

.bg-secondary-light {
  background-color: #b0e0f8 !important;
}

a.bg-secondary-light:hover, a.bg-secondary-light:focus,
button.bg-secondary-light:hover,
button.bg-secondary-light:focus {
  background-color: #81cef4 !important;
}

.bg-secondary-very-light {
  background-color: #d5effa !important;
}

a.bg-secondary-very-light:hover, a.bg-secondary-very-light:focus,
button.bg-secondary-very-light:hover,
button.bg-secondary-very-light:focus {
  background-color: #a7def5 !important;
}

.bg-tertiary {
  background-color: #4f5b67 !important;
}

a.bg-tertiary:hover, a.bg-tertiary:focus,
button.bg-tertiary:hover,
button.bg-tertiary:focus {
  background-color: #39424a !important;
}

.bg-tertiary-light {
  background-color: #e5eaf0 !important;
}

a.bg-tertiary-light:hover, a.bg-tertiary-light:focus,
button.bg-tertiary-light:hover,
button.bg-tertiary-light:focus {
  background-color: #c5d0dd !important;
}

.bg-quaternary {
  background-color: #edb416 !important;
}

a.bg-quaternary:hover, a.bg-quaternary:focus,
button.bg-quaternary:hover,
button.bg-quaternary:focus {
  background-color: #c1920f !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.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: -webkit-flex !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-flex !important;
  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: -webkit-flex !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-flex !important;
    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: -webkit-flex !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-flex !important;
    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: -webkit-flex !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-flex !important;
    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: -webkit-flex !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-flex !important;
    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: -webkit-flex !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-flex-grow: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-flex-grow: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
          flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
          flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-justify-content: flex-start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-justify-content: flex-end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-justify-content: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-justify-content: space-between !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
          justify-content: space-around !important;
}

.align-items-start {
  -webkit-align-items: flex-start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-align-items: flex-end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-align-items: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-align-items: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-align-items: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
          align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-flex-grow: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-flex-grow: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
            flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-align-items: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important;
  }

  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important;
  }

  .align-content-sm-center {
    -webkit-align-content: center !important;
            align-content: center !important;
  }

  .align-content-sm-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important;
  }

  .align-content-sm-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important;
  }

  .align-self-sm-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important;
  }

  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important;
  }

  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important;
  }

  .align-self-sm-center {
    -webkit-align-self: center !important;
            align-self: center !important;
  }

  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-flex-grow: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-flex-grow: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
            flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-align-items: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important;
  }

  .align-content-md-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important;
  }

  .align-content-md-center {
    -webkit-align-content: center !important;
            align-content: center !important;
  }

  .align-content-md-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important;
  }

  .align-content-md-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important;
  }

  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important;
  }

  .align-self-md-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important;
  }

  .align-self-md-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important;
  }

  .align-self-md-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important;
  }

  .align-self-md-center {
    -webkit-align-self: center !important;
            align-self: center !important;
  }

  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important;
  }

  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-flex-grow: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-flex-grow: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
            flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-align-items: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important;
  }

  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important;
  }

  .align-content-lg-center {
    -webkit-align-content: center !important;
            align-content: center !important;
  }

  .align-content-lg-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important;
  }

  .align-content-lg-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important;
  }

  .align-self-lg-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important;
  }

  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important;
  }

  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important;
  }

  .align-self-lg-center {
    -webkit-align-self: center !important;
            align-self: center !important;
  }

  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-flex-grow: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-flex-grow: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
            flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-align-items: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important;
  }

  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important;
  }

  .align-content-xl-center {
    -webkit-align-content: center !important;
            align-content: center !important;
  }

  .align-content-xl-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important;
  }

  .align-content-xl-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important;
  }

  .align-self-xl-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important;
  }

  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important;
  }

  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important;
  }

  .align-self-xl-center {
    -webkit-align-self: center !important;
            align-self: center !important;
  }

  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1440px) {
  .flex-xxl-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    -webkit-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    -webkit-flex-grow: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-flex-grow: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
            flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important;
  }

  .align-items-xxl-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-align-items: center !important;
            align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xxl-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -webkit-align-content: center !important;
            align-content: center !important;
  }

  .align-content-xxl-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important;
  }

  .align-content-xxl-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important;
  }

  .align-self-xxl-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -webkit-align-self: center !important;
            align-self: center !important;
  }

  .align-self-xxl-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important;
  }
}
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !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;
  margin: -1px;
  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;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.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: 5px !important;
}

.mt-5,
.my-5 {
  margin-top: 5px !important;
}

.mr-5,
.mx-5 {
  margin-right: 5px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5px !important;
}

.ml-5,
.mx-5 {
  margin-left: 5px !important;
}

.m-100 {
  margin: 100px !important;
}

.mt-100,
.my-100 {
  margin-top: 100px !important;
}

.mr-100,
.mx-100 {
  margin-right: 100px !important;
}

.mb-100,
.my-100 {
  margin-bottom: 100px !important;
}

.ml-100,
.mx-100 {
  margin-left: 100px !important;
}

.m-95 {
  margin: 95px !important;
}

.mt-95,
.my-95 {
  margin-top: 95px !important;
}

.mr-95,
.mx-95 {
  margin-right: 95px !important;
}

.mb-95,
.my-95 {
  margin-bottom: 95px !important;
}

.ml-95,
.mx-95 {
  margin-left: 95px !important;
}

.m-90 {
  margin: 90px !important;
}

.mt-90,
.my-90 {
  margin-top: 90px !important;
}

.mr-90,
.mx-90 {
  margin-right: 90px !important;
}

.mb-90,
.my-90 {
  margin-bottom: 90px !important;
}

.ml-90,
.mx-90 {
  margin-left: 90px !important;
}

.m-85 {
  margin: 85px !important;
}

.mt-85,
.my-85 {
  margin-top: 85px !important;
}

.mr-85,
.mx-85 {
  margin-right: 85px !important;
}

.mb-85,
.my-85 {
  margin-bottom: 85px !important;
}

.ml-85,
.mx-85 {
  margin-left: 85px !important;
}

.m-80 {
  margin: 80px !important;
}

.mt-80,
.my-80 {
  margin-top: 80px !important;
}

.mr-80,
.mx-80 {
  margin-right: 80px !important;
}

.mb-80,
.my-80 {
  margin-bottom: 80px !important;
}

.ml-80,
.mx-80 {
  margin-left: 80px !important;
}

.m-75 {
  margin: 75px !important;
}

.mt-75,
.my-75 {
  margin-top: 75px !important;
}

.mr-75,
.mx-75 {
  margin-right: 75px !important;
}

.mb-75,
.my-75 {
  margin-bottom: 75px !important;
}

.ml-75,
.mx-75 {
  margin-left: 75px !important;
}

.m-70 {
  margin: 70px !important;
}

.mt-70,
.my-70 {
  margin-top: 70px !important;
}

.mr-70,
.mx-70 {
  margin-right: 70px !important;
}

.mb-70,
.my-70 {
  margin-bottom: 70px !important;
}

.ml-70,
.mx-70 {
  margin-left: 70px !important;
}

.m-65 {
  margin: 65px !important;
}

.mt-65,
.my-65 {
  margin-top: 65px !important;
}

.mr-65,
.mx-65 {
  margin-right: 65px !important;
}

.mb-65,
.my-65 {
  margin-bottom: 65px !important;
}

.ml-65,
.mx-65 {
  margin-left: 65px !important;
}

.m-60 {
  margin: 60px !important;
}

.mt-60,
.my-60 {
  margin-top: 60px !important;
}

.mr-60,
.mx-60 {
  margin-right: 60px !important;
}

.mb-60,
.my-60 {
  margin-bottom: 60px !important;
}

.ml-60,
.mx-60 {
  margin-left: 60px !important;
}

.m-55 {
  margin: 55px !important;
}

.mt-55,
.my-55 {
  margin-top: 55px !important;
}

.mr-55,
.mx-55 {
  margin-right: 55px !important;
}

.mb-55,
.my-55 {
  margin-bottom: 55px !important;
}

.ml-55,
.mx-55 {
  margin-left: 55px !important;
}

.m-50 {
  margin: 50px !important;
}

.mt-50,
.my-50 {
  margin-top: 50px !important;
}

.mr-50,
.mx-50 {
  margin-right: 50px !important;
}

.mb-50,
.my-50 {
  margin-bottom: 50px !important;
}

.ml-50,
.mx-50 {
  margin-left: 50px !important;
}

.m-45 {
  margin: 45px !important;
}

.mt-45,
.my-45 {
  margin-top: 45px !important;
}

.mr-45,
.mx-45 {
  margin-right: 45px !important;
}

.mb-45,
.my-45 {
  margin-bottom: 45px !important;
}

.ml-45,
.mx-45 {
  margin-left: 45px !important;
}

.m-40 {
  margin: 40px !important;
}

.mt-40,
.my-40 {
  margin-top: 40px !important;
}

.mr-40,
.mx-40 {
  margin-right: 40px !important;
}

.mb-40,
.my-40 {
  margin-bottom: 40px !important;
}

.ml-40,
.mx-40 {
  margin-left: 40px !important;
}

.m-35 {
  margin: 35px !important;
}

.mt-35,
.my-35 {
  margin-top: 35px !important;
}

.mr-35,
.mx-35 {
  margin-right: 35px !important;
}

.mb-35,
.my-35 {
  margin-bottom: 35px !important;
}

.ml-35,
.mx-35 {
  margin-left: 35px !important;
}

.m-30 {
  margin: 30px !important;
}

.mt-30,
.my-30 {
  margin-top: 30px !important;
}

.mr-30,
.mx-30 {
  margin-right: 30px !important;
}

.mb-30,
.my-30 {
  margin-bottom: 30px !important;
}

.ml-30,
.mx-30 {
  margin-left: 30px !important;
}

.m-25 {
  margin: 25px !important;
}

.mt-25,
.my-25 {
  margin-top: 25px !important;
}

.mr-25,
.mx-25 {
  margin-right: 25px !important;
}

.mb-25,
.my-25 {
  margin-bottom: 25px !important;
}

.ml-25,
.mx-25 {
  margin-left: 25px !important;
}

.m-20 {
  margin: 20px !important;
}

.mt-20,
.my-20 {
  margin-top: 20px !important;
}

.mr-20,
.mx-20 {
  margin-right: 20px !important;
}

.mb-20,
.my-20 {
  margin-bottom: 20px !important;
}

.ml-20,
.mx-20 {
  margin-left: 20px !important;
}

.m-15 {
  margin: 15px !important;
}

.mt-15,
.my-15 {
  margin-top: 15px !important;
}

.mr-15,
.mx-15 {
  margin-right: 15px !important;
}

.mb-15,
.my-15 {
  margin-bottom: 15px !important;
}

.ml-15,
.mx-15 {
  margin-left: 15px !important;
}

.m-10 {
  margin: 10px !important;
}

.mt-10,
.my-10 {
  margin-top: 10px !important;
}

.mr-10,
.mx-10 {
  margin-right: 10px !important;
}

.mb-10,
.my-10 {
  margin-bottom: 10px !important;
}

.ml-10,
.mx-10 {
  margin-left: 10px !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: 5px !important;
}

.pt-5,
.py-5 {
  padding-top: 5px !important;
}

.pr-5,
.px-5 {
  padding-right: 5px !important;
}

.pb-5,
.py-5 {
  padding-bottom: 5px !important;
}

.pl-5,
.px-5 {
  padding-left: 5px !important;
}

.p-100 {
  padding: 100px !important;
}

.pt-100,
.py-100 {
  padding-top: 100px !important;
}

.pr-100,
.px-100 {
  padding-right: 100px !important;
}

.pb-100,
.py-100 {
  padding-bottom: 100px !important;
}

.pl-100,
.px-100 {
  padding-left: 100px !important;
}

.p-95 {
  padding: 95px !important;
}

.pt-95,
.py-95 {
  padding-top: 95px !important;
}

.pr-95,
.px-95 {
  padding-right: 95px !important;
}

.pb-95,
.py-95 {
  padding-bottom: 95px !important;
}

.pl-95,
.px-95 {
  padding-left: 95px !important;
}

.p-90 {
  padding: 90px !important;
}

.pt-90,
.py-90 {
  padding-top: 90px !important;
}

.pr-90,
.px-90 {
  padding-right: 90px !important;
}

.pb-90,
.py-90 {
  padding-bottom: 90px !important;
}

.pl-90,
.px-90 {
  padding-left: 90px !important;
}

.p-85 {
  padding: 85px !important;
}

.pt-85,
.py-85 {
  padding-top: 85px !important;
}

.pr-85,
.px-85 {
  padding-right: 85px !important;
}

.pb-85,
.py-85 {
  padding-bottom: 85px !important;
}

.pl-85,
.px-85 {
  padding-left: 85px !important;
}

.p-80 {
  padding: 80px !important;
}

.pt-80,
.py-80 {
  padding-top: 80px !important;
}

.pr-80,
.px-80 {
  padding-right: 80px !important;
}

.pb-80,
.py-80 {
  padding-bottom: 80px !important;
}

.pl-80,
.px-80 {
  padding-left: 80px !important;
}

.p-75 {
  padding: 75px !important;
}

.pt-75,
.py-75 {
  padding-top: 75px !important;
}

.pr-75,
.px-75 {
  padding-right: 75px !important;
}

.pb-75,
.py-75 {
  padding-bottom: 75px !important;
}

.pl-75,
.px-75 {
  padding-left: 75px !important;
}

.p-70 {
  padding: 70px !important;
}

.pt-70,
.py-70 {
  padding-top: 70px !important;
}

.pr-70,
.px-70 {
  padding-right: 70px !important;
}

.pb-70,
.py-70 {
  padding-bottom: 70px !important;
}

.pl-70,
.px-70 {
  padding-left: 70px !important;
}

.p-65 {
  padding: 65px !important;
}

.pt-65,
.py-65 {
  padding-top: 65px !important;
}

.pr-65,
.px-65 {
  padding-right: 65px !important;
}

.pb-65,
.py-65 {
  padding-bottom: 65px !important;
}

.pl-65,
.px-65 {
  padding-left: 65px !important;
}

.p-60 {
  padding: 60px !important;
}

.pt-60,
.py-60 {
  padding-top: 60px !important;
}

.pr-60,
.px-60 {
  padding-right: 60px !important;
}

.pb-60,
.py-60 {
  padding-bottom: 60px !important;
}

.pl-60,
.px-60 {
  padding-left: 60px !important;
}

.p-55 {
  padding: 55px !important;
}

.pt-55,
.py-55 {
  padding-top: 55px !important;
}

.pr-55,
.px-55 {
  padding-right: 55px !important;
}

.pb-55,
.py-55 {
  padding-bottom: 55px !important;
}

.pl-55,
.px-55 {
  padding-left: 55px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50,
.py-50 {
  padding-top: 50px !important;
}

.pr-50,
.px-50 {
  padding-right: 50px !important;
}

.pb-50,
.py-50 {
  padding-bottom: 50px !important;
}

.pl-50,
.px-50 {
  padding-left: 50px !important;
}

.p-45 {
  padding: 45px !important;
}

.pt-45,
.py-45 {
  padding-top: 45px !important;
}

.pr-45,
.px-45 {
  padding-right: 45px !important;
}

.pb-45,
.py-45 {
  padding-bottom: 45px !important;
}

.pl-45,
.px-45 {
  padding-left: 45px !important;
}

.p-40 {
  padding: 40px !important;
}

.pt-40,
.py-40 {
  padding-top: 40px !important;
}

.pr-40,
.px-40 {
  padding-right: 40px !important;
}

.pb-40,
.py-40 {
  padding-bottom: 40px !important;
}

.pl-40,
.px-40 {
  padding-left: 40px !important;
}

.p-35 {
  padding: 35px !important;
}

.pt-35,
.py-35 {
  padding-top: 35px !important;
}

.pr-35,
.px-35 {
  padding-right: 35px !important;
}

.pb-35,
.py-35 {
  padding-bottom: 35px !important;
}

.pl-35,
.px-35 {
  padding-left: 35px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30,
.py-30 {
  padding-top: 30px !important;
}

.pr-30,
.px-30 {
  padding-right: 30px !important;
}

.pb-30,
.py-30 {
  padding-bottom: 30px !important;
}

.pl-30,
.px-30 {
  padding-left: 30px !important;
}

.p-25 {
  padding: 25px !important;
}

.pt-25,
.py-25 {
  padding-top: 25px !important;
}

.pr-25,
.px-25 {
  padding-right: 25px !important;
}

.pb-25,
.py-25 {
  padding-bottom: 25px !important;
}

.pl-25,
.px-25 {
  padding-left: 25px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-20,
.py-20 {
  padding-top: 20px !important;
}

.pr-20,
.px-20 {
  padding-right: 20px !important;
}

.pb-20,
.py-20 {
  padding-bottom: 20px !important;
}

.pl-20,
.px-20 {
  padding-left: 20px !important;
}

.p-15 {
  padding: 15px !important;
}

.pt-15,
.py-15 {
  padding-top: 15px !important;
}

.pr-15,
.px-15 {
  padding-right: 15px !important;
}

.pb-15,
.py-15 {
  padding-bottom: 15px !important;
}

.pl-15,
.px-15 {
  padding-left: 15px !important;
}

.p-10 {
  padding: 10px !important;
}

.pt-10,
.py-10 {
  padding-top: 10px !important;
}

.pr-10,
.px-10 {
  padding-right: 10px !important;
}

.pb-10,
.py-10 {
  padding-bottom: 10px !important;
}

.pl-10,
.px-10 {
  padding-left: 10px !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: -5px !important;
}

.mt-n5,
.my-n5 {
  margin-top: -5px !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -5px !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -5px !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -5px !important;
}

.m-n100 {
  margin: -100px !important;
}

.mt-n100,
.my-n100 {
  margin-top: -100px !important;
}

.mr-n100,
.mx-n100 {
  margin-right: -100px !important;
}

.mb-n100,
.my-n100 {
  margin-bottom: -100px !important;
}

.ml-n100,
.mx-n100 {
  margin-left: -100px !important;
}

.m-n95 {
  margin: -95px !important;
}

.mt-n95,
.my-n95 {
  margin-top: -95px !important;
}

.mr-n95,
.mx-n95 {
  margin-right: -95px !important;
}

.mb-n95,
.my-n95 {
  margin-bottom: -95px !important;
}

.ml-n95,
.mx-n95 {
  margin-left: -95px !important;
}

.m-n90 {
  margin: -90px !important;
}

.mt-n90,
.my-n90 {
  margin-top: -90px !important;
}

.mr-n90,
.mx-n90 {
  margin-right: -90px !important;
}

.mb-n90,
.my-n90 {
  margin-bottom: -90px !important;
}

.ml-n90,
.mx-n90 {
  margin-left: -90px !important;
}

.m-n85 {
  margin: -85px !important;
}

.mt-n85,
.my-n85 {
  margin-top: -85px !important;
}

.mr-n85,
.mx-n85 {
  margin-right: -85px !important;
}

.mb-n85,
.my-n85 {
  margin-bottom: -85px !important;
}

.ml-n85,
.mx-n85 {
  margin-left: -85px !important;
}

.m-n80 {
  margin: -80px !important;
}

.mt-n80,
.my-n80 {
  margin-top: -80px !important;
}

.mr-n80,
.mx-n80 {
  margin-right: -80px !important;
}

.mb-n80,
.my-n80 {
  margin-bottom: -80px !important;
}

.ml-n80,
.mx-n80 {
  margin-left: -80px !important;
}

.m-n75 {
  margin: -75px !important;
}

.mt-n75,
.my-n75 {
  margin-top: -75px !important;
}

.mr-n75,
.mx-n75 {
  margin-right: -75px !important;
}

.mb-n75,
.my-n75 {
  margin-bottom: -75px !important;
}

.ml-n75,
.mx-n75 {
  margin-left: -75px !important;
}

.m-n70 {
  margin: -70px !important;
}

.mt-n70,
.my-n70 {
  margin-top: -70px !important;
}

.mr-n70,
.mx-n70 {
  margin-right: -70px !important;
}

.mb-n70,
.my-n70 {
  margin-bottom: -70px !important;
}

.ml-n70,
.mx-n70 {
  margin-left: -70px !important;
}

.m-n65 {
  margin: -65px !important;
}

.mt-n65,
.my-n65 {
  margin-top: -65px !important;
}

.mr-n65,
.mx-n65 {
  margin-right: -65px !important;
}

.mb-n65,
.my-n65 {
  margin-bottom: -65px !important;
}

.ml-n65,
.mx-n65 {
  margin-left: -65px !important;
}

.m-n60 {
  margin: -60px !important;
}

.mt-n60,
.my-n60 {
  margin-top: -60px !important;
}

.mr-n60,
.mx-n60 {
  margin-right: -60px !important;
}

.mb-n60,
.my-n60 {
  margin-bottom: -60px !important;
}

.ml-n60,
.mx-n60 {
  margin-left: -60px !important;
}

.m-n55 {
  margin: -55px !important;
}

.mt-n55,
.my-n55 {
  margin-top: -55px !important;
}

.mr-n55,
.mx-n55 {
  margin-right: -55px !important;
}

.mb-n55,
.my-n55 {
  margin-bottom: -55px !important;
}

.ml-n55,
.mx-n55 {
  margin-left: -55px !important;
}

.m-n50 {
  margin: -50px !important;
}

.mt-n50,
.my-n50 {
  margin-top: -50px !important;
}

.mr-n50,
.mx-n50 {
  margin-right: -50px !important;
}

.mb-n50,
.my-n50 {
  margin-bottom: -50px !important;
}

.ml-n50,
.mx-n50 {
  margin-left: -50px !important;
}

.m-n45 {
  margin: -45px !important;
}

.mt-n45,
.my-n45 {
  margin-top: -45px !important;
}

.mr-n45,
.mx-n45 {
  margin-right: -45px !important;
}

.mb-n45,
.my-n45 {
  margin-bottom: -45px !important;
}

.ml-n45,
.mx-n45 {
  margin-left: -45px !important;
}

.m-n40 {
  margin: -40px !important;
}

.mt-n40,
.my-n40 {
  margin-top: -40px !important;
}

.mr-n40,
.mx-n40 {
  margin-right: -40px !important;
}

.mb-n40,
.my-n40 {
  margin-bottom: -40px !important;
}

.ml-n40,
.mx-n40 {
  margin-left: -40px !important;
}

.m-n35 {
  margin: -35px !important;
}

.mt-n35,
.my-n35 {
  margin-top: -35px !important;
}

.mr-n35,
.mx-n35 {
  margin-right: -35px !important;
}

.mb-n35,
.my-n35 {
  margin-bottom: -35px !important;
}

.ml-n35,
.mx-n35 {
  margin-left: -35px !important;
}

.m-n30 {
  margin: -30px !important;
}

.mt-n30,
.my-n30 {
  margin-top: -30px !important;
}

.mr-n30,
.mx-n30 {
  margin-right: -30px !important;
}

.mb-n30,
.my-n30 {
  margin-bottom: -30px !important;
}

.ml-n30,
.mx-n30 {
  margin-left: -30px !important;
}

.m-n25 {
  margin: -25px !important;
}

.mt-n25,
.my-n25 {
  margin-top: -25px !important;
}

.mr-n25,
.mx-n25 {
  margin-right: -25px !important;
}

.mb-n25,
.my-n25 {
  margin-bottom: -25px !important;
}

.ml-n25,
.mx-n25 {
  margin-left: -25px !important;
}

.m-n20 {
  margin: -20px !important;
}

.mt-n20,
.my-n20 {
  margin-top: -20px !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -20px !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -20px !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -20px !important;
}

.m-n15 {
  margin: -15px !important;
}

.mt-n15,
.my-n15 {
  margin-top: -15px !important;
}

.mr-n15,
.mx-n15 {
  margin-right: -15px !important;
}

.mb-n15,
.my-n15 {
  margin-bottom: -15px !important;
}

.ml-n15,
.mx-n15 {
  margin-left: -15px !important;
}

.m-n10 {
  margin: -10px !important;
}

.mt-n10,
.my-n10 {
  margin-top: -10px !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -10px !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -10px !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -10px !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: 5px !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 5px !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 5px !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 5px !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 5px !important;
  }

  .m-sm-100 {
    margin: 100px !important;
  }

  .mt-sm-100,
.my-sm-100 {
    margin-top: 100px !important;
  }

  .mr-sm-100,
.mx-sm-100 {
    margin-right: 100px !important;
  }

  .mb-sm-100,
.my-sm-100 {
    margin-bottom: 100px !important;
  }

  .ml-sm-100,
.mx-sm-100 {
    margin-left: 100px !important;
  }

  .m-sm-95 {
    margin: 95px !important;
  }

  .mt-sm-95,
.my-sm-95 {
    margin-top: 95px !important;
  }

  .mr-sm-95,
.mx-sm-95 {
    margin-right: 95px !important;
  }

  .mb-sm-95,
.my-sm-95 {
    margin-bottom: 95px !important;
  }

  .ml-sm-95,
.mx-sm-95 {
    margin-left: 95px !important;
  }

  .m-sm-90 {
    margin: 90px !important;
  }

  .mt-sm-90,
.my-sm-90 {
    margin-top: 90px !important;
  }

  .mr-sm-90,
.mx-sm-90 {
    margin-right: 90px !important;
  }

  .mb-sm-90,
.my-sm-90 {
    margin-bottom: 90px !important;
  }

  .ml-sm-90,
.mx-sm-90 {
    margin-left: 90px !important;
  }

  .m-sm-85 {
    margin: 85px !important;
  }

  .mt-sm-85,
.my-sm-85 {
    margin-top: 85px !important;
  }

  .mr-sm-85,
.mx-sm-85 {
    margin-right: 85px !important;
  }

  .mb-sm-85,
.my-sm-85 {
    margin-bottom: 85px !important;
  }

  .ml-sm-85,
.mx-sm-85 {
    margin-left: 85px !important;
  }

  .m-sm-80 {
    margin: 80px !important;
  }

  .mt-sm-80,
.my-sm-80 {
    margin-top: 80px !important;
  }

  .mr-sm-80,
.mx-sm-80 {
    margin-right: 80px !important;
  }

  .mb-sm-80,
.my-sm-80 {
    margin-bottom: 80px !important;
  }

  .ml-sm-80,
.mx-sm-80 {
    margin-left: 80px !important;
  }

  .m-sm-75 {
    margin: 75px !important;
  }

  .mt-sm-75,
.my-sm-75 {
    margin-top: 75px !important;
  }

  .mr-sm-75,
.mx-sm-75 {
    margin-right: 75px !important;
  }

  .mb-sm-75,
.my-sm-75 {
    margin-bottom: 75px !important;
  }

  .ml-sm-75,
.mx-sm-75 {
    margin-left: 75px !important;
  }

  .m-sm-70 {
    margin: 70px !important;
  }

  .mt-sm-70,
.my-sm-70 {
    margin-top: 70px !important;
  }

  .mr-sm-70,
.mx-sm-70 {
    margin-right: 70px !important;
  }

  .mb-sm-70,
.my-sm-70 {
    margin-bottom: 70px !important;
  }

  .ml-sm-70,
.mx-sm-70 {
    margin-left: 70px !important;
  }

  .m-sm-65 {
    margin: 65px !important;
  }

  .mt-sm-65,
.my-sm-65 {
    margin-top: 65px !important;
  }

  .mr-sm-65,
.mx-sm-65 {
    margin-right: 65px !important;
  }

  .mb-sm-65,
.my-sm-65 {
    margin-bottom: 65px !important;
  }

  .ml-sm-65,
.mx-sm-65 {
    margin-left: 65px !important;
  }

  .m-sm-60 {
    margin: 60px !important;
  }

  .mt-sm-60,
.my-sm-60 {
    margin-top: 60px !important;
  }

  .mr-sm-60,
.mx-sm-60 {
    margin-right: 60px !important;
  }

  .mb-sm-60,
.my-sm-60 {
    margin-bottom: 60px !important;
  }

  .ml-sm-60,
.mx-sm-60 {
    margin-left: 60px !important;
  }

  .m-sm-55 {
    margin: 55px !important;
  }

  .mt-sm-55,
.my-sm-55 {
    margin-top: 55px !important;
  }

  .mr-sm-55,
.mx-sm-55 {
    margin-right: 55px !important;
  }

  .mb-sm-55,
.my-sm-55 {
    margin-bottom: 55px !important;
  }

  .ml-sm-55,
.mx-sm-55 {
    margin-left: 55px !important;
  }

  .m-sm-50 {
    margin: 50px !important;
  }

  .mt-sm-50,
.my-sm-50 {
    margin-top: 50px !important;
  }

  .mr-sm-50,
.mx-sm-50 {
    margin-right: 50px !important;
  }

  .mb-sm-50,
.my-sm-50 {
    margin-bottom: 50px !important;
  }

  .ml-sm-50,
.mx-sm-50 {
    margin-left: 50px !important;
  }

  .m-sm-45 {
    margin: 45px !important;
  }

  .mt-sm-45,
.my-sm-45 {
    margin-top: 45px !important;
  }

  .mr-sm-45,
.mx-sm-45 {
    margin-right: 45px !important;
  }

  .mb-sm-45,
.my-sm-45 {
    margin-bottom: 45px !important;
  }

  .ml-sm-45,
.mx-sm-45 {
    margin-left: 45px !important;
  }

  .m-sm-40 {
    margin: 40px !important;
  }

  .mt-sm-40,
.my-sm-40 {
    margin-top: 40px !important;
  }

  .mr-sm-40,
.mx-sm-40 {
    margin-right: 40px !important;
  }

  .mb-sm-40,
.my-sm-40 {
    margin-bottom: 40px !important;
  }

  .ml-sm-40,
.mx-sm-40 {
    margin-left: 40px !important;
  }

  .m-sm-35 {
    margin: 35px !important;
  }

  .mt-sm-35,
.my-sm-35 {
    margin-top: 35px !important;
  }

  .mr-sm-35,
.mx-sm-35 {
    margin-right: 35px !important;
  }

  .mb-sm-35,
.my-sm-35 {
    margin-bottom: 35px !important;
  }

  .ml-sm-35,
.mx-sm-35 {
    margin-left: 35px !important;
  }

  .m-sm-30 {
    margin: 30px !important;
  }

  .mt-sm-30,
.my-sm-30 {
    margin-top: 30px !important;
  }

  .mr-sm-30,
.mx-sm-30 {
    margin-right: 30px !important;
  }

  .mb-sm-30,
.my-sm-30 {
    margin-bottom: 30px !important;
  }

  .ml-sm-30,
.mx-sm-30 {
    margin-left: 30px !important;
  }

  .m-sm-25 {
    margin: 25px !important;
  }

  .mt-sm-25,
.my-sm-25 {
    margin-top: 25px !important;
  }

  .mr-sm-25,
.mx-sm-25 {
    margin-right: 25px !important;
  }

  .mb-sm-25,
.my-sm-25 {
    margin-bottom: 25px !important;
  }

  .ml-sm-25,
.mx-sm-25 {
    margin-left: 25px !important;
  }

  .m-sm-20 {
    margin: 20px !important;
  }

  .mt-sm-20,
.my-sm-20 {
    margin-top: 20px !important;
  }

  .mr-sm-20,
.mx-sm-20 {
    margin-right: 20px !important;
  }

  .mb-sm-20,
.my-sm-20 {
    margin-bottom: 20px !important;
  }

  .ml-sm-20,
.mx-sm-20 {
    margin-left: 20px !important;
  }

  .m-sm-15 {
    margin: 15px !important;
  }

  .mt-sm-15,
.my-sm-15 {
    margin-top: 15px !important;
  }

  .mr-sm-15,
.mx-sm-15 {
    margin-right: 15px !important;
  }

  .mb-sm-15,
.my-sm-15 {
    margin-bottom: 15px !important;
  }

  .ml-sm-15,
.mx-sm-15 {
    margin-left: 15px !important;
  }

  .m-sm-10 {
    margin: 10px !important;
  }

  .mt-sm-10,
.my-sm-10 {
    margin-top: 10px !important;
  }

  .mr-sm-10,
.mx-sm-10 {
    margin-right: 10px !important;
  }

  .mb-sm-10,
.my-sm-10 {
    margin-bottom: 10px !important;
  }

  .ml-sm-10,
.mx-sm-10 {
    margin-left: 10px !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: 5px !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 5px !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 5px !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 5px !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 5px !important;
  }

  .p-sm-100 {
    padding: 100px !important;
  }

  .pt-sm-100,
.py-sm-100 {
    padding-top: 100px !important;
  }

  .pr-sm-100,
.px-sm-100 {
    padding-right: 100px !important;
  }

  .pb-sm-100,
.py-sm-100 {
    padding-bottom: 100px !important;
  }

  .pl-sm-100,
.px-sm-100 {
    padding-left: 100px !important;
  }

  .p-sm-95 {
    padding: 95px !important;
  }

  .pt-sm-95,
.py-sm-95 {
    padding-top: 95px !important;
  }

  .pr-sm-95,
.px-sm-95 {
    padding-right: 95px !important;
  }

  .pb-sm-95,
.py-sm-95 {
    padding-bottom: 95px !important;
  }

  .pl-sm-95,
.px-sm-95 {
    padding-left: 95px !important;
  }

  .p-sm-90 {
    padding: 90px !important;
  }

  .pt-sm-90,
.py-sm-90 {
    padding-top: 90px !important;
  }

  .pr-sm-90,
.px-sm-90 {
    padding-right: 90px !important;
  }

  .pb-sm-90,
.py-sm-90 {
    padding-bottom: 90px !important;
  }

  .pl-sm-90,
.px-sm-90 {
    padding-left: 90px !important;
  }

  .p-sm-85 {
    padding: 85px !important;
  }

  .pt-sm-85,
.py-sm-85 {
    padding-top: 85px !important;
  }

  .pr-sm-85,
.px-sm-85 {
    padding-right: 85px !important;
  }

  .pb-sm-85,
.py-sm-85 {
    padding-bottom: 85px !important;
  }

  .pl-sm-85,
.px-sm-85 {
    padding-left: 85px !important;
  }

  .p-sm-80 {
    padding: 80px !important;
  }

  .pt-sm-80,
.py-sm-80 {
    padding-top: 80px !important;
  }

  .pr-sm-80,
.px-sm-80 {
    padding-right: 80px !important;
  }

  .pb-sm-80,
.py-sm-80 {
    padding-bottom: 80px !important;
  }

  .pl-sm-80,
.px-sm-80 {
    padding-left: 80px !important;
  }

  .p-sm-75 {
    padding: 75px !important;
  }

  .pt-sm-75,
.py-sm-75 {
    padding-top: 75px !important;
  }

  .pr-sm-75,
.px-sm-75 {
    padding-right: 75px !important;
  }

  .pb-sm-75,
.py-sm-75 {
    padding-bottom: 75px !important;
  }

  .pl-sm-75,
.px-sm-75 {
    padding-left: 75px !important;
  }

  .p-sm-70 {
    padding: 70px !important;
  }

  .pt-sm-70,
.py-sm-70 {
    padding-top: 70px !important;
  }

  .pr-sm-70,
.px-sm-70 {
    padding-right: 70px !important;
  }

  .pb-sm-70,
.py-sm-70 {
    padding-bottom: 70px !important;
  }

  .pl-sm-70,
.px-sm-70 {
    padding-left: 70px !important;
  }

  .p-sm-65 {
    padding: 65px !important;
  }

  .pt-sm-65,
.py-sm-65 {
    padding-top: 65px !important;
  }

  .pr-sm-65,
.px-sm-65 {
    padding-right: 65px !important;
  }

  .pb-sm-65,
.py-sm-65 {
    padding-bottom: 65px !important;
  }

  .pl-sm-65,
.px-sm-65 {
    padding-left: 65px !important;
  }

  .p-sm-60 {
    padding: 60px !important;
  }

  .pt-sm-60,
.py-sm-60 {
    padding-top: 60px !important;
  }

  .pr-sm-60,
.px-sm-60 {
    padding-right: 60px !important;
  }

  .pb-sm-60,
.py-sm-60 {
    padding-bottom: 60px !important;
  }

  .pl-sm-60,
.px-sm-60 {
    padding-left: 60px !important;
  }

  .p-sm-55 {
    padding: 55px !important;
  }

  .pt-sm-55,
.py-sm-55 {
    padding-top: 55px !important;
  }

  .pr-sm-55,
.px-sm-55 {
    padding-right: 55px !important;
  }

  .pb-sm-55,
.py-sm-55 {
    padding-bottom: 55px !important;
  }

  .pl-sm-55,
.px-sm-55 {
    padding-left: 55px !important;
  }

  .p-sm-50 {
    padding: 50px !important;
  }

  .pt-sm-50,
.py-sm-50 {
    padding-top: 50px !important;
  }

  .pr-sm-50,
.px-sm-50 {
    padding-right: 50px !important;
  }

  .pb-sm-50,
.py-sm-50 {
    padding-bottom: 50px !important;
  }

  .pl-sm-50,
.px-sm-50 {
    padding-left: 50px !important;
  }

  .p-sm-45 {
    padding: 45px !important;
  }

  .pt-sm-45,
.py-sm-45 {
    padding-top: 45px !important;
  }

  .pr-sm-45,
.px-sm-45 {
    padding-right: 45px !important;
  }

  .pb-sm-45,
.py-sm-45 {
    padding-bottom: 45px !important;
  }

  .pl-sm-45,
.px-sm-45 {
    padding-left: 45px !important;
  }

  .p-sm-40 {
    padding: 40px !important;
  }

  .pt-sm-40,
.py-sm-40 {
    padding-top: 40px !important;
  }

  .pr-sm-40,
.px-sm-40 {
    padding-right: 40px !important;
  }

  .pb-sm-40,
.py-sm-40 {
    padding-bottom: 40px !important;
  }

  .pl-sm-40,
.px-sm-40 {
    padding-left: 40px !important;
  }

  .p-sm-35 {
    padding: 35px !important;
  }

  .pt-sm-35,
.py-sm-35 {
    padding-top: 35px !important;
  }

  .pr-sm-35,
.px-sm-35 {
    padding-right: 35px !important;
  }

  .pb-sm-35,
.py-sm-35 {
    padding-bottom: 35px !important;
  }

  .pl-sm-35,
.px-sm-35 {
    padding-left: 35px !important;
  }

  .p-sm-30 {
    padding: 30px !important;
  }

  .pt-sm-30,
.py-sm-30 {
    padding-top: 30px !important;
  }

  .pr-sm-30,
.px-sm-30 {
    padding-right: 30px !important;
  }

  .pb-sm-30,
.py-sm-30 {
    padding-bottom: 30px !important;
  }

  .pl-sm-30,
.px-sm-30 {
    padding-left: 30px !important;
  }

  .p-sm-25 {
    padding: 25px !important;
  }

  .pt-sm-25,
.py-sm-25 {
    padding-top: 25px !important;
  }

  .pr-sm-25,
.px-sm-25 {
    padding-right: 25px !important;
  }

  .pb-sm-25,
.py-sm-25 {
    padding-bottom: 25px !important;
  }

  .pl-sm-25,
.px-sm-25 {
    padding-left: 25px !important;
  }

  .p-sm-20 {
    padding: 20px !important;
  }

  .pt-sm-20,
.py-sm-20 {
    padding-top: 20px !important;
  }

  .pr-sm-20,
.px-sm-20 {
    padding-right: 20px !important;
  }

  .pb-sm-20,
.py-sm-20 {
    padding-bottom: 20px !important;
  }

  .pl-sm-20,
.px-sm-20 {
    padding-left: 20px !important;
  }

  .p-sm-15 {
    padding: 15px !important;
  }

  .pt-sm-15,
.py-sm-15 {
    padding-top: 15px !important;
  }

  .pr-sm-15,
.px-sm-15 {
    padding-right: 15px !important;
  }

  .pb-sm-15,
.py-sm-15 {
    padding-bottom: 15px !important;
  }

  .pl-sm-15,
.px-sm-15 {
    padding-left: 15px !important;
  }

  .p-sm-10 {
    padding: 10px !important;
  }

  .pt-sm-10,
.py-sm-10 {
    padding-top: 10px !important;
  }

  .pr-sm-10,
.px-sm-10 {
    padding-right: 10px !important;
  }

  .pb-sm-10,
.py-sm-10 {
    padding-bottom: 10px !important;
  }

  .pl-sm-10,
.px-sm-10 {
    padding-left: 10px !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: -5px !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -5px !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -5px !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -5px !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -5px !important;
  }

  .m-sm-n100 {
    margin: -100px !important;
  }

  .mt-sm-n100,
.my-sm-n100 {
    margin-top: -100px !important;
  }

  .mr-sm-n100,
.mx-sm-n100 {
    margin-right: -100px !important;
  }

  .mb-sm-n100,
.my-sm-n100 {
    margin-bottom: -100px !important;
  }

  .ml-sm-n100,
.mx-sm-n100 {
    margin-left: -100px !important;
  }

  .m-sm-n95 {
    margin: -95px !important;
  }

  .mt-sm-n95,
.my-sm-n95 {
    margin-top: -95px !important;
  }

  .mr-sm-n95,
.mx-sm-n95 {
    margin-right: -95px !important;
  }

  .mb-sm-n95,
.my-sm-n95 {
    margin-bottom: -95px !important;
  }

  .ml-sm-n95,
.mx-sm-n95 {
    margin-left: -95px !important;
  }

  .m-sm-n90 {
    margin: -90px !important;
  }

  .mt-sm-n90,
.my-sm-n90 {
    margin-top: -90px !important;
  }

  .mr-sm-n90,
.mx-sm-n90 {
    margin-right: -90px !important;
  }

  .mb-sm-n90,
.my-sm-n90 {
    margin-bottom: -90px !important;
  }

  .ml-sm-n90,
.mx-sm-n90 {
    margin-left: -90px !important;
  }

  .m-sm-n85 {
    margin: -85px !important;
  }

  .mt-sm-n85,
.my-sm-n85 {
    margin-top: -85px !important;
  }

  .mr-sm-n85,
.mx-sm-n85 {
    margin-right: -85px !important;
  }

  .mb-sm-n85,
.my-sm-n85 {
    margin-bottom: -85px !important;
  }

  .ml-sm-n85,
.mx-sm-n85 {
    margin-left: -85px !important;
  }

  .m-sm-n80 {
    margin: -80px !important;
  }

  .mt-sm-n80,
.my-sm-n80 {
    margin-top: -80px !important;
  }

  .mr-sm-n80,
.mx-sm-n80 {
    margin-right: -80px !important;
  }

  .mb-sm-n80,
.my-sm-n80 {
    margin-bottom: -80px !important;
  }

  .ml-sm-n80,
.mx-sm-n80 {
    margin-left: -80px !important;
  }

  .m-sm-n75 {
    margin: -75px !important;
  }

  .mt-sm-n75,
.my-sm-n75 {
    margin-top: -75px !important;
  }

  .mr-sm-n75,
.mx-sm-n75 {
    margin-right: -75px !important;
  }

  .mb-sm-n75,
.my-sm-n75 {
    margin-bottom: -75px !important;
  }

  .ml-sm-n75,
.mx-sm-n75 {
    margin-left: -75px !important;
  }

  .m-sm-n70 {
    margin: -70px !important;
  }

  .mt-sm-n70,
.my-sm-n70 {
    margin-top: -70px !important;
  }

  .mr-sm-n70,
.mx-sm-n70 {
    margin-right: -70px !important;
  }

  .mb-sm-n70,
.my-sm-n70 {
    margin-bottom: -70px !important;
  }

  .ml-sm-n70,
.mx-sm-n70 {
    margin-left: -70px !important;
  }

  .m-sm-n65 {
    margin: -65px !important;
  }

  .mt-sm-n65,
.my-sm-n65 {
    margin-top: -65px !important;
  }

  .mr-sm-n65,
.mx-sm-n65 {
    margin-right: -65px !important;
  }

  .mb-sm-n65,
.my-sm-n65 {
    margin-bottom: -65px !important;
  }

  .ml-sm-n65,
.mx-sm-n65 {
    margin-left: -65px !important;
  }

  .m-sm-n60 {
    margin: -60px !important;
  }

  .mt-sm-n60,
.my-sm-n60 {
    margin-top: -60px !important;
  }

  .mr-sm-n60,
.mx-sm-n60 {
    margin-right: -60px !important;
  }

  .mb-sm-n60,
.my-sm-n60 {
    margin-bottom: -60px !important;
  }

  .ml-sm-n60,
.mx-sm-n60 {
    margin-left: -60px !important;
  }

  .m-sm-n55 {
    margin: -55px !important;
  }

  .mt-sm-n55,
.my-sm-n55 {
    margin-top: -55px !important;
  }

  .mr-sm-n55,
.mx-sm-n55 {
    margin-right: -55px !important;
  }

  .mb-sm-n55,
.my-sm-n55 {
    margin-bottom: -55px !important;
  }

  .ml-sm-n55,
.mx-sm-n55 {
    margin-left: -55px !important;
  }

  .m-sm-n50 {
    margin: -50px !important;
  }

  .mt-sm-n50,
.my-sm-n50 {
    margin-top: -50px !important;
  }

  .mr-sm-n50,
.mx-sm-n50 {
    margin-right: -50px !important;
  }

  .mb-sm-n50,
.my-sm-n50 {
    margin-bottom: -50px !important;
  }

  .ml-sm-n50,
.mx-sm-n50 {
    margin-left: -50px !important;
  }

  .m-sm-n45 {
    margin: -45px !important;
  }

  .mt-sm-n45,
.my-sm-n45 {
    margin-top: -45px !important;
  }

  .mr-sm-n45,
.mx-sm-n45 {
    margin-right: -45px !important;
  }

  .mb-sm-n45,
.my-sm-n45 {
    margin-bottom: -45px !important;
  }

  .ml-sm-n45,
.mx-sm-n45 {
    margin-left: -45px !important;
  }

  .m-sm-n40 {
    margin: -40px !important;
  }

  .mt-sm-n40,
.my-sm-n40 {
    margin-top: -40px !important;
  }

  .mr-sm-n40,
.mx-sm-n40 {
    margin-right: -40px !important;
  }

  .mb-sm-n40,
.my-sm-n40 {
    margin-bottom: -40px !important;
  }

  .ml-sm-n40,
.mx-sm-n40 {
    margin-left: -40px !important;
  }

  .m-sm-n35 {
    margin: -35px !important;
  }

  .mt-sm-n35,
.my-sm-n35 {
    margin-top: -35px !important;
  }

  .mr-sm-n35,
.mx-sm-n35 {
    margin-right: -35px !important;
  }

  .mb-sm-n35,
.my-sm-n35 {
    margin-bottom: -35px !important;
  }

  .ml-sm-n35,
.mx-sm-n35 {
    margin-left: -35px !important;
  }

  .m-sm-n30 {
    margin: -30px !important;
  }

  .mt-sm-n30,
.my-sm-n30 {
    margin-top: -30px !important;
  }

  .mr-sm-n30,
.mx-sm-n30 {
    margin-right: -30px !important;
  }

  .mb-sm-n30,
.my-sm-n30 {
    margin-bottom: -30px !important;
  }

  .ml-sm-n30,
.mx-sm-n30 {
    margin-left: -30px !important;
  }

  .m-sm-n25 {
    margin: -25px !important;
  }

  .mt-sm-n25,
.my-sm-n25 {
    margin-top: -25px !important;
  }

  .mr-sm-n25,
.mx-sm-n25 {
    margin-right: -25px !important;
  }

  .mb-sm-n25,
.my-sm-n25 {
    margin-bottom: -25px !important;
  }

  .ml-sm-n25,
.mx-sm-n25 {
    margin-left: -25px !important;
  }

  .m-sm-n20 {
    margin: -20px !important;
  }

  .mt-sm-n20,
.my-sm-n20 {
    margin-top: -20px !important;
  }

  .mr-sm-n20,
.mx-sm-n20 {
    margin-right: -20px !important;
  }

  .mb-sm-n20,
.my-sm-n20 {
    margin-bottom: -20px !important;
  }

  .ml-sm-n20,
.mx-sm-n20 {
    margin-left: -20px !important;
  }

  .m-sm-n15 {
    margin: -15px !important;
  }

  .mt-sm-n15,
.my-sm-n15 {
    margin-top: -15px !important;
  }

  .mr-sm-n15,
.mx-sm-n15 {
    margin-right: -15px !important;
  }

  .mb-sm-n15,
.my-sm-n15 {
    margin-bottom: -15px !important;
  }

  .ml-sm-n15,
.mx-sm-n15 {
    margin-left: -15px !important;
  }

  .m-sm-n10 {
    margin: -10px !important;
  }

  .mt-sm-n10,
.my-sm-n10 {
    margin-top: -10px !important;
  }

  .mr-sm-n10,
.mx-sm-n10 {
    margin-right: -10px !important;
  }

  .mb-sm-n10,
.my-sm-n10 {
    margin-bottom: -10px !important;
  }

  .ml-sm-n10,
.mx-sm-n10 {
    margin-left: -10px !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: 5px !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 5px !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 5px !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 5px !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 5px !important;
  }

  .m-md-100 {
    margin: 100px !important;
  }

  .mt-md-100,
.my-md-100 {
    margin-top: 100px !important;
  }

  .mr-md-100,
.mx-md-100 {
    margin-right: 100px !important;
  }

  .mb-md-100,
.my-md-100 {
    margin-bottom: 100px !important;
  }

  .ml-md-100,
.mx-md-100 {
    margin-left: 100px !important;
  }

  .m-md-95 {
    margin: 95px !important;
  }

  .mt-md-95,
.my-md-95 {
    margin-top: 95px !important;
  }

  .mr-md-95,
.mx-md-95 {
    margin-right: 95px !important;
  }

  .mb-md-95,
.my-md-95 {
    margin-bottom: 95px !important;
  }

  .ml-md-95,
.mx-md-95 {
    margin-left: 95px !important;
  }

  .m-md-90 {
    margin: 90px !important;
  }

  .mt-md-90,
.my-md-90 {
    margin-top: 90px !important;
  }

  .mr-md-90,
.mx-md-90 {
    margin-right: 90px !important;
  }

  .mb-md-90,
.my-md-90 {
    margin-bottom: 90px !important;
  }

  .ml-md-90,
.mx-md-90 {
    margin-left: 90px !important;
  }

  .m-md-85 {
    margin: 85px !important;
  }

  .mt-md-85,
.my-md-85 {
    margin-top: 85px !important;
  }

  .mr-md-85,
.mx-md-85 {
    margin-right: 85px !important;
  }

  .mb-md-85,
.my-md-85 {
    margin-bottom: 85px !important;
  }

  .ml-md-85,
.mx-md-85 {
    margin-left: 85px !important;
  }

  .m-md-80 {
    margin: 80px !important;
  }

  .mt-md-80,
.my-md-80 {
    margin-top: 80px !important;
  }

  .mr-md-80,
.mx-md-80 {
    margin-right: 80px !important;
  }

  .mb-md-80,
.my-md-80 {
    margin-bottom: 80px !important;
  }

  .ml-md-80,
.mx-md-80 {
    margin-left: 80px !important;
  }

  .m-md-75 {
    margin: 75px !important;
  }

  .mt-md-75,
.my-md-75 {
    margin-top: 75px !important;
  }

  .mr-md-75,
.mx-md-75 {
    margin-right: 75px !important;
  }

  .mb-md-75,
.my-md-75 {
    margin-bottom: 75px !important;
  }

  .ml-md-75,
.mx-md-75 {
    margin-left: 75px !important;
  }

  .m-md-70 {
    margin: 70px !important;
  }

  .mt-md-70,
.my-md-70 {
    margin-top: 70px !important;
  }

  .mr-md-70,
.mx-md-70 {
    margin-right: 70px !important;
  }

  .mb-md-70,
.my-md-70 {
    margin-bottom: 70px !important;
  }

  .ml-md-70,
.mx-md-70 {
    margin-left: 70px !important;
  }

  .m-md-65 {
    margin: 65px !important;
  }

  .mt-md-65,
.my-md-65 {
    margin-top: 65px !important;
  }

  .mr-md-65,
.mx-md-65 {
    margin-right: 65px !important;
  }

  .mb-md-65,
.my-md-65 {
    margin-bottom: 65px !important;
  }

  .ml-md-65,
.mx-md-65 {
    margin-left: 65px !important;
  }

  .m-md-60 {
    margin: 60px !important;
  }

  .mt-md-60,
.my-md-60 {
    margin-top: 60px !important;
  }

  .mr-md-60,
.mx-md-60 {
    margin-right: 60px !important;
  }

  .mb-md-60,
.my-md-60 {
    margin-bottom: 60px !important;
  }

  .ml-md-60,
.mx-md-60 {
    margin-left: 60px !important;
  }

  .m-md-55 {
    margin: 55px !important;
  }

  .mt-md-55,
.my-md-55 {
    margin-top: 55px !important;
  }

  .mr-md-55,
.mx-md-55 {
    margin-right: 55px !important;
  }

  .mb-md-55,
.my-md-55 {
    margin-bottom: 55px !important;
  }

  .ml-md-55,
.mx-md-55 {
    margin-left: 55px !important;
  }

  .m-md-50 {
    margin: 50px !important;
  }

  .mt-md-50,
.my-md-50 {
    margin-top: 50px !important;
  }

  .mr-md-50,
.mx-md-50 {
    margin-right: 50px !important;
  }

  .mb-md-50,
.my-md-50 {
    margin-bottom: 50px !important;
  }

  .ml-md-50,
.mx-md-50 {
    margin-left: 50px !important;
  }

  .m-md-45 {
    margin: 45px !important;
  }

  .mt-md-45,
.my-md-45 {
    margin-top: 45px !important;
  }

  .mr-md-45,
.mx-md-45 {
    margin-right: 45px !important;
  }

  .mb-md-45,
.my-md-45 {
    margin-bottom: 45px !important;
  }

  .ml-md-45,
.mx-md-45 {
    margin-left: 45px !important;
  }

  .m-md-40 {
    margin: 40px !important;
  }

  .mt-md-40,
.my-md-40 {
    margin-top: 40px !important;
  }

  .mr-md-40,
.mx-md-40 {
    margin-right: 40px !important;
  }

  .mb-md-40,
.my-md-40 {
    margin-bottom: 40px !important;
  }

  .ml-md-40,
.mx-md-40 {
    margin-left: 40px !important;
  }

  .m-md-35 {
    margin: 35px !important;
  }

  .mt-md-35,
.my-md-35 {
    margin-top: 35px !important;
  }

  .mr-md-35,
.mx-md-35 {
    margin-right: 35px !important;
  }

  .mb-md-35,
.my-md-35 {
    margin-bottom: 35px !important;
  }

  .ml-md-35,
.mx-md-35 {
    margin-left: 35px !important;
  }

  .m-md-30 {
    margin: 30px !important;
  }

  .mt-md-30,
.my-md-30 {
    margin-top: 30px !important;
  }

  .mr-md-30,
.mx-md-30 {
    margin-right: 30px !important;
  }

  .mb-md-30,
.my-md-30 {
    margin-bottom: 30px !important;
  }

  .ml-md-30,
.mx-md-30 {
    margin-left: 30px !important;
  }

  .m-md-25 {
    margin: 25px !important;
  }

  .mt-md-25,
.my-md-25 {
    margin-top: 25px !important;
  }

  .mr-md-25,
.mx-md-25 {
    margin-right: 25px !important;
  }

  .mb-md-25,
.my-md-25 {
    margin-bottom: 25px !important;
  }

  .ml-md-25,
.mx-md-25 {
    margin-left: 25px !important;
  }

  .m-md-20 {
    margin: 20px !important;
  }

  .mt-md-20,
.my-md-20 {
    margin-top: 20px !important;
  }

  .mr-md-20,
.mx-md-20 {
    margin-right: 20px !important;
  }

  .mb-md-20,
.my-md-20 {
    margin-bottom: 20px !important;
  }

  .ml-md-20,
.mx-md-20 {
    margin-left: 20px !important;
  }

  .m-md-15 {
    margin: 15px !important;
  }

  .mt-md-15,
.my-md-15 {
    margin-top: 15px !important;
  }

  .mr-md-15,
.mx-md-15 {
    margin-right: 15px !important;
  }

  .mb-md-15,
.my-md-15 {
    margin-bottom: 15px !important;
  }

  .ml-md-15,
.mx-md-15 {
    margin-left: 15px !important;
  }

  .m-md-10 {
    margin: 10px !important;
  }

  .mt-md-10,
.my-md-10 {
    margin-top: 10px !important;
  }

  .mr-md-10,
.mx-md-10 {
    margin-right: 10px !important;
  }

  .mb-md-10,
.my-md-10 {
    margin-bottom: 10px !important;
  }

  .ml-md-10,
.mx-md-10 {
    margin-left: 10px !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: 5px !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 5px !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 5px !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 5px !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 5px !important;
  }

  .p-md-100 {
    padding: 100px !important;
  }

  .pt-md-100,
.py-md-100 {
    padding-top: 100px !important;
  }

  .pr-md-100,
.px-md-100 {
    padding-right: 100px !important;
  }

  .pb-md-100,
.py-md-100 {
    padding-bottom: 100px !important;
  }

  .pl-md-100,
.px-md-100 {
    padding-left: 100px !important;
  }

  .p-md-95 {
    padding: 95px !important;
  }

  .pt-md-95,
.py-md-95 {
    padding-top: 95px !important;
  }

  .pr-md-95,
.px-md-95 {
    padding-right: 95px !important;
  }

  .pb-md-95,
.py-md-95 {
    padding-bottom: 95px !important;
  }

  .pl-md-95,
.px-md-95 {
    padding-left: 95px !important;
  }

  .p-md-90 {
    padding: 90px !important;
  }

  .pt-md-90,
.py-md-90 {
    padding-top: 90px !important;
  }

  .pr-md-90,
.px-md-90 {
    padding-right: 90px !important;
  }

  .pb-md-90,
.py-md-90 {
    padding-bottom: 90px !important;
  }

  .pl-md-90,
.px-md-90 {
    padding-left: 90px !important;
  }

  .p-md-85 {
    padding: 85px !important;
  }

  .pt-md-85,
.py-md-85 {
    padding-top: 85px !important;
  }

  .pr-md-85,
.px-md-85 {
    padding-right: 85px !important;
  }

  .pb-md-85,
.py-md-85 {
    padding-bottom: 85px !important;
  }

  .pl-md-85,
.px-md-85 {
    padding-left: 85px !important;
  }

  .p-md-80 {
    padding: 80px !important;
  }

  .pt-md-80,
.py-md-80 {
    padding-top: 80px !important;
  }

  .pr-md-80,
.px-md-80 {
    padding-right: 80px !important;
  }

  .pb-md-80,
.py-md-80 {
    padding-bottom: 80px !important;
  }

  .pl-md-80,
.px-md-80 {
    padding-left: 80px !important;
  }

  .p-md-75 {
    padding: 75px !important;
  }

  .pt-md-75,
.py-md-75 {
    padding-top: 75px !important;
  }

  .pr-md-75,
.px-md-75 {
    padding-right: 75px !important;
  }

  .pb-md-75,
.py-md-75 {
    padding-bottom: 75px !important;
  }

  .pl-md-75,
.px-md-75 {
    padding-left: 75px !important;
  }

  .p-md-70 {
    padding: 70px !important;
  }

  .pt-md-70,
.py-md-70 {
    padding-top: 70px !important;
  }

  .pr-md-70,
.px-md-70 {
    padding-right: 70px !important;
  }

  .pb-md-70,
.py-md-70 {
    padding-bottom: 70px !important;
  }

  .pl-md-70,
.px-md-70 {
    padding-left: 70px !important;
  }

  .p-md-65 {
    padding: 65px !important;
  }

  .pt-md-65,
.py-md-65 {
    padding-top: 65px !important;
  }

  .pr-md-65,
.px-md-65 {
    padding-right: 65px !important;
  }

  .pb-md-65,
.py-md-65 {
    padding-bottom: 65px !important;
  }

  .pl-md-65,
.px-md-65 {
    padding-left: 65px !important;
  }

  .p-md-60 {
    padding: 60px !important;
  }

  .pt-md-60,
.py-md-60 {
    padding-top: 60px !important;
  }

  .pr-md-60,
.px-md-60 {
    padding-right: 60px !important;
  }

  .pb-md-60,
.py-md-60 {
    padding-bottom: 60px !important;
  }

  .pl-md-60,
.px-md-60 {
    padding-left: 60px !important;
  }

  .p-md-55 {
    padding: 55px !important;
  }

  .pt-md-55,
.py-md-55 {
    padding-top: 55px !important;
  }

  .pr-md-55,
.px-md-55 {
    padding-right: 55px !important;
  }

  .pb-md-55,
.py-md-55 {
    padding-bottom: 55px !important;
  }

  .pl-md-55,
.px-md-55 {
    padding-left: 55px !important;
  }

  .p-md-50 {
    padding: 50px !important;
  }

  .pt-md-50,
.py-md-50 {
    padding-top: 50px !important;
  }

  .pr-md-50,
.px-md-50 {
    padding-right: 50px !important;
  }

  .pb-md-50,
.py-md-50 {
    padding-bottom: 50px !important;
  }

  .pl-md-50,
.px-md-50 {
    padding-left: 50px !important;
  }

  .p-md-45 {
    padding: 45px !important;
  }

  .pt-md-45,
.py-md-45 {
    padding-top: 45px !important;
  }

  .pr-md-45,
.px-md-45 {
    padding-right: 45px !important;
  }

  .pb-md-45,
.py-md-45 {
    padding-bottom: 45px !important;
  }

  .pl-md-45,
.px-md-45 {
    padding-left: 45px !important;
  }

  .p-md-40 {
    padding: 40px !important;
  }

  .pt-md-40,
.py-md-40 {
    padding-top: 40px !important;
  }

  .pr-md-40,
.px-md-40 {
    padding-right: 40px !important;
  }

  .pb-md-40,
.py-md-40 {
    padding-bottom: 40px !important;
  }

  .pl-md-40,
.px-md-40 {
    padding-left: 40px !important;
  }

  .p-md-35 {
    padding: 35px !important;
  }

  .pt-md-35,
.py-md-35 {
    padding-top: 35px !important;
  }

  .pr-md-35,
.px-md-35 {
    padding-right: 35px !important;
  }

  .pb-md-35,
.py-md-35 {
    padding-bottom: 35px !important;
  }

  .pl-md-35,
.px-md-35 {
    padding-left: 35px !important;
  }

  .p-md-30 {
    padding: 30px !important;
  }

  .pt-md-30,
.py-md-30 {
    padding-top: 30px !important;
  }

  .pr-md-30,
.px-md-30 {
    padding-right: 30px !important;
  }

  .pb-md-30,
.py-md-30 {
    padding-bottom: 30px !important;
  }

  .pl-md-30,
.px-md-30 {
    padding-left: 30px !important;
  }

  .p-md-25 {
    padding: 25px !important;
  }

  .pt-md-25,
.py-md-25 {
    padding-top: 25px !important;
  }

  .pr-md-25,
.px-md-25 {
    padding-right: 25px !important;
  }

  .pb-md-25,
.py-md-25 {
    padding-bottom: 25px !important;
  }

  .pl-md-25,
.px-md-25 {
    padding-left: 25px !important;
  }

  .p-md-20 {
    padding: 20px !important;
  }

  .pt-md-20,
.py-md-20 {
    padding-top: 20px !important;
  }

  .pr-md-20,
.px-md-20 {
    padding-right: 20px !important;
  }

  .pb-md-20,
.py-md-20 {
    padding-bottom: 20px !important;
  }

  .pl-md-20,
.px-md-20 {
    padding-left: 20px !important;
  }

  .p-md-15 {
    padding: 15px !important;
  }

  .pt-md-15,
.py-md-15 {
    padding-top: 15px !important;
  }

  .pr-md-15,
.px-md-15 {
    padding-right: 15px !important;
  }

  .pb-md-15,
.py-md-15 {
    padding-bottom: 15px !important;
  }

  .pl-md-15,
.px-md-15 {
    padding-left: 15px !important;
  }

  .p-md-10 {
    padding: 10px !important;
  }

  .pt-md-10,
.py-md-10 {
    padding-top: 10px !important;
  }

  .pr-md-10,
.px-md-10 {
    padding-right: 10px !important;
  }

  .pb-md-10,
.py-md-10 {
    padding-bottom: 10px !important;
  }

  .pl-md-10,
.px-md-10 {
    padding-left: 10px !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: -5px !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -5px !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -5px !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -5px !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -5px !important;
  }

  .m-md-n100 {
    margin: -100px !important;
  }

  .mt-md-n100,
.my-md-n100 {
    margin-top: -100px !important;
  }

  .mr-md-n100,
.mx-md-n100 {
    margin-right: -100px !important;
  }

  .mb-md-n100,
.my-md-n100 {
    margin-bottom: -100px !important;
  }

  .ml-md-n100,
.mx-md-n100 {
    margin-left: -100px !important;
  }

  .m-md-n95 {
    margin: -95px !important;
  }

  .mt-md-n95,
.my-md-n95 {
    margin-top: -95px !important;
  }

  .mr-md-n95,
.mx-md-n95 {
    margin-right: -95px !important;
  }

  .mb-md-n95,
.my-md-n95 {
    margin-bottom: -95px !important;
  }

  .ml-md-n95,
.mx-md-n95 {
    margin-left: -95px !important;
  }

  .m-md-n90 {
    margin: -90px !important;
  }

  .mt-md-n90,
.my-md-n90 {
    margin-top: -90px !important;
  }

  .mr-md-n90,
.mx-md-n90 {
    margin-right: -90px !important;
  }

  .mb-md-n90,
.my-md-n90 {
    margin-bottom: -90px !important;
  }

  .ml-md-n90,
.mx-md-n90 {
    margin-left: -90px !important;
  }

  .m-md-n85 {
    margin: -85px !important;
  }

  .mt-md-n85,
.my-md-n85 {
    margin-top: -85px !important;
  }

  .mr-md-n85,
.mx-md-n85 {
    margin-right: -85px !important;
  }

  .mb-md-n85,
.my-md-n85 {
    margin-bottom: -85px !important;
  }

  .ml-md-n85,
.mx-md-n85 {
    margin-left: -85px !important;
  }

  .m-md-n80 {
    margin: -80px !important;
  }

  .mt-md-n80,
.my-md-n80 {
    margin-top: -80px !important;
  }

  .mr-md-n80,
.mx-md-n80 {
    margin-right: -80px !important;
  }

  .mb-md-n80,
.my-md-n80 {
    margin-bottom: -80px !important;
  }

  .ml-md-n80,
.mx-md-n80 {
    margin-left: -80px !important;
  }

  .m-md-n75 {
    margin: -75px !important;
  }

  .mt-md-n75,
.my-md-n75 {
    margin-top: -75px !important;
  }

  .mr-md-n75,
.mx-md-n75 {
    margin-right: -75px !important;
  }

  .mb-md-n75,
.my-md-n75 {
    margin-bottom: -75px !important;
  }

  .ml-md-n75,
.mx-md-n75 {
    margin-left: -75px !important;
  }

  .m-md-n70 {
    margin: -70px !important;
  }

  .mt-md-n70,
.my-md-n70 {
    margin-top: -70px !important;
  }

  .mr-md-n70,
.mx-md-n70 {
    margin-right: -70px !important;
  }

  .mb-md-n70,
.my-md-n70 {
    margin-bottom: -70px !important;
  }

  .ml-md-n70,
.mx-md-n70 {
    margin-left: -70px !important;
  }

  .m-md-n65 {
    margin: -65px !important;
  }

  .mt-md-n65,
.my-md-n65 {
    margin-top: -65px !important;
  }

  .mr-md-n65,
.mx-md-n65 {
    margin-right: -65px !important;
  }

  .mb-md-n65,
.my-md-n65 {
    margin-bottom: -65px !important;
  }

  .ml-md-n65,
.mx-md-n65 {
    margin-left: -65px !important;
  }

  .m-md-n60 {
    margin: -60px !important;
  }

  .mt-md-n60,
.my-md-n60 {
    margin-top: -60px !important;
  }

  .mr-md-n60,
.mx-md-n60 {
    margin-right: -60px !important;
  }

  .mb-md-n60,
.my-md-n60 {
    margin-bottom: -60px !important;
  }

  .ml-md-n60,
.mx-md-n60 {
    margin-left: -60px !important;
  }

  .m-md-n55 {
    margin: -55px !important;
  }

  .mt-md-n55,
.my-md-n55 {
    margin-top: -55px !important;
  }

  .mr-md-n55,
.mx-md-n55 {
    margin-right: -55px !important;
  }

  .mb-md-n55,
.my-md-n55 {
    margin-bottom: -55px !important;
  }

  .ml-md-n55,
.mx-md-n55 {
    margin-left: -55px !important;
  }

  .m-md-n50 {
    margin: -50px !important;
  }

  .mt-md-n50,
.my-md-n50 {
    margin-top: -50px !important;
  }

  .mr-md-n50,
.mx-md-n50 {
    margin-right: -50px !important;
  }

  .mb-md-n50,
.my-md-n50 {
    margin-bottom: -50px !important;
  }

  .ml-md-n50,
.mx-md-n50 {
    margin-left: -50px !important;
  }

  .m-md-n45 {
    margin: -45px !important;
  }

  .mt-md-n45,
.my-md-n45 {
    margin-top: -45px !important;
  }

  .mr-md-n45,
.mx-md-n45 {
    margin-right: -45px !important;
  }

  .mb-md-n45,
.my-md-n45 {
    margin-bottom: -45px !important;
  }

  .ml-md-n45,
.mx-md-n45 {
    margin-left: -45px !important;
  }

  .m-md-n40 {
    margin: -40px !important;
  }

  .mt-md-n40,
.my-md-n40 {
    margin-top: -40px !important;
  }

  .mr-md-n40,
.mx-md-n40 {
    margin-right: -40px !important;
  }

  .mb-md-n40,
.my-md-n40 {
    margin-bottom: -40px !important;
  }

  .ml-md-n40,
.mx-md-n40 {
    margin-left: -40px !important;
  }

  .m-md-n35 {
    margin: -35px !important;
  }

  .mt-md-n35,
.my-md-n35 {
    margin-top: -35px !important;
  }

  .mr-md-n35,
.mx-md-n35 {
    margin-right: -35px !important;
  }

  .mb-md-n35,
.my-md-n35 {
    margin-bottom: -35px !important;
  }

  .ml-md-n35,
.mx-md-n35 {
    margin-left: -35px !important;
  }

  .m-md-n30 {
    margin: -30px !important;
  }

  .mt-md-n30,
.my-md-n30 {
    margin-top: -30px !important;
  }

  .mr-md-n30,
.mx-md-n30 {
    margin-right: -30px !important;
  }

  .mb-md-n30,
.my-md-n30 {
    margin-bottom: -30px !important;
  }

  .ml-md-n30,
.mx-md-n30 {
    margin-left: -30px !important;
  }

  .m-md-n25 {
    margin: -25px !important;
  }

  .mt-md-n25,
.my-md-n25 {
    margin-top: -25px !important;
  }

  .mr-md-n25,
.mx-md-n25 {
    margin-right: -25px !important;
  }

  .mb-md-n25,
.my-md-n25 {
    margin-bottom: -25px !important;
  }

  .ml-md-n25,
.mx-md-n25 {
    margin-left: -25px !important;
  }

  .m-md-n20 {
    margin: -20px !important;
  }

  .mt-md-n20,
.my-md-n20 {
    margin-top: -20px !important;
  }

  .mr-md-n20,
.mx-md-n20 {
    margin-right: -20px !important;
  }

  .mb-md-n20,
.my-md-n20 {
    margin-bottom: -20px !important;
  }

  .ml-md-n20,
.mx-md-n20 {
    margin-left: -20px !important;
  }

  .m-md-n15 {
    margin: -15px !important;
  }

  .mt-md-n15,
.my-md-n15 {
    margin-top: -15px !important;
  }

  .mr-md-n15,
.mx-md-n15 {
    margin-right: -15px !important;
  }

  .mb-md-n15,
.my-md-n15 {
    margin-bottom: -15px !important;
  }

  .ml-md-n15,
.mx-md-n15 {
    margin-left: -15px !important;
  }

  .m-md-n10 {
    margin: -10px !important;
  }

  .mt-md-n10,
.my-md-n10 {
    margin-top: -10px !important;
  }

  .mr-md-n10,
.mx-md-n10 {
    margin-right: -10px !important;
  }

  .mb-md-n10,
.my-md-n10 {
    margin-bottom: -10px !important;
  }

  .ml-md-n10,
.mx-md-n10 {
    margin-left: -10px !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: 5px !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 5px !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 5px !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 5px !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 5px !important;
  }

  .m-lg-100 {
    margin: 100px !important;
  }

  .mt-lg-100,
.my-lg-100 {
    margin-top: 100px !important;
  }

  .mr-lg-100,
.mx-lg-100 {
    margin-right: 100px !important;
  }

  .mb-lg-100,
.my-lg-100 {
    margin-bottom: 100px !important;
  }

  .ml-lg-100,
.mx-lg-100 {
    margin-left: 100px !important;
  }

  .m-lg-95 {
    margin: 95px !important;
  }

  .mt-lg-95,
.my-lg-95 {
    margin-top: 95px !important;
  }

  .mr-lg-95,
.mx-lg-95 {
    margin-right: 95px !important;
  }

  .mb-lg-95,
.my-lg-95 {
    margin-bottom: 95px !important;
  }

  .ml-lg-95,
.mx-lg-95 {
    margin-left: 95px !important;
  }

  .m-lg-90 {
    margin: 90px !important;
  }

  .mt-lg-90,
.my-lg-90 {
    margin-top: 90px !important;
  }

  .mr-lg-90,
.mx-lg-90 {
    margin-right: 90px !important;
  }

  .mb-lg-90,
.my-lg-90 {
    margin-bottom: 90px !important;
  }

  .ml-lg-90,
.mx-lg-90 {
    margin-left: 90px !important;
  }

  .m-lg-85 {
    margin: 85px !important;
  }

  .mt-lg-85,
.my-lg-85 {
    margin-top: 85px !important;
  }

  .mr-lg-85,
.mx-lg-85 {
    margin-right: 85px !important;
  }

  .mb-lg-85,
.my-lg-85 {
    margin-bottom: 85px !important;
  }

  .ml-lg-85,
.mx-lg-85 {
    margin-left: 85px !important;
  }

  .m-lg-80 {
    margin: 80px !important;
  }

  .mt-lg-80,
.my-lg-80 {
    margin-top: 80px !important;
  }

  .mr-lg-80,
.mx-lg-80 {
    margin-right: 80px !important;
  }

  .mb-lg-80,
.my-lg-80 {
    margin-bottom: 80px !important;
  }

  .ml-lg-80,
.mx-lg-80 {
    margin-left: 80px !important;
  }

  .m-lg-75 {
    margin: 75px !important;
  }

  .mt-lg-75,
.my-lg-75 {
    margin-top: 75px !important;
  }

  .mr-lg-75,
.mx-lg-75 {
    margin-right: 75px !important;
  }

  .mb-lg-75,
.my-lg-75 {
    margin-bottom: 75px !important;
  }

  .ml-lg-75,
.mx-lg-75 {
    margin-left: 75px !important;
  }

  .m-lg-70 {
    margin: 70px !important;
  }

  .mt-lg-70,
.my-lg-70 {
    margin-top: 70px !important;
  }

  .mr-lg-70,
.mx-lg-70 {
    margin-right: 70px !important;
  }

  .mb-lg-70,
.my-lg-70 {
    margin-bottom: 70px !important;
  }

  .ml-lg-70,
.mx-lg-70 {
    margin-left: 70px !important;
  }

  .m-lg-65 {
    margin: 65px !important;
  }

  .mt-lg-65,
.my-lg-65 {
    margin-top: 65px !important;
  }

  .mr-lg-65,
.mx-lg-65 {
    margin-right: 65px !important;
  }

  .mb-lg-65,
.my-lg-65 {
    margin-bottom: 65px !important;
  }

  .ml-lg-65,
.mx-lg-65 {
    margin-left: 65px !important;
  }

  .m-lg-60 {
    margin: 60px !important;
  }

  .mt-lg-60,
.my-lg-60 {
    margin-top: 60px !important;
  }

  .mr-lg-60,
.mx-lg-60 {
    margin-right: 60px !important;
  }

  .mb-lg-60,
.my-lg-60 {
    margin-bottom: 60px !important;
  }

  .ml-lg-60,
.mx-lg-60 {
    margin-left: 60px !important;
  }

  .m-lg-55 {
    margin: 55px !important;
  }

  .mt-lg-55,
.my-lg-55 {
    margin-top: 55px !important;
  }

  .mr-lg-55,
.mx-lg-55 {
    margin-right: 55px !important;
  }

  .mb-lg-55,
.my-lg-55 {
    margin-bottom: 55px !important;
  }

  .ml-lg-55,
.mx-lg-55 {
    margin-left: 55px !important;
  }

  .m-lg-50 {
    margin: 50px !important;
  }

  .mt-lg-50,
.my-lg-50 {
    margin-top: 50px !important;
  }

  .mr-lg-50,
.mx-lg-50 {
    margin-right: 50px !important;
  }

  .mb-lg-50,
.my-lg-50 {
    margin-bottom: 50px !important;
  }

  .ml-lg-50,
.mx-lg-50 {
    margin-left: 50px !important;
  }

  .m-lg-45 {
    margin: 45px !important;
  }

  .mt-lg-45,
.my-lg-45 {
    margin-top: 45px !important;
  }

  .mr-lg-45,
.mx-lg-45 {
    margin-right: 45px !important;
  }

  .mb-lg-45,
.my-lg-45 {
    margin-bottom: 45px !important;
  }

  .ml-lg-45,
.mx-lg-45 {
    margin-left: 45px !important;
  }

  .m-lg-40 {
    margin: 40px !important;
  }

  .mt-lg-40,
.my-lg-40 {
    margin-top: 40px !important;
  }

  .mr-lg-40,
.mx-lg-40 {
    margin-right: 40px !important;
  }

  .mb-lg-40,
.my-lg-40 {
    margin-bottom: 40px !important;
  }

  .ml-lg-40,
.mx-lg-40 {
    margin-left: 40px !important;
  }

  .m-lg-35 {
    margin: 35px !important;
  }

  .mt-lg-35,
.my-lg-35 {
    margin-top: 35px !important;
  }

  .mr-lg-35,
.mx-lg-35 {
    margin-right: 35px !important;
  }

  .mb-lg-35,
.my-lg-35 {
    margin-bottom: 35px !important;
  }

  .ml-lg-35,
.mx-lg-35 {
    margin-left: 35px !important;
  }

  .m-lg-30 {
    margin: 30px !important;
  }

  .mt-lg-30,
.my-lg-30 {
    margin-top: 30px !important;
  }

  .mr-lg-30,
.mx-lg-30 {
    margin-right: 30px !important;
  }

  .mb-lg-30,
.my-lg-30 {
    margin-bottom: 30px !important;
  }

  .ml-lg-30,
.mx-lg-30 {
    margin-left: 30px !important;
  }

  .m-lg-25 {
    margin: 25px !important;
  }

  .mt-lg-25,
.my-lg-25 {
    margin-top: 25px !important;
  }

  .mr-lg-25,
.mx-lg-25 {
    margin-right: 25px !important;
  }

  .mb-lg-25,
.my-lg-25 {
    margin-bottom: 25px !important;
  }

  .ml-lg-25,
.mx-lg-25 {
    margin-left: 25px !important;
  }

  .m-lg-20 {
    margin: 20px !important;
  }

  .mt-lg-20,
.my-lg-20 {
    margin-top: 20px !important;
  }

  .mr-lg-20,
.mx-lg-20 {
    margin-right: 20px !important;
  }

  .mb-lg-20,
.my-lg-20 {
    margin-bottom: 20px !important;
  }

  .ml-lg-20,
.mx-lg-20 {
    margin-left: 20px !important;
  }

  .m-lg-15 {
    margin: 15px !important;
  }

  .mt-lg-15,
.my-lg-15 {
    margin-top: 15px !important;
  }

  .mr-lg-15,
.mx-lg-15 {
    margin-right: 15px !important;
  }

  .mb-lg-15,
.my-lg-15 {
    margin-bottom: 15px !important;
  }

  .ml-lg-15,
.mx-lg-15 {
    margin-left: 15px !important;
  }

  .m-lg-10 {
    margin: 10px !important;
  }

  .mt-lg-10,
.my-lg-10 {
    margin-top: 10px !important;
  }

  .mr-lg-10,
.mx-lg-10 {
    margin-right: 10px !important;
  }

  .mb-lg-10,
.my-lg-10 {
    margin-bottom: 10px !important;
  }

  .ml-lg-10,
.mx-lg-10 {
    margin-left: 10px !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: 5px !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 5px !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 5px !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 5px !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 5px !important;
  }

  .p-lg-100 {
    padding: 100px !important;
  }

  .pt-lg-100,
.py-lg-100 {
    padding-top: 100px !important;
  }

  .pr-lg-100,
.px-lg-100 {
    padding-right: 100px !important;
  }

  .pb-lg-100,
.py-lg-100 {
    padding-bottom: 100px !important;
  }

  .pl-lg-100,
.px-lg-100 {
    padding-left: 100px !important;
  }

  .p-lg-95 {
    padding: 95px !important;
  }

  .pt-lg-95,
.py-lg-95 {
    padding-top: 95px !important;
  }

  .pr-lg-95,
.px-lg-95 {
    padding-right: 95px !important;
  }

  .pb-lg-95,
.py-lg-95 {
    padding-bottom: 95px !important;
  }

  .pl-lg-95,
.px-lg-95 {
    padding-left: 95px !important;
  }

  .p-lg-90 {
    padding: 90px !important;
  }

  .pt-lg-90,
.py-lg-90 {
    padding-top: 90px !important;
  }

  .pr-lg-90,
.px-lg-90 {
    padding-right: 90px !important;
  }

  .pb-lg-90,
.py-lg-90 {
    padding-bottom: 90px !important;
  }

  .pl-lg-90,
.px-lg-90 {
    padding-left: 90px !important;
  }

  .p-lg-85 {
    padding: 85px !important;
  }

  .pt-lg-85,
.py-lg-85 {
    padding-top: 85px !important;
  }

  .pr-lg-85,
.px-lg-85 {
    padding-right: 85px !important;
  }

  .pb-lg-85,
.py-lg-85 {
    padding-bottom: 85px !important;
  }

  .pl-lg-85,
.px-lg-85 {
    padding-left: 85px !important;
  }

  .p-lg-80 {
    padding: 80px !important;
  }

  .pt-lg-80,
.py-lg-80 {
    padding-top: 80px !important;
  }

  .pr-lg-80,
.px-lg-80 {
    padding-right: 80px !important;
  }

  .pb-lg-80,
.py-lg-80 {
    padding-bottom: 80px !important;
  }

  .pl-lg-80,
.px-lg-80 {
    padding-left: 80px !important;
  }

  .p-lg-75 {
    padding: 75px !important;
  }

  .pt-lg-75,
.py-lg-75 {
    padding-top: 75px !important;
  }

  .pr-lg-75,
.px-lg-75 {
    padding-right: 75px !important;
  }

  .pb-lg-75,
.py-lg-75 {
    padding-bottom: 75px !important;
  }

  .pl-lg-75,
.px-lg-75 {
    padding-left: 75px !important;
  }

  .p-lg-70 {
    padding: 70px !important;
  }

  .pt-lg-70,
.py-lg-70 {
    padding-top: 70px !important;
  }

  .pr-lg-70,
.px-lg-70 {
    padding-right: 70px !important;
  }

  .pb-lg-70,
.py-lg-70 {
    padding-bottom: 70px !important;
  }

  .pl-lg-70,
.px-lg-70 {
    padding-left: 70px !important;
  }

  .p-lg-65 {
    padding: 65px !important;
  }

  .pt-lg-65,
.py-lg-65 {
    padding-top: 65px !important;
  }

  .pr-lg-65,
.px-lg-65 {
    padding-right: 65px !important;
  }

  .pb-lg-65,
.py-lg-65 {
    padding-bottom: 65px !important;
  }

  .pl-lg-65,
.px-lg-65 {
    padding-left: 65px !important;
  }

  .p-lg-60 {
    padding: 60px !important;
  }

  .pt-lg-60,
.py-lg-60 {
    padding-top: 60px !important;
  }

  .pr-lg-60,
.px-lg-60 {
    padding-right: 60px !important;
  }

  .pb-lg-60,
.py-lg-60 {
    padding-bottom: 60px !important;
  }

  .pl-lg-60,
.px-lg-60 {
    padding-left: 60px !important;
  }

  .p-lg-55 {
    padding: 55px !important;
  }

  .pt-lg-55,
.py-lg-55 {
    padding-top: 55px !important;
  }

  .pr-lg-55,
.px-lg-55 {
    padding-right: 55px !important;
  }

  .pb-lg-55,
.py-lg-55 {
    padding-bottom: 55px !important;
  }

  .pl-lg-55,
.px-lg-55 {
    padding-left: 55px !important;
  }

  .p-lg-50 {
    padding: 50px !important;
  }

  .pt-lg-50,
.py-lg-50 {
    padding-top: 50px !important;
  }

  .pr-lg-50,
.px-lg-50 {
    padding-right: 50px !important;
  }

  .pb-lg-50,
.py-lg-50 {
    padding-bottom: 50px !important;
  }

  .pl-lg-50,
.px-lg-50 {
    padding-left: 50px !important;
  }

  .p-lg-45 {
    padding: 45px !important;
  }

  .pt-lg-45,
.py-lg-45 {
    padding-top: 45px !important;
  }

  .pr-lg-45,
.px-lg-45 {
    padding-right: 45px !important;
  }

  .pb-lg-45,
.py-lg-45 {
    padding-bottom: 45px !important;
  }

  .pl-lg-45,
.px-lg-45 {
    padding-left: 45px !important;
  }

  .p-lg-40 {
    padding: 40px !important;
  }

  .pt-lg-40,
.py-lg-40 {
    padding-top: 40px !important;
  }

  .pr-lg-40,
.px-lg-40 {
    padding-right: 40px !important;
  }

  .pb-lg-40,
.py-lg-40 {
    padding-bottom: 40px !important;
  }

  .pl-lg-40,
.px-lg-40 {
    padding-left: 40px !important;
  }

  .p-lg-35 {
    padding: 35px !important;
  }

  .pt-lg-35,
.py-lg-35 {
    padding-top: 35px !important;
  }

  .pr-lg-35,
.px-lg-35 {
    padding-right: 35px !important;
  }

  .pb-lg-35,
.py-lg-35 {
    padding-bottom: 35px !important;
  }

  .pl-lg-35,
.px-lg-35 {
    padding-left: 35px !important;
  }

  .p-lg-30 {
    padding: 30px !important;
  }

  .pt-lg-30,
.py-lg-30 {
    padding-top: 30px !important;
  }

  .pr-lg-30,
.px-lg-30 {
    padding-right: 30px !important;
  }

  .pb-lg-30,
.py-lg-30 {
    padding-bottom: 30px !important;
  }

  .pl-lg-30,
.px-lg-30 {
    padding-left: 30px !important;
  }

  .p-lg-25 {
    padding: 25px !important;
  }

  .pt-lg-25,
.py-lg-25 {
    padding-top: 25px !important;
  }

  .pr-lg-25,
.px-lg-25 {
    padding-right: 25px !important;
  }

  .pb-lg-25,
.py-lg-25 {
    padding-bottom: 25px !important;
  }

  .pl-lg-25,
.px-lg-25 {
    padding-left: 25px !important;
  }

  .p-lg-20 {
    padding: 20px !important;
  }

  .pt-lg-20,
.py-lg-20 {
    padding-top: 20px !important;
  }

  .pr-lg-20,
.px-lg-20 {
    padding-right: 20px !important;
  }

  .pb-lg-20,
.py-lg-20 {
    padding-bottom: 20px !important;
  }

  .pl-lg-20,
.px-lg-20 {
    padding-left: 20px !important;
  }

  .p-lg-15 {
    padding: 15px !important;
  }

  .pt-lg-15,
.py-lg-15 {
    padding-top: 15px !important;
  }

  .pr-lg-15,
.px-lg-15 {
    padding-right: 15px !important;
  }

  .pb-lg-15,
.py-lg-15 {
    padding-bottom: 15px !important;
  }

  .pl-lg-15,
.px-lg-15 {
    padding-left: 15px !important;
  }

  .p-lg-10 {
    padding: 10px !important;
  }

  .pt-lg-10,
.py-lg-10 {
    padding-top: 10px !important;
  }

  .pr-lg-10,
.px-lg-10 {
    padding-right: 10px !important;
  }

  .pb-lg-10,
.py-lg-10 {
    padding-bottom: 10px !important;
  }

  .pl-lg-10,
.px-lg-10 {
    padding-left: 10px !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: -5px !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -5px !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -5px !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -5px !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -5px !important;
  }

  .m-lg-n100 {
    margin: -100px !important;
  }

  .mt-lg-n100,
.my-lg-n100 {
    margin-top: -100px !important;
  }

  .mr-lg-n100,
.mx-lg-n100 {
    margin-right: -100px !important;
  }

  .mb-lg-n100,
.my-lg-n100 {
    margin-bottom: -100px !important;
  }

  .ml-lg-n100,
.mx-lg-n100 {
    margin-left: -100px !important;
  }

  .m-lg-n95 {
    margin: -95px !important;
  }

  .mt-lg-n95,
.my-lg-n95 {
    margin-top: -95px !important;
  }

  .mr-lg-n95,
.mx-lg-n95 {
    margin-right: -95px !important;
  }

  .mb-lg-n95,
.my-lg-n95 {
    margin-bottom: -95px !important;
  }

  .ml-lg-n95,
.mx-lg-n95 {
    margin-left: -95px !important;
  }

  .m-lg-n90 {
    margin: -90px !important;
  }

  .mt-lg-n90,
.my-lg-n90 {
    margin-top: -90px !important;
  }

  .mr-lg-n90,
.mx-lg-n90 {
    margin-right: -90px !important;
  }

  .mb-lg-n90,
.my-lg-n90 {
    margin-bottom: -90px !important;
  }

  .ml-lg-n90,
.mx-lg-n90 {
    margin-left: -90px !important;
  }

  .m-lg-n85 {
    margin: -85px !important;
  }

  .mt-lg-n85,
.my-lg-n85 {
    margin-top: -85px !important;
  }

  .mr-lg-n85,
.mx-lg-n85 {
    margin-right: -85px !important;
  }

  .mb-lg-n85,
.my-lg-n85 {
    margin-bottom: -85px !important;
  }

  .ml-lg-n85,
.mx-lg-n85 {
    margin-left: -85px !important;
  }

  .m-lg-n80 {
    margin: -80px !important;
  }

  .mt-lg-n80,
.my-lg-n80 {
    margin-top: -80px !important;
  }

  .mr-lg-n80,
.mx-lg-n80 {
    margin-right: -80px !important;
  }

  .mb-lg-n80,
.my-lg-n80 {
    margin-bottom: -80px !important;
  }

  .ml-lg-n80,
.mx-lg-n80 {
    margin-left: -80px !important;
  }

  .m-lg-n75 {
    margin: -75px !important;
  }

  .mt-lg-n75,
.my-lg-n75 {
    margin-top: -75px !important;
  }

  .mr-lg-n75,
.mx-lg-n75 {
    margin-right: -75px !important;
  }

  .mb-lg-n75,
.my-lg-n75 {
    margin-bottom: -75px !important;
  }

  .ml-lg-n75,
.mx-lg-n75 {
    margin-left: -75px !important;
  }

  .m-lg-n70 {
    margin: -70px !important;
  }

  .mt-lg-n70,
.my-lg-n70 {
    margin-top: -70px !important;
  }

  .mr-lg-n70,
.mx-lg-n70 {
    margin-right: -70px !important;
  }

  .mb-lg-n70,
.my-lg-n70 {
    margin-bottom: -70px !important;
  }

  .ml-lg-n70,
.mx-lg-n70 {
    margin-left: -70px !important;
  }

  .m-lg-n65 {
    margin: -65px !important;
  }

  .mt-lg-n65,
.my-lg-n65 {
    margin-top: -65px !important;
  }

  .mr-lg-n65,
.mx-lg-n65 {
    margin-right: -65px !important;
  }

  .mb-lg-n65,
.my-lg-n65 {
    margin-bottom: -65px !important;
  }

  .ml-lg-n65,
.mx-lg-n65 {
    margin-left: -65px !important;
  }

  .m-lg-n60 {
    margin: -60px !important;
  }

  .mt-lg-n60,
.my-lg-n60 {
    margin-top: -60px !important;
  }

  .mr-lg-n60,
.mx-lg-n60 {
    margin-right: -60px !important;
  }

  .mb-lg-n60,
.my-lg-n60 {
    margin-bottom: -60px !important;
  }

  .ml-lg-n60,
.mx-lg-n60 {
    margin-left: -60px !important;
  }

  .m-lg-n55 {
    margin: -55px !important;
  }

  .mt-lg-n55,
.my-lg-n55 {
    margin-top: -55px !important;
  }

  .mr-lg-n55,
.mx-lg-n55 {
    margin-right: -55px !important;
  }

  .mb-lg-n55,
.my-lg-n55 {
    margin-bottom: -55px !important;
  }

  .ml-lg-n55,
.mx-lg-n55 {
    margin-left: -55px !important;
  }

  .m-lg-n50 {
    margin: -50px !important;
  }

  .mt-lg-n50,
.my-lg-n50 {
    margin-top: -50px !important;
  }

  .mr-lg-n50,
.mx-lg-n50 {
    margin-right: -50px !important;
  }

  .mb-lg-n50,
.my-lg-n50 {
    margin-bottom: -50px !important;
  }

  .ml-lg-n50,
.mx-lg-n50 {
    margin-left: -50px !important;
  }

  .m-lg-n45 {
    margin: -45px !important;
  }

  .mt-lg-n45,
.my-lg-n45 {
    margin-top: -45px !important;
  }

  .mr-lg-n45,
.mx-lg-n45 {
    margin-right: -45px !important;
  }

  .mb-lg-n45,
.my-lg-n45 {
    margin-bottom: -45px !important;
  }

  .ml-lg-n45,
.mx-lg-n45 {
    margin-left: -45px !important;
  }

  .m-lg-n40 {
    margin: -40px !important;
  }

  .mt-lg-n40,
.my-lg-n40 {
    margin-top: -40px !important;
  }

  .mr-lg-n40,
.mx-lg-n40 {
    margin-right: -40px !important;
  }

  .mb-lg-n40,
.my-lg-n40 {
    margin-bottom: -40px !important;
  }

  .ml-lg-n40,
.mx-lg-n40 {
    margin-left: -40px !important;
  }

  .m-lg-n35 {
    margin: -35px !important;
  }

  .mt-lg-n35,
.my-lg-n35 {
    margin-top: -35px !important;
  }

  .mr-lg-n35,
.mx-lg-n35 {
    margin-right: -35px !important;
  }

  .mb-lg-n35,
.my-lg-n35 {
    margin-bottom: -35px !important;
  }

  .ml-lg-n35,
.mx-lg-n35 {
    margin-left: -35px !important;
  }

  .m-lg-n30 {
    margin: -30px !important;
  }

  .mt-lg-n30,
.my-lg-n30 {
    margin-top: -30px !important;
  }

  .mr-lg-n30,
.mx-lg-n30 {
    margin-right: -30px !important;
  }

  .mb-lg-n30,
.my-lg-n30 {
    margin-bottom: -30px !important;
  }

  .ml-lg-n30,
.mx-lg-n30 {
    margin-left: -30px !important;
  }

  .m-lg-n25 {
    margin: -25px !important;
  }

  .mt-lg-n25,
.my-lg-n25 {
    margin-top: -25px !important;
  }

  .mr-lg-n25,
.mx-lg-n25 {
    margin-right: -25px !important;
  }

  .mb-lg-n25,
.my-lg-n25 {
    margin-bottom: -25px !important;
  }

  .ml-lg-n25,
.mx-lg-n25 {
    margin-left: -25px !important;
  }

  .m-lg-n20 {
    margin: -20px !important;
  }

  .mt-lg-n20,
.my-lg-n20 {
    margin-top: -20px !important;
  }

  .mr-lg-n20,
.mx-lg-n20 {
    margin-right: -20px !important;
  }

  .mb-lg-n20,
.my-lg-n20 {
    margin-bottom: -20px !important;
  }

  .ml-lg-n20,
.mx-lg-n20 {
    margin-left: -20px !important;
  }

  .m-lg-n15 {
    margin: -15px !important;
  }

  .mt-lg-n15,
.my-lg-n15 {
    margin-top: -15px !important;
  }

  .mr-lg-n15,
.mx-lg-n15 {
    margin-right: -15px !important;
  }

  .mb-lg-n15,
.my-lg-n15 {
    margin-bottom: -15px !important;
  }

  .ml-lg-n15,
.mx-lg-n15 {
    margin-left: -15px !important;
  }

  .m-lg-n10 {
    margin: -10px !important;
  }

  .mt-lg-n10,
.my-lg-n10 {
    margin-top: -10px !important;
  }

  .mr-lg-n10,
.mx-lg-n10 {
    margin-right: -10px !important;
  }

  .mb-lg-n10,
.my-lg-n10 {
    margin-bottom: -10px !important;
  }

  .ml-lg-n10,
.mx-lg-n10 {
    margin-left: -10px !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: 5px !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 5px !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 5px !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 5px !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 5px !important;
  }

  .m-xl-100 {
    margin: 100px !important;
  }

  .mt-xl-100,
.my-xl-100 {
    margin-top: 100px !important;
  }

  .mr-xl-100,
.mx-xl-100 {
    margin-right: 100px !important;
  }

  .mb-xl-100,
.my-xl-100 {
    margin-bottom: 100px !important;
  }

  .ml-xl-100,
.mx-xl-100 {
    margin-left: 100px !important;
  }

  .m-xl-95 {
    margin: 95px !important;
  }

  .mt-xl-95,
.my-xl-95 {
    margin-top: 95px !important;
  }

  .mr-xl-95,
.mx-xl-95 {
    margin-right: 95px !important;
  }

  .mb-xl-95,
.my-xl-95 {
    margin-bottom: 95px !important;
  }

  .ml-xl-95,
.mx-xl-95 {
    margin-left: 95px !important;
  }

  .m-xl-90 {
    margin: 90px !important;
  }

  .mt-xl-90,
.my-xl-90 {
    margin-top: 90px !important;
  }

  .mr-xl-90,
.mx-xl-90 {
    margin-right: 90px !important;
  }

  .mb-xl-90,
.my-xl-90 {
    margin-bottom: 90px !important;
  }

  .ml-xl-90,
.mx-xl-90 {
    margin-left: 90px !important;
  }

  .m-xl-85 {
    margin: 85px !important;
  }

  .mt-xl-85,
.my-xl-85 {
    margin-top: 85px !important;
  }

  .mr-xl-85,
.mx-xl-85 {
    margin-right: 85px !important;
  }

  .mb-xl-85,
.my-xl-85 {
    margin-bottom: 85px !important;
  }

  .ml-xl-85,
.mx-xl-85 {
    margin-left: 85px !important;
  }

  .m-xl-80 {
    margin: 80px !important;
  }

  .mt-xl-80,
.my-xl-80 {
    margin-top: 80px !important;
  }

  .mr-xl-80,
.mx-xl-80 {
    margin-right: 80px !important;
  }

  .mb-xl-80,
.my-xl-80 {
    margin-bottom: 80px !important;
  }

  .ml-xl-80,
.mx-xl-80 {
    margin-left: 80px !important;
  }

  .m-xl-75 {
    margin: 75px !important;
  }

  .mt-xl-75,
.my-xl-75 {
    margin-top: 75px !important;
  }

  .mr-xl-75,
.mx-xl-75 {
    margin-right: 75px !important;
  }

  .mb-xl-75,
.my-xl-75 {
    margin-bottom: 75px !important;
  }

  .ml-xl-75,
.mx-xl-75 {
    margin-left: 75px !important;
  }

  .m-xl-70 {
    margin: 70px !important;
  }

  .mt-xl-70,
.my-xl-70 {
    margin-top: 70px !important;
  }

  .mr-xl-70,
.mx-xl-70 {
    margin-right: 70px !important;
  }

  .mb-xl-70,
.my-xl-70 {
    margin-bottom: 70px !important;
  }

  .ml-xl-70,
.mx-xl-70 {
    margin-left: 70px !important;
  }

  .m-xl-65 {
    margin: 65px !important;
  }

  .mt-xl-65,
.my-xl-65 {
    margin-top: 65px !important;
  }

  .mr-xl-65,
.mx-xl-65 {
    margin-right: 65px !important;
  }

  .mb-xl-65,
.my-xl-65 {
    margin-bottom: 65px !important;
  }

  .ml-xl-65,
.mx-xl-65 {
    margin-left: 65px !important;
  }

  .m-xl-60 {
    margin: 60px !important;
  }

  .mt-xl-60,
.my-xl-60 {
    margin-top: 60px !important;
  }

  .mr-xl-60,
.mx-xl-60 {
    margin-right: 60px !important;
  }

  .mb-xl-60,
.my-xl-60 {
    margin-bottom: 60px !important;
  }

  .ml-xl-60,
.mx-xl-60 {
    margin-left: 60px !important;
  }

  .m-xl-55 {
    margin: 55px !important;
  }

  .mt-xl-55,
.my-xl-55 {
    margin-top: 55px !important;
  }

  .mr-xl-55,
.mx-xl-55 {
    margin-right: 55px !important;
  }

  .mb-xl-55,
.my-xl-55 {
    margin-bottom: 55px !important;
  }

  .ml-xl-55,
.mx-xl-55 {
    margin-left: 55px !important;
  }

  .m-xl-50 {
    margin: 50px !important;
  }

  .mt-xl-50,
.my-xl-50 {
    margin-top: 50px !important;
  }

  .mr-xl-50,
.mx-xl-50 {
    margin-right: 50px !important;
  }

  .mb-xl-50,
.my-xl-50 {
    margin-bottom: 50px !important;
  }

  .ml-xl-50,
.mx-xl-50 {
    margin-left: 50px !important;
  }

  .m-xl-45 {
    margin: 45px !important;
  }

  .mt-xl-45,
.my-xl-45 {
    margin-top: 45px !important;
  }

  .mr-xl-45,
.mx-xl-45 {
    margin-right: 45px !important;
  }

  .mb-xl-45,
.my-xl-45 {
    margin-bottom: 45px !important;
  }

  .ml-xl-45,
.mx-xl-45 {
    margin-left: 45px !important;
  }

  .m-xl-40 {
    margin: 40px !important;
  }

  .mt-xl-40,
.my-xl-40 {
    margin-top: 40px !important;
  }

  .mr-xl-40,
.mx-xl-40 {
    margin-right: 40px !important;
  }

  .mb-xl-40,
.my-xl-40 {
    margin-bottom: 40px !important;
  }

  .ml-xl-40,
.mx-xl-40 {
    margin-left: 40px !important;
  }

  .m-xl-35 {
    margin: 35px !important;
  }

  .mt-xl-35,
.my-xl-35 {
    margin-top: 35px !important;
  }

  .mr-xl-35,
.mx-xl-35 {
    margin-right: 35px !important;
  }

  .mb-xl-35,
.my-xl-35 {
    margin-bottom: 35px !important;
  }

  .ml-xl-35,
.mx-xl-35 {
    margin-left: 35px !important;
  }

  .m-xl-30 {
    margin: 30px !important;
  }

  .mt-xl-30,
.my-xl-30 {
    margin-top: 30px !important;
  }

  .mr-xl-30,
.mx-xl-30 {
    margin-right: 30px !important;
  }

  .mb-xl-30,
.my-xl-30 {
    margin-bottom: 30px !important;
  }

  .ml-xl-30,
.mx-xl-30 {
    margin-left: 30px !important;
  }

  .m-xl-25 {
    margin: 25px !important;
  }

  .mt-xl-25,
.my-xl-25 {
    margin-top: 25px !important;
  }

  .mr-xl-25,
.mx-xl-25 {
    margin-right: 25px !important;
  }

  .mb-xl-25,
.my-xl-25 {
    margin-bottom: 25px !important;
  }

  .ml-xl-25,
.mx-xl-25 {
    margin-left: 25px !important;
  }

  .m-xl-20 {
    margin: 20px !important;
  }

  .mt-xl-20,
.my-xl-20 {
    margin-top: 20px !important;
  }

  .mr-xl-20,
.mx-xl-20 {
    margin-right: 20px !important;
  }

  .mb-xl-20,
.my-xl-20 {
    margin-bottom: 20px !important;
  }

  .ml-xl-20,
.mx-xl-20 {
    margin-left: 20px !important;
  }

  .m-xl-15 {
    margin: 15px !important;
  }

  .mt-xl-15,
.my-xl-15 {
    margin-top: 15px !important;
  }

  .mr-xl-15,
.mx-xl-15 {
    margin-right: 15px !important;
  }

  .mb-xl-15,
.my-xl-15 {
    margin-bottom: 15px !important;
  }

  .ml-xl-15,
.mx-xl-15 {
    margin-left: 15px !important;
  }

  .m-xl-10 {
    margin: 10px !important;
  }

  .mt-xl-10,
.my-xl-10 {
    margin-top: 10px !important;
  }

  .mr-xl-10,
.mx-xl-10 {
    margin-right: 10px !important;
  }

  .mb-xl-10,
.my-xl-10 {
    margin-bottom: 10px !important;
  }

  .ml-xl-10,
.mx-xl-10 {
    margin-left: 10px !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: 5px !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 5px !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 5px !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 5px !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 5px !important;
  }

  .p-xl-100 {
    padding: 100px !important;
  }

  .pt-xl-100,
.py-xl-100 {
    padding-top: 100px !important;
  }

  .pr-xl-100,
.px-xl-100 {
    padding-right: 100px !important;
  }

  .pb-xl-100,
.py-xl-100 {
    padding-bottom: 100px !important;
  }

  .pl-xl-100,
.px-xl-100 {
    padding-left: 100px !important;
  }

  .p-xl-95 {
    padding: 95px !important;
  }

  .pt-xl-95,
.py-xl-95 {
    padding-top: 95px !important;
  }

  .pr-xl-95,
.px-xl-95 {
    padding-right: 95px !important;
  }

  .pb-xl-95,
.py-xl-95 {
    padding-bottom: 95px !important;
  }

  .pl-xl-95,
.px-xl-95 {
    padding-left: 95px !important;
  }

  .p-xl-90 {
    padding: 90px !important;
  }

  .pt-xl-90,
.py-xl-90 {
    padding-top: 90px !important;
  }

  .pr-xl-90,
.px-xl-90 {
    padding-right: 90px !important;
  }

  .pb-xl-90,
.py-xl-90 {
    padding-bottom: 90px !important;
  }

  .pl-xl-90,
.px-xl-90 {
    padding-left: 90px !important;
  }

  .p-xl-85 {
    padding: 85px !important;
  }

  .pt-xl-85,
.py-xl-85 {
    padding-top: 85px !important;
  }

  .pr-xl-85,
.px-xl-85 {
    padding-right: 85px !important;
  }

  .pb-xl-85,
.py-xl-85 {
    padding-bottom: 85px !important;
  }

  .pl-xl-85,
.px-xl-85 {
    padding-left: 85px !important;
  }

  .p-xl-80 {
    padding: 80px !important;
  }

  .pt-xl-80,
.py-xl-80 {
    padding-top: 80px !important;
  }

  .pr-xl-80,
.px-xl-80 {
    padding-right: 80px !important;
  }

  .pb-xl-80,
.py-xl-80 {
    padding-bottom: 80px !important;
  }

  .pl-xl-80,
.px-xl-80 {
    padding-left: 80px !important;
  }

  .p-xl-75 {
    padding: 75px !important;
  }

  .pt-xl-75,
.py-xl-75 {
    padding-top: 75px !important;
  }

  .pr-xl-75,
.px-xl-75 {
    padding-right: 75px !important;
  }

  .pb-xl-75,
.py-xl-75 {
    padding-bottom: 75px !important;
  }

  .pl-xl-75,
.px-xl-75 {
    padding-left: 75px !important;
  }

  .p-xl-70 {
    padding: 70px !important;
  }

  .pt-xl-70,
.py-xl-70 {
    padding-top: 70px !important;
  }

  .pr-xl-70,
.px-xl-70 {
    padding-right: 70px !important;
  }

  .pb-xl-70,
.py-xl-70 {
    padding-bottom: 70px !important;
  }

  .pl-xl-70,
.px-xl-70 {
    padding-left: 70px !important;
  }

  .p-xl-65 {
    padding: 65px !important;
  }

  .pt-xl-65,
.py-xl-65 {
    padding-top: 65px !important;
  }

  .pr-xl-65,
.px-xl-65 {
    padding-right: 65px !important;
  }

  .pb-xl-65,
.py-xl-65 {
    padding-bottom: 65px !important;
  }

  .pl-xl-65,
.px-xl-65 {
    padding-left: 65px !important;
  }

  .p-xl-60 {
    padding: 60px !important;
  }

  .pt-xl-60,
.py-xl-60 {
    padding-top: 60px !important;
  }

  .pr-xl-60,
.px-xl-60 {
    padding-right: 60px !important;
  }

  .pb-xl-60,
.py-xl-60 {
    padding-bottom: 60px !important;
  }

  .pl-xl-60,
.px-xl-60 {
    padding-left: 60px !important;
  }

  .p-xl-55 {
    padding: 55px !important;
  }

  .pt-xl-55,
.py-xl-55 {
    padding-top: 55px !important;
  }

  .pr-xl-55,
.px-xl-55 {
    padding-right: 55px !important;
  }

  .pb-xl-55,
.py-xl-55 {
    padding-bottom: 55px !important;
  }

  .pl-xl-55,
.px-xl-55 {
    padding-left: 55px !important;
  }

  .p-xl-50 {
    padding: 50px !important;
  }

  .pt-xl-50,
.py-xl-50 {
    padding-top: 50px !important;
  }

  .pr-xl-50,
.px-xl-50 {
    padding-right: 50px !important;
  }

  .pb-xl-50,
.py-xl-50 {
    padding-bottom: 50px !important;
  }

  .pl-xl-50,
.px-xl-50 {
    padding-left: 50px !important;
  }

  .p-xl-45 {
    padding: 45px !important;
  }

  .pt-xl-45,
.py-xl-45 {
    padding-top: 45px !important;
  }

  .pr-xl-45,
.px-xl-45 {
    padding-right: 45px !important;
  }

  .pb-xl-45,
.py-xl-45 {
    padding-bottom: 45px !important;
  }

  .pl-xl-45,
.px-xl-45 {
    padding-left: 45px !important;
  }

  .p-xl-40 {
    padding: 40px !important;
  }

  .pt-xl-40,
.py-xl-40 {
    padding-top: 40px !important;
  }

  .pr-xl-40,
.px-xl-40 {
    padding-right: 40px !important;
  }

  .pb-xl-40,
.py-xl-40 {
    padding-bottom: 40px !important;
  }

  .pl-xl-40,
.px-xl-40 {
    padding-left: 40px !important;
  }

  .p-xl-35 {
    padding: 35px !important;
  }

  .pt-xl-35,
.py-xl-35 {
    padding-top: 35px !important;
  }

  .pr-xl-35,
.px-xl-35 {
    padding-right: 35px !important;
  }

  .pb-xl-35,
.py-xl-35 {
    padding-bottom: 35px !important;
  }

  .pl-xl-35,
.px-xl-35 {
    padding-left: 35px !important;
  }

  .p-xl-30 {
    padding: 30px !important;
  }

  .pt-xl-30,
.py-xl-30 {
    padding-top: 30px !important;
  }

  .pr-xl-30,
.px-xl-30 {
    padding-right: 30px !important;
  }

  .pb-xl-30,
.py-xl-30 {
    padding-bottom: 30px !important;
  }

  .pl-xl-30,
.px-xl-30 {
    padding-left: 30px !important;
  }

  .p-xl-25 {
    padding: 25px !important;
  }

  .pt-xl-25,
.py-xl-25 {
    padding-top: 25px !important;
  }

  .pr-xl-25,
.px-xl-25 {
    padding-right: 25px !important;
  }

  .pb-xl-25,
.py-xl-25 {
    padding-bottom: 25px !important;
  }

  .pl-xl-25,
.px-xl-25 {
    padding-left: 25px !important;
  }

  .p-xl-20 {
    padding: 20px !important;
  }

  .pt-xl-20,
.py-xl-20 {
    padding-top: 20px !important;
  }

  .pr-xl-20,
.px-xl-20 {
    padding-right: 20px !important;
  }

  .pb-xl-20,
.py-xl-20 {
    padding-bottom: 20px !important;
  }

  .pl-xl-20,
.px-xl-20 {
    padding-left: 20px !important;
  }

  .p-xl-15 {
    padding: 15px !important;
  }

  .pt-xl-15,
.py-xl-15 {
    padding-top: 15px !important;
  }

  .pr-xl-15,
.px-xl-15 {
    padding-right: 15px !important;
  }

  .pb-xl-15,
.py-xl-15 {
    padding-bottom: 15px !important;
  }

  .pl-xl-15,
.px-xl-15 {
    padding-left: 15px !important;
  }

  .p-xl-10 {
    padding: 10px !important;
  }

  .pt-xl-10,
.py-xl-10 {
    padding-top: 10px !important;
  }

  .pr-xl-10,
.px-xl-10 {
    padding-right: 10px !important;
  }

  .pb-xl-10,
.py-xl-10 {
    padding-bottom: 10px !important;
  }

  .pl-xl-10,
.px-xl-10 {
    padding-left: 10px !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: -5px !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -5px !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -5px !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -5px !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -5px !important;
  }

  .m-xl-n100 {
    margin: -100px !important;
  }

  .mt-xl-n100,
.my-xl-n100 {
    margin-top: -100px !important;
  }

  .mr-xl-n100,
.mx-xl-n100 {
    margin-right: -100px !important;
  }

  .mb-xl-n100,
.my-xl-n100 {
    margin-bottom: -100px !important;
  }

  .ml-xl-n100,
.mx-xl-n100 {
    margin-left: -100px !important;
  }

  .m-xl-n95 {
    margin: -95px !important;
  }

  .mt-xl-n95,
.my-xl-n95 {
    margin-top: -95px !important;
  }

  .mr-xl-n95,
.mx-xl-n95 {
    margin-right: -95px !important;
  }

  .mb-xl-n95,
.my-xl-n95 {
    margin-bottom: -95px !important;
  }

  .ml-xl-n95,
.mx-xl-n95 {
    margin-left: -95px !important;
  }

  .m-xl-n90 {
    margin: -90px !important;
  }

  .mt-xl-n90,
.my-xl-n90 {
    margin-top: -90px !important;
  }

  .mr-xl-n90,
.mx-xl-n90 {
    margin-right: -90px !important;
  }

  .mb-xl-n90,
.my-xl-n90 {
    margin-bottom: -90px !important;
  }

  .ml-xl-n90,
.mx-xl-n90 {
    margin-left: -90px !important;
  }

  .m-xl-n85 {
    margin: -85px !important;
  }

  .mt-xl-n85,
.my-xl-n85 {
    margin-top: -85px !important;
  }

  .mr-xl-n85,
.mx-xl-n85 {
    margin-right: -85px !important;
  }

  .mb-xl-n85,
.my-xl-n85 {
    margin-bottom: -85px !important;
  }

  .ml-xl-n85,
.mx-xl-n85 {
    margin-left: -85px !important;
  }

  .m-xl-n80 {
    margin: -80px !important;
  }

  .mt-xl-n80,
.my-xl-n80 {
    margin-top: -80px !important;
  }

  .mr-xl-n80,
.mx-xl-n80 {
    margin-right: -80px !important;
  }

  .mb-xl-n80,
.my-xl-n80 {
    margin-bottom: -80px !important;
  }

  .ml-xl-n80,
.mx-xl-n80 {
    margin-left: -80px !important;
  }

  .m-xl-n75 {
    margin: -75px !important;
  }

  .mt-xl-n75,
.my-xl-n75 {
    margin-top: -75px !important;
  }

  .mr-xl-n75,
.mx-xl-n75 {
    margin-right: -75px !important;
  }

  .mb-xl-n75,
.my-xl-n75 {
    margin-bottom: -75px !important;
  }

  .ml-xl-n75,
.mx-xl-n75 {
    margin-left: -75px !important;
  }

  .m-xl-n70 {
    margin: -70px !important;
  }

  .mt-xl-n70,
.my-xl-n70 {
    margin-top: -70px !important;
  }

  .mr-xl-n70,
.mx-xl-n70 {
    margin-right: -70px !important;
  }

  .mb-xl-n70,
.my-xl-n70 {
    margin-bottom: -70px !important;
  }

  .ml-xl-n70,
.mx-xl-n70 {
    margin-left: -70px !important;
  }

  .m-xl-n65 {
    margin: -65px !important;
  }

  .mt-xl-n65,
.my-xl-n65 {
    margin-top: -65px !important;
  }

  .mr-xl-n65,
.mx-xl-n65 {
    margin-right: -65px !important;
  }

  .mb-xl-n65,
.my-xl-n65 {
    margin-bottom: -65px !important;
  }

  .ml-xl-n65,
.mx-xl-n65 {
    margin-left: -65px !important;
  }

  .m-xl-n60 {
    margin: -60px !important;
  }

  .mt-xl-n60,
.my-xl-n60 {
    margin-top: -60px !important;
  }

  .mr-xl-n60,
.mx-xl-n60 {
    margin-right: -60px !important;
  }

  .mb-xl-n60,
.my-xl-n60 {
    margin-bottom: -60px !important;
  }

  .ml-xl-n60,
.mx-xl-n60 {
    margin-left: -60px !important;
  }

  .m-xl-n55 {
    margin: -55px !important;
  }

  .mt-xl-n55,
.my-xl-n55 {
    margin-top: -55px !important;
  }

  .mr-xl-n55,
.mx-xl-n55 {
    margin-right: -55px !important;
  }

  .mb-xl-n55,
.my-xl-n55 {
    margin-bottom: -55px !important;
  }

  .ml-xl-n55,
.mx-xl-n55 {
    margin-left: -55px !important;
  }

  .m-xl-n50 {
    margin: -50px !important;
  }

  .mt-xl-n50,
.my-xl-n50 {
    margin-top: -50px !important;
  }

  .mr-xl-n50,
.mx-xl-n50 {
    margin-right: -50px !important;
  }

  .mb-xl-n50,
.my-xl-n50 {
    margin-bottom: -50px !important;
  }

  .ml-xl-n50,
.mx-xl-n50 {
    margin-left: -50px !important;
  }

  .m-xl-n45 {
    margin: -45px !important;
  }

  .mt-xl-n45,
.my-xl-n45 {
    margin-top: -45px !important;
  }

  .mr-xl-n45,
.mx-xl-n45 {
    margin-right: -45px !important;
  }

  .mb-xl-n45,
.my-xl-n45 {
    margin-bottom: -45px !important;
  }

  .ml-xl-n45,
.mx-xl-n45 {
    margin-left: -45px !important;
  }

  .m-xl-n40 {
    margin: -40px !important;
  }

  .mt-xl-n40,
.my-xl-n40 {
    margin-top: -40px !important;
  }

  .mr-xl-n40,
.mx-xl-n40 {
    margin-right: -40px !important;
  }

  .mb-xl-n40,
.my-xl-n40 {
    margin-bottom: -40px !important;
  }

  .ml-xl-n40,
.mx-xl-n40 {
    margin-left: -40px !important;
  }

  .m-xl-n35 {
    margin: -35px !important;
  }

  .mt-xl-n35,
.my-xl-n35 {
    margin-top: -35px !important;
  }

  .mr-xl-n35,
.mx-xl-n35 {
    margin-right: -35px !important;
  }

  .mb-xl-n35,
.my-xl-n35 {
    margin-bottom: -35px !important;
  }

  .ml-xl-n35,
.mx-xl-n35 {
    margin-left: -35px !important;
  }

  .m-xl-n30 {
    margin: -30px !important;
  }

  .mt-xl-n30,
.my-xl-n30 {
    margin-top: -30px !important;
  }

  .mr-xl-n30,
.mx-xl-n30 {
    margin-right: -30px !important;
  }

  .mb-xl-n30,
.my-xl-n30 {
    margin-bottom: -30px !important;
  }

  .ml-xl-n30,
.mx-xl-n30 {
    margin-left: -30px !important;
  }

  .m-xl-n25 {
    margin: -25px !important;
  }

  .mt-xl-n25,
.my-xl-n25 {
    margin-top: -25px !important;
  }

  .mr-xl-n25,
.mx-xl-n25 {
    margin-right: -25px !important;
  }

  .mb-xl-n25,
.my-xl-n25 {
    margin-bottom: -25px !important;
  }

  .ml-xl-n25,
.mx-xl-n25 {
    margin-left: -25px !important;
  }

  .m-xl-n20 {
    margin: -20px !important;
  }

  .mt-xl-n20,
.my-xl-n20 {
    margin-top: -20px !important;
  }

  .mr-xl-n20,
.mx-xl-n20 {
    margin-right: -20px !important;
  }

  .mb-xl-n20,
.my-xl-n20 {
    margin-bottom: -20px !important;
  }

  .ml-xl-n20,
.mx-xl-n20 {
    margin-left: -20px !important;
  }

  .m-xl-n15 {
    margin: -15px !important;
  }

  .mt-xl-n15,
.my-xl-n15 {
    margin-top: -15px !important;
  }

  .mr-xl-n15,
.mx-xl-n15 {
    margin-right: -15px !important;
  }

  .mb-xl-n15,
.my-xl-n15 {
    margin-bottom: -15px !important;
  }

  .ml-xl-n15,
.mx-xl-n15 {
    margin-left: -15px !important;
  }

  .m-xl-n10 {
    margin: -10px !important;
  }

  .mt-xl-n10,
.my-xl-n10 {
    margin-top: -10px !important;
  }

  .mr-xl-n10,
.mx-xl-n10 {
    margin-right: -10px !important;
  }

  .mb-xl-n10,
.my-xl-n10 {
    margin-bottom: -10px !important;
  }

  .ml-xl-n10,
.mx-xl-n10 {
    margin-left: -10px !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;
  }
}
@media (min-width: 1440px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 5px !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 5px !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 5px !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 5px !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 5px !important;
  }

  .m-xxl-100 {
    margin: 100px !important;
  }

  .mt-xxl-100,
.my-xxl-100 {
    margin-top: 100px !important;
  }

  .mr-xxl-100,
.mx-xxl-100 {
    margin-right: 100px !important;
  }

  .mb-xxl-100,
.my-xxl-100 {
    margin-bottom: 100px !important;
  }

  .ml-xxl-100,
.mx-xxl-100 {
    margin-left: 100px !important;
  }

  .m-xxl-95 {
    margin: 95px !important;
  }

  .mt-xxl-95,
.my-xxl-95 {
    margin-top: 95px !important;
  }

  .mr-xxl-95,
.mx-xxl-95 {
    margin-right: 95px !important;
  }

  .mb-xxl-95,
.my-xxl-95 {
    margin-bottom: 95px !important;
  }

  .ml-xxl-95,
.mx-xxl-95 {
    margin-left: 95px !important;
  }

  .m-xxl-90 {
    margin: 90px !important;
  }

  .mt-xxl-90,
.my-xxl-90 {
    margin-top: 90px !important;
  }

  .mr-xxl-90,
.mx-xxl-90 {
    margin-right: 90px !important;
  }

  .mb-xxl-90,
.my-xxl-90 {
    margin-bottom: 90px !important;
  }

  .ml-xxl-90,
.mx-xxl-90 {
    margin-left: 90px !important;
  }

  .m-xxl-85 {
    margin: 85px !important;
  }

  .mt-xxl-85,
.my-xxl-85 {
    margin-top: 85px !important;
  }

  .mr-xxl-85,
.mx-xxl-85 {
    margin-right: 85px !important;
  }

  .mb-xxl-85,
.my-xxl-85 {
    margin-bottom: 85px !important;
  }

  .ml-xxl-85,
.mx-xxl-85 {
    margin-left: 85px !important;
  }

  .m-xxl-80 {
    margin: 80px !important;
  }

  .mt-xxl-80,
.my-xxl-80 {
    margin-top: 80px !important;
  }

  .mr-xxl-80,
.mx-xxl-80 {
    margin-right: 80px !important;
  }

  .mb-xxl-80,
.my-xxl-80 {
    margin-bottom: 80px !important;
  }

  .ml-xxl-80,
.mx-xxl-80 {
    margin-left: 80px !important;
  }

  .m-xxl-75 {
    margin: 75px !important;
  }

  .mt-xxl-75,
.my-xxl-75 {
    margin-top: 75px !important;
  }

  .mr-xxl-75,
.mx-xxl-75 {
    margin-right: 75px !important;
  }

  .mb-xxl-75,
.my-xxl-75 {
    margin-bottom: 75px !important;
  }

  .ml-xxl-75,
.mx-xxl-75 {
    margin-left: 75px !important;
  }

  .m-xxl-70 {
    margin: 70px !important;
  }

  .mt-xxl-70,
.my-xxl-70 {
    margin-top: 70px !important;
  }

  .mr-xxl-70,
.mx-xxl-70 {
    margin-right: 70px !important;
  }

  .mb-xxl-70,
.my-xxl-70 {
    margin-bottom: 70px !important;
  }

  .ml-xxl-70,
.mx-xxl-70 {
    margin-left: 70px !important;
  }

  .m-xxl-65 {
    margin: 65px !important;
  }

  .mt-xxl-65,
.my-xxl-65 {
    margin-top: 65px !important;
  }

  .mr-xxl-65,
.mx-xxl-65 {
    margin-right: 65px !important;
  }

  .mb-xxl-65,
.my-xxl-65 {
    margin-bottom: 65px !important;
  }

  .ml-xxl-65,
.mx-xxl-65 {
    margin-left: 65px !important;
  }

  .m-xxl-60 {
    margin: 60px !important;
  }

  .mt-xxl-60,
.my-xxl-60 {
    margin-top: 60px !important;
  }

  .mr-xxl-60,
.mx-xxl-60 {
    margin-right: 60px !important;
  }

  .mb-xxl-60,
.my-xxl-60 {
    margin-bottom: 60px !important;
  }

  .ml-xxl-60,
.mx-xxl-60 {
    margin-left: 60px !important;
  }

  .m-xxl-55 {
    margin: 55px !important;
  }

  .mt-xxl-55,
.my-xxl-55 {
    margin-top: 55px !important;
  }

  .mr-xxl-55,
.mx-xxl-55 {
    margin-right: 55px !important;
  }

  .mb-xxl-55,
.my-xxl-55 {
    margin-bottom: 55px !important;
  }

  .ml-xxl-55,
.mx-xxl-55 {
    margin-left: 55px !important;
  }

  .m-xxl-50 {
    margin: 50px !important;
  }

  .mt-xxl-50,
.my-xxl-50 {
    margin-top: 50px !important;
  }

  .mr-xxl-50,
.mx-xxl-50 {
    margin-right: 50px !important;
  }

  .mb-xxl-50,
.my-xxl-50 {
    margin-bottom: 50px !important;
  }

  .ml-xxl-50,
.mx-xxl-50 {
    margin-left: 50px !important;
  }

  .m-xxl-45 {
    margin: 45px !important;
  }

  .mt-xxl-45,
.my-xxl-45 {
    margin-top: 45px !important;
  }

  .mr-xxl-45,
.mx-xxl-45 {
    margin-right: 45px !important;
  }

  .mb-xxl-45,
.my-xxl-45 {
    margin-bottom: 45px !important;
  }

  .ml-xxl-45,
.mx-xxl-45 {
    margin-left: 45px !important;
  }

  .m-xxl-40 {
    margin: 40px !important;
  }

  .mt-xxl-40,
.my-xxl-40 {
    margin-top: 40px !important;
  }

  .mr-xxl-40,
.mx-xxl-40 {
    margin-right: 40px !important;
  }

  .mb-xxl-40,
.my-xxl-40 {
    margin-bottom: 40px !important;
  }

  .ml-xxl-40,
.mx-xxl-40 {
    margin-left: 40px !important;
  }

  .m-xxl-35 {
    margin: 35px !important;
  }

  .mt-xxl-35,
.my-xxl-35 {
    margin-top: 35px !important;
  }

  .mr-xxl-35,
.mx-xxl-35 {
    margin-right: 35px !important;
  }

  .mb-xxl-35,
.my-xxl-35 {
    margin-bottom: 35px !important;
  }

  .ml-xxl-35,
.mx-xxl-35 {
    margin-left: 35px !important;
  }

  .m-xxl-30 {
    margin: 30px !important;
  }

  .mt-xxl-30,
.my-xxl-30 {
    margin-top: 30px !important;
  }

  .mr-xxl-30,
.mx-xxl-30 {
    margin-right: 30px !important;
  }

  .mb-xxl-30,
.my-xxl-30 {
    margin-bottom: 30px !important;
  }

  .ml-xxl-30,
.mx-xxl-30 {
    margin-left: 30px !important;
  }

  .m-xxl-25 {
    margin: 25px !important;
  }

  .mt-xxl-25,
.my-xxl-25 {
    margin-top: 25px !important;
  }

  .mr-xxl-25,
.mx-xxl-25 {
    margin-right: 25px !important;
  }

  .mb-xxl-25,
.my-xxl-25 {
    margin-bottom: 25px !important;
  }

  .ml-xxl-25,
.mx-xxl-25 {
    margin-left: 25px !important;
  }

  .m-xxl-20 {
    margin: 20px !important;
  }

  .mt-xxl-20,
.my-xxl-20 {
    margin-top: 20px !important;
  }

  .mr-xxl-20,
.mx-xxl-20 {
    margin-right: 20px !important;
  }

  .mb-xxl-20,
.my-xxl-20 {
    margin-bottom: 20px !important;
  }

  .ml-xxl-20,
.mx-xxl-20 {
    margin-left: 20px !important;
  }

  .m-xxl-15 {
    margin: 15px !important;
  }

  .mt-xxl-15,
.my-xxl-15 {
    margin-top: 15px !important;
  }

  .mr-xxl-15,
.mx-xxl-15 {
    margin-right: 15px !important;
  }

  .mb-xxl-15,
.my-xxl-15 {
    margin-bottom: 15px !important;
  }

  .ml-xxl-15,
.mx-xxl-15 {
    margin-left: 15px !important;
  }

  .m-xxl-10 {
    margin: 10px !important;
  }

  .mt-xxl-10,
.my-xxl-10 {
    margin-top: 10px !important;
  }

  .mr-xxl-10,
.mx-xxl-10 {
    margin-right: 10px !important;
  }

  .mb-xxl-10,
.my-xxl-10 {
    margin-bottom: 10px !important;
  }

  .ml-xxl-10,
.mx-xxl-10 {
    margin-left: 10px !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 5px !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 5px !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 5px !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 5px !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 5px !important;
  }

  .p-xxl-100 {
    padding: 100px !important;
  }

  .pt-xxl-100,
.py-xxl-100 {
    padding-top: 100px !important;
  }

  .pr-xxl-100,
.px-xxl-100 {
    padding-right: 100px !important;
  }

  .pb-xxl-100,
.py-xxl-100 {
    padding-bottom: 100px !important;
  }

  .pl-xxl-100,
.px-xxl-100 {
    padding-left: 100px !important;
  }

  .p-xxl-95 {
    padding: 95px !important;
  }

  .pt-xxl-95,
.py-xxl-95 {
    padding-top: 95px !important;
  }

  .pr-xxl-95,
.px-xxl-95 {
    padding-right: 95px !important;
  }

  .pb-xxl-95,
.py-xxl-95 {
    padding-bottom: 95px !important;
  }

  .pl-xxl-95,
.px-xxl-95 {
    padding-left: 95px !important;
  }

  .p-xxl-90 {
    padding: 90px !important;
  }

  .pt-xxl-90,
.py-xxl-90 {
    padding-top: 90px !important;
  }

  .pr-xxl-90,
.px-xxl-90 {
    padding-right: 90px !important;
  }

  .pb-xxl-90,
.py-xxl-90 {
    padding-bottom: 90px !important;
  }

  .pl-xxl-90,
.px-xxl-90 {
    padding-left: 90px !important;
  }

  .p-xxl-85 {
    padding: 85px !important;
  }

  .pt-xxl-85,
.py-xxl-85 {
    padding-top: 85px !important;
  }

  .pr-xxl-85,
.px-xxl-85 {
    padding-right: 85px !important;
  }

  .pb-xxl-85,
.py-xxl-85 {
    padding-bottom: 85px !important;
  }

  .pl-xxl-85,
.px-xxl-85 {
    padding-left: 85px !important;
  }

  .p-xxl-80 {
    padding: 80px !important;
  }

  .pt-xxl-80,
.py-xxl-80 {
    padding-top: 80px !important;
  }

  .pr-xxl-80,
.px-xxl-80 {
    padding-right: 80px !important;
  }

  .pb-xxl-80,
.py-xxl-80 {
    padding-bottom: 80px !important;
  }

  .pl-xxl-80,
.px-xxl-80 {
    padding-left: 80px !important;
  }

  .p-xxl-75 {
    padding: 75px !important;
  }

  .pt-xxl-75,
.py-xxl-75 {
    padding-top: 75px !important;
  }

  .pr-xxl-75,
.px-xxl-75 {
    padding-right: 75px !important;
  }

  .pb-xxl-75,
.py-xxl-75 {
    padding-bottom: 75px !important;
  }

  .pl-xxl-75,
.px-xxl-75 {
    padding-left: 75px !important;
  }

  .p-xxl-70 {
    padding: 70px !important;
  }

  .pt-xxl-70,
.py-xxl-70 {
    padding-top: 70px !important;
  }

  .pr-xxl-70,
.px-xxl-70 {
    padding-right: 70px !important;
  }

  .pb-xxl-70,
.py-xxl-70 {
    padding-bottom: 70px !important;
  }

  .pl-xxl-70,
.px-xxl-70 {
    padding-left: 70px !important;
  }

  .p-xxl-65 {
    padding: 65px !important;
  }

  .pt-xxl-65,
.py-xxl-65 {
    padding-top: 65px !important;
  }

  .pr-xxl-65,
.px-xxl-65 {
    padding-right: 65px !important;
  }

  .pb-xxl-65,
.py-xxl-65 {
    padding-bottom: 65px !important;
  }

  .pl-xxl-65,
.px-xxl-65 {
    padding-left: 65px !important;
  }

  .p-xxl-60 {
    padding: 60px !important;
  }

  .pt-xxl-60,
.py-xxl-60 {
    padding-top: 60px !important;
  }

  .pr-xxl-60,
.px-xxl-60 {
    padding-right: 60px !important;
  }

  .pb-xxl-60,
.py-xxl-60 {
    padding-bottom: 60px !important;
  }

  .pl-xxl-60,
.px-xxl-60 {
    padding-left: 60px !important;
  }

  .p-xxl-55 {
    padding: 55px !important;
  }

  .pt-xxl-55,
.py-xxl-55 {
    padding-top: 55px !important;
  }

  .pr-xxl-55,
.px-xxl-55 {
    padding-right: 55px !important;
  }

  .pb-xxl-55,
.py-xxl-55 {
    padding-bottom: 55px !important;
  }

  .pl-xxl-55,
.px-xxl-55 {
    padding-left: 55px !important;
  }

  .p-xxl-50 {
    padding: 50px !important;
  }

  .pt-xxl-50,
.py-xxl-50 {
    padding-top: 50px !important;
  }

  .pr-xxl-50,
.px-xxl-50 {
    padding-right: 50px !important;
  }

  .pb-xxl-50,
.py-xxl-50 {
    padding-bottom: 50px !important;
  }

  .pl-xxl-50,
.px-xxl-50 {
    padding-left: 50px !important;
  }

  .p-xxl-45 {
    padding: 45px !important;
  }

  .pt-xxl-45,
.py-xxl-45 {
    padding-top: 45px !important;
  }

  .pr-xxl-45,
.px-xxl-45 {
    padding-right: 45px !important;
  }

  .pb-xxl-45,
.py-xxl-45 {
    padding-bottom: 45px !important;
  }

  .pl-xxl-45,
.px-xxl-45 {
    padding-left: 45px !important;
  }

  .p-xxl-40 {
    padding: 40px !important;
  }

  .pt-xxl-40,
.py-xxl-40 {
    padding-top: 40px !important;
  }

  .pr-xxl-40,
.px-xxl-40 {
    padding-right: 40px !important;
  }

  .pb-xxl-40,
.py-xxl-40 {
    padding-bottom: 40px !important;
  }

  .pl-xxl-40,
.px-xxl-40 {
    padding-left: 40px !important;
  }

  .p-xxl-35 {
    padding: 35px !important;
  }

  .pt-xxl-35,
.py-xxl-35 {
    padding-top: 35px !important;
  }

  .pr-xxl-35,
.px-xxl-35 {
    padding-right: 35px !important;
  }

  .pb-xxl-35,
.py-xxl-35 {
    padding-bottom: 35px !important;
  }

  .pl-xxl-35,
.px-xxl-35 {
    padding-left: 35px !important;
  }

  .p-xxl-30 {
    padding: 30px !important;
  }

  .pt-xxl-30,
.py-xxl-30 {
    padding-top: 30px !important;
  }

  .pr-xxl-30,
.px-xxl-30 {
    padding-right: 30px !important;
  }

  .pb-xxl-30,
.py-xxl-30 {
    padding-bottom: 30px !important;
  }

  .pl-xxl-30,
.px-xxl-30 {
    padding-left: 30px !important;
  }

  .p-xxl-25 {
    padding: 25px !important;
  }

  .pt-xxl-25,
.py-xxl-25 {
    padding-top: 25px !important;
  }

  .pr-xxl-25,
.px-xxl-25 {
    padding-right: 25px !important;
  }

  .pb-xxl-25,
.py-xxl-25 {
    padding-bottom: 25px !important;
  }

  .pl-xxl-25,
.px-xxl-25 {
    padding-left: 25px !important;
  }

  .p-xxl-20 {
    padding: 20px !important;
  }

  .pt-xxl-20,
.py-xxl-20 {
    padding-top: 20px !important;
  }

  .pr-xxl-20,
.px-xxl-20 {
    padding-right: 20px !important;
  }

  .pb-xxl-20,
.py-xxl-20 {
    padding-bottom: 20px !important;
  }

  .pl-xxl-20,
.px-xxl-20 {
    padding-left: 20px !important;
  }

  .p-xxl-15 {
    padding: 15px !important;
  }

  .pt-xxl-15,
.py-xxl-15 {
    padding-top: 15px !important;
  }

  .pr-xxl-15,
.px-xxl-15 {
    padding-right: 15px !important;
  }

  .pb-xxl-15,
.py-xxl-15 {
    padding-bottom: 15px !important;
  }

  .pl-xxl-15,
.px-xxl-15 {
    padding-left: 15px !important;
  }

  .p-xxl-10 {
    padding: 10px !important;
  }

  .pt-xxl-10,
.py-xxl-10 {
    padding-top: 10px !important;
  }

  .pr-xxl-10,
.px-xxl-10 {
    padding-right: 10px !important;
  }

  .pb-xxl-10,
.py-xxl-10 {
    padding-bottom: 10px !important;
  }

  .pl-xxl-10,
.px-xxl-10 {
    padding-left: 10px !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -5px !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -5px !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -5px !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -5px !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -5px !important;
  }

  .m-xxl-n100 {
    margin: -100px !important;
  }

  .mt-xxl-n100,
.my-xxl-n100 {
    margin-top: -100px !important;
  }

  .mr-xxl-n100,
.mx-xxl-n100 {
    margin-right: -100px !important;
  }

  .mb-xxl-n100,
.my-xxl-n100 {
    margin-bottom: -100px !important;
  }

  .ml-xxl-n100,
.mx-xxl-n100 {
    margin-left: -100px !important;
  }

  .m-xxl-n95 {
    margin: -95px !important;
  }

  .mt-xxl-n95,
.my-xxl-n95 {
    margin-top: -95px !important;
  }

  .mr-xxl-n95,
.mx-xxl-n95 {
    margin-right: -95px !important;
  }

  .mb-xxl-n95,
.my-xxl-n95 {
    margin-bottom: -95px !important;
  }

  .ml-xxl-n95,
.mx-xxl-n95 {
    margin-left: -95px !important;
  }

  .m-xxl-n90 {
    margin: -90px !important;
  }

  .mt-xxl-n90,
.my-xxl-n90 {
    margin-top: -90px !important;
  }

  .mr-xxl-n90,
.mx-xxl-n90 {
    margin-right: -90px !important;
  }

  .mb-xxl-n90,
.my-xxl-n90 {
    margin-bottom: -90px !important;
  }

  .ml-xxl-n90,
.mx-xxl-n90 {
    margin-left: -90px !important;
  }

  .m-xxl-n85 {
    margin: -85px !important;
  }

  .mt-xxl-n85,
.my-xxl-n85 {
    margin-top: -85px !important;
  }

  .mr-xxl-n85,
.mx-xxl-n85 {
    margin-right: -85px !important;
  }

  .mb-xxl-n85,
.my-xxl-n85 {
    margin-bottom: -85px !important;
  }

  .ml-xxl-n85,
.mx-xxl-n85 {
    margin-left: -85px !important;
  }

  .m-xxl-n80 {
    margin: -80px !important;
  }

  .mt-xxl-n80,
.my-xxl-n80 {
    margin-top: -80px !important;
  }

  .mr-xxl-n80,
.mx-xxl-n80 {
    margin-right: -80px !important;
  }

  .mb-xxl-n80,
.my-xxl-n80 {
    margin-bottom: -80px !important;
  }

  .ml-xxl-n80,
.mx-xxl-n80 {
    margin-left: -80px !important;
  }

  .m-xxl-n75 {
    margin: -75px !important;
  }

  .mt-xxl-n75,
.my-xxl-n75 {
    margin-top: -75px !important;
  }

  .mr-xxl-n75,
.mx-xxl-n75 {
    margin-right: -75px !important;
  }

  .mb-xxl-n75,
.my-xxl-n75 {
    margin-bottom: -75px !important;
  }

  .ml-xxl-n75,
.mx-xxl-n75 {
    margin-left: -75px !important;
  }

  .m-xxl-n70 {
    margin: -70px !important;
  }

  .mt-xxl-n70,
.my-xxl-n70 {
    margin-top: -70px !important;
  }

  .mr-xxl-n70,
.mx-xxl-n70 {
    margin-right: -70px !important;
  }

  .mb-xxl-n70,
.my-xxl-n70 {
    margin-bottom: -70px !important;
  }

  .ml-xxl-n70,
.mx-xxl-n70 {
    margin-left: -70px !important;
  }

  .m-xxl-n65 {
    margin: -65px !important;
  }

  .mt-xxl-n65,
.my-xxl-n65 {
    margin-top: -65px !important;
  }

  .mr-xxl-n65,
.mx-xxl-n65 {
    margin-right: -65px !important;
  }

  .mb-xxl-n65,
.my-xxl-n65 {
    margin-bottom: -65px !important;
  }

  .ml-xxl-n65,
.mx-xxl-n65 {
    margin-left: -65px !important;
  }

  .m-xxl-n60 {
    margin: -60px !important;
  }

  .mt-xxl-n60,
.my-xxl-n60 {
    margin-top: -60px !important;
  }

  .mr-xxl-n60,
.mx-xxl-n60 {
    margin-right: -60px !important;
  }

  .mb-xxl-n60,
.my-xxl-n60 {
    margin-bottom: -60px !important;
  }

  .ml-xxl-n60,
.mx-xxl-n60 {
    margin-left: -60px !important;
  }

  .m-xxl-n55 {
    margin: -55px !important;
  }

  .mt-xxl-n55,
.my-xxl-n55 {
    margin-top: -55px !important;
  }

  .mr-xxl-n55,
.mx-xxl-n55 {
    margin-right: -55px !important;
  }

  .mb-xxl-n55,
.my-xxl-n55 {
    margin-bottom: -55px !important;
  }

  .ml-xxl-n55,
.mx-xxl-n55 {
    margin-left: -55px !important;
  }

  .m-xxl-n50 {
    margin: -50px !important;
  }

  .mt-xxl-n50,
.my-xxl-n50 {
    margin-top: -50px !important;
  }

  .mr-xxl-n50,
.mx-xxl-n50 {
    margin-right: -50px !important;
  }

  .mb-xxl-n50,
.my-xxl-n50 {
    margin-bottom: -50px !important;
  }

  .ml-xxl-n50,
.mx-xxl-n50 {
    margin-left: -50px !important;
  }

  .m-xxl-n45 {
    margin: -45px !important;
  }

  .mt-xxl-n45,
.my-xxl-n45 {
    margin-top: -45px !important;
  }

  .mr-xxl-n45,
.mx-xxl-n45 {
    margin-right: -45px !important;
  }

  .mb-xxl-n45,
.my-xxl-n45 {
    margin-bottom: -45px !important;
  }

  .ml-xxl-n45,
.mx-xxl-n45 {
    margin-left: -45px !important;
  }

  .m-xxl-n40 {
    margin: -40px !important;
  }

  .mt-xxl-n40,
.my-xxl-n40 {
    margin-top: -40px !important;
  }

  .mr-xxl-n40,
.mx-xxl-n40 {
    margin-right: -40px !important;
  }

  .mb-xxl-n40,
.my-xxl-n40 {
    margin-bottom: -40px !important;
  }

  .ml-xxl-n40,
.mx-xxl-n40 {
    margin-left: -40px !important;
  }

  .m-xxl-n35 {
    margin: -35px !important;
  }

  .mt-xxl-n35,
.my-xxl-n35 {
    margin-top: -35px !important;
  }

  .mr-xxl-n35,
.mx-xxl-n35 {
    margin-right: -35px !important;
  }

  .mb-xxl-n35,
.my-xxl-n35 {
    margin-bottom: -35px !important;
  }

  .ml-xxl-n35,
.mx-xxl-n35 {
    margin-left: -35px !important;
  }

  .m-xxl-n30 {
    margin: -30px !important;
  }

  .mt-xxl-n30,
.my-xxl-n30 {
    margin-top: -30px !important;
  }

  .mr-xxl-n30,
.mx-xxl-n30 {
    margin-right: -30px !important;
  }

  .mb-xxl-n30,
.my-xxl-n30 {
    margin-bottom: -30px !important;
  }

  .ml-xxl-n30,
.mx-xxl-n30 {
    margin-left: -30px !important;
  }

  .m-xxl-n25 {
    margin: -25px !important;
  }

  .mt-xxl-n25,
.my-xxl-n25 {
    margin-top: -25px !important;
  }

  .mr-xxl-n25,
.mx-xxl-n25 {
    margin-right: -25px !important;
  }

  .mb-xxl-n25,
.my-xxl-n25 {
    margin-bottom: -25px !important;
  }

  .ml-xxl-n25,
.mx-xxl-n25 {
    margin-left: -25px !important;
  }

  .m-xxl-n20 {
    margin: -20px !important;
  }

  .mt-xxl-n20,
.my-xxl-n20 {
    margin-top: -20px !important;
  }

  .mr-xxl-n20,
.mx-xxl-n20 {
    margin-right: -20px !important;
  }

  .mb-xxl-n20,
.my-xxl-n20 {
    margin-bottom: -20px !important;
  }

  .ml-xxl-n20,
.mx-xxl-n20 {
    margin-left: -20px !important;
  }

  .m-xxl-n15 {
    margin: -15px !important;
  }

  .mt-xxl-n15,
.my-xxl-n15 {
    margin-top: -15px !important;
  }

  .mr-xxl-n15,
.mx-xxl-n15 {
    margin-right: -15px !important;
  }

  .mb-xxl-n15,
.my-xxl-n15 {
    margin-bottom: -15px !important;
  }

  .ml-xxl-n15,
.mx-xxl-n15 {
    margin-left: -15px !important;
  }

  .m-xxl-n10 {
    margin: -10px !important;
  }

  .mt-xxl-n10,
.my-xxl-n10 {
    margin-top: -10px !important;
  }

  .mr-xxl-n10,
.mx-xxl-n10 {
    margin-right: -10px !important;
  }

  .mb-xxl-n10,
.my-xxl-n10 {
    margin-bottom: -10px !important;
  }

  .ml-xxl-n10,
.mx-xxl-n10 {
    margin-left: -10px !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-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;
  }
}
@media (min-width: 1440px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-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-primary {
  color: #ed8116 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #a95b0d !important;
}

.text-secondary {
  color: #50bef1 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #12a0e2 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #fefefe !important;
}

a.text-light:hover, a.text-light:focus {
  color: #d8d8d8 !important;
}

.text-dark {
  color: #021627 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: black !important;
}

.text-primary-dark {
  color: #c0551a !important;
}

a.text-primary-dark:hover, a.text-primary-dark:focus {
  color: #7d3711 !important;
}

.text-secondary-very-dark {
  color: #053968 !important;
}

a.text-secondary-very-dark:hover, a.text-secondary-very-dark:focus {
  color: #01111f !important;
}

.text-secondary-dark {
  color: #0b5998 !important;
}

a.text-secondary-dark:hover, a.text-secondary-dark:focus {
  color: #062f51 !important;
}

.text-secondary-light {
  color: #b0e0f8 !important;
}

a.text-secondary-light:hover, a.text-secondary-light:focus {
  color: #6ac4f2 !important;
}

.text-secondary-very-light {
  color: #d5effa !important;
}

a.text-secondary-very-light:hover, a.text-secondary-very-light:focus {
  color: #91d5f2 !important;
}

.text-tertiary {
  color: #4f5b67 !important;
}

a.text-tertiary:hover, a.text-tertiary:focus {
  color: #2e353c !important;
}

.text-tertiary-light {
  color: #e5eaf0 !important;
}

a.text-tertiary-light:hover, a.text-tertiary-light:focus {
  color: #b4c3d4 !important;
}

.text-quaternary {
  color: #edb416 !important;
}

a.text-quaternary:hover, a.text-quaternary:focus {
  color: #a9800d !important;
}

.text-body {
  color: #4f5b67 !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;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .fusion-form legend, .collapse-item__control, .h6 {
  margin-bottom: calc(1rem / 2);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #021627;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5, .fusion-form legend, .collapse-item__control {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 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;
  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:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #f6c18c;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 129, 22, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

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-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, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          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%;
  left: 0;
  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;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%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: right calc(0.375em + 0.1875rem) center;
  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 textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: 2.25rem;
  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(0.75em + 2.3125rem);
  background: url("data:image/svg+xml;charset=utf8,%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, #fff url("data:image/svg+xml;charset=utf8,%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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.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 .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: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: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%;
  left: 0;
  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;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' 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: right calc(0.375em + 0.1875rem) center;
  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 textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: 2.25rem;
  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(0.75em + 2.3125rem);
  background: url("data:image/svg+xml;charset=utf8,%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, #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' 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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.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 .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: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: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);
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #4f5b67;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ed8116;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.input-group {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-flex;
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend .card-contact .contact-info-map-link, .card-contact .input-group-prepend .contact-info-map-link,
.input-group-append .btn,
.input-group-append .card-contact .contact-info-map-link,
.card-contact .input-group-append .contact-info-map-link {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend .card-contact .contact-info-map-link:focus, .card-contact .input-group-prepend .contact-info-map-link:focus,
.input-group-append .btn:focus,
.input-group-append .card-contact .contact-info-map-link:focus,
.card-contact .input-group-append .contact-info-map-link:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend .card-contact .contact-info-map-link + .btn, .card-contact .input-group-prepend .contact-info-map-link + .btn, .input-group-prepend .card-contact .btn + .contact-info-map-link, .card-contact .input-group-prepend .btn + .contact-info-map-link, .input-group-prepend .card-contact .contact-info-map-link + .contact-info-map-link, .card-contact .input-group-prepend .contact-info-map-link + .contact-info-map-link,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .card-contact .contact-info-map-link + .input-group-text,
.card-contact .input-group-prepend .contact-info-map-link + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .card-contact .input-group-text + .contact-info-map-link,
.card-contact .input-group-prepend .input-group-text + .contact-info-map-link,
.input-group-append .btn + .btn,
.input-group-append .card-contact .contact-info-map-link + .btn,
.card-contact .input-group-append .contact-info-map-link + .btn,
.input-group-append .card-contact .btn + .contact-info-map-link,
.card-contact .input-group-append .btn + .contact-info-map-link,
.input-group-append .card-contact .contact-info-map-link + .contact-info-map-link,
.card-contact .input-group-append .contact-info-map-link + .contact-info-map-link,
.input-group-append .btn + .input-group-text,
.input-group-append .card-contact .contact-info-map-link + .input-group-text,
.card-contact .input-group-append .contact-info-map-link + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .card-contact .input-group-text + .contact-info-map-link,
.card-contact .input-group-append .input-group-text + .contact-info-map-link {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #7b430b;
  background-color: #fbe6d0;
  border-color: #fadcbe;
}
.alert-primary hr {
  border-top-color: #f8cfa6;
}
.alert-primary .alert-link {
  color: #4c2a07;
}

.alert-secondary {
  color: #2a637d;
  background-color: #dcf2fc;
  border-color: #ceedfb;
}
.alert-secondary hr {
  border-top-color: #b6e4f9;
}
.alert-secondary .alert-link {
  color: #1d4557;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #848484;
  background-color: white;
  border-color: white;
}
.alert-light hr {
  border-top-color: #f2f2f2;
}
.alert-light .alert-link {
  color: #6b6b6b;
}

.alert-dark {
  color: #010b14;
  background-color: #ccd0d4;
  border-color: #b8bec3;
}
.alert-dark hr {
  border-top-color: #aab1b7;
}
.alert-dark .alert-link {
  color: black;
}

.alert-primary-dark {
  color: #642c0e;
  background-color: #f2ddd1;
  border-color: #edcfbf;
}
.alert-primary-dark hr {
  border-top-color: #e7c0ab;
}
.alert-primary-dark .alert-link {
  color: #371808;
}

.alert-secondary-very-dark {
  color: #031e36;
  background-color: #cdd7e1;
  border-color: #b9c8d5;
}
.alert-secondary-very-dark hr {
  border-top-color: #a9bbcb;
}
.alert-secondary-very-dark .alert-link {
  color: #000306;
}

.alert-secondary-dark {
  color: #062e4f;
  background-color: #cedeea;
  border-color: #bbd1e2;
}
.alert-secondary-dark hr {
  border-top-color: #a9c5da;
}
.alert-secondary-dark .alert-link {
  color: #021220;
}

.alert-secondary-light {
  color: #5c7481;
  background-color: #eff9fe;
  border-color: #e9f6fd;
}
.alert-secondary-light hr {
  border-top-color: #d2ecfb;
}
.alert-secondary-light .alert-link {
  color: #475963;
}

.alert-secondary-very-light {
  color: #6f7c82;
  background-color: #f7fcfe;
  border-color: #f3fbfe;
}
.alert-secondary-very-light hr {
  border-top-color: #dbf3fc;
}
.alert-secondary-very-light .alert-link {
  color: #586266;
}

.alert-tertiary {
  color: #292f36;
  background-color: #dcdee1;
  border-color: #ced1d4;
}
.alert-tertiary hr {
  border-top-color: #c0c4c8;
}
.alert-tertiary .alert-link {
  color: #131619;
}

.alert-tertiary-light {
  color: #777a7d;
  background-color: #fafbfc;
  border-color: #f8f9fb;
}
.alert-tertiary-light hr {
  border-top-color: #e8ebf2;
}
.alert-tertiary-light .alert-link {
  color: #5e6163;
}

.alert-quaternary {
  color: #7b5e0b;
  background-color: #fbf0d0;
  border-color: #faeabe;
}
.alert-quaternary hr {
  border-top-color: #f8e2a6;
}
.alert-quaternary .alert-link {
  color: #4c3a07;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #ed8116 !important;
}

.border-secondary {
  border-color: #50bef1 !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #fefefe !important;
}

.border-dark {
  border-color: #021627 !important;
}

.border-primary-dark {
  border-color: #c0551a !important;
}

.border-secondary-very-dark {
  border-color: #053968 !important;
}

.border-secondary-dark {
  border-color: #0b5998 !important;
}

.border-secondary-light {
  border-color: #b0e0f8 !important;
}

.border-secondary-very-light {
  border-color: #d5effa !important;
}

.border-tertiary {
  border-color: #4f5b67 !important;
}

.border-tertiary-light {
  border-color: #e5eaf0 !important;
}

.border-quaternary {
  border-color: #edb416 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Burger icon mixin */
.no-top > *:first-child {
  margin-top: 0 !important;
}

.no-bottom > *:last-child, .wysiwyg ul > *:last-child, .wysiwyg ol > *:last-child,
.wysiwyg > *:last-child {
  margin-bottom: 0 !important;
}

.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}

.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-brands::before,
.fa-classic::before,
.fa-duotone::before,
.fa-sharp::before,
.fa-sharp-duotone::before,
.fa::before {
  content: var(--fa);
}

.fad::after,
.fa-duotone.fa-solid::after,
.fa-duotone::after,
.fadr::after,
.fa-duotone.fa-regular::after,
.fadl::after,
.fa-duotone.fa-light::after,
.fadt::after,
.fa-duotone.fa-thin::after,
.fasds::after,
.fa-sharp-duotone.fa-solid::after,
.fa-sharp-duotone::after,
.fasdr::after,
.fa-sharp-duotone.fa-regular::after,
.fasdl::after,
.fa-sharp-duotone.fa-light::after,
.fasdt::after,
.fa-sharp-duotone.fa-thin::after {
  content: var(--fa--fa);
}

.fa-classic.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fa-sharp {
  font-weight: 900;
}

.fad,
.fa-duotone {
  font-weight: 900;
}

.fasds,
.fa-sharp-duotone {
  font-weight: 900;
}

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "Font Awesome 6 Pro";
}

.fa-duotone,
.fad,
.fadr,
.fadl,
.fadt {
  font-family: "Font Awesome 6 Duotone";
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
}

.fa-sharp,
.fass,
.fasr,
.fasl,
.fast {
  font-family: "Font Awesome 6 Sharp";
}

.fa-sharp-duotone,
.fasds,
.fasdr,
.fasdl,
.fasdt {
  font-family: "Font Awesome 6 Sharp Duotone";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-angle-down {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-left {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-right {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-up {
  --fa: "";
  --fa--fa: "";
}

.fa-angles-down {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-double-down {
  --fa: "";
  --fa--fa: "";
}

.fa-angles-left {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-double-left {
  --fa: "";
  --fa--fa: "";
}

.fa-angles-right {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-double-right {
  --fa: "";
  --fa--fa: "";
}

.fa-angles-up {
  --fa: "";
  --fa--fa: "";
}

.fa-angle-double-up {
  --fa: "";
  --fa--fa: "";
}

.fa-arrow-left {
  --fa: "";
  --fa--fa: "";
}

.fa-arrow-left-long {
  --fa: "";
  --fa--fa: "";
}

.fa-long-arrow-left {
  --fa: "";
  --fa--fa: "";
}

.fa-arrow-right {
  --fa: "";
  --fa--fa: "";
}

.fa-arrow-right-arrow-left {
  --fa: "";
  --fa--fa: "";
}

.fa-exchange {
  --fa: "";
  --fa--fa: "";
}

.fa-arrow-right-long {
  --fa: "";
  --fa--fa: "";
}

.fa-long-arrow-right {
  --fa: "";
  --fa--fa: "";
}

.fa-bell-on {
  --fa: "";
  --fa--fa: "";
}

.fa-caret-down {
  --fa: "";
  --fa--fa: "";
}

.fa-caret-left {
  --fa: "";
  --fa--fa: "";
}

.fa-caret-right {
  --fa: "";
  --fa--fa: "";
}

.fa-caret-up {
  --fa: "";
  --fa--fa: "";
}

.fa-chevron-down {
  --fa: "";
  --fa--fa: "";
}

.fa-chevron-left {
  --fa: "";
  --fa--fa: "";
}

.fa-chevron-right {
  --fa: "";
  --fa--fa: "";
}

.fa-chevron-up {
  --fa: "";
  --fa--fa: "";
}

.fa-circle {
  --fa: "";
  --fa--fa: "";
}

.fa-comments-question-check {
  --fa: "";
  --fa--fa: "";
}

.fa-envelope {
  --fa: "";
  --fa--fa: "";
}

.fa-eye {
  --fa: "";
  --fa--fa: "";
}

.fa-gear {
  --fa: "";
  --fa--fa: "";
}

.fa-cog {
  --fa: "";
  --fa--fa: "";
}

.fa-house {
  --fa: "";
  --fa--fa: "";
}

.fa-home {
  --fa: "";
  --fa--fa: "";
}

.fa-home-alt {
  --fa: "";
  --fa--fa: "";
}

.fa-home-lg-alt {
  --fa: "";
  --fa--fa: "";
}

.fa-leaf {
  --fa: "";
  --fa--fa: "";
}

.fa-magnifying-glass {
  --fa: "";
  --fa--fa: "";
}

.fa-search {
  --fa: "";
  --fa--fa: "";
}

.fa-map {
  --fa: "";
  --fa--fa: "";
}

.fa-minus {
  --fa: "";
  --fa--fa: "";
}

.fa-subtract {
  --fa: "";
  --fa--fa: "";
}

.fa-mobile {
  --fa: "";
  --fa--fa: "";
}

.fa-mobile-android {
  --fa: "";
  --fa--fa: "";
}

.fa-mobile-phone {
  --fa: "";
  --fa--fa: "";
}

.fa-palette {
  --fa: "";
  --fa--fa: "";
}

.fa-pen-to-square {
  --fa: "";
  --fa--fa: "";
}

.fa-edit {
  --fa: "";
  --fa--fa: "";
}

.fa-pencil {
  --fa: "";
  --fa--fa: "";
}

.fa-pencil-alt {
  --fa: "";
  --fa--fa: "";
}

.fa-phone {
  --fa: "";
  --fa--fa: "";
}

.fa-phone-flip {
  --fa: "";
  --fa--fa: "";
}

.fa-phone-alt {
  --fa: "";
  --fa--fa: "";
}

.fa-plus {
  --fa: "\+";
  --fa--fa: "\+\+";
}

.fa-add {
  --fa: "\+";
  --fa--fa: "\+\+";
}

.fa-print {
  --fa: "";
  --fa--fa: "";
}

.fa-screwdriver-wrench {
  --fa: "";
  --fa--fa: "";
}

.fa-tools {
  --fa: "";
  --fa--fa: "";
}

.fa-sensor-triangle-exclamation {
  --fa: "";
  --fa--fa: "";
}

.fa-sensor-alert {
  --fa: "";
  --fa--fa: "";
}

.fa-share {
  --fa: "";
  --fa--fa: "";
}

.fa-mail-forward {
  --fa: "";
  --fa--fa: "";
}

.fa-shield-check {
  --fa: "";
  --fa--fa: "";
}

.fa-square-arrow-up-right {
  --fa: "";
  --fa--fa: "";
}

.fa-external-link-square {
  --fa: "";
  --fa--fa: "";
}

.fa-square-check {
  --fa: "";
  --fa--fa: "";
}

.fa-check-square {
  --fa: "";
  --fa--fa: "";
}

.fa-star {
  --fa: "";
  --fa--fa: "";
}

.fa-trash-can {
  --fa: "";
  --fa--fa: "";
}

.fa-trash-alt {
  --fa: "";
  --fa--fa: "";
}

.fa-user {
  --fa: "";
  --fa--fa: "";
}

.fa-volume {
  --fa: "";
  --fa--fa: "";
}

.fa-volume-medium {
  --fa: "";
  --fa--fa: "";
}

.fa-xmark {
  --fa: "";
  --fa--fa: "";
}

.fa-close {
  --fa: "";
  --fa--fa: "";
}

.fa-multiply {
  --fa: "";
  --fa--fa: "";
}

.fa-remove {
  --fa: "";
  --fa--fa: "";
}

.fa-times {
  --fa: "";
  --fa--fa: "";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-facebook {
  --fa: "";
}

.fa-facebook-f {
  --fa: "";
}

.fa-instagram {
  --fa: "";
}

.fa-linkedin {
  --fa: "";
}

.fa-linkedin-in {
  --fa: "";
}

.fa-pinterest {
  --fa: "";
}

.fa-pinterest-p {
  --fa: "";
}

.fa-twitter {
  --fa: "";
}

.fa-x-twitter {
  --fa: "";
}

.fa-youtube {
  --fa: "";
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fa-regular-400.woff2") format("woff2"), url("fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/fa-light-300.woff2") format("woff2"), url("fonts/fa-light-300.ttf") format("truetype");
}
.fal,
.fa-light {
  font-weight: 300;
}

/*
 * Globals
 *
 * 1. Assure footer stays fix to bottom of the screen.
 * 2. Keep minimum hight and prevent scroll, useful when scrolling overlay elements to pause body scroll.
 * 3. Offset height of fixed header.
 * 4. Display screen size breakpoint in corner of browser for QA. Remove on finalized production.
 */
html {
  font-size: 16px;
}

body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.prevent-scroll {
  overflow: hidden;
}

#page,
#main-content {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

#page {
  min-height: 100vh;
}

.site-header-overlaps #main-content {
  margin-top: -80px;
}
@media (min-width: 992px) {
  .site-header-overlaps #main-content {
    margin-top: -120px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.image-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .image-cover {
    top: 50%;
    left: 50%;
    height: auto;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    margin-bottom: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
}

/*
 * Accessibility Styles
 *
 * 1a. Consistent global focus state style for all focusable elements
 * 2a. Button that appears on focus only for screen readers to skip to main content
 * 3a. Block links will absolutely position over a card or container, allowing the appearce of an entire div being linked without wrapping all content in anchor tags (examples: https://adrianroselli.com/2020/02/block-links-cards-clickable-regions-etc.html)
 */
input:focus-visible,
button:focus-visible,
textarea:focus-visible,
select:focus-visible,
details:focus-visible,
[href]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible,
[contenteditable=true]:focus-visible {
  outline: 2px solid #021627 !important;
  outline-offset: 2px !important;
}
.bg-dark input:focus-visible, .bg-secondary-very-dark input:focus-visible, .bg-secondary-dark input:focus-visible,
.bg-dark button:focus-visible,
.bg-secondary-very-dark button:focus-visible,
.bg-secondary-dark button:focus-visible,
.bg-dark textarea:focus-visible,
.bg-secondary-very-dark textarea:focus-visible,
.bg-secondary-dark textarea:focus-visible,
.bg-dark select:focus-visible,
.bg-secondary-very-dark select:focus-visible,
.bg-secondary-dark select:focus-visible,
.bg-dark details:focus-visible,
.bg-secondary-very-dark details:focus-visible,
.bg-secondary-dark details:focus-visible,
.bg-dark [href]:focus-visible,
.bg-secondary-very-dark [href]:focus-visible,
.bg-secondary-dark [href]:focus-visible,
.bg-dark [tabindex]:not([tabindex="-1"]):focus-visible,
.bg-secondary-very-dark [tabindex]:not([tabindex="-1"]):focus-visible,
.bg-secondary-dark [tabindex]:not([tabindex="-1"]):focus-visible,
.bg-dark [contenteditable=true]:focus-visible,
.bg-secondary-very-dark [contenteditable=true]:focus-visible,
.bg-secondary-dark [contenteditable=true]:focus-visible {
  outline-color: #fefefe !important;
}

label:focus-visible,
label input:focus-visible, input:focus-visible + label {
  outline: 2px solid #021627 !important;
  outline-offset: 2px !important;
}
.bg-dark label:focus-visible:focus-visible, .bg-secondary-very-dark label:focus-visible:focus-visible, .bg-secondary-dark label:focus-visible:focus-visible,
.bg-dark label input:focus-visible:focus-visible,
.bg-secondary-very-dark label input:focus-visible:focus-visible,
.bg-secondary-dark label input:focus-visible:focus-visible, .bg-dark input:focus-visible + label:focus-visible, .bg-secondary-very-dark input:focus-visible + label:focus-visible, .bg-secondary-dark input:focus-visible + label:focus-visible {
  outline-color: #fefefe !important;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}
a.skip-main:focus-visible, a.skip-main:active {
  color: #fff;
  background-color: #ed8116;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 0;
  text-align: center;
  font-size: 1.2em;
  transition: none;
  z-index: 1090;
}

a.block-link:before,
button.block-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

a.block-link-full,
button.block-link-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 2px 11px;
  margin-bottom: 0.625rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.075rem;
  color: #021627;
  text-transform: uppercase;
  border-radius: 0;
  background-color: #d5effa;
}
.badge--lowercase {
  letter-spacing: 0.0375rem;
  text-transform: none;
}
.badge--sm {
  padding: 3px 9px 2px;
  font-size: 0.75rem;
}
.badge.interactive {
  transition: all 0.26s ease;
}
.badge.interactive:hover, .badge.interactive:focus-visible, .badge.interactive:active {
  color: #021627;
  background-color: #50bef1;
}
.badge--secondary {
  color: #fefefe;
  background-color: #50bef1;
}
.badge--secondary.interactive:hover, .badge--secondary.interactive:focus-visible, .badge--secondary.interactive:active {
  color: #fefefe;
  background-color: #ed8116;
}

.theme-box-shadow-default {
  box-shadow: 4px 8px 24px 0 rgba(0, 0, 0, 0.08);
}
.theme-box-shadow-darker {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.theme-border, .nav-categories-box-with-mobile-toggle, .collapse-item {
  border: 2px solid #e5eaf0;
}
.theme-border--dark {
  border-color: #4f5b67;
}
.theme-border--secondary-very-dark {
  border-color: #053968;
}
.theme-border--thin {
  border-width: 1px;
}
.theme-border--dash {
  border-style: dashed;
}

.theme-border-radius-default, .nav-categories-box-with-mobile-toggle, .collapse-item__control, .collapse-item {
  border-radius: 0;
}
.theme-border-radius-lg, .page-form--pad-lg {
  border-radius: 0;
}
.theme-border-radius-xl {
  border-radius: 0;
}
.theme-border-radius-xxl {
  border-radius: 0;
}

.row--8, .page-form .fusion-form .row {
  margin-right: -4px;
  margin-left: -4px;
}
.row--8 > [class*=col], .page-form .fusion-form .row > [class*=col] {
  padding-left: 4px;
  padding-right: 4px;
}
.row--24 {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .row--24 {
    margin-right: -12px;
    margin-left: -12px;
  }
}
.row--24 > [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .row--24 > [class*=col] {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.row--40 {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .row--40 {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .row--40 {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.row--40 > [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .row--40 > [class*=col] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .row--40 > [class*=col] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.row--100-responsive {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .row--100-responsive {
    margin-right: calc(clamp(15px, -1.3576rem + 4.7814vw, 50px) * -1);
    margin-left: calc(clamp(15px, -1.3576rem + 4.7814vw, 50px) * -1);
  }
}
.row--100-responsive > [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .row--100-responsive > [class*=col] {
    padding-left: clamp(15px, -1.3576rem + 4.7814vw, 50px);
    padding-right: clamp(15px, -1.3576rem + 4.7814vw, 50px);
  }
}

.text-display--xxl {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6875rem, 1.7031rem + 2.625vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.075rem;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
.text-display--xl,
h1,
.h1 {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6875rem, 2.0781rem + 1.625vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05625rem;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
.text-display--lg,
h2,
.h2 {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6875rem, 2.4531rem + 0.625vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.0875rem;
  line-height: 1.15;
  margin-bottom: 1.625rem;
  text-transform: uppercase;
}
.text-display--md,
h3,
.h3 {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1875rem, 1.9531rem + 0.625vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06875rem;
  line-height: 1.2;
  margin-bottom: 1.375rem;
  text-transform: uppercase;
}
.text-display--sm,
h4,
.h4 {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.75rem, 1.5625rem + 0.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.025rem;
  line-height: 1.2;
  margin-bottom: 1.125rem;
  text-transform: uppercase;
}
.text-display--xs,
h5,
.h5,
.fusion-form legend,
.collapse-item__control {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.021875rem;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
}
.text-display--xxs,
h6,
.h6 {
  color: #021627;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.text-display--default {
  color: #021627;
}
.text-display--light {
  color: #fefefe;
}
.text-display--dark {
  color: #021627;
}

p {
  min-height: 1rem;
}

a {
  transition: all 0.26s ease;
}

hr {
  border-color: #e5eaf0;
}

.accent-text, .fusion-form label, .page-footer-heading, .page-form .fusion-form label {
  margin-bottom: 0.625rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #021627;
}
.accent-text--semibold, .page-footer-heading {
  font-weight: 600;
}
.accent-text.interactive, .fusion-form label.interactive, .interactive.page-footer-heading {
  transition: all 0.26s ease;
}
.accent-text.interactive:hover, .fusion-form label.interactive:hover, .interactive.page-footer-heading:hover, .accent-text.interactive:focus-visible, .fusion-form label.interactive:focus-visible, .interactive.page-footer-heading:focus-visible, .accent-text.interactive:active, .fusion-form label.interactive:active, .interactive.page-footer-heading:active {
  color: #ed8116;
}
.accent-text--secondary-dark {
  color: #0b5998;
}
.accent-text--secondary-dark.interactive:hover, .accent-text--secondary-dark.interactive:focus-visible, .accent-text--secondary-dark.interactive:active {
  color: #ed8116;
}
.accent-text--secondary {
  color: #50bef1;
}
.accent-text--secondary.interactive:hover, .accent-text--secondary.interactive:focus-visible, .accent-text--secondary.interactive:active {
  color: #ed8116;
}
.accent-text--light, .dark-theme .page-footer-heading {
  color: #fefefe;
}
.accent-text--light.interactive:hover, .dark-theme .interactive.page-footer-heading:hover, .accent-text--light.interactive:focus-visible, .dark-theme .interactive.page-footer-heading:focus-visible, .accent-text--light.interactive:active, .dark-theme .interactive.page-footer-heading:active {
  color: #ed8116;
}

.std-link, .sitemap a:not(.btn), .fusion-search-results__link, .wysiwyg a:not(.btn) {
  color: #4f5b67;
  text-decoration: underline;
  text-underline-position: under;
}
.std-link:hover, .sitemap a:hover:not(.btn), .fusion-search-results__link:hover, .wysiwyg a:hover:not(.btn) {
  color: #4f5b67;
  text-decoration: none;
}
.std-link--light {
  color: #fefefe;
}
.std-link--light:hover {
  color: #fefefe;
}

.content-text, .contact-info, .wysiwyg {
  font-family: "Montserrat", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.006875rem;
  color: #4f5b67;
}
.content-text--xxs, .wysiwyg--xxs-theme {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.00375rem;
}
.content-text--xs, .wysiwyg--xs-theme {
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: normal;
}
.content-text--sm, .wysiwyg--sm-theme {
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.00375rem;
}
.content-text--lg, .wysiwyg--lg-theme {
  font-size: clamp(1.0625rem, 0.9688rem + 0.25vw, 1.1875rem);
  font-weight: 500;
  letter-spacing: clamp(0.0069rem, 0.004rem + 0.0087vw, .01rem);
}
.content-text--dark {
  color: #021627;
}
.content-text--light {
  color: #fefefe;
}
.content-text--secondary-very-light {
  color: #d5effa;
}

.image-with-caption-default figure, .subpage-image figure, .wysiwyg figure {
  display: table;
  width: 100%;
  line-height: 1;
}
.image-with-caption-default figcaption, .subpage-image figcaption, .wysiwyg figcaption {
  display: table-caption;
  padding-top: 0.625rem;
  caption-side: bottom;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.00625rem;
  color: #4f5b67;
}

.wysiwyg {
  /***********************************
   * Size variations 
   ***********************************/
  /***********************************
   * Color variations 
   ***********************************/
  /***********************************
   * Lists in columns
   ***********************************/
}
.wysiwyg blockquote {
  font-style: italic;
}
.wysiwyg blockquote cite {
  font-style: normal;
}
.wysiwyg p,
.wysiwyg ul, .wysiwyg ol,
.wysiwyg table,
.wysiwyg figure,
.wysiwyg blockquote,
.wysiwyg hr {
  margin-bottom: 1rem;
}
.wysiwyg p + h1, .wysiwyg p + h2, .wysiwyg p + h3, .wysiwyg p + h4, .wysiwyg p + h5, .wysiwyg p + h6,
.wysiwyg img + h1, .wysiwyg img + h2, .wysiwyg img + h3, .wysiwyg img + h4, .wysiwyg img + h5, .wysiwyg img + h6,
.wysiwyg figure + h1, .wysiwyg figure + h2, .wysiwyg figure + h3, .wysiwyg figure + h4, .wysiwyg figure + h5, .wysiwyg figure + h6 {
  padding-top: 25px;
}
.wysiwyg table {
  width: 100%;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .wysiwyg table {
    display: block;
    overflow-x: auto;
  }
}
.wysiwyg th, .wysiwyg td {
  padding: 12px 14px;
  border: 1px solid #e5eaf0;
}
.wysiwyg th, .wysiwyg td {
  vertical-align: top;
}
.wysiwyg ul, .wysiwyg ol {
  list-style: none;
}
.wysiwyg ul > li, .wysiwyg ol > li {
  position: relative;
  margin-bottom: 1.125rem;
  text-align: left !important;
}
.wysiwyg ul {
  display: inline-block;
  padding-left: 2px;
}
.wysiwyg ul > li {
  padding-left: 36px;
}
.wysiwyg ul > li::before {
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 6 Pro";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #021627;
  content: "";
}
.wysiwyg ol {
  counter-reset: counter;
  padding-left: 0;
}
.wysiwyg ol > li {
  padding-left: 40px;
  counter-increment: counter;
}
.wysiwyg ol > li::before {
  position: absolute;
  top: 0;
  left: 7px;
  content: counter(counter) ". ";
}
.wysiwyg ul > li ul, .wysiwyg ul > li ol,
.wysiwyg ol > li ul,
.wysiwyg ol > li ol {
  padding-top: 1.125rem;
  margin-bottom: 3px;
}
.wysiwyg ul > ul,
.wysiwyg ul > ol {
  margin-bottom: 1.3125rem;
}
.wysiwyg ul > ul {
  padding-left: 36px;
}
.wysiwyg ul > ol,
.wysiwyg ol > ul,
.wysiwyg ol > ol {
  padding-left: 40px;
}
.wysiwyg ol > ul,
.wysiwyg ol > ol {
  margin-bottom: 1.125rem;
}
.wysiwyg--xxs-theme p,
.wysiwyg--xxs-theme ul, .wysiwyg--xxs-theme ol,
.wysiwyg--xxs-theme table,
.wysiwyg--xxs-theme figure,
.wysiwyg--xxs-theme blockquote,
.wysiwyg--xxs-theme hr {
  margin-bottom: 0.75rem;
}
.wysiwyg--xxs-theme ul > li, .wysiwyg--xxs-theme ol > li {
  margin-bottom: 0.75rem;
}
.wysiwyg--xxs-theme ul > li {
  padding-left: 26px;
}
.wysiwyg--xxs-theme ul > li::before {
  font-size: 16px;
}
.wysiwyg--xxs-theme ol > li {
  padding-left: 32px;
}
.wysiwyg--xxs-theme ul > li ul, .wysiwyg--xxs-theme ul > li ol,
.wysiwyg--xxs-theme ol > li ul,
.wysiwyg--xxs-theme ol > li ol {
  padding-top: 0.75rem;
}
.wysiwyg--xxs-theme ul > ul,
.wysiwyg--xxs-theme ul > ol {
  margin-bottom: 0.9375rem;
}
.wysiwyg--xxs-theme ul > ul,
.wysiwyg--xxs-theme ul > ol {
  padding-left: 26px;
}
.wysiwyg--xxs-theme ol > ul,
.wysiwyg--xxs-theme ol > ol {
  margin-bottom: 0.75rem;
}
.wysiwyg--xs-theme p,
.wysiwyg--xs-theme ul, .wysiwyg--xs-theme ol,
.wysiwyg--xs-theme table,
.wysiwyg--xs-theme figure,
.wysiwyg--xs-theme blockquote,
.wysiwyg--xs-theme hr {
  margin-bottom: 0.8125rem;
}
.wysiwyg--xs-theme ul > li, .wysiwyg--xs-theme ol > li {
  margin-bottom: 0.8125rem;
}
.wysiwyg--xs-theme ul > li {
  padding-left: 27px;
}
.wysiwyg--xs-theme ul > li::before {
  font-size: 17px;
}
.wysiwyg--xs-theme ol > li {
  padding-left: 34px;
}
.wysiwyg--xs-theme ul > li ul, .wysiwyg--xs-theme ul > li ol,
.wysiwyg--xs-theme ol > li ul,
.wysiwyg--xs-theme ol > li ol {
  padding-top: 0.8125rem;
}
.wysiwyg--xs-theme ul > ul,
.wysiwyg--xs-theme ul > ol {
  margin-bottom: 1rem;
}
.wysiwyg--xs-theme ul > ul,
.wysiwyg--xs-theme ul > ol {
  padding-left: 27px;
}
.wysiwyg--xs-theme ol > ul,
.wysiwyg--xs-theme ol > ol {
  margin-bottom: 0.8125rem;
}
.wysiwyg--sm-theme p,
.wysiwyg--sm-theme ul, .wysiwyg--sm-theme ol,
.wysiwyg--sm-theme table,
.wysiwyg--sm-theme figure,
.wysiwyg--sm-theme blockquote,
.wysiwyg--sm-theme hr {
  margin-bottom: 0.9375rem;
}
.wysiwyg--sm-theme ul > li, .wysiwyg--sm-theme ol > li {
  margin-bottom: 0.9375rem;
}
.wysiwyg--sm-theme ul > li {
  padding-left: 31px;
}
.wysiwyg--sm-theme ul > li::before {
  font-size: 20px;
}
.wysiwyg--sm-theme ol > li {
  padding-left: 37px;
}
.wysiwyg--sm-theme ul > li ul, .wysiwyg--sm-theme ul > li ol,
.wysiwyg--sm-theme ol > li ul,
.wysiwyg--sm-theme ol > li ol {
  padding-top: 0.9375rem;
}
.wysiwyg--sm-theme ul > ul,
.wysiwyg--sm-theme ul > ol {
  margin-bottom: 1.125rem;
}
.wysiwyg--sm-theme ul > ul,
.wysiwyg--sm-theme ul > ol {
  padding-left: 31px;
}
.wysiwyg--sm-theme ol > ul,
.wysiwyg--sm-theme ol > ol {
  margin-bottom: 0.9375rem;
}
.wysiwyg--lg-theme p,
.wysiwyg--lg-theme ul, .wysiwyg--lg-theme ol,
.wysiwyg--lg-theme table,
.wysiwyg--lg-theme figure,
.wysiwyg--lg-theme blockquote,
.wysiwyg--lg-theme hr {
  margin-bottom: 1.1875rem;
}
.wysiwyg--dark-theme, .page-form .fusion-form .wysiwyg {
  color: #021627;
}
.wysiwyg--dark-theme a:not(.btn), .page-form .fusion-form .wysiwyg a:not(.btn) {
  color: #021627;
}
.wysiwyg--dark-theme a:not(.btn):hover, .page-form .fusion-form .wysiwyg a:not(.btn):hover {
  color: #021627;
}
.wysiwyg--dark-theme h1, .page-form .fusion-form .wysiwyg h1, .wysiwyg--dark-theme h2, .page-form .fusion-form .wysiwyg h2, .wysiwyg--dark-theme h3, .page-form .fusion-form .wysiwyg h3, .wysiwyg--dark-theme h4, .page-form .fusion-form .wysiwyg h4, .wysiwyg--dark-theme h5, .page-form .fusion-form .wysiwyg h5, .wysiwyg--dark-theme h6, .page-form .fusion-form .wysiwyg h6,
.wysiwyg--dark-theme .h1,
.page-form .fusion-form .wysiwyg .h1, .wysiwyg--dark-theme .h2, .page-form .fusion-form .wysiwyg .h2, .wysiwyg--dark-theme .h3, .page-form .fusion-form .wysiwyg .h3, .wysiwyg--dark-theme .h4, .page-form .fusion-form .wysiwyg .h4, .wysiwyg--dark-theme .h5, .wysiwyg--dark-theme .fusion-form legend, .fusion-form .wysiwyg--dark-theme legend, .wysiwyg--dark-theme .collapse-item__control, .page-form .fusion-form .wysiwyg .h5, .page-form .fusion-form .wysiwyg legend, .page-form .fusion-form .wysiwyg .collapse-item__control, .wysiwyg--dark-theme .h6, .page-form .fusion-form .wysiwyg .h6 {
  color: #021627;
}
.wysiwyg--dark-theme th, .page-form .fusion-form .wysiwyg th, .wysiwyg--dark-theme td, .page-form .fusion-form .wysiwyg td {
  border-color: #021627;
}
.wysiwyg--dark-theme blockquote, .page-form .fusion-form .wysiwyg blockquote,
.wysiwyg--dark-theme cite,
.page-form .fusion-form .wysiwyg cite,
.wysiwyg--dark-theme figcaption,
.page-form .fusion-form .wysiwyg figcaption {
  color: #021627;
}
.wysiwyg--dark-theme ul > li::before, .page-form .fusion-form .wysiwyg ul > li::before {
  color: #021627;
}
.wysiwyg--light-theme, .page-form--light-theme .fusion-form .wysiwyg {
  color: #fefefe;
}
.wysiwyg--light-theme a:not(.btn), .page-form--light-theme .fusion-form .wysiwyg a:not(.btn) {
  color: #fefefe;
}
.wysiwyg--light-theme a:not(.btn):hover, .page-form--light-theme .fusion-form .wysiwyg a:not(.btn):hover {
  color: #fefefe;
}
.wysiwyg--light-theme h1, .page-form--light-theme .fusion-form .wysiwyg h1, .wysiwyg--light-theme h2, .page-form--light-theme .fusion-form .wysiwyg h2, .wysiwyg--light-theme h3, .page-form--light-theme .fusion-form .wysiwyg h3, .wysiwyg--light-theme h4, .page-form--light-theme .fusion-form .wysiwyg h4, .wysiwyg--light-theme h5, .page-form--light-theme .fusion-form .wysiwyg h5, .wysiwyg--light-theme h6, .page-form--light-theme .fusion-form .wysiwyg h6,
.wysiwyg--light-theme .h1,
.page-form--light-theme .fusion-form .wysiwyg .h1, .wysiwyg--light-theme .h2, .page-form--light-theme .fusion-form .wysiwyg .h2, .wysiwyg--light-theme .h3, .page-form--light-theme .fusion-form .wysiwyg .h3, .wysiwyg--light-theme .h4, .page-form--light-theme .fusion-form .wysiwyg .h4, .wysiwyg--light-theme .h5, .wysiwyg--light-theme .fusion-form legend, .fusion-form .wysiwyg--light-theme legend, .wysiwyg--light-theme .collapse-item__control, .page-form--light-theme .fusion-form .wysiwyg .h5, .page-form--light-theme .fusion-form .wysiwyg legend, .page-form--light-theme .fusion-form .wysiwyg .collapse-item__control, .wysiwyg--light-theme .h6, .page-form--light-theme .fusion-form .wysiwyg .h6 {
  color: #fefefe;
}
.wysiwyg--light-theme th, .page-form--light-theme .fusion-form .wysiwyg th, .wysiwyg--light-theme td, .page-form--light-theme .fusion-form .wysiwyg td {
  border-color: #fefefe;
}
.wysiwyg--light-theme blockquote, .page-form--light-theme .fusion-form .wysiwyg blockquote,
.wysiwyg--light-theme cite,
.page-form--light-theme .fusion-form .wysiwyg cite,
.wysiwyg--light-theme figcaption,
.page-form--light-theme .fusion-form .wysiwyg figcaption {
  color: #fefefe;
}
.wysiwyg--light-theme ul > li::before, .page-form--light-theme .fusion-form .wysiwyg ul > li::before {
  color: #fefefe;
}
.wysiwyg--secondary-very-light-theme {
  color: #d5effa;
}
.wysiwyg--secondary-very-light-theme a:not(.btn) {
  color: #d5effa;
}
.wysiwyg--secondary-very-light-theme a:not(.btn):hover {
  color: #d5effa;
}
.wysiwyg--secondary-very-light-theme h1, .wysiwyg--secondary-very-light-theme h2, .wysiwyg--secondary-very-light-theme h3, .wysiwyg--secondary-very-light-theme h4, .wysiwyg--secondary-very-light-theme h5, .wysiwyg--secondary-very-light-theme h6,
.wysiwyg--secondary-very-light-theme .h1, .wysiwyg--secondary-very-light-theme .h2, .wysiwyg--secondary-very-light-theme .h3, .wysiwyg--secondary-very-light-theme .h4, .wysiwyg--secondary-very-light-theme .h5, .wysiwyg--secondary-very-light-theme .fusion-form legend, .fusion-form .wysiwyg--secondary-very-light-theme legend, .wysiwyg--secondary-very-light-theme .collapse-item__control, .wysiwyg--secondary-very-light-theme .h6 {
  color: #d5effa;
}
.wysiwyg--secondary-very-light-theme th, .wysiwyg--secondary-very-light-theme td {
  border-color: #d5effa;
}
.wysiwyg--secondary-very-light-theme blockquote,
.wysiwyg--secondary-very-light-theme cite,
.wysiwyg--secondary-very-light-theme figcaption {
  color: #d5effa;
}
.wysiwyg--secondary-very-light-theme ul > li::before {
  color: #d5effa;
}
.wysiwyg--list-cols-2 ul, .wysiwyg--list-cols-2 ol, .wysiwyg--list-cols-3 ul, .wysiwyg--list-cols-3 ol, .wysiwyg--list-cols-4 ul, .wysiwyg--list-cols-4 ol {
  width: 100%;
  /* for Chrome and Edge */
}
.wysiwyg--list-cols-2 ul li, .wysiwyg--list-cols-2 ol li, .wysiwyg--list-cols-3 ul li, .wysiwyg--list-cols-3 ol li, .wysiwyg--list-cols-4 ul li, .wysiwyg--list-cols-4 ol li {
  /* for Chrome and Edge */
  /* Firefox doesn't support avoid-column */
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
  /* for Firefox */
  display: inline-grid;
  page-break-inside: avoid;
}
@supports ((-webkit-column-break-inside: avoid) or (-moz-column-break-inside: avoid) or (break-inside: avoid-column)) {
  .wysiwyg--list-cols-2 ul li, .wysiwyg--list-cols-2 ol li, .wysiwyg--list-cols-3 ul li, .wysiwyg--list-cols-3 ol li, .wysiwyg--list-cols-4 ul li, .wysiwyg--list-cols-4 ol li {
    display: block;
  }
}
.wysiwyg--list-cols-2 ul ul, .wysiwyg--list-cols-2 ul ol, .wysiwyg--list-cols-2 ol ul, .wysiwyg--list-cols-2 ol ol, .wysiwyg--list-cols-3 ul ul, .wysiwyg--list-cols-3 ul ol, .wysiwyg--list-cols-3 ol ul, .wysiwyg--list-cols-3 ol ol, .wysiwyg--list-cols-4 ul ul, .wysiwyg--list-cols-4 ul ol, .wysiwyg--list-cols-4 ol ul, .wysiwyg--list-cols-4 ol ol {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
.wysiwyg--list-cols-2 ul, .wysiwyg--list-cols-2 ol {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
@media (min-width: 768px) {
  .wysiwyg--list-cols-2 ul, .wysiwyg--list-cols-2 ol {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
.wysiwyg--list-cols-3 ul, .wysiwyg--list-cols-3 ol {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
@media (min-width: 768px) {
  .wysiwyg--list-cols-3 ul, .wysiwyg--list-cols-3 ol {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media (min-width: 992px) {
  .wysiwyg--list-cols-3 ul, .wysiwyg--list-cols-3 ol {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
.wysiwyg--list-cols-4 ul, .wysiwyg--list-cols-4 ol {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
@media (min-width: 768px) {
  .wysiwyg--list-cols-4 ul, .wysiwyg--list-cols-4 ol {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media (min-width: 992px) {
  .wysiwyg--list-cols-4 ul, .wysiwyg--list-cols-4 ol {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}

/* fade image in after load */
img.lazyloading {
  opacity: 0;
}

img.lazy,
img.lazyloaded {
  opacity: 1;
  transition: opacity 500ms;
}

.alert-banner__icon {
  display: block;
  margin-top: 4px;
  margin-right: 15px;
  font-size: 16px;
  color: #ed8116;
}

.alert {
  position: relative;
  z-index: 20;
  margin-bottom: 0;
}

.page-banner {
  position: relative;
}
.page-banner.has-bg-image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
  content: "";
}
@media (min-width: 992px) {
  .page-banner__inner {
    min-height: clamp(350px, 3.5679rem + 29.5276vw, 500px);
  }
}
@media (max-width: 991.98px) {
  .page-banner__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .page-banner__contents-col {
    position: static;
  }
}
.page-banner__contents, .page-banner__form {
  position: relative;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .page-banner__contents {
    min-height: clamp(200px, 8.4298rem + 21.7077vw, 350px);
  }
}
.page-banner__contents.breadcrumbs-present {
  padding-top: 1.5625rem;
}
@media (min-width: 992px) {
  .page-banner__contents.breadcrumbs-present {
    padding-top: 2.8125rem;
  }
}
@media (max-width: 991.98px) {
  .page-banner__form-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .page-banner__form {
    border-radius: 0;
  }
}
.page-banner__additional-info {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (min-width: 992px) {
  .page-banner__additional-info {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.page-banner__buttons {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 992px) {
  .page-banner__buttons {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.page-banner__info-icon {
  font-size: 15px;
  color: #ed8116;
}
.page-banner__images {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (min-width: 768px) {
  .page-banner__images {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .page-banner__images {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .page-banner__images {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
  }
}
.page-banner__image {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-banner__image {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .page-banner__image {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .page-banner__image {
    margin-top: 55px;
  }
}
.page-banner__image svg,
.page-banner__image img {
  max-width: 100%;
  max-height: 60px;
}
@media (min-width: 1200px) {
  .page-banner__image svg,
.page-banner__image img {
    max-height: 100px;
  }
}

.page-banner-product-cat__page-logo svg,
.page-banner-product-cat__page-logo img {
  max-height: 70px;
}

.page-banner-blog-post.breadcrumbs-present {
  padding-top: 0;
}

@media (min-width: 992px) {
  .site-header-overlaps .page-banner {
    padding-top: 105px;
  }
}
@media (min-width: 1200px) {
  .site-header-overlaps .page-banner {
    padding-top: 120px;
  }
}
@media (max-width: 991.98px) {
  .site-header-overlaps .page-banner__breadcrumbs-mobile {
    padding-top: 80px;
  }
}
@media (max-width: 991.98px) {
  .site-header-overlaps .page-banner__contents:not(.breadcrumbs-present) {
    padding-top: 105px;
  }
}
.site-header-overlaps .page-banner-blog-post {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .site-header-overlaps .page-banner-blog-post {
    padding-top: 105px;
  }
}
@media (min-width: 1200px) {
  .site-header-overlaps .page-banner-blog-post {
    padding-top: 120px;
  }
}
.site-header-overlaps .page-banner-blog-post__contents:not(.breadcrumbs-present) {
  padding-bottom: 0 !important;
}
.site-header-overlaps .page-banner-product-cat {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .site-header-overlaps .page-banner-product-cat {
    padding-top: 105px;
  }
}
@media (min-width: 1200px) {
  .site-header-overlaps .page-banner-product-cat {
    padding-top: 120px;
  }
}

.breadcrumbs {
  position: relative;
  z-index: 5;
  padding: 15px 0;
}
.breadcrumbs__list {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0;
}
.breadcrumbs__item {
  display: -webkit-flex;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.12px;
  color: #4f5b67;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.breadcrumbs__item:not(:last-of-type) {
  padding-right: 0.875rem;
}
.breadcrumbs__item:not(:last-of-type):after {
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "";
  padding-left: 0.875rem;
  opacity: 1;
}
.breadcrumbs__item.active:after {
  display: none;
}
.breadcrumbs__item a {
  display: inline-block;
  color: #4f5b67;
  transition: all 0.26s ease;
}
.breadcrumbs__item a:hover {
  color: #ed8116;
  text-decoration: none;
}
.breadcrumbs__text {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
}
@media (min-width: 576px) {
  .breadcrumbs__text {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .breadcrumbs__text {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .breadcrumbs__text {
    max-width: 550px;
  }
}
@media (min-width: 1200px) {
  .breadcrumbs__text {
    max-width: 800px;
  }
}
.breadcrumbs__text.breadcrumb-active {
  color: #4f5b67;
}
.breadcrumbs.light .breadcrumbs__item {
  color: #fefefe;
}
.breadcrumbs.light .breadcrumbs__item a {
  color: #fefefe;
}
.breadcrumbs.light .breadcrumbs__item a:hover {
  color: #ed8116;
}
.breadcrumbs.light .breadcrumbs__text.breadcrumb-active {
  color: #fefefe;
}

.btn, .card-contact .contact-info-map-link {
  display: inline-block;
  max-width: 100%;
  padding: 0.75rem 1.5rem 0.6875rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.36;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  white-space: normal;
  transition: all 0.26s ease;
}
.btn.disabled, .card-contact .disabled.contact-info-map-link, .btn:disabled, .card-contact .contact-info-map-link:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-primary, .btn--primary, .btn-default, .btn--default {
  background: #053968;
  border: 2px solid #053968;
  color: #fefefe;
}
.btn-primary:hover, .btn-primary:focus-visible, .btn-primary.active, .btn--primary:hover, .btn--primary:focus-visible, .btn--primary.active, .btn-default:hover, .btn-default:focus-visible, .btn-default.active, .btn--default:hover, .btn--default:focus-visible, .btn--default.active {
  background: #ed8116;
  border-color: #ed8116;
  color: #fefefe;
}
.btn-secondary, .btn--secondary {
  background: #e5eaf0;
  border: 2px solid #e5eaf0;
  color: #021627;
}
.btn-secondary:hover, .btn-secondary:focus-visible, .btn-secondary.active, .btn--secondary:hover, .btn--secondary:focus-visible, .btn--secondary.active {
  background: #0b5998;
  border-color: #0b5998;
  color: #fefefe;
}
.btn-orange, .btn--orange {
  background: #ed8116;
  border: 2px solid #ed8116;
  color: #fefefe;
}
.btn-orange:hover, .btn-orange:focus-visible, .btn-orange.active, .btn--orange:hover, .btn--orange:focus-visible, .btn--orange.active {
  background: #c0551a;
  border-color: #c0551a;
  color: #fefefe;
}
.btn-primary-outline, .btn--primary-outline {
  background: transparent;
  border: 2px solid #ed8116;
  color: #053968;
}
.btn-primary-outline:hover, .btn-primary-outline:focus-visible, .btn-primary-outline.active, .btn--primary-outline:hover, .btn--primary-outline:focus-visible, .btn--primary-outline.active {
  background: #ed8116;
  border-color: #ed8116;
  color: #fefefe;
}
.btn-primary-outline-light, .btn--primary-outline-light {
  background: transparent;
  border: 2px solid #ed8116;
  color: #fefefe;
}
.btn-primary-outline-light:hover, .btn-primary-outline-light:focus-visible, .btn-primary-outline-light.active, .btn--primary-outline-light:hover, .btn--primary-outline-light:focus-visible, .btn--primary-outline-light.active {
  background: #ed8116;
  border-color: #ed8116;
  color: #fefefe;
}
.btn-secondary-outline, .btn--secondary-outline {
  background: transparent;
  border: 2px solid #50bef1;
  color: #021627;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus-visible, .btn-secondary-outline.active, .btn--secondary-outline:hover, .btn--secondary-outline:focus-visible, .btn--secondary-outline.active {
  background: #50bef1;
  border-color: #50bef1;
  color: #021627;
}
.btn-secondary-outline-light, .page-form--light-theme .fusion-form button[type=submit], .btn--secondary-outline-light {
  background: transparent;
  border: 2px solid #50bef1;
  color: #fefefe;
}
.btn-secondary-outline-light:hover, .page-form--light-theme .fusion-form button[type=submit]:hover, .btn-secondary-outline-light:focus-visible, .page-form--light-theme .fusion-form button[type=submit]:focus-visible, .btn-secondary-outline-light.active, .page-form--light-theme .fusion-form button.active[type=submit], .btn--secondary-outline-light:hover, .btn--secondary-outline-light:focus-visible, .btn--secondary-outline-light.active {
  background: #50bef1;
  border-color: #50bef1;
  color: #021627;
}
@media (min-width: 992px) {
  .btn-lg, .btn--lg {
    padding: 1.1875rem 1.9375rem 1.125rem;
    font-size: 1.25rem;
  }
}
.btn-sm, .btn--sm {
  padding: 0.6875rem 0.9375rem;
  font-size: 0.8125rem;
}
.btn-link-arrow-right, .card-contact .contact-info-map-link, .btn--link-arrow-right, .btn-link-arrow-right-light, .card-contact--dark-theme .contact-info-map-link, .btn--link-arrow-right-light {
  position: relative;
  display: inline;
  padding: 0;
  font-size: 1rem;
  text-align: left;
  border: 0;
  border-radius: 0;
}
.btn-link-arrow-right::after, .card-contact .contact-info-map-link::after, .btn--link-arrow-right::after, .btn-link-arrow-right-light::after, .card-contact--dark-theme .contact-info-map-link::after, .btn--link-arrow-right-light::after {
  position: relative;
  top: 1px;
  left: -9px;
  padding-left: 18px;
  font-family: "Font Awesome 6 Pro";
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #ed8116;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  transition: all 0.17s linear;
}
.btn-link-arrow-right:hover::after, .card-contact .contact-info-map-link:hover::after, .btn-link-arrow-right:focus-visible::after, .card-contact .contact-info-map-link:focus-visible::after, .btn-link-arrow-right.active::after, .card-contact .active.contact-info-map-link::after, .btn--link-arrow-right:hover::after, .btn--link-arrow-right:focus-visible::after, .btn--link-arrow-right.active::after, .btn-link-arrow-right-light:hover::after, .card-contact--dark-theme .contact-info-map-link:hover::after, .btn-link-arrow-right-light:focus-visible::after, .card-contact--dark-theme .contact-info-map-link:focus-visible::after, .btn-link-arrow-right-light.active::after, .card-contact--dark-theme .active.contact-info-map-link::after, .btn--link-arrow-right-light:hover::after, .btn--link-arrow-right-light:focus-visible::after, .btn--link-arrow-right-light.active::after {
  left: 0;
}
.btn-link-arrow-left, .nav-megamenu__link.simple, .btn--link-arrow-left, .btn-link-arrow-left-light, .btn--link-arrow-left-light {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  border: 0;
  border-radius: 0;
}
.btn-link-arrow-left::before, .nav-megamenu__link.simple::before, .btn--link-arrow-left::before, .btn-link-arrow-left-light::before, .btn--link-arrow-left-light::before {
  position: absolute;
  top: 3px;
  left: 0;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #ed8116;
  content: "";
}
.btn-link-arrow-right, .card-contact .contact-info-map-link, .btn--link-arrow-right, .btn-link-arrow-left, .nav-megamenu__link.simple, .btn--link-arrow-left {
  color: #ed8116;
}
.btn-link-arrow-right:hover, .card-contact .contact-info-map-link:hover, .btn-link-arrow-right:focus-visible, .card-contact .contact-info-map-link:focus-visible, .btn-link-arrow-right.active, .card-contact .active.contact-info-map-link, .btn--link-arrow-right:hover, .btn--link-arrow-right:focus-visible, .btn--link-arrow-right.active, .btn-link-arrow-left:hover, .nav-megamenu__link.simple:hover, .btn-link-arrow-left:focus-visible, .nav-megamenu__link.simple:focus-visible, .btn-link-arrow-left.active, .active.nav-megamenu__link.simple, .btn--link-arrow-left:hover, .btn--link-arrow-left:focus-visible, .btn--link-arrow-left.active {
  color: #053968;
}
.btn-link-arrow-right-light, .card-contact--dark-theme .contact-info-map-link, .btn--link-arrow-right-light, .btn-link-arrow-left-light, .btn--link-arrow-left-light {
  color: #fefefe;
}
.btn-link-arrow-right-light:hover, .card-contact--dark-theme .contact-info-map-link:hover, .btn-link-arrow-right-light:focus-visible, .card-contact--dark-theme .contact-info-map-link:focus-visible, .btn-link-arrow-right-light.active, .card-contact--dark-theme .active.contact-info-map-link, .btn--link-arrow-right-light:hover, .btn--link-arrow-right-light:focus-visible, .btn--link-arrow-right-light.active, .btn-link-arrow-left-light:hover, .btn-link-arrow-left-light:focus-visible, .btn-link-arrow-left-light.active, .btn--link-arrow-left-light:hover, .btn--link-arrow-left-light:focus-visible, .btn--link-arrow-left-light.active {
  color: #ed8116;
}

.hamburger-btn > span {
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: block;
}
.hamburger-btn > span, .hamburger-btn > span::before, .hamburger-btn > span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #021627;
  outline: 1px solid transparent;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  transition-duration: 0.3s;
}
.hamburger-btn > span::before, .hamburger-btn > span::after {
  position: absolute;
  content: "";
}
.hamburger-btn > span::before {
  top: -8px;
}
.hamburger-btn > span::after {
  top: 8px;
}
.show .hamburger-btn > span, .active .hamburger-btn > span {
  background-color: transparent !important;
}
.show .hamburger-btn > span::before, .active .hamburger-btn > span::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.show .hamburger-btn > span::after, .active .hamburger-btn > span::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.card-blog.is-featured {
  height: 100%;
}
.card-blog__inner {
  overflow: hidden;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  height: 100%;
  min-height: 185px;
  padding: 25px;
  border-radius: 0;
  background-color: #021627;
}
@media (min-width: 768px) {
  .card-blog__inner {
    min-height: 120px;
  }
}
@media (min-width: 992px) {
  .card-blog__inner {
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  .card-blog__inner {
    min-height: 185px;
  }
}
@media (min-width: 576px) {
  .card-blog__inner.is-featured {
    min-height: 245px;
  }
}
@media (min-width: 768px) {
  .card-blog__inner.is-featured {
    min-height: 330px;
  }
}
@media (min-width: 992px) {
  .card-blog__inner.is-featured {
    min-height: 425px;
  }
}
@media (min-width: 1200px) {
  .card-blog__inner.is-featured {
    min-height: 515px;
  }
}
@media (min-width: 1440px) {
  .card-blog__inner.is-featured {
    min-height: 600px;
  }
}
.card-blog__inner:hover, .card-blog__inner:focus-visible {
  text-decoration: none;
}
@media (min-width: 992px) {
  .card-blog__inner:hover .card-blog__image::before, .card-blog__inner:focus-visible .card-blog__image::before {
    opacity: 1;
    transition: all 0.27s linear;
  }
}
@media (min-width: 992px) {
  .card-blog__inner:hover .card-blog__contents, .card-blog__inner:focus-visible .card-blog__contents {
    opacity: 1;
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .card-blog__inner:hover .card-blog__contents-move, .card-blog__inner:focus-visible .card-blog__contents-move {
    opacity: 1;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-blog__contents {
  overflow: hidden;
  z-index: 3;
  will-change: transform;
  transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .card-blog__contents {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
.card-blog__contents-move {
  padding-top: 15px;
}
@media (min-width: 992px) {
  .card-blog__contents-move {
    opacity: 0;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-blog__image::before, .card-blog__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  content: "";
  transition: all 0.27s linear;
}
.card-blog__image::before {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8) 75%);
}
.card-blog__image::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.card-blog-simple {
  padding: 8px;
}
@media (min-width: 992px) {
  .card-blog-simple:hover .card-blog-simple__title-link {
    text-decoration: underline;
  }
}
@media (min-width: 992px) {
  .card-blog-simple:hover .card-blog-simple__psuedo-btn {
    color: #ed8116;
  }
  .card-blog-simple:hover .card-blog-simple__psuedo-btn::after {
    left: 0;
  }
}
.card-blog-simple__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  margin-bottom: 0.625rem;
  border-radius: 0;
}
.card-blog-simple__image img {
  border-radius: 0;
}
.card-blog-simple__contents {
  padding: 15px;
}
.card-blog-simple__contents-inner {
  margin-bottom: 2.8125rem;
}
.card-blog-simple__title-link {
  color: #021627;
  text-decoration: none;
  text-underline-position: under;
  transition: all 0.26s ease;
}
.card-blog-simple__title-link:hover {
  color: #021627;
  text-decoration: underline;
}
.card-blog-simple__title-link.light {
  color: #fefefe;
}
.card-blog-simple__title-link.light:hover {
  color: #fefefe;
}

.card-contact {
  padding: 24px;
}
.card-contact__icon {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 0.9375rem;
  font-size: 23px;
  line-height: 1;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
}
.card-contact .contact-info-map-link {
  text-decoration: none;
}
.card-contact .contact-info-map-link:hover, .card-contact .contact-info-map-link:focus-visible, .card-contact .contact-info-map-link.active {
  text-decoration: none;
}
.card-contact-horz__icon {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  font-size: 17px;
  line-height: 1;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
}
.card-contact-horz__contents {
  padding: 3px 0;
}
.card-contact-horz__title {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: uppercase;
}
.card-contact-horz .contact-info {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #021627;
}
.card-contact-horz .contact-info a {
  color: #021627;
}
.card-contact-horz .contact-info a:hover {
  color: #021627;
}

.card-faq__icon {
  font-size: 24px;
}

.card-icon__icon,
.card-service-icon__icon {
  width: 64px;
  height: 64px;
  padding: 19px;
  color: #ed8116;
  background-color: #fefefe;
  border-radius: 0;
  border: 1px solid #4f5b67;
}
.card-icon__icon svg,
.card-icon__icon img,
.card-service-icon__icon svg,
.card-service-icon__icon img {
  max-width: 100%;
  max-height: 100%;
}

.card-product__image {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (min-width: 576px) {
  .card-product__image {
    width: 15%;
  }
}
@media (min-width: 768px) {
  .card-product__image {
    width: 11%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-product__image {
    width: 15%;
  }
}
.card-product__image img {
  width: 100%;
  max-width: 95px;
}
.card-product__buttons {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 992px) {
  .card-product__buttons {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
.card-product__featured-item + .card-product__featured-item {
  border-top: 1px solid #50bef1;
}
.card-product .product-featured-spec {
  padding: 15px 0;
}
@media (max-width: 575.98px) {
  .card-product .product-featured-spec {
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.card-product .product-featured-spec__icon {
  font-size: 18px;
}

.card-product-category:hover .btn-primary {
  background: #c0551a;
  border-color: #c0551a;
  color: #fefefe;
}
.card-product-category__inner {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.card-product-category__image {
  width: 25%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .card-product-category__image {
    width: 33%;
  }
}
.card-product-category__image img {
  width: 100%;
  max-width: 145px;
}
.card-product-category__title-link {
  color: #021627;
}
.card-product-category__title-link:hover {
  color: #021627;
}
.card-product-category__title-link.light {
  color: #fefefe;
}
.card-product-category__title-link.light:hover {
  color: #fefefe;
}

.card-pricing {
  padding: 25px;
}
@media (min-width: 576px) {
  .card-pricing {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .card-pricing {
    padding: 25px;
  }
}
.card-pricing__price-subtext {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.4px;
  color: #021627;
}

.card-profile {
  height: 100%;
}
.card-profile__inner {
  overflow: hidden;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  height: 100%;
  min-height: clamp(315px, -3.1534rem + 121.8182vw, 650px);
  padding: 25px;
  box-shadow: 4px 8px 24px 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  background-color: #021627;
}
@media (min-width: 576px) {
  .card-profile__inner {
    min-height: clamp(315px, -2.9303rem + 62.8272vw, 435px);
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .card-profile__inner {
    min-height: clamp(275px, 0.4822rem + 34.8028vw, 425px);
  }
}
@media (min-width: 1200px) {
  .card-profile__inner {
    min-height: clamp(310px, -0.625rem + 26.6667vw, 390px);
  }
}
.card-profile__inner--link:hover, .card-profile__inner--link:focus-visible {
  text-decoration: none;
}
@media (min-width: 992px) {
  .card-profile__inner--link:hover .card-profile__image::before, .card-profile__inner--link:focus-visible .card-profile__image::before {
    opacity: 1;
    transition: all 0.27s linear;
  }
}
@media (min-width: 992px) {
  .card-profile__inner--link:hover .card-profile__contents, .card-profile__inner--link:focus-visible .card-profile__contents {
    opacity: 1;
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .card-profile__inner--link:hover .card-profile__contents-move, .card-profile__inner--link:focus-visible .card-profile__contents-move {
    opacity: 1;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-profile__contents {
  overflow: hidden;
  z-index: 3;
  will-change: transform;
  transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .card-profile__contents {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
.card-profile__contents-move {
  padding-top: 15px;
}
@media (min-width: 992px) {
  .card-profile__contents-move {
    padding-top: 20px;
    opacity: 0;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-profile__image::before, .card-profile__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  content: "";
  transition: all 0.27s linear;
}
.card-profile__image::before {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8) 75%);
}
.card-profile__image::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.card-profile-simple {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 0;
  transition: all 0.26s ease;
}
@media (min-width: 992px) {
  .card-profile-simple.has-link:hover .card-profile-simple__hover {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
}
.card-profile-simple__title-link {
  color: #021627;
  text-decoration: none;
  transition: all 0.26s ease;
}
.card-profile-simple__title-link:hover {
  color: #ed8116;
  text-decoration: none;
}
.card-profile-simple__title-link.light {
  color: #fefefe;
}
.card-profile-simple__title-link.light:hover {
  color: #ed8116;
}
.card-profile-simple__position:not(.accent-text--light) {
  color: #4f5b67;
}
.card-profile-simple__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 104.7619047619%;
  border-radius: 0;
}
.card-profile-simple__image img {
  border-radius: 0;
  -o-object-position: top;
     object-position: top;
}
.card-profile-simple__hover {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.26s ease;
}
.card-profile-simple__hover::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.card-profile-simple__hover-icon {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 21px;
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.5);
  border-radius: 0;
}

.card-project {
  height: 100%;
}
.card-project__inner {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  height: 100%;
  padding: 10px 15px;
  min-height: clamp(230px, -2.8895rem + 92.0771vw, 660px);
  border-radius: 0;
  background-color: #021627;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .card-project__inner {
    min-height: clamp(310px, 0.9991rem + 38.2831vw, 475px);
  }
}
@media (min-width: 1200px) {
  .card-project__inner {
    min-height: clamp(335px, -5.3125rem + 35vw, 440px);
  }
}
@media (min-width: 992px) {
  .card-project__inner:hover .card-project__image::before, .card-project__inner:focus-visible .card-project__image::before {
    opacity: 1;
    transition: all 0.27s linear;
  }
}
@media (min-width: 992px) {
  .card-project__inner:hover .card-project__contents, .card-project__inner:focus-visible .card-project__contents {
    opacity: 1;
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .card-project__inner:hover .card-project__contents-move, .card-project__inner:focus-visible .card-project__contents-move {
    opacity: 1;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .card-project__inner:hover .card-project__title, .card-project__inner:focus-visible .card-project__title {
    color: #ed8116;
  }
}
.card-project__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.card-project__link:focus-visible {
  outline-color: #fff !important;
  outline-offset: -5px !important;
}
.card-project__contents {
  will-change: transform;
  transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .card-project__contents {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
@media (min-width: 992px) {
  .card-project__contents-move {
    opacity: 0;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-project__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.card-project__image::before, .card-project__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  content: "";
  transition: all 0.27s linear;
}
.card-project__image::before {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8) 75%);
}
.card-project__image::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.card-project__service-badges {
  position: relative;
  z-index: 4;
}
.card-project__service-badges .nav-service-badges__list {
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  text-align: right;
}
.card-project__title {
  color: #fefefe;
  text-decoration: none;
  transition: all 0.26s ease;
}
.card-project__title:hover {
  color: #ed8116;
  text-decoration: none;
}
.card-project__service-areas {
  position: relative;
  z-index: 4;
}

@media (min-width: 992px) {
  .card-project-simple:hover .card-project-simple__title-link {
    color: #ed8116;
  }
}
.card-project-simple__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.4705882353%;
  border-radius: 0;
}
.card-project-simple__image img {
  border-radius: 0;
}
.card-project-simple__service-badges {
  position: relative;
  z-index: 3;
}
.card-project-simple__service-badges.image-present {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.card-project-simple__title-link {
  color: #021627;
  text-decoration: none;
  transition: all 0.26s ease;
}
.card-project-simple__title-link:hover {
  color: #ed8116;
  text-decoration: none;
}
.card-project-simple__service-areas {
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-promo-simple__title {
    font-size: 2.125rem;
  }
}

@media (min-width: 576px) {
  .card-promo-split__contents {
    min-height: 225px;
  }
}
@media (min-width: 992px) {
  .card-promo-split__contents {
    min-height: 145px;
  }
}
@media (min-width: 1200px) {
  .card-promo-split__contents {
    min-height: 180px;
  }
}
@media (min-width: 1440px) {
  .card-promo-split__contents {
    min-height: 225px;
  }
}
.card-promo-split__image {
  position: relative;
  overflow: hidden;
  padding-top: 84.4827586207%;
}
@media (min-width: 576px) {
  .card-promo-split__image {
    height: 100%;
    padding-top: 0;
  }
}

.card-review__title {
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #021627;
}
.card-review__byline {
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  color: #4f5b67;
}
.card-review .rating-stars__icon {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.card-review .doublequotes-opening-alt-graphic {
  width: 56px;
  height: auto;
}
.card-review .doublequotes-opening-alt-graphic svg {
  width: 100%;
  height: auto;
}
.card-review .doublequotes-opening-alt-graphic svg path {
  fill: #ed8116;
}

.card-review-comment__main {
  position: relative;
  background-color: #e5eaf0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.card-review-comment__main::after {
  position: absolute;
  bottom: -38px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 39px solid #e5eaf0;
  border-right: 36px solid transparent;
  content: "";
}
.card-review-comment__cite {
  min-height: 40px;
}
.card-review-comment__image {
  overflow: hidden;
  width: 32px;
  height: 32px;
  border-radius: 0;
}
.card-review-comment__title {
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #021627;
}
.card-review-comment__byline {
  font-size: 0.5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #4f5b67;
}
.card-review-comment .rating-stars__icon {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.card-service-slide {
  height: 100%;
}
.card-service-slide__inner {
  overflow: hidden;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  height: 100%;
  min-height: clamp(235px, -2.9785rem + 94.2184vw, 675px);
  padding: 25px;
  border-radius: 0;
  background-color: #021627;
}
@media (min-width: 768px) {
  .card-service-slide__inner {
    min-height: clamp(320px, 1.704rem + 38.1166vw, 405px);
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .card-service-slide__inner {
    min-height: clamp(265px, 1.3052rem + 24.6085vw, 375px);
  }
}
@media (min-width: 1440px) {
  .card-service-slide__inner {
    min-height: clamp(280px, -4.1rem + 24vw, 340px);
  }
}
.card-service-slide__inner:hover, .card-service-slide__inner:focus-visible {
  text-decoration: none;
}
@media (min-width: 992px) {
  .card-service-slide__inner:hover .card-service-slide__image::before, .card-service-slide__inner:focus-visible .card-service-slide__image::before {
    opacity: 1;
    transition: all 0.27s linear;
  }
}
@media (min-width: 992px) {
  .card-service-slide__inner:hover .card-service-slide__contents, .card-service-slide__inner:focus-visible .card-service-slide__contents {
    opacity: 1;
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .card-service-slide__inner:hover .card-service-slide__contents-move, .card-service-slide__inner:focus-visible .card-service-slide__contents-move {
    opacity: 1;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-service-slide__contents {
  overflow: hidden;
  z-index: 3;
  will-change: transform;
  transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear;
  transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .card-service-slide__contents {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
.card-service-slide__contents-move {
  padding-top: 15px;
}
@media (min-width: 992px) {
  .card-service-slide__contents-move {
    opacity: 0;
    transition: opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear;
    transition: transform 0.3s ease-in-out, opacity 0.27s linear, -webkit-transform 0.3s ease-in-out;
  }
}
.card-service-slide__image::before, .card-service-slide__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  content: "";
  transition: all 0.27s linear;
}
.card-service-slide__image::before {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8) 75%);
}
.card-service-slide__image::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.page-form .fusion-form .form-group {
  margin-bottom: 0.375rem;
}
.page-form .fusion-form .form-control {
  height: 48px;
  padding: 0 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  color: #021627;
  border: 0;
  border-radius: 0;
  background-color: #e5eaf0;
}
.page-form .fusion-form .form-control:focus {
  color: #021627;
  background-color: #e5eaf0;
  outline-color: #021627 !important;
}
.page-form .fusion-form .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(2, 22, 39, 0.8);
}
.page-form .fusion-form .form-control::-moz-placeholder {
  opacity: 1;
  color: rgba(2, 22, 39, 0.8);
}
.page-form .fusion-form .form-control::placeholder {
  opacity: 1;
  color: rgba(2, 22, 39, 0.8);
}
.page-form .fusion-form .form-control[type=date], .page-form .fusion-form .form-control[type=time] {
  line-height: 48px;
}
.page-form .fusion-form .file-upload {
  padding-top: 5px;
  height: auto;
  padding-left: 0;
  border: 0 !important;
  border-radius: 0;
  background-color: transparent;
}
.page-form .fusion-form .file-upload:focus {
  background-color: transparent;
}
.page-form .fusion-form .help-block {
  margin: 5px 0;
  padding: 0 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  color: #021627;
}
.page-form .fusion-form label {
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: normal;
  color: #021627;
}
.page-form .fusion-form label span {
  color: #ed8116;
}
.page-form .fusion-form .form-check.toggle {
  margin-top: 10px;
}
.page-form .fusion-form .form-toggle,
.page-form .fusion-form .form-check-label {
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
}
.page-form .fusion-form select.form-control {
  height: 48px;
  padding: 0 45px 0 15px !important;
  background: #e5eaf0 url("data:image/svg+xml;utf8,<svg viewBox='0 0 320 512' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z' fill='%23021627'/></svg>");
  background-size: 13px;
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-form .fusion-form textarea.form-control {
  height: 145px;
  padding-top: 15px;
}
.page-form .fusion-form button[type=submit]:focus {
  outline-color: #021627 !important;
}
.page-form .fusion-form button[type=submit],
.page-form .fusion-form .form-alert {
  margin-top: 25px;
}
.page-form .fusion-form .form-submit-and-alert {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
@media (min-width: 992px) {
  .page-form .fusion-form .form-submit-and-alert {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
.page-form .fusion-form .g-recaptcha {
  overflow: hidden;
  padding: 15px 4px 0;
  width: 100% !important;
  max-width: 335px !important;
}
.page-form .fusion-form .g-recaptcha > div:nth-of-type(1) {
  width: 100% !important;
  max-width: 305px !important;
  height: auto !important;
}
.page-form .fusion-form .g-recaptcha > div:nth-of-type(1) iframe {
  width: 100% !important;
}
.page-form.bg-dark .form-control:focus {
  outline-color: #fefefe !important;
}
.page-form.bg-dark button[type=submit]:focus {
  outline-color: #fefefe !important;
}
.page-form--borders-theme .fusion-form .form-control {
  border: 2px solid #e5eaf0;
}
.page-form--light-theme .fusion-form .file-upload {
  color: #fefefe;
  border: 0;
  background-color: transparent;
}
.page-form--light-theme .fusion-form .file-upload:focus {
  color: #fefefe;
  background-color: transparent;
}
.page-form--light-theme .fusion-form .help-block {
  color: #fefefe !important;
}
.page-form--light-theme .fusion-form label {
  color: #fefefe;
}
.page-form--pad-lg {
  padding: 40px 25px;
}
@media (min-width: 576px) {
  .page-form--pad-lg {
    padding: 50px 45px;
  }
}
@media (min-width: 768px) {
  .page-form--pad-lg {
    padding: 50px 65px;
  }
}
@media (min-width: 992px) {
  .page-form--pad-lg {
    padding: 65px 80px;
  }
}
@media (min-width: 1200px) {
  .page-form--pad-lg {
    padding: 80px 95px;
  }
}
.page-form.contact-form .fusion-form .form-control {
  border-radius: 8px;
}
.page-form.contact-form.bg-dark {
  background-color: #053968 !important;
}

.form-alert__icon {
  font-size: 19px;
}

.search-box__input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #ced4da;
}
.search-box__btn {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
  background: transparent;
  border: 0;
  color: #4f5b67;
}

.social-list {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0;
}
.social-list__item {
  margin: 8px 16px 8px 0;
}
.social-list__link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #ed8116;
  border-radius: 0;
  color: #ed8116;
  text-decoration: none;
}
.social-list__link:hover {
  background: #ed8116;
  border: 1px solid #ed8116;
  color: #fefefe;
  text-decoration: none;
}

.panel-overlay__btn {
  margin: 5px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.panel-overlay__dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: none;
  -webkit-transform: none !important;
          transform: none !important;
}
.panel-overlay__content {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 80px);
  width: 100%;
  max-width: 460px;
  margin: 0;
  padding: 10px 20px 40px;
  background: #fff;
  border-radius: 0;
  border: 0;
  overflow-y: auto;
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.panel-overlay__content--right {
  top: 80px;
  right: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.panel-overlay__content--left {
  top: 80px;
  left: 0;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.panel-overlay__content--top {
  top: 80px;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.panel-overlay__content--bottom {
  bottom: 0;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.panel-overlay__content--fade {
  top: 0;
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.show .panel-overlay__content {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.site-header-overlaps .panel-overlay__btn:focus-visible {
  outline-color: #fefefe !important;
}

.scrolled .site-header-overlaps .panel-overlay__btn:focus-visible {
  outline-color: #021627 !important;
}

.collapse-item {
  background-color: #fefefe;
}
.collapse-item__control {
  padding: 21px 20px;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
  transition: all 0.26s ease;
}
.collapse-item__control:hover, .collapse-item__control:focus-visible {
  color: #021627;
}
.collapse-item__control[aria-expanded=true] .collapse-item__control-icon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.collapse-item__control-icon {
  width: 1.5625rem;
  height: 1.5625rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: 1.25rem;
  font-size: 24px;
  font-weight: 700;
  color: #ed8116;
  background-color: transparent;
  transition: all 0.26s ease;
}
.collapse-item__control-icon:before {
  content: "";
  -webkit-transform: rotate(0);
          transform: rotate(0);
  transition: -webkit-transform 0.24s linear;
  transition: transform 0.24s linear;
  transition: transform 0.24s linear, -webkit-transform 0.24s linear;
}
.collapse-item__content-inner {
  padding: 0 clamp(1.25rem, 0.3125rem + 2.5vw, 2.5rem) 1.3125rem 20px;
}

.collapse-item + .collapse-item {
  margin-top: 0.9375rem;
}
@media (min-width: 992px) {
  .collapse-item + .collapse-item {
    margin-top: 1.5625rem;
  }
}

.contact-info__info-text {
  margin-bottom: 0;
}
.contact-info a {
  display: inline-block;
  color: #4f5b67;
  text-decoration: none;
}
.contact-info a:hover {
  color: #4f5b67;
  text-decoration: underline;
  text-underline-position: under;
}
.contact-info.address p {
  margin-bottom: 0px;
}
.contact-info .address-2 {
  display: block;
}
.contact-info.dark {
  color: #021627;
}
.contact-info.dark a {
  color: #021627;
}
.contact-info.dark a:hover {
  color: #021627;
}
.contact-info.light {
  color: #fefefe;
}
.contact-info.light a {
  color: #fefefe;
}
.contact-info.light a:hover {
  color: #fefefe;
}

.contact-info-with-icon {
  display: -webkit-flex;
  display: flex;
}
.contact-info-with-icon__icon {
  display: block;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  margin-top: 4px;
  margin-right: 15px;
  font-size: 16px;
  color: #ed8116;
}

.fancybox__container {
  z-index: 1100;
}

.fancybox__thumbs {
  display: none;
}

.image-with-caption-overlay {
  position: relative;
  display: block;
}
.image-with-caption-overlay__figure {
  margin-bottom: 0;
}
.image-with-caption-overlay__image {
  min-height: 240px;
}
@media (min-width: 576px) {
  .image-with-caption-overlay__image {
    min-height: 515px;
  }
}
@media (min-width: 768px) {
  .image-with-caption-overlay__image {
    min-height: 335px;
  }
}
@media (min-width: 992px) {
  .image-with-caption-overlay__image {
    min-height: 425px;
  }
}
@media (min-width: 1200px) {
  .image-with-caption-overlay__image {
    min-height: 510px;
  }
}
@media (min-width: 1440px) {
  .image-with-caption-overlay__image {
    min-height: 610px;
  }
}
.image-with-caption-overlay__caption {
  position: absolute;
  width: calc(100% - (2 * 10px));
  left: 10px;
  bottom: 10px;
  padding: 10px;
  color: #fefefe;
  border-radius: 0;
  background-color: #021627;
}
@media (min-width: 768px) {
  .image-with-caption-overlay__caption {
    width: calc(100% - (2 * 15px));
    left: 15px;
    bottom: 15px;
  }
}

.profile-modal {
  padding: 60px 25px 40px;
}
@media (min-width: 768px) {
  .profile-modal {
    padding: 60px clamp(30px, 0.2357rem + 3.4153vw, 55px);
  }
}
@media (min-width: 1200px) {
  .profile-modal.container, .profile-modal.subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    max-width: 1100px !important;
  }
}
.profile-modal__contact {
  -webkit-flex-grow: 1;
          flex-grow: 1;
  max-width: 100% !important;
  padding-top: 0.9375rem;
}
@media (max-width: 410px) {
  .profile-modal__contact .card-contact-horz {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 410px) {
  .profile-modal__contact .card-contact-horz__icon {
    margin-bottom: 5px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .profile-modal__contact .card-contact-horz__title {
    font-size: 0.6875rem;
  }
}
@media (max-width: 410px) {
  .profile-modal__contact .card-contact-horz__title {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .profile-modal__contact .card-contact-horz .contact-info {
    font-size: 0.8125rem;
  }
}
@media (max-width: 410px) {
  .profile-modal__contact .card-contact-horz .contact-info {
    font-size: 0.8125rem;
  }
}

@media (max-width: 1023px) {
  #team-ov .fancybox__slide {
    padding-left: 50px;
    padding-right: 50px;
  }
}
#team-ov .carousel__button.is-close {
  top: 15px;
  right: 25px;
  width: 32px;
  height: 32px;
  padding: 6px;
  color: #ed8116;
  border-radius: 0;
  border: 2px solid #ed8116;
}
@media (min-width: 768px) {
  #team-ov .carousel__button.is-close {
    top: 20px;
    right: 25px;
  }
}
#team-ov .carousel__button.is-close svg {
  -webkit-filter: none;
          filter: none;
}

.pagination {
  display: -webkit-flex;
  display: flex;
}
.pagination__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0 auto;
  background-color: #e5eaf0;
  border-radius: 0;
  overflow: hidden;
}
.pagination__page-links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.pagination__page-item {
  display: block;
}
.pagination__arrow-item, .pagination__page-item {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3px;
  color: #021627;
}
.pagination__arrow, .pagination__link {
  display: block;
  padding: 28px 16px;
  color: #021627;
  background-color: transparent;
  transition: all 0.26s ease;
}
.pagination__arrow:focus-visible, .pagination__link:focus-visible {
  outline-offset: -3px !important;
}
.pagination__arrow:not(.disabled):hover, .pagination__link:not(.disabled):hover {
  color: #fefefe;
  background-color: #50bef1;
}
.pagination__arrow.active, .pagination__link.active {
  color: #fefefe;
  background-color: #50bef1;
}
.pagination__arrow.disabled, .pagination__link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__arrow.dots, .pagination__link.dots {
  color: #021627;
}
.pagination__arrow.prev {
  padding-left: 30px;
}
.pagination__arrow.next {
  padding-right: 30px;
}

.cta-alert__contents, .cta-alert__buttons {
  gap: 20px;
}
.cta-alert__icon {
  width: 55px;
  height: 55px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding-left: 4px;
  font-size: 20px;
  color: #fefefe;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cta-alert__icon {
    width: 64px;
    height: 64px;
    font-size: 23px;
  }
}

.cta-fullwidth.has-image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.cta-fullwidth__contents {
  position: relative;
  z-index: 2;
  min-height: clamp(200px, 8.75rem + 20vw, 440px);
  padding: clamp(40px, 1.875rem + 3.3333vw, 80px) 0;
}
.cta-fullwidth__buttons {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 992px) {
  .cta-fullwidth__buttons {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.cta-small__buttons {
  gap: 10px;
}
.cta-small__image img {
  width: 100px;
  height: 100px;
  border-radius: 0;
}

.rating-stars__icon {
  font-size: 14px;
  color: #edb416;
}

.split-content-default__map-embed, .split-content-default__image {
  position: relative;
  overflow: hidden;
  padding-top: 106.5420560748%;
  border-radius: 0;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .split-content-default__map-embed.full-height, .split-content-default__image.full-height {
    height: 100%;
    padding-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
@media (min-width: 768px) {
  .split-content-default__contents-col.has-image-or-map {
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  .split-content-default__contents-col.has-image-or-map {
    min-height: 375px;
  }
}
@media (min-width: 1200px) {
  .split-content-default__contents-col.has-image-or-map {
    min-height: 455px;
  }
}
@media (min-width: 1440px) {
  .split-content-default__contents-col.has-image-or-map {
    min-height: 570px;
  }
}
@media (min-width: 768px) {
  .split-content-default__contents-col.has-image-or-map.full-height-image-or-map {
    padding: clamp(45px, -0.4662rem + 6.8306vw, 95px) clamp(40px, -1.1066rem + 7.5137vw, 95px);
  }
}
@media (min-width: 768px) {
  .split-content-default__contents-col.has-image-or-map.fixed-height-image-or-map.aligned-left {
    padding-right: clamp(20px, -5.6352rem + 14.3443vw, 125px);
  }
}
@media (min-width: 768px) {
  .split-content-default__contents-col.has-image-or-map.fixed-height-image-or-map.aligned-right {
    padding-left: clamp(20px, -5.6352rem + 14.3443vw, 125px);
  }
}
.split-content-default__buttons {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (min-width: 992px) {
  .split-content-default__buttons {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.split-content-default__featured-heading {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.split-content-default__featured-icon svg,
.split-content-default__featured-icon img {
  max-width: 100%;
  max-height: 45px;
}
.split-content-default + .split-content-default {
  padding-top: 0 !important;
}

@media (min-width: 768px) {
  .slider-reviews-horz__heading {
    padding-right: 7%;
    width: 35%;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .slider-reviews-horz__heading {
    width: 24%;
    padding-right: 5%;
  }
}
@media (min-width: 1200px) {
  .slider-reviews-horz__heading {
    padding-right: 7%;
  }
}
.slider-reviews-horz__slider {
  width: calc(100% + 20px);
  margin-left: -10px;
}
@media (min-width: 768px) {
  .slider-reviews-horz__slider {
    width: 65%;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .slider-reviews-horz__slider {
    width: 76%;
  }
}
.slider-reviews-horz__slider:not(.slick-initialized) {
  opacity: 0;
  height: 100px;
}
.slider-reviews-horz__slider.slick-initialized {
  opacity: 1;
}
.slider-reviews-horz__slider .slick-track {
  display: -webkit-flex;
  display: flex;
  margin: 0;
}
.slider-reviews-horz__slider .slick-slide {
  height: inherit !important;
}
.slider-reviews-horz__slide {
  padding: 0 10px;
}
@media (min-width: 768px) {
  .slider-reviews-horz__slide {
    padding: 0 12px;
  }
}
.slider-reviews-horz .doublequotes-opening-graphic,
.slider-reviews-horz .doublequotes-outlined-opening-graphic {
  width: 60px;
}
@media (min-width: 992px) {
  .slider-reviews-horz .doublequotes-opening-graphic,
.slider-reviews-horz .doublequotes-outlined-opening-graphic {
    width: 88px;
  }
}
.slider-reviews-horz .doublequotes-opening-graphic svg,
.slider-reviews-horz .doublequotes-outlined-opening-graphic svg {
  width: 100%;
  height: auto;
}
.slider-reviews-horz .doublequotes-opening-graphic svg path {
  fill: #e5eaf0;
}
.slider-reviews-horz .doublequotes-outlined-opening-graphic svg path {
  stroke: #0b5998;
}

.slider-reviews-horz-nav {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 40px;
}
@media (max-width: 767.98px) {
  .slider-reviews-horz-nav {
    padding-top: 1.25rem;
    height: 60px;
  }
}
.slider-reviews-horz-nav .slider-bar {
  background-color: #e5eaf0;
  height: 4px;
  border-radius: 0;
}
.slider-reviews-horz-nav .slider-bar__inner {
  position: relative;
  top: -2px;
  background-color: #ed8116;
  height: 8px;
  border-radius: 0;
}
.slider-reviews-horz-nav .slick-prev,
.slider-reviews-horz-nav .slick-next {
  position: relative;
  line-height: 1;
  font-size: 16px;
  top: auto;
  -webkit-transform: none;
          transform: none;
}
.slider-reviews-horz-nav .slick-prev:hover:before, .slider-reviews-horz-nav .slick-prev:focus:before,
.slider-reviews-horz-nav .slick-next:hover:before,
.slider-reviews-horz-nav .slick-next:focus:before {
  opacity: 1;
}
.slider-reviews-horz-nav .slick-prev.slick-disabled:before,
.slider-reviews-horz-nav .slick-next.slick-disabled:before {
  opacity: 0.5;
}
.slider-reviews-horz-nav .slick-prev:before,
.slider-reviews-horz-nav .slick-next:before {
  font-size: 17px;
  font-weight: 700;
  color: #4f5b67;
  opacity: 1;
}
.slider-reviews-horz-nav .slick-prev.light:before,
.slider-reviews-horz-nav .slick-next.light:before {
  color: #fefefe;
}
.slider-reviews-horz-nav .slick-prev {
  left: auto;
}
.slider-reviews-horz-nav .slick-prev:before {
  content: "";
}
.slider-reviews-horz-nav .slick-prev.slick-disabled {
  display: none !important;
}
.slider-reviews-horz-nav .slick-next {
  right: auto;
}
.slider-reviews-horz-nav .slick-next:before {
  content: "";
}

.slider-reviews-vert {
  position: relative;
  z-index: 0;
}
.slider-reviews-vert__heading {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 30px;
  min-height: 80px;
  padding-top: 25px;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .slider-reviews-vert__heading {
    min-height: 115px;
    padding-top: 15px;
    padding-left: 42px;
  }
}
@media (min-width: 1200px) {
  .slider-reviews-vert__image-col {
    padding-left: 5%;
  }
}
.slider-reviews-vert__image {
  min-height: 285px;
}
@media (min-width: 576px) {
  .slider-reviews-vert__image {
    min-height: 610px;
  }
}
@media (min-width: 768px) {
  .slider-reviews-vert__image {
    min-height: 320px;
  }
}
@media (min-width: 992px) {
  .slider-reviews-vert__image {
    min-height: 490px;
  }
}
@media (min-width: 1200px) {
  .slider-reviews-vert__image {
    min-height: 545px;
  }
}
@media (min-width: 1440px) {
  .slider-reviews-vert__image {
    min-height: 650px;
  }
}
.slider-reviews-vert__slider-wrap {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .slider-reviews-vert__slider-wrap {
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .slider-reviews-vert__slider-wrap {
    width: 80%;
  }
}
.slider-reviews-vert__slider:not(.slick-initialized) {
  opacity: 0;
  height: 100px;
}
.slider-reviews-vert__slider.slick-initialized {
  opacity: 1;
}
.slider-reviews-vert__slide {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .slider-reviews-vert__slide {
    padding-bottom: 24px;
  }
}
.slider-reviews-vert .doublequotes-opening-graphic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 140px;
}
@media (min-width: 992px) {
  .slider-reviews-vert .doublequotes-opening-graphic {
    width: 200px;
  }
}
.slider-reviews-vert .doublequotes-opening-graphic svg {
  width: 100%;
  height: auto;
}
.slider-reviews-vert .doublequotes-opening-graphic svg path {
  fill: #e5eaf0;
}
.slider-reviews-vert .doublequotes-opening-graphic.light svg path {
  fill: rgba(229, 234, 240, 0.1);
}

.slider-reviews-vert-nav {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  width: 55px;
  margin-right: 20px;
}
@media (min-width: 992px) {
  .slider-reviews-vert-nav {
    margin-top: 50px;
    margin-right: 25px;
  }
}
.slider-reviews-vert-nav .slick-prev,
.slider-reviews-vert-nav .slick-next {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1;
  width: 48px;
  height: 48px;
  margin: 10px 0;
  font-size: 16px;
  top: auto;
  -webkit-transform: none;
          transform: none;
  border-radius: 0;
  border: 1px solid #4f5b67;
}
@media (min-width: 992px) {
  .slider-reviews-vert-nav .slick-prev,
.slider-reviews-vert-nav .slick-next {
    margin: 15px 0;
  }
}
.slider-reviews-vert-nav .slick-prev:hover:before, .slider-reviews-vert-nav .slick-prev:focus:before,
.slider-reviews-vert-nav .slick-next:hover:before,
.slider-reviews-vert-nav .slick-next:focus:before {
  opacity: 1;
}
.slider-reviews-vert-nav .slick-prev.slick-disabled:before,
.slider-reviews-vert-nav .slick-next.slick-disabled:before {
  opacity: 0.5;
}
.slider-reviews-vert-nav .slick-prev:before,
.slider-reviews-vert-nav .slick-next:before {
  font-size: 17px;
  font-weight: 700;
  color: #ed8116;
  opacity: 1;
}
.slider-reviews-vert-nav .slick-prev {
  left: auto;
}
.slider-reviews-vert-nav .slick-prev:before {
  content: "";
}
.slider-reviews-vert-nav .slick-next {
  right: auto;
}
.slider-reviews-vert-nav .slick-next:before {
  content: "";
}

.slider-services__slider {
  width: calc(100% + 24px);
  margin-left: -12px;
  transition: opacity 0.27s linear;
}
.slider-services__slider.hide {
  opacity: 0 !important;
}
.slider-services__slider:not(.slick-initialized) {
  opacity: 0;
  height: 325px;
}
@media (min-width: 768px) {
  .slider-services__slider:not(.slick-initialized) {
    height: 320px;
  }
}
@media (min-width: 992px) {
  .slider-services__slider:not(.slick-initialized) {
    height: 265px;
  }
}
@media (min-width: 1440px) {
  .slider-services__slider:not(.slick-initialized) {
    height: 280px;
  }
}
.slider-services__slider.slick-initialized {
  opacity: 1;
}
.slider-services__slider .slick-track {
  display: -webkit-flex;
  display: flex;
  margin: 0 0 25px;
}
.slider-services__slider .slick-slide {
  height: inherit !important;
}
.slider-services__slide {
  padding: 0 12px;
  margin-top: 5px;
}
.slider-services .slick-dots {
  position: relative;
  bottom: 0;
  padding: 20px 0;
}
.slider-services .slick-dots li {
  height: 17px;
  width: 17px;
  margin: 0 8px;
  background-color: #e5eaf0;
  border-radius: 0;
  overflow: hidden;
}
.slider-services .slick-dots li button {
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 16px;
}
.slider-services .slick-dots li button:before {
  display: none;
}
.slider-services .slick-dots li.slick-active {
  width: 35px;
  background-color: #ed8116;
  border-radius: 0;
}

.slider-services-nav .slick-prev,
.slider-services-nav .slick-next {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 48px;
  width: 48px;
  background: transparent;
  border: 1px solid #021627;
  border-radius: 0;
  color: #ed8116;
  line-height: 1;
  font-size: 16px;
  top: auto;
  -webkit-transform: none;
          transform: none;
  transition: all 0.26s ease;
}
.slider-services-nav .slick-prev.slick-disabled,
.slider-services-nav .slick-next.slick-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.slider-services-nav .slick-prev:before,
.slider-services-nav .slick-next:before {
  font-size: 19px;
  color: #ed8116;
  font-weight: 700;
}
.slider-services-nav .slick-prev {
  left: auto;
  margin-right: 15px;
}
.slider-services-nav .slick-next {
  right: auto;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .blog-cards-std-grid-section .card-blog-simple__contents {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .blog-cards-std-grid-section .card-blog-simple__contents-inner {
    margin-bottom: 2.1875rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .blog-cards-std-grid-section .card-blog-simple__title {
    font-size: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .blog-cards-std-grid-section .card-blog-simple__image {
    margin-bottom: 0.3125rem;
  }
}

.content-with-bg-texture__contents.breadcrumbs-present {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .content-with-bg-texture__contents.breadcrumbs-present {
    padding-top: clamp(20px, -0.3893rem + 3.4153vw, 45px);
  }
}

.icon-cards-section__item {
  max-width: 100% !important;
}

.icon-spotlight-items__item-wrap {
  max-width: 100% !important;
}
.icon-spotlight-items__item-icon {
  margin-right: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  padding: 15px;
  font-size: 16px;
  line-height: 1;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
}
.icon-spotlight-items__item-icon svg,
.icon-spotlight-items__item-icon img {
  max-width: 100%;
  max-height: 100%;
}
.icon-spotlight-items__text {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
}

.image-comparison-section.dark-theme .jx-control {
  background-color: #021627;
}
.image-comparison-section .jx-control {
  background-color: #fefefe;
}
.image-comparison-section .jx-controller {
  position: relative;
  top: 50%;
  bottom: auto;
  height: 40px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .image-comparison-section .jx-controller {
    height: 50px;
  }
}
.image-comparison-section .jx-controller::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
@media (min-width: 768px) {
  .image-comparison-section .jx-controller::after {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
.image-comparison-section .jx-arrow {
  display: none;
}
.image-comparison-section .jx-knightlab {
  display: none;
}

.reviews-section-heading__rating-info {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.reviews-section-heading__rating-logo svg,
.reviews-section-heading__rating-logo img {
  max-height: 32px;
}

.sections-group-pad-top-adjust.adjust-pad-top > div:first-child:not(.promo-cards-section):not(.cta-fullwidth) {
  padding-top: 0 !important;
}

.subpage-blocks > div:first-child {
  margin-top: 0 !important;
}
.subpage-blocks > div:first-child.subpage-two-column {
  padding-top: 0 !important;
}
.subpage-blocks > div:last-child:not(.subpage-two-column) {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .subpage-blocks > div:last-child:not(.subpage-two-column) {
    margin-bottom: clamp(40px, 1.6406rem + 4.5833vw, 95px);
  }
}

.subpage-block:not(.subpage-two-column):not(.subpage-content-column) {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .subpage-block:not(.subpage-two-column):not(.subpage-content-column) {
    margin-top: clamp(25px, 1.3281rem + 1.25vw, 40px);
  }
}

.subpage-two-column + .subpage-block {
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .subpage-two-column + .subpage-block {
    margin-top: 0 !important;
  }
}

.subpage-content-columns {
  margin-top: 5px !important;
}
.subpage-content-columns__item {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .subpage-content-columns__item {
    margin-top: clamp(25px, 1.3281rem + 1.25vw, 40px);
  }
}

.subpage-image {
  width: 100%;
}
.subpage-image__image {
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.subpage-video {
  position: relative;
  display: inline-block;
  padding: 5px 0;
}
.subpage-video__link {
  overflow: hidden;
  display: inline-block;
  width: 100%;
  min-height: 100px;
  border-radius: 0;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}
.subpage-video__link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  transition: all 0.26s ease;
}
.subpage-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(50px, 2.6563rem + 2.5vw, 80px);
  height: clamp(50px, 2.6563rem + 2.5vw, 80px);
  transition: all 0.23s linear;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.subpage-video .play-btn svg circle {
  fill: #ed8116;
}
.subpage-video .play-btn svg path {
  fill: #fefefe;
}

.subpage-buttons {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 992px) {
  .subpage-buttons {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.subpage-buttons__item {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .subpage-buttons__item {
    margin-bottom: 30px;
  }
}

.tabs-pricing__tabs {
  display: -webkit-flex;
  display: flex;
  border: 2px solid #e5eaf0;
  border-radius: 0;
  background-color: #fefefe;
}
.tabs-pricing__tabs-list {
  display: -webkit-flex;
  display: flex;
  border: 2px solid #fefefe;
  border-radius: 0;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

.tab-pricing__link {
  display: block;
  padding: 15px 25px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.26px;
  text-transform: uppercase;
  color: #021627;
  border-radius: 0;
  transition: all 0.26s ease;
}
.tab-pricing__link:hover, .tab-pricing__link.active {
  color: #fefefe;
  background-color: #50bef1;
}

.tabs-services__tabs {
  display: -webkit-flex;
  display: flex;
}
.tabs-services__tabs-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  border: 0;
}
@media (min-width: 992px) {
  .tabs-services__tabs-list {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.tab-services__link {
  display: inline-block;
  padding: 0.6875rem 0.9375rem;
  margin-bottom: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01625rem;
  line-height: 1.36;
  text-align: center;
  text-transform: uppercase;
  color: #fefefe;
  transition: all 0.26s ease;
  border: 2px solid #50bef1;
  border-radius: 0;
  background: transparent;
  color: #021627;
}
.tab-services__link:hover, .tab-services__link:focus-visible, .tab-services__link.active {
  background: #ed8116;
  border-color: #ed8116;
  color: #fefefe;
}

.nav {
  color: #021627;
  background: transparent;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.nav__item {
  display: -webkit-flex;
  display: flex;
  margin: 0 0.6875rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.0125rem;
}
@media (min-width: 1440px) {
  .nav__item {
    margin: 0 1rem;
    font-size: 0.9375rem;
    letter-spacing: 0.01875rem;
  }
}
.nav__item:hover .nav__link,
.nav__item:hover .nav__btn {
  color: #ed8116;
}
.nav__item:hover.dropdown .nav__text::after, .nav__item:hover.nav-mega-menu .nav__text::after {
  width: 100%;
}
.nav__text {
  position: relative;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-align-items: center;
          align-items: center;
  padding: 0 3px;
  color: #021627;
  text-transform: uppercase;
}
.nav__text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ed8116;
  content: "";
  transition: width 0.19s linear;
}
.nav__link {
  color: #021627;
  transition: all 0.26s ease;
}
.nav__link:hover {
  text-decoration: none;
  color: #ed8116;
}
.nav__link:focus-visible {
  outline-offset: -3px !important;
}
.nav__btn {
  padding: 0 3px;
  font-size: 13px;
  line-height: 1;
  color: #021627;
  background: transparent;
  border: 0;
  transition: all 0.26s ease;
}
.nav__btn:hover {
  color: #ed8116;
}
.nav__btn:focus-visible {
  outline-offset: -3px !important;
}

.site-header-overlaps .nav__text {
  color: #fefefe;
}
.site-header-overlaps .nav__link {
  color: #fefefe;
}
.site-header-overlaps .nav__link:hover {
  color: #ed8116;
}
.site-header-overlaps .nav__link:focus-visible {
  outline-color: #fefefe !important;
}
.site-header-overlaps .nav__btn {
  color: #fefefe;
}
.site-header-overlaps .nav__btn:hover {
  color: #ed8116;
}
.site-header-overlaps .nav__btn:focus-visible {
  outline-color: #fefefe !important;
}

.scrolled .site-header-overlaps .nav__text {
  color: #021627;
}
.scrolled .site-header-overlaps .nav__link {
  color: #021627;
}
.scrolled .site-header-overlaps .nav__link:hover {
  color: #ed8116;
}
.scrolled .site-header-overlaps .nav__link:focus-visible {
  outline-color: #021627 !important;
}
.scrolled .site-header-overlaps .nav__btn {
  color: #021627;
}
.scrolled .site-header-overlaps .nav__btn:hover {
  color: #ed8116;
}
.scrolled .site-header-overlaps .nav__btn:focus-visible {
  outline-color: #021627 !important;
}

@media (min-width: 1200px) {
  .nav-header-secondary {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
.nav-header-secondary__item {
  padding: 17px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.01875rem;
  text-transform: uppercase;
  border-bottom: 2px solid #e5eaf0;
}
@media (min-width: 1200px) {
  .nav-header-secondary__item {
    padding: 0;
    margin: 0.25rem 0;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    border: 0;
  }
}
.nav-header-secondary__link {
  display: inline-block;
  color: #021627;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .nav-header-secondary__link {
    text-decoration: underline;
    text-underline-position: under;
  }
}
.nav-header-secondary__link:hover {
  color: #021627;
  text-decoration: none;
}
.nav-header-secondary__link.light {
  color: #fefefe;
}
.nav-header-secondary__link.light:hover {
  color: #fefefe;
}

.nav-collapse {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav-collapse__item {
  list-style-type: none;
  position: relative;
  padding: 17px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.01875rem;
  color: #021627;
  transition: all 0.26s ease;
  border-bottom: 2px solid #e5eaf0;
}
.nav-collapse__item.nested {
  padding: 0;
  font-weight: 500;
  border: 0;
}
.nav-collapse__item.nested .nav-collapse__item.nested {
  padding-left: 12px;
  font-weight: 400;
}
.nav-collapse__text {
  display: inline-block;
  text-transform: uppercase;
}
.nav-collapse__text.nested {
  margin-top: 8px;
  padding: 4px 0;
  text-transform: none;
}
.nav-collapse__link {
  color: #021627;
  text-decoration: none;
  transition: all 0.26s ease;
}
.nav-collapse__link:hover {
  color: #021627;
  text-decoration: none;
}
.nav-collapse__btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #021627;
  background: transparent;
  border: 0;
  transition: all 0.26s ease;
}
.nav-collapse__btn:hover {
  color: #021627;
}
.nav-collapse__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  transition: all 0.26s ease;
}
.collapsed .nav-collapse__icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover > .nav-dropdown__menu, .nav-dropdown:focus-visible > .nav-dropdown__menu, .nav-dropdown.show > .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: -8px;
  z-index: 999;
  display: block;
  width: 200px;
  margin: 0;
  padding: 0;
  background: #fefefe;
  border: 0;
  border-radius: 0;
  box-shadow: 4px 24px 56px 0 rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-dropdown__menu.robust {
  left: 50%;
  width: 310px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.nav-dropdown__menu.dropdown-menu-right {
  left: auto;
  right: -45px;
  -webkit-transform: none;
          transform: none;
}
.nav-dropdown__list {
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav-dropdown__item {
  padding: 6px 0 7px;
  margin: 0 8px;
}
.nav-dropdown__item.robust {
  padding: 14px 8px 14px;
  margin: 0;
}
.nav-dropdown__item + .nav-dropdown__item {
  border-top: 1px solid #e5eaf0;
}
.nav-dropdown__text {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #021627;
  background-color: #fefefe;
  text-transform: none;
  transition: all 0.26s ease;
}
.nav-dropdown__link:hover {
  background: #fefefe;
  color: #ed8116;
  text-decoration: none;
}
.nav-dropdown__icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
}
.nav-dropdown__icon svg,
.nav-dropdown__icon img {
  max-width: 100%;
  max-height: 100%;
}

.nav-dropdown-sublist__text {
  display: inline-block;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #021627;
  background-color: #fefefe;
  text-transform: none;
  transition: all 0.26s ease;
}
.nav-dropdown-sublist__link:hover {
  background: #fefefe;
  color: #ed8116;
  text-decoration: none;
}
.nav-dropdown-sublist--nested {
  margin-bottom: 4px;
}
.nav-dropdown-sublist--nested .nav-dropdown-sublist__link {
  margin-left: 12px;
  margin-bottom: 3px;
}

.nav-footer {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .nav-footer {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .nav-footer {
    margin-right: -27px;
    margin-left: -27px;
  }
}
.nav-footer > [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .nav-footer > [class*=col] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .nav-footer > [class*=col] {
    padding-left: 27px;
    padding-right: 27px;
  }
}

.nav-footer-sublist__item {
  margin-top: 1.1875rem;
}
.nav-footer-sublist__link, .nav-footer-sublist__text {
  font-size: 0.9375rem;
}
.nav-footer-sublist__text {
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: normal;
  color: #021627;
}
.nav-footer-sublist--nested {
  padding-left: 30px;
}

.nav-footer-secondary__link {
  color: #4f5b67;
  text-decoration: none;
}
.nav-footer-secondary__link:hover {
  color: #4f5b67;
  text-decoration: underline;
  text-underline-position: under;
}
.nav-footer-secondary.secondary-very-light .nav-footer-secondary__item {
  color: #d5effa;
}
.nav-footer-secondary.secondary-very-light .nav-footer-secondary__link {
  color: #d5effa;
}
.nav-footer-secondary.secondary-very-light .nav-footer-secondary__link:hover {
  color: #d5effa;
}

.nav-megamenu {
  position: static !important;
}
.nav-megamenu:hover > .nav-megamenu__menu, .nav-megamenu:focus-visible > .nav-megamenu__menu, .nav-megamenu.show > .nav-megamenu__menu {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.nav-megamenu__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 999;
  display: block;
  width: 87%;
  max-width: 1470px;
  margin: 0;
  padding: 16px 0 0;
  background: transparent;
  border: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-megamenu__menu-inner {
  padding: clamp(40px, 3.3333vw, 50px);
  background: #fefefe;
  border-bottom: 3px solid #ed8116;
  box-shadow: 4px 24px 56px 0 rgba(0, 0, 0, 0.24);
}
.nav-megamenu__intro-col {
  width: 39.5%;
  padding-right: clamp(45px, -0.9375rem + 5vw, 60px);
}
.nav-megamenu__intro-col.robust {
  width: 28.5%;
  padding-right: clamp(30px, -1.875rem + 5vw, 45px);
}
.nav-megamenu__main-col {
  width: 100%;
}
.nav-megamenu__main-col.intro-present {
  width: 60.5%;
}
.nav-megamenu__main-col.intro-present.robust {
  width: 71.5%;
}
.nav-megamenu__main-col.has-border:not(.robust) {
  border-left: 2px solid #e5eaf0;
}
.nav-megamenu__spotlight-col.robust {
  padding-left: clamp(30px, -1.875rem + 5vw, 45px);
}
.nav-megamenu__list-col.simple {
  padding-left: clamp(55px, -1.5625rem + 6.6667vw, 75px);
  padding-right: clamp(30px, -3.125rem + 6.6667vw, 50px);
}
.nav-megamenu__list {
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav-megamenu__item {
  padding: 20px 0;
}
.nav-megamenu__item.simple .nav-dropdown-sublist__item {
  padding-left: 30px;
}
.nav-megamenu__item.simple .nav-dropdown-sublist__text {
  margin-top: 10px;
  font-size: 1rem;
}
.nav-megamenu__item.simple .nav-dropdown-sublist--nested .nav-dropdown-sublist__item {
  padding-left: 0px;
}
.nav-megamenu__item.robust {
  padding: 14px 8px 14px;
  border-bottom: 1px solid #e5eaf0;
}
.nav-megamenu__text {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #021627;
  background-color: #fefefe;
  text-transform: none;
  transition: all 0.26s ease;
}
.nav-megamenu__text.simple {
  padding-left: 29px;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.36;
}
.nav-megamenu__link:hover {
  background: #fefefe;
  color: #ed8116;
  text-decoration: none;
}
.nav-megamenu__link.simple {
  padding-left: 29px;
  font-size: 1.1875rem;
  font-weight: 500;
}
.nav-megamenu__link.simple::before {
  top: 0;
  font-size: 19px;
}
.nav-megamenu__icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  color: #fefefe;
  background-color: #ed8116;
  border-radius: 0;
}
.nav-megamenu__icon svg,
.nav-megamenu__icon img {
  max-width: 100%;
  max-height: 100%;
}

.megamenu-spotlight__link {
  min-height: clamp(10.625rem, -1.0938rem + 62.5vw, 16.875rem);
}
@media (min-width: 1200px) {
  .megamenu-spotlight__link {
    min-height: clamp(16.5625rem, 2.8125rem + 18.3333vw, 20rem);
  }
}
.megamenu-spotlight__link::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply, normal;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
  content: "";
}
.megamenu-spotlight__link:hover .megamenu-spotlight__contents, .megamenu-spotlight__link:focus-visible .megamenu-spotlight__contents {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.megamenu-spotlight__contents {
  position: relative;
  z-index: 2;
  will-change: transform;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 1199.98px) {
  .megamenu-spotlight__contents {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
@media (max-width: 1199.98px) {
  .megamenu-spotlight__title {
    font-size: 1.625rem;
    letter-spacing: 0.021875rem;
  }
}

.nav-categories-box-with-mobile-toggle {
  padding: 1.375rem 1rem;
}
@media (min-width: 992px) {
  .nav-categories-box-with-mobile-toggle {
    padding: 1.375rem;
  }
}
@media (min-width: 992px) {
  .nav-categories-box-with-mobile-toggle__nav-wrap {
    display: block !important;
  }
}
.nav-categories-box-with-mobile-toggle__nav {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .nav-categories-box-with-mobile-toggle__nav {
    margin-top: 0;
  }
}
.nav-categories-box-with-mobile-toggle__item {
  margin-bottom: 0.125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: #021627;
}
.nav-categories-box-with-mobile-toggle__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.nav-categories-box-with-mobile-toggle__item.root {
  padding-bottom: 15px;
  margin-bottom: 0.9375rem;
  border-bottom: 2px solid #50bef1;
}
.nav-categories-box-with-mobile-toggle__item.nested {
  padding-left: 22px;
}
.nav-categories-box-with-mobile-toggle__link {
  display: block;
  padding: 10px 8px 8px;
  color: #021627;
  border-left: 3px solid transparent;
  background-color: transparent;
  transition: all 0.26s ease;
}
.nav-categories-box-with-mobile-toggle__link.active, .nav-categories-box-with-mobile-toggle__link:hover {
  color: #021627;
  background-color: #e5eaf0;
}
.nav-categories-box-with-mobile-toggle__link.active {
  border-color: #ed8116;
}
.nav-categories-box-with-mobile-toggle__toggle {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: between;
          justify-content: between;
  padding: 0 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.32px;
  color: #021627;
  text-align: left;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
}
@media (min-width: 992px) {
  .nav-categories-box-with-mobile-toggle__toggle {
    display: none;
  }
}
.nav-categories-box-with-mobile-toggle__toggle[aria-expanded=true] .nav-categories-box-with-mobile-toggle__toggle-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-categories-box-with-mobile-toggle__toggle-icon {
  font-size: 14px;
  font-weight: 700;
  transition: all 0.26s ease;
}

.nav-service-badges__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.nav-service-badges__link {
  display: inline-block;
}

.section-y-pad, .services-ov__service + .services-ov__service, .page-banner__contents, .page-banner__form-col, .page-banner-blog-post, .site-header-overlaps .page-banner-blog-post__contents:not(.breadcrumbs-present), .split-content-default,
.section-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section-y-pad, .services-ov__service + .services-ov__service, .page-banner__contents, .page-banner__form-col, .page-banner-blog-post, .site-header-overlaps .page-banner-blog-post__contents:not(.breadcrumbs-present), .split-content-default,
.section-pad {
    padding-top: clamp(40px, 1.6406rem + 4.5833vw, 95px);
    padding-bottom: clamp(40px, 1.6406rem + 4.5833vw, 95px);
  }
}

.section-x-pad, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta),
.page-section,
.section-pad {
  padding-left: 25px;
  padding-right: 25px;
}
@media (min-width: 768px) {
  .section-x-pad, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta),
.page-section,
.section-pad {
    padding-left: clamp(30px, -2.3873rem + 8.8798vw, 95px);
    padding-right: clamp(30px, -2.3873rem + 8.8798vw, 95px);
  }
}

.page-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .page-section {
    padding-top: clamp(40px, -1.7623rem + 8.8798vw, 105px);
    padding-bottom: clamp(40px, -1.7623rem + 8.8798vw, 105px);
  }
}

@media (max-width: 575.98px) {
  .container, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.container--full, .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
  max-width: 1690px !important;
}
@media (min-width: 768px) {
  .container--md-full {
    max-width: 1690px !important;
  }
}
.container--full-narrow-xl {
  max-width: 1690px !important;
}
@media (min-width: 1200px) {
  .container--full-narrow-xl {
    max-width: 1280px !important;
  }
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 1009;
  background-color: #fefefe;
  box-shadow: none;
  transition: all 0.26s ease;
}
@media (min-width: 1200px) {
  .site-header {
    height: 120px;
  }
}
.site-header__logo {
  width: 175px;
  height: 100%;
}
@media (min-width: 1200px) {
  .site-header__logo {
    width: 200px;
  }
}
@media (min-width: 1440px) {
  .site-header__logo {
    width: 224px;
  }
}
.site-header__logo-link {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 16px;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-header__logo-link img {
  width: 100%;
  height: auto;
  transition: all 0.24s linear;
}
.site-header__logo-img-light {
  display: none;
}
.site-header__contact {
  margin-bottom: 0.9375rem;
}

.site-header-top-bar {
  position: relative;
  z-index: 1051;
}
@media (max-width: 1199.98px) {
  .site-header-top-bar:not(.has-alert) {
    display: none;
  }
}
@media (min-width: 1200px) {
  .site-header-top-bar__inner {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .site-header-top-bar__inner {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
.site-header-top-bar__other-items {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (min-width: 1200px) {
  .site-header-top-bar__other-items {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .site-header-top-bar__other-items {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
.site-header-top-bar__other-items.has-alert {
  max-width: 60%;
}
.site-header-top-bar .alert-banner .wysiwyg {
  font-size: 1rem;
}
.site-header-top-bar .contact-info {
  font-size: 1rem;
  font-weight: 500;
}
.site-header-top-bar .contact-info.address p {
  display: inline;
}
.site-header-top-bar .contact-info.address p + p::before {
  content: " | ";
}
.site-header-top-bar .contact-info .address-2 {
  display: inline;
}
.site-header-top-bar .contact-info__info-text {
  display: inline-block;
}
.site-header-top-bar .contact-info__info-text::before {
  content: " | ";
}
.site-header-top-bar .contact-info-with-icon {
  margin: 0.25rem;
}
.site-header-top-bar .contact-info-with-icon__icon {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .site-header-top-bar .social-list__link {
    color: #50bef1;
    border-color: #50bef1;
  }
}
@media (min-width: 1200px) {
  .site-header-top-bar .social-list__link:hover {
    color: #fefefe;
    border-color: #ed8116;
  }
}

.site-header-overlaps .site-header {
  background-color: transparent;
  box-shadow: none;
}
.site-header-overlaps .site-header__btn:focus-visible, .site-header-overlaps .site-header__logo-link:focus-visible {
  outline-color: #fefefe !important;
}
.site-header-overlaps .site-header__logo-img {
  display: none !important;
}
.site-header-overlaps .site-header__logo-img-light {
  display: block !important;
}
.site-header-overlaps .hamburger-btn > span::before {
  background-color: #fefefe;
}
.site-header-overlaps .hamburger-btn > span {
  background-color: #fefefe;
}
.site-header-overlaps .hamburger-btn > span::after {
  background-color: #fefefe;
}

.scrolled .site-header {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
.scrolled .site-header-overlaps .site-header {
  background-color: #fefefe;
}
.scrolled .site-header-overlaps .site-header__btn:focus-visible, .scrolled .site-header-overlaps .site-header__logo-link:focus-visible {
  outline-color: #021627 !important;
}
.scrolled .site-header-overlaps .site-header__logo-img {
  display: block !important;
}
.scrolled .site-header-overlaps .site-header__logo-img-light {
  display: none !important;
}
.scrolled .site-header-overlaps .hamburger-btn > span::before {
  background-color: #021627;
}
.scrolled .site-header-overlaps .hamburger-btn > span {
  background-color: #021627;
}
.scrolled .site-header-overlaps .hamburger-btn > span::after {
  background-color: #021627;
}

body.nav-mobile-overlay-open .site-header {
  z-index: 1051;
  background-color: #fefefe;
  box-shadow: none !important;
}
body.nav-mobile-overlay-open .site-header__btn:focus-visible, body.nav-mobile-overlay-open .site-header__logo-link:focus-visible {
  outline-color: #021627 !important;
}
body.nav-mobile-overlay-open .site-header__logo-img {
  display: block !important;
}
body.nav-mobile-overlay-open .site-header__logo-img-light {
  display: none !important;
}
body.nav-mobile-overlay-open .site-header .hamburger-btn > span::before {
  background-color: #021627;
}
body.nav-mobile-overlay-open .site-header .hamburger-btn > span {
  background-color: #021627;
}
body.nav-mobile-overlay-open .site-header .hamburger-btn > span::after {
  background-color: #021627;
}

.page-footer__logo {
  min-height: 80px;
}
.page-footer__logo img {
  width: 100%;
  max-width: 224px;
  height: auto;
}
.page-footer__contacts .contact-info {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .page-footer__contacts .contact-info {
    margin-bottom: 2rem;
  }
}
.page-footer__lower {
  border-top: 2px solid #e5eaf0;
}
.page-footer__lower.dark-theme {
  border-color: #0b5998;
}
.page-footer__lower .wysiwyg a:not(.btn) {
  text-decoration: none;
}
.page-footer__lower .wysiwyg a:not(.btn):hover {
  text-decoration: underline;
  text-underline-position: under;
}

.page-footer-heading {
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5eaf0;
}
@media (min-width: 992px) {
  .page-footer-heading {
    margin-bottom: 2rem;
  }
}
.dark-theme .page-footer-heading {
  border-bottom-color: #0b5998;
}

.fusion-btn {
  display: inline-block;
  margin-bottom: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: #053968;
  border: 1px solid #053968;
  border-radius: 0;
  box-shadow: none;
  color: #fefefe;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
}
.fusion-btn:hover {
  background: #ed8116;
  border-color: #ed8116;
  color: #fefefe;
  text-decoration: none;
}
.fusion-btn--danger {
  background: transparent;
  border-color: #dc3545;
  color: #dc3545;
}
.fusion-btn--danger:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.fusion-btn--success {
  background: transparent;
  border-color: #28a745;
  color: #28a745;
}
.fusion-btn--success:hover {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}

.fusion-form .form-group {
  margin-bottom: 0.3125rem;
}
.fusion-form input:not(.form-check-input) {
  height: auto;
  padding: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  color: #021627;
  background-color: #e5eaf0;
  border: 1px solid #e5eaf0;
  border-radius: 0;
  box-shadow: none;
}
.fusion-form input:not(.form-check-input):focus {
  color: #021627;
  border-color: #e5eaf0;
  background-color: #e5eaf0;
  opacity: 1;
}
.fusion-form input:not(.form-check-input)::-webkit-input-placeholder {
  opacity: 1;
  color: #4f5b67;
}
.fusion-form input:not(.form-check-input)::-moz-placeholder {
  opacity: 1;
  color: #4f5b67;
}
.fusion-form input:not(.form-check-input)::placeholder {
  opacity: 1;
  color: #4f5b67;
}
.fusion-form label {
  font-weight: 700;
  letter-spacing: normal;
  color: #021627;
  margin-bottom: 0;
}
.fusion-form legend {
  margin-bottom: 1.25rem;
}
.fusion-form hr {
  padding: 0.3125rem 0;
}
.fusion-form .help-block {
  margin-top: 0.9375rem;
  color: #021627;
}
.fusion-form .form-remember-checkbox {
  margin-top: 15px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #021627;
  letter-spacing: normal;
  text-transform: none;
}
.fusion-form .form-remember-checkbox input {
  margin-right: 5px;
}
.fusion-form__links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 0.9375rem;
  font-size: 90%;
}
@media (min-width: 768px) {
  .fusion-form__links {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
.fusion-form__links a,
.fusion-form__links span {
  display: inline-block;
  margin-bottom: 0.3125rem;
  color: #4f5b67;
  text-decoration: underline;
  text-underline-position: under;
  transition: all 0.26s ease;
}
.fusion-form__links a:hover,
.fusion-form__links span:hover {
  color: #4f5b67;
  text-decoration: none;
}
@media (min-width: 768px) {
  .fusion-form__links span:before {
    content: "//";
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
.fusion-auth .fusion-form, .fusion-register .fusion-form {
  border: 1px solid #e5eaf0;
  border-radius: 0;
  max-width: 100%;
  padding: 35px 35px 15px;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.fusion-avatar {
  margin-bottom: 1.875rem;
  text-align: center;
}
.fusion-avatar__image {
  margin-bottom: 1.25rem;
  border: 1px solid #ced4da;
  border-radius: 0;
  padding: 8px;
}
.fusion-avatar__caption {
  font-size: 90%;
}

.fusion-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0.9375rem;
}
.fusion-nav__link {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  padding: 0.625rem 1.25rem;
  border-radius: 0;
  font-size: 90%;
  color: #021627;
  background-color: transparent;
  transition: all 0.26s ease;
}
.fusion-nav__link--active, .fusion-nav__link:hover {
  background-color: #021627;
  color: #fefefe;
}

.user-bar {
  -webkit-align-items: center;
          align-items: center;
  background-color: #000;
  bottom: 0;
  color: #e6e6e6;
  font-size: 16px;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  position: fixed;
  right: 0;
  z-index: 9999999;
  display: none;
  visibility: hidden;
}
.user-bar.show {
  display: -webkit-flex;
  display: flex;
  visibility: visible;
}
.user-bar__item {
  -webkit-align-items: center;
          align-items: center;
  color: inherit;
  display: -webkit-inline-flex;
  display: inline-flex;
  height: 30px;
  -webkit-justify-content: center;
          justify-content: center;
  text-decoration: none;
  width: 35px;
}
.user-bar__item:hover, .user-bar__item:focus, .user-bar__item:active {
  color: #fff;
  text-decoration: none;
}
.user-bar__item + .user-bar__item {
  border-left: solid 1px rgba(255, 255, 255, 0.4);
}
.user-bar .size-indicator:before {
  color: #fff;
  content: "xs";
  text-transform: uppercase;
  content: "xs";
}
@media (min-width: 576px) {
  .user-bar .size-indicator:before {
    content: "sm";
  }
}
@media (min-width: 768px) {
  .user-bar .size-indicator:before {
    content: "md";
  }
}
@media (min-width: 992px) {
  .user-bar .size-indicator:before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  .user-bar .size-indicator:before {
    content: "xl";
  }
}
@media (min-width: 1440px) {
  .user-bar .size-indicator:before {
    content: "xxl";
  }
}

.fusion-auth .container, .fusion-auth .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.fusion-auth__login, .fusion-auth__reset, .fusion-auth__register {
  width: 500px;
  max-width: 100%;
  text-align: center;
}

.fusion-account {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.fusion-account .container, .fusion-account .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
}
.fusion-account__sidebar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .fusion-account__sidebar {
    -webkit-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (min-width: 992px) {
  .fusion-account__sidebar {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
.fusion-account__content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  padding: 1.875rem 15px;
}
@media (min-width: 768px) {
  .fusion-account__content {
    -webkit-flex: 0 0 70%;
            flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .fusion-account__content {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}
.fusion-account__content h1,
.fusion-account__content h2 {
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5eaf0;
}
@media (min-width: 576px) {
  .fusion-account__content dl {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
.fusion-account__content dd {
  margin-bottom: 0.9375rem;
}
@media (min-width: 576px) {
  .fusion-account__content dd {
    -webkit-column-break-before: avoid;
       -moz-column-break-before: avoid;
            break-before: avoid;
  }
}
.fusion-account__content__section {
  margin-top: 1.875rem;
}

.fusion-register {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.fusion-register .container, .fusion-register .subpage-block:not(.subpage-two-column):not(.subpage-fullwidth-cta) {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
}

.fusion-search {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.fusion-search__status {
  color: #021627;
  font-weight: bold;
}

.fusion-search-results {
  list-style-type: none;
  padding: 0;
  margin: 0 0 2.8125rem;
}
.fusion-search-results__item {
  margin-bottom: 0.9375rem;
}
.fusion-search-results__link {
  display: inline-block;
  font-size: 1.0625rem;
}

.fusion-search-form {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 1.875rem;
}
.fusion-search-form input {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.fusion-search-form button,
.fusion-search-form input {
  height: auto;
  margin-bottom: 0;
  padding: 0.4375rem 0.625rem;
  background: #fefefe;
  border: 1px solid #e5eaf0;
  border-radius: 0;
  box-shadow: none;
  color: #021627;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
}
.fusion-search-form button:focus,
.fusion-search-form input:focus {
  z-index: 3;
  color: #021627;
  border-color: #e5eaf0;
  box-shadow: none;
  opacity: 1;
}
.fusion-search-form button.fusion-search-form__btn,
.fusion-search-form input.fusion-search-form__btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  transition: all 0.26s ease;
}
.fusion-search-form button.fusion-search-form__btn:hover,
.fusion-search-form input.fusion-search-form__btn:hover {
  color: #ed8116;
}
.fusion-search-form .dropdown-toggle {
  background: #fefefe;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fusion-search-form .dropdown-toggle:hover {
  background: #fefefe;
}
.fusion-search-form .dropdown-menu {
  width: 200px;
  padding: 0.625rem;
  border-radius: 0;
  border-color: #e5eaf0;
}

.fusion-search-share {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 576px) {
  .fusion-search-share {
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.fusion-search-share label,
.fusion-search-share .input-group {
  margin-bottom: 0.625rem;
}
.fusion-search-share button,
.fusion-search-share input {
  height: auto;
  margin-bottom: 0;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #e5eaf0;
  border-radius: 0;
  box-shadow: none;
  color: #021627;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
}
.fusion-search-share button:focus,
.fusion-search-share input:focus {
  z-index: 3;
}
.fusion-search-share label {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-right: 0.625rem;
  font-weight: bold;
  color: #021627;
}
.fusion-search-share input {
  max-width: 545px;
  background-color: #fefefe !important;
}
.fusion-search-share button {
  background: #fefefe;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: all 0.3s ease;
}
.fusion-search-share button.active {
  background-color: #fefefe;
}

@media (min-width: 1200px) {
  .faqs-ov-accordions-with-sidebar.no-sidebar {
    max-width: 1400px !important;
  }
}
@media (min-width: 992px) {
  .faqs-ov-accordions-with-sidebar__main {
    float: right;
    width: 58%;
  }
}
@media (min-width: 1200px) {
  .faqs-ov-accordions-with-sidebar__main {
    width: 67%;
  }
}
.faqs-ov-accordions-with-sidebar__sidebar-contents, .faqs-ov-accordions-with-sidebar__sidebar-cta {
  width: 100%;
}
@media (min-width: 992px) {
  .faqs-ov-accordions-with-sidebar__sidebar-contents, .faqs-ov-accordions-with-sidebar__sidebar-cta {
    width: 42%;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .faqs-ov-accordions-with-sidebar__sidebar-contents, .faqs-ov-accordions-with-sidebar__sidebar-cta {
    width: 33%;
  }
}
@media (min-width: 992px) {
  .faqs-ov-accordions-with-sidebar__sidebar-contents {
    float: left;
  }
}
@media (min-width: 992px) {
  .faqs-ov-accordions-with-sidebar__sidebar-contents .nav-categories-box-with-mobile-toggle {
    max-width: 315px;
  }
}

.faqs-ov-grid-cards__heading + .faqs-ov-grid-cards__cards {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .faqs-ov-grid-cards__heading + .faqs-ov-grid-cards__cards {
    padding-top: clamp(40px, -0.123rem + 5.4645vw, 80px);
  }
}

.services-ov__service:nth-of-type(1) {
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .services-ov__service:nth-of-type(1) {
    padding-top: clamp(20px, -0.3893rem + 3.4153vw, 45px);
  }
}
@media (max-width: 767.98px) {
  .services-ov__service + .services-ov__service {
    padding-top: 0;
  }
}

.contact-form .page-form__heading {
  text-align: center;
}

.service-areas-dt-featured + .service-areas-dt-services,
.service-areas-dt-services + .service-areas-dt-spotlight-one,
.service-areas-dt-services + .service-areas-dt-spotlight-two,
.service-areas-dt-featured + .service-areas-dt-featured-items-and-cta-alert,
.service-areas-dt-services + .service-areas-dt-featured-items-and-cta-alert,
.service-areas-dt-spotlight-one + .service-areas-dt-featured-items-and-cta-alert,
.service-areas-dt-spotlight-two + .service-areas-dt-featured-items-and-cta-alert {
  padding-top: 0 !important;
}

.service-areas-ov-content + .service-areas-ov-services,
.service-areas-ov-content + .service-areas-ov-reviews,
.service-areas-ov-services + .service-areas-ov-reviews {
  padding-top: 0 !important;
}

@media (min-width: 992px) {
  .team-dt__sidebar {
    padding-right: clamp(15px, -8.8263rem + 15.748vw, 95px);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .team-dt__sidebar .card-contact-horz__icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .team-dt__sidebar .card-contact-horz__icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .team-dt__sidebar .card-contact-horz__title {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .team-dt__sidebar .card-contact-horz .contact-info {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .team-dt__sidebar .card-contact-horz .contact-info {
    font-size: 0.8125rem;
  }
}
.team-dt__image {
  min-height: 190px;
}
@media (min-width: 576px) {
  .team-dt__image {
    min-height: 395px;
  }
}
@media (min-width: 768px) {
  .team-dt__image {
    min-height: 250px;
  }
}
@media (min-width: 992px) {
  .team-dt__image {
    min-height: 320px;
  }
}
@media (min-width: 1200px) {
  .team-dt__image {
    min-height: 360px;
  }
}
@media (min-width: 1440px) {
  .team-dt__image {
    min-height: 410px;
  }
}

.products-ov-category-group__page-logo svg,
.products-ov-category-group__page-logo img {
  max-height: 70px;
}

/*# sourceMappingURL=theme.css.map*/