@charset "UTF-8";
/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.

@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.

@returns {List} A list of converted values.
*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*!
 * Bootstrap v4.3.0 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #a6652f;
  --secondary: #7bccc6;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(20, 15, 10, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffffff;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #a6652f;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(106.3802816901, 64.7253521127, 30.1197183099);
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

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

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(20, 15, 10, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

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

.list-unstyled, .mobile-menu ul, .main-navigation ul {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  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: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #ffffff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1145px;
  }
}

.container--wide {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container--wide {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container--wide {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container--wide {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container--wide {
    max-width: 1520px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 28px + 2px);
  padding: 14px 1.5625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #a6652f;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: rgb(217.5985915493, 165.8732394366, 122.9014084507);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(166, 101, 47, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(14px + 1px);
  padding-bottom: calc(14px + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 10px;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 28px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 7px);
  background-size: calc(0.75em + 14px) calc(0.75em + 14px);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 28px);
  background-position: top calc(0.375em + 7px) right calc(0.375em + 7px);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc((1em + 28px) * 3 / 4 + 2.5625rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.5625rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #ffffff no-repeat center right 2.5625rem/calc(0.75em + 14px) calc(0.75em + 14px);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 28px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 7px);
  background-size: calc(0.75em + 14px) calc(0.75em + 14px);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 28px);
  background-position: top calc(0.375em + 7px) right calc(0.375em + 7px);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em + 28px) * 3 / 4 + 2.5625rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.5625rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #ffffff no-repeat center right 2.5625rem/calc(0.75em + 14px) calc(0.75em + 14px);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 14px 1.5625rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #a6652f;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 2.5625rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid rgba(20, 15, 10, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(20, 15, 10, 0.03);
  border-bottom: 1px solid rgba(20, 15, 10, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(20, 15, 10, 0.03);
  border-top: 1px solid rgba(20, 15, 10, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card .card-header {
  margin-bottom: -1px;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid rgba(20, 15, 10, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #a6652f;
  border-color: #a6652f;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}
.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: rgb(95.92, 59.72, 29.24);
  background-color: rgb(230.08, 211.88, 196.76);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(95.92, 59.72, 29.24);
  background-color: rgb(222.4385858586, 198.6577777778, 178.9014141414);
}
.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(95.92, 59.72, 29.24);
  border-color: rgb(95.92, 59.72, 29.24);
}

.list-group-item-secondary {
  color: rgb(73.56, 113.28, 107.76);
  background-color: rgb(218.04, 240.72, 239.04);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(73.56, 113.28, 107.76);
  background-color: rgb(199.646557377, 233.613442623, 231.0973770492);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(73.56, 113.28, 107.76);
  border-color: rgb(73.56, 113.28, 107.76);
}

.list-group-item-success {
  color: rgb(30.4, 94.04, 40.68);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(30.4, 94.04, 40.68);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(30.4, 94.04, 40.68);
  border-color: rgb(30.4, 94.04, 40.68);
}

.list-group-item-info {
  color: rgb(21.56, 91.44, 100.48);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(21.56, 91.44, 100.48);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(21.56, 91.44, 100.48);
  border-color: rgb(21.56, 91.44, 100.48);
}

.list-group-item-warning {
  color: rgb(142.2, 107.56, 8.44);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(142.2, 107.56, 8.44);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(142.2, 107.56, 8.44);
  border-color: rgb(142.2, 107.56, 8.44);
}

.list-group-item-danger {
  color: rgb(124, 34.76, 40.68);
  background-color: rgb(245.2, 198.44, 202.92);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(124, 34.76, 40.68);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(124, 34.76, 40.68);
  border-color: rgb(124, 34.76, 40.68);
}

.list-group-item-light {
  color: rgb(138.56, 136.68, 134.8);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(138.56, 136.68, 134.8);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(138.56, 136.68, 134.8);
  border-color: rgb(138.56, 136.68, 134.8);
}

.list-group-item-dark {
  color: rgb(36.64, 37.36, 38.08);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(36.64, 37.36, 38.08);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(36.64, 37.36, 38.08);
  border-color: rgb(36.64, 37.36, 38.08);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #140f0a;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.5;
}
.close:hover {
  color: #140f0a;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-secondary {
  border-color: #7bccc6 !important;
}

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

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

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

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

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

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

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

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

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

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

.rounded-right {
  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-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

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

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

.flex-row {
  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-wrap {
  flex-wrap: wrap !important;
}

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

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

.flex-fill {
  flex: 1 1 auto !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;
}

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

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

@media (min-width: 576px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
  .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;
  }
}
@media (min-width: 768px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
  .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;
  }
}
@media (min-width: 992px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
  .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;
  }
}
@media (min-width: 1200px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
  .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;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

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

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

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

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

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

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

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

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

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

.shadow-none {
  box-shadow: none !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;
}

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

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

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

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

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

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

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

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

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

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

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

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

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

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

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

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

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

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

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

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

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

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

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

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

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

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

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

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #a6652f !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(106.3802816901, 64.7253521127, 30.1197183099) !important;
}

.text-secondary {
  color: #7bccc6 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(69.8114754098, 180.6885245902, 172.4754098361) !important;
}

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

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

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

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

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

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

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

.text-black-50 {
  color: rgba(20, 15, 10, 0.5) !important;
}

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

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

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

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #140f0a;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #ffffff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.behave-as-bg, .fc-video .video__overlay, .fc-video .video__wrapper .vimeo-player, .behave-as-bg img, .fc-video .video__overlay img, .fc-video .video__wrapper .vimeo-player img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.no-gutters-mobile {
  padding: 0;
}
@media (min-width: 992px) {
  .no-gutters-mobile {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger:focus {
  outline: 0;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
}
.hamburger.is-active .hamburger-inner::after {
  width: 24px;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #FFF;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
  width: 12px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*!
 * Mmenu Light v3.0.2
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  /** Width for the drawer. */
  --mm-ocd-width: 80%;
  /** Min-width for the drawer. */
  --mm-ocd-min-width: 200px;
  /** Max-width for the drawer. */
  --mm-ocd-max-width: 440px;
}

body.mm-ocd-opened {
  overflow-y: hidden;
  overscroll-behavior: none;
}

.mm-ocd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  transition-property: bottom, background-color;
  transition-duration: 0s, 0.3s;
  transition-timing-function: ease;
  transition-delay: 0.45s, 0.15s;
}
.mm-ocd--open {
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  transition-delay: 0s;
}

.mm-ocd__content {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80%;
  width: var(--mm-ocd-width);
  min-width: 200px;
  min-width: var(--mm-ocd-min-width);
  max-width: 440px;
  max-width: var(--mm-ocd-max-width);
  background: #fff;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.mm-ocd--left .mm-ocd__content {
  left: 0;
  transform: translate3d(-100%, 0, 0);
}
.mm-ocd--right .mm-ocd__content {
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.mm-ocd--open .mm-ocd__content {
  transform: translate3d(0, 0, 0);
}

.mm-ocd__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: calc(100% - 80%);
  width: calc(100% - var(--mm-ocd-width));
  min-width: calc(100% - 440px);
  min-width: calc(100% - var(--mm-ocd-max-width));
  max-width: calc(100% - 200px);
  max-width: calc(100% - var(--mm-ocd-min-width));
  background: rgba(3, 2, 1, 0);
}
.mm-ocd--left .mm-ocd__backdrop {
  right: 0;
}
.mm-ocd--right .mm-ocd__backdrop {
  left: 0;
}

/** Animation duration. */
/** Arrow size. */
/** Arrow weight. */
/** Border opacity. */
/** Navbar opacity. */
/** Arrow opacity. */
/** Item height. */
/** Item indent. */
/** Line height. */
/** Panel offset. */
.mm-spn a,
.mm-spn span, .mm-spn li, .mm-spn ul, .mm-spn {
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /** Height for menu items. */
  --mm-spn-item-height: 50px;
  /** Indent for menu items. */
  --mm-spn-item-indent: 20px;
  /** Line height for menu items. */
  --mm-spn-line-height: 24px;
}

.mm-spn {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transform: translateX(0px);
}

.mm-spn ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 2;
  width: 130%;
  padding-right: 30%;
  line-height: 24px;
  line-height: var(--mm-spn-line-height);
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  transition: left 0.3s ease 0s;
  cursor: default;
}
.mm-spn ul:after {
  content: "";
  display: block;
  height: 50px;
  height: var(--mm-spn-item-height);
}
.mm-spn > ul {
  left: 0;
}
.mm-spn ul.mm-spn--open {
  left: 0;
}
.mm-spn ul.mm-spn--parent {
  left: -30%;
  overflow-y: hidden;
}

.mm-spn li {
  position: relative;
  background: inherit;
  cursor: pointer;
}
.mm-spn li:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-spn-item-height) / 2);
  right: 25px;
  right: calc(var(--mm-spn-item-height) / 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translate(0, -50%);
  opacity: 0.4;
}
.mm-spn li:after {
  content: "";
  display: block;
  margin-left: 20px;
  margin-left: var(--mm-spn-item-indent);
  border-top: 1px solid;
  opacity: 0.15;
}

.mm-spn a,
.mm-spn span {
  position: relative;
  z-index: 1;
  padding: 13px 20px;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}
.mm-spn a {
  background: inherit;
  color: inherit;
  text-decoration: none;
}
.mm-spn a:not(:last-child) {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-spn-item-height));
}
.mm-spn a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: 0.15;
}
.mm-spn span {
  background: transparent;
}

.mm-spn.mm-spn--navbar {
  cursor: pointer;
}
.mm-spn.mm-spn--navbar:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-spn-item-height) / 2);
  left: 20px;
  left: var(--mm-spn-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 0.4;
}
.mm-spn.mm-spn--navbar.mm-spn--main {
  cursor: default;
}
.mm-spn.mm-spn--navbar.mm-spn--main:before {
  content: none;
  display: none;
}
.mm-spn.mm-spn--navbar:after {
  content: attr(data-mm-spn-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  height: var(--mm-spn-item-height);
  padding: 0 40px;
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: 50px;
  line-height: var(--mm-spn-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mm-spn.mm-spn--navbar.mm-spn--main:after {
  padding-left: 20px;
  padding-left: var(--mm-spn-item-indent);
}
.mm-spn.mm-spn--navbar ul {
  top: 51px;
  top: calc(var(--mm-spn-item-height) + 1px);
}
.mm-spn.mm-spn--navbar ul:before {
  content: "";
  display: block;
  position: fixed;
  top: inherit;
  z-index: 2;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}

.mm-spn.mm-spn--light {
  color: #444;
  background: #f3f3f3;
}
.mm-spn.mm-spn--dark {
  color: #ddd;
  background: #333;
}

.mm-spn.mm-spn--vertical {
  overflow-y: auto;
}
.mm-spn.mm-spn--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static;
}
.mm-spn.mm-spn--vertical ul ul {
  display: none;
  padding-left: 20px;
  padding-left: var(--mm-spn-item-indent);
}
.mm-spn.mm-spn--vertical ul ul:after {
  height: 25px;
  height: calc(var(--mm-spn-item-height) / 2);
}
.mm-spn.mm-spn--vertical ul.mm-spn--open {
  display: block;
}
.mm-spn.mm-spn--vertical li.mm-spn--open:before {
  transform: rotate(135deg) translate(-50%, 0);
}
.mm-spn.mm-spn--vertical ul ul li:last-child:after {
  content: none;
  display: none;
}

.cookie-notification {
  background: #7bccc6;
  color: #ffffff;
  display: none;
  padding: 1.875rem 0.625rem 0.625rem;
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  z-index: 99;
}
.cookie-notification a, .cookie-notification a:visited, .cookie-notification a:active {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-notification a:hover, .cookie-notification a:visited:hover, .cookie-notification a:active:hover {
  color: #ffffff;
  text-decoration: none;
}
.cookie-notification p {
  margin: 0;
}
.cookie-notification span {
  display: block;
}
.cookie-notification.show {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body.no-hero {
  padding-top: 6.875rem;
}
@media (min-width: 768px) {
  body.no-hero {
    padding-top: 8.75rem;
  }
}

.site-pusher {
  flex: 1 1 auto;
}

.site-footer {
  flex: 0 0 auto;
}

.component {
  position: relative;
  overflow: hidden;
}

.component-scroller {
  position: absolute;
  top: -130px;
}

.page-template-page-static .site-content {
  padding-bottom: 80px;
}

.error-page {
  text-align: center;
  padding-bottom: 80px;
}

*,
*::before,
*::after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

blockquote, q {
  quotes: "" "";
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
}

picture {
  display: block;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid #a6652f;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/gold-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 10;
  background-color: #ffffff;
}
.carousel-arrow:focus {
  outline: 0;
}
.carousel-arrow.prev {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateZ(180deg);
}
.carousel-arrow.next {
  position: absolute;
  top: 0;
  right: 0;
}

html,
body {
  font-size: 1rem;
}

body {
  color: #504841;
  font-family: le-monde-livre-std, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  font-size: 0.875rem;
  margin-bottom: 1.5em;
}

h2, .h2 {
  font-size: 1.625rem;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 2.75rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  line-height: 1.45;
}

.content ul, .content ol {
  list-style-position: inside;
  margin: 0 0 30px;
  padding: 0;
}
.content ul ul, .content ul ol, .content ol ul, .content ol ol {
  padding-left: 25px;
}
.content ul {
  list-style: none;
}
.content li {
  padding-left: 3.125rem;
  position: relative;
}
.content li::before {
  background: center/contain no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg height='20' viewBox='0 0 24 20' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.171 14.556-6.784-5.003 6.573 9.229 15.025-18.782z' fill='%2388cbc7' fill-rule='evenodd' stroke='%2388cbc7' stroke-linejoin='round' transform='translate(1 1)'/%3E%3C/svg%3E");
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}
.content li + li {
  margin-top: 10px;
}
.content p:first-child {
  font-size: 1.125rem;
}
.content .sitemap-section h2 {
  font-size: 1.375rem;
  margin: 0 0 1.25rem;
}
.content .sitemap-section ul {
  list-style: disc;
  padding-left: 28px;
}
.content .sitemap-section ul li {
  padding-left: 0;
}
.content .sitemap-section ul li:before {
  display: none;
}

.subtitle, .blog-filter__item, .breadcrumbs, .underlined-link {
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.subtitle--underline {
  border-bottom: 1px solid #504841;
  display: inline-block;
  padding-bottom: 10px;
}
.subtitle--underline.c-leather {
  border-bottom-color: #a6652f;
}

.title-underline::after {
  border-bottom: 1px solid #a6652f;
  content: "";
  display: block;
  margin: 30px 0;
  width: 60px;
}

.title-underline--center::after {
  margin-left: auto;
  margin-right: auto;
}

.c-leather {
  color: #a6652f;
}

.heavy-text p {
  font-size: 1.125rem;
  margin: 0 0 1.875rem;
}

.standard-text p {
  margin: 0 0 2.5rem;
}
.standard-text p:last-child {
  margin: 0;
}

.social-icon {
  background: no-repeat center/contain;
  display: block;
  height: 31px;
  width: 31px;
}

.social-icon--facebook {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='31' viewBox='0 0 31 31' width='31' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m30.968 15.484c0-8.552-6.933-15.484-15.484-15.484-8.552 0-15.484 6.932-15.484 15.484 0 7.728 5.662 14.134 13.065 15.296v-10.82h-3.932v-4.476h3.932v-3.411c0-3.881 2.311-6.025 5.848-6.025 1.694 0 3.466.303 3.466.303v3.81h-1.952c-1.924 0-2.524 1.194-2.524 2.418v2.905h4.295l-.687 4.476h-3.608v10.82c7.403-1.162 13.065-7.568 13.065-15.296' fill='%23af6e36'/%3E%3Cpath d='m21.511 19.96.687-4.476h-4.295v-2.905c0-1.224.6-2.418 2.524-2.418h1.952v-3.81s-1.772-.303-3.466-.303c-3.537 0-5.848 2.144-5.848 6.025v3.41h-3.932v4.477h3.932v10.82c.788.123 1.596.188 2.419.188s1.63-.065 2.42-.188v-10.82z' fill='%23120d09'/%3E%3C/g%3E%3C/svg%3E");
}

.social-icon--linkedin {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='31' viewBox='0 0 32 31' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='16.452' cy='15.516' fill='%23af6e36' r='15.484'/%3E%3Cpath d='m6.194 16.516h3.382v-6.195c0-.333.02-.663.111-.9.244-.664.8-1.35 1.734-1.35 1.224 0 1.714 1.018 1.714 2.51v5.935h3.381v-6.362c0-3.408-1.67-4.993-3.893-4.993-1.825 0-2.625 1.112-3.07 1.869h.023v-1.61h-3.382c.044 1.04 0 11.095 0 11.095m-4.141-12.386c1.28 0 2.076-.917 2.076-2.064-.022-1.172-.795-2.065-2.053-2.065-1.256 0-2.076.893-2.076 2.065 0 1.147.796 2.064 2.029 2.064zm-2.053 12.387h4.129v-11.355h-4.129z' fill='%23120d09' transform='translate(8.194 6.226)'/%3E%3C/g%3E%3C/svg%3E");
}

.social-icon--instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='31' viewBox='0 0 31 31' width='31' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='15.5' cy='15.5' fill='%23af6e36' r='15.5'/%3E%3Cpath d='m20.038 9.316c-.597 0-1.08.483-1.08 1.08 0 .596.483 1.08 1.08 1.08.596 0 1.08-.484 1.08-1.08 0-.597-.484-1.08-1.08-1.08m-4.805 8.884c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3m0-7.622c-2.552 0-4.621 2.07-4.621 4.622s2.069 4.622 4.621 4.622c2.553 0 4.622-2.07 4.622-4.622s-2.07-4.622-4.622-4.622m7.326 8.259c-.04.877-.186 1.354-.31 1.67-.163.421-.358.72-.673 1.036-.315.315-.615.51-1.035.673-.317.123-.793.27-1.67.31-.95.043-1.234.052-3.638.052-2.403 0-2.688-.009-3.636-.052-.878-.04-1.354-.187-1.672-.31-.42-.163-.72-.358-1.034-.673-.315-.315-.51-.615-.674-1.035-.123-.317-.27-.794-.31-1.671-.043-.95-.052-1.234-.052-3.637s.01-2.688.052-3.637c.04-.877.187-1.354.31-1.671.164-.42.359-.72.674-1.035.314-.315.614-.51 1.034-.673.318-.123.794-.27 1.672-.31.949-.043 1.233-.052 3.636-.052s2.688.009 3.637.052c.878.04 1.354.187 1.671.31.42.163.72.358 1.035.673s.51.615.673 1.035c.124.317.27.794.31 1.671.044.95.053 1.234.053 3.637s-.01 2.688-.053 3.637m1.62-7.348c-.044-.958-.196-1.612-.418-2.184-.23-.592-.538-1.094-1.038-1.594s-1.002-.809-1.594-1.039c-.573-.222-1.227-.374-2.185-.418-.96-.044-1.266-.054-3.71-.054-2.445 0-2.751.01-3.711.054-.958.044-1.613.196-2.185.418-.592.23-1.094.538-1.594 1.039-.5.5-.808 1.002-1.038 1.594-.223.572-.375 1.226-.419 2.184-.043.96-.054 1.267-.054 3.711s.01 2.75.054 3.71c.044.959.196 1.613.419 2.185.23.592.538 1.094 1.038 1.594s1.002.808 1.594 1.038c.572.223 1.227.375 2.185.419.96.044 1.266.054 3.71.054 2.445 0 2.751-.01 3.711-.054.958-.044 1.612-.196 2.185-.419.592-.23 1.093-.537 1.594-1.038.5-.5.808-1.002 1.038-1.594.222-.572.374-1.226.418-2.184.044-.96.054-1.267.054-3.711s-.01-2.75-.054-3.71' fill='%23020319'/%3E%3C/g%3E%3C/svg%3E");
}

.social-icon--linkedin-white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='30' viewBox='0 0 30 30' width='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='15' cy='15' fill='%23a6652f' r='15'/%3E%3Cpath d='m9.3027344 6.1933594c-1.2563715 0-2.0761719.8928402-2.0761719 2.0644531 0 1.147871.7948396 2.0644535 2.0273437 2.0644535h.0253907c1.2811931 0 2.0761721-.9165825 2.0761721-2.0644535-.021958-1.1716129-.795409-2.0644531-2.0527346-2.0644531zm-2.0761719 5.1621096v11.353515h4.1289065v-11.353515zm12.6210935 0c-1.800675 0-2.597786 1.080462-3.046875 1.835937v-1.576172h-3.380859c.044835 1.040189 0 11.09375 0 11.09375h3.380859v-6.195312c0-.332669.020779-.661639.111328-.898438.243516-.66342.800754-1.349609 1.734375-1.349609 1.22373 0 1.714844 1.016076 1.714844 2.507813v5.935546h3.38086v-6.361328c0-3.408177-1.670368-4.992187-3.894532-4.992187z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}

.social-icon--email-white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='30' viewBox='0 0 30 30' width='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='15' cy='15' fill='%23a6652f' r='15'/%3E%3Cg fill='%23fff' fill-rule='nonzero' transform='translate(6 9)'%3E%3Cpath d='m16.058427.00674157h-14.99325846l7.5 6.85280899z'/%3E%3Cpath d='m9.71123596 8.12359551c-.33033708.29662921-.74157304.44494382-1.15280899.44494382-.40786517 0-.81910113-.14831461-1.14269663-.44157304l-7.41573034-6.7752809v9.78539331c0 .4719101.38426966.8561797.85617978.8561797h15.41123592c.4719101 0 .8561798-.3842696.8561798-.8561797v-9.78539331z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 6px;
  color: #140f0a;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.84px;
  line-height: 20.5px;
  margin: 0;
  padding: 12px 5px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  padding-right: 2.25rem !important;
  padding: 14px 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  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;
}
.btn::after {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  right: 15px;
}
.btn--primary {
  background-color: #c5e6de;
}
.btn--primary:not(:disabled):active {
  color: #140f0a;
  background-color: #88cbc7;
}
.btn--primary:not(:disabled):active, .btn--primary:not(:disabled):active:focus, .btn--primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(197, 230, 222, 0.5);
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(166, 101, 47, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn--primary {
  color: #ffffff;
  background: #a6652f;
  border-color: #a6652f;
}
.btn--primary:hover {
  background: rgb(136.1901408451, 82.8626760563, 38.5598591549);
  border-color: rgb(126.2535211268, 76.8169014085, 35.7464788732);
  color: #ffffff;
}
.btn--primary:focus, .btn--primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(179.35, 124.1, 78.2, 0.5);
}
.btn--primary.disabled, .btn--primary:disabled {
  color: #ffffff;
  background-color: #a6652f;
  border-color: #a6652f;
}
.btn--primary:not(:disabled):not(.disabled):active, .btn--primary:not(:disabled):not(.disabled).active, .show > .btn--primary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(126.2535211268, 76.8169014085, 35.7464788732);
  border-color: rgb(116.3169014085, 70.7711267606, 32.9330985915);
}
.btn--primary:not(:disabled):not(.disabled):active:focus, .btn--primary:not(:disabled):not(.disabled).active:focus, .show > .btn--primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(179.35, 124.1, 78.2, 0.5);
}

.btn--secondary {
  color: #212529;
  background: #7bccc6;
  border-color: #7bccc6;
}
.btn--secondary:hover {
  background: rgb(95.4098360656, 193.3401639344, 186.0860655738);
  border-color: rgb(86.2131147541, 189.7868852459, 182.1147540984);
  color: #212529;
}
.btn--secondary:focus, .btn--secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(109.5, 178.95, 174.45, 0.5);
}
.btn--secondary.disabled, .btn--secondary:disabled {
  color: #212529;
  background-color: #7bccc6;
  border-color: #7bccc6;
}
.btn--secondary:not(:disabled):not(.disabled):active, .btn--secondary:not(:disabled):not(.disabled).active, .show > .btn--secondary.dropdown-toggle {
  color: #212529;
  background-color: rgb(86.2131147541, 189.7868852459, 182.1147540984);
  border-color: rgb(77.0163934426, 186.2336065574, 178.143442623);
}
.btn--secondary:not(:disabled):not(.disabled):active:focus, .btn--secondary:not(:disabled):not(.disabled).active:focus, .show > .btn--secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(109.5, 178.95, 174.45, 0.5);
}

.btn--success {
  color: #ffffff;
  background: #28a745;
  border-color: #28a745;
}
.btn--success:hover {
  background: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  color: #ffffff;
}
.btn--success:focus, .btn--success.focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn--success.disabled, .btn--success:disabled {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn--success:not(:disabled):not(.disabled):active, .btn--success:not(:disabled):not(.disabled).active, .show > .btn--success.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn--success:not(:disabled):not(.disabled):active:focus, .btn--success:not(:disabled):not(.disabled).active:focus, .show > .btn--success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn--info {
  color: #ffffff;
  background: #17a2b8;
  border-color: #17a2b8;
}
.btn--info:hover {
  background: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  color: #ffffff;
}
.btn--info:focus, .btn--info.focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn--info.disabled, .btn--info:disabled {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn--info:not(:disabled):not(.disabled):active, .btn--info:not(:disabled):not(.disabled).active, .show > .btn--info.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn--info:not(:disabled):not(.disabled):active:focus, .btn--info:not(:disabled):not(.disabled).active:focus, .show > .btn--info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn--warning {
  color: #212529;
  background: #ffc107;
  border-color: #ffc107;
}
.btn--warning:hover {
  background: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  color: #212529;
}
.btn--warning:focus, .btn--warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn--warning.disabled, .btn--warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn--warning:not(:disabled):not(.disabled):active, .btn--warning:not(:disabled):not(.disabled).active, .show > .btn--warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn--warning:not(:disabled):not(.disabled):active:focus, .btn--warning:not(:disabled):not(.disabled).active:focus, .show > .btn--warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn--danger {
  color: #ffffff;
  background: #dc3545;
  border-color: #dc3545;
}
.btn--danger:hover {
  background: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  color: #ffffff;
}
.btn--danger:focus, .btn--danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn--danger.disabled, .btn--danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn--danger:not(:disabled):not(.disabled):active, .btn--danger:not(:disabled):not(.disabled).active, .show > .btn--danger.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.btn--danger:not(:disabled):not(.disabled):active:focus, .btn--danger:not(:disabled):not(.disabled).active:focus, .show > .btn--danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}

.btn--light {
  color: #212529;
  background: #f8f9fa;
  border-color: #f8f9fa;
}
.btn--light:hover {
  background: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  color: #212529;
}
.btn--light:focus, .btn--light.focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn--light.disabled, .btn--light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn--light:not(:disabled):not(.disabled):active, .btn--light:not(:disabled):not(.disabled).active, .show > .btn--light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn--light:not(:disabled):not(.disabled):active:focus, .btn--light:not(:disabled):not(.disabled).active:focus, .show > .btn--light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn--dark {
  color: #ffffff;
  background: #343a40;
  border-color: #343a40;
}
.btn--dark:hover {
  background: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  color: #ffffff;
}
.btn--dark:focus, .btn--dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn--dark.disabled, .btn--dark:disabled {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn--dark:not(:disabled):not(.disabled):active, .btn--dark:not(:disabled):not(.disabled).active, .show > .btn--dark.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn--dark:not(:disabled):not(.disabled):active:focus, .btn--dark:not(:disabled):not(.disabled).active:focus, .show > .btn--dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline--primary {
  color: #a6652f;
  border-color: #a6652f;
}
.btn-outline--primary:hover {
  color: #ffffff;
  background-color: #a6652f;
  border-color: #a6652f;
}
.btn-outline--primary:focus, .btn-outline--primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(166, 101, 47, 0.5);
}
.btn-outline--primary.disabled, .btn-outline--primary:disabled {
  color: #a6652f;
  background-color: transparent;
}
.btn-outline--primary:not(:disabled):not(.disabled):active, .btn-outline--primary:not(:disabled):not(.disabled).active, .show > .btn-outline--primary.dropdown-toggle {
  color: #ffffff;
  background-color: #a6652f;
  border-color: #a6652f;
}
.btn-outline--primary:not(:disabled):not(.disabled):active:focus, .btn-outline--primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(166, 101, 47, 0.5);
}

.btn-outline--secondary {
  color: #7bccc6;
  border-color: #7bccc6;
}
.btn-outline--secondary:hover {
  color: #212529;
  background-color: #7bccc6;
  border-color: #7bccc6;
}
.btn-outline--secondary:focus, .btn-outline--secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(123, 204, 198, 0.5);
}
.btn-outline--secondary.disabled, .btn-outline--secondary:disabled {
  color: #7bccc6;
  background-color: transparent;
}
.btn-outline--secondary:not(:disabled):not(.disabled):active, .btn-outline--secondary:not(:disabled):not(.disabled).active, .show > .btn-outline--secondary.dropdown-toggle {
  color: #212529;
  background-color: #7bccc6;
  border-color: #7bccc6;
}
.btn-outline--secondary:not(:disabled):not(.disabled):active:focus, .btn-outline--secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(123, 204, 198, 0.5);
}

.btn-outline--success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline--success:hover {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline--success:focus, .btn-outline--success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline--success.disabled, .btn-outline--success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline--success:not(:disabled):not(.disabled):active, .btn-outline--success:not(:disabled):not(.disabled).active, .show > .btn-outline--success.dropdown-toggle {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline--success:not(:disabled):not(.disabled):active:focus, .btn-outline--success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline--info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline--info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline--info:focus, .btn-outline--info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline--info.disabled, .btn-outline--info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline--info:not(:disabled):not(.disabled):active, .btn-outline--info:not(:disabled):not(.disabled).active, .show > .btn-outline--info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline--info:not(:disabled):not(.disabled):active:focus, .btn-outline--info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline--warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline--warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline--warning:focus, .btn-outline--warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline--warning.disabled, .btn-outline--warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline--warning:not(:disabled):not(.disabled):active, .btn-outline--warning:not(:disabled):not(.disabled).active, .show > .btn-outline--warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline--warning:not(:disabled):not(.disabled):active:focus, .btn-outline--warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline--danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline--danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline--danger:focus, .btn-outline--danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline--danger.disabled, .btn-outline--danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline--danger:not(:disabled):not(.disabled):active, .btn-outline--danger:not(:disabled):not(.disabled).active, .show > .btn-outline--danger.dropdown-toggle {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline--danger:not(:disabled):not(.disabled):active:focus, .btn-outline--danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline--light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline--light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline--light:focus, .btn-outline--light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline--light.disabled, .btn-outline--light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline--light:not(:disabled):not(.disabled):active, .btn-outline--light:not(:disabled):not(.disabled).active, .show > .btn-outline--light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline--light:not(:disabled):not(.disabled):active:focus, .btn-outline--light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline--dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline--dark:hover {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline--dark:focus, .btn-outline--dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline--dark.disabled, .btn-outline--dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline--dark:not(:disabled):not(.disabled):active, .btn-outline--dark:not(:disabled):not(.disabled).active, .show > .btn-outline--dark.dropdown-toggle {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline--dark:not(:disabled):not(.disabled):active:focus, .btn-outline--dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline--dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #a6652f;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(106.3802816901, 64.7253521127, 30.1197183099);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn--lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.btn--sm {
  padding: 17px 23px;
  font-size: 0.75rem;
  line-height: 1;
}
@media (max-width: 1364px) {
  .btn--sm {
    padding: 17px 11px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}

.btn--hero {
  padding: 19px 35px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-right: 2rem !important;
}

.btn--block {
  display: block;
  width: 100%;
}
.btn--block + .btn--block {
  margin-top: 0.5rem;
}

input[type=submit].btn--block,
input[type=reset].btn--block,
input[type=button].btn--block {
  width: 100%;
}

.underlined-link {
  border-bottom: 1px solid #a6652f;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 0 0 0.625rem;
  transition: 0.4s;
}
.underlined-link:hover {
  border-bottom-color: #140f0a;
  color: #140f0a;
  text-decoration: none;
}

.underlined-link--white {
  color: #ffffff;
}

.underlined-link--hover-white:hover,
.underlined-link--white:hover {
  border-bottom-color: #ffffff;
  color: #ffffff;
}

.site-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(18, 13, 9, 0) 99%);
  color: #FFF;
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.4s;
  z-index: 14;
}

.site-header--floating,
.site-header--no-hero {
  background: #ffffff;
  padding: 0.9375rem 0;
  border-bottom: 1px solid #d6d1cb;
}
.site-header--floating .site-header__tel:hover,
.site-header--no-hero .site-header__tel:hover {
  color: #140f0a;
}
.site-header--floating .hamburger-inner,
.site-header--floating .hamburger-inner::before,
.site-header--floating .hamburger-inner::after,
.site-header--floating .hamburger.is-active .hamburger-inner::before,
.site-header--floating .hamburger.is-active .hamburger-inner::after,
.site-header--no-hero .hamburger-inner,
.site-header--no-hero .hamburger-inner::before,
.site-header--no-hero .hamburger-inner::after,
.site-header--no-hero .hamburger.is-active .hamburger-inner::before,
.site-header--no-hero .hamburger.is-active .hamburger-inner::after {
  background-color: #140f0a;
  opacity: 1;
}

@media (min-width: 768px) {
  .hamburger {
    padding: 15px 0;
  }
}

@media (min-width: 1200px) {
  .header-logo {
    display: block;
    max-width: 110px;
    margin: 0 auto;
  }
}

.site-header__tel {
  border-bottom: 1px solid #a6652f;
  color: #ffffff;
  font-weight: bold;
}
.site-header--floating .site-header__tel, .site-header--no-hero .site-header__tel {
  color: #140f0a;
}
.site-header__tel:hover {
  text-decoration: none;
  color: white;
}

.site-header__secondary-menu {
  font-size: 0.875rem;
  justify-content: flex-end;
  padding-bottom: 10px;
}

.menu-secondary-container {
  display: none;
}
@media (min-width: 1200px) {
  .menu-secondary-container {
    display: block;
  }
}

.menu-tablet-menu-container {
  display: none;
}
@media (min-width: 768px) {
  .menu-tablet-menu-container {
    display: block;
  }
}
@media (min-width: 1200px) {
  .menu-tablet-menu-container {
    display: none;
  }
}

.logo--colour,
.logo--black,
.logo--colour-mobile {
  display: none;
}

.logo--colour-mobile,
.logo--black-mobile {
  padding: 10px 0;
}

.site-header--floating .logo--colour-mobile,
.site-header--no-hero .logo--colour-mobile {
  display: block;
}
.site-header--floating .logo--black-mobile,
.site-header--no-hero .logo--black-mobile {
  display: none;
}

@media (min-width: 1200px) {
  .logo--black-mobile,
  .logo--colour-mobile {
    display: none;
  }
  .logo--black {
    display: block;
  }
  .site-header--floating .logo--colour,
  .site-header--no-hero .logo--colour {
    display: block;
  }
  .site-header--floating .logo--black,
  .site-header--floating .logo--colour-mobile,
  .site-header--no-hero .logo--black,
  .site-header--no-hero .logo--colour-mobile {
    display: none;
  }
}
.main-navigation {
  display: none;
}
@media (max-width: 1364px) {
  .main-navigation {
    font-size: 0.875rem;
  }
}
.main-navigation ul {
  display: flex;
  margin: 0;
}
.main-navigation ul > li {
  flex: 0 0 auto;
  padding: 1.75rem 0;
}
.main-navigation ul > li + li {
  margin-left: 15px;
}
@media (min-width: 1200px) {
  .main-navigation ul > li + li {
    margin-left: 24px;
  }
}
.main-navigation .menu-item-has-children {
  position: relative;
}
.main-navigation .menu-item-has-children::after {
  position: absolute;
  content: "";
  top: 36px;
  right: -14px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #a6652f;
  border-right: 1px solid #a6652f;
  transform: rotateZ(45deg);
}
.main-navigation .menu-item-has-children:hover ul {
  left: 0;
}
.main-navigation .menu-item-has-children ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  top: 100%;
  left: -4000px;
  width: 330px;
  padding: 1.5625rem 0;
  border-top: 1px solid #a6652f;
  box-shadow: 0 4px 20px -6px #777;
}
.main-navigation .menu-item-has-children ul::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  position: absolute;
  top: -11px;
  left: 30px;
  transform: rotateZ(45deg);
  border-top: 1px solid #a6652f;
  border-left: 1px solid #a6652f;
}
.main-navigation .menu-item-has-children ul li {
  margin: 0 !important;
  padding: 0;
}
.main-navigation .menu-item-has-children ul li:hover a:after {
  display: block;
}
.main-navigation .menu-item-has-children ul a {
  position: relative;
  font-size: 18px;
  color: #140f0a;
  padding: 10px 20px;
}
.main-navigation .menu-item-has-children ul a:after {
  display: none;
  position: absolute;
  content: "";
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #a6652f;
  border-right: 1px solid #a6652f;
  transform: rotateZ(-45deg);
}
.main-navigation .menu-item-has-children ul a:hover {
  background: #e8f3f0;
}
.main-navigation .menu-item-has-children.mega-menu {
  align-items: center;
  display: flex;
  position: relative;
}
.main-navigation .menu-item-has-children.mega-menu:hover::before {
  background-color: #ffffff;
  border-top: 1px solid #a6652f;
  border-left: 1px solid #a6652f;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  transform: rotateZ(45deg);
  width: 20px;
  z-index: 3;
  bottom: -10px;
  right: -7px;
}
.main-navigation .menu-item-has-children.mega-menu::after {
  display: block;
  position: static;
  margin-left: 10px;
}
.main-navigation .menu-item-has-children.mega-menu:hover ul {
  left: -182px;
}
.main-navigation .menu-item-has-children.mega-menu ul {
  background: #fff url("../images/form-background-faded.svg") center no-repeat;
  background-size: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  left: -4000px;
  padding: 45px 0;
  width: 730px;
  box-shadow: 0 4px 20px -6px #777;
}
.main-navigation .menu-item-has-children.mega-menu ul::after {
  display: none;
}
.main-navigation .menu-item-has-children.mega-menu ul li {
  width: 33.333%;
  padding: 0;
  border-right: 1px solid #d6d1cb;
}
.main-navigation .menu-item-has-children.mega-menu ul li:nth-child(3n) {
  border-right: 0;
}
.main-navigation .menu-item-has-children.mega-menu ul a {
  padding: 10px 60px;
}
.main-navigation a {
  color: #ffffff;
  display: block;
  text-decoration: none;
}
.site-header--floating .main-navigation a, .site-header--no-hero .main-navigation a {
  color: #140f0a;
}

.menu-toggle {
  position: relative;
  z-index: 10;
}

.mobile-menu {
  background: #a6652f;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 9;
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu ul {
  margin: 0;
  padding: 3.75rem;
}
.mobile-menu a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .secondary-navigation {
    display: block;
  }
}

@media (min-width: 1200px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
  .main-navigation {
    display: block;
  }
}
.site-footer {
  background: #120D09;
  color: #FFF;
  padding: 3.75rem 0;
}

.site-footer__trustpilot {
  padding: 0 0 3.75rem;
}

.site-footer__info {
  border: 1px solid #a6652f;
  border-left: 0;
  border-right: 0;
  padding: 2.5rem;
}
.site-footer__info .col-12 {
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .site-footer__info {
    padding: 2.5rem 0 0;
  }
}

.site-footer__address {
  line-height: 2;
  max-width: 320px;
  width: 100%;
}

.site-footer__contact {
  list-style: none;
  margin: 1.625rem 0 2.5rem;
  padding: 0;
}
.site-footer__contact li + li {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .site-footer__contact {
    margin-bottom: 0;
  }
}

.site-footer__menu {
  margin: 0;
  list-style: none;
  padding: 0;
}
.site-footer__menu li + li {
  margin-top: 12px;
}
@media (min-width: 992px) {
  .site-footer__menu li + li {
    margin-top: 20px;
  }
}
.site-footer__menu a {
  color: #ffffff;
  line-height: 2;
}
.site-footer__menu a::after {
  border: solid #ffffff;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 8px;
  margin-left: 4px;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 8px;
}
@media (min-width: 576px) {
  .site-footer__menu a::after {
    margin-left: 24px;
  }
}

.site-footer__link {
  color: #ffffff;
}
.site-footer__link:hover {
  text-decoration: underline;
}

#site-footer__menu-2 {
  margin-top: 0.75rem;
}
@media (min-width: 576px) {
  #site-footer__menu-2 {
    margin-top: 0;
  }
}

.site-footer__logos {
  border-bottom: 1px solid #a6652f;
  padding: 2.5rem 0;
}

.site-footer__social-icons {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.site-footer__social-icons .social-icon + .social-icon {
  margin-left: 16px;
}
@media (min-width: 576px) {
  .site-footer__social-icons {
    margin-top: 0;
    justify-content: flex-end;
  }
}

.site-footer__disclaimer {
  font-size: 0.75rem;
  margin-top: 1.25rem;
}
@media (min-width: 576px) {
  .site-footer__disclaimer {
    margin-top: 2.5rem;
  }
}

.site-footer__copyright {
  font-size: 0.875rem;
  margin: 24px 0 20px;
}

.site-footer__credit-link {
  color: #ffffff;
  font-size: 0.875rem;
}
.site-footer__credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__bottom-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

#site-footer__menu-notices {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-footer__menu-notices li {
  margin-right: 0.75rem;
}
#site-footer__menu-notices a {
  color: #ffffff;
  font-size: 0.875rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
  }
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded {
  animation: pulse 1s infinite;
  animation-delay: 3s;
  bottom: 12px;
  right: 12px;
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded:hover, .woot--bubble-holder .woot-widget-bubble.woot-widget--expanded:focus, .woot--bubble-holder .woot-widget-bubble.woot-widget--expanded:active {
  animation-play-state: paused;
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded:hover {
  background: #3bb5a1 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded:focus {
  outline-color: #7bccc6;
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded #woot-widget-bubble-icon {
  display: none;
}
.woot--bubble-holder .woot-widget-bubble.woot-widget--expanded #woot-widget--expanded__text {
  padding: 0 16px;
}
@media (min-width: 576px) {
  .woot--bubble-holder .woot-widget-bubble.woot-widget--expanded #woot-widget--expanded__text::after {
    content: "Speak to a specialist";
    margin-left: 5px;
  }
}

.grecaptcha-badge {
  bottom: 76px !important;
}

@media (max-width: 767.98px) {
  body.page-id-194 .woot--bubble-holder .woot-widget-bubble.woot-widget--expanded,
  body.page-id-118105 .woot--bubble-holder .woot-widget-bubble.woot-widget--expanded {
    bottom: 90px;
  }
}
@media (max-width: 767.98px) {
  body.page-id-194 .grecaptcha-badge,
  body.page-id-118105 .grecaptcha-badge {
    bottom: 156px !important;
  }
}

label {
  color: #504841;
  display: block;
}

.custom-dropdown {
  border-bottom: 1px solid #a6652f;
  position: relative;
}
.custom-dropdown::after {
  background: center/contain no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg height='5' viewBox='0 0 10 5' width='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m166 2.24264069h6v6' fill='none' stroke='%23a6652f' transform='matrix(-.70710678 .70710678 -.70710678 -.70710678 128.208153 -115.551298)'/%3E%3C/svg%3E");
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  top: 7px;
  right: 0;
  width: 12px;
}
.custom-dropdown select {
  width: 100%;
  appearance: none;
  border: 0;
  font-family: Montserrat, sans-serif;
  padding: 0 15px 0 0;
  text-align: left;
  background-color: #ffffff;
}
.custom-dropdown select::-ms-expand {
  opacity: 0;
}

input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  margin: 20px 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  background: #a6652f;
  border: 4px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  height: 26px;
  width: 26px;
  margin-top: -9px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  background: #a6652f;
  border: 4px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  height: 26px;
  width: 26px;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  background: #a6652f;
  border: 4px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  height: 26px;
  width: 26px;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #be9370;
  cursor: pointer;
  height: 8.4px;
  width: 100%;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #be9370;
}

input[type=range]::-moz-range-track {
  background: #be9370;
  cursor: pointer;
  height: 8.4px;
  width: 100%;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #a6652f;
}

input[type=range]:focus::-ms-fill-lower {
  background: #a6652f;
}

input[type=range]::-ms-fill-upper {
  background: #be9370;
}

input[type=range]:focus::-ms-fill-upper {
  background: #be9370;
}

.gform, .gform-theme.gform-theme--framework.gform_wrapper {
  --gf-form-gap-y: 12px !important;
}
.gform-theme--api, .gform-theme--foundation,
.gform .gform-theme--api,
.gform .gform-theme--foundation, .gform-theme.gform-theme--framework.gform_wrapper-theme--api, .gform-theme.gform-theme--framework.gform_wrapper-theme--foundation,
.gform-theme.gform-theme--framework.gform_wrapper .gform-theme--api,
.gform-theme.gform-theme--framework.gform_wrapper .gform-theme--foundation {
  --gf-form-gap-x: 12px;
  --gf-form-gap-y: 12px;
}
.gform_header,
.gform .gform_header, .gform-theme.gform-theme--framework.gform_wrapper_header,
.gform-theme.gform-theme--framework.gform_wrapper .gform_header {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.gform_title,
.gform .gform_title, .gform-theme.gform-theme--framework.gform_wrapper_title,
.gform-theme.gform-theme--framework.gform_wrapper .gform_title {
  font-size: 1.5rem;
}
.gform_progress,
.gform .gform_progress, .gform-theme.gform-theme--framework.gform_wrapper_progress,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress {
  background: #eae8e5;
  border-radius: 50%;
  display: grid;
  height: 2.875rem;
  position: relative;
  right: -0.7rem;
  top: -0.7rem;
  width: 2.875rem;
}
.gform_progress_label,
.gform .gform_progress_label, .gform-theme.gform-theme--framework.gform_wrapper_progress_label,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress_label {
  background: #ffffff;
  border-radius: 50%;
  color: #140f0a;
  font-family: "Montserrat", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  height: calc(100% - 0.4rem);
  margin: 0.2rem;
  place-content: center;
  text-align: center;
  width: calc(100% - 0.4rem);
  z-index: 1;
}
.gform_progress_label_icon,
.gform .gform_progress_label_icon, .gform-theme.gform-theme--framework.gform_wrapper_progress_label_icon,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress_label_icon {
  color: #7bccc6;
  font-size: 24px;
}
.gform_progress_label_page, .gform_progress_label_count,
.gform .gform_progress_label_page,
.gform .gform_progress_label_count, .gform-theme.gform-theme--framework.gform_wrapper_progress_label_page, .gform-theme.gform-theme--framework.gform_wrapper_progress_label_count,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress_label_page,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress_label_count {
  font-size: 0.625rem;
}
.gform_progress_circle,
.gform .gform_progress_circle, .gform-theme.gform-theme--framework.gform_wrapper_progress_circle,
.gform-theme.gform-theme--framework.gform_wrapper .gform_progress_circle {
  background-image: conic-gradient(#7bccc6 0 calc(var(--progress) * 360deg), transparent calc(var(--progress) * 360deg) 360deg);
  border-radius: 50%;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.gform_page_footer,
.gform .gform_page_footer, .gform-theme.gform-theme--framework.gform_wrapper_page_footer,
.gform-theme.gform-theme--framework.gform_wrapper .gform_page_footer {
  display: flex;
  justify-content: space-between;
}
.gform_page_footer > *,
.gform .gform_page_footer > *, .gform-theme.gform-theme--framework.gform_wrapper_page_footer > *,
.gform-theme.gform-theme--framework.gform_wrapper .gform_page_footer > * {
  order: 0 !important;
}
.gform_button, .gform_previous_button, .gform_next_button,
.gform .gform_button,
.gform .gform_previous_button,
.gform .gform_next_button, .gform-theme.gform-theme--framework.gform_wrapper_button, .gform-theme.gform-theme--framework.gform_wrapper_previous_button, .gform-theme.gform-theme--framework.gform_wrapper_next_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_previous_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_next_button {
  --gf-icon-font-family: "FontAwesome" !important;
  border-radius: 6px !important;
  color: #140f0a !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 1.26px !important;
  line-height: 30px !important;
  text-align: center !important;
  text-transform: uppercase !important;
}
@media (max-width: 767.98px) {
  .gform_button, .gform_previous_button, .gform_next_button,
  .gform .gform_button,
  .gform .gform_previous_button,
  .gform .gform_next_button, .gform-theme.gform-theme--framework.gform_wrapper_button, .gform-theme.gform-theme--framework.gform_wrapper_previous_button, .gform-theme.gform-theme--framework.gform_wrapper_next_button,
  .gform-theme.gform-theme--framework.gform_wrapper .gform_button,
  .gform-theme.gform-theme--framework.gform_wrapper .gform_previous_button,
  .gform-theme.gform-theme--framework.gform_wrapper .gform_next_button {
    flex-grow: 1 !important;
  }
}
.gform_previous_button,
.gform .gform_previous_button, .gform-theme.gform-theme--framework.gform_wrapper_previous_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_previous_button {
  background-color: #eae8e5 !important;
  border-color: #eae8e5 !important;
  order: -1 !important;
}
.gform_next_button, .gform_button,
.gform .gform_next_button,
.gform .gform_button, .gform-theme.gform-theme--framework.gform_wrapper_next_button, .gform-theme.gform-theme--framework.gform_wrapper_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_next_button,
.gform-theme.gform-theme--framework.gform_wrapper .gform_button {
  background-color: #7bccc6 !important;
  border-color: #7bccc6 !important;
  justify-self: flex-end !important;
  margin-left: auto !important;
  min-width: 190px !important;
  order: 1 !important;
  padding-right: 30px !important;
  position: relative !important;
}
.gform_next_button::after, .gform_button::after,
.gform .gform_next_button::after,
.gform .gform_button::after, .gform-theme.gform-theme--framework.gform_wrapper_next_button::after, .gform-theme.gform-theme--framework.gform_wrapper_button::after,
.gform-theme.gform-theme--framework.gform_wrapper .gform_next_button::after,
.gform-theme.gform-theme--framework.gform_wrapper .gform_button::after {
  color: #140f0a !important;
  content: "\f054" !important;
  font-family: "FontAwesome" !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  position: absolute !important;
  right: 15px !important;
}
.gform_required, .gform_required_legend,
.gform .gform_required,
.gform .gform_required_legend, .gform-theme.gform-theme--framework.gform_wrapper_required, .gform-theme.gform-theme--framework.gform_wrapper_required_legend,
.gform-theme.gform-theme--framework.gform_wrapper .gform_required,
.gform-theme.gform-theme--framework.gform_wrapper .gform_required_legend {
  display: none !important;
}
.gform_fields .gfield,
.gform .gform_fields .gfield, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield {
  position: relative;
}
.gform_fields .gfield input,
.gform .gform_fields .gfield input, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input {
  background: #FFF;
  border: 1px solid #d6d1cb;
  border-radius: 8px;
  color: #727679;
  font-family: "Nunito Sans", sans-serif;
}
.gform_fields .gfield input[type=text], .gform_fields .gfield input[type=password], .gform_fields .gfield input[type=color], .gform_fields .gfield input[type=date], .gform_fields .gfield input[type=datetime], .gform_fields .gfield input[type=datetime-local], .gform_fields .gfield input[type=email], .gform_fields .gfield input[type=month], .gform_fields .gfield input[type=number], .gform_fields .gfield input[type=search], .gform_fields .gfield input[type=tel], .gform_fields .gfield input[type=time], .gform_fields .gfield input[type=url], .gform_fields .gfield input[type=week],
.gform .gform_fields .gfield input[type=text],
.gform .gform_fields .gfield input[type=password],
.gform .gform_fields .gfield input[type=color],
.gform .gform_fields .gfield input[type=date],
.gform .gform_fields .gfield input[type=datetime],
.gform .gform_fields .gfield input[type=datetime-local],
.gform .gform_fields .gfield input[type=email],
.gform .gform_fields .gfield input[type=month],
.gform .gform_fields .gfield input[type=number],
.gform .gform_fields .gfield input[type=search],
.gform .gform_fields .gfield input[type=tel],
.gform .gform_fields .gfield input[type=time],
.gform .gform_fields .gfield input[type=url],
.gform .gform_fields .gfield input[type=week], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=text], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=password], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=color], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=date], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=datetime], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=datetime-local], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=email], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=month], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=number], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=search], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=tel], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=time], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=url], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=week],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=text],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=password],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=color],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=date],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=datetime],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=datetime-local],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=email],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=month],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=number],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=search],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=tel],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=time],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=url],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=week] {
  height: 2.875rem;
}
.gform_fields .gfield input[type=text]:focus, .gform_fields .gfield input[type=password]:focus, .gform_fields .gfield input[type=color]:focus, .gform_fields .gfield input[type=date]:focus, .gform_fields .gfield input[type=datetime]:focus, .gform_fields .gfield input[type=datetime-local]:focus, .gform_fields .gfield input[type=email]:focus, .gform_fields .gfield input[type=month]:focus, .gform_fields .gfield input[type=number]:focus, .gform_fields .gfield input[type=search]:focus, .gform_fields .gfield input[type=tel]:focus, .gform_fields .gfield input[type=time]:focus, .gform_fields .gfield input[type=url]:focus, .gform_fields .gfield input[type=week]:focus,
.gform .gform_fields .gfield input[type=text]:focus,
.gform .gform_fields .gfield input[type=password]:focus,
.gform .gform_fields .gfield input[type=color]:focus,
.gform .gform_fields .gfield input[type=date]:focus,
.gform .gform_fields .gfield input[type=datetime]:focus,
.gform .gform_fields .gfield input[type=datetime-local]:focus,
.gform .gform_fields .gfield input[type=email]:focus,
.gform .gform_fields .gfield input[type=month]:focus,
.gform .gform_fields .gfield input[type=number]:focus,
.gform .gform_fields .gfield input[type=search]:focus,
.gform .gform_fields .gfield input[type=tel]:focus,
.gform .gform_fields .gfield input[type=time]:focus,
.gform .gform_fields .gfield input[type=url]:focus,
.gform .gform_fields .gfield input[type=week]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=text]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=password]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=color]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=date]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=datetime]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=datetime-local]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=email]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=month]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=number]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=search]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=tel]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=time]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=url]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=week]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=text]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=password]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=color]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=date]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=datetime]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=datetime-local]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=email]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=month]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=number]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=search]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=tel]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=time]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=url]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=week]:focus {
  border-color: #7bccc6;
  outline: none;
}
.gform_fields .gfield input[type=checkbox],
.gform .gform_fields .gfield input[type=checkbox], .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=checkbox],
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=checkbox] {
  border-radius: 50%;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.gform_fields .gfield input[type=checkbox]::before,
.gform .gform_fields .gfield input[type=checkbox]::before, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=checkbox]::before,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=checkbox]::before {
  color: #7bccc6;
  font-size: 16px;
  font-weight: 700;
}
.gform_fields .gfield input[type=checkbox]:focus,
.gform .gform_fields .gfield input[type=checkbox]:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield input[type=checkbox]:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield input[type=checkbox]:focus {
  outline: none;
}
.gform_fields .gfield textarea, .gform_fields .gfield select,
.gform .gform_fields .gfield textarea,
.gform .gform_fields .gfield select, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield textarea, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield select,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield textarea,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield select {
  background: #FFF;
  border: 1px solid #d6d1cb;
  border-radius: 8px;
  color: #727679;
  font-family: "Nunito Sans", sans-serif;
  height: 2.875rem;
}
.gform_fields .gfield textarea:focus, .gform_fields .gfield select:focus,
.gform .gform_fields .gfield textarea:focus,
.gform .gform_fields .gfield select:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield textarea:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield select:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield textarea:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield select:focus {
  border-color: #7bccc6;
  outline: none;
}
.gform_fields .gfield_label,
.gform .gform_fields .gfield_label, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield_label,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield_label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 150%;
}
.gform_fields .gfield_consent_label,
.gform .gform_fields .gfield_consent_label, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield_consent_label,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield_consent_label {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 200%;
}
.gform_fields .gfield_required, .gform_fields .gfield_required_asterisk,
.gform .gform_fields .gfield_required,
.gform .gform_fields .gfield_required_asterisk, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield_required, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield_required_asterisk,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield_required,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield_required_asterisk {
  display: none;
}
.gform_fields .gfield--type-radio .gfield_radio,
.gform .gform_fields .gfield--type-radio .gfield_radio, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  justify-content: start !important;
  margin: 0 !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice {
  align-items: center !important;
  background: #ffffff !important;
  border-radius: 8px !important;
  transition: background-color 0.2s ease-in-out !important;
  width: 200px !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input {
  appearance: none !important;
  background: #eae8e5 !important;
  border: none !important;
  box-shadow: inset 0px 0px 0px 2px #ffffff !important;
  border-radius: 50% !important;
  display: grid !important;
  height: 28px !important;
  line-height: 100% !important;
  place-content: center !important;
  width: 28px !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:focus,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:focus, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:focus,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:focus {
  outline: none !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input::before,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input::before, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input::before,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 1C21.1797 1 27 6.8203 27 14C27 21.1797 21.1797 27 14 27C6.8203 27 1 21.1797 1 14C1 6.8203 6.8203 1 14 1Z' fill='%237bccc6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.5 11L12.1625 18L8.5 14.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  height: 28px !important;
  transform: scale(0) !important;
  transition: transform 0.3s ease-in-out !important;
  width: 28px !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:checked::before,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:checked::before, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:checked::before,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input:checked::before {
  transform: scale(1) !important;
}
.gform_fields .gfield--type-radio .gfield_radio .gchoice .gform-field-label,
.gform .gform_fields .gfield--type-radio .gfield_radio .gchoice .gform-field-label, .gform-theme.gform-theme--framework.gform_wrapper_fields .gfield--type-radio .gfield_radio .gchoice .gform-field-label,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .gfield--type-radio .gfield_radio .gchoice .gform-field-label {
  color: #140f0a !important;
  display: flex !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  gap: 16px !important;
  line-height: 200% !important;
  padding: 0px !important;
  transition: color 0.2s ease-in-out !important;
}
.gform_fields .reg-search,
.gform .gform_fields .reg-search, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search {
  display: grid;
  grid-template-columns: auto 45px;
  grid-template-rows: auto auto;
}
.gform_fields .reg-search > .gfield_label,
.gform .gform_fields .reg-search > .gfield_label, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search > .gfield_label,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search > .gfield_label {
  grid-column: 1/3;
  grid-row: 1/2;
}
.gform_fields .reg-search > .ginput_container,
.gform .gform_fields .reg-search > .ginput_container, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search > .ginput_container,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search > .ginput_container {
  grid-column: 1/3;
  grid-row: 2/3;
}
.gform_fields .reg-search-container,
.gform .gform_fields .reg-search-container, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-container,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-container {
  display: flex;
  flex-direction: column;
  gap: var(--gf-form-gap-y);
  grid-column: 1/-1;
  position: relative;
}
.gform_fields .reg-search-overlay,
.gform .gform_fields .reg-search-overlay, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-overlay,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-overlay {
  background: rgba(47, 50, 49, 0.25);
  border-radius: 8px;
  color: #7bccc6;
  display: grid;
  height: 100%;
  left: 0;
  outline: solid 10px rgba(47, 50, 49, 0.25);
  place-content: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.gform_fields .reg-search-btn,
.gform .gform_fields .reg-search-btn, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-btn,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-btn {
  background: #eae8e5;
  border-radius: 8px;
  border: none !important;
  color: #140f0a;
  display: flex;
  flex-wrap: wrap;
  grid-column: 2/3;
  grid-row: 2/3;
  height: 44px;
  margin: 1px -1px;
  padding: 0 !important;
  place-content: center;
  position: static;
  width: 45px;
}
.gform_fields .reg-search-btn::after,
.gform .gform_fields .reg-search-btn::after, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-btn::after,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-btn::after {
  display: none;
}
.gform_fields .reg-search-hidden,
.gform .gform_fields .reg-search-hidden, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-hidden,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-hidden {
  display: none;
}
.gform_fields .reg-search-error,
.gform .gform_fields .reg-search-error, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-error,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-error {
  background: #eae8e5;
  border-radius: 8px;
  margin: 0 0 10px;
  padding: 12px;
}
.gform_fields .reg-search-error h3,
.gform .gform_fields .reg-search-error h3, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-error h3,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-error h3 {
  font-size: 18px;
}
.gform_fields .reg-search-error p,
.gform .gform_fields .reg-search-error p, .gform-theme.gform-theme--framework.gform_wrapper_fields .reg-search-error p,
.gform-theme.gform-theme--framework.gform_wrapper .gform_fields .reg-search-error p {
  margin-bottom: 0;
}
.gform_confirmation_message,
.gform .gform_confirmation_message, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gform_confirmation_message_main, .gform_confirmation_message_footer,
.gform .gform_confirmation_message_main,
.gform .gform_confirmation_message_footer, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_main, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_footer,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_main,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_footer {
  border-radius: 8px;
  padding: 12px;
}
.gform_confirmation_message_main,
.gform .gform_confirmation_message_main, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_main,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_main {
  background: #c5e6de;
  color: #140f0a;
}
.gform_confirmation_message_footer,
.gform .gform_confirmation_message_footer, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_footer,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_footer {
  align-items: start;
  background: #eae8e5;
  color: #140f0a;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gform_confirmation_message_btn,
.gform .gform_confirmation_message_btn, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_btn,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_btn {
  background: #4B423D;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.84px;
  line-height: 30px;
  padding: 5px 30px 5px 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 190px;
}
.gform_confirmation_message_btn::after,
.gform .gform_confirmation_message_btn::after, .gform-theme.gform-theme--framework.gform_wrapper_confirmation_message_btn::after,
.gform-theme.gform-theme--framework.gform_wrapper .gform_confirmation_message_btn::after {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  right: 15px;
}
.gform_validation_errors,
.gform .gform_validation_errors, .gform-theme.gform-theme--framework.gform_wrapper_validation_errors,
.gform-theme.gform-theme--framework.gform_wrapper .gform_validation_errors {
  border-radius: 8px !important;
  margin-bottom: 25px !important;
}
.gform .noUi-target, .gform .noUi-connect, .gform-theme.gform-theme--framework.gform_wrapper .noUi-target, .gform-theme.gform-theme--framework.gform_wrapper .noUi-connect {
  border-radius: 15px !important;
}
.gform .noUi-target, .gform-theme.gform-theme--framework.gform_wrapper .noUi-target {
  border-color: #504841 !important;
  margin-top: 3.5rem !important;
}
.gform .noUi-connect, .gform-theme.gform-theme--framework.gform_wrapper .noUi-connect {
  background-color: #88cbc7 !important;
}
.gform .noUi-connects, .gform-theme.gform-theme--framework.gform_wrapper .noUi-connects {
  border-radius: 40px;
}
.gform .noUi-handle, .gform-theme.gform-theme--framework.gform_wrapper .noUi-handle {
  background-color: #7bccc6 !important;
  border-width: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  height: 46px !important;
  right: -23px !important;
  top: -15px !important;
  width: 46px !important;
}
.gform .noUi-handle::before, .gform .noUi-handle::after, .gform-theme.gform-theme--framework.gform_wrapper .noUi-handle::before, .gform-theme.gform-theme--framework.gform_wrapper .noUi-handle::after {
  background-color: #ffffff !important;
  top: 16px !important;
}
.gform .noUi-handle::before, .gform-theme.gform-theme--framework.gform_wrapper .noUi-handle::before {
  left: 19px !important;
}
.gform .noUi-handle::after, .gform-theme.gform-theme--framework.gform_wrapper .noUi-handle::after {
  left: 27px !important;
}
.gform .noUi-tooltip, .gform-theme.gform-theme--framework.gform_wrapper .noUi-tooltip {
  font-size: 1rem;
}

.breadcrumbs {
  margin-bottom: 16px;
}
.breadcrumbs a {
  color: #ffffff;
}

.accordion__item {
  background: #ffffff;
  border: 1px solid #a6652f;
  padding: 24px 28px;
}
.accordion__item + .accordion__item {
  margin-top: 10px;
}

.accordion__content {
  height: 0;
  max-height: 1000px;
  overflow: hidden;
}

@media print {
  .accordion__content {
    height: auto;
  }
}
.accordion__header {
  cursor: pointer;
  display: flex;
}

.accordion__title {
  flex: 1 1 auto;
  font-size: 1.09375rem;
}
@media (min-width: 576px) {
  .accordion__title {
    font-size: 1.75rem;
  }
}

.accordion__chevron {
  background: center/contain no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg height='41' viewBox='0 0 41 41' width='41' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23a6652f' transform='translate(.5 .5)'%3E%3Ccircle cx='20' cy='20' r='20' transform='matrix(0 1 -1 0 40 0)'/%3E%3Cpath d='m16 14h8v8' transform='matrix(-.70710678 .70710678 -.70710678 -.70710678 46.870058 16.585786)'/%3E%3C/g%3E%3C/svg%3E");
  display: block;
  flex: 0 0 auto;
  height: 40px;
  margin-left: 10px;
  width: 40px;
}

.accordion__radio {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.accordion__radio:checked ~ .accordion__content {
  height: 100%;
}
.accordion__radio:checked ~ .accordion__header {
  border-bottom: 1px solid #a6652f;
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.accordion__radio:checked ~ .accordion__header .accordion__chevron {
  transform: rotate(180deg);
}

input[type=checkbox] {
  display: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}
input[type=radio]:checked + .wpcf7-list-item-label:after,
input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 3.125rem;
  line-height: 2;
}
.wpcf7-list-item-label:before {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin: 0 20px 0 0;
  width: 22px;
  height: 22px;
  border: 1px solid #a6652f;
  background-color: #ffffff;
}
.wpcf7-list-item-label:after {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 3px;
  content: " ";
  display: block;
  background: #a6652f;
  opacity: 0;
}

.wpcf7-acceptance {
  font-size: 0.875rem;
}
.wpcf7-acceptance label {
  margin: 0 0 1.875rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.privacy-acceptance .wpcf7-not-valid-tip {
  margin: 0 0 1.875rem;
}

.wpcf7-submit {
  font-size: 0.75rem;
  min-width: 200px;
}

div.wpcf7-response-output {
  text-align: center;
  margin: 20px 0;
}

div.wpcf7-validation-errors {
  border: 1px solid #a6652f;
}

div.wpcf7-mail-sent-ok {
  border: 1px solid #a6652f;
}

.carousel-arrows {
  position: relative;
  width: 100px;
  height: 40px;
  margin: 0 auto 40px;
}

.carousel-arrows--beside {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.carousel-arrows--beside .carousel-arrows__container {
  left: -50px;
  width: calc(100% + 100px);
}

.carousel-arrows__container {
  position: relative;
  width: 100px;
  height: 40px;
  margin: 0 auto 40px;
}
@media (min-width: 992px) {
  .carousel-arrows__container {
    width: 100%;
    margin: 0;
    transform: translateY(-50%);
  }
}

.mm-spn {
  position: relative;
}

.mm-ocd .menu-primary-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 130px;
  padding-bottom: 138px;
}

.mm-ocd--open {
  background: rgba(0, 0, 0, 0.7);
}

.mmenu-mobile-menu {
  display: block;
}

.mm-spn.mm-spn--light {
  background-color: #ffffff;
}

.mm-ocd__content {
  max-width: 100%;
  width: 100% !important;
}
@media (min-width: 576px) {
  .mm-ocd__content {
    max-width: 375px;
  }
}

.mm-ocd__backdrop {
  display: none;
}
@media (min-width: 576px) {
  .mm-ocd__backdrop {
    width: calc(100% - 375px);
    display: block;
  }
}

.mm-ocd .mmenu-mobile-menu {
  display: block;
}

.mmenu-mobile-menu {
  display: none;
}
.mmenu-mobile-menu #mobile-menu-menu {
  top: 129px;
  overflow-y: auto;
}
.mmenu-mobile-menu .mobile-menu-cta {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0.9375rem;
  z-index: 99;
  background-color: #ffffff;
}
.mmenu-mobile-menu .mobile-menu-cta.header {
  top: 0;
}
.mmenu-mobile-menu .mobile-menu-cta.footer {
  left: 20px;
  right: 20px;
  bottom: 0;
  text-align: center;
  border-top: 1px solid #140f0a;
  padding: 40px 0px;
}
.mmenu-mobile-menu .mobile-menu-cta.footer a {
  font-size: 18px;
  font-weight: bold;
}
.mmenu-mobile-menu .mobile-menu-cta .subtitle, .mmenu-mobile-menu .mobile-menu-cta .blog-filter__item, .mmenu-mobile-menu .mobile-menu-cta .underlined-link, .mmenu-mobile-menu .mobile-menu-cta .breadcrumbs {
  color: #a6652f;
  margin: 0 0 0.3125rem;
}
.mmenu-mobile-menu .mobile-menu-cta .underline {
  display: inline-block;
  position: relative !important;
  padding: 0;
  line-height: 1;
}
.mmenu-mobile-menu .mobile-menu-cta .underline:after {
  display: block !important;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a6652f;
}
.mmenu-mobile-menu .mobile-menu-cta .btn--secondary {
  text-align: center;
  width: 100% !important;
  background-color: #7bccc6;
  margin-top: 1rem;
}
.mmenu-mobile-menu .mobile-menu-cta .btn--secondary:before {
  display: none !important;
}
.mmenu-mobile-menu .mobile-menu-cta .close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/close.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-position: 50% 50%;
}
.mmenu-mobile-menu.mm-spn {
  color: #140f0a;
  font-size: 1.375rem;
  font-weight: normal;
}
.mmenu-mobile-menu.mm-spn:before {
  top: 174px;
  opacity: 1;
}
.mmenu-mobile-menu.mm-spn:after {
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  top: 150px;
  left: 20px;
  right: 20px;
  content: "Back";
  text-align: left;
  padding: 0px 25px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a6652f;
  opacity: 1;
  border-bottom: 1px solid #140f0a;
}
.mmenu-mobile-menu.mm-spn #mobile-menu-menu {
  position: absolute;
  width: 100%;
  padding-right: 0;
  top: 150px;
  bottom: 158px !important;
  z-index: 2;
  background-color: #ffffff;
  bottom: auto;
  overflow: visible;
}
.mmenu-mobile-menu.mm-spn #mobile-menu-menu ul {
  top: 200px;
  bottom: 140px;
}
.mmenu-mobile-menu.mm-spn li:before, .mmenu-mobile-menu.mm-spn li:after {
  display: none;
}
.mmenu-mobile-menu.mm-spn li.menu-item-has-children:after {
  display: block;
  position: absolute;
  content: "";
  top: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 1px solid #140f0a;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/menu-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 1;
}
.mmenu-mobile-menu.mm-spn a {
  position: static;
  padding: 15px 20px;
}
.mmenu-mobile-menu.mm-spn a:before {
  content: " ";
  display: block;
  height: 1px;
  bottom: 0;
  left: 20px;
  right: 20px;
  position: absolute;
}
.mmenu-mobile-menu.mm-spn a:hover {
  color: #140f0a;
}
.mmenu-mobile-menu.mm-spn a:not(:last-child) {
  width: calc(100% - 65px);
}

.mm-spn a:not(:last-child):after,
.mm-spn.mm-spn--navbar ul:before {
  display: none;
}

.mmenu-mobile-menu ul.mm-spn--parent {
  left: -130%;
}

.service-card {
  border: 1px solid #d6d1cb;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .service-card {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .service-card {
    max-width: initial;
  }
}
.service-card:hover {
  background-color: #140f0a;
}
.service-card:hover .service-card__title,
.service-card:hover .service-card__subtitle,
.service-card:hover .service-card__list li {
  color: #ffffff;
}

.service-card__image {
  flex: 0 1 auto;
  padding-top: 200px;
  position: relative;
  width: 100%;
}

.service-card__content {
  flex: 1 1 auto;
  padding: 2.5rem 1rem 1rem 1rem;
  transition: 0.5s;
}

.service-card__title,
.service-card__subtitle {
  text-align: center;
}

.service-card__title {
  font-size: 1.75rem;
}

.service-card__subtitle {
  margin-bottom: 8px;
}

.service-card__list {
  list-style: none;
  margin: 0;
  padding: 0 45px 0 20px;
}
@media (min-width: 992px) {
  .service-card__list {
    min-height: 304px;
  }
}
@media (min-width: 1200px) {
  .service-card__list {
    min-height: 208px;
  }
}
.service-card__list li {
  line-height: 2;
  padding-left: 50px;
  position: relative;
}
.service-card__list li::before {
  background: center/contain no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg height='20' viewBox='0 0 24 20' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.171 14.556-6.784-5.003 6.573 9.229 15.025-18.782z' fill='%2388cbc7' fill-rule='evenodd' stroke='%2388cbc7' stroke-linejoin='round' transform='translate(1 1)'/%3E%3C/svg%3E");
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 12px;
  width: 24px;
}
.service-card__list li + li {
  margin-top: 8px;
}

.service-card__associated-link {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}

.service-card__button-container {
  flex: 0 1 auto;
  padding: 1rem;
}

.job-card__outer {
  height: 100%;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .job-card__outer {
    padding-bottom: 30px;
  }
}

.job-card {
  align-items: flex-start;
  border: 1px solid #d6d1cb;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  height: 100%;
  padding: 2.5rem 1.875rem;
  position: relative;
  transition: 0.4s;
}
.job-card:hover {
  background: #140f0a;
  color: #ffffff;
}

.job-card__content {
  flex: 1 0 auto;
}

.job-card__title {
  margin-bottom: 1.25rem;
}

.job-card__info {
  color: #a6652f;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.job-card__info-detail {
  flex: 0 1 auto;
  margin-right: 20px;
}
.job-card__info-detail:last-child {
  margin-right: 0;
}

.job-card__description {
  margin-bottom: 2.5rem;
}
.job-card__description::before {
  border-bottom: 1px solid #a6652f;
  content: "";
  display: block;
  margin: 1.5rem 0;
  width: 60px;
}

.job-card__link {
  flex: 0 1 auto;
  margin: 0;
}
.job-card__link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
.job-card__link::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.post-card__outer {
  height: 100%;
  padding-bottom: 30px;
}

.post-card {
  border: 1px solid #d6d1cb;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.post-card__thumbnail {
  padding-top: 80%;
  position: relative;
}

.post-card__thumbnail img.archive_img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.post-card__read-time {
  background: #88cbc7;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-transform: uppercase;
}

.post-card__meta {
  padding: 40px 30px 30px;
}

.post-card__snippet {
  margin: 20px 0 30px;
}

.post-card__date {
  flex: 1 0 auto;
}
.post-card__date::before {
  border-top: 1px solid #88cbc7;
  content: "";
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  width: 40px;
}

.post-card__link {
  margin: 0;
}
.post-card__link::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.related-posts__intro {
  margin: 140px auto 60px;
  text-align: center;
}

.related-posts__container {
  margin-bottom: 140px;
}

.fc-featured-cta {
  padding: 50px 0;
}
.fc-featured-cta .container--wide {
  padding: 0;
}

.featured-cta {
  position: relative;
}

.featured-cta__subtitle {
  color: #a6652f;
}

.featured-cta__title {
  margin: 0 auto;
  max-width: 560px;
  width: 100%;
}

.featured-cta__description {
  font-size: 1.125rem;
}

.featured-cta__bg {
  color: #FFF;
  position: relative;
  z-index: 2;
}
.featured-cta__bg::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.featured-cta__bg::after {
  display: none;
  border: 1px solid #FFF;
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
@media (min-width: 576px) {
  .featured-cta__bg::after {
    display: block;
  }
}

.featured-cta__inner {
  margin: 0 auto;
  max-width: 755px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 3;
  padding: 5rem 1.25rem;
}
@media (min-width: 768px) {
  .featured-cta__inner {
    padding: 100px;
  }
}
.featured-cta__inner .h2 {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .featured-cta__inner .h2 {
    max-width: 100%;
  }
}

.featured-cta__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .featured-cta__btns {
    flex-direction: row;
  }
}

.featured-cta__btns-or {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  padding: 20px 0px;
}
@media (min-width: 768px) {
  .featured-cta__btns-or {
    padding: 0 30px;
  }
}

.featured-cta__contact-btn {
  margin: 0;
}

.blog-filter {
  background: #ffffff;
  padding: 2.5rem 0 2.5rem;
  position: relative;
  transform: none;
  z-index: 3;
}
@media (min-width: 992px) {
  .blog-filter {
    padding: 2.5rem 1.875rem 2.5rem;
    margin-top: -50px;
  }
}

.blog-filter__label {
  flex: 0 1 auto;
  font-size: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 0 0.625rem;
}

.blog-filter__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 0 1.25rem;
}
.blog-filter__list li {
  width: 100%;
}
@media (min-width: 768px) {
  .blog-filter__list li {
    width: 50%;
  }
}

.blog-filter__order {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-filter__item {
  color: #2f3231;
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .blog-filter__item {
    margin: 0 15px 5px;
  }
}
.blog-filter__item:last-child {
  margin-right: 0;
}
.blog-filter__item.active {
  border-bottom: 1px solid #a6652f;
  color: #a6652f;
}
.blog-filter__item:hover {
  text-decoration: none;
}

.blog-posts__container {
  margin-bottom: 80px;
}

.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination__item {
  padding-right: 14px;
}
@media (min-width: 768px) {
  .pagination__item {
    padding-right: 30px;
  }
}
.pagination__item > .current {
  border-bottom: 1px solid #a6652f;
  color: #a6652f;
  display: block;
  padding: 5px;
}
.pagination__item a, .pagination__item span {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.pagination__item:last-child {
  padding-right: 0;
}

a.page-numbers {
  color: #140f0a;
}

.pagination__nav {
  background: center/contain no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23AF6E36' transform='matrix(-1 0 0 1 41 1)'%3E%3Ccircle cx='20' cy='20' r='20'/%3E%3Cpath d='M14 16L22 16 22 24' transform='rotate(45 18 20)'/%3E%3C/g%3E%3C/svg%3E");
  display: block;
  flex: 0 1 auto;
  height: 40px;
  width: 40px;
}

.pagination__nav--next {
  transform: scaleX(-1);
}

.single-post {
  padding-top: 80px !important;
}
@media (min-width: 992px) {
  .single-post {
    padding-top: 100px !important;
  }
}
.single-post .breadcrumbs {
  margin: 0;
  padding: 2.5rem 0;
}
.single-post .breadcrumbs a {
  font-size: 12px;
  color: #504841;
}

.post-single__container {
  margin: 80px auto;
  max-width: 790px;
}
.post-single__container figure {
  max-width: 100%;
}
.post-single__container figcaption {
  font-size: 0.875rem;
  margin-top: 10px;
  line-height: 1.2;
}
.post-single__container p {
  margin: 0 0 1.875rem;
}
.post-single__container h2, .post-single__container h3, .post-single__container h4 {
  color: #504841;
  margin: 0 0 1.875rem;
}
.post-single__container h2 a, .post-single__container h3 a, .post-single__container h4 a {
  color: #504841;
  font-weight: normal;
  text-decoration: underline;
}
.post-single__container h2 a strong, .post-single__container h3 a strong, .post-single__container h4 a strong {
  font-weight: normal;
}
.post-single__container h2 strong, .post-single__container h3 strong, .post-single__container h4 strong {
  font-weight: normal;
}

.post-single__title {
  margin-bottom: 50px;
}

.post-single__share-container {
  margin-top: 140px;
}

.post-single__share {
  background: #FFF;
  border: 1px solid #a6652f;
  display: flex;
  justify-content: center;
  padding: 15px;
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.post-single__share-line {
  position: relative;
}
.post-single__share-line::before {
  background: #a6652f;
  content: "";
  display: block;
  height: 1px;
  top: 50%;
  left: 0;
  position: absolute;
  width: 100%;
}

.post-single__share-outline {
  margin: 0 auto;
  position: relative;
  max-width: 360px;
}
.post-single__share-outline::after {
  border: 1px solid #a6652f;
  content: "";
  height: 100%;
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  z-index: 1;
}

.share-icon {
  background: center/contain no-repeat;
  display: block;
  flex: 0 1 auto;
  height: 30px;
  margin: 0 4px;
  width: 30px;
}

.share-icon--fb {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='30' viewBox='0 0 30 30' width='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m30 15c0-8.284-6.716-15-15-15s-15 6.716-15 15c0 7.487 5.485 13.692 12.656 14.818v-10.482h-3.808v-4.336h3.808v-3.305c0-3.76 2.24-5.836 5.666-5.836 1.641 0 3.358.293 3.358.293v3.692h-1.892c-1.863 0-2.444 1.156-2.444 2.342v2.814h4.16l-.665 4.336h-3.495v10.482c7.17-1.126 12.656-7.331 12.656-14.818' fill='%23af6e36'/%3E%3Cpath d='m20.839 19.336.665-4.336h-4.16v-2.814c0-1.186.58-2.342 2.444-2.342h1.892v-3.692s-1.717-.293-3.358-.293c-3.426 0-5.666 2.077-5.666 5.836v3.305h-3.808v4.336h3.808v10.482c.764.12 1.547.182 2.344.182s1.58-.062 2.344-.182v-10.482z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}

.share-icon--twitter {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='30' viewBox='0 0 30 30' width='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m30 15c0 8.288-6.712 15-15 15-8.287 0-15-6.712-15-15 0-8.287 6.713-15 15-15 8.288 0 15 6.713 15 15zm-17.745 7.913c6.652 0 10.29-5.513 10.29-10.29 0-.158 0-.316-.008-.465.706-.51 1.32-1.148 1.808-1.875-.645.285-1.342.48-2.078.57.75-.45 1.32-1.155 1.59-2.003-.697.412-1.47.713-2.294.877-.66-.704-1.598-1.14-2.64-1.14-1.995 0-3.615 1.62-3.615 3.616 0 .285.03.562.097.825-3.007-.15-5.67-1.59-7.455-3.78-.308.532-.487 1.155-.487 1.815 0 1.252.637 2.362 1.612 3.007-.592-.015-1.147-.18-1.635-.45v.045c0 1.755 1.245 3.21 2.902 3.547-.3.083-.622.128-.952.128-.232 0-.458-.023-.683-.067.458 1.44 1.793 2.482 3.375 2.512-1.237.968-2.797 1.545-4.492 1.545-.292 0-.577-.015-.862-.052 1.582 1.035 3.487 1.635 5.527 1.635' fill='%23af6e36'/%3E%3C/svg%3E");
}

.share-icon--linkedin {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='30' viewBox='0 0 30 30' width='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='15' cy='15' fill='%23af6e36' r='15'/%3E%3Cpath d='m6 16h3.276v-6.002c0-.322.02-.642.108-.872.236-.642.775-1.306 1.68-1.306 1.185 0 1.66.985 1.66 2.43v5.75h3.276v-6.163c0-3.302-1.617-4.837-3.772-4.837-1.767 0-2.542 1.077-2.974 1.81h.022v-1.558h-3.276c.043 1.007 0 10.748 0 10.748m-4.012-12c1.242 0 2.012-.888 2.012-2-.021-1.135-.77-2-1.988-2s-2.012.865-2.012 2c0 1.112.771 2 1.965 2zm-1.988 12h4v-11h-4z' fill='%23fff' transform='translate(7 6)'/%3E%3C/g%3E%3C/svg%3E");
}

.job-opening__details {
  align-items: center;
  display: flex;
  font-weight: bold;
  margin-bottom: 20px;
}
.job-opening__details div + div::before {
  border-bottom: 1px solid #a6652f;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  width: 30px;
}

.job-opening__content {
  padding-bottom: 140px;
}

.fc-apr-banner + .fc-cta-text-area {
  padding-top: 0;
}
.fc-apr-banner + .fc-service-steps {
  padding-top: 0;
}
.fc-apr-banner + .fc-cta-text-area {
  padding: 0 !important;
}
.fc-apr-banner + .fc-featured-cta {
  padding-top: 0;
}

.apr-banner {
  padding: 5rem 0;
  position: relative;
}
.apr-banner__faqs {
  padding: 0;
}
.apr-banner__background-half {
  position: absolute;
  width: 100%;
  height: 50%;
}
.apr-banner__background-half.top {
  top: 0;
  left: 0;
}
.apr-banner__background-half.bottom {
  bottom: 0;
  left: 0;
}
.apr-banner__background-half.bottom.faqs {
  background-color: #e8f3f0;
}
.apr-banner__background-half.bottom.services {
  background-color: #140f0a;
}
.apr-banner__wrapper {
  background-color: #ffffff;
  border: 1px solid #a6652f;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .apr-banner__wrapper {
    padding: 2.5rem 0;
  }
}
.apr-banner__percentage {
  border-bottom: 1px solid #d6d1cb;
  margin: 0 0 1.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .apr-banner__percentage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border: 0;
    left: 15px;
    right: 15px;
  }
}
.apr-banner__percentage .subtitle, .apr-banner__percentage .underlined-link, .apr-banner__percentage .breadcrumbs, .apr-banner__percentage .blog-filter__item {
  color: #a6652f;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
.apr-banner__percentage h2 {
  font-size: 1.625rem;
  margin: 0 0 1.875rem;
}
@media (min-width: 768px) {
  .apr-banner__percentage h2 {
    font-size: 2.75rem;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .apr-banner__content {
    padding-right: 30px;
  }
}
@media (min-width: 768px) {
  .apr-banner__content:after {
    position: absolute;
    content: "";
    left: -4%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d6d1cb;
  }
}
@media (min-width: 1200px) {
  .apr-banner__content:after {
    left: -2%;
  }
}

.fc-content-quote {
  padding: 5rem 0;
}
.fc-content-quote + .fc-apr-banner {
  margin-top: -80px;
}
.fc-content-quote + .fc-usp-icons {
  padding-top: 0;
}

.content-quote__heading {
  margin-bottom: 50px;
  text-align: center;
}

.content-quote__content {
  padding: 0 0 5rem;
}
@media (min-width: 992px) {
  .content-quote__content {
    padding: 0;
  }
}
.content-quote__content .subtitle, .content-quote__content .underlined-link, .content-quote__content .breadcrumbs, .content-quote__content .blog-filter__item {
  margin: 0 0 1.25rem;
}
.content-quote__content .title-underline {
  font-size: 1.625rem;
}
@media (min-width: 992px) {
  .content-quote__content .title-underline {
    font-size: 2.5rem;
  }
}
.content-quote__content .title-underline:after {
  margin: 1.875rem 0 1.875rem;
}
.content-quote__content ul li {
  font-size: 0.875rem;
}
.content-quote__content p:last-child,
.content-quote__content ul:last-child {
  margin: 0;
}

.fc-cta-text-area {
  padding: 3.75rem 0;
}
@media (min-width: 992px) {
  .fc-cta-text-area {
    padding: 5rem 0 0;
  }
}
.fc-cta-text-area .cta-text-area__cta .subtitle, .fc-cta-text-area .cta-text-area__cta .underlined-link, .fc-cta-text-area .cta-text-area__cta .breadcrumbs, .fc-cta-text-area .cta-text-area__cta .blog-filter__item {
  color: #a6652f;
  margin: 0 0 0.625rem;
}
@media (min-width: 992px) {
  .fc-cta-text-area .cta-text-area__cta .subtitle, .fc-cta-text-area .cta-text-area__cta .underlined-link, .fc-cta-text-area .cta-text-area__cta .breadcrumbs, .fc-cta-text-area .cta-text-area__cta .blog-filter__item {
    margin: 0 0 1.25rem;
  }
}
.fc-cta-text-area .cta-text-area__cta h2 {
  font-size: 1.625rem;
  margin: 0 0 1.875rem;
}
@media (min-width: 992px) {
  .fc-cta-text-area .cta-text-area__cta h2 {
    font-size: 2.75rem;
    margin: 0 0 2.5rem;
  }
}
.fc-cta-text-area .cta-text-area__cta .btn, .fc-cta-text-area .cta-text-area__cta .underlined-link {
  margin: 0 0 40px;
}
.faq__background {
  background: #e8f3f0;
  padding: 5rem 0;
}
@media (min-width: 576px) {
  .faq__background {
    padding: 6.25rem 0;
  }
}

.faq__container {
  padding: 0 0.9375rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
@media (min-width: 576px) {
  .faq__container {
    padding: 0 1.875rem;
  }
}

.faq__accordion {
  position: relative;
}

.fc-featured-background {
  position: relative;
  background-color: #eae8e5;
  padding: 2.8125rem 0 5rem;
}
@media (min-width: 768px) {
  .fc-featured-background {
    padding: 5rem 0;
  }
}
@media (min-width: 992px) {
  .fc-featured-background {
    padding: 8.125rem 0;
  }
}
.fc-featured-background + .fc-full-width-form {
  padding-top: 1.875rem;
}
.fc-featured-background .featured-background__background-image {
  display: none;
}
@media (min-width: 1200px) {
  .fc-featured-background .featured-background__background-image {
    display: block;
  }
}
.fc-featured-background .featured-background__cut-out {
  position: relative;
  width: 100%;
  padding-top: 560px;
  margin-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .fc-featured-background .featured-background__cut-out {
    padding-top: 460px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .fc-featured-background .featured-background__cut-out {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    left: 15px;
    right: 15px;
  }
}
.fc-featured-background .featured-background__logo {
  position: absolute;
  top: 20px;
  right: 20px;
}
.fc-featured-background .featured-background__quote {
  padding: 5rem 0 3.75rem;
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1.9;
  font-style: italic;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/quote.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  border-bottom: 1px solid #d6d1cb;
}
@media (min-width: 992px) {
  .fc-featured-background .featured-background__quote {
    font-size: 1.625rem;
    line-height: 1.62;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
    border: 0;
  }
}
.fc-featured-background .featured-background__content {
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  .fc-featured-background .featured-background__content {
    padding-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  .fc-featured-background .featured-background__content {
    padding-top: 0;
  }
}
.fc-featured-background .featured-background__content .subtitle, .fc-featured-background .featured-background__content .underlined-link, .fc-featured-background .featured-background__content .breadcrumbs, .fc-featured-background .featured-background__content .blog-filter__item {
  color: #a6652f;
}
.fc-featured-background .featured-background__content .underlined-link {
  margin: 30px 0 0;
}
.fc-featured-background .featured-background__line-break {
  display: none;
  position: absolute;
  width: 1px;
  top: 0;
  left: -40px;
  height: 100%;
  background-color: #d6d1cb;
}
@media (min-width: 992px) {
  .fc-featured-background .featured-background__line-break {
    display: block;
  }
}
@media (min-width: 992px) {
  .fc-featured-background .featured-background__line-break {
    left: -48px;
  }
}

.fc-full-width-cta {
  padding: 1.875rem 0;
  background: #e8f3f0;
}

.full-width-cta__container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0.9375rem;
  width: 100%;
}
@media (min-width: 992px) {
  .full-width-cta__container {
    max-width: 900px;
  }
}

.full-width-cta__logo {
  text-align: center;
  width: 100%;
  margin: 0 0 30px;
}
.full-width-cta__logo:last-child {
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-cta__logo {
    width: 33.333%;
    margin: 0;
  }
}
.full-width-cta__logo picture, .full-width-cta__logo .trustpilot-widget {
  max-width: 222px;
  margin: 0 auto;
}

.fc-full-width-form {
  padding: 1.875rem 0;
}
@media (min-width: 768px) {
  .fc-full-width-form {
    padding: 1.875rem;
  }
}
.fc-full-width-form + .fc-apr-banner {
  margin-top: -40px;
}

.enquiry-form__container {
  background: #eae8e5;
  margin: 0 auto;
  max-width: 1492px;
  padding: 5rem 0;
  width: 100%;
}
@media (min-width: 576px) {
  .enquiry-form__container {
    padding: 1.875rem;
  }
}

.enquiry-form__background {
  background: url("../images/form-background.svg") center/contain no-repeat;
}
@media (min-width: 576px) {
  .enquiry-form__background {
    padding: 40px;
  }
}

@media (min-width: 576px) {
  .enquiry-form__border {
    border: 1px solid #a6652f;
  }
}
@media (min-width: 576px) {
  .enquiry-form__border {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .enquiry-form__border {
    padding: 120px 0;
  }
}

.enquiry-form__container--narrow .enquiry-form__border {
  padding: 0;
}

.enquiry-form__intro {
  margin: 0 auto 40px;
  max-width: 650px;
  text-align: center;
  width: 100%;
}

.enquiry-form__title {
  max-width: 500px;
  margin: 0 auto 40px;
}

.enquiry-form__form {
  margin: 0 auto;
  max-width: 950px;
  width: 100%;
}

.hero__container {
  align-items: center;
  background: #140f0a;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  z-index: 0;
  min-height: 600px;
  padding-top: 80px !important;
}
@media (min-width: 768px) {
  .hero__container {
    padding-top: 0px;
    padding-bottom: 0;
  }
}
.hero__container + .fc-team-grid {
  padding: 3.75rem 0 0;
}
.hero__container + .fc-job-openings-grid {
  padding-bottom: 0;
}
.hero__container .hidden {
  position: absolute;
  left: -999em;
}
.hero__container::before {
  background: linear-gradient(0deg, rgba(30, 30, 30, 0.43) 19.57%, rgba(25, 22, 20, 0.76) 29.06%, rgba(20, 15, 10, 0.9) 100%);
  background-blend-mode: multiply;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__container::before {
    background: linear-gradient(0deg, rgba(30, 30, 30, 0.43) 19.57%, rgba(25, 22, 20, 0.56) 29.06%, rgba(20, 15, 10, 0.79) 100%);
  }
}
.hero__background-overlay {
  background-position: center center;
  background-attachment: fixed;
  height: 120%;
  position: absolute;
  width: 100%;
}
@media (max-width: 767.98px) {
  .hero__picture {
    object-fit: cover;
    width: 150%;
    height: 150%;
    transform: translate(-25%, -25%);
  }
}
.hero__picture--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__picture--desktop {
    display: block;
  }
}
@media (min-width: 768px) {
  .hero__picture--mobile {
    display: none;
  }
}
.hero__title {
  font-size: 1.625rem;
  line-height: 120%;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__content {
  color: #ffffff;
  flex: 0 1 auto;
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease-in-out;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero__content {
    padding-top: 0;
  }
}
.hero__content p {
  font-size: 1rem;
}
.hero__content-inner {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.25rem 1rem !important;
}
@media (min-width: 576px) {
  .hero__content-inner {
    padding-top: 2rem !important;
  }
}
@media (min-width: 768px) {
  .hero__content-inner {
    padding-top: 5rem !important;
  }
}
.hero__intro {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 160%;
}
.hero__intro ul {
  margin: 0 0 2.5rem;
}
.hero__rate {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin: 1rem auto 2rem;
}
@media (min-width: 768px) {
  .hero__rate {
    font-size: 24px;
  }
}
.hero__rate strong {
  color: #7bccc6;
  font-weight: bolder;
}
.hero__buttons {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1rem;
}
@media (min-width: 768px) {
  .hero__buttons {
    margin: 2rem 0;
  }
}
.hero__buttons .btn {
  align-items: center;
  border: none;
  border-radius: 6px;
  color: #140f0a;
  display: block;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.84px;
  line-height: 20.5px;
  margin: 0 !important;
  min-width: 306px;
  padding: 12px 5px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.hero__buttons .btn::after {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  right: 15px;
}
.hero__buttons .btn--primary {
  background-color: #c5e6de;
}
.hero__buttons .btn--primary:not(:disabled):active {
  color: #140f0a;
  background-color: #88cbc7;
}
.hero__buttons .btn--primary:not(:disabled):active, .hero__buttons .btn--primary:not(:disabled):active:focus, .hero__buttons .btn--primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(197, 230, 222, 0.5);
}
.hero__form {
  margin: 20px auto 0;
  background: #ffffff;
  border-radius: 1.625rem;
  box-shadow: 0.036rem 0.036rem 0 0 rgba(20, 15, 10, 0.22);
  color: #140f0a;
  margin: 0 auto;
  max-width: 550px;
  padding: 1.25rem;
  text-align: left;
}
@media (min-width: 768px) {
  .hero__form {
    width: 550px;
  }
}
.hero__content-inner {
  padding: 1rem;
  width: 100%;
}
.hero__telephone {
  border-bottom: solid 1px #7bccc6;
  order: 1000;
  padding-bottom: 6px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin: 0 auto 2rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero__telephone {
    order: unset;
  }
}
.hero__trustpilot {
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .hero__trustpilot {
    margin: 0 auto 1rem;
  }
}
.hero--center .hero__content-inner {
  margin: 0 auto;
  max-width: 1260px;
  text-align: center;
}
.hero--center .hero__trustpilot iframe {
  margin: 0 auto;
}
.hero--left {
  justify-content: flex-start;
}
.hero--left .hero__content {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .hero--left .hero__content {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hero--left .hero__content {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hero--left .hero__content {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .hero--left .hero__content {
    max-width: 1145px;
  }
}
.hero--left .hero__content-inner {
  max-width: 670px;
}
.hero--left .hero__trustpilot {
  margin: 0;
}
.hero--left .hero__buttons {
  justify-content: flex-start;
}
.hero--height-normal .hero__container {
  height: 895px;
}
.hero--height-narrow .hero__container {
  height: 640px;
}

.page-id-194 .hero__content-inner, .page-id-118105 .hero__content-inner {
  min-height: calc(100vh - 260px) !important;
}

.fc-image-text-left-right + .fc-featured-cta {
  padding-top: 0;
}

.image-text-left-right {
  padding: 4.375rem 0 5rem;
}
@media (min-width: 992px) {
  .image-text-left-right {
    padding: 6.25rem 0;
  }
}
.image-text-left-right.grey {
  background-color: #eae8e5;
}
.image-text-left-right.white {
  background-color: #ffffff;
}
.image-text-left-right .subtitle, .image-text-left-right .underlined-link, .image-text-left-right .breadcrumbs, .image-text-left-right .blog-filter__item {
  color: #a6652f;
  margin: 0 0 1.25rem;
}
.image-text-left-right .container {
  position: relative;
}
.image-text-left-right .btn--secondary {
  max-width: 220px;
}
.image-text-left-right__content {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  transform: none;
}
@media (min-width: 1200px) {
  .image-text-left-right__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
  }
}
.image-text-left-right__image {
  margin: 0 0 3.125rem;
}
@media (min-width: 768px) {
  .image-text-left-right__image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    left: 15px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .image-text-left-right__image {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
  }
}
.image-text-left-right__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.image-text-left-right__floating-logo {
  border: 1px solid #ffffff;
  padding: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -33px;
}
@media (min-width: 992px) {
  .image-text-left-right__floating-logo {
    bottom: -60px;
  }
}
.image-text-left-right__floating-logo-wrapper {
  background: white;
  padding: 10px;
  width: 240px;
  width: 170px;
}
@media (min-width: 768px) {
  .image-text-left-right__floating-logo-wrapper {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .image-text-left-right__floating-logo-wrapper {
    width: 280px;
    padding: 25px 50px;
  }
}
.image-text-left-right__ctas {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .image-text-left-right__ctas {
    flex-direction: row;
  }
}
.image-text-left-right__btn {
  padding: 0 0 1.25rem;
}
@media (min-width: 576px) {
  .image-text-left-right__btn {
    padding: 0;
  }
}
.image-text-left-right__or-separator {
  padding: 0 0 1.25rem;
}
@media (min-width: 576px) {
  .image-text-left-right__or-separator {
    padding: 1.0625rem 2rem;
    line-height: 1;
  }
}
.image-text-left-right__telephone a {
  font-size: 1.125rem;
  font-weight: bold;
  color: #504841;
  border-bottom: 1px solid #a6652f;
}
@media (min-width: 576px) {
  .image-text-left-right__telephone {
    padding: 10px 0px;
  }
}

.fc-job-openings-grid {
  padding: 5rem 0;
}

.job-grid__intro {
  margin: 0 auto 60px;
  max-width: 560px;
  text-align: center;
  width: 100%;
}

.fc-service-ctas {
  padding: 5rem 0;
}
.fc-service-ctas + .fc-cta-text-area {
  padding: 0 !important;
}
@media (min-width: 768px) {
  .fc-service-ctas .service-ctas__intro {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .fc-service-ctas .service-ctas__intro {
    max-width: 760px;
  }
}
.fc-service-ctas .service-ctas__intro p {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .fc-service-ctas .service-ctas__intro p {
    margin-bottom: 3.75rem;
  }
}
.fc-service-ctas .service-ctas__carousel-container {
  position: relative;
}
.fc-service-ctas .service-ctas__carousel-arrows {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .fc-service-ctas .service-ctas__carousel-arrows {
    display: none;
  }
}

.service-ctas__card-container {
  height: 100%;
}

.fc-service-steps {
  background-color: #140f0a;
  padding: 5rem 0;
}
@media (min-width: 1200px) {
  .fc-service-steps {
    padding: 8.75rem 0;
  }
}
.fc-service-steps + .fc-trustpilot-reviews {
  padding: 5rem 0 0;
}
.fc-service-steps .service-steps__title {
  text-align: center;
}
.fc-service-steps .service-steps__title .subtitle, .fc-service-steps .service-steps__title .underlined-link, .fc-service-steps .service-steps__title .breadcrumbs, .fc-service-steps .service-steps__title .blog-filter__item {
  color: #a6652f;
}
.fc-service-steps .service-steps__title .title-underline {
  color: #ffffff;
}
.fc-service-steps .service-steps__title .title-underline:after {
  margin: 30px auto;
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__title .title-underline:after {
    margin: 30px auto 60px;
  }
}
.fc-service-steps .service-steps__slides {
  color: #ffffff;
}
.fc-service-steps .service-steps__slick .slick-dots {
  top: 0;
  bottom: auto;
  display: flex;
  justify-content: space-between;
}
.fc-service-steps .service-steps__slick .slick-dots li {
  width: 50px;
  height: 50px;
  margin: 0;
}
.fc-service-steps .service-steps__slick .slick-dots .slick-number {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  line-height: 1;
  padding: 1.0625rem 0;
  color: #867e76;
}
.fc-service-steps .service-steps__slick .slick-dots .slick-active .slick-number {
  color: #ffffff;
}
.fc-service-steps .service-steps__slick .slick-dots .slick-active .slick-number:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #a6652f;
}
.fc-service-steps .service-steps__images-slick {
  padding: 5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__images-slick {
    padding: 0;
  }
  .fc-service-steps .service-steps__images-slick .slick-dots {
    display: none !important;
  }
}
.fc-service-steps .service-steps__text-slick .slick-dots {
  display: none !important;
  width: auto;
  left: 30px;
  right: 30px;
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__text-slick .slick-dots {
    display: flex !important;
  }
}
.fc-service-steps .service-steps__text-wrapper {
  position: relative;
}
@media (min-width: 992px) {
  .fc-service-steps .service-steps__text-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
  }
}
.fc-service-steps .service-steps__text-wrapper:before {
  display: none;
  content: "";
  position: absolute;
  width: 1px;
  top: -20%;
  bottom: -20%;
  background: #504841;
  left: -20%;
}
@media (min-width: 992px) {
  .fc-service-steps .service-steps__text-wrapper:before {
    display: block;
  }
}
.fc-service-steps .service-steps__text-wrapper .carousel-arrow {
  display: none !important;
  width: 8px;
  height: 8px;
  top: 20px;
  background-image: none;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #ffffff;
  padding: 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__text-wrapper .carousel-arrow {
    display: block !important;
  }
}
.fc-service-steps .service-steps__text-wrapper .carousel-arrow.next {
  border-right: 1px solid #ffffff;
  transform: rotateZ(-45deg);
}
.fc-service-steps .service-steps__text-wrapper .carousel-arrow.prev {
  border-left: 1px solid #ffffff;
  transform: rotateZ(45deg);
}
.fc-service-steps .service-steps__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.fc-service-steps .service-steps__content {
  padding-top: 0;
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__content {
    padding-top: 5rem;
  }
}
@media (min-width: 768px) {
  .fc-service-steps .service-steps__content {
    padding-top: 6.25rem;
  }
}
.fc-service-steps .service-steps__content h3 {
  font-size: 1.625rem;
}
.fc-service-steps .service-steps__content p {
  margin: 0;
}

.fc-team-grid + .fc-trustpilot-score {
  margin-bottom: 30px;
}
.fc-team-grid + .fc-trustpilot-score {
  padding: 3.125rem 0 0;
}
@media (min-width: 992px) {
  .fc-team-grid + .fc-trustpilot-score {
    padding: 0;
  }
}

.team-card {
  height: 100%;
  margin: 0 auto;
  max-width: 362px;
  padding: 7px 0;
}
@media (min-width: 576px) {
  .team-card {
    padding: 15px 0;
  }
}

.team-grid__container {
  position: relative;
}

@media (min-width: 576px) {
  .team-grid__content {
    margin-bottom: 1.25rem;
  }
}

.team-card__inner {
  border: 1px solid #d6d1cb;
  height: 100%;
}

.team-card__content {
  padding: 16px;
}
@media (min-width: 576px) {
  .team-card__content {
    padding: 32px;
  }
}

.team-card__job-title {
  font-weight: bold;
  margin: 0;
}

.team-card__links {
  display: flex;
  margin-top: 22px;
}
.team-card__links .social-icon {
  flex: 0 1 auto;
}
.team-card__links .social-icon + .social-icon {
  margin-left: 5px;
}

.team-grid__carousel {
  margin-left: -15px;
  margin-right: -15px;
}
.team-grid__carousel .team-card {
  padding: 0 15px;
}
.team-grid__carousel.slick-initialized .slick-track {
  display: flex;
}
.team-grid__carousel.slick-initialized .slick-track .slick-slide {
  display: flex;
  height: auto;
  justify-content: center;
}

@media (min-width: 992px) {
  .team-grid__carousel-arrows {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.team-grid__carousel-arrows .carousel-arrows__container {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
}
@media (min-width: 768px) {
  .team-grid__carousel-arrows .carousel-arrows__container {
    left: -20px;
    right: -20px;
  }
}
@media (min-width: 992px) {
  .team-grid__carousel-arrows .carousel-arrows__container {
    width: 100%;
    left: -60px;
    width: calc(100% + 120px);
  }
}

.fc-team-testimonials {
  padding: 5rem 0;
}
.fc-team-testimonials + .fc-content-quote {
  padding-top: 0;
}
.fc-team-testimonials .team-testimonials__intro {
  text-align: center;
}
.fc-team-testimonials .team-testimonials__intro .subtitle, .fc-team-testimonials .team-testimonials__intro .underlined-link, .fc-team-testimonials .team-testimonials__intro .breadcrumbs, .fc-team-testimonials .team-testimonials__intro .blog-filter__item {
  color: #a6652f;
  margin-bottom: 1.25rem;
}
.fc-team-testimonials .team-testimonials__intro h2 {
  font-size: 1.625rem;
  padding: 0 0.625rem;
  margin: 0 0 1.25rem;
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__intro h2 {
    font-size: 2.75rem;
  }
}
.fc-team-testimonials .team-testimonials__testmonials-wrapper {
  position: relative;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/form-background.svg");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__testmonials-wrapper {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__testmonials {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
  }
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__testmonials-inner {
    max-width: 755px;
    margin: 0 auto;
  }
}
.fc-team-testimonials .team-testimonials__team-quote p {
  font-size: 1.375rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1.9;
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__team-quote p {
    font-size: 1.5rem;
  }
}
.fc-team-testimonials .team-testimonials__team-quote .subtitle, .fc-team-testimonials .team-testimonials__team-quote .underlined-link, .fc-team-testimonials .team-testimonials__team-quote .breadcrumbs, .fc-team-testimonials .team-testimonials__team-quote .blog-filter__item {
  color: #a6652f;
}
.fc-team-testimonials .team-testimonials__quote-icon {
  height: 113px;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/quote.svg");
  background-size: 60px;
  background-position: 0% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__carousel-arrows {
    position: absolute;
    left: -15px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
  }
}
.fc-team-testimonials .team-testimonials__carousel-arrows-container {
  position: relative;
  width: 100px;
  height: 40px;
  margin: 0 auto 40px;
}
@media (min-width: 992px) {
  .fc-team-testimonials .team-testimonials__carousel-arrows-container {
    width: 100%;
    margin: 0;
    transform: translateY(-50%);
  }
}

.fc-trustpilot-reviews {
  padding: 2.5rem 0;
}
@media (min-width: 992px) {
  .fc-trustpilot-reviews {
    padding: 5rem 0;
  }
}
.fc-trustpilot-reviews .trustpilot-reviews__intro {
  text-align: center;
}
.fc-trustpilot-reviews .trustpilot-reviews__intro .subtitle, .fc-trustpilot-reviews .trustpilot-reviews__intro .underlined-link, .fc-trustpilot-reviews .trustpilot-reviews__intro .breadcrumbs, .fc-trustpilot-reviews .trustpilot-reviews__intro .blog-filter__item {
  color: #a6652f;
  margin-bottom: 1.25rem;
}
.fc-trustpilot-reviews .trustpilot-reviews__intro .title-underline:after {
  margin-bottom: 2.5rem;
}
.fc-trustpilot-reviews .trustpilot-reviews__reviews {
  position: relative;
}
@media (min-width: 992px) {
  .fc-trustpilot-reviews .trustpilot-reviews__carousel-arrows {
    position: absolute;
    left: -15px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
  }
}
.fc-trustpilot-reviews .trustpilot-reviews__carousel-arrows-container {
  position: relative;
  width: 100px;
  height: 40px;
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .fc-trustpilot-reviews .trustpilot-reviews__carousel-arrows-container {
    width: 100%;
    margin: 0;
    transform: translateY(-50%);
  }
}

.review-container a:hover, .review-container a:focus {
  outline: 0;
  text-decoration: none;
}

.trustpilot-card {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .trustpilot-card {
    max-width: 240px;
  }
}
@media (min-width: 1200px) {
  .trustpilot-card {
    max-width: 280px;
  }
}
.trustpilot-card__quote {
  font-size: 1.375rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  color: #504841;
}
@media (min-width: 768px) {
  .trustpilot-card__quote {
    min-height: 66px;
  }
}
.trustpilot-card__stars {
  width: 158px;
  height: 30px;
  background-image: url("/wp-content/themes/oracle-finance/assets/images/trustpilot-5-stars.svg");
  background-repeat: no-repeat;
  margin-bottom: 1.875rem;
}
.trustpilot-card__review {
  color: #504841;
  line-height: 2;
}
.trustpilot-card__date {
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #2f3231;
}
.trustpilot-card__name {
  color: #504841;
}

.fc-trustpilot-score {
  margin-bottom: 60px;
}

.trustpilot-score__description, .trustpilot-score__description p {
  font-size: 1.125rem;
  margin-top: 20px;
}

.fc-trustpilot-score + .fc-apr-banner .apr-banner {
  padding-top: 0;
}

.fc-usp-icons {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .fc-usp-icons {
    padding: 5rem 0;
  }
}
.fc-usp-icons + .fc-trustpilot-reviews {
  padding-top: 1.25rem;
}
@media (min-width: 992px) {
  .fc-usp-icons + .fc-trustpilot-reviews {
    padding-top: 3.75rem;
  }
}
.fc-usp-icons + .fc-team-grid {
  padding-top: 0px;
}
.fc-usp-icons + .fc-apr-banner {
  margin-top: -80px;
}
.fc-usp-icons .usp-icons__wrapper {
  padding: 2.5rem 0 0.625rem;
  border-top: 1px solid #d6d1cb;
  border-bottom: 1px solid #d6d1cb;
}
.fc-usp-icons .usp-icons__tick {
  position: absolute;
  top: 0;
  left: 15px;
  width: 50px;
}
.fc-usp-icons .usp-icons__content {
  padding-left: 4.6875rem;
  padding-bottom: 1.875rem;
}
.fc-usp-icons .usp-icons__content h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.fc-usp-icons .usp-icons__content p {
  margin: 0;
}

.fc-video {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 1200px) {
  .fc-video {
    padding: 8.75rem 0;
  }
}
.fc-video .video__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.fc-video .video__wrapper .vimeo-player {
  position: absolute;
  opacity: 0;
}
.fc-video .video__overlay {
  background-image: url("/wp-content/themes/oracle-finance/assets/images/form-background.svg");
  background-size: contain;
  background-size: 80%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: black;
  opacity: 0.7;
}
.fc-video .video__play-btn {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: #ffffff;
  margin: 0;
  border-radius: 50%;
  text-transform: uppercase;
  padding: 1.375rem 0.625rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .fc-video .video__play-btn {
    padding: 2.0625rem 1.375rem;
  }
}
.fc-video .video__play-btn:hover {
  text-decoration: none;
  transition: 0.2s;
  padding: 2rem 1.25rem;
}
@media (min-width: 768px) {
  .fc-video .video__play-btn:hover {
    padding: 2.625rem 1.875rem;
  }
}

.fc-child-pages-grid {
  padding: 80px 0 20px;
}

.child-page__item {
  display: block;
  margin-bottom: 30px;
  padding-top: 100%;
  position: relative;
}
.child-page__item::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.child-page__content {
  padding: 18px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.child-page__title {
  color: #FFF;
  font-size: 22px;
  padding-bottom: 20px;
}

.fc-office-details {
  padding: 3.75rem 0;
}
@media (min-width: 992px) {
  .fc-office-details {
    padding: 5rem 0 5rem;
  }
}
.fc-office-details .office-details__cta .subtitle, .fc-office-details .office-details__cta .underlined-link, .fc-office-details .office-details__cta .breadcrumbs, .fc-office-details .office-details__cta .blog-filter__item {
  color: #a6652f;
  margin: 0 0 0.625rem;
}
@media (min-width: 992px) {
  .fc-office-details .office-details__cta .subtitle, .fc-office-details .office-details__cta .underlined-link, .fc-office-details .office-details__cta .breadcrumbs, .fc-office-details .office-details__cta .blog-filter__item {
    margin: 0 0 1.25rem;
  }
}
.fc-office-details .office-details__cta h2 {
  font-size: 1.625rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 992px) {
  .fc-office-details .office-details__cta h2 {
    font-size: 2rem;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1200px) {
  .fc-office-details .office-details__cta h2 {
    font-size: 2.5rem;
  }
}
.fc-office-details .office-details__entry-container {
  position: relative;
}
@media (min-width: 768px) {
  .fc-office-details .office-details__entry-container {
    padding-top: 1.625rem;
  }
}
@media (min-width: 992px) {
  .fc-office-details .office-details__entry-container {
    padding-top: 2.375rem;
  }
}
.fc-office-details .office-details__entry-container:after {
  display: none;
  position: absolute;
  content: " ";
  left: -4%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #a6652f;
}
@media (min-width: 768px) {
  .fc-office-details .office-details__entry-container:after {
    display: block;
  }
}
@media (min-width: 992px) {
  .fc-office-details .office-details__entry-container:after {
    left: -10%;
  }
}
.fc-office-details .office-details__entry {
  margin: 0 0 2.5rem;
}
.fc-office-details .office-details__entry h3 {
  font-size: 1.375rem;
  margin: 0 0 1.5625rem;
}
.fc-office-details .office-details__entry p {
  line-height: 2;
}
.fc-office-details .office-details__entry p:last-child {
  margin: 0;
}
.fc-office-details .office-details__entry:last-child {
  margin: 0;
}
.fc-office-details .office-details__tel {
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #120d09;
  margin: 0 0 0.3125rem;
}
.fc-office-details .office-details__tel:last-child {
  margin: 0;
}

.sticky-mobile-cta {
  position: fixed;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  display: none;
  transition: ease-out 0.3s;
}

.sticky-mobile-cta-item:nth-child(2n-1) {
  border-right: 1px solid #fff;
}

.sticky-mobile-cta-item {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-right: inherit !important;
  border-radius: unset;
}
.sticky-mobile-cta-item::after {
  display: none;
}

.sticky-mobile-cta-icon {
  font-size: 14px;
  padding-right: 4px;
}

.sticky-mobile-cta-label {
  vertical-align: middle;
  font-size: 1rem;
}

.page-id-194 .sticky-mobile-cta, .page-id-118105 .sticky-mobile-cta {
  display: flex;
}

/*# sourceMappingURL=oracle-finance.css.map */
