@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tenor+Sans&display=swap);
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

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

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

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

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

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

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.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;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

.d-grid {
  display: grid !important;
}

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

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

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

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

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

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

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

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

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

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

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

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

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

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

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

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

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

.min-vw-100 {
  min-width: 100vw !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

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

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

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

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

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

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

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

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !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: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.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 {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  		calculation of the height of the owl-item that breaks page layouts
  	 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.fc-calendar-container {
  position: relative;
  height: 400px;
  width: 400px;
}

.fc-calendar {
  width: 100%;
  height: 100%;
}

.fc-calendar .fc-head {
  height: 30px;
  line-height: 30px;
  background: #ccc;
  color: #fff;
}

.fc-calendar .fc-body {
  position: relative;
  width: 100%;
  height: 100%;
  height: calc(100% - 30px);
  border: 1px solid #ddd;
}

.fc-calendar .fc-row {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.fc-four-rows .fc-row {
  height: 25%;
}

.fc-five-rows .fc-row {
  height: 20%;
}

.fc-six-rows .fc-row {
  height: 16.66%;
  height: -webkit-calc(100%/6);
  height: 16.6666666667%;
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
  float: left;
  height: 100%;
  width: 14.28%; /* 100% / 7 */
  width: -webkit-calc(100%/7);
  /* width: calc(100%/7); */
  position: relative;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
  width: 14.2%;
}

.fc-calendar .fc-row > div {
  border-right: 1px solid #ddd;
  padding: 4px;
  overflow: hidden;
  position: relative;
}

.fc-calendar .fc-head > div {
  text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
  position: absolute;
  width: 30px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #ddd;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
  bottom: 5px;
  right: 5px;
  text-align: right;
}

.fc-calendar .fc-row > div time {
  display: none;
}

.fc-calendar .fc-row > div > span.fc-weekday {
  padding-left: 5px;
  display: none;
}

.fc-calendar .fc-row > div.fc-today {
  background: #fff4c3;
}

.fc-calendar .fc-row > div.fc-out {
  opacity: 0.6;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
  border-right: none;
}

.fc-calendar .fc-row:last-child {
  border-bottom: none;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?hmbbvj");
  src: url("../fonts/icomoon.eot?hmbbvj#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?hmbbvj") format("truetype"), url("../fonts/icomoon.woff?hmbbvj") format("woff"), url("../fonts/icomoon.svg?hmbbvj#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-add-1:before {
  content: "\e900";
}

.icon-agenda:before {
  content: "\e901";
}

.icon-alarm:before {
  content: "\e902";
}

.icon-alarm-1:before {
  content: "\e903";
}

.icon-alarm-clock:before {
  content: "\e904";
}

.icon-app:before {
  content: "\e905";
}

.icon-archive:before {
  content: "\e906";
}

.icon-archive-1:before {
  content: "\e907";
}

.icon-attachment:before {
  content: "\e908";
}

.icon-binoculars:before {
  content: "\e909";
}

.icon-blueprint:before {
  content: "\e90a";
}

.icon-bookmark:before {
  content: "\e90b";
}

.icon-bookmark-1:before {
  content: "\e90c";
}

.icon-briefcase:before {
  content: "\e90d";
}

.icon-broken-link:before {
  content: "\e90e";
}

.icon-calculator:before {
  content: "\e90f";
}

.icon-calculator-1:before {
  content: "\e910";
}

.icon-calendar:before {
  content: "\e911";
}

.icon-calendar-1:before {
  content: "\e912";
}

.icon-calendar-3:before {
  content: "\e913";
}

.icon-calendar-5:before {
  content: "\e914";
}

.icon-calendar-6:before {
  content: "\e915";
}

.icon-calendar-7:before {
  content: "\e916";
}

.icon-checked-1:before {
  content: "\e917";
}

.icon-clock-1:before {
  content: "\e918";
}

.icon-cloud:before {
  content: "\e919";
}

.icon-cloud-computing:before {
  content: "\e91a";
}

.icon-cloud-computing-2:before {
  content: "\e91b";
}

.icon-compact-disc:before {
  content: "\e91c";
}

.icon-compass:before {
  content: "\e91d";
}

.icon-compose:before {
  content: "\e91e";
}

.icon-controls-1:before {
  content: "\e91f";
}

.icon-diamond:before {
  content: "\e920";
}

.icon-diploma:before {
  content: "\e921";
}

.icon-document:before {
  content: "\e922";
}

.icon-edit:before {
  content: "\e923";
}

.icon-edit-1:before {
  content: "\e924";
}

.icon-fax:before {
  content: "\e925";
}

.icon-file:before {
  content: "\e926";
}

.icon-file-1:before {
  content: "\e927";
}

.icon-film:before {
  content: "\e928";
}

.icon-fingerprint:before {
  content: "\e929";
}

.icon-flag-4:before {
  content: "\e92a";
}

.icon-folder:before {
  content: "\e92b";
}

.icon-folder-6:before {
  content: "\e92c";
}

.icon-folder-10:before {
  content: "\e92d";
}

.icon-folder-17:before {
  content: "\e92e";
}

.icon-funnel:before {
  content: "\e92f";
}

.icon-gift:before {
  content: "\e930";
}

.icon-help:before {
  content: "\e931";
}

.icon-home:before {
  content: "\e932";
}

.icon-hourglass:before {
  content: "\e933";
}

.icon-id-card:before {
  content: "\e934";
}

.icon-id-card-1:before {
  content: "\e935";
}

.icon-id-card-2:before {
  content: "\e936";
}

.icon-id-card-3:before {
  content: "\e937";
}

.icon-id-card-4:before {
  content: "\e938";
}

.icon-id-card-5:before {
  content: "\e939";
}

.icon-idea:before {
  content: "\e93a";
}

.icon-internet:before {
  content: "\e93b";
}

.icon-key:before {
  content: "\e93c";
}

.icon-like:before {
  content: "\e93d";
}

.icon-like-2:before {
  content: "\e93e";
}

.icon-link:before {
  content: "\e93f";
}

.icon-locked:before {
  content: "\e940";
}

.icon-map:before {
  content: "\e941";
}

.icon-map-1:before {
  content: "\e942";
}

.icon-map-2:before {
  content: "\e943";
}

.icon-map-location:before {
  content: "\e944";
}

.icon-megaphone:before {
  content: "\e945";
}

.icon-megaphone-1:before {
  content: "\e946";
}

.icon-microphone:before {
  content: "\e947";
}

.icon-music-player:before {
  content: "\e948";
}

.icon-music-player-2:before {
  content: "\e949";
}

.icon-music-player-3:before {
  content: "\e94a";
}

.icon-navigation:before {
  content: "\e94b";
}

.icon-navigation-1:before {
  content: "\e94c";
}

.icon-newspaper:before {
  content: "\e94d";
}

.icon-note:before {
  content: "\e94e";
}

.icon-notebook:before {
  content: "\e94f";
}

.icon-notebook-1:before {
  content: "\e950";
}

.icon-notebook-2:before {
  content: "\e951";
}

.icon-notebook-3:before {
  content: "\e952";
}

.icon-notebook-4:before {
  content: "\e953";
}

.icon-notebook-5:before {
  content: "\e954";
}

.icon-notepad:before {
  content: "\e955";
}

.icon-notepad-1:before {
  content: "\e956";
}

.icon-notepad-2:before {
  content: "\e957";
}

.icon-paper-plane-1:before {
  content: "\e958";
}

.icon-photo-camera:before {
  content: "\e959";
}

.icon-picture:before {
  content: "\e95a";
}

.icon-picture-1:before {
  content: "\e95b";
}

.icon-placeholder-2:before {
  content: "\e95c";
}

.icon-placeholder-3:before {
  content: "\e95d";
}

.icon-play-button:before {
  content: "\e95e";
}

.icon-price-tag:before {
  content: "\e95f";
}

.icon-print:before {
  content: "\e960";
}

.icon-push-pin:before {
  content: "\e961";
}

.icon-resume:before {
  content: "\e962";
}

.icon-save:before {
  content: "\e963";
}

.icon-settings-1:before {
  content: "\e964";
}

.icon-settings-5:before {
  content: "\e965";
}

.icon-share-1:before {
  content: "\e966";
}

.icon-sign:before {
  content: "\e967";
}

.icon-smartphone-1:before {
  content: "\e968";
}

.icon-smartphone-10:before {
  content: "\e969";
}

.icon-speaker-2:before {
  content: "\e96a";
}

.icon-star:before {
  content: "\e96b";
}

.icon-star-1:before {
  content: "\e96c";
}

.icon-stopwatch-1:before {
  content: "\e96d";
}

.icon-stopwatch-3:before {
  content: "\e96e";
}

.icon-stopwatch-4:before {
  content: "\e96f";
}

.icon-street-1:before {
  content: "\e970";
}

.icon-success:before {
  content: "\e971";
}

.icon-television:before {
  content: "\e972";
}

.icon-time:before {
  content: "\e973";
}

.icon-umbrella:before {
  content: "\e974";
}

.icon-unlink:before {
  content: "\e975";
}

.icon-user:before {
  content: "\e976";
}

.icon-user-1:before {
  content: "\e977";
}

.icon-user-2:before {
  content: "\e978";
}

.icon-user-3:before {
  content: "\e979";
}

.icon-users:before {
  content: "\e97a";
}

.icon-users-1:before {
  content: "\e97b";
}

.icon-video-camera:before {
  content: "\e97c";
}

.icon-video-player:before {
  content: "\e97d";
}

.icon-view:before {
  content: "\e97e";
}

.icon-wifi:before {
  content: "\e97f";
}

.icon-worldwide-1:before {
  content: "\e980";
}

.tenor, .redactor-styles blockquote, .redactor-styles h1, .redactor-styles h2, .redactor-styles h3, .redactor-styles h4, .redactor-styles h5, .redactor-styles h6, .page-content .web-form .fui-select, .page-content .web-form label, .page-content .web-form .fui-legend, #full-menu .page-links .top-level-link a, .contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link > a, .traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link > a {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.transition-ease, #previous-editions .year-group .single-edition .gradient, .news-article-footer .col .innr .gradient, #home .quicklinks span.down-arrow, #read-next ul li a::after, .news-masonry .single-news .gradient, .page-content .link-tiles .single-tile .img .gradient, .page-content .document-downloads a i svg, .page-content .document-downloads a i path, .page-content .document-downloads a i, .header .right-bg, .header .gradient, .header, .contemporary-mobile-header .upper-row, .contemporary-mobile-header, .traditional-mobile-header .upper-row, .traditional-mobile-header, .custom-link i svg, .custom-link i path, .custom-link i, .custom-link i::before, a,
input,
button {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a,
input,
button {
  outline: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

a, button {
  border: 1px solid transparent;
}

a:focus, button:focus {
  border: 1px dotted #323233;
}
a:hover, button:hover {
  color: inherit;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-inline > li {
  display: inline-block;
}

.v-middle {
  vertical-align: middle;
}

.inline-block {
  display: inline-block;
}

.img-responsive {
  max-width: 100%;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fixed {
  position: fixed;
}

.over-hidden {
  overflow: hidden;
}

.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.row {
  margin: 0;
}

.row > * {
  padding-left: 0;
  padding-right: 0;
}

.h-100 {
  height: 100%;
}

.m-15 {
  margin: 0 -15px;
}

.show-on-desktop,
.show-on-small-desktop,
.show-on-mobile,
.show-on-tablet {
  display: none !important;
}

.own-same-height .owl-stage {
  display: flex;
  flex-wrap: wrap;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

.custom-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  background: transparent;
  border-radius: 21px;
  padding-right: 20px;
  padding-left: 5px;
}
.custom-link.dark {
  color: #040040;
}
.custom-link.dark path {
  fill: #040040;
}
.custom-link.dark:hover {
  color: #040040;
  background-color: #CDAB81;
}
.custom-link.dark:hover i {
  border-color: transparent;
  padding-right: 0;
}
.custom-link.dark:hover i::before {
  width: 30px;
  margin-right: -7px;
}
.custom-link i {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #CDAB81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.custom-link i::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 2px;
  background-color: #040040;
}
.custom-link.light:hover {
  background-color: #ffffff;
  color: #040040;
}
.custom-link.light:hover i {
  border-color: transparent;
  padding-right: 0;
}
.custom-link.light:hover i path {
  fill: #040040;
}
.custom-link.light:hover i::before {
  width: 30px;
  margin-right: -7px;
}

.common-heading {
  font-size: 62px;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
  color: #050058;
}
.common-heading::before {
  content: "";
  display: block;
  height: 1px;
  width: 1000px;
  position: absolute;
  right: 100%;
  margin-right: 30px;
  top: 37px;
  background-color: #CDAB81;
}

#body {
  margin-top: 123px;
}

@media only screen and (max-width : 1499.98px) {
  .show-on-desktop {
    display: block !important;
  }
  .hide-on-desktop {
    display: none !important;
  }
}
@media only screen and (max-width : 1199.98px) {
  .mobile-buttons {
    display: block;
  }
  .hide-on-small-desktop {
    display: none !important;
  }
  .show-on-small-desktop {
    display: block !important;
  }
}
@media only screen and (max-width : 991.98px) {
  .show-on-tablet {
    display: block !important;
  }
  .hide-on-tablet {
    display: none !important;
  }
  .common-heading {
    font-size: 32px;
  }
  .common-heading::before {
    margin-right: 8px;
    top: 20px;
  }
  #body {
    margin-top: 0;
  }
}
@media only screen and (max-width : 767.98px) {
  .show-on-mobile {
    display: block !important;
  }
  .hide-on-mobile {
    display: none !important;
  }
}
header.contemporary-1.no-gradient .gradient {
  display: none;
}
header.contemporary-1 .left-container .contact-num {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #CDAB81;
  margin-left: 25px;
}
header.contemporary-1 .logo-container {
  text-align: center;
}
header.contemporary-1 .logo-container img {
  width: 100%;
  max-width: 122px;
  max-height: 100px;
}
header.contemporary-1 .menu-container {
  text-align: right;
}
header.contemporary-1 .menu-container ul {
  display: inline-block;
}
header.contemporary-1 .menu-container ul li {
  margin-right: 5px;
  position: relative;
  vertical-align: middle;
}

header.contemporary-2 .header-bg {
  background: linear-gradient(90.1deg, #111E46 46.47%, #791B12 99.94%);
}
header.contemporary-2 .header-outer-container {
  max-width: 1920px;
  margin: auto;
}
header.contemporary-2 .logo-container img {
  width: 100%;
  max-width: 122px;
  max-height: 100px;
}
header.contemporary-2 .menu-container {
  text-align: right;
}
header.contemporary-2 .rounded-link {
  border: 1px solid #D6CEB2;
}
header.contemporary-2 .rounded-link path {
  fill: #D6CEB2;
}
header.contemporary-2 .menu-btn {
  background-color: #D6CEB2;
}
header.contemporary-2 .menu-btn span {
  color: #111E46;
}
header.contemporary-2 .menu-btn .icon i {
  background-color: #111E46;
}
header.contemporary-2 ul {
  display: inline-block;
}
header.contemporary-2 ul li {
  margin-right: 5px;
  position: relative;
  vertical-align: middle;
}
header.traditional-1 {
  padding: 0;
  background-color: transparent;
}
header.traditional-1 .header-bg {
  background-color: #040040;
  padding: 13px 25px;
  position: relative;
  overflow: hidden;
}
header.traditional-1 .left-container ul li a {
  display: inline-block;
  min-width: 25px;
  text-align: center;
  padding: 5px;
}
header.traditional-1 .logo-container {
  text-align: center;
}
header.traditional-1 .logo-container img {
  width: 100%;
  max-height: 100px;
}

header.traditional-2, header.traditional-3 {
  padding: 0;
  background-color: transparent;
}
header.traditional-2 .header-bg, header.traditional-3 .header-bg {
  overflow: visible;
  padding: 0 25px;
}
header.traditional-2 .logo-container, header.traditional-3 .logo-container {
  text-align: center;
  max-width: 300px;
}
header.traditional-2 .logo-container img, header.traditional-3 .logo-container img {
  width: 100%;
  max-height: 130px;
}
header.traditional-2 .header-links ul li.top-level-link, header.traditional-3 .header-links ul li.top-level-link {
  padding: 0 10px;
}
header.traditional-2 .header-links ul li.top-level-link.open-sub-menu .sub-menu, header.traditional-3 .header-links ul li.top-level-link.open-sub-menu .sub-menu {
  display: block;
}
header.traditional-2 .header-links ul li.top-level-link > a, header.traditional-3 .header-links ul li.top-level-link > a {
  color: #ffffff;
  padding: 50px 5px;
}
header.traditional-2 .right-container, header.traditional-3 .right-container {
  max-width: 300px;
}

@media only screen and (max-width : 1499.98px) {
  header.traditional-2 .right-container, header.traditional-3 .right-container {
    flex: 0 0 auto;
    max-width: 100%;
    order: -1;
    position: absolute;
    top: 6px;
    right: 15px;
    z-index: 1;
  }
  header.traditional-2 .right-container .right-bg, header.traditional-3 .right-container .right-bg {
    display: none;
  }
  header.traditional-2 .header-links, header.traditional-3 .header-links {
    text-align: right;
  }
}
.traditional-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  max-height: 100vh;
  overflow: auto;
}
.traditional-mobile-header.scrolled-down {
  -khtml-transform: translate(0,-100%);
  transform: translate(0,-100%);
}
.traditional-mobile-header.menu-opened {
  height: 100vh;
}
.traditional-mobile-header.menu-opened.scrolled-down {
  -khtml-transform: translate(0,0);
  transform: translate(0,0);
}
.traditional-mobile-header.menu-opened .upper-row .menu-btn a .close {
  display: inline-block;
}
.traditional-mobile-header.menu-opened .upper-row .menu-btn a .menu-icon {
  display: none;
}
.traditional-mobile-header.menu-opened .main-menu {
  display: block;
}
.traditional-mobile-header.quicklinks-opened .menu-links-mobile {
  display: none;
}
.traditional-mobile-header .main-menu {
  display: none;
}
.traditional-mobile-header .upper-row {
  background-color: #040040;
  padding: 10px 17px;
}
.traditional-mobile-header .upper-row .logo img {
  width: 100%;
  max-width: 122px;
  max-height: 63px;
}
.traditional-mobile-header .upper-row .menu-btn {
  text-align: right;
}
.traditional-mobile-header .upper-row .menu-btn .right-bg {
  position: absolute;
  bottom: 0;
  right: 0;
}
.traditional-mobile-header .upper-row .menu-btn a {
  width: 37px;
  height: 37px;
  display: inline-flex;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background-color: #CDAB81;
  color: #ffffff;
}
.traditional-mobile-header .upper-row .menu-btn a svg path {
  fill: #ffffff;
}
.traditional-mobile-header .upper-row .menu-btn a .close {
  display: none;
}
.traditional-mobile-header .middle-row {
  padding: 13px 17px;
  background-color: rgba(5, 1, 76, 0.85);
}
.traditional-mobile-header .middle-row .left-portal svg {
  height: 19px;
  width: 19px;
}
.traditional-mobile-header .middle-row .left-portal a {
  color: #CDAB81;
  font-size: 14px;
}
.traditional-mobile-header .middle-row .left-portal span {
  margin-left: 5px;
}
.traditional-mobile-header .middle-row .right-btns {
  text-align: right;
}
.traditional-mobile-header .middle-row .right-btns li {
  vertical-align: middle;
}
.traditional-mobile-header .middle-row .right-btns svg {
  height: 20px;
  width: auto;
}
.traditional-mobile-header .middle-row .right-btns .search-link {
  margin-right: 15px;
}
.traditional-mobile-header .middle-row .right-btns form.search-form {
  position: absolute;
  width: 100%;
  min-width: 150px;
  top: 0;
  bottom: 0;
  right: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  color: #494949;
  border-radius: 20px;
}
.traditional-mobile-header .middle-row .right-btns form.search-form input {
  width: 100%;
  height: 100%;
  padding-left: 10px;
}
.traditional-mobile-header .middle-row .right-btns form.search-form button {
  position: absolute;
  right: 10px;
  z-index: 1;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 50%;
  -khtml-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.traditional-mobile-header .middle-row .right-btns form.search-form button svg {
  width: 20px;
  height: auto;
}
.traditional-mobile-header .middle-row .right-btns .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 100px;
  background-color: #ffffff;
  padding: 2px 5px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
}
.traditional-mobile-header .bottom-row {
  min-height: calc(100vh - 138px);
}
.traditional-mobile-header .bottom-row .sub-menu-bg {
  display: none;
}
.traditional-mobile-header .bottom-row .menu-links-mobile {
  text-align: center;
  padding: 50px 17px;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .bg {
  background-color: rgb(255, 255, 255);
  z-index: -1;
}
.traditional-mobile-header .bottom-row .menu-links-mobile a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 3px;
  color: #121243;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link > a {
  font-size: 22px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link.active {
  border-bottom: 1px solid #CDAB81;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link.active.has-sub-menu {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link.active > a {
  font-weight: bold;
  color: #CDAB81;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .top-level-link.active .sub-menu {
  display: block;
  margin-top: 5px;
}
.traditional-mobile-header .bottom-row .menu-links-mobile .first-level-link.active a {
  font-weight: 500;
}
.traditional-mobile-header .bottom-row .menu-links-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.traditional-mobile-header .bottom-row .menu-links-mobile ul .sub-menu {
  display: none;
}
.traditional-mobile-header .bottom-row .quick-links .bg {
  background-color: rgba(4, 0, 64, 0.85);
  z-index: -1;
}
.traditional-mobile-header .bottom-row .quick-links h3 {
  border-bottom: 1px solid #CDAB81;
  max-width: 60%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #CDAB81;
  padding-left: 17px;
  padding: 15px 17px;
}
.traditional-mobile-header .bottom-row .quick-links ul {
  list-style: none;
  padding-left: 0;
  font-size: 0;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 7px;
  padding-right: 7px;
}
.traditional-mobile-header .bottom-row .quick-links ul li {
  display: inline-block;
  text-align: center;
  width: 33.3333%;
  vertical-align: top;
}
.traditional-mobile-header .bottom-row .quick-links ul li a {
  padding: 10px;
}
.traditional-mobile-header .bottom-row .quick-links ul li i {
  color: #CDAB81;
  font-size: 30px;
}
.traditional-mobile-header .bottom-row .quick-links ul li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.floating-bar-traditional {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
}
.floating-bar-traditional ul {
  display: inline-block;
  background-color: #040040;
  padding: 0 35px;
  border-radius: 26px;
}
.floating-bar-traditional ul li {
  vertical-align: middle;
}
.floating-bar-traditional ul li a {
  display: inline-block;
  padding: 13px 9px;
}
.floating-bar-traditional ul li a svg {
  height: 20px;
  width: auto;
  align-self: center;
}
.floating-bar-traditional ul form.search-form {
  position: absolute;
  width: 80%;
  top: 5px;
  bottom: 5px;
  left: 50%;
  -khtml-transform: translate(-50%,0);
  transform: translate(-50%,0);
  outline: 0;
  box-shadow: none;
  color: #494949;
  border-radius: 20px;
}
.floating-bar-traditional ul form.search-form input {
  width: 100%;
  height: 100%;
  padding-left: 10px;
}
.floating-bar-traditional ul form.search-form button {
  position: absolute;
  right: 10px;
  z-index: 1;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 50%;
  -khtml-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.floating-bar-traditional ul form.search-form button svg {
  width: 20px;
  height: auto;
}

.contemporary-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  max-height: 100vh;
  overflow: auto;
}
.contemporary-mobile-header.scrolled-down {
  -khtml-transform: translate(0,-100%);
  transform: translate(0,-100%);
}
.contemporary-mobile-header.menu-opened {
  height: 100vh;
}
.contemporary-mobile-header.menu-opened.scrolled-down {
  -khtml-transform: translate(0,0);
  transform: translate(0,0);
}
.contemporary-mobile-header.menu-opened .upper-row .menu-btn a .close {
  display: inline-block;
}
.contemporary-mobile-header.menu-opened .upper-row .menu-btn a .menu-icon {
  display: none;
}
.contemporary-mobile-header.menu-opened .main-menu {
  display: block;
}
.contemporary-mobile-header.menu-opened .quick-links {
  display: none;
}
.contemporary-mobile-header.quicklinks-opened.menu-opened .menu-links-mobile {
  display: none;
}
.contemporary-mobile-header.quicklinks-opened.menu-opened .quick-links {
  display: block;
}
.contemporary-mobile-header.contemporary-2-mobile .upper-row .spacer {
  display: none;
}
.contemporary-mobile-header.contemporary-2-mobile .upper-row .logo {
  text-align: left;
}
.contemporary-mobile-header .main-menu {
  display: none;
}
.contemporary-mobile-header .upper-row {
  background-color: #040040;
  padding: 10px 17px;
}
.contemporary-mobile-header .upper-row .logo img {
  width: 100%;
  max-width: 122px;
  max-height: 63px;
}
.contemporary-mobile-header .upper-row .spacer {
  max-width: 85px;
}
.contemporary-mobile-header .upper-row .logo {
  text-align: center;
}
.contemporary-mobile-header .upper-row .menu-btn {
  text-align: right;
  max-width: 85px;
}
.contemporary-mobile-header .upper-row .menu-btn .right-bg {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contemporary-mobile-header .upper-row .menu-btn a {
  width: 37px;
  height: 37px;
  display: inline-flex;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background-color: #CDAB81;
  color: #ffffff;
}
.contemporary-mobile-header .upper-row .menu-btn a svg path {
  fill: #ffffff;
}
.contemporary-mobile-header .upper-row .menu-btn a .close {
  display: none;
}
.contemporary-mobile-header .bottom-row .bg {
  background: linear-gradient(0deg, rgba(18, 18, 67, 0.85), rgba(18, 18, 67, 0.85));
  z-index: -1;
}
.contemporary-mobile-header .bottom-row .bg2 {
  background: radial-gradient(50% 50% at 50% 50%, rgba(18, 18, 67, 0) 54.06%, #121243 100%);
  z-index: -1;
}
.contemporary-mobile-header .bottom-row .bg-img {
  z-index: -2;
  background-size: cover;
}
.contemporary-mobile-header .bottom-row .sub-menu-bg {
  display: none;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile {
  text-align: center;
  padding: 50px 17px;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 3px;
  color: #ffffff;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link > a {
  font-size: 22px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link.active {
  border-bottom: 1px solid #CDAB81;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link.active.has-sub-menu {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link.active > a {
  font-weight: 500;
  color: #CDAB81;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .top-level-link.active .sub-menu {
  display: block;
  margin-top: 5px;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile .first-level-link.active a {
  font-weight: 500;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contemporary-mobile-header .bottom-row .menu-links-mobile ul .sub-menu {
  display: none;
}
.contemporary-mobile-header .bottom-row .quick-links .back-to-menu {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  padding: 15px 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #CDAB81;
  color: #ffffff;
}
.contemporary-mobile-header .bottom-row .quick-links .back-to-menu i {
  margin-right: 10px;
}
.contemporary-mobile-header .bottom-row .quick-links h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  padding-left: 17px;
  padding: 15px 17px;
}
.contemporary-mobile-header .bottom-row .quick-links ul {
  list-style: none;
  padding-left: 0;
  font-size: 0;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 7px;
  padding-right: 7px;
}
.contemporary-mobile-header .bottom-row .quick-links ul li {
  display: inline-block;
  text-align: center;
  width: 33.3333%;
  vertical-align: top;
}
.contemporary-mobile-header .bottom-row .quick-links ul li a {
  padding: 10px;
}
.contemporary-mobile-header .bottom-row .quick-links ul li i {
  color: #CDAB81;
  font-size: 30px;
}
.contemporary-mobile-header .bottom-row .quick-links ul li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.floating-bar-contemporary {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
}
.floating-bar-contemporary ul {
  display: inline-block;
  background-color: #040040;
  padding: 0 18px;
  border-radius: 26px;
}
.floating-bar-contemporary ul li {
  padding: 13px 9px;
  vertical-align: middle;
}
.floating-bar-contemporary ul li a {
  display: inline-flex;
  width: 27px;
  height: 27px;
  justify-content: center;
  border: 1px solid #CDAB81;
  border-radius: 50%;
}
.floating-bar-contemporary ul li a svg {
  height: 12px;
  width: auto;
  align-self: center;
}
.floating-bar-contemporary ul .dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 100px;
  background-color: #ffffff;
  padding: 2px 5px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
}
.floating-bar-contemporary ul form.search-form {
  position: absolute;
  width: 80%;
  top: 5px;
  bottom: 5px;
  left: 50%;
  -khtml-transform: translate(-50%,0);
  transform: translate(-50%,0);
  outline: 0;
  box-shadow: none;
  color: #494949;
  border-radius: 20px;
}
.floating-bar-contemporary ul form.search-form input {
  width: 100%;
  height: 100%;
  padding-left: 10px;
}
.floating-bar-contemporary ul form.search-form button {
  position: absolute;
  right: 10px;
  z-index: 1;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 50%;
  -khtml-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.floating-bar-contemporary ul form.search-form button svg {
  width: 20px;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.header .header-bg {
  position: relative;
  background-color: #040040;
  padding: 13px 25px;
}
.header.scrolled .gradient {
  opacity: 0;
}
.header.scrolled .menu-container .right-bg {
  opacity: 1;
}
.header.scrolled .right-container .right-bg {
  opacity: 1;
}
.header.scrolled-down {
  -khtml-transform: translate(0,-100%);
  transform: translate(0,-100%);
}
.header.scrolled-down .header-links ul li.top-level-link.open-sub-menu .sub-menu {
  display: none !important;
}
.header.no-gradient .gradient {
  opacity: 0;
}
.header .gradient {
  background: linear-gradient(to bottom, #040040, transparent);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 350px;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
}
.header .rounded-link {
  border: 1px solid #CDAB81;
  padding: 2px;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  text-align: center;
  line-height: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0;
  vertical-align: middle;
}
.header .rounded-link i {
  vertical-align: middle;
}
.header .menu-btn {
  display: inline-block;
  background-color: #CDAB81;
  border-radius: 20px;
  text-transform: uppercase;
  padding: 5px 21px;
  margin-left: 25px;
}
.header .menu-btn span {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #FFFFFF;
  vertical-align: middle;
}
.header .menu-btn .icon {
  width: 15px;
  display: inline-block;
  text-align: left;
  line-height: 1;
  margin-left: 3px;
}
.header .menu-btn .icon i {
  height: 1px;
  display: block;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 3px;
}
.header .menu-btn .icon i:last-child {
  width: 8px;
  margin-bottom: 0;
}
.header .search-form {
  position: absolute;
  width: 200px;
  top: 0;
  bottom: 0;
  right: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  color: #494949;
  border-radius: 20px;
}
.header .search-form button {
  position: absolute;
  right: 5px;
  z-index: 1;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  left: 0;
  min-width: 100px;
  background-color: #ffffff;
  padding: 2px 5px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
}
.header .right-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0;
}
.header .right-container {
  text-align: right;
}
.header .right-container li > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #CDAB81;
  margin: 0 6px;
  padding: 5px;
}
.header .right-container .search-link {
  margin-left: 20px;
}
.header .right-container .search-link svg {
  width: 20px;
  height: 20px;
}
.header .right-container .google-translate svg {
  width: 20px;
  height: 20px;
}
.header .right-container .dropdown-menu {
  left: auto;
  right: 0;
}
.header .header-links {
  text-align: center;
  position: relative;
  z-index: 1;
}
.header .header-links .bg {
  background-color: #050058;
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.header .header-links ul {
  font-size: 0;
}
.header .header-links ul li.top-level-link {
  padding: 0 20px;
}
.header .header-links ul li.top-level-link > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 15px 5px;
  color: #CDAB81;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
}
.header .header-links ul li.top-level-link:hover > a, .header .header-links ul li.top-level-link.open-sub-menu > a, .header .header-links ul li.top-level-link.active > a {
  border-bottom: 4px solid #CDAB81;
}
.header .header-links ul li.top-level-link.open-sub-menu .sub-menu {
  display: block;
}
.header .header-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-width: 1600px;
  margin: auto;
  padding: 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.header .header-links .sub-menu ul.col {
  padding: 0 10px;
  list-style: none;
  text-align: left;
  margin: 0;
  flex: 0 0 auto;
  max-width: 25%;
}
.header .header-links .sub-menu ul.col li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #121243;
  padding: 7px 0;
}
.header .header-links .sub-menu ul.col li a:hover {
  border-bottom: 1px solid #CDAB81;
}
.header .header-links .sub-menu ul.col li.active > a {
  border-bottom: 1px solid #CDAB81;
  font-weight: 500;
}
.header .header-links .sub-menu .sub-menu-bg {
  background-color: #ffffff;
  opacity: 0.85;
  z-index: -1;
}

#full-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: auto;
  display: none;
}
#full-menu .full-menu-inner {
  min-height: 100%;
}
#full-menu .inner-container {
  max-width: 1640px;
  margin: auto;
}
#full-menu .h-100vh {
  padding: 100px 50px 0 50px;
  min-height: 100vh;
}
#full-menu .bg-img {
  background-size: cover;
  background-color: #121243;
}
#full-menu .gradient {
  background: linear-gradient(0deg, rgba(18, 18, 67, 0.85), rgba(18, 18, 67, 0.85)), radial-gradient(50% 50% at 50% 50%, rgba(18, 18, 67, 0) 54.06%, #121243 100%);
}
#full-menu .gradient2 {
  opacity: 0.85;
}
#full-menu .close-btn {
  text-align: right;
}
#full-menu .close-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #CDAB81;
  border-radius: 18px;
  padding: 7px 20px;
  color: #ffffff;
  position: absolute;
  top: 30px;
  right: 30px;
  text-transform: uppercase;
  z-index: 1;
}
#full-menu .close-btn a .close {
  margin-left: 5px;
}
#full-menu .page-links ul {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 0;
  width: 50%;
}
#full-menu .page-links .top-level-link {
  padding-right: 40px;
}
#full-menu .page-links .top-level-link.active .sub-menu {
  display: block;
}
#full-menu .page-links .top-level-link.active > a {
  border-bottom: 1px solid #CDAB81;
}
#full-menu .page-links .top-level-link a {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  padding: 20px 0 10px 0;
  display: block;
}
#full-menu .page-links .top-level-link .sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-height: 100%;
  border-left: 1px solid #CDAB81;
  padding-left: 55px;
  width: 100%;
}
#full-menu .page-links .top-level-link .sub-menu li.active a {
  border-bottom: 1px solid #CDAB81;
}
#full-menu .page-links .top-level-link .sub-menu a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  padding: 7px 0;
  display: inline-block;
}
#full-menu .page-links .top-level-link .sub-menu a:hover {
  border-bottom: 1px solid #CDAB81;
}
#full-menu .quick-links {
  max-width: 410px;
}
#full-menu .quick-links h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}
#full-menu .quick-links h3 i, #full-menu .quick-links h3 span {
  display: inline-block;
  vertical-align: middle;
}
#full-menu .quick-links h3 span {
  padding-top: 8px;
  padding-left: 10px;
}
#full-menu .quick-links ul {
  list-style: none;
  padding-left: 0;
  font-size: 0;
  margin-top: 50px;
  margin-bottom: 20px;
}
#full-menu .quick-links ul li {
  display: inline-block;
  text-align: center;
  width: 33.3333%;
  vertical-align: top;
}
#full-menu .quick-links ul li a {
  padding: 10px;
}
#full-menu .quick-links ul li i {
  color: #CDAB81;
  font-size: 30px;
}
#full-menu .quick-links ul li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}
#full-menu .bottom-section {
  padding: 40px 0;
}
#full-menu .bottom-section .logo div {
  display: inline-block;
  width: 185px;
  height: 95px;
  background-size: contain;
  background-repeat: no-repeat;
}
#full-menu .bottom-section .right-block {
  text-align: right;
}
#full-menu .bottom-section .right-block li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  position: relative;
  margin-right: 10px;
}
#full-menu .bottom-section .right-block li span {
  vertical-align: middle;
  margin-left: 15px;
}
#full-menu .bottom-section .right-block li i {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
#full-menu .bottom-section .right-block li i svg {
  width: 20px;
  height: auto;
}
#full-menu .bottom-section .right-block li.search-item {
  padding-left: 30px;
  padding-right: 30px;
}
#full-menu .bottom-section .right-block form.search-form {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  color: #494949;
  border-radius: 20px;
}
#full-menu .bottom-section .right-block form.search-form input {
  width: 100%;
  height: 100%;
  padding-left: 15px;
}
#full-menu .bottom-section .right-block form.search-form button {
  position: absolute;
  right: 10px;
  z-index: 1;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 50%;
  -khtml-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
#full-menu .bottom-section .right-block form.search-form button svg {
  width: 20px;
  height: auto;
}

#quicklinks {
  max-width: 450px;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 2;
  background-color: #121243;
  padding: 100px 25px;
  display: none;
}
#quicklinks h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}
#quicklinks h3 i, #quicklinks h3 span {
  display: inline-block;
  vertical-align: middle;
}
#quicklinks h3 span {
  padding-top: 8px;
  padding-left: 10px;
}
#quicklinks .close-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #CDAB81;
  border-radius: 18px;
  padding: 7px 20px;
  color: #ffffff;
  position: absolute;
  top: 30px;
  right: 30px;
  text-transform: uppercase;
  z-index: 1;
}
#quicklinks ul {
  list-style: none;
  padding-left: 0;
  font-size: 0;
  margin-top: 50px;
  margin-bottom: 20px;
}
#quicklinks ul li {
  display: inline-block;
  text-align: center;
  width: 33.3333%;
  vertical-align: top;
}
#quicklinks ul li a {
  padding: 10px;
}
#quicklinks ul li i {
  color: #CDAB81;
  font-size: 30px;
}
#quicklinks ul li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.banner .bg-img {
  background-size: cover;
}
.banner .text {
  max-width: 40%;
  background-color: #F3F3F3;
  padding: 25px;
  text-align: center;
}
.banner .text .row {
  min-height: 637px;
}
.banner .text .upper {
  display: block;
  margin: 0 auto 35px auto;
  max-width: 1px;
  height: 37px;
  background-color: #CDAB81;
}
.banner .text .lower {
  display: block;
  margin: 50px auto 0 auto;
  max-width: 1px;
  height: 104px;
  background-color: #CDAB81;
}
.banner .text h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #CDAB81;
}
.banner .text h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.1;
  color: #050058;
  max-width: 650px;
  margin: 0 auto 40px auto;
}
.banner .breadcrumbs {
  position: relative;
}
.banner .breadcrumbs ul {
  padding: 15px 25px 15px 50px;
  display: inline-block;
  min-width: 250px;
  -khtml-transform: translate(0,-50%);
  transform: translate(0,-50%);
  position: relative;
}
.banner .breadcrumbs ul::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #CDAB81;
  z-index: -1;
}
.banner .breadcrumbs ul li {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #ffffff;
}
.banner .breadcrumbs ul li.active a {
  color: #050058;
}
.banner.premium .bg-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.banner.premium .gradient-1 {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.68) 22.73%, rgba(0, 0, 0, 0) 51.36%);
  width: 100%;
  height: 100%;
}
.banner.premium .text {
  background-color: transparent;
  position: relative;
  z-index: 1;
}
.banner.premium .text .row {
  min-height: 960px;
}
.banner.premium .text h1 {
  color: #ffffff;
  text-shadow: 1px 3px 18px #000101;
}
.banner.premium .breadcrumbs ul {
  -khtml-transform: translate(0,0);
  transform: translate(0,0);
}

@media only screen and (max-width : 991.98px) {
  .banner.standard .bg-img {
    flex: 0 0 auto;
    max-width: 100%;
    height: 256px;
  }
  .banner .text {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 17px;
  }
  .banner .text .row {
    min-height: 0px;
  }
  .banner .text h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .banner .text .lower {
    height: 65px;
    margin-top: 15px;
  }
  .banner .text .upper {
    height: 21px;
    margin-bottom: 15px;
  }
  .banner .breadcrumbs {
    display: none;
  }
  .banner .text h4 {
    margin-bottom: 10px;
  }
  .banner.premium .text .row {
    min-height: 670px;
    max-height: 100vh;
    align-items: flex-end !important;
  }
  .banner.premium .gradient-1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 22.73%, rgba(0, 0, 0, 0) 51.36%);
  }
}
.cta-banner {
  padding-bottom: 120px;
  margin-top: 100px;
  background-color: #F3F3F3;
}
.cta-banner .bg-image {
  background-size: cover;
  padding: 25px 25px 0 25px;
}
.cta-banner .row {
  min-height: 756px;
}
.cta-banner .inner-container {
  max-width: 1450px;
  margin: 0 auto;
}
.cta-banner .text-col {
  max-width: 732px;
  background-color: #040040;
  padding: 45px 25px;
  position: relative;
  margin-bottom: -100px;
}
.cta-banner .text-col h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  color: #CDAB81;
  margin-bottom: 35px;
}
.cta-banner .text-col h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.045em;
  margin-bottom: 25px;
  color: #FFFFFF;
}
.cta-banner .text-col .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
  color: #FFFFFF;
}
.cta-banner .text-col .small-container {
  max-width: 576px;
  margin: auto;
}
.cta-banner .text-col .vertical-bar {
  position: absolute;
  left: -19px;
  width: 38px;
  bottom: 0;
  top: 25%;
  background-color: #CDAB81;
}

@media only screen and (max-width : 991.98px) {
  .cta-banner {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .cta-banner .text-col .vertical-bar {
    display: none;
  }
  .cta-banner .text-col {
    flex: 0 0 auto;
    margin-bottom: 0;
    width: calc(100% - 30px);
    margin-top: -150px;
  }
  .cta-banner .img-col {
    flex: 0 0 auto;
    min-height: 410px;
    background-size: cover;
  }
  .cta-banner .bg-image {
    padding: 0;
    background: transparent !important;
  }
  .cta-banner .text-col h1 {
    font-size: 26px;
  }
  .cta-banner .text-col h4 {
    font-size: 18px;
  }
  .cta-banner .text-col .text {
    font-size: 16px;
  }
  .cta-banner .row {
    min-height: 410px;
  }
}
.page-content .full-text-editor {
  margin-top: 50px;
  padding: 25px;
  overflow: hidden;
}
.page-content .full-text-editor .inner-container {
  max-width: 968px;
  margin: auto;
}
.page-content .editorial-module {
  overflow: hidden;
  padding: 100px 25px;
}
.page-content .editorial-module .inner-container {
  max-width: 1900px;
  margin: auto;
}
.page-content .editorial-module .text-col {
  text-align: center;
  max-width: 40%;
  padding-top: 100px;
}
.page-content .editorial-module .text-col .text-container {
  display: inline-block;
  max-width: 477px;
  text-align: left;
}
.page-content .editorial-module .text-col .text-container .paragraph {
  padding-left: 50px;
}
.page-content .editorial-module .text-col h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #CDAB81;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.page-content .editorial-module .text-col h1.editorial-heading {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  color: #050058;
  margin-bottom: 60px;
  position: relative;
}
.page-content .editorial-module .text-col h1.editorial-heading::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #CDAB81;
  width: 10000px;
  position: absolute;
  top: 27px;
  right: 100%;
  margin-right: 35px;
}
.page-content .editorial-module .text-col .paragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.68px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #777777;
}
.page-content .editorial-module .text-col .paragraph p {
  margin-bottom: 50px;
}
.page-content .editorial-module .img-col .foreground-image,
.page-content .editorial-module .img-col .background-image {
  background-size: cover;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
  width: 50%;
  display: inline-block;
}
.page-content .editorial-module .img-col .foreground-image {
  height: 500px;
  margin-right: -10%;
  margin-top: 21%;
  position: relative;
  vertical-align: bottom;
}
.page-content .editorial-module .img-col .background-image {
  height: 612px;
  vertical-align: top;
}
.page-content .editorial-module .align-images-left .text-col {
  order: 2;
  text-align: left;
}
.page-content .editorial-module .align-images-left .text-col h1::before {
  left: 100%;
  margin-right: 0;
  margin-left: 35px;
  right: unset;
}
.page-content .editorial-module .align-images-left .img-col {
  text-align: center;
  max-width: 50%;
  padding-right: 50px;
}
.page-content .editorial-module .align-images-left .img-col .foreground-image {
  margin-right: -20%;
  margin-top: -14%;
}
.page-content .editorial-module .align-images-left .img-col .background-image {
  height: 485px;
  width: 100%;
}
.page-content .document-downloads {
  padding: 25px;
}
.page-content .document-downloads .inner-container {
  max-width: 968px;
  margin: auto;
}
.page-content .document-downloads p {
  margin-bottom: 20px;
}
.page-content .document-downloads a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #040040;
  border-radius: 30px;
  padding-right: 20px;
}
.page-content .document-downloads a:hover {
  background-color: #CDAB81;
  color: #ffffff;
}
.page-content .document-downloads a i {
  background-color: #CDAB81;
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}
.page-content .photo-gallery {
  padding: 25px;
  margin-bottom: 50px;
}
.page-content .photo-gallery .slide-counter {
  position: absolute;
  top: 25%;
  background-color: #ffffff;
  right: 0;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #050058;
  z-index: 1;
  padding: 10px 0;
}
.page-content .photo-gallery .inner-container {
  max-width: 1477px;
  margin: auto;
}
.page-content .photo-gallery .photo-gallery-slider {
  padding: 0 100px;
}
.page-content .photo-gallery .photo {
  height: 852px;
  background-size: cover;
  background-color: #040040;
}
.page-content .photo-gallery figcaption {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050058;
  margin-top: 10px;
}
.page-content .photo-gallery .owl-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  margin-top: 0;
  height: 100%;
}
.page-content .photo-gallery .owl-nav::before {
  content: "";
  display: block;
  width: 1px;
  height: 67%;
  background-color: #CDAB81;
  margin: auto;
}
.page-content .photo-gallery .owl-nav .owl-prev {
  margin-top: 20px;
}
.page-content .photo-gallery .owl-nav button {
  margin: auto;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.page-content .animated-photo-gallery {
  overflow: hidden;
  padding: 0 60px;
  margin-bottom: 50px;
}
.page-content .animated-photo-gallery .inner-container {
  padding: 200px 0 165px 0;
  max-width: 1570px;
  margin: auto;
}
.page-content .animated-photo-gallery .animated-photo-gallery-slider-outer {
  max-width: 650px;
  margin: auto;
}
.page-content .animated-photo-gallery .animated-photo-gallery-slider {
  position: static;
}
.page-content .animated-photo-gallery .item-wrap {
  padding: 0 2px;
}
.page-content .animated-photo-gallery .photo {
  height: 380px;
  background-size: cover;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  background-color: #040040;
  transition: transform 0.3s ease;
  -khtml-transform: rotate(-5deg) translate(33%,0);
  transform: rotate(-5deg) translate(33%,0);
}
.page-content .animated-photo-gallery .owl-stage-outer {
  overflow: visible;
}
.page-content .animated-photo-gallery figcaption {
  opacity: 0;
}
.page-content .animated-photo-gallery .active {
  position: relative;
  z-index: 1;
}
.page-content .animated-photo-gallery .active .photo {
  opacity: 1;
  -khtml-transform: scale(1.5);
  transform: scale(1.5);
}
.page-content .animated-photo-gallery .active ~ .owl-item .photo {
  opacity: 1;
  -khtml-transform: rotate(5deg) translate(-33%,0);
  transform: rotate(5deg) translate(-33%,0);
}
.page-content .animated-photo-gallery figcaption {
  position: absolute;
  bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #050058;
}
.page-content .animated-photo-gallery .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page-content .animated-photo-gallery .owl-nav button {
  margin: auto;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.page-content .animated-photo-gallery .owl-nav .owl-prev {
  -khtml-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.page-content .animated-photo-gallery .owl-nav .owl-next {
  -khtml-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.page-content .animated-photo-gallery .slide-counter {
  position: absolute;
  right: 115px;
  bottom: 8px;
  left: 0;
  text-align: right;
}
.page-content .animated-photo-gallery .slide-counter span {
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  padding: 0 10px;
  text-transform: uppercase;
  color: #050058;
}
.page-content .animated-photo-gallery .slide-counter .counter-outer {
  background-color: #ffffff;
  padding: 0 10px;
}
.page-content .animated-photo-gallery .slide-counter .counter-outer::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 25%;
  background-color: #CDAB81;
  vertical-align: middle;
}
.page-content .animated-photo-gallery .slide-counter .counter-outer::before {
  vertical-align: middle;
  content: "";
  display: inline-block;
  height: 1px;
  width: 14.5%;
  background-color: #CDAB81;
}
.page-content .editorial-gallery {
  padding: 25px;
  margin-top: 100px;
  overflow: hidden;
}
.page-content .editorial-gallery .inner-container {
  max-width: 1500px;
  margin: auto;
}
.page-content .editorial-gallery .text-col {
  max-width: 42%;
  padding-right: 25px;
}
.page-content .editorial-gallery .text-col .short-width {
  max-width: 555px;
}
.page-content .editorial-gallery .text-col h1.heading {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.4;
  color: #050058;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}
.page-content .editorial-gallery .text-col h1.heading::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10000px;
  height: 1px;
  background-color: #CDAB81;
}
.page-content .editorial-gallery .text-col h3.sub-heading {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #CDAB81;
  margin-bottom: 30px;
}
.page-content .editorial-gallery .img-col {
  max-width: 58%;
}
.page-content .editorial-gallery .img-col .photo {
  min-height: 500px;
  background-size: cover;
  background-color: #040040;
}
.page-content .editorial-gallery .img-col .photo-gallery-slider {
  padding-left: 25px;
  padding-right: 100px;
  position: static;
}
.page-content .editorial-gallery .img-col .slide-counter {
  position: absolute;
  top: 33%;
  background-color: #ffffff;
  right: 0;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #050058;
  z-index: 1;
  padding: 10px 0;
}
.page-content .editorial-gallery .img-col figcaption {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050058;
  margin-top: 10px;
}
.page-content .editorial-gallery .img-col .owl-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  margin-top: 0;
}
.page-content .editorial-gallery .img-col .owl-nav::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 143px);
  background-color: #CDAB81;
  margin: auto;
}
.page-content .editorial-gallery .img-col .owl-nav .owl-prev {
  margin-top: 20px;
}
.page-content .editorial-gallery .img-col .owl-nav button {
  margin: auto;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.page-content .video-module {
  margin-top: 100px;
}
.page-content .video-module .bg {
  background: #F3F3F3;
  padding: 50px 25px 100px 25px;
}
.page-content .video-module .inner-container {
  max-width: 1720px;
  margin: auto;
}
.page-content .video-module .text-col {
  max-width: 37%;
  padding-right: 50px;
}
.page-content .video-module .text-col .container {
  max-width: 431px;
  margin: auto;
}
.page-content .video-module .text-col h1.heading {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: #050058;
  border-bottom: 1px solid #CDAB81;
  padding-left: 50px;
  max-width: 560px;
}
.page-content .video-module .text-col h3.sub-text {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: #2A2671;
  margin-bottom: 20px;
}
.page-content .video-module .video-col {
  max-width: 63%;
  height: 606px;
  margin-top: -100px;
}
.page-content .video-module .video-col .common-video-carousel {
  height: 100%;
}
.page-content .video-module .video-col .common-video-carousel * {
  height: 100%;
}
.page-content .video-module .video-col .owl-video-tn {
  background-size: cover;
  position: relative;
}
.page-content .video-module .video-col .owl-video-tn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 0.5;
}
.page-content .video-module .video-col .owl-video-play-icon {
  width: 109px;
  height: 49px;
  text-align: center;
  -khtml-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin: 0;
  background: transparent;
}
.page-content .video-module .video-col .owl-video-play-icon .play-btn-outer i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #CDAB81;
  border-radius: 50%;
  vertical-align: middle;
}
.page-content .video-module .video-col .owl-video-play-icon .play-btn-outer span {
  vertical-align: middle;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 10px;
}
.page-content .video-module .video-col .right-bar {
  position: absolute;
  right: -19px;
  bottom: 0;
  top: 23%;
  width: 38px;
  background-color: #CDAB81;
  z-index: 1;
}
.page-content .read-more-accordion-module {
  padding: 25px;
  margin-top: 50px;
}
.page-content .read-more-accordion-module p {
  margin-bottom: 20px;
}
.page-content .read-more-accordion-module .document-downloads {
  padding: 0;
}
.page-content .read-more-accordion-module .inner-container {
  max-width: 967px;
  margin: auto;
}
.page-content .read-more-accordion-module .accordion {
  padding-top: 30px;
}
.page-content .read-more-accordion-module .accordion-item {
  border-left: 0;
  border-right: 0;
  border-color: #CDAB81;
  border-radius: 0;
}
.page-content .read-more-accordion-module .accordion-body {
  padding: 0 0 25px 0;
}
.page-content .read-more-accordion-module .accordion-button {
  box-shadow: none;
  border: 0;
  padding: 25px 50px 25px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.045em;
  color: #2A2671;
  position: relative;
}
.page-content .read-more-accordion-module .accordion-button .align-right {
  position: absolute;
  right: 0;
  top: 23px;
  height: 30px;
  width: 30px;
  text-align: center;
  border: 1px solid #CDAB81;
  border-radius: 50%;
  line-height: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page-content .read-more-accordion-module .accordion-button .align-right .minus {
  display: none;
}
.page-content .read-more-accordion-module .accordion-button:not(.collapsed) {
  color: #2A2671;
  background-color: transparent;
}
.page-content .read-more-accordion-module .accordion-button:not(.collapsed) .minus {
  display: inline-block;
}
.page-content .read-more-accordion-module .accordion-button:not(.collapsed) .plus {
  display: none;
}
.page-content .read-more-accordion-module .accordion-button::after {
  display: none;
}
.page-content .staff-module {
  margin-top: 100px;
  padding: 25px;
}
.page-content .staff-module.no-heading {
  margin-top: 0;
}
.page-content .staff-module.no-heading .profiles {
  margin-top: 10px;
}
.page-content .staff-module .inner-container {
  max-width: 1200px;
  margin: auto;
}
.page-content .staff-module .small-container {
  max-width: 967px;
  margin: auto;
}
.page-content .staff-module .profiles {
  margin-top: 50px;
}
.page-content .staff-module .single-profile {
  padding: 25px;
  max-width: 25%;
  flex: 0 0 auto;
  text-align: center;
}
.page-content .staff-module .single-profile .img {
  background-size: cover;
  height: 328px;
  margin-bottom: 20px;
  background-color: #040040;
}
.page-content .staff-module .single-profile h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #CDAB81;
}
.page-content .staff-module .single-profile h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  color: #777777;
}
.page-content .image-divider {
  background-size: cover;
  padding: 25px 25px 65px 25px;
  margin-top: 50px;
  background-color: #040040;
}
.page-content .image-divider.parallax-scroll {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.01s ease;
}
.page-content .image-divider.parallax-scroll.mobile-parallax {
  background-attachment: scroll;
  background-size: auto 160%;
}
.page-content .image-divider .gradient-1 {
  background: linear-gradient(39.41deg, rgba(4, 0, 64, 0.78) 30.34%, rgba(4, 0, 64, 0) 64.34%);
}
.page-content .image-divider .inner-container {
  max-width: 1600px;
  margin: auto;
  position: relative;
}
.page-content .image-divider .row {
  min-height: 800px;
}
.page-content .image-divider .text-col {
  max-width: 800px;
  width: 75%;
}
.page-content .image-divider h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  color: #CDAB81;
  margin-bottom: 35px;
}
.page-content .image-divider .text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  margin-bottom: 35px;
  color: #ffffff;
}
.page-content .link-tiles {
  margin-top: 100px;
  padding: 25px;
}
.page-content .link-tiles .inner-container {
  max-width: 1150px;
  margin: auto;
}
.page-content .link-tiles .small-container {
  max-width: 967px;
  margin: auto;
}
.page-content .link-tiles .single-tile {
  flex: 0 0 auto;
  padding: 4px;
}
.page-content .link-tiles .single-tile:hover .img {
  -khtml-transform: scale(1.2);
  transform: scale(1.2);
}
.page-content .link-tiles .single-tile:hover .gradient {
  opacity: 0;
}
.page-content .link-tiles .single-tile .innr {
  background-color: #040040;
  overflow: hidden;
  position: relative;
  min-height: 213px;
}
.page-content .link-tiles .single-tile.small {
  max-width: 33.3333%;
}
.page-content .link-tiles .single-tile.large {
  max-width: 33.3333%;
}
.page-content .link-tiles .single-tile.large .innr {
  min-height: 436px;
}
.page-content .link-tiles .single-tile .img {
  background-size: cover;
  transition: transform 6s ease;
  transform-origin: bottom;
}
.page-content .link-tiles .single-tile .img .gradient {
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 0%, #040040 100%);
}
.page-content .link-tiles .single-tile .text {
  padding: 0 25px 20px 25px;
  position: relative;
  z-index: 1;
}
.page-content .link-tiles .single-tile .text .left-bar {
  width: 38px;
  position: absolute;
  top: 20%;
  bottom: 0;
  left: -19px;
  background-color: #CDAB81;
  display: none;
}
.page-content .link-tiles .single-tile h1 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #CDAB81;
}
.page-content .image-text-module {
  margin-top: 100px;
}
.page-content .image-text-module h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  color: #050058;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}
.page-content .image-text-module h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #CDAB81;
  margin-bottom: 25px;
}
.page-content .image-text-module .img {
  background-size: cover;
  height: 100%;
  background-color: #040040;
}
.page-content .image-text-module.align-image-right {
  padding-bottom: 66px;
}
.page-content .image-text-module.align-image-right .text-container {
  margin-left: auto;
  margin-right: 0;
  max-width: 551px;
}
.page-content .image-text-module.align-image-right .text-col {
  max-width: 48%;
  flex: 0 0 auto;
  padding-right: 150px;
  overflow: hidden;
  align-self: center;
  padding-left: 25px;
}
.page-content .image-text-module.align-image-right .img-col {
  max-width: 52%;
  flex: 0 0 auto;
  position: relative;
}
.page-content .image-text-module.align-image-right .img {
  min-height: 705px;
}
.page-content .image-text-module.align-image-right .img-bg {
  position: absolute;
  bottom: -66px;
  left: -66px;
  right: 0;
  top: 65%;
  background-color: #050058;
  z-index: -1;
}
.page-content .image-text-module.align-image-right h1::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10000px;
  height: 1px;
  background-color: #CDAB81;
}
.page-content .image-text-module.align-image-left h1 {
  color: #ffffff;
}
.page-content .image-text-module.align-image-left .redactor-styles {
  color: #ffffff;
}
.page-content .image-text-module.align-image-left .img-col {
  max-width: 100%;
  flex: 0 0 auto;
  position: relative;
}
.page-content .image-text-module.align-image-left .text-col {
  order: 2;
}
.page-content .image-text-module.align-image-left .img {
  min-height: 860px;
}
.page-content .image-text-module.align-image-left .img-container {
  max-width: 1570px;
  margin: auto;
}
.page-content .image-text-module.align-image-left .text-col {
  max-width: 48%;
  padding-top: 50px;
  background-color: #050058;
  margin-top: -430px;
  z-index: 1;
  padding-right: 25px;
}
.page-content .image-text-module.align-image-left .text-container {
  max-width: 700px;
}
.page-content .image-text-module.align-image-left h1 {
  padding-left: 150px;
}
.page-content .image-text-module.align-image-left .left-bar {
  padding-left: 131px;
  position: relative;
  border-left: 38px solid #CDAB81;
  margin-left: -19px;
  padding-bottom: 50px;
}
.page-content .image-text-module.align-image-left .text-container {
  margin-left: 0;
}
.page-content .image-text-module.align-image-left .row {
  justify-content: end;
}
.page-content .web-form {
  padding: 25px;
  margin-top: 100px;
}
.page-content .web-form .inner-container {
  max-width: 960px;
  margin: auto;
}
.page-content .web-form .common-heading {
  margin-bottom: 50px;
  color: #050058;
}
.page-content .web-form .subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  margin-bottom: 40px;
  color: #777777;
}
.page-content .web-form .form {
  font-size: 16px;
}
.page-content .web-form label, .page-content .web-form .fui-legend {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  color: #2A2671;
}
.page-content .web-form .fui-input {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  border-bottom: 1px solid #CDAB81;
  box-shadow: none !important;
  font-size: 16px;
  background-color: transparent;
}
.page-content .web-form .fui-input:focus {
  border-bottom: 2px solid #CDAB81;
}
.page-content .web-form .fui-select {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  border-bottom: 1px solid #CDAB81;
  box-shadow: none !important;
  font-size: 16px;
  background-color: transparent;
  color: #CDAB81;
}
.page-content .web-form .fui-checkbox input + label:before, .page-content .web-form .fui-radio input + label:before {
  box-shadow: none;
  width: 25px;
  height: 25px;
  top: 7px;
  background-size: 18px auto;
  border-color: #CDAB81;
  background-color: transparent;
}
.page-content .web-form .fui-checkbox input:checked + label:before, .page-content .web-form .fui-radio input:checked + label:before {
  background-color: #2A2671;
}
.page-content .web-form .fui-layout-horizontal .fui-layout-wrap > .fui-checkbox, .page-content .web-form .fui-layout-horizontal .fui-layout-wrap > .fui-radio {
  margin-right: 30px;
}
.page-content .web-form .fui-checkbox label, .page-content .web-form .fui-radio label {
  padding-left: 35px;
  padding-bottom: 10px;
  padding-top: 10px;
  cursor: pointer;
}

@media only screen and (max-width : 1499.98px) {
  .page-content .editorial-module .img-col .background-image {
    height: 453px;
  }
  .page-content .editorial-module .img-col .foreground-image {
    height: 370px;
  }
  .page-content .editorial-module .img-col {
    text-align: right;
  }
  .page-content .editorial-module .text-col {
    padding-top: 0;
  }
  .page-content .editorial-module {
    padding-left: 35px;
    padding-right: 35px;
  }
  .page-content .editorial-module .text-col h1.editorial-heading::before {
    margin-right: 25px;
  }
  .page-content .editorial-module .align-images-left .img-col {
    max-width: 46%;
  }
  .page-content .editorial-module .align-images-left .text-col {
    padding-top: 100px;
  }
  .page-content .editorial-module .align-images-left .img-col .background-image {
    height: 328px;
  }
  .page-content .editorial-module .align-images-left .img-col .foreground-image {
    height: 328px;
  }
}
@media only screen and (max-width : 991.98px) {
  .page-content {
    margin-top: 30px;
  }
  .page-content .full-text-editor {
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 0;
  }
  .page-content .document-downloads a span {
    display: inline-block;
    max-width: calc(100% - 63px);
  }
  .page-content .photo-gallery .photo-gallery-slider {
    padding: 0;
  }
  .page-content .photo-gallery .owl-nav {
    display: none;
  }
  .page-content .photo-gallery .slide-counter {
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    text-align: right;
    background-color: transparent;
    font-size: 10px;
  }
  .page-content .photo-gallery figcaption {
    position: absolute;
    top: 100%;
    left: 0;
    right: 60px;
    font-size: 10px;
    margin-top: 5px;
  }
  .page-content .photo-gallery {
    padding: 25px 17px;
    margin-bottom: 0;
  }
  .page-content .photo-gallery .owl-stage-outer {
    padding-bottom: 30px;
  }
  .page-content .photo-gallery .photo {
    height: 228px;
  }
  .page-content .animated-photo-gallery .owl-nav {
    display: none;
  }
  .page-content .animated-photo-gallery .photo {
    height: 152px;
  }
  .page-content .animated-photo-gallery .animated-photo-gallery-slider-outer {
    max-width: 228px;
  }
  .page-content .animated-photo-gallery {
    padding: 25px 17px 55px 17px;
    margin-bottom: 0;
  }
  .page-content .animated-photo-gallery .inner-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-content .animated-photo-gallery .active ~ .owl-item .photo {
    transform: rotate(5deg) translate(-74%, 0);
  }
  .page-content .animated-photo-gallery .photo {
    transform: rotate(-5deg) translate(74%, 0);
  }
  .page-content .animated-photo-gallery .slide-counter {
    bottom: auto;
    top: 100%;
    right: 0;
  }
  .page-content .animated-photo-gallery .slide-counter .counter-outer {
    background-color: transparent;
    padding: 0 8px;
  }
  .page-content .animated-photo-gallery .slide-counter span {
    background-color: transparent;
    font-size: 10px;
  }
  .page-content .animated-photo-gallery .slide-counter .counter-outer::after {
    width: 5%;
  }
  .page-content .animated-photo-gallery .slide-counter .counter-outer::before {
    width: calc(95% - 68px);
  }
  .page-content .animated-photo-gallery .slide-counter span.caption {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: left;
  }
  .page-content .editorial-gallery .text-col {
    flex: 0 0 auto;
    max-width: 100%;
    order: 2;
    padding-right: 17px;
    padding-left: 17px;
    padding-top: 15px;
  }
  .page-content .editorial-gallery .img-col {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .page-content .editorial-gallery .photo-gallery-slider {
    padding: 0;
  }
  .page-content .editorial-gallery .owl-nav {
    display: none;
  }
  .page-content .editorial-gallery .img-col .slide-counter {
    z-index: -1;
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    text-align: right;
    background-color: transparent;
    font-size: 10px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .page-content .editorial-gallery .img-col .slide-counter::before {
    vertical-align: middle;
    content: "";
    display: inline-block;
    height: 1px;
    width: 14.5%;
    width: calc(95% - 45px);
    background-color: #CDAB81;
    margin-right: 5px;
  }
  .page-content .editorial-gallery .img-col .slide-counter::after {
    content: "";
    display: inline-block;
    height: 1px;
    background-color: #CDAB81;
    vertical-align: middle;
    width: 5%;
    margin-left: 5px;
  }
  .page-content .editorial-gallery .img-col figcaption {
    position: absolute;
    top: 100%;
    left: 17px;
    font-size: 10px;
    margin-top: 5px;
    background-color: #ffffff;
    padding-right: 10px;
  }
  .page-content .editorial-gallery {
    padding: 25px 0;
    margin-top: 0;
  }
  .page-content .editorial-gallery .owl-stage-outer {
    padding-bottom: 30px;
  }
  .page-content .editorial-gallery .img-col .photo {
    min-height: 250px;
  }
  .page-content .editorial-gallery .img-col .photo-gallery-slider {
    padding: 0;
  }
  .page-content .editorial-gallery .text-col .short-width {
    margin: auto;
  }
  .page-content .editorial-gallery .text-col h1.heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-content .editorial-gallery .text-col h3.sub-heading {
    font-size: 18px;
  }
  .page-content .video-module {
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .page-content .video-module .text-col {
    flex: 0 0 auto;
    max-width: 100%;
    order: 2;
    padding: 30px 17px;
  }
  .page-content .video-module .video-col {
    flex: 0 0 auto;
    max-width: 100%;
    margin-top: 0;
    height: 211px;
  }
  .page-content .video-module .video-col .right-bar {
    display: none;
  }
  .page-content .video-module .video-col .owl-video-play-icon .play-btn-outer span {
    margin: 10px 0 0 0;
    display: block;
  }
  .page-content .video-module .text-col h1.heading {
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    padding-left: 0;
    max-width: 431px;
    padding-bottom: 10px;
  }
  .page-content .video-module .bg {
    padding: 0;
  }
  .page-content .video-module .text-col h3.sub-text {
    font-size: 18px;
  }
  .page-content .read-more-accordion-module .accordion {
    padding-top: 0;
  }
  .page-content .read-more-accordion-module {
    margin-top: 0;
    padding: 25px 17px;
  }
  .page-content .read-more-accordion-module .accordion-button {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .page-content .read-more-accordion-module .accordion-button .align-right {
    top: 11px;
  }
  .page-content .staff-module {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5px;
    margin-top: 0;
  }
  .page-content .staff-module .single-profile {
    max-width: 33.3333%;
    padding: 12px;
  }
  .page-content .staff-module .common-heading {
    padding: 0 17px;
  }
  .page-content .staff-module .common-heading::before {
    margin-right: -8px;
  }
  .page-content .staff-module .single-profile .img {
    height: 250px;
    margin-bottom: 10px;
  }
  .page-content .staff-module .single-profile h3 {
    font-size: 18px;
  }
  .page-content .staff-module .single-profile h4 {
    font-size: 15px;
  }
  .page-content .staff-module .profiles {
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .page-content .image-divider {
    padding: 35px 17px;
    margin-top: 25px;
  }
  .page-content .image-divider .row {
    min-height: 600px;
  }
  .page-content .image-divider h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-content .image-divider .text {
    font-size: 16px;
  }
  .page-content .link-tiles {
    padding: 25px 8px;
    margin-top: 30px;
  }
  .page-content .link-tiles .common-heading {
    padding-left: 8px;
  }
  .page-content .link-tiles .common-heading::before {
    margin-right: 0;
  }
  .page-content .link-tiles .single-tile .text {
    padding: 22px 20px 15px 20px;
  }
  .page-content .link-tiles .single-tile.large .text {
    padding: 22px 20px 15px 20px;
  }
  .page-content .link-tiles .single-tile .text .left-bar {
    display: none;
  }
  .page-content .link-tiles .single-tile h1 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .page-content .image-text-module.align-image-right .text-col {
    max-width: 100%;
    order: 2;
    padding-right: 17px;
    padding-left: 17px;
  }
  .page-content .image-text-module.align-image-right .img-col {
    max-width: 100%;
    order: 1;
    padding: 17px;
  }
  .page-content .image-text-module.align-image-right .img {
    min-height: 341px;
  }
  .page-content .image-text-module.align-image-right .img-bg {
    right: 17px;
    bottom: 0;
    left: 0;
  }
  .page-content .image-text-module.align-image-right {
    margin-top: 0;
    padding-bottom: 25px;
    padding-top: 25px;
  }
  .page-content .image-text-module.align-image-right .text-container {
    max-width: 100%;
    margin-top: 30px;
  }
  .page-content .image-text-module.align-image-right h1::after {
    left: 0;
    right: auto;
  }
  .page-content .image-text-module.align-image-right h1 {
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .page-content .image-text-module h3 {
    font-size: 18px;
  }
  .page-content .image-text-module {
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .page-content .image-text-module.align-image-left .text-col {
    max-width: 100%;
    flex: 0 0 auto;
    margin-top: 0;
    padding-top: 30px;
    overflow: hidden;
  }
  .page-content .image-text-module.align-image-left .img-container {
    padding-left: 17px;
  }
  .page-content .image-text-module.align-image-left .img {
    min-height: 300px;
  }
  .page-content .image-text-module.align-image-left .img-bg {
    position: absolute;
    left: 0;
    width: 17px;
    display: block;
    top: 50%;
    bottom: 0;
    background-color: #050058;
  }
  .page-content .image-text-module.align-image-left h1 {
    padding-left: 17px;
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .page-content .image-text-module.align-image-left h1::after {
    content: "";
    display: block;
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 10000px;
    height: 1px;
    background-color: #CDAB81;
  }
  .page-content .image-text-module.align-image-left .left-bar {
    padding-left: 35px;
    border-width: 17px;
    padding-bottom: 30px;
    margin-left: 0;
  }
  .page-content .web-form .common-heading {
    margin-bottom: 30px;
  }
  .page-content .web-form label, .page-content .web-form .fui-legend {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .page-content .web-form .fui-input {
    font-size: 16px;
    padding-left: 0;
  }
  .page-content .web-form .fui-select {
    font-size: 16px;
    padding-left: 0;
  }
  .page-content .web-form .fui-checkbox input + label:before, .page-content .web-form .fui-radio input + label:before {
    width: 27px;
    height: 27px;
    top: 1px;
  }
  .page-content .web-form .fui-checkbox label, .page-content .web-form .fui-radio label {
    padding-left: 35px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .page-content .web-form {
    margin-top: 0;
    padding: 25px 17px;
  }
  .page-content .editorial-module .text-col {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .page-content .editorial-module .img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 450px;
    margin: auto;
  }
  .page-content .editorial-module {
    padding: 25px 17px;
  }
  .page-content .editorial-module .text-col h1.editorial-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .page-content .editorial-module .text-col .text-container .paragraph {
    padding-left: 0;
    padding-bottom: 30px;
  }
  .page-content .editorial-module .img-col .background-image {
    height: 202px;
    width: 60%;
  }
  .page-content .editorial-module .img-col .foreground-image {
    height: 165px;
    float: left;
  }
  .page-content .editorial-module .align-images-left .text-col {
    order: 1;
    text-align: center;
    padding-top: 20px;
  }
  .page-content .editorial-module .align-images-left .img-col {
    order: 2;
    max-width: 100%;
    padding-right: 0;
  }
  .page-content .editorial-module .align-images-left .img-col .background-image {
    height: 190px;
  }
  .page-content .editorial-module .align-images-left .img-col .foreground-image {
    height: 178px;
    float: none;
  }
  .page-content .editorial-module .text-col .paragraph p {
    margin-bottom: 20px;
  }
  .page-content .editorial-module .text-col h5 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width : 767.98px) {
  .page-content .staff-module .single-profile {
    max-width: 50%;
  }
  .page-content .staff-module .single-profile .img {
    height: 187px;
  }
  .page-content .link-tiles .single-tile.small {
    max-width: 100%;
  }
  .page-content .link-tiles .single-tile.large {
    max-width: 100%;
  }
  .page-content .link-tiles .single-tile.large .innr {
    min-height: 300px;
  }
}
.redactor-styles {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.035em;
  color: #777777;
  /* Simulates margin collapsing with the preceding paragraph, which does not work for the floating elements. */
}
.redactor-styles h1, .redactor-styles h2, .redactor-styles h3, .redactor-styles h4, .redactor-styles h5, .redactor-styles h6 {
  color: #050058;
  margin-bottom: 35px;
  line-height: 1.3;
}
.redactor-styles h1 {
  font-size: 62px;
  font-weight: 400;
  position: relative;
}
.redactor-styles h1::before {
  content: "";
  display: block;
  height: 1px;
  width: 1000px;
  position: absolute;
  right: 100%;
  margin-right: 30px;
  top: 50%;
  background-color: #CDAB81;
}
.redactor-styles h2 {
  font-size: 46px;
}
.redactor-styles h3 {
  font-size: 32px;
}
.redactor-styles h6 {
  text-transform: uppercase;
}
.redactor-styles p, .redactor-styles ul, .redactor-styles ol, .redactor-styles blockquote {
  margin-bottom: 35px;
}
.redactor-styles li {
  margin-bottom: 5px;
}
.redactor-styles table {
  width: 100%;
}
.redactor-styles table th, .redactor-styles table td {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045em;
  padding: 20px 5px;
}
.redactor-styles table th:first-child, .redactor-styles table td:first-child {
  padding-left: 0;
}
.redactor-styles table th {
  border-top: 1px solid #CDAB81;
  border-bottom: 1px solid #CDAB81;
  color: #2A2671;
}
.redactor-styles table tr {
  border-bottom: 1px solid #CDAB81;
}
.redactor-styles a {
  color: #0d6efd;
}
.redactor-styles blockquote {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #CDAB81;
  padding-left: 20px;
  position: relative;
}
.redactor-styles blockquote::after {
  content: "";
  display: block;
  width: 2px;
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  background-color: #CDAB81;
}
.redactor-styles .ck-anchor {
  color: inherit;
}
.redactor-styles .ck-anchor:hover {
  color: inherit;
}
.redactor-styles img,
.redactor-styles video,
.redactor-styles embed,
.redactor-styles object{
  max-width: 100% !important;
  height: auto !important;
}
.redactor-styles .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.redactor-styles .image.image-style-block-align-left, .redactor-styles .image.image-style-block-align-right {
  max-width: calc(100% - 1rem);
}
.redactor-styles .image.image-style-align-left, .redactor-styles .image.image-style-align-right {
  clear: none;
}
.redactor-styles .image.image-style-side {
  float: right;
  margin-left: 1rem;
  max-width: 50%;
}
.redactor-styles .image.image-style-align-left {
  float: left;
  margin-right: 1rem;
}
.redactor-styles .image.image-style-align-right {
  float: right;
  margin-left: 1rem;
}
.redactor-styles .image.image-style-block-align-right {
  margin-right: 0;
  margin-left: auto;
}
.redactor-styles .image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.redactor-styles .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}
.redactor-styles .image-style-align-left {
  float: left;
  margin-right: 1rem;
}
.redactor-styles .image-style-align-right {
  float: right;
  margin-left: 1rem;
}
.redactor-styles p + .image.image-style-align-left,
.redactor-styles p + .image.image-style-align-right,
.redactor-styles p + .image.image-style-side {
  margin-top: 0;
}
.redactor-styles .image-inline.image-style-align-left, .redactor-styles .image-inline.image-style-align-right {
  margin-top: var(--ck-inline-image-style-spacing);
  margin-bottom: var(--ck-inline-image-style-spacing);
}
.redactor-styles .image-inline.image-style-align-left {
  margin-right: var(--ck-inline-image-style-spacing);
}
.redactor-styles .image-inline.image-style-align-right {
  margin-left: var(--ck-inline-image-style-spacing);
}

@media only screen and (max-width : 1499.98px) {
  .redactor-styles h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width : 991.98px) {
  .redactor-styles {
    font-size: 15px;
  }
  .redactor-styles table th, .redactor-styles table td {
    font-size: 15px;
  }
  .redactor-styles h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .redactor-styles h1::before {
    margin-right: 8px;
  }
  .redactor-styles h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .redactor-styles h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .redactor-styles h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .redactor-styles h5 {
    margin-bottom: 20px;
  }
  .redactor-styles h6 {
    margin-bottom: 20px;
  }
  .redactor-styles blockquote {
    font-size: 18px;
  }
  .redactor-styles blockquote::after {
    top: 8px;
    bottom: 8px;
  }
  .redactor-styles p, .redactor-styles ul, .redactor-styles ol,
  .redactor-styles blockquote {
    margin-bottom: 20px;
  }
}
.news-masonry .single-news {
  padding: 15px;
  flex: 0 0 auto;
  max-width: 33.3333%;
}
.news-masonry .single-news:hover .gradient {
  opacity: 0 !important;
}
.news-masonry .single-news:hover .bg {
  -khtml-transform: scale(1.2);
  transform: scale(1.2);
}
.news-masonry .single-news:nth-child(9n+2) .row, .news-masonry .single-news:nth-child(9n+7) .row, .news-masonry .single-news:nth-child(9n) .row {
  min-height: 400px;
}
.news-masonry .single-news:nth-child(9n+5), .news-masonry .single-news:nth-child(9n+8) {
  margin-top: -108px;
}
.news-masonry .single-news.featured .innr {
  background-color: #e5422b;
}
.news-masonry .single-news.featured .gradient {
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 47.4%, #e5422b 86.98%);
}
.news-masonry .single-news.type1 .innr {
  background-color: #040040;
}
.news-masonry .single-news.type1 .gradient {
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 47.4%, rgb(4, 0, 64) 86.98%);
  opacity: 0.8;
}
.news-masonry .single-news.type2 .innr {
  background-color: #CDAB81;
}
.news-masonry .single-news.type2 .gradient {
  background: linear-gradient(180deg, rgba(205, 171, 129, 0) 47.4%, rgba(205, 171, 129, 0.8) 86.98%);
}
.news-masonry .single-news.type3 .innr {
  background-color: #2A2671;
}
.news-masonry .single-news.type3 .gradient {
  background: linear-gradient(180deg, rgba(42, 38, 113, 0) 47.4%, #2A2671 86.98%);
}
.news-masonry .single-news .row {
  min-height: 508px;
}
.news-masonry .single-news .bg {
  background-size: cover;
  transition: all 5s ease;
}
.news-masonry .single-news .gradient {
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 47.4%, rgba(4, 0, 64, 0.8) 86.98%);
}
.news-masonry .single-news .innr {
  padding: 15px 20px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #040040;
  overflow: hidden;
}
.news-masonry .single-news .text {
  position: relative;
}
.news-masonry .single-news .text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
}
.news-masonry .single-news .text h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

.right-view-selection {
  position: fixed;
  right: 10px;
  top: 30%;
  z-index: 3;
}
.right-view-selection ul {
  list-style: none;
}
.right-view-selection ul li {
  margin-bottom: 2px;
}
.right-view-selection ul li a {
  background-color: #001A72;
  padding: 15px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  display: block;
  text-align: center;
}
.right-view-selection ul li a i {
  display: inline-block;
  vertical-align: middle;
}
.right-view-selection ul li a svg path {
  stroke: #F9F8FA;
}
.right-view-selection ul li.active a svg path {
  stroke: #CDAB81;
}
.right-view-selection ul li:first-child a {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}
.right-view-selection ul li:last-child a {
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

@media only screen and (max-width : 767.98px) {
  .right-view-selection {
    left: 0;
    right: 0;
    top: auto;
    bottom: 10px;
    text-align: center;
  }
  .right-view-selection ul {
    padding-left: 0;
    font-size: 0;
  }
  .right-view-selection ul li a {
    padding: 7px 16px;
  }
  .right-view-selection ul li a svg {
    height: 23px;
    width: auto;
  }
  .right-view-selection ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 2px;
  }
  .right-view-selection ul li:first-child a {
    border-top-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .right-view-selection ul li:last-child a {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }
}
#read-next {
  background-color: #F3F3F3;
  padding: 50px 25px;
}
#read-next .inner-container {
  max-width: 1700px;
  margin: auto;
}
#read-next .col {
  max-width: 25%;
  flex: 0 0 auto;
  padding: 50px 15px 0 15px;
}
#read-next .vertical-bars {
  text-align: center;
  padding-top: 0;
}
#read-next .vertical-bars .upper {
  width: 1px;
  height: 36px;
  background-color: #CDAB81;
  display: block;
  margin: auto;
}
#read-next .vertical-bars p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: #CDAB81;
  text-transform: uppercase;
  margin-top: 20px;
}
#read-next .vertical-bars h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #050058;
  margin-bottom: 30px;
}
#read-next .vertical-bars .lower {
  width: 1px;
  height: 104px;
  background-color: #CDAB81;
  display: block;
  margin: auto;
}
#read-next ul {
  padding-left: 0;
  margin-bottom: 0;
}
#read-next ul li {
  list-style: none;
}
#read-next ul li.active a {
  font-weight: 600;
}
#read-next ul li.active a::after {
  content: "";
  display: block;
  height: 1px;
  width: 90px;
  background-color: #CDAB81;
  position: absolute;
  left: 5px;
  bottom: 0;
}
#read-next ul li a {
  color: #777777;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.045em;
  position: relative;
  display: inline-block;
  padding: 10px 5px;
}
#read-next ul li a::after {
  content: "";
  display: block;
  height: 1px;
  width: 90px;
  background-color: transparent;
  position: absolute;
  left: 5px;
  bottom: 0;
}
#read-next ul li a:hover::after {
  background-color: #CDAB81;
}

@media only screen and (max-width : 991.98px) {
  #read-next {
    padding-bottom: 40px;
  }
  #read-next .col {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  #read-next .vertical-bars h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  #read-next .vertical-bars .lower {
    height: 65px;
    margin-bottom: 15px;
  }
  #read-next ul li a {
    font-size: 15px;
  }
  #read-next ul li.active a::after {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.newsletter-banner .view-selection {
  background-color: #F9F8FA;
  padding: 10px 25px;
  max-width: 45%;
  text-align: center;
}
.newsletter-banner .view-selection .row .col {
  text-align: center;
  vertical-align: top;
  vertical-align: middle;
}
.newsletter-banner .view-selection .row .col.active a {
  color: #001A72;
}
.newsletter-banner .view-selection .row .col a {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.1;
  padding: 5px 15px;
  color: #CDAB81;
}
.newsletter-banner .view-selection .row .col a span {
  display: block;
}
.newsletter-banner .view-selection .row .col a i {
  margin-bottom: 5px;
  display: inline-block;
}

@media only screen and (max-width : 991.98px) {
  .newsletter-banner .view-selection .row .col a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width : 767.98px) {
  .newsletter-banner .view-selection {
    max-width: 100%;
  }
}
.employment-banner .text {
  background: linear-gradient(151.53deg, #2A2671 23.34%, #040040 55.71%);
}
.employment-banner .text h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0;
}
.employment-banner .text .lower-section .inline-block {
  border-top: 1px solid #CDAB81;
  padding-top: 20px;
  min-width: 360px;
  margin-bottom: 20px;
}
.employment-banner .text .lower-section h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #CDAB81;
  margin-bottom: 20px;
}
.employment-banner .text .lower-section p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #CDAB81;
  text-transform: uppercase;
}

@media only screen and (max-width : 991.98px) {
  .employment-banner .bg-img {
    flex: 0 0 auto;
    max-width: 100%;
    height: 256px;
  }
  .employment-banner .text {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 30px 17px;
  }
  .employment-banner .text .row {
    min-height: 0px;
  }
  .employment-banner .text h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .employment-banner .text .lower {
    height: 65px;
    margin-top: 15px;
  }
  .employment-banner .text .upper {
    height: 21px;
    margin-bottom: 15px;
  }
  .employment-banner .breadcrumbs {
    display: none;
  }
  .employment-banner .text h4 {
    margin-bottom: 10px;
  }
  .employment-banner .text .lower-section .inline-block {
    border: 0;
    margin-bottom: 0;
  }
  .employment-banner .text .lower-section p {
    margin-bottom: 0;
  }
}
.events-banner .calendar-container {
  padding-right: 150px;
  max-width: 650px;
  margin: 80px auto 0;
}
.events-banner.premium .gradient {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.68) 22.73%, rgba(0, 0, 0, 0) 51.36%), linear-gradient(287.82deg, #000000 22.9%, rgba(0, 0, 0, 0) 44.33%);
}
.events-banner .month-year {
  position: absolute;
  top: calc(100% - 50px);
  left: calc(100% - 60px);
  -khtml-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform-origin: left;
  width: 100%;
  text-align: left;
}
.events-banner .month-year h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.events-banner .custom-pager {
  text-align: right;
  position: absolute;
  top: 20px;
  right: 20px;
}
.events-banner .custom-pager a {
  border: 1px solid #CDAB81;
  letter-spacing: 0.03em;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.events-banner .custom-pager i {
  line-height: 0;
}
.events-banner .custom-pager i path {
  fill: #ffffff;
}
.events-banner .fc-calendar-container {
  height: 450px;
  width: 100%;
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div, .events-banner .fc-calendar-container .fc-calendar .fc-row, .events-banner .fc-calendar-container .fc-calendar .fc-body {
  border: 0;
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div > span.fc-date {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  height: auto;
  text-align: center;
  top: 50%;
  left: 50%;
  text-shadow: none;
  color: #ffffff;
  bottom: auto;
  right: auto;
  -khtml-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.events-banner .fc-calendar-container .fc-calendar .fc-head {
  background: transparent;
  height: 72px;
  padding-top: 22px;
  font-weight: 700;
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div > span.fc-emptydate {
  color: #BDBDBD;
  opacity: 0.5;
}
.events-banner .fc-calendar-container .fc-calendar .fc-body {
  height: calc(100% - 72px);
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-today {
  background: transparent;
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-today::before {
  position: absolute;
  background-color: #CDAB81;
  border-radius: 50%;
  content: "";
  display: block;
  width: 63px;
  height: 63px;
  top: 50%;
  left: 50%;
  -khtml-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-today.fc-content::after {
  background-color: #ffffff;
}
.events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-content::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 9px;
  height: 9px;
  background: #CDAB81;
  border-radius: 50%;
  -khtml-transform: translate(-50%,0%);
  transform: translate(-50%,0%);
}
.events-banner .tooltip-inner {
  background-color: #CDAB81;
}
.events-banner .bs-tooltip-bottom .tooltip-arrow::before, .events-banner .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #CDAB81;
}
.events-banner .bs-tooltip-top .tooltip-arrow::before, .events-banner .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #CDAB81;
}
.events-banner .tooltip.show {
  opacity: 1;
}

@media only screen and (max-width : 991.98px) {
  .events-banner.banner .bg-img {
    bottom: 350px;
  }
  .banner.events-banner .text .row {
    min-height: 0px;
  }
  .banner.events-banner .text {
    margin-top: 300px;
    padding: 0;
  }
  .events-banner .month-year {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-right: 100px;
  }
  .events-banner .calendar-container {
    padding-right: 0;
  }
  .events-banner .month-year h1 {
    font-size: 28px;
  }
  .events-banner .custom-pager {
    top: 0;
  }
  .events-banner .calendar {
    background: #000;
    padding-right: 17px;
    padding-left: 17px;
    padding-top: 36px;
  }
  .events-banner .calendar-container {
    margin: 0 auto;
    max-width: 350px;
  }
  .events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-today::before {
    width: 41px;
    height: 41px;
  }
  .events-banner .fc-calendar-container .fc-calendar .fc-head {
    height: 58px;
  }
  .events-banner .fc-calendar-container {
    height: 315px;
  }
  .events-banner .fc-calendar-container .fc-calendar .fc-row > div.fc-content::after {
    width: 6px;
    height: 6px;
    bottom: 2px;
  }
}
#footer {
  margin-top: 70px;
}
#footer .footer-gradient {
  background: linear-gradient(90deg, #2A2671 0%, #CDAB81 100%);
  height: 13px;
}
#footer .footer-bg {
  padding: 50px 25px;
  background: linear-gradient(92.37deg, #040040 0.01%, #2A2671 100.01%);
}
#footer .inner-container {
  max-width: 1450px;
  margin: 0 auto;
}
#footer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  color: #ffffff;
}
#footer .left-text-col, #footer .right-text-col {
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 25%;
}
#footer .logo-col {
  padding-bottom: 30px;
  padding-right: 15px;
  max-width: 25%;
}
#footer .logo-col img {
  width: 100%;
}
#footer .sign-up-col {
  padding-top: 30px;
}
#footer .sign-up-col form {
  max-width: 400px;
  margin: auto;
}
#footer .sign-up-col input {
  width: 100%;
  border-radius: 23px;
  height: 36px;
  border: 1px solid transparent;
  outline: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 17px;
  color: #777777;
}
#footer .sign-up-col input::-moz-placeholder {
  color: #D7D2CB;
}
#footer .sign-up-col input::placeholder {
  color: #D7D2CB;
}
#footer .social-media-col {
  max-width: 50%;
  flex: 0 0 auto;
}
#footer .social-media-col.sign-up-enabled {
  max-width: 75%;
}
#footer .social-media-col ul {
  margin-bottom: 20px;
}
#footer .social-media-col li {
  margin-right: 3px;
  vertical-align: middle;
  line-height: 1;
}
#footer .social-media-col li a {
  width: 25px;
  height: 25px;
  border: 1px solid #CDAB81;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#footer .social-media-col p {
  font-size: 14px;
}
#footer .social-media-col svg path {
  fill: #CDAB81;
}
#footer .social-media-col svg circle {
  stroke: #CDAB81;
}
#footer .site-design-col {
  padding-left: 10px;
}
#footer .site-design-col.sign-up-enabled {
  max-width: 25%;
  padding-left: 0;
}
#footer .site-design-col p {
  font-size: 14px;
}
#footer .site-design-col i {
  display: inline-block;
  margin-top: -3px;
}

@media only screen and (max-width : 991.98px) {
  #footer {
    margin-top: 35px;
  }
  #footer .footer-gradient {
    height: 24px;
  }
  #footer .footer-bg {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 75px;
  }
  #footer .logo-col {
    text-align: center;
    max-width: 100%;
    padding-right: 0;
  }
  #footer .left-text-col, #footer .right-text-col {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
  }
  #footer .sign-up-col {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
  }
  #footer .site-design-col {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
  }
  #footer .social-media-col {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
    margin-top: 60px;
  }
  #footer .social-media-col.sign-up-enabled {
    max-width: 100%;
  }
  #footer .site-design-col.sign-up-enabled {
    max-width: 100%;
  }
  #footer .sign-up-col input {
    height: 47px;
  }
  #footer .social-media-col p {
    margin-bottom: 20px;
  }
  #footer .site-design-col p {
    margin-bottom: 20px;
  }
  #footer .sign-up-col {
    padding-top: 40px;
  }
}
#home {
  overflow: hidden;
}
#home .slider .owl-stage-outer {
  overflow: visible;
}
#home .slider .owl-video-play-icon {
  background: transparent;
}
#home .slider .slide {
  height: 56vw;
  background-size: cover;
  align-items: flex-end;
  text-align: center;
  max-height: calc(100vh - 123px);
  justify-content: center;
  min-height: 900px;
  background-color: #040040;
}
#home .slider .slide .col {
  max-width: 935px;
  padding-bottom: 200px;
}
#home .slider .slide .gradient-1, #home .slider .slide .gradient-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#home .slider .slide .gradient-1 {
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 0%, rgba(0, 0, 0, 0) 36.68%, rgba(0, 0, 0, 0.72) 100%);
}
#home .slider .slide h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: #CDAB81;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#home .slider .slide h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 3px 18px #000101;
  margin-bottom: 20px;
}
#home .slider.headline-style .upper .bg {
  display: none;
}
#home .slider.headline-style .scroll-to-discover {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -khtml-transform: translate(-50%,0);
  transform: translate(-50%,0);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #CDAB81;
  text-transform: uppercase;
}
#home .slider.headline-style .scroll-to-discover .bg {
  display: none;
}
#home .slider.headline-style .scroll-to-discover .arrow-down {
  height: 104px;
  width: 1px;
  background-color: #CDAB81;
  margin: 15px auto 0 auto;
}
#home .slider.headline-style .scroll-to-discover .arrow-down i {
  display: none;
}
#home .slider.billboard-style .slide.justify-content-right {
  justify-content: right;
}
#home .slider.billboard-style .slide.justify-content-left {
  justify-content: left;
}
#home .slider.billboard-style .slide .col {
  max-width: 591px;
  padding: 0;
}
#home .slider.billboard-style .slide .upper {
  padding: 50px;
  position: relative;
}
#home .slider.billboard-style .slide .upper .abs.bg {
  background: rgba(4, 0, 64, 0.8);
}
#home .slider.billboard-style .slide h4 {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
}
#home .slider.billboard-style .slide h1 {
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
}
#home .slider.billboard-style .slide a {
  position: relative;
}
#home .slider.billboard-style .slide .gradient-1 {
  display: none;
}
#home .slider.billboard-style .slide .scroll-to-discover {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  color: #2A2671;
  padding: 30px 15px 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
#home .slider.billboard-style .slide .scroll-to-discover .abs.bg {
  background-color: #CDAB81;
}
#home .slider .video-slide {
  background-color: transparent;
}
#home .slider .video-slide iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#home .slider .video-slide .item-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}
#home .pull-quote {
  text-align: center;
  padding: 80px 25px;
}
#home .pull-quote img {
  margin-bottom: 30px;
}
#home .pull-quote h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  color: #CDAB81;
}
#home .introduction-module {
  z-index: 1;
  position: relative;
  padding: 0 25px;
}
#home .introduction-module ~ .quicklinks {
  margin-top: -70px;
}
#home .introduction-module .inner-container {
  max-width: 1450px;
  margin: 0 auto;
}
#home .introduction-module .text-col {
  max-width: 575px;
  padding-left: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
}
#home .introduction-module .text-col h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  color: #050058;
  margin-bottom: 25px;
}
#home .introduction-module .text-col .redactor-simple {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #777777;
}
#home .introduction-module .text-col .redactor-simple p {
  margin-bottom: 25px;
}
#home .quicklinks {
  text-align: center;
  padding: 250px 25px;
  background-size: cover;
  position: relative;
  background-color: #040040;
}
#home .quicklinks ~ .latest-news::before {
  content: "";
  width: 1px;
  height: 104px;
  background-color: #CDAB81;
  top: -50px;
  left: 50%;
  -khtml-transform: translate(-50%,0);
  transform: translate(-50%,0);
  display: block;
  position: absolute;
}
#home .quicklinks .overlay-1 {
  background: linear-gradient(262.52deg, rgba(4, 0, 64, 0.85) -0.02%, rgba(8, 1, 103, 0.85) 99.99%);
}
#home .quicklinks .inner-container {
  max-width: 1450px;
  margin: 0 auto;
  position: relative;
}
#home .quicklinks .col {
  border-right: 1px solid #CDAB81;
  padding: 25px;
}
#home .quicklinks .col:last-child {
  border-right: 0;
}
#home .quicklinks .col:hover span.down-arrow {
  background-color: #CDAB81;
}
#home .quicklinks h4 {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #CDAB81;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#home .quicklinks h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 25px;
}
#home .quicklinks span.down-arrow {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #CDAB81;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
#home .latest-news {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}
#home .latest-news ~ .upcoming-events::before {
  content: "";
  width: 1px;
  height: 104px;
  background-color: #CDAB81;
  top: -50px;
  left: 50%;
  -khtml-transform: translate(-50%,0);
  transform: translate(-50%,0);
  display: block;
  position: absolute;
}
#home .latest-news .news-slider {
  position: static;
  max-width: 550px;
}
#home .latest-news .owl-stage-outer {
  overflow: visible;
}
#home .latest-news .inner-container {
  max-width: 1800px;
  margin: auto;
  padding-bottom: 60px;
}
#home .latest-news .inner-container h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #050058;
  margin-bottom: 50px;
}
#home .latest-news .inner-container .owl-stage-outer {
  border-right: 1px solid transparent;
}
#home .latest-news .inner-container .owl-item:last-child .single-news:not(:focus) {
  border-right: 1px solid transparent;
}
#home .latest-news .inner-container .single-news {
  padding: 0 17px 40px 17px;
  border-right: 1px solid #CDAB81;
  display: block;
}
#home .latest-news .inner-container .single-news .img {
  height: 400px;
  background-size: cover;
  background-color: #040040;
}
#home .latest-news .inner-container .single-news .date {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045em;
  color: #777777;
  padding: 25px 25px 0 25px;
  text-transform: uppercase;
}
#home .latest-news .inner-container .single-news .news-headline {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #2A2671;
  padding: 0 25px;
}
#home .latest-news .inner-container .owl-nav {
  text-align: right;
  position: absolute;
  right: 15%;
  margin-top: 55px;
}
#home .latest-news .inner-container .owl-nav button {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#home .latest-news .inner-container .owl-nav button:hover {
  background-color: #CDAB81;
}
#home .latest-news .newsletter-btn-outer {
  margin-top: 50px;
}
#home .latest-news .newsletter-btn {
  background: #CDAB81;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  border-radius: 30px;
  padding: 15px 40px;
}
#home .latest-news .newsletter-btn:hover {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
}
#home .latest-news .newsletter-btn i {
  margin-left: 25px;
  line-height: 0;
}
#home .upcoming-events {
  padding: 100px 25px;
  background-size: cover;
  position: relative;
  background-color: #040040;
}
#home .upcoming-events .inner-container {
  max-width: 1900px;
  margin: auto;
  padding-bottom: 50px;
}
#home .upcoming-events h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  margin-bottom: 150px;
}
#home .upcoming-events .owl-stage-outer {
  overflow: visible;
}
#home .upcoming-events .events-slider {
  width: 100%;
  max-width: 550px;
  position: static;
}
#home .upcoming-events .single-event {
  display: block;
  padding: 0 15px;
}
#home .upcoming-events .single-event .outer-row {
  border: 1px solid #CDAB81;
}
#home .upcoming-events .single-event .date {
  text-align: center;
  padding: 15px 5px;
  max-width: 94px;
}
#home .upcoming-events .single-event .date .bg {
  background-color: #040040;
}
#home .upcoming-events .single-event .date h2 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.1;
  color: #CDAB81;
  margin-bottom: 0;
}
#home .upcoming-events .single-event .date p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0;
}
#home .upcoming-events .single-event .event-detail {
  padding: 10px 25px;
}
#home .upcoming-events .single-event .event-detail .bg {
  background-color: rgba(255, 255, 255, 0.9);
}
#home .upcoming-events .single-event .event-detail h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}
#home .upcoming-events .single-event .event-detail p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  color: #777777;
}
#home .upcoming-events .owl-nav {
  text-align: right;
  position: absolute;
  right: 15%;
  margin-top: 55px;
}
#home .upcoming-events .owl-nav button {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid #CDAB81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#home .upcoming-events .owl-nav button:hover {
  background-color: #CDAB81;
}
#home .upcoming-events .owl-nav button svg path {
  fill: #ffffff;
}
#home .upcoming-events .calendar-btn-outer {
  margin-top: 50px;
}
#home .upcoming-events .calendar-btn {
  background: #CDAB81;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  border-radius: 30px;
  padding: 15px 40px;
}
#home .upcoming-events .calendar-btn:hover {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
}
#home .upcoming-events .calendar-btn i {
  margin-left: 25px;
  height: 30px;
  display: inline-block;
}
#home .full-text-editor {
  padding: 50px 25px;
}
#home .full-text-editor .inner-container {
  max-width: 950px;
  margin: 0 auto;
}

@media only screen and (max-width : 1499.98px) {
  #home .introduction-module .inner-container {
    max-width: 1250px;
  }
  #home .quicklinks .col .inline-block {
    max-width: 322px;
  }
  #home .introduction-module .img-col {
    max-width: 42%;
  }
  #home .introduction-module .text-col {
    margin-bottom: 75px;
  }
  #home .latest-news .news-slider {
    max-width: 440px;
  }
  #home .latest-news .inner-container .single-news .img {
    height: 300px;
  }
  #home .latest-news {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 40px;
    padding-top: 70px;
  }
  #home .latest-news .inner-container .single-news {
    padding-left: 12px;
    padding-right: 12px;
  }
  #home .latest-news .inner-container .owl-nav {
    right: 3%;
  }
  #home .upcoming-events .owl-nav {
    right: 3%;
  }
  #home .upcoming-events {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width : 991.98px) {
  #home .slider.billboard-style .slide .upper {
    padding: 30px 17px;
  }
  #home .slider.billboard-style .slide h4 {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #home .slider.billboard-style .slide h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  #home .slider .slide {
    min-height: calc(100vh - 85px);
    max-height: none;
  }
  #home .slider .video-slide iframe {
    height: 100%;
  }
  #home .slider.headline-style .slide h1 {
    font-size: 32px;
  }
  #home .slider .slide h4 {
    font-size: 14px;
  }
  #home .slider .slide .col {
    padding-bottom: 110px;
    padding-left: 17px;
    padding-right: 17px;
  }
  #home .pull-quote h2 {
    font-size: 26px;
  }
  #home .pull-quote {
    padding: 30px 17px;
  }
  #home .introduction-module .img-col {
    max-width: 100%;
    flex: 0 0 auto;
    text-align: center;
  }
  #home .introduction-module .text-col {
    padding-left: 0;
    margin-top: 25px;
    margin-bottom: 50px;
  }
  #home .introduction-module {
    padding: 0 17px;
  }
  #home .introduction-module ~ .quicklinks {
    margin-top: 0;
  }
  #home .introduction-module .text-col h2 {
    font-size: 32px;
  }
  #home .introduction-module .text-col .redactor-styles {
    font-size: 18px;
  }
  #home .quicklinks .col {
    flex: 0 0 auto;
    border: 0;
    position: relative;
  }
  #home .quicklinks .col::before {
    content: "";
    display: block;
    width: 93px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #CDAB81;
  }
  #home .quicklinks .col:first-child::before {
    display: none;
  }
  #home .quicklinks {
    padding: 25px;
  }
  #home .quicklinks h2 {
    font-size: 22px;
  }
  #home .quicklinks .col {
    padding: 25px 0;
  }
  #home .quicklinks .col .inline-block {
    max-width: 180px;
  }
  #home .quicklinks ~ .latest-news::before {
    display: none;
  }
  #home .latest-news .inner-container h1 {
    font-size: 26px;
  }
  #home .latest-news {
    padding: 40px 8px;
  }
  #home .latest-news .inner-container .single-news {
    padding-left: 8px;
    padding-right: 8px;
    border-right: 0;
    padding-bottom: 10px;
  }
  #home .latest-news .news-slider {
    max-width: 325px;
  }
  #home .latest-news .inner-container .single-news .img {
    height: 222px;
  }
  #home .latest-news .inner-container .single-news .news-headline {
    font-size: 22px;
    padding: 0;
  }
  #home .latest-news .inner-container .single-news .date {
    padding-left: 0;
    padding-right: 0;
  }
  #home .latest-news .inner-container .owl-nav {
    right: 0;
  }
  #home .latest-news .newsletter-btn-outer {
    text-align: left !important;
    padding-left: 8px;
  }
  #home .latest-news .inner-container {
    padding-bottom: 20px;
  }
  #home .latest-news ~ .upcoming-events::before {
    display: none;
  }
  #home .upcoming-events {
    padding: 40px 13px;
  }
  #home .upcoming-events h1 {
    font-size: 26px;
    margin-bottom: 40px;
  }
  #home .upcoming-events .events-slider {
    max-width: 303px;
  }
  #home .upcoming-events .single-event .date {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: left;
    padding: 10px 20px;
  }
  #home .upcoming-events .single-event .event-detail {
    flex: 0 0 auto;
    max-width: 100%;
  }
  #home .upcoming-events .calendar-btn-outer {
    text-align: left !important;
    padding-left: 3px;
  }
  #home .upcoming-events .owl-nav {
    right: 0;
  }
}
.news-article-header {
  margin-bottom: 70px;
}
.news-article-header .blue-bg {
  padding: 170px 25px 60px 25px;
  background-color: #040040;
}
.news-article-header .inner-container {
  max-width: 1600px;
  margin: auto;
}
.news-article-header .news-title p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #CDAB81;
}
.news-article-header .news-title h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  color: #CDAB81;
}
.news-article-header .author {
  text-align: right;
  padding-right: 50px;
}
.news-article-header .author .inline-block {
  text-align: left;
}
.news-article-header .author .img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
.news-article-header .author .about {
  display: inline-block;
  vertical-align: middle;
  padding-left: 25px;
}
.news-article-header .author .about h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #CDAB81;
}
.news-article-header .author .about p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #CDAB81;
  margin-bottom: 0;
}
.news-article-header .header-image {
  background-size: cover;
  height: 828px;
  background-color: #040040;
}

.news-article-footer {
  position: relative;
  padding: 35px 10px;
}
.news-article-footer .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 29%;
  background-color: #F9F8FA;
  z-index: -1;
}
.news-article-footer .col {
  max-width: 345px;
  padding: 15px;
}
.news-article-footer .col:hover .innr .gradient {
  opacity: 0;
}
.news-article-footer .col:hover .bg {
  -khtml-transform: scale(1.2);
  transform: scale(1.2);
}
.news-article-footer .col .innr {
  min-height: 396px;
  position: relative;
  overflow: hidden;
}
.news-article-footer .col .innr .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #040040;
  transition: all 5s ease;
}
.news-article-footer .col .innr .gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 47.4%, rgb(4, 0, 64) 86.98%);
}
.news-article-footer .col .innr .text {
  padding: 15px;
  text-align: center;
  position: relative;
}
.news-article-footer .col .innr .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  text-transform: uppercase;
}
.news-article-footer .col .innr .text h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

.page-content ~ .news-article-header .blue-bg {
  padding-top: 30px;
}

#news-article-page .inner-container {
  max-width: 1300px;
}

@media only screen and (max-width : 991.98px) {
  .news-article-header:first-child .blue-bg {
    padding-top: 150px;
  }
  .news-article-header .blue-bg {
    padding: 100px 17px 20px 17px;
  }
  .news-article-header .author {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: left;
    margin-top: 10px;
    padding-right: 0;
  }
  .news-article-header .news-title {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .news-article-header .news-title p {
    font-size: 14px;
  }
  .news-article-header .news-title h1 {
    font-size: 32px;
  }
  .news-article-header .author .img {
    width: 70px;
    height: 70px;
  }
  .news-article-header .author .about h3 {
    font-size: 15px;
  }
  .news-article-header .author .about p {
    font-size: 15px;
  }
  .news-article-header .author .about {
    padding-left: 5px;
  }
  .news-article-header .header-image {
    height: 486px;
  }
  .news-article-header {
    margin-bottom: 0;
  }
  .news-article-footer {
    padding: 20px 8px;
  }
}
@media only screen and (max-width : 767.98px) {
  .news-article-footer .col {
    max-width: 100%;
    flex: 0 0 auto;
    padding: 8px;
  }
  .news-article-footer .col .innr {
    min-height: 296px;
  }
  .news-article-footer .col .innr .text h2 {
    font-size: 24px;
  }
  .news-article-footer .col .innr .text p {
    font-size: 15px;
  }
}
#latest-news .inner-container {
  max-width: 1300px;
  margin: auto;
}
#latest-news .search-box {
  padding: 50px 25px;
  margin-top: 35px;
}
#latest-news .search-box .search-round-container {
  position: relative;
  max-width: 256px;
  margin: auto;
}
#latest-news .search-box .search-round-container input {
  border: 1px solid #CDAB81;
  border-radius: 17px;
  height: 34px;
  width: 100%;
  padding-left: 37px;
  padding-right: 15px;
  color: #777777;
}
#latest-news .search-box .search-round-container input::-moz-placeholder {
  color: #D7D2CB;
}
#latest-news .search-box .search-round-container input::placeholder {
  color: #D7D2CB;
}
#latest-news .search-box .search-round-container button {
  position: absolute;
  left: 11px;
  top: 4px;
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
}
#latest-news .search-box .search-round-container button svg {
  width: 18px;
  height: 18px;
}
#latest-news .pagination {
  text-align: right;
  position: relative;
  margin-top: 70px;
  font-size: 0;
}
#latest-news .pagination .bg-white {
  display: inline-block;
  background-color: #ffffff;
  padding: 0 15px 0 30px;
}
#latest-news .pagination::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #CDAB81;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 0;
  z-index: -1;
}
#latest-news .pagination a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  width: 40px;
  height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
#latest-news .pagination .next, #latest-news .pagination .prev {
  margin-left: 10px;
}
#latest-news .pagination .next .lh0, #latest-news .pagination .prev .lh0 {
  line-height: 0;
}
#latest-news .pagination .next.disabled span, #latest-news .pagination .prev.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}
#latest-news .pagination .prev, #latest-news .pagination .next, #latest-news .pagination .current {
  border: 1px solid #CDAB81;
}

@media only screen and (max-width : 991.98px) {
  #latest-news .search-box {
    padding: 17px;
    margin-top: 8px;
  }
  #latest-news .news-masonry {
    padding-left: 8px;
    padding-right: 8px;
  }
}
#newsletter .featured-container {
  max-width: 1400px;
  margin: 70px auto 0 auto;
}
#newsletter .featured-container .img {
  height: 616px;
  max-width: 80%;
  flex: 0 0 auto;
  background-size: cover;
}
#newsletter .featured-container .text {
  background-color: #050058;
  padding: 50px 40px 50px 70px;
  margin-right: -13%;
  position: relative;
  margin-bottom: 20px;
}
#newsletter .featured-container .text::before {
  content: "";
  display: block;
  position: absolute;
  left: -19px;
  width: 38px;
  bottom: 0;
  top: 60px;
  background-color: #CDAB81;
}
#newsletter .featured-container .text h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
  color: #ffffff;
}
#newsletter .featured-container .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #CDAB81;
  margin-bottom: 25px;
}
#newsletter .inner-container {
  max-width: 1300px;
  margin: auto;
}
#newsletter .news-masonry {
  margin-top: 70px;
}
#newsletter .news-masonry .single-news .text p {
  display: none;
}

@media only screen and (max-width : 991.98px) {
  #newsletter .news-masonry {
    margin-top: 15px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .news-masonry .single-news {
    max-width: 50%;
    padding: 8px;
  }
  .news-masonry .single-news .innr {
    min-height: 341px;
    padding: 17px;
  }
  .news-masonry .single-news:nth-child(9n+2) .row, .news-masonry .single-news:nth-child(9n+7) .row, .news-masonry .single-news:nth-child(9n) .row {
    min-height: 341px;
  }
  .news-masonry .single-news:nth-child(9n+5), .news-masonry .single-news:nth-child(9n+8) {
    margin-top: 0;
  }
  .news-masonry .single-news .text h1 {
    font-size: 24px;
  }
  #newsletter .featured-container .img {
    order: 1;
  }
  #newsletter .featured-container .text {
    order: 2;
  }
  #newsletter .featured-container {
    margin-top: 30px;
    padding-left: 17px;
  }
  #newsletter .featured-container .img {
    max-width: calc(100% - 17px);
    height: 300px;
  }
  #newsletter .featured-container .text {
    margin-right: 0;
    padding: 20px 20px 20px 40px;
    margin-left: 20px;
  }
  #newsletter .featured-container .text::before {
    max-width: 22px;
    left: -11px;
  }
  #newsletter .featured-container .text h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width : 767.98px) {
  .news-masonry .single-news {
    max-width: 100%;
  }
  #newsletter .featured-container .img {
    height: 228px;
  }
}
#previous-editions .inner-container {
  max-width: 1300px;
  margin: 70px auto;
}
#previous-editions .current-edition {
  padding: 0 15px;
}
#previous-editions .current-edition .current-edition-btn {
  background: #CDAB81;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  border-radius: 30px;
  padding: 15px 25px;
}
#previous-editions .current-edition .current-edition-btn i {
  margin-left: 20px;
  line-height: 0;
}
#previous-editions .filter-by-year {
  max-width: 36%;
  padding: 0 15px;
}
#previous-editions .filter-by-year .inline-block {
  text-align: left;
}
#previous-editions .filter-by-year h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.035em;
  color: #2A2671;
  margin-bottom: 20px;
}
#previous-editions .filter-by-year select {
  border: 0;
  border-bottom: 1px solid #CDAB81;
  border-radius: 0;
  padding: 5px 0;
  width: 100%;
  outline: 0;
  color: #CDAB81;
}
#previous-editions .year-group .year-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 0 15px;
}
#previous-editions .year-group .year-heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  height: 1px;
  background-color: #CDAB81;
  z-index: -1;
}
#previous-editions .year-group .year-heading span {
  background-color: #ffffff;
  display: inline-block;
  padding-right: 35px;
}
#previous-editions .year-group .single-edition {
  padding: 15px;
  flex: 0 0 auto;
  max-width: 33.333%;
}
#previous-editions .year-group .single-edition:hover .gradient {
  opacity: 0;
}
#previous-editions .year-group .single-edition:hover .bg {
  -khtml-transform: scale(1.2);
  transform: scale(1.2);
}
#previous-editions .year-group .single-edition .innr {
  min-height: 400px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 25px;
  background-color: #040040;
  overflow: hidden;
}
#previous-editions .year-group .single-edition .bg {
  background-size: cover;
  transition: all 5s ease;
}
#previous-editions .year-group .single-edition .gradient {
  background: linear-gradient(180deg, rgba(4, 0, 64, 0) 28.35%, rgb(4, 0, 64) 67.65%);
  opacity: 0.8;
}
#previous-editions .year-group .single-edition h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}
#previous-editions .year-group .single-edition p {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #CDAB81;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media only screen and (max-width : 991.98px) {
  #previous-editions .year-group .single-edition {
    max-width: 50%;
    padding: 8px;
  }
  #previous-editions .inner-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #previous-editions .filter-by-year h3 {
    font-size: 18px;
  }
  #previous-editions .year-group .year-heading::after {
    right: -8px;
  }
  #previous-editions .year-group .year-heading {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  #previous-editions .year-group {
    padding: 0 8px;
  }
  #previous-editions .year-group .single-edition .innr {
    min-height: 341px;
    padding: 17px;
  }
  #previous-editions .year-group .single-edition h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width : 767.98px) {
  #previous-editions .filter-by-year {
    margin-top: 30px;
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0 17px;
  }
  #previous-editions .year-group .single-edition {
    flex: 0 0 auto;
    max-width: 100%;
  }
  #previous-editions .current-edition {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
  }
}
#employment-list .open-positions .employment-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 10px;
}
#employment-list .open-positions .position {
  flex: 0 0 auto;
  max-width: 33.3333%;
  padding: 15px;
}
#employment-list .open-positions .inner {
  min-height: 400px;
  background: linear-gradient(151.53deg, #2A2671 23.34%, #040040 55.71%);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 25px 20px;
}
#employment-list .open-positions .upper {
  align-self: flex-start;
  padding-top: 50px;
}
#employment-list .open-positions .upper h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}
#employment-list .open-positions .lower {
  padding-top: 20px;
  align-self: flex-end;
  border-top: 1px solid #CDAB81;
  color: #CDAB81;
  margin-top: 20px;
}
#employment-list .open-positions .lower h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
#employment-list .open-positions .lower p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

@media only screen and (max-width : 991.98px) {
  #employment-list .open-positions .employment-container {
    padding: 0 8px;
  }
  #employment-list .open-positions .position {
    max-width: 50%;
    padding: 8px;
  }
  #employment-list .open-positions .inner {
    min-height: 341px;
  }
  #employment-list .open-positions .upper h1 {
    font-size: 24px;
  }
  #employment-list .open-positions .lower p {
    margin-bottom: 0;
  }
  #employment-list .open-positions .upper {
    padding-top: 5px;
  }
}
@media only screen and (max-width : 767.98px) {
  #employment-list .open-positions .position {
    max-width: 100%;
  }
}
#employment-detail .outer-container {
  max-width: 1920px;
  margin: auto;
}
#employment-detail .applicant-instructions {
  flex: 0 0 auto;
  max-width: 66%;
  padding: 80px 80px 80px 25px;
}
#employment-detail .applicant-instructions .inner-container {
  max-width: 851px;
  margin-left: auto;
}
#employment-detail .employment-position-content {
  flex: 0 0 auto;
  max-width: 34%;
  overflow: hidden;
  padding: 80px 25px;
  background-color: #EFEFEF;
}
#employment-detail .web-form {
  margin-top: 0;
}

@media only screen and (max-width : 991.98px) {
  #employment-detail .applicant-instructions {
    max-width: 100%;
    padding: 40px 17px 30px 17px;
  }
  #employment-detail .applicant-instructions .inner-container {
    max-width: 100%;
  }
  #employment-detail .employment-position-content {
    max-width: 100%;
    padding: 25px 17px;
  }
  #employment-detail .page-content {
    margin-top: 0;
  }
  #employment-detail .page-content .web-form {
    margin-top: 0;
  }
}
#events .events-container {
  max-width: 1350px;
  padding: 30px 25px;
  margin: auto;
}
#events .month-selector {
  position: relative;
  margin: 50px 0;
  padding: 0 15px;
}
#events .month-selector::before {
  content: "";
  display: block;
  height: 1px;
  top: 50%;
  position: absolute;
  left: 15px;
  right: 15px;
  background-color: #CDAB81;
  z-index: -1;
}
#events .month-selector .month-year h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #2A2671;
  padding-right: 50px;
  background-color: #ffffff;
  display: inline-block;
  margin-bottom: 0;
}
#events .month-selector .next-prev {
  text-align: right;
}
#events .month-selector .next-prev .next-prev-bg {
  padding-left: 30px;
  background-color: #ffffff;
  display: inline-block;
}
#events .month-selector .next-prev a {
  border: 1px solid #CDAB81;
  letter-spacing: 0.03em;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
#events .month-selector .next-prev i {
  line-height: 0;
}
#events .no-events-found {
  padding: 15px;
  display: none;
}
#events .no-events-found p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #040040;
  margin-bottom: 0;
}
#events .single-event {
  padding: 15px;
  text-align: center;
  flex: 0 0 auto;
  max-width: 33.3333%;
}
#events .single-event .innr {
  border: 1px solid #CDAB81;
}
#events .single-event .upper {
  background-color: #040040;
  padding: 15px;
}
#events .single-event .lower {
  padding: 25px 15px;
}
#events .single-event .date {
  font-size: 82px;
  font-weight: 400;
  line-height: 1.1;
  color: #CDAB81;
  margin-bottom: 0;
}
#events .single-event .month {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.045em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}
#events .single-event .title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #040040;
  margin-bottom: 30px;
}
#events .single-event .time-location {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #777777;
}
#events .single-event .time-location p {
  margin-bottom: 10px;
}
#events .single-event a {
  margin-top: 20px;
}
#events .single-event .down-arrow {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #CDAB81;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
#events .single-event .down-arrow path {
  fill: #2A2671;
}
#events .single-event span.more {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #CDAB81;
  text-transform: uppercase;
  margin-top: 5px;
}
#events .custom-modal .modal-content {
  background-color: transparent;
  height: 100%;
}
#events .custom-modal .mt {
  margin: auto 0;
  background-color: #ffffff;
}
#events .custom-modal .modal-dialog {
  max-width: 1382px;
  margin: auto;
  padding: 25px;
  height: 100%;
}
#events .custom-modal .left-col {
  max-width: 400px;
  text-align: center;
}
#events .custom-modal .left-col .date-month {
  background-color: #040040;
  padding: 15px;
}
#events .custom-modal .left-col .date-month .date {
  font-size: 82px;
  font-weight: 400;
  line-height: 1.1;
  color: #CDAB81;
  margin-bottom: 0;
}
#events .custom-modal .left-col .date-month .month {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.045em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}
#events .custom-modal .left-col .time-location {
  line-height: 1.4;
  color: #777777;
  font-size: 22px;
  font-weight: 400;
  padding: 50px 25px;
}
#events .custom-modal .left-col .time-location p {
  margin-bottom: 10px;
}
#events .custom-modal .left-col .feature-image {
  background-size: cover;
  height: 375px;
  background-color: #040040;
}
#events .custom-modal .right-col {
  padding: 50px 25px;
  position: relative;
}
#events .custom-modal .right-col .close-btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #CDAB81;
  border-radius: 18px;
  padding: 7px 20px;
  color: #ffffff;
  position: absolute;
  top: 30px;
  right: 30px;
  text-transform: uppercase;
}
#events .custom-modal .right-col .close-btn .close {
  margin-left: 5px;
}
#events .custom-modal .right-col .inner-container {
  max-width: 767px;
  margin: auto;
}
#events .custom-modal .right-col .title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  color: #040040;
  padding-right: 80px;
  margin-bottom: 30px;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-backdrop.show {
  opacity: 1;
}

.tooltip .tooltip-inner {
  text-align: left;
}

@media only screen and (max-width : 991.98px) {
  #events .custom-modal .mt {
    margin-top: 0;
  }
  #events .events-container {
    padding: 5px 8px;
  }
  #events .single-event {
    padding: 8px;
  }
  #events .single-event {
    max-width: 50%;
  }
  #events .month-selector .month-year h1 {
    font-size: 28px;
    padding-right: 0;
  }
  #events .month-selector .next-prev {
    max-width: 100px;
  }
  #events .month-selector::before {
    display: none;
  }
  #events .month-selector .next-prev .next-prev-bg {
    padding-left: 0;
  }
  #events .month-selector {
    padding: 0 8px;
    margin: 25px 0;
  }
  #events .single-event .date {
    font-size: 62px;
  }
  #events .single-event .month {
    font-size: 18px;
  }
  #events .single-event .title {
    margin-bottom: 25px;
  }
  #events .single-event .lower {
    padding: 15px;
  }
  #events .no-events-found {
    padding: 15px 8px;
  }
  #events .no-events-found p {
    font-size: 18px;
  }
  #events .custom-modal .right-col .close-btn .close {
    margin-left: 0;
  }
  #events .custom-modal .right-col .close-btn {
    top: -10px;
    right: -10px;
    padding: 0;
    font-size: 16px;
    width: 37px;
    height: 37px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #events .custom-modal .left-col {
    max-width: 100%;
    flex: 0 0 auto;
  }
  #events .custom-modal .right-col {
    max-width: 100%;
    flex: 0 0 auto;
  }
  #events .custom-modal .right-col {
    position: static;
  }
  #events .custom-modal .left-col .date-month .date {
    font-size: 62px;
  }
  #events .custom-modal .left-col .date-month .month {
    font-size: 18px;
  }
  #events .custom-modal .left-col .time-location .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #events .custom-modal .left-col .time-location {
    padding: 17px;
    font-size: 15px;
  }
  #events .custom-modal .left-col .feature-image {
    height: 206px;
  }
  #events .custom-modal .right-col .title {
    padding-right: 0;
    font-size: 28px;
  }
  #events .custom-modal .right-col {
    padding: 20px 17px;
  }
  #events .custom-modal .page-content {
    margin-top: 0;
  }
  #events .page-content .web-form {
    padding: 0;
  }
}
@media only screen and (max-width : 767.98px) {
  #events .single-event {
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map*/