/*
 * Stylesheet : Echota Interiors
 * Created    : February 2023
 * -----------------------------------------------------------------------------------
 */
@import url('../fonts/SegoeUI.css');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,400;1,500&display=swap');
:root {
  --echota-white-rgb: 255, 255, 255;
  --echota-black-rgb: 0, 0, 0;
  --echota-body-color-rgb: 52, 52, 52;
  --echota-body-bg-rgb: 255, 255, 255;
  --echota-font-sans-serif: 'Jost', sans-serif;
  --echota-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --echota-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --echota-root-font-size: 18px;
  --echota-body-font-family: Jost, sans-serif;
  --echota-body-font-size: 1rem;
  --echota-body-font-weight: 400;
  --echota-body-line-height: 1.45;
  --echota-body-color: #343434;
  --echota-body-bg: #fff;
  --echota-border-width: 1px;
  --echota-border-style: solid;
  --echota-border-color: #dee2e6;
  --echota-border-color-translucent: rgba(0, 0, 0, 0.175);
  --echota-border-radius: 0.375rem;
  --echota-border-radius-sm: 0.25rem;
  --echota-border-radius-lg: 0.5rem;
  --echota-border-radius-xl: 1rem;
  --echota-border-radius-2xl: 2rem;
  --echota-border-radius-pill: 50rem;
  --echota-link-color: #1c4368;
  --echota-link-hover-color: #163653;
  --echota-code-color: #d63384;
  --echota-highlight-bg: #fff3cd;
}

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

:root {
  font-size: var(--echota-root-font-size);
}

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

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

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

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

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--echota-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--echota-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--echota-link-hover-color);
}

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

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--echota-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--echota-body-bg);
  background-color: var(--echota-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type='date']):not([type='datetime-local']):not([type='month']):not(
    [type='week']
  ):not([type='time'])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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

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

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

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

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

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

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.none {
  display: none !important;
}

.block {
  display: block !important;
}

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

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

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

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

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

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

.text-not-italic {
  font-style: normal !important;
}

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

.font-medium {
  font-weight: 500 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm-none {
    display: none !important;
  }
  .sm-block {
    display: block !important;
  }
  .sm-inline-block {
    display: inline-block !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .md-none {
    display: none !important;
  }
  .md-block {
    display: block !important;
  }
  .md-inline-block {
    display: inline-block !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .lg-none {
    display: none !important;
  }
  .lg-block {
    display: block !important;
  }
  .lg-inline-block {
    display: inline-block !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1280px) {
  .xl-none {
    display: none !important;
  }
  .xl-block {
    display: block !important;
  }
  .xl-inline-block {
    display: inline-block !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  .xxl-none {
    display: none !important;
  }
  .xxl-block {
    display: block !important;
  }
  .xxl-inline-block {
    display: inline-block !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  :root {
    font-size: 20px;
  }
}

b,
strong {
  font-weight: 500;
}

.site {
  overflow: clip;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
  clear: both;
}

.container {
  --echota-gutter-x: 2.5rem;
  --echota-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--echota-gutter-x) * 0.5);
  padding-left: calc(var(--echota-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.menu,
.submenu {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

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

.header {
  padding-top: 60px;
}

@media (min-width: 992px) {
  .header {
    padding-top: 0;
    position: relative;
  }
}

.header-bar {
  color: #fff;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

@media (min-width: 992px) {
  .header-bar {
    background-color: transparent;
    position: static;
  }
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 0;
}

@media (min-width: 992px) {
  .header-top {
    padding: 0;
  }
}

.header .menu-toggler {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 52px;
  height: 38px;
  margin-left: auto;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  position: relative;
}

.header .menu-toggler::before {
  content: '';
  display: block;
  position: absolute;
  inset: 1px;
  background-color: #fff;
  -webkit-mask: url('../images/icon-bars.svg') center/contain no-repeat;
  mask: url('../images/icon-bars.svg') center/contain no-repeat;
}

@media (min-width: 992px) {
  .header .menu-toggler {
    display: none !important;
  }
}

.header-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 110px;
  margin: 0;
}

@media (min-width: 992px) {
  .header-logo {
    width: 40.88542%;
    height: 26.82927%;
    padding-left: 4.16667%;
    position: absolute;
    left: 0;
    bottom: 37.39837%;
    z-index: 2;
  }
}

.header-logo a {
  display: block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  aspect-ratio: 3 / 1;
  background: #fff;
  -webkit-mask: url('../images/logo.png') center/contain no-repeat;
  mask: url('../images/logo.png') center/contain no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .header-logo a {
    -webkit-mask-image: url('../images/logo@2x.png');
    mask-image: url('../images/logo@2x.png');
  }
}

@media (min-width: 992px) {
  .header-logo a {
    height: 100%;
    margin: auto;
  }
}

.header-menu {
  display: none;
  padding-bottom: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.44;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .header-menu {
    display: block !important;
    width: 19.5rem;
    padding: 0;
    position: absolute;
    bottom: 37.39837%;
    right: 1.82292%;
  }
}

.header-menu .menu a {
  display: block;
  padding: 0.5rem 0;
  position: relative;
}

@media (min-width: 992px) {
  .header-menu .menu a {
    padding-left: 1.3rem;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
  }
  .header-menu .menu a:hover {
    margin-left: -1rem;
  }
  .header-menu .menu a span {
    position: relative;
    z-index: 3;
  }
}

.header-menu .menu a::before {
  content: '';
  display: block;
  height: 1px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, rgba(255, 255, 255, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.5) 25%,
    rgba(255, 255, 255, 0)
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 992px) {
  .header-menu .menu a::before {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#000),
      to(#fff)
    );
    background: linear-gradient(to right, #000, #fff);
    height: 100%;
    mix-blend-mode: multiply;
    z-index: 2;
  }
}

@media (min-width: 992px) {
  .header-menu .menu li + li {
    margin-top: 0.6rem;
  }
}

.header-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 300px;
  color: #fff;
  background-color: #707070;
  position: relative;
  z-index: 1;
}

.header-large::before {
  content: '';
  display: block;
  width: 40.88542%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000),
    to(#fff)
  );
  background: linear-gradient(to right, #000, #fff);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.75;
}

@media (min-width: 992px) {
  .header-large::before {
    opacity: 1;
  }
}

.header-image {
  width: 100%;
}

@media (min-width: 992px) {
  .header-image {
    aspect-ratio: 1920 / 615;
  }
}

.header-image img {
  width: 115%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  left: -10%;
}

@media (min-width: 768px) {
  .header-image img {
    width: 108%;
    left: -5%;
  }
}

@media (min-width: 992px) {
  .header-image img {
    width: 100%;
    left: 0;
  }
}

.header-image > img {
  position: absolute;
  top: 0;
  z-index: -1;
}

.header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 2em;
  margin-top: auto;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}

@media (min-width: 992px) {
  .header-title {
    width: 45.57292%;
    height: 29.26829%;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: inherit;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .header-title {
    font-size: 1.7rem;
  }
}

.header-title::before {
  content: '';
  display: block;
  background: radial-gradient(closest-side, #000, #fff);
  mix-blend-mode: multiply;
  opacity: 0.75;
  position: absolute;
  inset: -0.5rem;
  z-index: -1;
}

@media (min-width: 992px) {
  .header-title::before {
    display: none;
  }
}

.main {
  position: relative;
}

@media (min-width: 992px) {
  .main::before {
    content: '';
    display: block;
    width: 18.48958%;
    background: url('../images/bg-side.jpg') top right repeat-y;
    background-size: auto 101.35rem;
    opacity: 0.39;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .main::before {
    width: 11.09375%;
  }
}

.content {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  letter-spacing: 0.005em;
}

@media (min-width: 992px) {
  .content .main-section .container {
    padding-left: 18.75%;
    padding-right: 7.8125%;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .content .main-section .container {
    padding-left: 11.25%;
    padding-right: 4.6875%;
  }
}

.content .wrapper {
  max-width: 53.34rem;
  margin: auto;
}

@media (min-width: 1280px) {
  .content .wrapper {
    max-width: 62.75rem;
  }
}

.content .heading {
  margin-bottom: 2.5rem;
  font-size: 1.31rem;
  line-height: 1.43;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  color: #868686;
}

@media (min-width: 1280px) {
  .content .heading {
    font-size: 1.75rem;
  }
}

.content .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: -1rem;
}

@media (min-width: 768px) {
  .content .columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.content .columns .image {
  text-align: center;
}

@media (min-width: 768px) {
  .content .columns .image {
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.25896%;
    flex: 0 0 45.25896%;
  }
}

.content .columns .image img {
  border: 0.25rem solid #707070;
}

@media (min-width: 768px) {
  .content .columns .text {
    padding-right: 2.5%;
  }
}

.content a {
  font-weight: 500;
  text-decoration: none;
}

.content ol,
.content ul {
  padding-left: 0;
  list-style: none;
}

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

.footer-top {
  padding: 3rem 0;
  color: #000;
}

.footer-top a {
  color: inherit;
  text-decoration: none !important;
}

.footer-logo {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  width: 15rem;
  aspect-ratio: 3 / 1;
  margin: auto;
  margin-bottom: 1.75rem;
  background: #000;
  -webkit-mask: url('../images/logo.png') center/contain no-repeat;
  mask: url('../images/logo.png') center/contain no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .footer-logo {
    -webkit-mask-image: url('../images/logo@2x.png');
    mask-image: url('../images/logo@2x.png');
  }
}

.footer .address {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.005em;
}

.footer .address > li + li::before {
  content: '\00a0\2022\00a0';
}

.footer .contact {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin: 0 -0.75rem;
}

.footer .contact > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.footer .contact > li::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.26em;
  aspect-ratio: 1 / 1;
  margin-right: 0.37em;
  background-color: #000;
  border-radius: 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer .contact > li.mail::before {
  -webkit-mask-image: url('../images/icon-mail.svg');
  mask-image: url('../images/icon-mail.svg');
}

.footer .contact > li.phone::before {
  -webkit-mask-image: url('../images/icon-phone.svg');
  mask-image: url('../images/icon-phone.svg');
}

.footer .contact > li.facebook::before {
  -webkit-mask-image: url('../images/icon-facebook.svg');
  mask-image: url('../images/icon-facebook.svg');
}

.footer-bottom {
  padding: 0.25rem 0;
  color: #fff;
  background-color: #4a4a4a;
}

.footer-menu {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -2rem;
}

.footer-menu .menu > li {
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -3rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  text-align: center;
}

.footer .info > * {
  padding-left: 3rem;
  padding-right: 3rem;
}

.footer .copyright span {
  display: inline-block;
}

.footer .powered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer .powered a {
  width: 10.15rem;
  aspect-ratio: 203 / 36;
  margin-left: 0.25rem;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  background-color: #fff;
  -webkit-mask: url('../images/365dtm-logo.png') center/contain no-repeat;
  mask: url('../images/365dtm-logo.png') center/contain no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .footer .powered a {
    -webkit-mask-image: url('../images/365dtm-logo@2x.png');
    mask-image: url('../images/365dtm-logo@2x.png');
  }
}

@media (min-width: 768px) {
  .page-commercial-design .content .columns .image {
    -ms-flex-preferred-size: 39.44223%;
    flex-basis: 39.44223%;
  }
}

@media (min-width: 1280px) {
  .page-commercial-design .content .columns .text {
    padding-right: 7.80876%;
  }
}

@media (min-width: 1280px) {
  .page-residential-design .content .columns .text {
    padding-right: 5.73705%;
  }
}

@media (min-width: 1280px) {
  .page-investment-property .content .columns .text {
    padding-right: 6.93227%;
  }
}

@media (min-width: 992px) {
  .page-contact-us .contact-section .container {
    padding-left: 6.51042%;
    padding-right: 3.90625%;
  }
}

.page-contact-us .contact-section .wrapper {
  max-width: 58.23rem;
  position: relative;
}

@media (min-width: 768px) {
  .page-contact-us .contact-section .wrapper {
    padding-left: 15rem;
  }
}

@media (min-width: 1280px) {
  .page-contact-us .contact-section .wrapper {
    max-width: 68.5rem;
    padding-left: 16.5rem;
  }
}

.page-contact-us .holly-area {
  width: 13.5rem;
  margin: auto;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #818181;
}

@media (min-width: 768px) {
  .page-contact-us .holly-area {
    position: absolute;
    top: 0.5rem;
    left: 0;
  }
}

.page-contact-us .holly-area img {
  border: 0.25rem solid #707070;
  margin-bottom: 0.7rem;
}

@media (min-width: 1280px) {
  .page-contact-us .form {
    font-size: 1.1rem;
  }
}

.page-contact-us .form label {
  margin-bottom: 0.5rem;
}

.page-contact-us .form-field {
  display: block;
  width: 100%;
  padding: 0.68em 0.91em;
  border: 1px solid #707070;
  outline: 0 !important;
}

.page-contact-us .form-field:focus {
  -webkit-box-shadow: 0 0 0 0.15rem rgba(112, 112, 112, 0.25);
  box-shadow: 0 0 0 0.15rem rgba(112, 112, 112, 0.25);
}

.page-contact-us .form-field-wrapper {
  margin-bottom: 1rem;
}

.page-contact-us .form-text {
  max-width: 37.55em;
  margin: auto;
  padding-bottom: 1rem;
  text-align: center;
}

.page-contact-us .form-captcha {
  max-width: 26.5rem;
  margin: auto;
}

.page-contact-us .form-captcha-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.page-contact-us .form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.page-contact-us .form .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.5em 1em;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  border: 0;
  outline: 0 !important;
}

@media (min-width: 992px) {
  .page-home .header-logo {
    width: auto;
    height: 18.33333%;
    padding: 0;
    left: auto;
    right: 6%;
    bottom: 20%;
    z-index: auto;
  }

  @-moz-document url-prefix() {
    .page-home .header-logo {
      right: 33%;
    }
  }

  .page-home .header-logo::before {
    content: '';
    display: block;
    background: radial-gradient(closest-side, #000, #fff);
    mix-blend-mode: multiply;
    position: absolute;
    top: -1.85rem;
    left: -4rem;
    right: -0.85rem;
    bottom: -1.8rem;
    z-index: 2;
  }
  .page-home .header-logo a {
    position: relative;
    z-index: 3;
  }
  .page-home .header-menu {
    right: 6.77083%;
    top: 13.33333%;
    bottom: auto;
  }
}

.page-home .header-large {
  min-height: 420px;
}

.page-home .header-large::after {
  content: '';
  display: block;
  width: 280px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  -webkit-mask: url('../images/icon.svg') center/contain no-repeat;
  mask: url('../images/icon.svg') center/contain no-repeat;
  -webkit-transform: translateX(25%);
  transform: translateX(25%);
  position: absolute;
  top: 7.5vw;
  right: 75%;
}

@media (min-width: 992px) {
  .page-home .header-large::after {
    width: 34.375%;
    -webkit-transform: none;
    transform: none;
    top: auto;
    left: 3.38542%;
    right: auto;
    bottom: 11.66667%;
  }
}

@media (min-width: 992px) {
  .page-home .header-image {
    aspect-ratio: 192 / 90;
  }
}

.page-home .header-image .slides {
  padding-left: 0;
  list-style: none;
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-home .header-image .slides .slick-list,
.page-home .header-image .slides .slick-track {
  height: 100%;
}

.page-home .header-image .slide-dots .slick-dots {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2;
}

@media (min-width: 992px) {
  .page-home .header-image .slide-dots .slick-dots {
    left: 80.10417%;
    bottom: 8.88889%;
  }
}

.page-home .header-image .slide-dots .slick-dots button {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.43rem;
  background-color: rgba(128, 128, 128, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 0.15rem #fff;
  box-shadow: inset 0 0 0 0.15rem #fff;
  overflow: hidden;
}

@media (min-width: 992px) {
  .page-home .header-image .slide-dots .slick-dots button {
    margin: 0 0.85rem;
  }
}

.page-home .header-image .slide-dots .slick-dots .slick-active button {
  position: relative;
}

.page-home .header-image .slide-dots .slick-dots .slick-active button::before,
.page-home .header-image .slide-dots .slick-dots .slick-active button::after {
  content: '';
  display: block;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#fff),
      color-stop(20%, #fff),
      color-stop(20%, transparent),
      color-stop(40%, transparent),
      color-stop(40%, #fff),
      color-stop(60%, #fff),
      color-stop(60%, transparent),
      color-stop(80%, transparent),
      color-stop(80%, #fff),
      to(#fff)
    )
    center no-repeat;
  background: linear-gradient(
      to right,
      #fff,
      #fff 20%,
      transparent 20%,
      transparent 40%,
      #fff 40%,
      #fff 60%,
      transparent 60%,
      transparent 80%,
      #fff 80%,
      #fff
    )
    center no-repeat;
  background-size: 5px;
  position: absolute;
  inset: 0;
}

.page-home .header-image .slide-dots .slick-dots .slick-active button::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.page-home .main::before {
  opacity: 1;
}

@media (min-width: 992px) {
  .page-home .main::before {
    width: 36.66667%;
    background-size: auto 131.95rem;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .page-home .main::before {
    width: 31.16667%;
  }
}

.page-home .top-section {
  min-height: 22.25rem;
  margin-bottom: 4rem;
}

@media (min-width: 1280px) {
  .page-home .top-section {
    min-height: 30rem;
  }
}

.page-home .top-section .container {
  position: relative;
}

@media (min-width: 768px) {
  .page-home .top-section .container {
    padding-left: 36.97917%;
  }
}

@media (min-width: 1280px) {
  .page-home .top-section .container {
    padding-left: 36.97917%;
    padding-right: 2.60417%;
  }
}

.page-home .top-section .wrapper {
  max-width: 51rem;
}

@media (min-width: 768px) {
  .page-home .top-section .heading {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .page-home .top-section .columns .text {
    max-width: 40.9rem;
  }
}

@media (min-width: 1280px) {
  .page-home .top-section .columns .text {
    margin-top: 3rem;
  }
}

.page-home .top-section .columns .image {
  -webkit-transform: rotate(-2deg) translateY(-1rem);
  transform: rotate(-2deg) translateY(-1rem);
}

@media (min-width: 768px) {
  .page-home .top-section .columns .image {
    width: 20.25rem;
    position: absolute;
    top: 0;
    right: 67.70833%;
  }
}

@media (min-width: 1280px) {
  .page-home .top-section .columns .image {
    width: 27rem;
    right: 67.70833%;
  }
}

@media (min-width: 992px) {
  .page-home .top-section .columns .image img {
    border-color: #fff;
  }
}

.page-home .services-section {
  margin-bottom: 7.5rem;
}

.page-home .services-section .container {
  max-width: 85.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.page-home .services-section .caption {
  margin-bottom: 1.75rem;
  font-size: 1.88rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

@media (min-width: 768px) {
  .page-home .services-section .caption {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .page-home .services-section .caption {
    color: #fff;
  }
}

@media (min-width: 1280px) {
  .page-home .services-section .caption {
    font-size: 2.5rem;
    text-indent: 1rem;
  }
}

.page-home .services-section .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -0.5rem;
}

.page-home .services-section .services li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 25.75rem;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .page-home .services-section .services {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .page-home .services-section .services li {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    padding: 0 0.5rem;
  }
}

.page-home .services-section .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 24.75rem;
  aspect-ratio: 1 / 1;
  padding: 9.79798%;
  text-align: center;
  text-decoration: none !important;
  border: 0.25rem solid #707070;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-home .services-section .service-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page-home .services-section .service-item span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.49);
  border: 0.1rem solid #fff;
  border-radius: 1.15rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .services-section .service-item span {
    font-size: 1rem;
  }
}

.page-home .services-section .service-item:hover img {
  -webkit-transform: scale(105%) rotate(3deg);
  transform: scale(105%) rotate(3deg);
}

.page-home .services-section .service-item:hover span {
  background-color: rgba(0, 0, 0, 0.75);
}

.page-home .quote-section {
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .page-home .quote-section .container {
    padding-left: 37.76042%;
    padding-right: 6.51042%;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .page-home .quote-section .container {
    padding-left: 28.32031%;
    padding-right: 4.88281%;
  }
}

.page-home .quote-section .blockquote {
  text-align: center;
  text-transform: uppercase;
  color: #868686;
}

.page-home .quote-section .blockquote .quote {
  max-width: 16.07em;
  margin: auto;
  font-size: 1.96rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.055em;
}

@media (min-width: 1280px) {
  .page-home .quote-section .blockquote .quote {
    font-size: 2.8rem;
  }
}

.page-home .quote-section .blockquote .quote > *:last-child {
  margin-bottom: 0;
}

.page-home .quote-section .blockquote .author {
  margin: 1rem auto;
  font-weight: 300;
  letter-spacing: 0.15em;
}

@media (min-width: 1280px) {
  .page-home .quote-section .blockquote .author {
    font-size: 1.1rem;
  }
}

.page-home .quote-section .blockquote .author::before {
  content: '\2014';
}
