/* Burger menu */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham4 .top {
  stroke-dasharray: 40 121;
}
.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.ham4.active .top {
  stroke-dashoffset: -68px;
}
.ham4.active .bottom {
  stroke-dashoffset: -68px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

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

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

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

/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-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-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-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-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .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;
  }
}

/*# sourceMappingURL=bootstrap-grid.css.map */

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  border: .1rem solid #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
  height: 3.8rem;
  width: 5.5rem;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0 none;
  outline: 0;
  color: #fff;
}
.btn-group > .btn.active {
  background: #fff;
  border-radius: 1.9rem;
  color: #004132;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
	 -webkit-text-fill-color: #004132;
}

.form .input {
	padding: 0 0 1.5rem;
}
.form .input label {
	display: block;
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 2.8rem;
    font-family: "Oswald", sans-serif;
    letter-spacing: .05em;
    padding: 0 0 1rem;
}
.form .input input {
	height: 6rem;
    margin: 0px;
    border: 0.1rem solid rgb(207, 120, 79);
    border-radius: 5rem;
    width: 100%;
    max-width: 32rem;
    padding: 1.5rem 2.4rem;
    font-size: 1.7rem;
    line-height: 2.8rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form .button input[type="submit"] {
	height: 6rem;
    border-radius: 5rem;
    border: 0.1rem solid transparent;
    background: #004132;
    padding: 1.4rem 3.2rem 1.6rem;
    font-size: 1.7rem;
    line-height: 2.8rem;
    color: #F8F7F1;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: .05em;
    min-width: 16rem;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;

    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}

div[data-sub_view="apost-preloader"] img {
	margin: 0 auto;
}


/*
.custom-select {
  width: 100%;
  position: relative;
}
.custom-select select {
  display: none;
}
.selected-item {
  background: transparent;
  padding: .5rem 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 99;
  height: 4rem;
  border: .1rem solid #fff;
  border-radius: 2rem;
}
.selected-item:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 10px;
  transition: 0.5s;
}

.arrowanim.selected-item:after {
  transform: rotate(180deg);
}

.item {
  height: 4rem;
  background: #004132;
  padding: 5px 20px;
  color: #fff;
  cursor: pointer;
}
.item:hover {
}
.all-items {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: 100%;
  z-index: 100;
  border-radius: 2rem;
  overflow: hidden;
}
.all-items-hide {
  display: none;
}
*/


html {
    min-height: 100%;
    font-size: 62.5%
}

body {
    background: #004132;
    color: #FFF;
    width: 100%;
    height: 100%;
    font-family: 'Palanquin', sans-serif;
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 2.5rem;
    font-size: 1.6rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Oswald', serif;
    font-weight: normal;
    font-style: normal;
}

h1,
.h1 {
    padding: 0;
    line-height: 3.6rem;
    font-size: 3rem;
	font-weight: 400;
}
h2,
.h2 {
	padding: 0;
    line-height: 3.6rem;
    font-size: 3rem;
	font-weight: 400;
}
h2.h2-alternate,
.h2-alternate {
  padding: 0;
  line-height: 2.8rem;
  font-size: 2.4rem;
  font-weight: 400;
}
h3,
.h3 {
    padding: 0;
    line-height: 2.8rem;
    font-size: 1.9rem;
	font-weight: 500;
}
h3.h3-alternate,
.h3-alternate {
  font-family: "Palanquin", sans-serif;
  padding: 0;
  line-height: 2.8rem;
  font-size: 1.9rem;
  font-weight: 500;
}
h4,
.h4 {
	font-size: 2.1rem;
	line-height: 3.4rem;
	font-weight: 500;
}
h4-alternate,
.h4-alternate {
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
h5,
.h5 {
}
h6,
.h6 {
    font-size: 1.2rem;
	line-height: 1.9rem;
	font-weight: 500;
	color: #74644A;
}

a,
a:hover {
    color: #CF784F;
    text-decoration: underline
}

p {
    padding: 0 0 2.4rem;
}

p.clearfix {
    padding-bottom: 0 !important
}

hr,
p+hr {
    background: #444;
    border: none;
    margin: 0 0 1.8rem;
    height: .2rem;
    overflow: hidden
}

p:last-child {
    padding-bottom: 0 !important
}

strong,
b {
    font-weight: 700
}

i,
em {
    font-style: italic
}

figure,
.figure {
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    overflow: hidden;
    vertical-align: top
}

img {
    display: block;
    vertical-align: top
}

figure img,
.figure img {
    width: 100%;
    height: auto
}

figcaption,
.acaption {
    padding: .4rem 0 0;
    line-height: 1.5rem;
    font-size: 1.25rem;
}

blockquote,
q {
    clear: both;
    position: relative;
    padding: 0.2rem 0 0.2rem 5rem;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 3.4rem;
    font-size: 2.4rem;
}
blockquote:before,
q:before {
    display: block;
    content: "“";
    margin: 0;
    padding: 0;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    font-size: 10rem;
    position: absolute;
    left: 0;
    top: 0;
}
blockquote p {
	padding: 0 !important;
}

.kvark24-icon {
	display: inline-block;
	vertical-align: middle;
	width: 1rem;
	height: 1rem;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

.inverse,
.inverse h1, .inverse .h1,
.inverse h2, .inverse .h2,
.inverse h3, .inverse .h3,
.inverse h4, .inverse .h4,
.inverse h5, .inverse .h5,
.inverse h6, .inverse .h6 {
	color: #F8F7F1;
}

.bg-rust {
	background-color: #CF784F;
}
.bg-darkgreen {
	background-color: #004132;
}
.bg-beige {
	background-color: #F8F7F1;
}

.clr-rust {
	color: #CF784F;
}
.clr-darkgreen {
	background-color: #004132;	
}

.rounded-corners {
	border-radius: 2.5rem;
}
@media (min-width: 992px) {
	.rounded-corners {
		border-radius: 5rem;
	}
}

#wrap-it-all {
	min-height: 100vh;
  overflow: hidden;
}

#canvas {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%
}

#canvas-cover {
    display: none
}

#content_holder {
	padding: 0;
}

*,
*:before,
*:after,
.border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.nopadding {
    padding: 0 !important
}

.desktoponly {
    display: none !important
}

.abtn {
	height: 5rem;
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #004132;
  border: 0.1rem solid transparent;
  border-radius: 5rem;
  outline: none;
  color: #fff !important;
  vertical-align: top;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  text-decoration: none !important;
  font-family: 'Palanquin', sans-serif;
  font-weight: 500;
  cursor: pointer;
  line-height: 3.4rem;
  font-size: 1.6rem;
  -webkit-backface-visibility: hidden;
  -webkit-transition: border-color .3s, background-color .3s;
  transition: border-color .3s, background-color .3s;
}
.abtn.abtn-alternate {
  height: 4rem;
  border-color: #fff;
  border-radius: .5rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 2.4rem;
  font-size: 1.7rem;
}
.abtn>span {
    display: block
}
.abtn::after,
.abtn>span {
    padding: .7rem 2.4rem;
}
.no-touch .abtn:hover,
.abtn.abtn--active {
	background: #004132;
	color: #fff;
}
.no-touch .abtn:focus {
	background: #004132;
	color: #fff;
}

.no-touch .abtn.abtn-alternate:hover,
.abtn.abtn-alternate.abtn--active {
	background: #fff;
	color: #004132 !important;
}
.no-touch .abtn.abtn-alternate:focus {
	background: #fff;
	color: #004132 !important;
}f#header .logo

#header {
    height: 8rem;
    width: 100%;
    position: fixed;
    left: 0;
    padding-top: 1rem;
    padding-bottom: 2rem;
    z-index: 9999;
    top: 0;
}
#header .col-logo {
  position: relative;
  z-index: 222;
}
#header .logo {
	display: block;
  width: 100%;
}
#header .logo img {
    width: 100%;
    height: auto
}
#header .searchbar {
  max-width: calc(100% - 11rem);
}
#header .searchbar .search-input {
  border-radius: 5rem;
  overflow: hidden;
  width: 100%;
  max-width: 29.5rem;
  height: 4rem;
  position: relative;
}
#header .searchbar input {
  display: block;
  height: 100%;
  width: 100%;
  border: 0 none;
  font-family: "Palanquin";
  font-size: 1.6rem;
  line-height: 2.1rem;
  padding-left: 1.5rem;
  padding-right: 9.7rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#header .searchbar button {
  position: absolute;
  border: 0 none;
  padding: 0;
  margin: 0;
  height: 4rem;
  width: 8.2rem;
  top: 0;
  right: 0;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  background-color: #CF784F;
  color: #fff;
  font-family: "Palanquin";
  font-size: 1.6rem;
  line-height: 2.1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#header .searchbar button svg {
  height: 1.8rem;
  width: 1.8rem;
  font-size: 1.8rem;
}
#menu-toggle {
  background: transparent;
  border: 0 none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 10rem;
  height: 4rem;
  cursor: pointer;
	position: relative;
  border: .1rem solid #fff;
  border-radius: 5rem;
}
/*
#menu-toggle {
  background: transparent;
  border: 0 none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 10rem;
  height: 4rem;
  cursor: pointer;
	position: absolute;
	right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: .1rem solid #fff;
  border-radius: 5rem;
}
*/
#menu-toggle .ham {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: .5rem;
}
#menu-toggle .ham.active {
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
#menu-toggle .menu_label {
  font-family: "Palanquin", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1rem;
  color: #fff;
  position: absolute;
  bottom: .9rem;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

/* GENERAL CONTENT UL LI STYLES */
.element.element_wysiwyg_content ul {
	padding: 0 0 2.4rem;	
}
.element.element_wysiwyg_content ul li {
	position: relative;
	padding-left: 1.7rem;
}
.element.element_wysiwyg_content ul li {
	font-size: 1.5rem;
	line-height: 2.5rem;
}
.element.element_wysiwyg_content ul li::before {
    content: " ";
    background: #CF784F;
    width: 0.6rem;
    height: 0.6rem;
    display: block;
    position: absolute;
    left: 0;
	top: 1.2rem;
    border-radius: 50%;
}
.element.element_wysiwyg_content h2, .element.element_wysiwyg_content .h2 {
}
.element.element_wysiwyg_content h3, .element.element_wysiwyg_content .h3 {
}

@media (min-width: 992px) {
	.element.element_wysiwyg_content ul {
		padding: 0 0 2.8rem;
	}
	.element.element_wysiwyg_content ul li {
		font-size: 1.7rem;
		line-height: 2.8rem;
	}
}

.element.element_wysiwyg_content a {
	font-weight: 600;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}
.element.element_wysiwyg_content a:hover {
	text-decoration: underline;
}

.element.element_wysiwyg_content img {
	border-radius: 5rem;
}

/* GALLERY */
.element.element_gallery .owl-prev,
.element.element_gallery  .owl-next {
	position: absolute;
	top: 50%;
	background: #CF784F;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	opacity: 1;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.element.element_gallery  .owl-prev.disabled,
.element.element_gallery  .owl-next.disabled {
	display: none !important;
}
.element.element_gallery  .owl-prev {
	left: -3rem;
}
.element.element_gallery  .owl-next {
	right: -3rem;
}
.element.element_gallery  .owl-prev:hover,
.element.element_gallery  .owl-next:hover {
}
.element.element_gallery  .owl-prev span,
.element.element_gallery  .owl-next span {
	display: block;
	height: 100%;
	width: 100%;
}
.element.element_gallery  .owl-prev span,
.element.element_gallery  .owl-next span {
	padding: .9rem;
}
.element.element_gallery  .owl-prev svg,
.element.element_gallery  .owl-next svg {
    width: 5rem;
    height: 5rem;
    color: #FFF;
    display: block;
    line-height: 1;
    position: absolute;
    top: 0;
}
.element.element_gallery  .owl-prev svg {
	transform: rotate(90deg);
    left: 1.2rem;
}
.element.element_gallery  .owl-next svg {
	transform: rotate(-90deg);
    right: 1.2rem;
}

/* LIST */
.element.element_list .col-list_item .list-item {
	border-bottom: .1rem solid #004132;
}
.element.element_list .col-list_item:last-child .list-item {
	border: 0 none;
}
.element.element_list .col-list_item .list-item figure {
}
.element.element_list .col-list_item .list-item figure img {
	width: auto;
	height: auto;
	max-width: 13rem;
	max-height: 13rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.element.element_list .col-list_item .list-item figure {
		min-width: 19rem;
		max-width: 19rem;
	}
}
.element.element_list .col-list_item .list-item .the_content a {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	text-decoration: none;
}
.element.element_list .col-list_item .list-item .the_content a.list_item_link {
}
.element.element_list .col-list_item .list-item .the_content a.list_item_link > svg.kvark24-icon {
    height: 2.2rem;
    width: 2.2rem;
}
@media (max-width: 667px) {
	.element.element_list .col-list_item .list-item .the_content p {
		padding: 0;
	}
}

/* HEADER IMAGE */
.container-header_image {
	position: relative;
	padding-bottom: 3.5rem !important;
}
.container-header_image .col-header_image_card {
	background: #F8F7F1;
	overflow: hidden;
}
.container-header_image .col-header_image figure::before {
	content: " ";
	display: block;
    padding-top: 56.25%;
}
.container-header_image .col-header_image_content {
	padding: 1.7rem 2rem 2.6rem;
}
.container-header_image .col-header_image_content .the_title {
	padding: 0 0 .9rem;
  color: #004132;
}
.container-header_image .col-header_image_content .intro {
	font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 600;
  color: #004132;
}
.container-header_image .col-header_image_content .intro .abtn {
  background: #CF784F;
}
.container-header_image .arrow-down {
	height: 8.3rem;
	width: 5.8rem;
	position: absolute;
    bottom: 0;
	left: 4.25rem;
}
.container-header_image .arrow-down::before {
    content: " ";
    background: url(/wp-content/themes/kvark24/images/kvark24-arrow.svg);
    display: block;
    height: 7rem;
    width: 4.3rem;
    margin: 0 auto;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-position: bottom center;
}
.container-header_image .arrow-down::after {
    content: " ";
    display: block;
    width: 5.8rem;
    height: 5.8rem;
    background: #CF784F;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}
@media (min-width: 768px) {
	.container-header_image {
		padding-bottom: 6rem !important;
		margin-bottom: .5rem;
	}
	.container-header_image .col-header_image figure::before {
		padding-top: 75%;
	}
	.container-header_image .col-header_image_content .intro {
		font-size: 1.8rem;
		line-height: 2.8rem;
	}
}
@media (min-width: 992px) {
	.container-header_image .col-header_image_content {
		padding-left: 8rem;
		padding-right: 5rem;
	}
	.container-header_image .arrow-down {
		height: 15.5rem;
		width: 11.5rem;
		left: 8.75rem;
	}
	.container-header_image .arrow-down::before {
		height: 12.7rem;
		width: 6.4rem;
	}
	.container-header_image .arrow-down::after {
		width: 11.5rem;
		height: 11.5rem;
	}
}
@media (max-width: 667px) {
	.container-header_image.container-header_image_alternate {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
		padding-bottom: 3rem !important;
	}
}
.container-header_image.container-header_image_alternate .col-header_image figure::before {
	padding-top: 42.1875%;
}
@media (max-width: 767px) {
	.container-header_image.container-header_image_alternate .col-header_image figure::before {
		padding-top: 75%;
	}
}

.card {
  background: #F8F7F1;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
.card .featured_image::after {
  content: " ";
  display: block;
  padding-top: 75%;
}
.card .the_title {
  color: #004132;
}
.card .abtn {
  background: #CF784F;
}

/* FRONTPAGE */
.col-gallery_teaser .card .featured_image::after {
  padding-top: 36.75%;
}
.row-catalogue_item-list .col-heading a.read_more_link {
  font-size: 1.7rem;
  line-height: 2.8rem; 
  font-weight: 600;
  letter-spacing: .085rem;
  color: #F8F7F1;
  text-decoration: none; 
}
.row-catalogue_item-list .col-heading a.read_more_link .label {
  text-decoration: underline;
}
.row-catalogue_item-list .col-heading a.read_more_link svg {
  height: 2.8rem;
  width: 2.8rem;
  padding-top: .4rem;
}

/* CATALOGUE ARCHIVE */
@media (max-width: 767px) {
  .col-archive_filter {
    position: relative;    
  }
  .archive_filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .archive_filter::-webkit-scrollbar {
    display: none; 
  }
  .col-archive_filter::after {
    content: " ";
    display: block;
    height: 100%;
    width: 2rem;
    position: absolute;
    right: -2rem;
    top: -1rem;
    -webkit-box-shadow: -10px 0 5px 0 #004132;
    box-shadow: -15px 0 5px 0 #004132;
    z-index: 1;
  }
  .archive_filter .abtn {
    flex: 0 0 auto;
  }
}

.catalogue-items_view-toggle button svg {
  height: 1.8rem;
  width: 1.8rem;
  font-size: 1.8rem;
}


.custom-select {
  font-size: 0;
  line-height: 0;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 220px;
  height: 40px;
  line-height: 1;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #004132;
  padding: 1.1rem 1.5rem;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 2rem;
  border: .1rem solid #fff;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}
.select-styled:hover {
  background-color: #004132;
}
.select-styled:active, .select-styled.active {
  background-color: #004132;
}
.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: .5rem 0 0;
  padding: 0;
  list-style: none;
  background-color: #004132;
  border-radius: 2rem;
  border: .1rem solid #fff;
  overflow: hidden;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover, .select-options li.is-selected {
  color: #fff;
  background: #004132;
}
.select-options li[rel="hide"] {
  display: none;
}



.catalogue_item_list {
  position: relative;
}
.catalogue_item_list .col-catalogue_item {
}
.catalogue_item_list .col-catalogue_item .catalogue_item {
  background: #FFF;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
.no-touch .catalogue_item_list .col-catalogue_item .catalogue_item:hover {
}
.catalogue_item_list .col-catalogue_item .catalogue_item .featured_image::after {
  content: " ";
  display: block;
  padding-top: 100%;
}
.catalogue_item_list .col-catalogue_item .catalogue_item .the_title {
  color: #004132;
}
@media (max-width: 767px) {
  .catalogue_item_list .col-catalogue_item .catalogue_item .the_title {
    font-size: 1.7rem;
    line-height: 2.5rem;
  }
}
.apost_card_link {
  position: absolute;
  z-index: 888;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  line-height: 0;
}

.catalogue_item_list[data-view="list"] {
}
.catalogue_item_list[data-view="list"] .col-catalogue_item {
}
.catalogue_item_list[data-view="list"] .col-catalogue_item .catalogue_item {
  height: auto !important;
}
.no-touch .catalogue_item_list[data-view="list"] .col-catalogue_item .catalogue_item:hover {
}
.catalogue_item_list[data-view="list"] .col-catalogue_item .catalogue_item .featured_image {
  width: 8rem;
  height: 8rem;
}
.catalogue_item_list[data-view="list"] .col-catalogue_item .catalogue_item .featured_image::after {
  padding-top: 100%;
}
.catalogue_item_list[data-view="list"] .col-catalogue_item .catalogue_item .the_title {
  font-size: 1.7rem;
  line-height: 2.8rem;
}
.apost_card_link[data-view="list"] {
}

/* CATALOGUE ITEM SINGLE */
.container-catagolue_item-gallery {
}
@media (min-width: 768px) {
  .container-catagolue_item-gallery {
    max-width: calc(((100% -720px) / 2) + 720px) !important;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .container-catagolue_item-gallery {
    max-width: calc(((100% - 960px) / 2) + 960px) !important;
  }
}
@media (min-width: 1200px) {
.container-catagolue_item-gallery {
  max-width: calc(((100% - 1140px) / 2) + 1140px) !important;
}
}
.col-catalogue_item-gallery .agallery {
  position: relative;
}
.col-catalogue_item-gallery .agallery::after {
  content: " ";
  display: block;
  height: calc(100% + 24rem);
  width: 8rem;
  position: absolute;
  right: -12rem;
  top: -12rem;
  -webkit-box-shadow: -10px 0 5px 0 #004132;
  box-shadow: -75px 0 30px 0 #004132;
  z-index: 1;
}
.col-catalogue_item-gallery .agallery .owl-controls {
  display: flex;
  flex-direction: row;
  justify-content: start;
}
@media (max-width: 767px) {
  .col-catalogue_item-gallery .agallery {
    overflow: hidden;
  }
  .col-catalogue_item-gallery .agallery .owl-controls {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .col-catalogue_item-gallery .agallery .owl-controls {
    position: absolute;
    top: -6rem;
    left: 101.8rem;
    width: 10rem;
    justify-content: end;
  }
}
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav {
  display: flex;
    flex-direction: row;
}
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-prev,
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-next {
  margin-right: 1.8rem;
}
@media (min-width: 768px) {
  .col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-prev,
  .col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-next {
    margin-left: 1.8rem;
    margin-right: 0;
  }
}
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-prev > span,
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-next > span {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #CF784F;
  padding: .4rem;
}
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-prev svg,
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-next svg {
  font-size: 3.2rem;
  line-height: 1;
  height: 3.2rem;
  width: 3.2rem;
}
/*
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-prev svg {
  transform: translateY(-.8rem);
}
.col-catalogue_item-gallery .agallery .owl-controls .owl-nav .owl-next svg {
  transform: translateY(-.8rem);
}
*/
.col-catalogue_item-gallery .agallery .owl-item figure {
  border-radius: 1.2rem;
}

.col-catalogue_item-media .catalogue_item-featured_image {
  border-radius: 1.2rem;
}

.col-catalogue_item-data {
}
@media (min-width: 992px) {
  .col-catalogue_item-data {
    padding-right: 12rem;
  }
}
.catalogue_item-back_button a {
  font-size: 1.7rem;
  line-height: 2.8rem; 
  font-weight: 600;
  letter-spacing: .085rem;
  color: #F8F7F1;
  text-decoration: none; 
}
.catalogue_item-back_button a svg {
  height: 2.8rem;
  width: 2.8rem;
  padding-top: .4rem;
}
.catalogue_item-back_button a .label {
  text-decoration: underline;
}
.col-catalogue_item-data .catalogue_item-data_box {
  border-bottom: .1rem solid #C0BEB0;
}
.col-catalogue_item-data .catalogue_item-data_box:last-child {
  border-bottom: 0;
}
.col-catalogue_item-data .catalogue_item-data_box .label,
.col-catalogue_item-media .catalogue_item-image_credit .label {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #C0BEB0;
}
.col-catalogue_item-data .catalogue_item-data_box .the_title {
}
.col-catalogue_item-data .catalogue_item-data_box .value,
.col-catalogue_item-media .catalogue_item-image_credit .value {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  line-height: 2.8rem;
  font-weight: 500;
}
.col-catalogue_item-data .catalogue_item-data_box .value,
.col-catalogue_item-data .catalogue_item-data_box .value a,
.col-catalogue_item-data .catalogue_item-data_box p,
.col-catalogue_item-media .catalogue_item-image_credit .value {
  color: #F8F7F1;
}

.col-catalogue_item-media .featured_image-meta {
  border-bottom: .1rem solid #C0BEB0;
}
.col-catalogue_item-media .featured_image-meta .catalogue_item-featured_image {
  border-radius: 1.2rem;
}
.col-catalogue_item-media .catalogue_item-media_download a {
  font-size: 1.8rem;
  line-height: 2.8rem; 
  font-weight: 600;
  color: #F8F7F1;
  text-decoration: none;
}
.col-catalogue_item-media .catalogue_item-media_download a:hover {
  text-decoration: underline;
}
.col-catalogue_item-media .catalogue_item-media_download a svg {
  height: 3.6rem;
  width: 3.6rem;
  background: #CF784F;
  border-radius: 50%;
  padding: .4rem;
}

/* APOST LIST */
.apost_list,
.avideo_list {
    position: relative;
}
.apost_list[data-view="list"] .row-header {
	text-align: center;
}
.apost_list[data-view="list"] .col-post {
    margin-top: 1.5rem;
}
.apost_list[data-view="list"] .col-post .apost,
.avideo_list .col-video .avideo {
	background: #F8F7F1;
    position: relative;
	border-radius: 2.5rem;
	overflow: hidden;
}
.no-touch .apost_list[data-view="list"] .col-post .apost:hover {
}
.apost_list[data-view="list"] .col-post .apost .featured_image::after {
    content: " ";
	  display: block;
    padding-top: 75%;
}
.apost_list[data-view="list"] .col-post .apost .the_title,
.avideo_list .col-video .avideo .the_title {
  color: #004132;
}
.avideo_list .col-video .avideo .video_tag {
  color: #004132;
}
.avideo_list .col-video .avideo .video_tag::after {
  content: " ";
  width: 4.8rem;
  display: block;
  border-bottom: .2rem solid #CF784F;
  margin-top: .5rem;
}

.apost_list[data-view="list"] .col-post .apost .apost_link {
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: 'Oswald', sans-serif;
}
.apost_list[data-view="list"] .col-post .apost .apost_link > span { 
  display: inline-block;
  vertical-align: middle;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding-bottom: .3rem;
}
.apost_list[data-view="list"] .col-post .apost .apost_link > svg.kvark24-icon {
	height: 2.2rem;
	width: 2.2rem;
}
@media (min-width: 768px) {
	.apost_list[data-view="list"] .col-post .apost .apost_link > span {
		font-size: 1.7rem;
		line-height: 2.8rem;
	}
}

.apost_list[data-view="default"] .col-post {
	position: relative;
}
@media (max-width: 667px) {
	.afrontpage .element_apost_list > .row > .container {
		padding-bottom: 0 !important;
	}
	.afrontpage .apost_list[data-view="default"] .col-post:last-child {
		margin-bottom: 0 !important;
	}
	.afrontpage .apost_list[data-view="alternate"] {
		padding-bottom: 3rem;
	} 
}
@media (min-width: 992px) {
	.afrontpage .apost_list[data-view="default"] .col-post {
		margin-bottom: 0 !important;
		padding-bottom: 9rem;
	}
	.afrontpage .apost_list[data-view="default"] .col-post:last-child {
		padding-bottom: 0;
	}
}
.apost_list[data-view="default"] .col-post .apost {
}
@media (min-width: 992px) {
	.apost_list[data-view="default"] .col-post:nth-child(even) .apost {
		flex-direction: row-reverse;
	}
}
.no-touch .apost_list[data-view="default"] .col-post .apost:hover {
}
.apost_list[data-view="default"] .col-post .apost .col-apost_featured_image {
	border-radius: 2.5rem;
	overflow: hidden;
}
.apost_list[data-view="default"] .col-post .apost .col-apost_featured_image .featured_image::after {
    content: " ";
	display: block;
    padding-top: 70.015%;
}
.apost_list[data-view="default"] .col-post .apost .col-apost_featured_image a.apost_image_link {
	position: absolute;
    display: block;
    top: 0;
	left: 0;
    right: 0;
    bottom: 0;
    z-index: 888;
}
.apost_list[data-view="default"] .col-post .apost .col-apost_content {
}
.apost_list[data-view="default"] .col-post .apost .col-apost_content .apost_content {
}
.apost_list[data-view="default"] .col-post .apost .the_title {
}
@media (min-width: 992px) {
	.apost_list[data-view="default"] .col-post .apost .the_title {
		line-height: 4rem;
	}	
}
.apost_list[data-view="default"] .col-post .apost .apost_link {
    display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    font-weight: 600;
	letter-spacing: 0.05em;
	font-family: 'Oswald', sans-serif;
}
.apost_list[data-view="default"] .col-post .apost .apost_link > span { 
	display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 2.5rem;
	padding-bottom: .3rem;
}
.apost_list[data-view="default"] .col-post .apost .apost_link > svg.kvark24-icon {
	height: 2.2rem;
	width: 2.2rem;
}
@media (min-width: 768px) {
	.apost_list[data-view="default"] .col-post .apost .apost_link > span { 
		font-size: 1.7rem;
		line-height: 2.8rem;
	}
}
.apost_list[data-view="default"] .col-post .apost .apost_content .the_excerpt {
    padding: 0 0 1.1rem;
}

.apost_list[data-view="alternate"] .col-post {
}
.apost_list[data-view="alternate"] .col-post .apost {
	background: #F8F7F1;
    position: relative;
	border-radius: 2.5rem;
	overflow: hidden;
}
.no-touch .apost_list[data-view="alternate"] .col-post .apost:hover {
}
.apost_list[data-view="alternate"] .col-post .apost .featured_image::after {
    content: " ";
	display: block;
    padding-top: 42.1875%; /* 64:27 Ultra Wide format */
}
.apost_list[data-view="alternate"] .col-post .apost .the_title {
	line-height: 3.6rem;
}
.apost_list[data-view="alternate"] .col-post .apost .apost_content {
    padding: 1.7rem 1.8rem 1.8rem;
	position: relative;
}
.apost_list[data-view="alternate"] .col-post .apost .apost_content .the_excerpt {
    padding: 0 0 .3rem;
}
.apost_list[data-view="alternate"] .col-post .apost .apost_link {
    display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    font-weight: 600;
	letter-spacing: 0.05em;
	font-family: 'Oswald', sans-serif;
}
.apost_list[data-view="alternate"] .col-post .apost .apost_link > span { 
	display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 2.5rem;
	padding-bottom: .3rem;
}
.apost_list[data-view="alternate"] .col-post .apost .apost_link > svg.kvark24-icon {
	height: 2.2rem;
	width: 2.2rem;
}
@media (min-width: 768px) {
	.apost_list[data-view="alternate"] .col-post .apost .apost_link > span { 
		font-size: 1.7rem;
		line-height: 2.8rem;
	}
}
.apost_card_link {
	position: absolute;
	z-index: 888;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 0;
	line-height: 0;
}

@media (min-width: 768px) {
	.element.element_apost_list {
		padding-bottom: 5rem;
	}
	.element.element_apost_list_primary {
		padding-bottom: 6rem;
	}
	.element.element_apost_list_primary .col-header .apost_list_title {
		text-align: center;
	}
}

@media (min-width: 992px) {
	.element.element_apost_list {
		padding-bottom: 9rem;
	}
	.element.element_apost_list_primary {
		padding-bottom: 9rem;
	}
	.element.element_apost_list .apost_list[data-view="alternate"] .row .col-post:nth-child(odd) {
		padding-left: 0.75rem !important;
	}
	.element.element_apost_list .apost_list[data-view="alternate"] .row .col-post:nth-child(even) {
		padding-right: 0.75rem !important;
	}
}

#infinite-posts-container {
}

@media (max-width: 767px) {
	.apost_slider .owl-stage {
		left: -5.5rem;
	}
}
@media (min-width: 768px) {
	.apost_slider .owl-prev,
	.apost_slider .owl-next {
		position: absolute;
		top: 50%;
		background: #CF784F;
		width: 5rem;
		height: 5rem;
		border-radius: 50%;
		opacity: 1;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.apost_slider .owl-prev.disabled,
	.apost_slider .owl-next.disabled {
		display: none !important;
	}
	.apost_slider .owl-prev {
		left: -1rem;
	}
	.apost_slider .owl-next {
		right: -1rem;
	}
	.apost_slider .owl-prev:hover,
	.apost_slider .owl-next:hover {
	}
	.apost_slider .owl-prev span,
	.apost_slider .owl-next span {
		display: block;
		height: 100%;
		width: 100%;
	}
	.apost_slider .owl-prev span,
	.apost_slider .owl-next span {
		padding: .9rem;
	}
	.apost_slider .owl-prev svg,
	.apost_slider .owl-next svg {
		width: 5rem;
		height: 5rem;
		color: #FFF;
		display: block;
		line-height: 1;
		position: absolute;
		top: 0;
	}
	.apost_slider .owl-prev svg {
		transform: rotate(90deg);
		left: 1.2rem;
	}
	.apost_slider .owl-next svg {
		transform: rotate(-90deg);
		right: 1.2rem;
	}
}
@media (min-width: 992px) {
	#infinite-posts-container {
	}
	.apost_slider[data-num_items="2"] {
		width: 50%;
		margin: 0 auto;
	}
	.apost_slider[data-num_items="3"] {
		width: 75%;
		margin: 0 auto;
	}
	.apost_slider .owl-prev {
		left: -5rem;
	}
	.apost_slider .owl-next {
		right: -5rem;
	}
}

/* EVENT/POST PAGE */
.col-intro .intro {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 600;
}
@media (min-width: 992px) {
	.col-intro .intro {
		font-size: 1.8rem;
		line-height: 2.8rem;
	}	
}
.col-sidebar {
	padding-bottom: 4rem;
}
.col-sidebar:last-child {
	padding-bottom: 0;
}
.col-sidebar .abtn {
	width: 100%;
	display: block;
}

@media (max-width: 667px) {
	.sidebar-primary {
		padding-bottom: 3rem;
	}
}

.booking-box {
}

.faktaboks {
}
.faktaboks .faktaboks-links {
}
.faktaboks .faktaboks-links .faktaboks_link {
	display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
	font-family: "Oswald", sans-serif;
    font-weight: 600;
	letter-spacing: 0.05em;
}
.faktaboks .faktaboks-links .faktaboks_link > span { 
	display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    line-height: 2.5rem;
	padding-bottom: .3rem;
}
.faktaboks .faktaboks-links .faktaboks_link > svg.kvark24-icon {
	height: 2.2rem;
	width: 2.2rem;
}
@media (min-width: 768px) {
	.faktaboks .faktaboks-links .faktaboks_link > span { 
		font-size: 1.7rem;
		line-height: 2.8rem;
	}
}
.event_list {}
.event_list .col-event {
	position: relative;
}
.event_list .col-event .apost .event_date {
	position: relative;
}
.event_list .col-event .apost .event_date::after {
    content: " ";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background: #CF784F;
    margin: 0.4rem 0 1.2rem;
}
.event_list .col-event .apost .event_details {
	padding: 0 0 .4rem;
}
.event_list .col-event .apost .the_title {
}
.event_list .col-event .apost .apost_link {
    display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
	font-family: "Oswald", sans-serif;
    font-weight: 600;
	letter-spacing: 0.05em;
}
.event_list .col-event .apost .apost_link > span { 
	display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    line-height: 2.5rem;
	padding-bottom: .3rem;
}
.event_list .col-event .apost .apost_link > svg.kvark24-icon {
	height: 2.2rem;
	width: 2.2rem;
}
.event_list .col-event .apost .apost_content {
    border-bottom: .1rem solid #004132;
	position: relative;
}
.event_list .col-event:last-child .apost .apost_content {
	border: 0 none;
	padding: 0;
}

.anarticle {
    position: relative;
}
@media (min-width: 992px) {
	.anarticle {
		padding-bottom: 7rem;
	}
}
.anarticle .the_content {
    position: relative;
    padding: 0;
}
.anarticle .article_elements {
	padding-top: 2rem;
}
.anarticle .article_elements .element,
.anarticle .article_elements figure {
    margin-bottom: 4rem;
}
.anarticle .article_elements figure,
.anarticle .article_elements figure img,
.anarticle .article_elements img {
    vertical-align: top;
    max-width: 100% !important;
    height: auto
}
.anarticle .article_elements figure,
.anarticle .article_elements figure img:not(.alignleft),
.anarticle .article_elements img:not(.alignleft) {
    width: 100%;
}
@media (max-width: 767px) {
	.anarticle .article_elements figure,
	.anarticle .article_elements figure img,
	.anarticle .article_elements img {
		width: 100%;
	}
	.anarticle .article_elements img.alignleft {
		margin-bottom: 1.5rem;
	}
}
@media (min-width: 768px) {
	.anarticle .article_elements img.alignleft {
		float: left;
		margin-right: 1.5rem;
	}
}

.anarticle .article_elements figure.floated {
    float: left;
    margin-right: 1rem;
    margin-bottom: 0 !important;
    max-width: calc(50% - 1rem) !important
}
@media (max-width: 767px) {
	.anarticle .article_elements figure.floated {
		max-width: 100% !important;
		margin-bottom: 1rem !important;
		margin-right: 0;
		float: none;
	}
}

.anarticle .article_elements figure.floated figure {
    margin-bottom: 0 !important
}

.anarticle .article_elements .element_wysiwyg_content a:not(.abtn),
.anarticle .article_elements .element_image_fullsize a,
.anarticle .article_elements .element_video a,
.anarticle .article_elements .element_gallery a,
.anarticle .article_elements .element_listing a {
    color: #000;
    text-decoration: underline;
	-webkit-transition: color .25s ease 0s;
	-moz-transition: color .25s ease 0s;
	-ms-transition: color .25s ease 0s;
	transition: color .25s ease 0s;
}
.anarticle .article_elements .element_wysiwyg_content a:not(.abtn):hover,
.anarticle .article_elements .element_image_fullsize a:hover,
.anarticle .article_elements .element_video a:hover,
.anarticle .article_elements .element_gallery a:hover,
.anarticle .article_elements .element_listing a:hover {
	color: #16639B;
}
.anarticle .article_elements .element_wysiwyg_content > h2 {
	padding: 0 0 .4rem;
}
.anarticle .article_elements .element_wysiwyg_content > h3 {
	padding: 0 0 .4rem;
	font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.6rem;
}
@media (min-width: 768px) {
	.anarticle .article_elements .element_wysiwyg_content > h3 {
		font-size: 2rem;
    	line-height: 3rem;
	}
}
.anarticle .article_elements .element_wysiwyg_content ul:not(.gform_fields),
.anarticle .article_elements .element_wysiwyg_content ol {
    margin: 0 0 1.8rem 0;
}

.anarticle .article_elements .element_wysiwyg_content ul:not(.gform_fields) li,
.anarticle .article_elements .element_wysiwyg_content ol {
    list-style: outside
}

.anarticle .article_elements .element_wysiwyg_content ol li {
    list-style: decimal
}

.anarticle .article_elements .element_wysiwyg_content ul li ul:not(.gform_fields) li {
    list-style-type: circle;
}

.anarticle .article_elements .element_video {
    clear: both;
    width: 100%
}
.anarticle .article_elements .element_video .oembed-container,
.anarticle .article_elements .element_listing .oembed-container {
    position: relative;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.anarticle .article_elements .element_video .oembed-container:before,
.anarticle .article_elements .element_listing .oembed-container:before {
    display: block;
    content: "";
    padding-top: 56.25%;
    overflow: hidden
}
.anarticle .article_elements .element_video .oembed-container iframe,
.anarticle .article_elements .element_video .oembed-container object,
.anarticle .article_elements .element_video .oembed-container embed,
.anarticle .article_elements .element_listing .oembed-container iframe,
.anarticle .article_elements .element_listing .oembed-container object, 
.anarticle .article_elements .element_listing .oembed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.oembed-container iframe {
    width: 100%;
    height: auto;
}
.embedded_video {
    position: relative;
    margin: 0 0 2rem;
    overflow: hidden
}
.embedded_video:before {
    display: block;
    content: "";
    padding-top: 56.25%;
    overflow: hidden
}

.embedded_video iframe,
.embedded_video object,
.embedded_video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#footer {
	margin-top: auto;
  padding: 0;
	color: #004132;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
body.page-template-default #footer,
body.post-template-default #footer {
	/*margin-top: 3rem;*/
}
#footer .acolumn {
    position: relative;
}
#footer .container-footer {
}
#footer .container-footer a {
	text-decoration: none;
	font-weight: 600;
	color: #004132;
}
#footer .col-footer_columns .col-footer_menu a,
#footer .col-footer_columns .col-footer_contact a[href^="mailto:"] {
	font-family: "Oswald", sans-serif;
}
#footer .col-footer_columns .col-footer_menu a {
	color: #FFF;
}
#footer .col-footer_columns .col-footer_menu a::after {
	content: " ";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background-size: cover;
  vertical-align: middle;
  margin-top: -0.35rem;
}
#footer .col-footer_columns .col-footer_menu a::after {
    background-image: url(/wp-content/themes/kvark24/images/icons/SVG/chevron-right-white.svg);
}
#footer .col-footer_columns .col-footer_menu_secondary a {
  color: #CF784F;
}
#footer .col-footer_columns .col-footer_menu_secondary a::after {
  background-image: url(/wp-content/themes/kvark24/images/icons/SVG/chevron-right-rust.svg);
}
#footer .col-footer_columns .col-footer_contact a {
	color: #FFF;
	font-weight: 400;
}
#footer .col-footer_columns .col-footer_contact a[href^="mailto:"] {
	font-weight: 600;
	text-decoration: none;
	color: #CF784F;
}
#footer .container-footer .the_title {
	font-size: 1.8rem;
	line-height: 3.4rem;
	font-weight: 500;
	color: #004132;
	padding: 0 0 1.2rem;
}
#footer .col-footer_columns {
}
#footer .col-footer_columns .col-12 {
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  #footer .col-footer_columns .col-12 {
    padding: 3rem 5rem;
  }
}
#footer .col-footer_columns .col-footer_contact {
	background: #F8F7F1;
}
#footer .col-footer_columns .col-footer_menu_primary {
	background: #CF784F;
}
#footer .col-footer_columns .col-footer_menu_secondary {
	background: #FFFFFF;
}
#footer .col-footer_columns p {
}

@media (min-width: 1px) and (max-width: 1023px) {
  #wrap-it-all {
      position: relative;
      max-width: 100%;
      overflow: hidden
  }
}
html.menu-open {
  width: 100vw;
  overflow: hidden;
  height: 100vh
}
.menu-open #canvas {
  width: 100%;
  overflow: hidden
}
.menu-open #canvas #canvas-cover {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  min-height: 100%;
  height: 100vh
}
#mobile-menu-wrapper {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #004132;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  -webkit-transform: translateX(calc(100% + 3rem));
  -moz-transform: translateX(calc(100% + 3rem));
  transform: translateX(calc(100% + 3rem));
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
#mobile-menu-wrapper .container-mobile_menu {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.menu-open #mobile-menu-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media (min-width: 768px) {
  #mobile-menu-wrapper {
    width: 63rem;
  }
  .menu-open #mobile-menu-wrapper {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
#mobile-menu-top {
  height: 11rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0 2rem;
  position: relative;
}
#mobile-menu-top a.logo img {
width: 100%;
height: auto;
}
#mobile-menu-navigations {
width: 100%;
padding: 0;
height: calc(100vh - 10.5rem);
overflow-y: scroll;
overflow-x: hidden;
}
#mobile-menu-navigations {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
#mobile-menu-navigations::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}
@media (min-width: 768px) {
  #mobile-menu-navigations {
    padding-left: 6rem; 
  }
}
@media (min-width: 992px) {
  #mobile-menu-navigations {
    padding-left: 10rem; 
  }
}

.secondary_nav-header .the_title {
  font-family: "Oswald", sans-serif;
  color: #C0BEB0;
  font-size: 1.7rem;
  line-height: 1;
}

#primary-menu-mobile ul {
position: relative;
}
#primary-menu-mobile > ul > li {
margin: 0;
font-size: 0;
line-height: 0;
vertical-align: top;
}
#primary-menu-mobile > ul > li > a {
  display: block;
  color: #fff;
  height: auto;
  text-decoration: none;
  font-weight: 400;
  line-height: 1;
  font-size: 2.4rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  font-family: "Oswald", sans-serif;
}

#primary-menu-mobile ul>li .toggle-submenu {
display: inline-block;
height: 5.4rem;
width: 2.8rem;
text-align: right;
padding: 1.7rem 0;
vertical-align: top;
}
#primary-menu-mobile ul>li .toggle-submenu svg {
font-size: 2rem;
line-height: 2rem;
font-weight: bold;
width: 2rem;
height: 2rem;
}


#primary-menu-mobile ul>li>ul.sub-menu {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
overflow-x: hidden;
overflow-y: scroll;
padding: 0;
background: #FFF;
z-index: 1;
left: 0;
-webkit-transition: transform .25s ease-in-out;
-moz-transition: transform .25s ease-in-out;
-ms-transition: transform .25s ease-in-out;
transition: transform .25s ease-in-out;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
border: 0 none;
}
#primary-menu-mobile ul>li>ul.sub-menu ul.sub-menu {
top: 0;
}
#primary-menu-mobile ul>li>ul.sub-menu.open {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
    transform: translateX(0);
}
#primary-menu-mobile ul>li>ul.sub-menu li.close-submenu {
padding: 0 1.5rem;
}
#primary-menu-mobile ul>li>ul.sub-menu li.close-submenu a {
display: block;
color: #CF784F;
width: 100%;
height: 5.4rem;
text-decoration: none;
font-weight: 700;
line-height: 5.4rem;
font-size: 2rem;
border-bottom: 0.1rem solid #F7F6F3;
}
#primary-menu-mobile ul>li>ul.sub-menu li.close-submenu a .the_title {
display: inline-block;
vertical-align: middle;
}
#primary-menu-mobile ul>li>ul.sub-menu li.close-submenu a svg {
font-size: 2rem;
line-height: 2rem;
height: 2rem;
width: 2rem;
vertical-align: middle;
margin-left: -0.5rem;
margin-right: 0.5rem;
}
#primary-menu-mobile ul>li>ul.sub-menu li.close-submenu a .sub-anchor {
display: none;
color: #fff;
}
#primary-menu-mobile ul>li>ul.sub-menu li.menu-item {
padding: 0 1.5rem;
}
#primary-menu-mobile ul>li>ul.sub-menu li.menu-item > a {
display: block;
color: #000;
width: 100%;
text-decoration: none;
font-weight: 600;
line-height: 2.7rem;
font-size: 1.8rem;
border-bottom: 0.1rem solid #F7F6F3;
padding-top: 1.35rem;
padding-bottom: 1.35rem;
}
#primary-menu-mobile ul>li>ul.sub-menu li:not(.menu-item) {
border: 0 none;
}
#primary-menu-mobile ul>li>ul.sub-menu li a {
}
#mobile-menu-bottom {
position: absolute;
bottom: 0;
width: 100%;
background: #1B472E;
padding: 2.05rem 2rem;
margin-top: 4rem;
margin-left: -1rem;
margin-right: -1rem;
color: #FFF;
border-radius: 2.5rem 2.5rem 0 2.5rem;
height: 6.4rem;
z-index: 10;
}
#mobile-menu-bottom a {
color: #FFF;
font-weight: 600;
text-decoration: none;
display: block;
}
#mobile-menu-bottom .contact-details {
font-size: 0;
line-height: 0;
vertical-align: top;
text-align: center;
}
#mobile-menu-bottom .contact-details li {
display: inline-block;
vertical-align: top;
font-size: 1.5rem;
line-height: 2.6rem;
}
#mobile-menu-bottom .contact-details li.email {
margin-right: 3rem;
position: relative;
}
#mobile-menu-bottom .contact-details li.email::before {
content: " ";
display: block;
height: 1.5rem;
position: absolute;
width: 0.1rem;
background: #fff;
top: 50%;
transform: translateY(-50%);
right: -1.6rem;
}



@media (min-width: 768px) and (max-width: 991px) {
	.container {
		max-width: 720px !important;
	}
}
@media (min-width: 767px) {
	#mobile-menu-wrapper {
    width: 100%;
		max-width: 100%;
	}
  #mobile-menu-wrapper {
		box-shadow: 0px 0px 3rem rgba(0, 0, 0, 0.35);
	}
}

@media (min-width: 768px) {
    body {
    }
    h1,
    .h1 {
    }
    h2,
    .h2 {
    }
    h3,
    .h3 {
    }
    h4,
    .h4 {
    }
    h6,
    .h6 {
    }
    p {
    }
    hr,
    p+hr {
    }
    figcaption,
    .acaption {
    }
    blockquote,
    q {
    }
    blockquote:before,
    q:before {
    }
	.abtn {
	}
	.abtn::after, .abtn>span {
	}
	#canvas {
	}
}
@media (min-width: 768px) and (max-width: 992px) {
}
@media (min-width: 992px) {
    body {
		font-size: 1.7rem;
		line-height: 2.8rem;
    }
    h1,
    .h1 {
    	font-size: 4.5rem;
		line-height: 5rem;
	}
    h2,
    .h2 {
		font-size: 3.5rem;
		line-height: 5rem;
    }
    h3,
    .h3 {
		font-size: 2.1rem;
		line-height: 2.8rem;
    }
    h4,
    .h4 {
		font-size: 2.1rem;
		line-height: 3.4rem;
    }
    h6,
    .h6 {
    }
    p {
        padding: 0 0 2.8rem;
    }
    hr,
    p+hr {
    }
    figcaption,
    .acaption {
    }
    blockquote,
    q {
    }
    blockquote:before,
    q:before {
    }
	#canvas {
		min-height: 100vh;
	}
	#header {
		height: 11rem;
	}
	#header .col-logo,
	#header .col-primary-menu {
		height: 8rem;
	}
	 #header .logo {
		position: relative;
		left: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		max-width: 43.7rem;
	}
	#header .logo img.logo-desktop {
		display: block !important;
	}
	#header .logo img.logo-mobile {
		display: none;
	}

    /*
    #mobile-menu-wrapper {
        display: none;
    }
    */
    #header .col-primary-menu {
        display: block;
        position: relative;
        top: 0;
        z-index: 888;
    }
    #primary-menu {
        display: block;
        position: relative;
		width: 100%;
    }
    #primary-menu>ul {
		float: right;
    }
    #primary-menu ul li {
        position: relative;
        float: left;
        padding: 2.5rem 0;
	}
	#primary-menu>ul>li {
		padding: 2.5rem 0 2.5rem;
    }
	#primary-menu ul li.menu-item-has-children {
		padding-right: 2rem;
	}
    #primary-menu ul>li:last-child {
        margin: 0
    }
    #primary-menu ul>li>a {
        display: block;
        padding: 0 1rem;
        width: 100%;
        height: 100%;
        text-decoration: none;
		font-family: 'Oswald', sans-serif;
        font-weight: 500;
        line-height: 3rem;
        font-size: 1.5rem;
		color: #004132;
		position: relative;
    }
    .no-touch #primary-menu ul>li:not(.menu-btn):hover>a,
    .touch #primary-menu ul>li:not(.menu-btn).hasbeentouched>a,
	#primary-menu ul>li.current-menu-item:not(.menu-btn)>a,
	#primary-menu ul>li.current-menu-ancestor:not(.menu-btn)>a {
		color: #CF784F;
    }
	#primary-menu>ul>li.current-menu-item:not(.menu-btn),
	#primary-menu>ul>li.current-menu-ancestor:not(.menu-btn) {
		border-color: #64834B;
    }
    .touch #primary-menu ul li.touchonly {
        display: block !important
    }
    .no-touch #primary-menu ul li.touchonly {
        height: .1rem !important;
        overflow: hidden
    }
    .no-touch #primary-menu ul li.touchonly a {
        height: .1rem !important;
        overflow: hidden
    }
    .no-touch #primary-menu ul>li:hover>a,
    .touch #primary-menu ul>li.hasbeentouched>a {
    }
    #primary-menu>ul>li>ul.sub-menu {
        position: absolute;
        top: 100%;
        left: 1rem;
        background: #fff;
        width: auto;
        height: auto;
		overflow: hidden;
		margin-top: -.4rem;
		padding: 1rem 2.5rem;
    	border-radius: 0;
    	border-top: 0.4rem solid #CF784F;
		box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
		display: none;
    }
    .no-touch #primary-menu>ul>li:hover>ul.sub-menu,
    .touch #primary-menu>ul>li.hasbeentouched>ul.sub-menu {
        display: block;
    }
    #primary-menu ul>li>ul.sub-menu li {
        float: none;
        padding: 0;
        width: 100%;
        height: auto;
		white-space: nowrap;
    }
    #primary-menu ul>li>ul.sub-menu li a {
        height: auto;
        text-transform: none;
        font-size: 1.6rem;
		line-height: 4.2rem;
		padding: 0;
    }
	#primary-menu ul>li .arrow {
		width: 2rem;
		height: 2rem;
		display: inline-block;
		position: absolute;
		margin: 0;
		right: 0.5rem;
		top: calc(50% + 0.5rem);
		transform: translateY(-50%);
	}
	#primary-menu ul>li .arrow span {
		top: 0.5rem;
		position: absolute;
		width: 1.25rem;
		height: 0.2rem;
		background-color: #000;
		display: inline-block;
		transition: all 0.2s ease;
	}
	#primary-menu ul>li:hover .arrow span,
	#primary-menu ul>li.current-menu-item .arrow span,
	#primary-menu ul>li.current-menu-ancestor .arrow span {
		background-color: #CF784F;
	}
	#primary-menu ul>li .arrow span:first-of-type {
		left: 0;
		transform: rotate(45deg);
	}
	#primary-menu ul>li .arrow span:last-of-type {
		right: 0;
		transform: rotate(-45deg);
	}
	#primary-menu ul>li:hover .arrow span:first-of-type {
		transform: rotate(-45deg);
	}
	#primary-menu ul>li:hover .arrow span:last-of-type {
		transform: rotate(45deg);
	}
	
	#primary-menu ul>li.menu-btn {
		padding-top: 2.15rem;
		padding-bottom: 1.85rem;
		margin-left: 1rem;
	}
	#primary-menu ul>li.menu-btn a {
		padding: .25rem 1.5rem .55rem;
		border: .1rem solid #004132;
		border-radius: 5rem;
	}
	
    .desktoponly {
        display: inline-block !important
    }
    .mobileonly {
        display: none !important
    }
	.apost_archive.apost_list {
    }
	.apost_list .col-post {
	}
	#footer {
		width: 100%;
		position: relative;
	}
	#footer:before,
	#footer:after {
		content: " ";
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
	}
	#footer:before {
		background: #F8F7F1;
		left: 0;
	}
	#footer:after {
		background: #FFFFFF;
		right: 0;
	}
	#footer .container-footer {
		position: relative;
		z-index: 1;
	}
	#footer .col-footer_columns .col-12 {
		padding-top: 5.5rem;
		padding-bottom: 10rem;
	}
}

@media (min-width: 1170px) {
}

@media (min-width: 1440px) {
}

/* GRAVITY FORMS */
html .gform_wrapper {
    margin: 0;
    max-width: 100%;
    width: 100%
}
html .gform_wrapper input {
    outline: none
}
html .gform_wrapper .gfield,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required {
    margin: 0 0 1.5rem !important
}
html .gform_wrapper .gfield.clear,
html .gform_wrapper .gfield .gf_clear {
	clear: both;
}
html .gform_wrapper .gfield.hidden_label .gfield_label,
html .gform_wrapper .gfield .hidden_sub_label {
	display: none !important;
}

html .gform_wrapper .gfield .ginput_complex .ginput_full {
	padding: 0 0 1.5rem;
	display: block;
}
html .gform_wrapper .gfield .ginput_complex .ginput_left,
html .gform_wrapper .gfield .ginput_complex .ginput_right,
html .gform_wrapper .gfield.align-left,
html .gform_wrapper .gfield.align-right {
	width: calc(50% - .75rem);	
}
html .gform_wrapper .gfield .ginput_complex .ginput_right,
html .gform_wrapper .gfield.align-left {
	float: left; /* reversed order */
}
html .gform_wrapper .gfield .ginput_complex .ginput_left,
html .gform_wrapper .gfield.align-right {
	float: right; /* reversed order */
}


html .gform_wrapper .top_label .gfield_error,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required div.gfield_description,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required div.ginput_container,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required label.gfield_label,
html .gform_wrapper .top_label .gfield_error input.large,
html .gform_wrapper .top_label .gfield_error select.large,
html .gform_wrapper .top_label .gfield_error textarea.textarea {
    margin: 0;
    max-width: 100%;
    width: 100%
}
html .gform_wrapper .gfield_error input[type=email],
html .gform_wrapper .gfield_error input[type=number],
html .gform_wrapper .gfield_error input[type=password],
html .gform_wrapper .gfield_error input[type=tel],
html .gform_wrapper .gfield_error input[type=text],
html .gform_wrapper .gfield_error input[type=url],
html .gform_wrapper .gfield_error textarea {
    border-color: #CF784F
}
html .gform_wrapper li.gfield.gfield_error,
html .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    padding: 0;
    border: none
}
html img.gform_ajax_spinner {
    display: none !important
}
html .gform_wrapper .gfield.gfield_error *,
html .gform_wrapper .gfield_error .gfield_label,
html .gform_wrapper .gfield.gfield_error.gfield_contains_required div.gfield_description {
    color: #CF784F !important
}
html .gform_wrapper .top_label .gfield_label {
	font-family: "Oswald", sans-serif;
    font-size: 1.7rem;
    line-height: 2.8rem;
    color: #004132;
    font-weight: 600;
}
html body .gform_wrapper label.gfield_label+div.ginput_container {
}
html body .gform_wrapper label.gfield_label+div.ginput_container_radio,
html body .gform_wrapper label.gfield_label+div.ginput_container_checkbox {
}
html .gform_wrapper .top_label input.small,
html .gform_wrapper .top_label input.medium,
html .gform_wrapper .top_label input.large,
html .gform_wrapper .top_label select.small,
html .gform_wrapper .top_label select.medium,
html .gform_wrapper .top_label select.large,
html .gform_wrapper .ginput_complex input[type=text],
html .gform_wrapper .gform_fields .gfield select,
html .gform_wrapper .gfield_time_hour input,
html .gform_wrapper .gfield_time_minute input,
html .gform_wrapper .ginput_container_date input {
	background: transparent;
    height: 6rem;
    outline: none;
    border-width: .1rem;
    border-style: solid;
    border-color: #CF784F;
    border-radius: 5rem;
    padding: 1.5rem 3rem;
    width: 100% !important;
    text-indent: 0;
	color: #004132;
    font-family: "Oswald", sans-serif;
    font-size: 1.7rem;
    line-height: 2.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media (max-width: 667px) {
	html .gform_wrapper .top_label input.small,
	html .gform_wrapper .top_label input.medium,
	html .gform_wrapper .top_label input.large,
	html .gform_wrapper .top_label select.small,
	html .gform_wrapper .top_label select.medium,
	html .gform_wrapper .top_label select.large,
	html .gform_wrapper .ginput_complex input[type=text],
	html .gform_wrapper .gform_fields .gfield select,
	html .gform_wrapper .gfield_time_hour input,
	html .gform_wrapper .gfield_time_minute input,
	html .gform_wrapper .ginput_container_date input {
		font-size: 1.5rem;
	}
}
html .gform_wrapper .top_label input.small::-webkit-input-placeholder,
html .gform_wrapper .top_label input.medium::-webkit-input-placeholder,
html .gform_wrapper .top_label input.large::-webkit-input-placeholder,
html .gform_wrapper .top_label select.small::-webkit-input-placeholder,
html .gform_wrapper .top_label select.medium::-webkit-input-placeholder,
html .gform_wrapper .top_label select.large::-webkit-input-placeholder,
html .gform_wrapper .ginput_complex input[type=text]::-webkit-input-placeholder,
html .gform_wrapper .gform_fields .gfield select::-webkit-input-placeholder,
html .gform_wrapper .gfield_time_hour input::-webkit-input-placeholder,
html .gform_wrapper .gfield_time_minute input::-webkit-input-placeholder,
html .gform_wrapper .ginput_container_date input::-webkit-input-placeholder {
    color: #999999;
}
html .gform_wrapper .top_label input.small::-moz-placeholder,
html .gform_wrapper .top_label input.medium::-moz-placeholder,
html .gform_wrapper .top_label input.large::-moz-placeholder,
html .gform_wrapper .top_label select.small::-moz-placeholder,
html .gform_wrapper .top_label select.medium::-moz-placeholder,
html .gform_wrapper .top_label select.large::-moz-placeholder,
html .gform_wrapper .ginput_complex input[type=text]::-moz-placeholder,
html .gform_wrapper .gform_fields .gfield select::-moz-placeholder,
html .gform_wrapper .gfield_time_hour input::-moz-placeholder,
html .gform_wrapper .gfield_time_minute input::-moz-placeholder,
html .gform_wrapper .ginput_container_date input::-moz-placeholder {
    color: #999999;
}
html .gform_wrapper .top_label input.small:-ms-input-placeholder,
html .gform_wrapper .top_label input.medium:-ms-input-placeholder,
html .gform_wrapper .top_label input.large:-ms-input-placeholder,
html .gform_wrapper .top_label select.small:-ms-input-placeholder,
html .gform_wrapper .top_label select.medium:-ms-input-placeholder,
html .gform_wrapper .top_label select.large:-ms-input-placeholder,
html .gform_wrapper .ginput_complex input[type=text]:-ms-input-placeholder,
html .gform_wrapper .gform_fields .gfield select:-ms-input-placeholder,
html .gform_wrapper .gfield_time_hour input:-ms-input-placeholder,
html .gform_wrapper .gfield_time_minute input:-ms-input-placeholder,
html .gform_wrapper .ginput_container_date input:-ms-input-placeholder {
    color: #999999;
}
html .gform_wrapper .top_label input.small.invalid,
html .gform_wrapper .top_label input.medium.invalid,
html .gform_wrapper .top_label input.large.invalid,
html .gform_wrapper .top_label select.small.invalid,
html .gform_wrapper .top_label select.medium.invalid,
html .gform_wrapper .top_label select.large.invalid,
html .gform_wrapper .ginput_complex input[type=text].invalid,
html .gform_wrapper .gform_fields .gfield select.invalid,
html .gform_wrapper .gfield_time_hour input.invalid,
html .gform_wrapper .gfield_time_minute input.invalid,
html .gform_wrapper .ginput_container_date input.invalid {
    color: #CF784F
}
html .gform_wrapper .top_label input.small.invalid::-webkit-input-placeholder,
html .gform_wrapper .top_label input.medium.invalid::-webkit-input-placeholder,
html .gform_wrapper .top_label input.large.invalid::-webkit-input-placeholder,
html .gform_wrapper .top_label select.small.invalid::-webkit-input-placeholder,
html .gform_wrapper .top_label select.medium.invalid::-webkit-input-placeholder,
html .gform_wrapper .top_label select.large.invalid::-webkit-input-placeholder,
html .gform_wrapper .ginput_complex input[type=text].invalid::-webkit-input-placeholder,
html .gform_wrapper ul.gform_fields li.gfield select.invalid::-webkit-input-placeholder,
html .gform_wrapper .gfield_time_hour input.invalid::-webkit-input-placeholder,
html .gform_wrapper .gfield_time_minute input.invalid::-webkit-input-placeholder,
html .gform_wrapper .ginput_container_date input.invalid::-webkit-input-placeholder {
    color: #CF784F
}

html .gform_wrapper .top_label input.small.invalid::-moz-placeholder,
html .gform_wrapper .top_label input.medium.invalid::-moz-placeholder,
html .gform_wrapper .top_label input.large.invalid::-moz-placeholder,
html .gform_wrapper .top_label select.small.invalid::-moz-placeholder,
html .gform_wrapper .top_label select.medium.invalid::-moz-placeholder,
html .gform_wrapper .top_label select.large.invalid::-moz-placeholder,
html .gform_wrapper .ginput_complex input[type=text].invalid::-moz-placeholder,
html .gform_wrapper ul.gform_fields li.gfield select.invalid::-moz-placeholder,
html .gform_wrapper .gfield_time_hour input.invalid::-moz-placeholder,
html .gform_wrapper .gfield_time_minute input.invalid::-moz-placeholder,
html .gform_wrapper .ginput_container_date input.invalid::-moz-placeholder {
    color: #CF784F
}
html .gform_wrapper .top_label input.small.invalid:-ms-input-placeholder,
html .gform_wrapper .top_label input.medium.invalid:-ms-input-placeholder,
html .gform_wrapper .top_label input.large.invalid:-ms-input-placeholder,
html .gform_wrapper .top_label select.small.invalid:-ms-input-placeholder,
html .gform_wrapper .top_label select.medium.invalid:-ms-input-placeholder,
html .gform_wrapper .top_label select.large.invalid:-ms-input-placeholder,
html .gform_wrapper .ginput_complex input[type=text].invalid:-ms-input-placeholder,
html .gform_wrapper ul.gform_fields li.gfield select.invalid:-ms-input-placeholder,
html .gform_wrapper .gfield_time_hour input.invalid:-ms-input-placeholder,
html .gform_wrapper .gfield_time_minute input.invalid:-ms-input-placeholder,
html .gform_wrapper .ginput_container_date input.invalid:-ms-input-placeholder {
    color: #CF784F
}
html .gform_wrapper .ginput_complex input[type=text],
html .gform_wrapper .ginput_complex .ginput_full input[type=email],
html .gform_wrapper .ginput_complex .ginput_full input[type=number],
html .gform_wrapper .ginput_complex .ginput_full input[type=password],
html .gform_wrapper .ginput_complex .ginput_full input[type=tel],
html .gform_wrapper .ginput_complex .ginput_full input[type=text],
html .gform_wrapper .ginput_complex .ginput_full input[type=url] {
    width: 100% !important
}
html .gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select,
html .gform_wrapper.gf_browser_chrome .ginput_complex select {
    line-height: normal
}
html .gform_wrapper .top_label select.small,
html .gform_wrapper .top_label select.medium,
html .gform_wrapper .top_label select.large,
html .gform_wrapper ul.gform_fields li.gfield select {
    margin: 0 !important
}
html .gform_wrapper .top_label select.medium[multiple="multiple"] {
    background-image: none !important
}
html .gform_wrapper .top_label select.medium[multiple="multiple"] option {
    padding: .4rem 0;
    white-space: normal;
    text-indent: 0;
    line-height: 2rem;
    font-size: 1.4000000000000001rem
}
html .gform_wrapper textarea.small,
html .gform_wrapper textarea.medium,
html .gform_wrapper textarea.large {
	min-height: 15.4rem;
	max-height: 15.4rem;
	min-width: 100%;
	max-width: 100%;
	background: transparent;
	font-family: "Oswald", sans-serif;
    font-size: 1.7rem;
	line-height: 2.8rem;
	color: #004132;
    display: inline-block;
    vertical-align: top;
    outline: none;
    border-radius: 5rem;
    border: 0.1rem solid #CF784F;
    padding: 2rem 3rem;
    max-width: 100%;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

html .gform_wrapper textarea.small::-webkit-input-placeholder,
html .gform_wrapper textarea.medium::-webkit-input-placeholder,
html .gform_wrapper textarea.large::-webkit-input-placeholder {
    color: #999999;
}

html .gform_wrapper textarea.small::-moz-placeholder,
html .gform_wrapper textarea.medium::-moz-placeholder,
html .gform_wrapper textarea.large::-moz-placeholder {
    color: #999999;
}

html .gform_wrapper textarea.small:-ms-input-placeholder,
html .gform_wrapper textarea.medium:-ms-input-placeholder,
html .gform_wrapper textarea.large:-ms-input-placeholder {
    color: #999999;
}

html .gform_wrapper textarea.small.invalid,
html .gform_wrapper textarea.medium.invalid,
html .gform_wrapper textarea.large.invalid {
    color: #CF784F
}

html .gform_wrapper textarea.small.invalid::-webkit-input-placeholder,
html .gform_wrapper textarea.medium.invalid::-webkit-input-placeholder,
html .gform_wrapper textarea.large.invalid::-webkit-input-placeholder {
    color: #CF784F
}

html .gform_wrapper textarea.small.invalid::-moz-placeholder,
html .gform_wrapper textarea.medium.invalid::-moz-placeholder,
html .gform_wrapper textarea.large.invalid::-moz-placeholder {
    color: #CF784F
}

html .gform_wrapper textarea.small.invalid:-ms-input-placeholder,
html .gform_wrapper textarea.medium.invalid:-ms-input-placeholder,
html .gform_wrapper textarea.large.invalid:-ms-input-placeholder {
    color: #CF784F
}

html .gform_wrapper .top_label .gfield_description,
html .gform_wrapper .instruction,
html .gform_wrapper .ginput_complex label {
    padding: .3rem 0 0;
    line-height: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400
}

html .gfield_checkbox li,
html .gform_wrapper .ginput_container_consent {
	font-size: 0;
    line-height: 0;
    vertical-align: top;
    padding: 0 0 .8rem;
}
html .gfield_checkbox::before,
html .gfield_checkbox::after {
	content: " ";
    display: table;
	clear: both;
}
html .gfield_checkbox .gchoice,
html .gfield_checkbox .gchoice {
	padding-top: 1rem;
}
html .gfield_checkbox .gchoice input[type="checkbox"],
html .gfield_radio .gchoice input[type="radio"],
html .gform_wrapper .gform_fields .gfield input[type=checkbox],
html .gform_wrapper .gform_fields .gfield input[type=radio] {
	width: 3rem;
    height: 3rem;
    margin: 0;
    padding: 0;
    border: 0.1rem solid #CF784F;
    background: #fff;
    outline: 0 none;
    border-radius: 1rem;
    display: inline-block;
	vertical-align: top;
	-webkit-appearance: none;
    -moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}
html .gfield_checkbox .gchoice label,
html .gfield_radio .gchoice label,
html .gform_wrapper .gform_fields .gfield .gchoice label {
	display: inline-block;
	vertical-align: top;
	line-height: 3rem;
	padding-left: .5rem;
}
html .gfield_checkbox .gchoice input[type="checkbox"]:checked:before,
html .gform_wrapper .gform_fields .gfield input[type=checkbox]:checked:before {
	content: " ";
}
html .element_wysiwyg_content .gfield_checkbox .gchoice input[type="checkbox"]:checked:before,
html .element_wysiwyg_content .gform_wrapper .gform_fields .gfield input[type=checkbox]:checked:before {
	background-image: url('/wp-content/themes/kvark24/images/icons/SVG/check-darkgreen.svg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 2.4rem;
    height: 2.4rem;
    display: block;
    margin: 0.2rem;
}
html .gfield_checkbox li input[type="checkbox"]+label,
html .gfield_radio li input[type="radio"]+label,
html .gform_wrapper .ginput_container_consent .gfield_consent_label {
}
html .gform_wrapper .gfield.gform_sub_checkbox {
	padding-left: 3rem;
}
html .gform_wrapper .gfield.gform_sub_checkbox .gfield_label {
}
html .gform_wrapper .gfield ul.gfield_radio li input[type=radio]+input[type=text],
html .gform_wrapper .gfield ul.gfield_checkbox li input[type=checkbox]+input[type=text] {
}

html .gform_wrapper .ginput_container_consent {
	padding: 0;
}
html .gform_wrapper .ginput_container_consent > input {
}

html .gform_wrapper .gform_footer {
	text-align: right;
}
html .gform_wrapper .gform_footer button,
html .gform_wrapper .gform_footer input.button,
html .gform_wrapper .gform_footer input[type=image],
html .gform_wrapper .gform_footer input[type=submit] {
    background: #004132;
    border: 0.1rem solid transparent;
	border-radius: 5rem;
	position: relative;
    z-index: 1;
    display: inline-block;
    outline: none;
    vertical-align: top;
    margin: 0;
    padding: 1.5rem 3rem;
    overflow: hidden;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
	font-family: "Oswald", sans-serif;
    line-height: 2.8rem;
    font-size: 1.7rem;
	color: #fff;
	font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html .gform_wrapper .gform_footer button:hover,
html.no-touch .gform_wrapper .gform_footer input.button:hover,
html.no-touch .gform_wrapper .gform_footer input[type=image]:hover,
html.no-touch .gform_wrapper .gform_footer input[type=submit]:hover {
}
html .gform_wrapper .gform_footer button:focus,
html.no-touch .gform_wrapper .gform_footer input.button:focus,
html.no-touch .gform_wrapper .gform_footer input[type=image]:focus,
html.no-touch .gform_wrapper .gform_footer input[type=submit]:focus {
}
html .gform_wrapper .gfield_required {
    display: none;
}
@media (min-width: 768px) {
	html .gform_wrapper .top_label input.small,
	html .gform_wrapper .top_label input.medium,
	html .gform_wrapper .top_label input.large,
	html .gform_wrapper .top_label select.small,
	html .gform_wrapper .top_label select.medium,
	html .gform_wrapper .top_label select.large,
	html .gform_wrapper .ginput_complex input[type=text],
	html .gform_wrapper .gform_fields .gfield select,
	html .gform_wrapper .gfield_time_hour input,
	html .gform_wrapper .gfield_time_minute input {
	}
	html .gform_wrapper textarea.small,
	html .gform_wrapper textarea.medium,
	html .gform_wrapper textarea.large {
	}
	html .gform_wrapper .gform_footer button,
	html .gform_wrapper .gform_footer input.button,
	html .gform_wrapper .gform_footer input[type=image],
	html .gform_wrapper .gform_footer input[type=submit] {
	}
}

.gform_validation_errors {
	display: none !important;
}

/**
 Datepicker
 */

.ui-datepicker:not(.gform-legacy-datepicker) {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
	display: none;
	margin: 2.4px;
	padding: 8px;
}

.ui-datepicker:not(.gform-legacy-datepicker)[style] {
		z-index: 9999 !important;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		margin: 0 -8px 8px;
		padding: 0 8px 8px;
		position: relative;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next {
		cursor: pointer;
		position: absolute;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev::before, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next::before {
			border-style: solid;
			border-width: 0.18em 0.18em 0 0;
			content: "";
			display: inline-block;
			height: 0.55em;
			left: 0.15em;
			position: relative;
			top: 0.3em;
			transform: rotate(-135deg);
			vertical-align: top;
			width: 0.55em;
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev .ui-icon, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next .ui-icon {
			display: none;
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev {
		left: 16px;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next {
		right: 16px;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next::before {
			left: 0;
			transform: rotate(45deg);
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-title {
		text-align: center;
	}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-title select {
			margin: 0 4px;
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker table {
			border-spacing: 0;
			margin: 0;
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker thead {
			font-size: 0.85em;
		}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker td {
			padding: 0;
			width: 35.2px;
		}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default {
		border-radius: 50%;
		color: #222;
		display: block;
		line-height: 35.2px;
		text-align: center;
		text-decoration: none;
		width: 100%;
	}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default:hover {
			background-color: rgba(0, 0, 0, 0.1);
		}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active, .ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active:hover {
		background-color: #3498db;
		color: #fff;
	}

/*
* Date field.
*
* Used in the basic.css front-end stylesheet and admin-theme.css.
*/

html .ui-datepicker:not(.gform-legacy-datepicker) {
	background: #fff;
	border: 1px solid #CF784F;
	border-radius: 5rem;
	box-shadow: none;
	color: #607382;
	font-size: 1.5rem;
	font-weight: 500;
	margin-top: 5px;
	padding: 18px 15px;
	width: auto;
}
html .ui-datepicker:not(.gform-legacy-datepicker) table, 
html .ui-datepicker:not(.gform-legacy-datepicker) thead, 
html .ui-datepicker:not(.gform-legacy-datepicker) tr, 
html .ui-datepicker:not(.gform-legacy-datepicker) td, 
html .ui-datepicker:not(.gform-legacy-datepicker) th {
	background: none;
	border: 0;
	margin: 0;
}

html .ui-datepicker:not(.gform-legacy-datepicker) td, 
html .ui-datepicker:not(.gform-legacy-datepicker) th {
		padding: 5px;
		text-shadow: none;
		text-transform: none;
	}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header {
		border: 0;
		display: flex;
		flex-direction: row;
		justify-content: center;
		margin: 0 0 5px;
		padding: 0;
		position: relative;
		width: 100%;
	}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next {
	align-items: center;
	background: none;
	border: 0;
	color: #607382;
	cursor: pointer;
	display: flex;
	font-family: gform-icons-theme !important;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 30px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	speak: never;
	text-decoration: none;
	top: -2px;
	transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border-color 300ms ease-in-out;
	width: 30px;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev:focus, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev:hover, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next:focus, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next:hover {
	color: #2f4054;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev .ui-icon, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next .ui-icon {
	display: none;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev::before, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next::before {
	border: 0;
	height: auto;
	position: static;
	transform: none;
	width: auto;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev {
	left: 0;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev::before {
	content: " ";
	background-image: url(/wp-content/themes/kvark24/images/icons/SVG/chevron-left.svg);
	display: block;
	width: 2rem;
	height: 2rem;
	background-size: cover;
	margin: 0.5rem;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next {
	right: 0;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next::before {
	content: " ";
	background-image: url(/wp-content/themes/kvark24/images/icons/SVG/chevron-right.svg);
	display: block;
	width: 2rem;
	height: 2rem;
	background-size: cover;
	margin: 0.5rem;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select {
	-webkit-appearance: none;
	background-color: transparent;
	background-image: url(/wp-content/themes/kvark24/images/icons/SVG/chevron-down.svg);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: 2rem 2rem;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #585e6a;
	cursor: pointer;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 500;
	height: auto;
	min-height: 0;
	padding: 0 22px 0 0;
	width: auto;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-month {
				margin-right: 20px;
				-moz-text-align-last: right;
				     text-align-last: right;
			}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar span, html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar a {
			font-weight: 400;
		}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar th span {
				align-items: center;
				color: #2f4054;
				display: flex;
				font-size: 1.5rem;
				font-weight: 500;
				height: 40px;
				justify-content: center;
				width: 40px;
			}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar td {
			font-size: 1.5rem;
			height: 50px;
			width: 50px;
		}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default {
	align-items: center;
	background: none;
	border: 1px solid transparent;
	border-radius: 100%;
	box-shadow: none;
	color: #2f4054;
	display: flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border-color 300ms ease-in-out;
	width: 40px;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:hover, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:focus {
	background: none;
	border-color: #607382;
	outline: none;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:active {
	background: #f2f3f5;
	border-color: #004132;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
	background: #004132;
	border-color: #004132;
	box-shadow: 0 0.125rem 0.125rem rgba(58, 58, 87, 0.0596411);
	color: #fff;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover, 
html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus {
	border-color: #607382;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled {
	background: none;
}

html .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
	align-items: center;
	background: #f2f3f5;
	border: 1px solid rgba(32, 32, 46, 0.079);
	border-radius: 100%;
	box-shadow: 0 0.125rem 0.125rem rgba(58, 58, 87, 0.0596411);
	color: #686e77;
	cursor: text;
	display: flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	width: 40px;
}

html[dir="rtl"] #ui-datepicker-divhtml .ui-datepicker[style] {
	right: auto !important;
}

@media (max-width: 667px) {
	.ui-datepicker:not(.gform-legacy-datepicker)[style] {
		max-width: calc(100% - 10px) !important;
		padding-left: 5px !important;
		padding-right: 5px !important;
		left: 5px !important;
	}
}