@charset "UTF-8";

/*

No CSS declaration, this file is only for .scss imports!
You can see folder structure below.

|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|
|– components/
|   |– _buttons.scss     # Buttons
|   |– _carousel.scss    # Carousel
|   |– _cover.scss       # Cover
|   |– _dropdown.scss    # Dropdown
|   ...                  # Etc…
|
|– layout/
|   |– _navigation.scss  # Navigation
|   |– _grid.scss        # Grid system
|   |– _header.scss      # Header
|   |– _footer.scss      # Footer
|   |– _sidebar.scss     # Sidebar
|   |– _forms.scss       # Forms
|   ...                  # Etc…
|
|– pages/
|   |– _home.scss        # Home specific styles
|   |– _contact.scss     # Contact specific styles
|   ...                  # Etc…
|
|– themes/
|   |– _theme.scss       # Default theme
|   |– _admin.scss       # Admin theme
|   ...                  # Etc…
|
|– abstract/ 
|   |– _variables.scss   # Sass Variables
|   |– _functions.scss   # Sass Functions
|   |– _mixins.scss      # Sass Mixins
|   |– _helpers.scss     # Class & placeholders helpers
|
|– vendors/
|   |– _bootstrap.scss   # Bootstrap 
|   |– _jquery-ui.scss   # jQuery UI
|   ...                  # Etc… 

*/

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "TT Norms Pro";
  src: url("/theme/fonts/TTNormsPro-Medium.woff2") format("woff2"), url("/theme/fonts/TTNormsPro-Medium.woff") format("woff");
  font-display: fallback;
}

@font-face {
  font-style: normal;
  font-weight: bold;
  font-family: "TT Norms Pro";
  src: url("/theme/fonts/TTNormsPro-Bold.woff2") format("woff2"), url("/theme/fonts/TTNormsPro-Bold.woff") format("woff");
  font-display: fallback;
}

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "TT Norms Pro";
  src: url("/theme/fonts/TTNormsPro-Regular.woff2") format("woff2"), url("/theme/fonts/TTNormsPro-Regular.woff") format("woff");
  font-display: fallback;
}

.ox-u-global-overflow-hidden {
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background: white;
}

@media screen and (min-height: 750px) {
  .ox-u-global-overflow-hidden {
    margin-bottom: 79.5rem;
    /* footer height */
  }
}

.ox-u-menu-open {
  overflow: hidden;
}

.ox-u-sticky-heder {
  padding-top: 6.6rem;
}

@media only screen and (min-width: 36em) {
  .ox-u-sticky-heder {
    padding-top: 8.6rem;
  }
}

.ox-u-fw-bold {
  font-weight: bold;
}

.ox-u-fc-black {
  color: black;
}

.ox-u-blog-margin {
  margin: 3rem 0;
}

@media only screen and (min-width: 36em) {
  .ox-u-blog-margin {
    margin: 4rem 0;
  }
}

@media only screen and (min-width: 62em) {
  .ox-u-blog-margin {
    margin: 7rem 0;
  }
}

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

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

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

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

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],
abbr[data-bs-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

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

a:hover {
  color: #0a58ca;
}

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

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

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

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

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

a > code {
  color: inherit;
}

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

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

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

legend + * {
  clear: left;
}

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

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

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

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

.figure {
  display: inline-block;
}

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

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

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1280px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
  overflow-x: hidden;
}

#_cms-user-info img,
#_cms-user-info svg,
._cms_toolbar-nav img,
._cms_toolbar-nav svg {
  width: unset !important;
  display: unset !important;
}

.container {
  margin: 0px auto;
  width: 100%;
}

* {
  font-family: 'neue-haas-grotesk-display', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

.hidden {
  display: none;
}

.mt-150 {
  margin-top: 150px;
}

p {
  font-size: 1.6rem;
}

p a,
h6 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
}

p a:hover,
h6 a:hover {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: underline;
}

.filter-row .categoryBtn {
  background-color: transparent;
  padding: 10px 25px;
  border: none;
  outline: none;
  color: #757575;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 10px 25px;
}

.filter-row .categoryBtn:disabled {
  color: #c7c6c6;
}

.filter-row .categoryBtn:hover,
.filter-row .categoryBtn:focus,
.filter-row .categoryBtn:active {
  outline: none;
}

.filter-row .categoryBtn:hover {
  cursor: pointer;
}

.filter-row .categoryBtn.activeCategory {
  text-decoration: underline !important;
}

.web-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #000;
  bottom: 0;
  right: 0;
  z-index: 9997;
}

.web-link i {
  font-size: 30px;
  color: #fff;
  transition: color 0.3s;
}

.web-link:hover {
  text-decoration: none;
}

.web-link:hover i {
  color: #1c8dba;
}

#limits .container .limits-header {
  font-size: 4rem;
  font-weight: 700;
  color: black;
  padding: 50px 0px 50px;
}

#limits .container .filter-row {
  padding-bottom: 50px;
}

#nav-custom {
  padding-right: 30px;
  padding-left: 30px;
}

footer {
  padding: 0 3rem;
}

footer .row:not(.social-row) {
  padding: 20px 0;
}

.custom-container {
  padding: 0;
  max-width: 2200px !important;
  margin: 0 auto;
  width: 100%;
}

.custom-container .portfolio-item {
  padding-right: 15px;
  padding-left: 15px;
}

#portfolio .container .reference-card {
  display: flex;
  flex-direction: column;
  padding: 15px 0 90px;
}

#portfolio .container .reference-card .text {
  padding: 25px 0px 0;
}

#portfolio .container .reference-card .text .type {
  color: grey;
  font-size: 1rem;
  font-weight: 600;
}

#portfolio .container .reference-card .text .category-tag {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #cac9c9;
  border-radius: 5px;
  display: inline-block;
}

#portfolio .container .reference-card .text .category-tag:last-child {
  margin-right: 0;
}

#portfolio .container .reference-card .text .name {
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

#portfolio .container .reference-card .text p {
  font-weight: 400;
  font-size: 1rem;
  color: #9c9c9c;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .custom-container .portfolio-item {
    padding-right: 3.2vw;
    padding-left: 3.2vw;
  }

  #nav-custom {
    padding-right: 6.4vw;
    padding-left: 6.4vw;
  }
}

@media (min-width: 992px) {
  .custom-container .portfolio-item {
    padding-right: 6.4vw;
    padding-left: 6.4vw;
  }

  #nav-custom {
    padding-right: 12.8vw;
    padding-left: 12.8vw;
  }
}

@media (min-width: 1280px) {
  .custom-container .portfolio-item {
    padding-right: 4.8vw;
    padding-left: 4.8vw;
  }

  #nav-custom {
    padding-right: 9.6vw;
    padding-left: 9.6vw;
  }
}

@media (min-width: 2200px) {
  .custom-container .portfolio-item {
    padding-right: 66px;
    padding-left: 66px;
  }

  #nav-custom {
    padding-right: 132px;
    padding-left: 132px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}

/**
.card-small, .card-big {

  transition: transform 0.25s ease-in-out;
  -webkit-transition: transform 0.25s ease-in-out;

  .img, img  {
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
    -webkit-transition: transform 0.25s ease-in-out;
    overflow: hidden;
  }

  .text {
    transform: translate(0px, 0px);
    transition: transform 0.25s ease-in-out;
    -webkit-transition: transform 0.25s ease-in-out;
  }

  &:hover {
    cursor: pointer;
    .img {
      transform: scale(0.95);
      overflow: hidden;
      transition: transform 0.25s ease-in-out;
      -webkit-transition: transform 0.25s ease-in-out;
    }

    img {
      transform: scale(1.1);
      transition: transform 0.25s ease-in-out;
      -webkit-transition: transform 0.25s ease-in-out;
    }

    .text {
      transform: translate(40px, 0px);
      transition: transform 0.25s ease-in-out;
      -webkit-transition: transform 0.25s ease-in-out;
    }
  }
}
*/

.gallery-item-hover .gallery_preview_item_text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 20px;
  color: black;
  text-align: left;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.5s;
}

.gallery-item-hover .gallery_preview_item_text p {
  margin: 0px;
}

.gallery-item-hover .gallery_preview_item_text .gallery_preview_item_title {
  font-weight: 500;
  font-size: 20px;
}

.gallery-item-hover .gallery_preview_item_text .gallery_preview_item_subtitle {
  font-size: 18px;
}

.gallery-item-hover:hover .gallery_preview_item_text {
  transform: translateY(0px);
  opacity: 1;
}

#sluzby .sluzby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

#sluzby .sluzby-left-side {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 50vw;
  min-height: 100vh;
  background-color: #15161d;
  display: flex;
  align-items: center;
}

#sluzby .sluzby-left-side nav {
  padding-left: 92px;
}

#sluzby .sluzby-left-side nav ul {
  list-style: none;
  padding: 0px;
}

#sluzby .sluzby-left-side nav li {
  color: white;
  margin-bottom: 20px;
  transition: all .3s;
}

#sluzby .sluzby-left-side nav li:hover {
  transform: translateX(20px);
}

#sluzby .sluzby-left-side nav span {
  font-size: 16px;
}

#sluzby .sluzby-left-side nav a {
  font-size: 122px;
  line-height: 122px;
  color: inherit;
  text-decoration: none;
  padding-left: 20px;
}

#sluzby .sluzby-right-side {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50vw;
}

#sluzby .sluzby-right-side section {
  min-height: 100vh;
  width: 100%;
  padding: 92px;
}

#sluzby .sluzby-right-side #branding {
  background-color: #dadada;
}

#sluzby .sluzby-right-side #print {
  background-color: white;
}

#sluzby .sluzby-right-side #weby {
  background-color: #dadada;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 100vh;
}

#galleryApp {
  width: 100%;
  flex-grow: 1;
}

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

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

.ox-l-main-detail {
  padding-bottom: 6.6rem;
}

@media only screen and (min-width: 36em) {
  .ox-l-main-detail {
    padding-bottom: 8.6rem;
  }
}

.ox-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  z-index: 99999;
}

@media only screen and (min-width: 62em) {
  .ox-u-menu-open .ox-header {
    padding: 2rem 4.4rem 2rem 3rem;
  }
}

.ox-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

.ox-header__logo {
  position: relative;
  z-index: 2;
  display: block;
}

.ox-header__logo svg {
  opacity: 1;
  width: 10rem;
  transition: opacity 0.2s ease-in-out;
}

@media only screen and (min-width: 36em) {
  .ox-header__logo svg {
    width: 13.3rem;
  }
}

.ox-header__logo:hover > svg {
  opacity: 0;
}

.ox-header__logo-hover-el {
  position: absolute;
  top: 4px;
  left: 3px;
  display: flex;
  opacity: 0;
  align-items: center;
  height: 100%;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease-in-out;
  background: #fff;
}

.ox-header__logo-hover-el svg {
  width: 15rem;
  position: relative;
  top: -2px;
  left: -13px;
}

@media only screen and (max-width: 36em) {
  .ox-header__logo-hover-el svg {
    width: 11.6rem;
    top: -3px;
  }
}

.ox-header__logo:hover .ox-header__logo-hover-el {
  opacity: 1;
}

.ox-header__logo-text {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #7f7f7f;
  letter-spacing: 0.25rem;
}

@media only screen and (min-width: 36em) {
  .ox-header__logo-text {
    font-size: 1.2rem;
  }
}

.ox-header__logo-trans {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  margin-left: 1rem;
  font-weight: bold;
  font-size: 1.4rem;
  color: #000;
  letter-spacing: -0.051rem;
}

@media only screen and (min-width: 36em) {
  .ox-header__logo-trans {
    padding: 0 2rem;
    margin-left: 1.7rem;
    font-size: 1.8rem;
  }
}

.ox-header__logo-trans::after,
.ox-header__logo-trans::before {
  content: "";
  position: absolute;
  top: -12px;
  font-weight: 500;
  font-size: 2.6rem;
}

@media only screen and (min-width: 36em) {
  .ox-header__logo-trans::after,
  .ox-header__logo-trans::before {
    top: -18px;
    font-size: 3.6rem;
  }
}

.ox-header__logo-trans::before {
  content: "[";
  left: 0;
}

.ox-header__logo-trans::after {
  content: "]";
  right: 0;
}

.ox-header__navs {
  display: flex;
  align-items: center;
}

.ox-header__nav {
  margin: 0 0.5rem;
}

@media only screen and (min-width: 36em) {
  .ox-header__nav {
    margin: 0 1.5rem;
  }
}

.ox-header__nav:last-child {
  margin-right: 0;
}

.ox-header__nav-btn {
  padding: 1rem;
  border: 0;
  background-color: transparent;
  transition: opacity 0.2s ease-in-out;
}

.ox-header__nav-btn:hover,
.ox-header__nav-btn:focus,
.ox-header__nav-btn:active {
  opacity: 0.5;
}

.ox-header__nav-btn:focus,
.ox-header__nav-btn:active {
  outline: 0;
}

.ox-header__nav-btn--disabled {
  opacity: 0.5;
}

.ox-header__dropwindow {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  z-index: 10;
  height: 100vh;
  overflow: auto;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.92);
  will-change: top;
  transform: translateX(100%);
  transition: transform 0.4s linear;
  padding-top: 0;
}

@media only screen and (min-width: 48em) {
  .ox-header__dropwindow {
    height: auto;
    max-height: 100vh;
  }
}

.ox-header__dropwindow--in-anim {
  transform: translateX(0);
}

@media only screen and (min-width: 48em) {
  .ox-header__dropwindow--in-anim {
    transform: translateX(100%);
    -webkit-animation: dropAnim 0.4s forwards;
            animation: dropAnim 0.4s forwards;
    -webkit-animation-play-state: running;
            animation-play-state: running;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.ox-header__dropwindow--active {
  transform: translateX(0);
}

.ox-header__dropwindow--small {
  height: auto;
}

.ox-header__close-btn {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 30px;
}

@-webkit-keyframes dropAnim {
  80% {
    transform: translateX(5%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes dropAnim {
  80% {
    transform: translateX(5%);
  }

  100% {
    transform: translateX(0%);
  }
}

.ox-header__nav--user {
  display: none;
}

.ox-grid {
  max-width: 100%;
  overflow: hidden;
}

.ox-grid__cols {
  display: flex;
  align-items: flex-start;
  margin: 0 0.5rem;
  transition: all 0.2s ease-in-out;
}

.ox-grid__cols--space-0.ox-grid__cols {
  margin: 0;
}

.ox-grid__cols--space-1.ox-grid__cols {
  margin: 0 0.214rem;
}

.ox-grid__cols--space-2.ox-grid__cols {
  margin: 0 0.428rem;
}

.ox-grid__cols--space-3.ox-grid__cols {
  margin: 0 0.642rem;
}

.ox-grid__cols--space-4.ox-grid__cols {
  margin: 0 0.882rem;
}

.ox-grid__cols--space-5.ox-grid__cols {
  margin: 0 1.096rem;
}

.ox-grid__cols--space-6.ox-grid__cols {
  margin: 0 1.31rem;
}

.ox-grid__cols--space-7.ox-grid__cols {
  margin: 0 1.5rem;
}

.ox-grid__col {
  flex: 0 0 100%;
  max-width: 100%;
}

@media only screen and (min-width: 36em) {
  .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--2 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--3 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--4 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--5 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--6 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--7 .ox-grid__col {
    flex: 0 0 calc(100% / 10);
    max-width: calc(100% / 10);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 10);
    max-width: calc(100% / 10);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--8 .ox-grid__col {
    flex: 0 0 calc(100% / 11);
    max-width: calc(100% / 11);
  }
}

.ox-grid__cols--9 .ox-grid__col {
  flex: 0 0 calc(100% / 2);
  max-width: calc(100% / 2);
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 10);
    max-width: calc(100% / 10);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 11);
    max-width: calc(100% / 11);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--9 .ox-grid__col {
    flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }
}

.ox-grid__cols--10 .ox-grid__col {
  flex: 0 0 calc(100% / 2);
  max-width: calc(100% / 2);
}

@media only screen and (min-width: 25em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 10);
    max-width: calc(100% / 10);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 11);
    max-width: calc(100% / 11);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--10 .ox-grid__col {
    flex: 0 0 calc(100% / 13);
    max-width: calc(100% / 13);
  }
}

.ox-grid__cols--11 .ox-grid__col {
  flex: 0 0 calc(100% / 2);
  max-width: calc(100% / 2);
}

@media only screen and (min-width: 25em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media only screen and (min-width: 36em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media only screen and (min-width: 48em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media only screen and (min-width: 62em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 9);
    max-width: calc(100% / 9);
  }
}

@media only screen and (min-width: 80em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 10);
    max-width: calc(100% / 10);
  }
}

@media only screen and (min-width: 120em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 11);
    max-width: calc(100% / 11);
  }
}

@media only screen and (min-width: 157.5em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }
}

@media only screen and (min-width: 195em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 13);
    max-width: calc(100% / 13);
  }
}

@media only screen and (min-width: 240em) {
  .ox-grid__cols--11 .ox-grid__col {
    flex: 0 0 calc(100% / 14);
    max-width: calc(100% / 14);
  }
}

.ox-grid__item {
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.ox-grid__item .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  background-color: #000;
  color: #000;
}

.ox-grid__cols--space-0 .ox-grid__item {
  padding: 0;
}

.ox-grid__cols--space-1 .ox-grid__item {
  padding: 0 0.214rem 0.428rem 0.214rem;
}

.ox-grid__cols--space-2 .ox-grid__item {
  padding: 0 0.428rem 0.856rem 0.428rem;
}

.ox-grid__cols--space-3 .ox-grid__item {
  padding: 0 0.642rem 1.284rem 0.642rem;
}

.ox-grid__cols--space-4 .ox-grid__item {
  padding: 0 0.882rem 1.764rem 0.882rem;
}

.ox-grid__cols--space-5 .ox-grid__item {
  padding: 0 1.096rem 2.192rem 1.096rem;
}

.ox-grid__cols--space-6 .ox-grid__item {
  padding: 0 1.31rem 2.62rem 1.31rem;
}

.ox-grid__cols--space-7 .ox-grid__item {
  padding: 0 1.5rem 3rem 1.5rem;
}

.ox-grid__cols--space-8 .ox-grid__item {
  padding: 0 1.8rem 3.6rem 1.8rem;
}

.ox-grid__cols--space-9 .ox-grid__item {
  padding: 0 2.2rem 4.4rem 2.2rem;
}

.ox-grid__cols--space-10 .ox-grid__item {
  padding: 0 2.6rem 5.6rem 2.6rem;
}

.ox-grid__cols--space-11 .ox-grid__item {
  padding: 0 3.2rem 6.4rem 3.2rem;
}

.ox-grid__cols--space-12 .ox-grid__item {
  padding: 0 3.8rem 7.6rem 3.8rem;
}

.ox-grid__cols--space-13 .ox-grid__item {
  padding: 0 4.4rem 8.8rem 4.4rem;
}

.ox-grid__cols--space-14 .ox-grid__item {
  padding: 0 5.2rem 10.4rem 5.2rem;
}

.ox-grid__cols--space-15 .ox-grid__item {
  padding: 0 6rem 12rem 6rem;
}

.ox-grid__cols--space-16 .ox-grid__item {
  padding: 0 6.8rem 13.2rem 6.8rem;
}

.ox-grid__link {
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.ox-grid__ref {
  display: block;
  overflow: hidden;
  cursor: default;
}

.ox-grid__img-el {
  display: block;
  width: 100%;
  height: 100%;
}

.ox-image-div {
  min-height: 250px;
}

.ox-grid__iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: calc(100% + 17px);
  height: 100%;
}

.ox-grid-loader {
  position: relative;
  height: 100vh;
}

.ox-grid-loader__lottie {
  position: absolute;
  top: calc(50% - 8rem);
  left: 50%;
  width: 75px;
  height: 75px;
  transform: translate(-50%, -50%);
}

.ox-grid__filter-found {
  font-size: 2rem;
}

.ox-grid__filter-title {
  font-weight: bold;
  text-decoration: underline;
}

[v-cloak] {
  display: none;
}

.ox-setting-menu {
  padding: 90px 30px 0;
  position: relative;
  width: 100%;
}

.ox-setting-menu__option {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #fff;
}

.ox-setting-menu__option-item {
  width: 100%;
  margin-bottom: 30px;
}

.ox-setting-menu__option-item .ox-setting-menu__desc,
.ox-setting-menu__option-item .ox-setting-menu__bar-frame {
  display: flex;
  align-items: center;
  height: 20px;
}

.ox-setting-menu__option-item .ox-setting-menu__desc .ox-setting-menu__bar,
.ox-setting-menu__option-item .ox-setting-menu__bar-frame .ox-setting-menu__bar {
  margin-left: 0;
}

.ox-setting-menu__option:last-of-type .ox-setting-menu__option-item {
  margin-bottom: 0;
}

.ox-setting-menu__option p {
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #fff;
}

@media only screen and (min-width: 48em) {
  .ox-setting-menu__option {
    margin: 0;
  }
}

.ox-setting-menu__option:last-child {
  margin-bottom: 0;
}

.ox-setting-menu__option:first-child {
  margin-right: 0;
}

.ox-setting-menu__text {
  flex: 0 0 8.5rem;
  max-width: 8.5rem;
}

@media only screen and (min-width: 36em) {
  .ox-setting-menu__text {
    flex: 0 0 17rem;
    max-width: 17rem;
  }
}

@media only screen and (min-width: 48em) {
  .ox-setting-menu__text {
    flex: auto;
    max-width: 100%;
  }
}

.ox-setting-menu__bar {
  position: relative;
  width: 100%;
  height: 1px;
  margin-left: 2rem;
  background-color: #777777;
  margin-left: 0;
}

.ox-setting-menu__control {
  position: absolute;
  top: -1.7rem;
  left: 3%;
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  padding: 1rem;
  cursor: pointer;
}

.ox-setting-menu__control::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}

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 */
}

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 {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: #ffffff;
  cursor: pointer;
  margin-top: -14px;
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  /* Add cool effects to your sliders! */
}

.ox-range-dot {
  position: absolute;
  top: -4px;
  width: 100%;
}

.ox-search-menu {
  padding: 90px 30px 0;
  position: relative;
  width: 100%;
}

.ox-search-menu__option-items {
  margin-top: 4rem;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .ox-search-menu__option-items {
    margin-top: 6rem;
  }
}

@media only screen and (min-width: 62em) {
  .ox-search-menu__option-items {
    margin-top: 7rem;
  }
}

@media only screen and (min-width: 80em) {
  .ox-search-menu__option-items {
    margin-top: 8rem;
  }
}

.ox-search-menu__inner.ox-search-menu__inner-outer {
  margin-left: -3px;
  margin-right: -3px;
}

.ox-search-menu__desc,
.ox-search-menu__link,
.ox-search-menu__desc a,
.ox-search-menu__link a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #fff;
}

.ox-search-menu__desc:hover,
.ox-search-menu__desc:focus,
.ox-search-menu__desc:active,
.ox-search-menu__link:hover,
.ox-search-menu__link:focus,
.ox-search-menu__link:active,
.ox-search-menu__desc a:hover,
.ox-search-menu__desc a:focus,
.ox-search-menu__desc a:active,
.ox-search-menu__link a:hover,
.ox-search-menu__link a:focus,
.ox-search-menu__link a:active {
  text-decoration: none;
  color: #fff;
}

.ox-search-menu__link.ox-search-menu__link_no-upper,
.ox-search-menu__link.ox-search-menu__link_no-upper a {
  text-transform: none;
}

.ox-search-menu__desc a,
.ox-search-menu__link a {
  padding: 0;
}

.ox-search-menu__link-tag {
  font-size: 1rem;
  border: 1px solid #fff;
  padding: 4px 8px;
  margin: 5px 6px 5px 0;
}

.ox-search-menu__link,
.ox-search-menu__link a {
  cursor: pointer;
}

.ox-search-menu__link--select {
  cursor: auto;
}

.ox-search-menu__link--select::after {
  bottom: 100%;
}

.ox-search-menu__link--select:hover::after {
  bottom: 100%;
  opacity: 1;
}

.ox-search-menu__item {
  margin-bottom: 80px;
}

.ox-search-menu__item:last-of-type {
  margin-bottom: 0;
}

.ox-search-menu__option-values {
  display: flex !important;
  flex-direction: column;
}

.ox-search-menu__option-values.ox-search-menu__option-values-row {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
}

.ox-search-menu__option-label {
  display: inline-block;
  width: auto;
  margin-bottom: 0;
}

#filterText {
  position: relative;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.ox-filter-text {
  font-weight: normal;
  font-size: 2.1rem;
  line-height: 2.7rem;
  padding: 2rem 3rem;
  width: 79%;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 36em) {
  .ox-filter-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-bottom: 0;
    padding: 0 0 3.6rem;
  }
}

@media only screen and (min-width: 48em) {
  .ox-filter-text {
    font-size: 1.9rem;
  }
}

@media only screen and (min-width: 80em) {
  .ox-filter-text {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media only screen and (max-width: 36em) {
  .ox-filter-text .d-flex {
    display: inline-block !important;
  }
}

.ox-filter-text__text {
  display: inline;
}

@media only screen and (min-width: 36em) {
  .ox-filter-text__text {
    padding-right: 1.5rem;
  }
}

.ox-filter-text__item {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.ox-filter-text__item span {
  position: relative;
  display: inline-block;
}

.ox-filter-text__item span.normal-text {
  font-weight: normal;
}

.ox-filter-text__item span:not(.normal-text)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: opacity 0.2s ease-in-out, bottom 0.2s ease-in-out;
}

.ox-filter-text__item:hover span:not(.normal-text)::after {
  bottom: 100%;
  opacity: 0;
}

.ox-filter-text__close {
  position: absolute;
  top: -0.8rem;
  left: 19rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

@media only screen and (min-width: 36em) {
  .ox-filter-text__close {
    position: relative;
    top: 1px;
    display: inline-flex;
    align-items: center;
    margin-left: .8rem;
    left: initial;
    vertical-align: middle;
  }
}

label {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.form-input-row {
  margin-bottom: 15px;
}

.form-btn {
  display: inline-block;
  color: #fff;
  background: #000;
  background-color: #000;
  border: 1px solid #000;
  border-color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  padding: 15px 30px;
  outline: none;
  box-shadow: none;
  margin: 0;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.3s, background-color 0.3s;
}

.form-btn:hover {
  color: #000;
  background: #fff;
  background-color: #fff;
}

.file-input-group #fileid.detail-file_input {
  display: none;
}

input.form-control,
textarea.form-control {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 42px;
  outline: none;
  box-shadow: none;
}

input.form-control:focus,
textarea.form-control:focus {
  border: 1px solid #000;
  outline: none;
  box-shadow: none;
}

input[type="checkbox"] {
  top: 1px;
  position: relative;
  width: 16px;
  height: 16px;
  outline: none;
}

input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
  outline: none;
}

input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border: 1px solid #000;
}

input[type="checkbox"]:after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #000;
  opacity: 0;
  transition: opacity 0.3s;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked:after {
  opacity: 1;
}

.ox-close-btn {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background-color: transparent;
  transition: opacity 0.2s ease-in-out;
}

.ox-close-btn::after,
.ox-close-btn::before {
  content: "";
  position: absolute;
  left: -2px;
  width: calc(100% + 0.5rem);
  height: 2px;
  background-color: #fff;
  transform-origin: center;
}

@media only screen and (min-width: 36em) {
  .ox-close-btn::after,
  .ox-close-btn::before {
    height: 1px;
  }
}

.ox-close-btn::after {
  transform: rotate(45deg);
}

.ox-close-btn::before {
  transform: rotate(-45deg);
}

.ox-close-btn:hover,
.ox-close-btn:active,
.ox-close-btn:focus {
  opacity: 0.5;
}

.ox-close-btn:focus,
.ox-close-btn:active {
  outline: 0;
}

.ox-close-btn--dark::after,
.ox-close-btn--dark::before {
  background-color: #000;
}

.ox-close-btn--sm {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

@media only screen and (min-width: 36em) {
  .ox-close-btn--sm {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.ox-close-btn--sm::after,
.ox-close-btn--sm::before {
  top: 7px;
}

.ox-close-btn--no-hover:hover {
  opacity: 1;
}

.ox-toogler {
  padding: 1rem 0 1rem 1rem;
  border: 0;
  background-color: transparent;
  transition: opacity 0.2s ease-in-out;
}

.ox-toogler:hover,
.ox-toogler:focus,
.ox-toogler:active {
  opacity: 0.5;
}

.ox-toogler:focus,
.ox-toogler:active {
  outline: 0;
}

.ox-toggler__bar {
  display: block;
  width: 2.6rem;
  height: 1px;
  margin-bottom: 0.7rem;
  background-color: #000;
}

.ox-toggler__bar:last-child {
  margin-bottom: 0;
}

a {
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
}

.navbar-brand {
  text-decoration: none;
}

.ox-header__logo a span {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.ox-header__logo a span:hover {
  text-decoration: none;
  cursor: pointer;
  color: black;
}

.ox-header__logo .foreground {
  font-family: 'canada-type-gibson', sans-serif;
  font-size: 2.4rem;
}

.ox-header__logo .fa-bars {
  font-size: 3.2rem;
}

.side-menu-container {
  padding: 90px 30px 0;
  position: fixed;
  width: 600px;
  max-width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.92);
  top: 0px;
  right: 0px;
  transform: translateX(100%);
  transition: all .3s;
}

.side-menu-container.show {
  transform: translateX(0%);
}

.side-menu-container nav ul {
  list-style: none;
}

.side-menu-container nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 400;
  color: white;
  text-decoration: none;
}

.detail-modal {
  z-index: 10000;
  padding-right: 0 !important;
}

.detail-modal .modal-dialog {
  width: 100%;
  max-width: unset;
  height: 100%;
  margin: 0;
}

.detail-modal .modal-dialog .modal-content {
  height: auto;
  min-height: 100%;
  border: none;
  border-radius: 0;
  background: #fff;
  background-color: #fff;
}

.detail-modal .modal-dialog .modal-content .modal-header {
  padding: 15px;
  border: none;
}

.detail-modal .modal-dialog .modal-content .modal-header button.close-btn {
  z-index: 10001;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: auto;
  right: 0;
  margin: 0 3vw 0;
  font-size: 21px;
  color: #000;
  background: transparent;
  width: 40px;
  border: 1px solid #000;
  height: 40px;
  line-height: 21px;
  text-align: center;
  border-radius: 50%;
  padding-top: 1px;
  opacity: 0.9;
  transition: all .3s linear 0s;
}

.detail-modal .modal-dialog .modal-content .modal-header button.close-btn:hover {
  transform: scale(1.1);
  opacity: 1;
  color: #000;
  border-color: #000;
}

.detail-modal .modal-dialog .modal-content .modal-header button.close-btn:focus {
  outline: none;
}

.detail-modal .modal-dialog .modal-content .modal-body {
  padding: 15px;
}

.detail-modal .modal-dialog .modal-content .modal-body #popup-bebeautiful .popup-content {
  padding-top: 45px;
  padding-bottom: 40px;
}

.detail-modal .modal-dialog .modal-content .modal-body #popup-bebeautiful .popup-content h3,
.detail-modal .modal-dialog .modal-content .modal-body #popup-bebeautiful .popup-content p {
  font-family: 'Montserrat';
  color: #000;
}

.ox-detail-img {
  position: relative;
  min-height: calc(100vh - 6.6rem);
  padding: 0 1rem 6.6rem 1rem;
  text-align: center;
}

@media only screen and (min-width: 36em) {
  .ox-detail-img {
    min-height: calc(100vh - 8.6rem);
    padding: 0 1rem 8.6rem 1rem;
  }
}

.ox-detail-img .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  background-color: #000;
  color: #000;
}

.ox-detail-img__img-el {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 6.6rem - 6.6rem);
}

@media only screen and (min-width: 36em) {
  .ox-detail-img__img-el {
    max-height: calc(100vh - 8.6rem - 8.6rem);
  }
}

.ox-detail-img__title {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.007rem;
  text-align: center;
}

@media only screen and (min-width: 80em) {
  .ox-detail-img__title {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 3.5rem;
  }
}

.ox-detail-img__title.ox-detail-img__advertisement {
  font-size: 3rem;
}

@media (min-width: 992px) {
  .ox-detail-img__title.ox-detail-img__advertisement {
    font-size: 3.2rem;
  }
}

@media (min-width: 1200px) {
  .ox-detail-img__title.ox-detail-img__advertisement {
    font-size: 3.6rem;
  }
}

@media (min-width: 1300px) {
  .ox-detail-img__title.ox-detail-img__advertisement {
    font-size: 4rem;
  }
}

@media (min-width: 1400px) {
  .ox-detail-img__title.ox-detail-img__advertisement {
    font-size: 4.2rem;
  }
}

.ox-detail-img__text {
  margin: 0;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.3rem;
  text-align: center;
  color: #969696;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 80em) {
  .ox-detail-img__text {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}

.ox-detail-img__text p,
.ox-detail-img__text strong,
.ox-detail-img__text a,
.ox-detail-img__text ul,
.ox-detail-img__text li {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.3rem;
  text-align: center;
  color: #969696;
  letter-spacing: 0.1rem;
}

.ox-detail-img__text.ox-detail-img__advertisement {
  color: #212529;
  text-align: left;
  font-size: 1.6rem;
}

.ox-detail-img__text.ox-detail-img__advertisement strong {
  color: #212529;
  text-align: left;
  font-size: 1.8rem;
  line-height: 2.5rem;
}

.ox-detail-img__text.ox-detail-img__advertisement p,
.ox-detail-img__text.ox-detail-img__advertisement a,
.ox-detail-img__text.ox-detail-img__advertisement ul,
.ox-detail-img__text.ox-detail-img__advertisement li,
.ox-detail-img__text.ox-detail-img__advertisement li strong {
  color: #212529;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.3rem;
}

.ox-detail-img__text ul {
  padding-left: 18px;
}

.ox-detail-img__text strong {
  font-weight: 600;
}

.ox-detail-img__text a.active-link {
  font-weight: 600;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 0;
  background: #fff;
  transition: max-height 4s, opacity 3s;
  opacity: 0;
  z-index: 99998;
  overflow: hidden;
}

.overlay.overlay-active {
  opacity: 1;
  max-height: 9999px;
  transition: max-height 0.5s, opacity 0.5s;
}

.overlay .title-part {
  margin-top: 25%;
  height: 100%;
  max-height: 0;
  background: #fff;
  overflow: hidden;
  transition: max-height 15s;
}

.overlay.overlay-active .title-part {
  max-height: 9999px;
  transition: max-height 30s;
}

.navbar .container-xxl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.navbar .container-xxl .menu-logos {
  display: flex;
}

.navbar .container-xxl .menu-logos img {
  padding-left: 25px;
}

.navbar .container-xxl .logo-text {
  color: #0D141C;
  font-size: 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  line-height: 0.9;
}

.navbar .container-xxl .navbar-collapse-x {
  -ms-flex-preferred-size: 100%;
  /* flex-basis: 100%; */
  -ms-flex-positive: 1;
  /* flex-grow: 1; */
  align-items: center;
}

.navbar .container-xxl .navbar-nav {
  flex-direction: row !important;
}

.navbar .container-xxl .collapse:not(.show) {
  display: unset;
}

.navbar .container-xxl #navbar-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar .container-xxl #navbar-menu ul li {
  padding: 0 20px;
  font-size: 16px;
  color: black;
}

.navbar .container-xxl #navbar-menu ul li a {
  color: black;
  padding: 0px 5px 2px 5px;
}

.navbar .container-xxl #navbar-menu ul li a:hover {
  text-decoration: none;
  color: black;
}

.navbar .container-xxl .header-text {
  margin-right: auto;
}

.navbar .container-xxl .header-text span {
  font-family: verveine, sans-serif;
  font-size: 31px;
  color: #b1b1b1;
  line-height: 1;
}

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

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

@media (min-width: 1280px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1440px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  .d-print-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

footer {
  background-color: #fff;
}

footer .footer-line {
  border-top: 1px solid #757575;
  width: 100%;
  margin: 0 auto;
}

footer .footer-col {
  /*
        padding: 20px 15px;
        */
  padding: 0 15px;
}

footer .footer-col h3,
footer .footer-col h4 {
  color: #757575;
  width: 100%;
  margin-bottom: 16px;
}

footer .footer-col ul {
  padding: 0;
  margin: 0;
}

footer .footer-col ul li {
  list-style: none;
}

footer .footer-col ul li a,
footer .footer-col ul li span {
  color: #757575;
}

footer .footer-col ul li a:hover {
  color: #000;
  text-decoration: underline;
}

footer .row {
  padding: 80px 0;
}

footer .social-row {
  padding: 0;
  flex-direction: row;
}

footer .social-row .social-site {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  margin-right: 16px;
  border: 1px solid #757575;
  border-radius: 50%;
}

footer .social-row .social-site i {
  font-size: 16px;
  color: #757575;
}

footer .social-row .social-site:hover i {
  color: #000;
  border-color: #000;
}

footer .social-row .social-site:last-child {
  margin-right: 0;
}

@media (min-width: 992px) {
  footer .row:not(.social-row) {
    /*
        padding: 130px 0 110px;
        */
    padding: 20px 0;
  }
}


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