.SumoSelect p {
    margin: 0;
}
.SumoSelect {
    width: 200px;
}

.SelectBox {
    padding: 5px 8px;
}

.sumoStopScroll {
    overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
    display: none;
}
.SumoSelect .search-txt {
    display: none;
    outline: none;
}
.SumoSelect .no-match {
    display: none;
    padding: 6px;
}
.SumoSelect.open .search-txt {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 5px 8px;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
}
.SumoSelect.open > .search > span,
.SumoSelect.open > .search > label {
    visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass,
.SumoUnder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}
.SelectClass {
    z-index: 1;
}

.SumoSelect > .optWrapper > .options li.opt label,
.SumoSelect > .CaptionCont,
.SumoSelect .select-all > label {
    -ms-user-select: none;
        user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.SumoSelect {
    display: inline-block;
    position: relative;
    outline: none;
}
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont,
.SumoSelect.open > .CaptionCont {
    -webkit-box-shadow: 0 0 2px #7799d0;
            box-shadow: 0 0 2px #7799d0;
    border-color: #7799d0;
}
.SumoSelect > .CaptionCont {
    position: relative;
    border: 1px solid #a4a4a4;
    min-height: 14px;
    background-color: #fff;
    border-radius: 2px;
    margin: 0;
}
.SumoSelect > .CaptionCont > span {
    display: block;
    padding-right: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
}
/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
    color: #ccc;
    font-style: italic;
}

.SumoSelect > .CaptionCont > label {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
}
.SumoSelect > .CaptionCont > label > i {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=');
    background-position: center center;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.SumoSelect > .optWrapper {
    display: none;
    z-index: 1000;
    top: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
            box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
    border-radius: 3px;
    overflow: hidden;
}
.SumoSelect.open > .optWrapper {
    top: 35px;
    display: block;
}
.SumoSelect.open > .optWrapper.up {
    top: auto;
    bottom: 100%;
    margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    overflow: auto;
}
.SumoSelect > .optWrapper > .options {
    border-radius: 2px;
    position: relative;
    /*Set the height of pop up here (only for desktop mode)*/
    max-height: 250px;
    /*height*/
}
.SumoSelect > .optWrapper.okCancelInMulti > .options {
    border-radius: 2px 2px 0 0;
}
.SumoSelect > .optWrapper.selall > .options {
    border-radius: 0 0 2px 2px;
}
.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
    border-radius: 0;
}
.SumoSelect > .optWrapper > .options li.group.disabled > label {
    opacity: 0.5;
}
.SumoSelect > .optWrapper > .options li ul li.opt {
    padding-left: 22px;
}
.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
    padding-left: 50px;
}
.SumoSelect > .optWrapper.isFloating > .options {
    max-height: 100%;
    -webkit-box-shadow: 0 0 100px #595959;
            box-shadow: 0 0 100px #595959;
}
.SumoSelect > .optWrapper > .options li.opt {
    padding: 6px 6px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
.SumoSelect > .optWrapper > .options > li.opt:first-child {
    border-radius: 2px 2px 0 0;
}
.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
    border-radius: 0;
}
.SumoSelect > .optWrapper > .options > li.opt:last-child {
    border-radius: 0 0 2px 2px;
    border-bottom: none;
}
.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
    border-radius: 0;
}
.SumoSelect > .optWrapper > .options li.opt:hover {
    background-color: #e4e4e4;
}
.SumoSelect > .optWrapper > .options li.opt.sel,
.SumoSelect .select-all.sel {
    background-color: #a1c0e4;
}

.SumoSelect > .optWrapper > .options li label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.SumoSelect > .optWrapper > .options li span {
    display: none;
}
.SumoSelect > .optWrapper > .options li.group > label {
    cursor: default;
    padding: 8px 6px;
    font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    bottom: 0;
    margin: auto;
    max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
    background-color: inherit;
    pointer-events: none;
}
.SumoSelect > .optWrapper > .options li.opt.disabled * {
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)'; /* IE 5-7 */
    filter: alpha(opacity=50); /* Netscape */
    -moz-opacity: 0.5; /* Safari 1.x */
    -khtml-opacity: 0.5; /* Good browsers */
    opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
    padding-left: 35px;
    cursor: pointer;
}
.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
    position: absolute;
    display: block;
    width: 30px;
    top: 0;
    bottom: 0;
    margin-left: -35px;
}
.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #aeaeae;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}
.SumoSelect > .optWrapper > .MultiControls {
    display: none;
    border-top: 1px solid #ddd;
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
    border-radius: 0 0 3px 3px;
}
.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
    display: block;
    margin-top: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
    display: block;
}
.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
    padding: 6px;
}
.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
    -webkit-box-shadow: 0 0 2px #a1c0e4;
            box-shadow: 0 0 2px #a1c0e4;
    border-color: #a1c0e4;
    outline: none;
    background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
    display: inline-block;
    cursor: pointer;
    padding: 12px;
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
    background-color: #f1f1f1;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
    border-right: 1px solid #dbdbdb;
    border-radius: 0 0 0 3px;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
    border-radius: 0 0 3px 0;
}
/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
    padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
    padding-left: 35px;
}
.SumoSelect > .optWrapper.multiple.isFloating {
    padding-bottom: 43px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
    background-color: rgb(17, 169, 17);
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: transparent;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    background-position: center center;
}
/*disabled state*/
.SumoSelect.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.SumoSelect.disabled > .CaptionCont {
    border-color: #ccc;
    -webkit-box-shadow: none;
            box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
    border-radius: 3px 3px 0 0;
    position: relative;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 8px 0 3px 35px;
    height: 20px;
    cursor: pointer;
}
.SumoSelect .select-all > label,
.SumoSelect .select-all > span i {
    cursor: pointer;
}
.SumoSelect .select-all.partial > span i {
    background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
    padding-left: 5px;
    text-decoration: underline;
}
@charset "UTF-8";
/*
Colours
The $colors map will generate a list of helper classes
you can use for setting background and colour, eg.
.white { color : $white }
.bg-white { background-color : $white }
*/
/*
Transitions
*/
/*
Type
These values will be used to generate fluid type classes
*/
/*
Heading sizes
*/
/*
Body Sizes
*/
/*
Base Padding
The base unit for this site's spacing, will be used
to generate the grid classes as well ass your padding helper classes
*/
/**
 * Header Height
 */
/* Additional Breakpoints */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(22, 17, 15, 0);
}

@-ms-viewport {
  width: device-width;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

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

figure {
  margin: 0 0 1rem;
}

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

svg:not(:root) {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 75em) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.container.no-max {
  max-width: none;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
  min-height: 1px;
  position: relative;
}
.col.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: -0.01em) {
  .col.xs-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 36em) {
  .col.sm-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 48em) {
  .col.md-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 62em) {
  .col.lg-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 75em) {
  .col.xl-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 48em) {
  .col.mobile-menu-break-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: -0.01em) {
  .hidden-until-xs {
    display: none !important;
  }
}

@media (min-width: 0em) {
  .hidden-from-xs {
    display: none !important;
  }
}

@media (max-width: 35.99em) {
  .hidden-until-sm {
    display: none !important;
  }
}

@media (min-width: 36em) {
  .hidden-from-sm {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .hidden-until-md {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .hidden-from-md {
    display: none !important;
  }
}

@media (max-width: 61.99em) {
  .hidden-until-lg {
    display: none !important;
  }
}

@media (min-width: 62em) {
  .hidden-from-lg {
    display: none !important;
  }
}

@media (max-width: 74.99em) {
  .hidden-until-xl {
    display: none !important;
  }
}

@media (min-width: 75em) {
  .hidden-from-xl {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .hidden-until-mobile-menu-break {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .hidden-from-mobile-menu-break {
    display: none !important;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter > .col {
  padding-right: 0;
  padding-left: 0;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.reset-xs {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.xs-offset-0 {
  margin-left: 0%;
}

.xs-1 {
  -webkit-flex-basis: 8.3333333333%;
      -ms-flex-preferred-size: 8.3333333333%;
          flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

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

.xs-2 {
  -webkit-flex-basis: 16.6666666667%;
      -ms-flex-preferred-size: 16.6666666667%;
          flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.xs-3 {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

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

.xs-4 {
  -webkit-flex-basis: 33.3333333333%;
      -ms-flex-preferred-size: 33.3333333333%;
          flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

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

.xs-5 {
  -webkit-flex-basis: 41.6666666667%;
      -ms-flex-preferred-size: 41.6666666667%;
          flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.xs-6 {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

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

.xs-7 {
  -webkit-flex-basis: 58.3333333333%;
      -ms-flex-preferred-size: 58.3333333333%;
          flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

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

.xs-8 {
  -webkit-flex-basis: 66.6666666667%;
      -ms-flex-preferred-size: 66.6666666667%;
          flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.xs-9 {
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

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

.xs-10 {
  -webkit-flex-basis: 83.3333333333%;
      -ms-flex-preferred-size: 83.3333333333%;
          flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

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

.xs-11 {
  -webkit-flex-basis: 91.6666666667%;
      -ms-flex-preferred-size: 91.6666666667%;
          flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.xs-12 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

.xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 36em) {
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .reset-sm {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm-offset-0 {
    margin-left: 0%;
  }
  .sm-1 {
    -webkit-flex-basis: 8.3333333333%;
        -ms-flex-preferred-size: 8.3333333333%;
            flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .sm-2 {
    -webkit-flex-basis: 16.6666666667%;
        -ms-flex-preferred-size: 16.6666666667%;
            flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .sm-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .sm-offset-3 {
    margin-left: 25%;
  }
  .sm-4 {
    -webkit-flex-basis: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
            flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .sm-5 {
    -webkit-flex-basis: 41.6666666667%;
        -ms-flex-preferred-size: 41.6666666667%;
            flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .sm-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .sm-offset-6 {
    margin-left: 50%;
  }
  .sm-7 {
    -webkit-flex-basis: 58.3333333333%;
        -ms-flex-preferred-size: 58.3333333333%;
            flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .sm-8 {
    -webkit-flex-basis: 66.6666666667%;
        -ms-flex-preferred-size: 66.6666666667%;
            flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .sm-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .sm-offset-9 {
    margin-left: 75%;
  }
  .sm-10 {
    -webkit-flex-basis: 83.3333333333%;
        -ms-flex-preferred-size: 83.3333333333%;
            flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .sm-11 {
    -webkit-flex-basis: 91.6666666667%;
        -ms-flex-preferred-size: 91.6666666667%;
            flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .sm-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 48em) {
  .first-md {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .reset-md {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .md-offset-0 {
    margin-left: 0%;
  }
  .md-1 {
    -webkit-flex-basis: 8.3333333333%;
        -ms-flex-preferred-size: 8.3333333333%;
            flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .md-2 {
    -webkit-flex-basis: 16.6666666667%;
        -ms-flex-preferred-size: 16.6666666667%;
            flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .md-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .md-offset-3 {
    margin-left: 25%;
  }
  .md-4 {
    -webkit-flex-basis: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
            flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .md-5 {
    -webkit-flex-basis: 41.6666666667%;
        -ms-flex-preferred-size: 41.6666666667%;
            flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .md-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .md-offset-6 {
    margin-left: 50%;
  }
  .md-7 {
    -webkit-flex-basis: 58.3333333333%;
        -ms-flex-preferred-size: 58.3333333333%;
            flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .md-8 {
    -webkit-flex-basis: 66.6666666667%;
        -ms-flex-preferred-size: 66.6666666667%;
            flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .md-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .md-offset-9 {
    margin-left: 75%;
  }
  .md-10 {
    -webkit-flex-basis: 83.3333333333%;
        -ms-flex-preferred-size: 83.3333333333%;
            flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .md-11 {
    -webkit-flex-basis: 91.6666666667%;
        -ms-flex-preferred-size: 91.6666666667%;
            flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .md-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 62em) {
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .reset-lg {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .lg-offset-0 {
    margin-left: 0%;
  }
  .lg-1 {
    -webkit-flex-basis: 8.3333333333%;
        -ms-flex-preferred-size: 8.3333333333%;
            flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .lg-2 {
    -webkit-flex-basis: 16.6666666667%;
        -ms-flex-preferred-size: 16.6666666667%;
            flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .lg-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .lg-offset-3 {
    margin-left: 25%;
  }
  .lg-4 {
    -webkit-flex-basis: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
            flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .lg-5 {
    -webkit-flex-basis: 41.6666666667%;
        -ms-flex-preferred-size: 41.6666666667%;
            flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .lg-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .lg-offset-6 {
    margin-left: 50%;
  }
  .lg-7 {
    -webkit-flex-basis: 58.3333333333%;
        -ms-flex-preferred-size: 58.3333333333%;
            flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .lg-8 {
    -webkit-flex-basis: 66.6666666667%;
        -ms-flex-preferred-size: 66.6666666667%;
            flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .lg-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .lg-offset-9 {
    margin-left: 75%;
  }
  .lg-10 {
    -webkit-flex-basis: 83.3333333333%;
        -ms-flex-preferred-size: 83.3333333333%;
            flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .lg-11 {
    -webkit-flex-basis: 91.6666666667%;
        -ms-flex-preferred-size: 91.6666666667%;
            flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .lg-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 75em) {
  .first-xl {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .reset-xl {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .last-xl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .xl-offset-0 {
    margin-left: 0%;
  }
  .xl-1 {
    -webkit-flex-basis: 8.3333333333%;
        -ms-flex-preferred-size: 8.3333333333%;
            flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xl-2 {
    -webkit-flex-basis: 16.6666666667%;
        -ms-flex-preferred-size: 16.6666666667%;
            flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xl-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .xl-offset-3 {
    margin-left: 25%;
  }
  .xl-4 {
    -webkit-flex-basis: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
            flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xl-5 {
    -webkit-flex-basis: 41.6666666667%;
        -ms-flex-preferred-size: 41.6666666667%;
            flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xl-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .xl-offset-6 {
    margin-left: 50%;
  }
  .xl-7 {
    -webkit-flex-basis: 58.3333333333%;
        -ms-flex-preferred-size: 58.3333333333%;
            flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xl-8 {
    -webkit-flex-basis: 66.6666666667%;
        -ms-flex-preferred-size: 66.6666666667%;
            flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xl-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .xl-offset-9 {
    margin-left: 75%;
  }
  .xl-10 {
    -webkit-flex-basis: 83.3333333333%;
        -ms-flex-preferred-size: 83.3333333333%;
            flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xl-11 {
    -webkit-flex-basis: 91.6666666667%;
        -ms-flex-preferred-size: 91.6666666667%;
            flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xl-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .xl-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 48em) {
  .first-mobile-menu-break {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .reset-mobile-menu-break {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .last-mobile-menu-break {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .mobile-menu-break-offset-0 {
    margin-left: 0%;
  }
  .mobile-menu-break-1 {
    -webkit-flex-basis: 8.3333333333%;
        -ms-flex-preferred-size: 8.3333333333%;
            flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .mobile-menu-break-offset-1 {
    margin-left: 8.3333333333%;
  }
  .mobile-menu-break-2 {
    -webkit-flex-basis: 16.6666666667%;
        -ms-flex-preferred-size: 16.6666666667%;
            flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .mobile-menu-break-offset-2 {
    margin-left: 16.6666666667%;
  }
  .mobile-menu-break-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .mobile-menu-break-offset-3 {
    margin-left: 25%;
  }
  .mobile-menu-break-4 {
    -webkit-flex-basis: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
            flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .mobile-menu-break-offset-4 {
    margin-left: 33.3333333333%;
  }
  .mobile-menu-break-5 {
    -webkit-flex-basis: 41.6666666667%;
        -ms-flex-preferred-size: 41.6666666667%;
            flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .mobile-menu-break-offset-5 {
    margin-left: 41.6666666667%;
  }
  .mobile-menu-break-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .mobile-menu-break-offset-6 {
    margin-left: 50%;
  }
  .mobile-menu-break-7 {
    -webkit-flex-basis: 58.3333333333%;
        -ms-flex-preferred-size: 58.3333333333%;
            flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .mobile-menu-break-offset-7 {
    margin-left: 58.3333333333%;
  }
  .mobile-menu-break-8 {
    -webkit-flex-basis: 66.6666666667%;
        -ms-flex-preferred-size: 66.6666666667%;
            flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .mobile-menu-break-offset-8 {
    margin-left: 66.6666666667%;
  }
  .mobile-menu-break-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .mobile-menu-break-offset-9 {
    margin-left: 75%;
  }
  .mobile-menu-break-10 {
    -webkit-flex-basis: 83.3333333333%;
        -ms-flex-preferred-size: 83.3333333333%;
            flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .mobile-menu-break-offset-10 {
    margin-left: 83.3333333333%;
  }
  .mobile-menu-break-11 {
    -webkit-flex-basis: 91.6666666667%;
        -ms-flex-preferred-size: 91.6666666667%;
            flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .mobile-menu-break-offset-11 {
    margin-left: 91.6666666667%;
  }
  .mobile-menu-break-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .mobile-menu-break-offset-12 {
    margin-left: 100%;
  }
}
.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 36em) {
  .flex-dir-row-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-dir-row-reverse-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-dir-column-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-dir-column-reverse-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 48em) {
  .flex-dir-row-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-dir-row-reverse-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-dir-column-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-dir-column-reverse-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 62em) {
  .flex-dir-row-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-dir-row-reverse-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-dir-column-lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-dir-column-reverse-lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 75em) {
  .flex-dir-row-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-dir-row-reverse-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-dir-column-xl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-dir-column-reverse-xl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 48em) {
  .flex-dir-row-mobile-menu-break {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-dir-row-reverse-mobile-menu-break {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-dir-column-mobile-menu-break {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-dir-column-reverse-mobile-menu-break {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flex-wrap-nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.flex-wrap-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-wrap-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
}

@media (min-width: 36em) {
  .flex-wrap-nowrap-sm {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-wrap-sm {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-wrap-wrap-reverse-sm {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
@media (min-width: 48em) {
  .flex-wrap-nowrap-md {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-wrap-md {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-wrap-wrap-reverse-md {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
@media (min-width: 62em) {
  .flex-wrap-nowrap-lg {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-wrap-lg {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-wrap-wrap-reverse-lg {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
@media (min-width: 75em) {
  .flex-wrap-nowrap-xl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-wrap-xl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-wrap-wrap-reverse-xl {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
@media (min-width: 48em) {
  .flex-wrap-nowrap-mobile-menu-break {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-wrap-mobile-menu-break {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-wrap-wrap-reverse-mobile-menu-break {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
.justify-flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media (min-width: 36em) {
  .justify-flex-start-sm {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .justify-flex-end-sm {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .justify-center-sm {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .justify-space-between-sm {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-space-around-sm {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media (min-width: 48em) {
  .justify-flex-start-md {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .justify-flex-end-md {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .justify-center-md {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .justify-space-between-md {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-space-around-md {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media (min-width: 62em) {
  .justify-flex-start-lg {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .justify-flex-end-lg {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .justify-center-lg {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .justify-space-between-lg {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-space-around-lg {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media (min-width: 75em) {
  .justify-flex-start-xl {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .justify-flex-end-xl {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .justify-center-xl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .justify-space-between-xl {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-space-around-xl {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media (min-width: 48em) {
  .justify-flex-start-mobile-menu-break {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .justify-flex-end-mobile-menu-break {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .justify-center-mobile-menu-break {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .justify-space-between-mobile-menu-break {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-space-around-mobile-menu-break {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 36em) {
  .align-items-center-sm {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 48em) {
  .align-items-center-md {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 62em) {
  .align-items-center-lg {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 75em) {
  .align-items-center-xl {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 48em) {
  .align-items-center-mobile-menu-break {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.align-content-center {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}

@media (min-width: 36em) {
  .align-content-center-sm {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
@media (min-width: 48em) {
  .align-content-center-md {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
@media (min-width: 62em) {
  .align-content-center-lg {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
@media (min-width: 75em) {
  .align-content-center-xl {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
@media (min-width: 48em) {
  .align-content-center-mobile-menu-break {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
.flex-grow-0 {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 36em) {
  .flex-grow-0-sm {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex-grow-1-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 48em) {
  .flex-grow-0-md {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex-grow-1-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 62em) {
  .flex-grow-0-lg {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex-grow-1-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 75em) {
  .flex-grow-0-xl {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex-grow-1-xl {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 48em) {
  .flex-grow-0-mobile-menu-break {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex-grow-1-mobile-menu-break {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.flex-shrink-0 {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
}

@media (min-width: 36em) {
  .flex-shrink-0-sm {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flex-shrink-1-sm {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
}
@media (min-width: 48em) {
  .flex-shrink-0-md {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flex-shrink-1-md {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
}
@media (min-width: 62em) {
  .flex-shrink-0-lg {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flex-shrink-1-lg {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
}
@media (min-width: 75em) {
  .flex-shrink-0-xl {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flex-shrink-1-xl {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
}
@media (min-width: 48em) {
  .flex-shrink-0-mobile-menu-break {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flex-shrink-1-mobile-menu-break {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
}
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #ced4da;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #bfc7cf;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #30343d;
}
.nice-select:after {
  border-bottom: 2px solid #30343d;
  border-right: 2px solid #30343d;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #d4d9de;
  color: #ced4da;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #5d6576;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(52, 58, 64, 0.11);
          box-shadow: 0 0 0 1px rgba(52, 58, 64, 0.11);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
          transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #e9ecef;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #6c757d;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

.nice-select {
  height: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #ced4da;
}
.nice-select:after {
  width: 10px;
  height: 10px;
  right: 25px;
  margin-top: -6px;
}
.nice-select:hover {
  border-color: transparent;
}
.nice-select .list {
  width: 100%;
  -webkit-transition: all all 150ms ease-out;
  transition: all all 150ms ease-out;
}
.nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: transparent;
}
.nice-select .option:hover, .nice-select .option:hover.focus, .nice-select .option:hover.selected.focus {
  background-color: #30343d;
  color: #fff;
}

.validated.has-error .form-control, .validated.has-error .gform_body textarea, .gform_body .validated.has-error textarea, .validated.has-error .gform_body input, .gform_body .validated.has-error input, .validated.has-error .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .validated.has-error input, .validated.has-error .form-group.name input, .form-group.name .validated.has-error input,
.validated.has-error .form-group.time input,
.form-group.time .validated.has-error input,
.validated.has-error .form-group.time select,
.form-group.time .validated.has-error select,
.validated.has-error .form-group.address input,
.form-group.address .validated.has-error input,
.validated.has-error .form-group.address select,
.form-group.address .validated.has-error select {
  border: 1px solid #ffb8b8;
}

.gform_legacy_markup_wrapper {
  margin: 0 !important;
}

.gform_wrapper.gravity-theme .gform_fields {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  grid-column-gap: unset !important;
  grid-row-gap: unset !important;
  margin-left: -16px;
  margin-right: -16px;
  width: auto !important;
}
.gform_wrapper.gravity-theme .gform_fields > .col {
  padding-left: 16px;
  padding-right: 16px;
}

textarea::-webkit-scrollbar {
  width: 4px;
}
textarea::-webkit-scrollbar-track {
  background: #ddd4c4;
}
textarea::-webkit-scrollbar-thumb {
  background: #484a55;
}
textarea::-webkit-scrollbar-thumb:hover {
  background: #414350;
}

.fabrice-custom-checkbox.one-row .checkbox-wrapper {
  grid-template-columns: repeat(1, 1fr);
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 61.99em) {
  .fabrice-custom-checkbox.one-row .checkbox-wrapper {
    width: 100%;
    margin: 0;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  row-gap: 24px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media (max-width: 61.99em) {
  .fabrice-custom-checkbox .checkbox-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 61.99em) {
  .fabrice-custom-checkbox .checkbox-wrapper .checkbox-group {
    max-width: 92vw;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 61.99em) {
  .fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input {
    max-width: 90vw;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input input {
  width: 15px !important;
  height: 15px !important;
  border: 1px solid #a0a2a5;
  border-radius: 2px;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input input::before {
  color: #0ca52d;
  font-size: 18px;
  margin-left: 5px;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input input:focus, .fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input input:checked {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  accent-color: transparent !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input label {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  font-size: 18px !important;
}
@media (max-width: 61.99em) {
  .fabrice-custom-checkbox .checkbox-wrapper .checkbox-group .checkbox-input label {
    text-align: start;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group span {
  padding-left: 40px;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group p {
  width: 100% !important;
  margin: 0 !important;
  text-align: start;
  padding-left: 40px;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea {
  margin-left: 40px;
  padding: 20px !important;
  width: 90%;
  overflow-y: auto;
  border-color: #ddd4c4;
  border-radius: 4px;
}
@media (max-width: 47.99em) {
  .fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea {
    margin-left: 0;
    width: 100%;
    height: 150px !important;
  }
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-webkit-input-placeholder {
  color: #484a55 !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-moz-placeholder {
  color: #484a55 !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea:-ms-input-placeholder {
  color: #484a55 !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-ms-input-placeholder {
  color: #484a55 !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::placeholder {
  color: #484a55 !important;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-webkit-scrollbar {
  width: 4px;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-webkit-scrollbar-track {
  background: #ddd4c4;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-webkit-scrollbar-thumb {
  background: #484a55;
}
.fabrice-custom-checkbox .checkbox-wrapper .checkbox-group textarea::-webkit-scrollbar-thumb:hover {
  background: #414350;
}

.input-wrapper.textarea .gfield_label {
  top: 26px;
}
.input-wrapper.textarea textarea {
  height: 120px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.input-wrapper.select .gfield_label,
.input-wrapper.consent .gfield_label {
  display: none !important;
}

.input-wrapper .gfield_description.help-block {
  bottom: 10px;
  position: absolute;
  font-size: 11px;
  color: #dc4949;
  margin-bottom: 0;
}

.input-wrapper.phone .instruction {
  bottom: 10px;
  position: absolute;
  font-size: 11px;
  margin-bottom: 0;
  right: 15px;
  color: #dc4949;
}

.gform_validation_error {
  position: relative;
}

.gfield_checkbox .gchoice {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gform_next_button,
.gform_submit_button {
  background-color: #907b69;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  padding: 18px 24px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  border: none !important;
}
.gform_next_button .title,
.gform_submit_button .title {
  height: auto;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gform_next_button .before,
.gform_submit_button .before {
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gform_next_button .after,
.gform_submit_button .after {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.gform_next_button .after::before,
.gform_submit_button .after::before {
  color: #907b69;
}
.gform_next_button:hover, .gform_next_button:active, .gform_next_button.nice-select.open, .gform_next_button:focus,
.gform_submit_button:hover,
.gform_submit_button:active,
.gform_submit_button.nice-select.open,
.gform_submit_button:focus {
  background-color: #30343d !important;
  color: #ffffff;
  outline: none !important;
  border: none !important;
}
.gform_next_button:hover .title, .gform_next_button:active .title, .gform_next_button.nice-select.open .title, .gform_next_button:focus .title,
.gform_submit_button:hover .title,
.gform_submit_button:active .title,
.gform_submit_button.nice-select.open .title,
.gform_submit_button:focus .title {
  -webkit-transform: translate(-14px);
          transform: translate(-14px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gform_next_button:hover .before, .gform_next_button:active .before, .gform_next_button.nice-select.open .before, .gform_next_button:focus .before,
.gform_submit_button:hover .before,
.gform_submit_button:active .before,
.gform_submit_button.nice-select.open .before,
.gform_submit_button:focus .before {
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gform_next_button:hover .after, .gform_next_button:active .after, .gform_next_button.nice-select.open .after, .gform_next_button:focus .after,
.gform_submit_button:hover .after,
.gform_submit_button:active .after,
.gform_submit_button.nice-select.open .after,
.gform_submit_button:focus .after {
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gfield_checkbox,
.gfield_radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  width: 100%;
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}
.gfield_checkbox .gchoice,
.gfield_radio .gchoice {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 48%;
}
@media (max-width: 47.99em) {
  .gfield_checkbox .gchoice,
  .gfield_radio .gchoice {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.gfield_checkbox li,
.gfield_checkbox div,
.gfield_radio li,
.gfield_radio div {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}
.gfield_checkbox li:before,
.gfield_checkbox div:before,
.gfield_radio li:before,
.gfield_radio div:before {
  display: none;
}
@media (min-width: 36em) {
  .gfield_checkbox li,
  .gfield_checkbox div,
  .gfield_radio li,
  .gfield_radio div {
    width: 50%;
  }
}
@media (min-width: 62em) {
  .gfield_checkbox li,
  .gfield_checkbox div,
  .gfield_radio li,
  .gfield_radio div {
    width: 33.33%;
  }
}
.gfield_checkbox li input[type=radio]:empty,
.gfield_checkbox li input[type=checkbox]:empty,
.gfield_checkbox div input[type=radio]:empty,
.gfield_checkbox div input[type=checkbox]:empty,
.gfield_radio li input[type=radio]:empty,
.gfield_radio li input[type=checkbox]:empty,
.gfield_radio div input[type=radio]:empty,
.gfield_radio div input[type=checkbox]:empty {
  margin-left: -9999px;
  position: absolute;
  height: 0;
}
.gfield_checkbox li input[type=radio]:checked ~ label:before,
.gfield_checkbox div input[type=radio]:checked ~ label:before,
.gfield_radio li input[type=radio]:checked ~ label:before,
.gfield_radio div input[type=radio]:checked ~ label:before {
  color: transparent;
  border-color: #907b69;
  background-color: #30343d;
  border: 4px solid #907b69;
}
.gfield_checkbox li input[type=checkbox]:checked ~ label:before,
.gfield_checkbox div input[type=checkbox]:checked ~ label:before,
.gfield_radio li input[type=checkbox]:checked ~ label:before,
.gfield_radio div input[type=checkbox]:checked ~ label:before {
  color: transparent;
  border-color: #484a55;
  background-color: transparent;
  color: #30343d;
}
.gfield_checkbox li input[type=radio]:focus ~ label:before,
.gfield_checkbox li input[type=checkbox]:focus ~ label:before,
.gfield_checkbox div input[type=radio]:focus ~ label:before,
.gfield_checkbox div input[type=checkbox]:focus ~ label:before,
.gfield_radio li input[type=radio]:focus ~ label:before,
.gfield_radio li input[type=checkbox]:focus ~ label:before,
.gfield_radio div input[type=radio]:focus ~ label:before,
.gfield_radio div input[type=checkbox]:focus ~ label:before {
  border-color: #907b69;
}
.gfield_checkbox li label,
.gfield_checkbox div label,
.gfield_radio li label,
.gfield_radio div label {
  display: block;
  padding-left: 45px;
  position: relative;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.gfield_checkbox li label:before,
.gfield_checkbox div label:before,
.gfield_radio li label:before,
.gfield_radio div label:before {
  content: "\2714";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #ced4da;
  font-size: 19.8px;
  line-height: 30px;
  text-align: center;
  color: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.ginput_container_consent {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}
.ginput_container_consent:before {
  display: none;
}
.ginput_container_consent input[type=checkbox]:empty {
  margin-left: -9999px;
  position: absolute;
  height: 0;
}
.ginput_container_consent input[type=checkbox]:checked ~ label:before {
  color: #30343d;
  border-color: #30343d;
}
.ginput_container_consent input[type=checkbox]:focus ~ label:before {
  border-color: #30343d;
}
.ginput_container_consent label {
  display: block;
  padding-left: 45px;
  position: relative;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.ginput_container_consent label:before {
  content: "\2714";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #ced4da;
  font-size: 19.8px;
  line-height: 30px;
  text-align: center;
  color: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.gfield_radio li label:before,
.gfield_radio div label:before {
  border-radius: 50%;
}

.form-group.time .clear-multi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}
.form-group.time .ginput_container_time {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5px;
  padding-right: 5px;
}

.input-wrapper .gfield_description,
.input-wrapper .gfield_drop_instructions {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.form-group.address .ginput_left {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
  margin-right: 10px;
  float: left;
}
.form-group.address .ginput_right {
  width: 50%;
  float: left;
}
.form-group.address .nice-select {
  height: 58px;
  border-radius: 0;
  border-color: #e9ecef;
  width: 100%;
  color: #212529;
  padding: 0 15px !important;
  line-height: 58px;
}
.form-group.address .nice-select .list {
  z-index: 50;
}
.form-group.address .nice-select .list li,
.form-group.address .nice-select .list div {
  padding: 0 29px 0 18px;
  color: #212529;
}
.form-group.address .nice-select .list li:hover,
.form-group.address .nice-select .list div:hover {
  color: #fff;
}

.form-group.name span {
  width: 50%;
  float: left;
}
.form-group.name span.name_first {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
  margin-right: 10px;
}

.input-wrapper.section .gsection_description {
  margin-bottom: 15px;
}

.article-content .gform_wrapper ul li {
  padding-left: 0;
}
.article-content .gform_wrapper ul li:before {
  display: none;
}
.article-content .gform_wrapper .form-control, .article-content .gform_wrapper .gform_body textarea, .gform_body .article-content .gform_wrapper textarea, .article-content .gform_wrapper .gform_body input, .gform_body .article-content .gform_wrapper input, .article-content .gform_wrapper .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .article-content .gform_wrapper input, .form-group.name .article-content .gform_wrapper input,
.article-content .gform_wrapper .form-group.time input,
.form-group.time .article-content .gform_wrapper input,
.article-content .gform_wrapper .form-group.time select,
.form-group.time .article-content .gform_wrapper select,
.form-group.address .article-content .gform_wrapper input,
.form-group.address .article-content .gform_wrapper select,
.article-content .gform_wrapper .form-group.name input,
.article-content .gform_wrapper .form-group.address input,
.article-content .gform_wrapper .form-group.address select {
  border-color: #e9ecef;
  color: #212529;
}
.article-content .gform_wrapper .ginput_container_fileupload {
  border-color: #e9ecef;
}
.article-content .gform_wrapper .gfield_checkbox li,
.article-content .gform_wrapper .gfield_radio li {
  margin-bottom: 0;
}
@media (min-width: 36em) {
  .article-content .gform_wrapper .gfield_checkbox li,
  .article-content .gform_wrapper .gfield_radio li {
    width: 100%;
  }
}
@media (min-width: 62em) {
  .article-content .gform_wrapper .gfield_checkbox li,
  .article-content .gform_wrapper .gfield_radio li {
    width: 100%;
  }
}
.article-content .gform_wrapper img.gform_delete {
  width: auto;
  height: auto;
}

.gform_ajax_spinner {
  display: none !important;
}

.gform-spinner {
  color: transparent !important;
  position: relative;
}
.gform-spinner__inner {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-top-color: #30343d;
  -webkit-animation: gforms-rotate 2s infinite;
          animation: gforms-rotate 2s infinite;
  z-index: 20;
  opacity: 1;
}

@-webkit-keyframes gforms-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes gforms-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
input[type=file] {
  border-width: 1;
  margin-bottom: 0;
  color: #ced4da;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
}
input[type=file]::-webkit-file-upload-button {
  background: #fff;
  color: #ced4da;
  font-size: 16px;
  font-weight: normal;
  border-width: 0;
}

.ginput_container_fileupload {
  position: relative;
  margin-bottom: 15px;
  border: 1px solid transparent !important;
  border-radius: 0.25rem;
}
@media screen and (min-width: 0px) {
  .ginput_container_fileupload {
    margin-bottom: -webkit-calc(15px + 15 * (100vw - 0px) / 1200);
    margin-bottom: calc(15px + 15 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  .ginput_container_fileupload {
    margin-bottom: 30px;
  }
}
.ginput_container_fileupload:after {
  position: absolute;
  top: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  width: 18px;
  height: 18px;
  background-image: image("upload.svg");
  background-size: contain;
  content: "";
  right: 1.5rem;
}
.ginput_container_fileupload .ginput_preview {
  padding-top: 8px;
}

.ginput_container_list table.gfield_list tbody tr td.gfield_list_icons img {
  max-width: none;
}
.ginput_container_list .gfield_list_cell input {
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  margin-bottom: 0 !important;
}

.gform_wrapper.gravity-theme .row {
  margin-left: 0;
  margin-right: 0;
}
.gform_wrapper.gravity-theme .col {
  padding-left: 0;
  padding-right: 0;
}
.gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
.gform_wrapper.gravity-theme .form-group.address .ginput_left {
  margin-right: auto;
  float: none;
}
.gform_wrapper.gravity-theme .ginput_complex .ginput_container_time {
  max-width: 124px;
  padding-left: 0;
  padding-right: 0;
}
.gform_wrapper.gravity-theme .ginput_complex .hour_minute_colon {
  line-height: 54px;
}

.browserupgrade {
  display: none;
  padding: 16px;
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  z-index: 1500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 1.5;
}
.browserupgrade a {
  color: #a94442;
  font-weight: bold;
}
.browserupgrade a:hover, .browserupgrade a:focus {
  text-decoration: underline;
  color: #a94442;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .browserupgrade {
    display: block;
  }
}
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

[data-sal] {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-delay: var(--sal-delay, 0s);
          transition-delay: var(--sal-delay, 0s);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-duration: var(--sal-duration, 0.2s);
          transition-duration: var(--sal-duration, 0.2s);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-timing-function: var(--sal-easing, ease);
          transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  -webkit-transition-duration: 0.45s;
          transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  -webkit-transition-duration: 0.55s;
          transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  -webkit-transition-duration: 0.65s;
          transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  -webkit-transition-duration: 0.85s;
          transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  -webkit-transition-duration: 0.95s;
          transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  -webkit-transition-duration: 1.05s;
          transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  -webkit-transition-duration: 1.15s;
          transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  -webkit-transition-duration: 1.25s;
          transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  -webkit-transition-duration: 1.3s;
          transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  -webkit-transition-duration: 1.35s;
          transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  -webkit-transition-duration: 1.45s;
          transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  -webkit-transition-duration: 1.55s;
          transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  -webkit-transition-duration: 1.65s;
          transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  -webkit-transition-duration: 1.7s;
          transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  -webkit-transition-duration: 1.75s;
          transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  -webkit-transition-duration: 1.85s;
          transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  -webkit-transition-duration: 1.9s;
          transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  -webkit-transition-duration: 1.95s;
          transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  -webkit-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
          transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
          transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  -webkit-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
          transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
          transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
          transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-sal|=fade] {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate, body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-sal=slide-up] {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

[data-sal=slide-down] {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

[data-sal=slide-left] {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}

[data-sal=slide-right] {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}

[data-sal|=slide].sal-animate, body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-sal=zoom-in] {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

[data-sal=zoom-out] {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

[data-sal|=zoom].sal-animate, body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-sal|=flip] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-sal=flip-left] {
  -webkit-transform: perspective(2000px) rotateY(-91deg);
          transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  -webkit-transform: perspective(2000px) rotateY(91deg);
          transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  -webkit-transform: perspective(2000px) rotateX(-91deg);
          transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  -webkit-transform: perspective(2000px) rotateX(91deg);
          transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate, body.sal-disabled [data-sal|=flip] {
  -webkit-transform: none;
          transform: none;
}


/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  -webkit-box-shadow: 0 0 0 2px #00bcd4;
          box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
@-webkit-keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  direction: ltr;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, hsl(216, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  -webkit-animation: plyr-fade-in 0.3s ease;
          animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: -webkit-calc(var(--plyr-control-spacing, 10px) * 2);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(-webkit-calc(var(--plyr-control-spacing, 10px) * -4));
          transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: visible;
  padding: -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7);
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control:focus-visible {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: -webkit-calc(var(--plyr-control-spacing, 10px) / 4);
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: -webkit-calc(var(--plyr-control-spacing, 10px) / 4);
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 -webkit-calc(var(--plyr-control-spacing, 10px) / 2);
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
          animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: -webkit-calc(var(--plyr-control-icon-size, 18px) / 2 + -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7);
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  right: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
  right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--forward:focus-visible::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: -webkit-calc(100% - -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 2);
  width: calc(100% - calc(var(--plyr-control-spacing, 10px) * 0.7) * 2);
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  left: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
  left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, hsl(216, 15%, 88%));
  -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
          box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  margin-top: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back:focus-visible::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: -webkit-calc((-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: -webkit-calc(var(--plyr-range-thumb-height, 13px) * 2);
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  display: block;
  height: -webkit-calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: -webkit-calc(var(--plyr-range-track-height, 5px) / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
          appearance: none;
  margin-top: -webkit-calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-moz-range-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-ms-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "\2044";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: -webkit-calc(var(--plyr-control-spacing, 10px) / 2) -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: -webkit-calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: -webkit-calc(var(--plyr-control-icon-size, 18px) / 2 + -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7));
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: -webkit-calc(var(--plyr-control-icon-size, 18px) / 2 + -webkit-calc(var(--plyr-control-spacing, 10px) * 0.7));
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: -webkit-calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -webkit-calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -webkit-calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: -webkit-calc(100% + var(--plyr-range-thumb-height, 13px));
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -webkit-calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: -webkit-calc(var(--plyr-control-spacing, 10px) / 2);
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: -webkit-calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216, 15%, 34%));
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-webkit-slider-thumb {
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  border-radius: inherit;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: -webkit-calc(var(--plyr-control-spacing, 10px) / 2);
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: -webkit-calc(var(--plyr-control-spacing, 10px) * 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: -webkit-calc(var(--plyr-control-spacing, 10px) * 3.5);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: -webkit-calc(var(--plyr-control-spacing, 10px) * 1.5);
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-webkit-slider-thumb {
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: hsl(216, 15%, 16%);
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: -webkit-calc(-webkit-calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: -webkit-calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: -webkit-calc(50% + var(--preview-arrow-offset));
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216, 15%, 79%);
  border-radius: -webkit-calc(var(--plyr-menu-radius, 8px) - 1px);
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container::after {
  border-radius: inherit;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: -webkit-calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: -webkit-calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

:root {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #30343d;
  background-color: #ffffff;
  overflow-x: hidden;
}
body.home {
  background-color: #ddd4c4;
}

::-moz-selection {
  background: #907b69;
  color: #30343d;
}

::selection {
  background: #907b69;
  color: #30343d;
}

::-moz-selection {
  background: #907b69;
  color: #30343d;
}

.content-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.page-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.body-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100%;
  top: 0;
  z-index: 99;
  -webkit-transition: 600ms;
  transition: 600ms;
}
body.overlay-active .body-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 600ms;
  transition: 600ms;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: #30343d;
  text-decoration: none;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
a.link-dark {
  color: #907b69;
}
a.link-light {
  color: #907b69;
}
a:hover, a:active, a.nice-select.open, a:focus {
  color: #907b69;
  text-decoration: none;
}
a:hover.link-dark, a:active.link-dark, a.link-dark.nice-select.open, a:focus.link-dark {
  color: #ffffff;
}
a:hover.link-light, a:active.link-light, a.link-light.nice-select.open, a:focus.link-light {
  color: #30343d;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.container {
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 61.99em) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 47.99em) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.swiper-pagination {
  position: relative;
  margin-top: 60px;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #30343d;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #907b69 !important;
  height: 3px;
  top: -1.5px;
}
@media (max-width: 75em) {
  .swiper-pagination .swiper-pagination-progressbar-fill {
    top: 0;
  }
}

.breadcrumb-separator {
  content: url("../../img/separator.svg");
}

.start-planning-mobile {
  position: fixed;
  bottom: 0;
  z-index: 98;
  width: 100vw;
  height: 62px;
}
body.page-template-page--contact .start-planning-mobile {
  display: none;
}
@media (min-width: 48em) {
  .start-planning-mobile {
    display: none;
  }
}
.start-planning-mobile .btn.primary, .start-planning-mobile .primary.gform_button {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.gform_loading-state {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  z-index: 100;
}
body.finished-form .gform_loading-state {
  display: none;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.gform_loading-state .load {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: solid 10px #d1c5b4;
  border-radius: 50%;
  border-right-color: #30343d;
  border-bottom-color: #d1c5b4;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 61.99em) {
  .gform_loading-state .load {
    top: 40%;
    left: 44%;
  }
}
@media (max-width: 47.99em) {
  .gform_loading-state .load {
    top: 40%;
    left: 38%;
  }
}

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

.icon-facebook .path1:before {
  content: "\E904";
  color: rgb(48, 52, 61);
}

.icon-facebook .path2:before {
  content: "\E916";
  margin-left: -0.9697265625em;
  color: rgb(209, 197, 180);
}

.icon-instagram .path1:before {
  content: "\E91B";
  color: rgb(48, 52, 61);
}

.icon-instagram .path2:before {
  content: "\E91C";
  margin-left: -0.939453125em;
  color: rgb(209, 197, 180);
}

.icon-instagram .path3:before {
  content: "\E91D";
  margin-left: -0.939453125em;
  color: rgb(209, 197, 180);
}

.icon-instagram .path4:before {
  content: "\E91E";
  margin-left: -0.939453125em;
  color: rgb(209, 197, 180);
}

.icon-youtube .path1:before {
  content: "\E91F";
  color: rgb(48, 52, 61);
}

.icon-youtube .path2:before {
  content: "\E920";
  margin-left: -0.9697265625em;
  color: rgb(209, 197, 180);
}

.icon-bed:before {
  content: "\E921";
  color: #fff;
}

.icon-yacht-category:before {
  content: "\E922";
  color: #fff;
}

.icon-arrow-default:before {
  content: "\E900";
}

.icon-arrow-fill .path1:before {
  content: "\E901";
  color: rgb(221, 212, 196);
}

.icon-arrow-fill .path2:before {
  content: "\E902";
  margin-left: -1em;
  color: rgb(209, 197, 180);
}

.icon-arrow-fill .path3:before {
  content: "\E903";
  margin-left: -1em;
  color: rgb(48, 52, 61);
}

.icon-check:before {
  content: "\E905";
  color: #907b69;
}

.icon-check-border .path1:before {
  content: "\E906";
  color: rgb(221, 212, 196);
}

.icon-check-border .path2:before {
  content: "\E907";
  margin-left: -1em;
  color: rgb(144, 123, 105);
}

.icon-check-border .path3:before {
  content: "\E908";
  margin-left: -1em;
  color: rgb(144, 123, 105);
}

.icon-info:before {
  content: "\E909";
}

.icon-linkedin:before {
  content: "\E90A";
}

.icon-location-compass:before {
  content: "\E90B";
  color: #fff;
}

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

.icon-messege:before {
  content: "\E90D";
  color: #907b69;
}

.icon-people:before {
  content: "\E90E";
  color: #fff;
}

.icon-people-crew:before {
  content: "\E90F";
}

.icon-people-single:before {
  content: "\E910";
}

.icon-price:before {
  content: "\E911";
  color: #fff;
}

.icon-rule:before {
  content: "\E912";
}

.icon-search-plus:before {
  content: "\E913";
  color: #907b69;
}

.icon-sent:before {
  content: "\E914";
  color: #d1c5b4;
}

.icon-trash:before {
  content: "\E915";
}

.icon-red-more-button .path1:before {
  content: "\E917";
  color: rgb(48, 52, 61);
}

.icon-red-more-button .path2:before {
  content: "\E918";
  margin-left: -0.9765625em;
  color: rgb(166, 149, 130);
}

.icon-chevron-right:before {
  content: "\E919";
  color: #fff;
}

.icon-search:before {
  content: "\E91A";
  color: #907b69;
}

/*
* Noto Sans
*/
@font-face {
  font-family: "Noto Sans";
  src: url("../../fonts/NotoSans/NotoSans-Regular.woff2") format("woff2"), url("../../fonts/NotoSans/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../../fonts/NotoSans/NotoSans-Light.woff2") format("woff2"), url("../../fonts/NotoSans/NotoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond Bold Italic";
  src: url("../../fonts/AdobeGaramond/AGaramondPro-BoldItalic.woff2") format("woff2"), url("../../fonts/AdobeGaramond/AGaramondPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond";
  src: url("../../fonts/AdobeGaramond/AGaramondPro-Bold.woff2") format("woff2"), url("../../fonts/AdobeGaramond/AGaramondPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond Regular Italic";
  src: url("../../fonts/AdobeGaramond/AGaramondPro-Italic.woff2") format("woff2"), url("../../fonts/AdobeGaramond/AGaramondPro-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond";
  src: url("../../fonts/AdobeGaramond/AGaramondPro-Regular.woff2") format("woff2"), url("../../fonts/AdobeGaramond/AGaramondPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.sr-only, .honeypot .gfield_description, .gfield_label:not(.gfield_label_before_complex),
.screen-reader-text, .validation_error, .form-group.name label:not(.gfield_label_before_complex),
.form-group.name i,
.form-group.time label:not(.gfield_label_before_complex),
.form-group.time i,
.form-group.address label:not(.gfield_label_before_complex),
.form-group.address i {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

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

h1,
.h1 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2,
.h2 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h3,
.h3 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

h4,
.h4 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

h2,
h3,
h4,
h5 {
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
}

h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 47.99em) {
  h1 {
    font-size: 42px;
    line-height: normal;
  }
}

h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  h2 {
    font-size: 32px;
    line-height: 132%;
  }
}

h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 47.99em) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

p {
  color: #30343d;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 47.99em) {
  p {
    font-size: 14px;
  }
}

.main-title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 61.99em) {
  .main-title {
    font-size: 48px;
  }
}
@media (max-width: 47.99em) {
  .main-title {
    font-size: 32px;
  }
}

.small-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #907b69;
  margin-bottom: 12px;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .small-title {
    font-size: 18px;
  }
}

.subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  color: #d1c5b4;
}
@media (max-width: 47.99em) {
  .subtitle {
    font-size: 18px;
  }
}

.article-content {
  width: 100%;
}
.article-content p {
  margin-bottom: 10px;
}
@media screen and (min-width: 0px) {
  .article-content p {
    margin-bottom: -webkit-calc(10px + 5 * (100vw - 0px) / 1200);
    margin-bottom: calc(10px + 5 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  .article-content p {
    margin-bottom: 15px;
  }
}
.article-content p.lead {
  font-size: 16px;
}
@media screen and (min-width: 0px) {
  .article-content p.lead {
    font-size: -webkit-calc(16px + 2 * (100vw - 0px) / 1200);
    font-size: calc(16px + 2 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  .article-content p.lead {
    font-size: 18px;
  }
}
.article-content img {
  width: 100%;
  height: auto;
}
.article-content .alignnone {
  margin: 5px 20px 20px 0;
}
.article-content .aligncenter {
  display: block;
  margin: 5px auto 20px;
  width: auto;
}
.article-content .alignright {
  float: right;
  margin: 5px 0 20px 20px;
  width: auto;
}
.article-content .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
  width: auto;
}
.article-content li {
  position: relative;
  padding: 0 0 6px 20px;
}
.article-content li:before {
  left: 0;
  position: absolute;
  content: "";
}
.article-content ol,
.article-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 20px;
}
.article-content ol ol,
.article-content ol ul,
.article-content ul ol,
.article-content ul ul {
  padding-left: 0;
  padding-top: 5px;
}
.article-content > ol,
.article-content > ul {
  margin-top: 0;
}
.article-content ol {
  counter-reset: li;
}
.article-content ol li:before {
  counter-increment: li;
  content: counter(li) ".";
  top: 3px;
  font-size: 12px;
  font-weight: 700;
  color: #30343d;
}
.article-content ol li ol {
  counter-reset: lili;
  margin-bottom: 0;
}
.article-content ol li ol li:before {
  counter-increment: lili;
  content: counter(lili) ".";
  color: #0e1012;
}
.article-content ol li ol li li:before {
  color: black;
}
.article-content ul li:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #30343d;
  top: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.article-content ul li ul {
  margin-bottom: 0;
}
.article-content ul li li:before {
  background-color: #0e1012;
}
.article-content ul li li li:before {
  background-color: black;
}
.article-content iframe {
  width: 100% !important;
  max-width: 100%;
}
.article-content a:not(.btn):not(.gform_button) {
  color: #30343d;
  font-weight: 700;
}
.article-content a:not(.btn):not(.gform_button):hover, .article-content a:not(.btn):not(.gform_button):active, .article-content a.nice-select.open:not(.btn):not(.gform_button), .article-content a:not(.btn):not(.gform_button):focus {
  text-decoration: underline;
}
.article-content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  font-size: 14px;
}
.article-content table > thead > tr > th,
.article-content table > thead > tr > td,
.article-content table > tbody > tr > th,
.article-content table > tbody > tr > td,
.article-content table > tfoot > tr > th,
.article-content table > tfoot > tr > td {
  padding: 10px 15px;
  line-height: 1.4;
  vertical-align: top;
}
.article-content table > thead {
  background-color: #30343d;
  color: #fff;
  text-align: left;
}
.article-content table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #fff;
}
.article-content table > caption + thead > tr:first-child > th,
.article-content table > caption + thead > tr:first-child > td,
.article-content table > colgroup + thead > tr:first-child > th,
.article-content table > colgroup + thead > tr:first-child > td,
.article-content table > thead:first-child > tr:first-child > th,
.article-content table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.article-content table > tbody + tbody {
  border-top: 2px solid #ced4da;
}
.article-content table table {
  background-color: #fff;
}
.article-content table > tbody > tr:nth-of-type(even) {
  background-color: #e9ecef;
}
.article-content .table-responsive {
  overflow-x: auto;
}
@media (max-width: 35.99em) {
  .article-content .table-responsive {
    width: 100%;
    margin-bottom: 20px;
    overflow-y: hidden;
    border: 1px solid #ced4da;
  }
  .article-content .table-responsive > table {
    margin-bottom: 0;
  }
  .article-content .table-responsive > table > thead > tr > th,
  .article-content .table-responsive > table > thead > tr > td,
  .article-content .table-responsive > table > tbody > tr > th,
  .article-content .table-responsive > table > tbody > tr > td,
  .article-content .table-responsive > table > tfoot > tr > th,
  .article-content .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}
.article-content blockquote {
  padding: 25px;
  font-size: 18px;
  font-weight: 700;
  color: #6c757d;
  margin: 0;
}
@media screen and (min-width: 0px) {
  .article-content blockquote {
    padding: -webkit-calc(25px + 15 * (100vw - 0px) / 1200);
    padding: calc(25px + 15 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  .article-content blockquote {
    padding: 40px;
  }
}
@media screen and (min-width: 0px) {
  .article-content blockquote {
    font-size: -webkit-calc(18px + 6 * (100vw - 0px) / 1200);
    font-size: calc(18px + 6 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  .article-content blockquote {
    font-size: 24px;
  }
}
.article-content blockquote > p {
  margin: 0;
}
.article-content blockquote > p:before {
  content: "\201C";
  margin-right: 5px;
}
.article-content blockquote > p:after {
  content: "\201D";
  margin-left: 5px;
}
.article-content__share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.article-content__share p {
  margin: 0;
  padding-right: 20px;
}
.article-content__share__title {
  margin: 0 20px 0 0;
}
.article-content__share__link {
  padding-bottom: 5px;
  padding-right: 20px;
}
.article-content__share__link svg {
  height: 18px;
  fill: black;
}

.password-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.password-form-wrapper {
  display: block;
  position: absolute;
  top: -webkit-calc(50% - 105px);
  top: calc(50% - 105px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 47.99em) {
  .password-form-wrapper {
    width: 80%;
    top: -webkit-calc(50% - 70px);
    top: calc(50% - 70px);
  }
}

.btn, .gform_button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: none;
  color: #ffffff;
  background-color: #907b69;
  font-weight: 400;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 18px 30px;
  text-transform: uppercase;
  border-radius: 600px;
  font-size: 14px !important;
}
@media (max-width: 75em) {
  .btn, .gform_button {
    font-weight: 300;
    padding: 16px 30px;
  }
}
@media (max-width: 47.99em) {
  .btn, .gform_button {
    padding: 12px 26px;
  }
}
.btn .title, .gform_button .title {
  height: 17px;
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  pointer-events: none;
  font-size: 14px;
  margin-top: 1px;
  color: #ffffff;
}
.btn .before, .gform_button .before {
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  pointer-events: none;
  margin-top: -5px;
}
.btn .before::before, .gform_button .before::before {
  font-size: 14px;
}
.btn .after, .gform_button .after {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  pointer-events: none;
  margin-top: -4px;
}
.btn .after::before, .gform_button .after::before {
  font-size: 14px;
  color: #907b69;
}
.btn:hover, .gform_button:hover, .btn:active, .gform_button:active, .btn.nice-select.open, .nice-select.open.gform_button, .btn:focus, .gform_button:focus {
  background-color: #30343d;
  color: #ffffff;
}
.btn:hover .title, .gform_button:hover .title, .btn:active .title, .gform_button:active .title, .btn.nice-select.open .title, .nice-select.open.gform_button .title, .btn:focus .title, .gform_button:focus .title {
  -webkit-transform: translate(-14px);
          transform: translate(-14px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 47.99em) {
  .btn:hover .title, .gform_button:hover .title, .btn:active .title, .gform_button:active .title, .btn.nice-select.open .title, .nice-select.open.gform_button .title, .btn:focus .title, .gform_button:focus .title {
    font-size: 14px;
  }
}
.btn:hover .before, .gform_button:hover .before, .btn:active .before, .gform_button:active .before, .btn.nice-select.open .before, .nice-select.open.gform_button .before, .btn:focus .before, .gform_button:focus .before {
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn:hover .after, .gform_button:hover .after, .btn:active .after, .gform_button:active .after, .btn.nice-select.open .after, .nice-select.open.gform_button .after, .btn:focus .after, .gform_button:focus .after {
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn[disabled], [disabled].gform_button {
  opacity: 0.8;
  cursor: not-allowed;
}
.btn.secondary, .secondary.gform_button {
  background-color: #ffffff;
  color: #30343d;
  padding: 18px 30px;
}
@media (max-width: 47.99em) {
  .btn.secondary, .secondary.gform_button {
    padding: 12px 26px;
  }
}
@media (max-width: 47.99em) {
  .btn.secondary .before, .secondary.gform_button .before {
    margin-top: 1px;
  }
  .btn.secondary .after, .secondary.gform_button .after {
    margin-top: -2px;
  }
}
.btn.secondary .before::before, .secondary.gform_button .before::before {
  color: #907b69;
  font-size: 14px;
}
.btn.secondary .title, .secondary.gform_button .title {
  color: #907b69;
}
.btn.secondary:hover, .secondary.gform_button:hover, .btn.secondary:active, .secondary.gform_button:active, .btn.secondary.nice-select.open, .secondary.nice-select.open.gform_button, .btn.secondary:focus, .secondary.gform_button:focus {
  background-color: #907b69;
  color: #ffffff;
}
.btn.secondary:hover .title, .secondary.gform_button:hover .title, .btn.secondary:active .title, .secondary.gform_button:active .title, .btn.secondary.nice-select.open .title, .secondary.nice-select.open.gform_button .title, .btn.secondary:focus .title, .secondary.gform_button:focus .title {
  color: #ffffff;
}
@media (max-width: 47.99em) {
  .btn.secondary:hover .title, .secondary.gform_button:hover .title, .btn.secondary:active .title, .secondary.gform_button:active .title, .btn.secondary.nice-select.open .title, .secondary.nice-select.open.gform_button .title, .btn.secondary:focus .title, .secondary.gform_button:focus .title {
    font-size: 14px;
  }
}
.btn.secondary:hover .after::before, .secondary.gform_button:hover .after::before, .btn.secondary:active .after::before, .secondary.gform_button:active .after::before, .btn.secondary.nice-select.open .after::before, .secondary.nice-select.open.gform_button .after::before, .btn.secondary:focus .after::before, .secondary.gform_button:focus .after::before {
  color: #ffffff;
  font-size: 14px;
}
.btn.article-cta, .article-cta.gform_button {
  background-color: transparent;
  padding: 0;
  width: 100%;
  height: 42px;
  padding-right: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn.article-cta .before, .article-cta.gform_button .before {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #30343d;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  opacity: 1;
}
.btn.article-cta .title, .article-cta.gform_button .title {
  font-size: 14px;
  margin-top: -2px;
  -webkit-transform: translate(0px);
          transform: translate(0px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn.link-icon, .link-icon.gform_button {
  background-color: transparent;
  color: #30343d;
  padding: 0;
}
.btn.link-icon .title, .link-icon.gform_button .title {
  font-size: 14px;
  margin-top: 4px;
  -webkit-transform: translate(0px);
          transform: translate(0px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #30343d;
}
.btn.link-icon .after, .link-icon.gform_button .after {
  opacity: 1;
  margin-left: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn.link-icon .after::before, .link-icon.gform_button .after::before {
  font-size: 12px;
}
.btn.link-icon:hover .title, .link-icon.gform_button:hover .title, .btn.link-icon:active .title, .link-icon.gform_button:active .title, .btn.link-icon.nice-select.open .title, .link-icon.nice-select.open.gform_button .title, .btn.link-icon:focus .title, .link-icon.gform_button:focus .title {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.btn.link-icon:hover .after, .link-icon.gform_button:hover .after, .btn.link-icon:active .after, .link-icon.gform_button:active .after, .btn.link-icon.nice-select.open .after, .link-icon.nice-select.open.gform_button .after, .btn.link-icon:focus .after, .link-icon.gform_button:focus .after {
  margin-left: 10px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.btn-block {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-block + .btn-block {
  margin-top: 30px;
}

.module {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-color: #ffffff;
}
.module .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 61.99em) {
  .module {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.module ul li {
  font-weight: 300;
}

.form-control, .gform_body textarea, .gform_body input, .form-group.name input,
.form-group.time input,
.form-group.time select,
.form-group.address input,
.form-group.address select, .ginput_container_list .gfield_list_cell input {
  color: #30343d;
  font-weight: 300;
  width: 100%;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid rgba(65, 67, 80, 0.3);
  -webkit-transition: all 300ms ease-out all;
  transition: all 300ms ease-out all;
  background-color: transparent;
  padding: 20px 16px;
  padding-left: 0;
  min-height: 60px;
}
.form-control::-webkit-input-placeholder, .gform_body textarea::-webkit-input-placeholder, .gform_body input::-webkit-input-placeholder, .form-group.name input::-webkit-input-placeholder,
.form-group.time input::-webkit-input-placeholder,
.form-group.time select::-webkit-input-placeholder,
.form-group.address input::-webkit-input-placeholder,
.form-group.address select::-webkit-input-placeholder, .ginput_container_list .gfield_list_cell input::-webkit-input-placeholder {
  color: #30343d;
}
.form-control:-moz-placeholder, .gform_body textarea:-moz-placeholder, .gform_body input:-moz-placeholder, .form-group.name input:-moz-placeholder,
.form-group.time input:-moz-placeholder,
.form-group.time select:-moz-placeholder,
.form-group.address input:-moz-placeholder,
.form-group.address select:-moz-placeholder, .ginput_container_list .gfield_list_cell input:-moz-placeholder {
  color: #30343d;
}
.form-control::-moz-placeholder, .gform_body textarea::-moz-placeholder, .gform_body input::-moz-placeholder, .form-group.name input::-moz-placeholder,
.form-group.time input::-moz-placeholder,
.form-group.time select::-moz-placeholder,
.form-group.address input::-moz-placeholder,
.form-group.address select::-moz-placeholder, .ginput_container_list .gfield_list_cell input::-moz-placeholder {
  color: #30343d;
}
.form-control:-ms-input-placeholder, .gform_body textarea:-ms-input-placeholder, .gform_body input:-ms-input-placeholder, .form-group.name input:-ms-input-placeholder,
.form-group.time input:-ms-input-placeholder,
.form-group.time select:-ms-input-placeholder,
.form-group.address input:-ms-input-placeholder,
.form-group.address select:-ms-input-placeholder, .ginput_container_list .gfield_list_cell input:-ms-input-placeholder {
  color: #30343d;
}
.form-control:focus, .gform_body textarea:focus, .gform_body input:focus, .form-group.name input:focus,
.form-group.time input:focus,
.form-group.time select:focus,
.form-group.address input:focus,
.form-group.address select:focus, .ginput_container_list .gfield_list_cell input:focus {
  border-color: #907b69;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.has-error .form-control, .has-error .gform_body textarea, .gform_body .has-error textarea, .has-error .gform_body input, .gform_body .has-error input, .has-error .form-group.name input, .form-group.name .has-error input,
.has-error .form-group.time input,
.form-group.time .has-error input,
.has-error .form-group.time select,
.form-group.time .has-error select,
.has-error .form-group.address input,
.form-group.address .has-error input,
.has-error .form-group.address select,
.form-group.address .has-error select, .has-error .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .has-error input {
  border-color: #dc3545;
  background-image: image("failed.svg");
  padding-right: 50px;
}

textarea.form-control, .gform_body textarea {
  max-width: 100%;
  background-position: right 15px top 10px;
}

select.form-control,
.form-group.time select,
.form-group.address select {
  padding-top: 14px;
  padding-bottom: 14px;
}
@media screen and (min-width: 0px) {
  select.form-control,
  .form-group.time select,
  .form-group.address select {
    padding-top: -webkit-calc(14px + 4 * (100vw - 0px) / 1200);
    padding-top: calc(14px + 4 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  select.form-control,
  .form-group.time select,
  .form-group.address select {
    padding-top: 18px;
  }
}
@media screen and (min-width: 0px) {
  select.form-control,
  .form-group.time select,
  .form-group.address select {
    padding-bottom: -webkit-calc(14px + 2 * (100vw - 0px) / 1200);
    padding-bottom: calc(14px + 2 * (100vw - 0px) / 1200);
  }
}
@media screen and (min-width: 1200px) {
  select.form-control,
  .form-group.time select,
  .form-group.address select {
    padding-bottom: 16px;
  }
}

.gform_heading h3 {
  font-size: 32px !important;
  font-weight: 400 !important;
}
.gform_heading .gform_title {
  color: #907b69;
  margin: 0 0 30px 0 !important;
}
.gform_heading .gform_description {
  color: #30343d;
}
.gform_body {
  margin: 22px 0 30px;
}
.gform_body .gfield {
  position: relative;
  height: 48px;
}
.gform_body .gfield--type-textarea {
  height: 100%;
}
.gform_body .gfield.gfield_error {
  background-color: transparent !important;
  margin-bottom: 0 !important;
  border-top: none !important;
  padding-top: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  -webkit-box-sizing: none !important;
          box-sizing: none !important;
}
.gform_body .gfield.gfield_error input,
.gform_body .gfield.gfield_error textarea {
  border: none !important;
  border-bottom: 1px solid #ff3c3c !important;
}
.gform_body .gfield.gfield_error .validation_message {
  padding-top: 0 !important;
  font-weight: 300;
  color: #ff3c3c;
}
.gform_body input {
  width: 100% !important;
}
.gform_body textarea {
  height: 100px !important;
  padding-left: 3px !important;
  padding-top: 20px !important;
}
.gform_footer {
  text-align: left;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}
.gform_button {
  border: none;
  outline: none;
}
@media (max-width: 47.99em) {
  .gform_button {
    width: 100%;
  }
}

.honeypot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.grecaptcha-badge {
  display: none;
}

.ginput_recaptcha_terms {
  font-size: 14px;
  margin-top: 8px;
}

.gform_required_message {
  display: none;
}

.hamburger {
  padding: 5px 5px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0 0 -5px 0;
  overflow: visible;
}
.hamburger:hover, .hamburger:active, .hamburger.nice-select.open, .hamburger:focus {
  opacity: 1;
  outline: none;
}

.hamburger-box {
  width: 36px;
  height: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.hamburger-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 27px;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  height: 2px;
  background-color: #30343d;
  border-radius: 600px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
  width: 17px;
}
.hamburger-inner::after {
  width: 36px;
  bottom: -7px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.loaded:not(.hide-nav) .header {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.hide-nav .header {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
@media (max-width: 61.99em) {
  .header {
    padding: 20px 0;
  }
}
@media (max-width: 47.99em) {
  .header {
    padding: 10px 0;
  }
}
@media (max-width: 61.99em) {
  .header__logo {
    display: none;
  }
  .header__logo img {
    height: 32px;
  }
}
.header__logo-mobile {
  display: none;
}
@media (max-width: 61.99em) {
  .header__logo-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.admin-bar .header {
  top: 46px;
}
@media (min-width: 48.9375em) {
  .admin-bar .header {
    top: 32px;
  }
}
.header .inner .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.header__item--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 47.99em) {
  .header__item--right .btn.primary, .header__item--right .primary.gform_button {
    display: none;
  }
}
.header__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (min-width: 62em) and (max-width: 76.25em) {
  .header__button {
    gap: 20px;
  }
}
.header__button .search-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
}
.header__button .search-btn i::before {
  display: block;
  scale: 1.4;
}
.header__nav .nav {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.header__nav .nav__item:not(:last-child) {
  margin-right: 30px;
}
.header__nav .nav__link {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}
.header__mega-menu {
  position: absolute;
  width: 560px;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 99;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .header__mega-menu {
    width: 75vw;
  }
}
.nav-active .header__mega-menu {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.header__mega-menu .bg-pattern {
  position: absolute;
  left: -10%;
  z-index: 0;
}
.header__mega-menu .bg-pattern svg {
  opacity: 5%;
}
.header__mega-menu__inner {
  z-index: 1;
  overflow: auto;
  padding: 0 64px;
  width: 99%;
  height: -webkit-calc(100vh - 128px);
  height: calc(100vh - 128px);
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}
@media (max-width: 47.99em) {
  .header__mega-menu__inner {
    padding: 0 16px 60px;
  }
}
@media (min-width: 47.8125em) {
  .header__mega-menu__inner::-webkit-scrollbar {
    width: 3px;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  .header__mega-menu__inner::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .header__mega-menu__inner::-webkit-scrollbar-thumb {
    background: #888;
  }
  .header__mega-menu__inner::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}
.header__mega-menu__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-bottom: 43px;
}
@media (max-width: 47.99em) {
  .header__mega-menu__close {
    width: 24px;
    height: 24px;
    margin-bottom: 22px;
  }
}
.header__mega-menu__close svg path {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.header__mega-menu__close:hover, .header__mega-menu__close:active, .header__mega-menu__close.nice-select.open, .header__mega-menu__close:focus {
  cursor: pointer;
}
.header__mega-menu__close:hover svg path, .header__mega-menu__close:active svg path, .header__mega-menu__close.nice-select.open svg path, .header__mega-menu__close:focus svg path {
  stroke: #30343d;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.header__mega-menu__nav {
  z-index: 1;
}
.header__mega-menu__nav .nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.header__mega-menu__nav .nav__item {
  line-height: 1;
}
.header__mega-menu__nav .nav__item:not(:last-child) {
  margin-bottom: 32px;
}
.header__mega-menu__nav .nav__link {
  font-size: 26px;
  text-transform: uppercase;
  font-family: serif;
  font-family: "Adobe Garamond", Georgia, serif;
}
.header__mega-menu__contact-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 78px;
  padding-top: 78px;
  border-top: 1px solid #e2e2e2;
  font-weight: 300;
}
@media (max-width: 75em) {
  .header__mega-menu__contact-details {
    margin-top: 48px;
    padding-top: 48px;
  }
}
@media (max-width: 47.99em) {
  .header__mega-menu__contact-details {
    margin-top: 22px;
    padding-top: 22px;
  }
}
.header__mega-menu__contact-details .company-name {
  font-size: 18px;
}
.header__mega-menu__contact-details .address p {
  font-size: 14px;
  font-weight: 300;
}
.header__mega-menu__contact-details .contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  font-size: 14px;
  gap: 10px;
}
@media (max-width: 61.99em) {
  .header__mega-menu__contact-details .contact {
    margin-bottom: 0;
  }
}
.header__mega-menu__contact-details .socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header__mega-menu__contact-details .socials a svg rect,
.header__mega-menu__contact-details .socials a svg g path:first-child {
  fill: #f6f6f6;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.header__mega-menu__contact-details .socials a svg path {
  fill: #907b69;
}
.header__mega-menu__contact-details .socials a:hover svg rect,
.header__mega-menu__contact-details .socials a:hover path:first-child, .header__mega-menu__contact-details .socials a:active svg rect, .header__mega-menu__contact-details .socials a.nice-select.open svg rect,
.header__mega-menu__contact-details .socials a:active path:first-child,
.header__mega-menu__contact-details .socials a.nice-select.open path:first-child, .header__mega-menu__contact-details .socials a:focus svg rect,
.header__mega-menu__contact-details .socials a:focus path:first-child {
  fill: #ddd4c4;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.header .mega-menu-overlay {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 61.99em) {
  .header .mega-menu-overlay {
    background: rgba(0, 0, 0, 0.7);
  }
}
.header .mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.keyboard-nav {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999999;
}
.keyboard-nav a {
  position: absolute;
  left: 0;
  top: -10em;
  padding: 15px 30px;
  white-space: nowrap;
  color: #fff;
  font-size: 18px;
  background-color: #30343d;
}
.keyboard-nav a:focus {
  top: 0;
}

.footer {
  width: 100%;
  background-color: #30343d;
  color: #ffffff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 61.99em) {
  .footer {
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .footer .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 47.99em) {
  .footer {
    margin-bottom: 60px;
  }
}
.footer__body-left, .footer__body-right {
  height: 100%;
}
@media (max-width: 61.99em) {
  .footer__body-left, .footer__body-right {
    width: 75vw;
  }
}
@media (max-width: 47.99em) {
  .footer__body-left, .footer__body-right {
    width: 90vw;
  }
}
.footer__logo-mobile {
  display: block;
  width: 146px;
  height: 146px;
  margin-bottom: 48px;
}
.footer__logo-mobile svg {
  width: 146px;
  height: 100%;
}
@media (min-width: 62em) {
  .footer__logo-mobile {
    display: none;
  }
}
@media (max-width: 61.99em) {
  .footer__logo {
    width: 146px;
    height: auto;
    display: none;
  }
  .footer__logo svg {
    width: 146px;
  }
}
.footer__contact-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 20px;
  width: 70%;
  font-weight: 300;
}
@media (max-width: 61.99em) {
  .footer__contact-details {
    margin-top: 18px;
  }
}
.footer__contact-details a {
  color: #d1c5b4;
  font-size: 14px;
}
.footer__contact-details a p {
  margin: 0;
  font-size: 14px;
  color: #d1c5b4;
  font-weight: 300;
}
.footer__contact-details .company-name {
  color: #d1c5b4;
}
.footer__contact-details .contact {
  color: #d1c5b4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 61.99em) {
  .footer__contact-details .contact {
    width: 85vw;
  }
}
.footer__socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer__socials a svg rect,
.footer__socials a g {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__socials a:hover svg rect, .footer__socials a:active svg rect, .footer__socials a.nice-select.open svg rect, .footer__socials a:focus svg rect {
  fill: #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__socials a:hover svg g path:first-child, .footer__socials a:active svg g path:first-child, .footer__socials a.nice-select.open svg g path:first-child, .footer__socials a:focus svg g path:first-child {
  fill: #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__menu__nav {
  padding: 93px 0;
}
@media (max-width: 61.99em) {
  .footer__menu__nav {
    padding-bottom: 30px;
    padding: 0;
  }
}
@media (max-width: 47.99em) {
  .footer__menu__nav {
    margin-bottom: 48px 0;
  }
}
.footer__menu__nav .nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 61.99em) {
  .footer__menu__nav .nav {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 47.99em) {
  .footer__menu__nav .nav {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    row-gap: 30px;
  }
}
.footer__menu__nav .nav__item {
  margin-left: 30px;
}
@media (max-width: 61.99em) {
  .footer__menu__nav .nav__item {
    margin-left: 0;
    margin-right: 30px;
  }
}
.footer__menu__nav .nav__link {
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  font-size: 14px;
}
.footer__menu__nav .nav__link:hover, .footer__menu__nav .nav__link:active, .footer__menu__nav .nav__link.nice-select.open, .footer__menu__nav .nav__link:focus {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__newsletter {
  margin-top: 50px;
}
@media (max-width: 61.99em) {
  .footer__newsletter {
    margin-top: 48px;
  }
}
@media (max-width: 61.99em) {
  .footer__newsletter .gform_heading {
    margin-bottom: 0 !important;
  }
}
.footer__newsletter .gform_heading h3.gform_title {
  text-transform: uppercase;
  font-size: 22px !important;
  margin-bottom: 30px !important;
  color: #ffffff;
}
@media (max-width: 61.99em) {
  .footer__newsletter .gform_heading h3.gform_title {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body {
    margin-top: 0 !important;
    margin-bottom: 0px !important;
  }
}
.footer__newsletter form .gform_body .gform_fields {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body .gform_fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield {
  height: auto;
  width: 100%;
  margin-top: 0 !important;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body .gform_fields .gfield {
    margin-top: 16px !important;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield:not(:nth-child(2)) {
  padding-right: 30px !important;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body .gform_fields .gfield:not(:nth-child(2)) {
    padding-right: 0 !important;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield:nth-child(2) {
  padding-right: 0 !important;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container label {
  color: #d1c5b4;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container label.active {
  opacity: 0;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input {
  color: #d1c5b4 !important;
  font-weight: 300 !important;
  border: none;
  border-bottom: 1px solid #d1c5b4 !important;
  border-radius: 0;
  background-color: transparent;
  min-height: 26px !important;
  padding: 0 !important;
}
@media (max-width: 47.99em) {
  .footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input {
    padding-bottom: 12px !important;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input::-webkit-input-placeholder {
  color: #d1c5b4;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input:-moz-placeholder {
  color: #d1c5b4;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input::-moz-placeholder {
  color: #d1c5b4;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input:-ms-input-placeholder {
  color: #d1c5b4;
}
.footer__newsletter form .gform_body .gform_fields .gfield .ginput_container input:focus-visible {
  outline: none;
}
.footer__newsletter form .gform_body .gform_fields .gfield--type-submit {
  position: absolute;
  height: 20px;
  width: 20px;
  right: -8px;
  top: 35%;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body .gform_fields .gfield--type-submit {
    top: 60%;
    right: 0;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button {
  position: absolute;
  color: transparent;
  background-image: url(../../img/icon-sent.svg);
  display: block;
  background-repeat: no-repeat;
  width: 18px;
  min-height: 18px;
  height: 100%;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 10px !important;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button {
    padding: 10px !important;
  }
}
.footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button:hover, .footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button:active, .footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button.nice-select.open, .footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button:focus {
  cursor: pointer;
  outline: none;
}
.footer__newsletter form .gform_body .gform_fields .gfield--type-submit .gform_submit_button span {
  display: none;
}
.footer__newsletter form .ginput_recaptcha_terms {
  color: white;
}
@media (max-width: 61.99em) {
  .footer__newsletter form .ginput_recaptcha_terms {
    margin-bottom: 30px;
  }
}
.footer__newsletter form .ginput_recaptcha_terms p,
.footer__newsletter form .ginput_recaptcha_terms a {
  color: white;
}
.footer__newsletter form .gform_footer .ginput_recaptcha_terms {
  display: none;
}
.footer__legal .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer__legal .wrapper {
  padding-top: 30px;
  margin-top: 30px;
  border-top: solid 1px #414350;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 61.99em) {
  .footer__legal .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__legal__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
}
@media (max-width: 61.99em) {
  .footer__legal__item {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 47.99em) {
  .footer__legal__item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__legal__credit {
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 61.99em) {
  .footer__legal__credit {
    font-size: 12px;
  }
}
.footer__legal__credit:hover, .footer__legal__credit:active, .footer__legal__credit.nice-select.open, .footer__legal__credit:focus {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__legal__copyright {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 61.99em) {
  .footer__legal__copyright {
    margin-right: 24px;
    margin-top: 24px;
    font-size: 12px;
  }
}
@media (max-width: 61.99em) {
  .footer__legal__nav {
    margin-bottom: 24px;
  }
}
@media (max-width: 47.99em) {
  .footer__legal__nav {
    margin-bottom: 0px;
  }
}
.footer__legal__nav .nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__legal__nav .nav__item {
  margin-right: 30px;
}
.footer__legal__nav .nav__link {
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.footer__legal__nav .nav__link:hover, .footer__legal__nav .nav__link:active, .footer__legal__nav .nav__link.nice-select.open, .footer__legal__nav .nav__link:focus {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 61.99em) {
  .footer__legal__nav .nav__link {
    font-size: 12px;
  }
}

.loader {
  position: fixed;
  background: #fff;
  top: 110px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}
body.admin-bar .loader {
  top: 142px;
}
.loader__inner {
  background: url("../../img/loader.svg") no-repeat center;
  -webkit-animation: loader-rotate 4s linear infinite;
          animation: loader-rotate 4s linear infinite;
  width: 100%;
  height: 100%;
}

body.search-active {
  position: relative;
}

.searchbox {
  position: fixed;
  background-color: white;
  top: 120%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: 0;
  bottom: 0;
  z-index: 999;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity all 300ms ease-out;
  transition: opacity all 300ms ease-out;
  pointer-events: none;
  padding: 0 80px;
  min-width: 820px;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: 600ms;
  transition: 600ms;
}
@media (max-width: 61.99em) {
  .searchbox {
    max-width: 88vw;
    min-width: 88vw;
    padding: 0 48px;
  }
}
@media (max-width: 47.99em) {
  .searchbox {
    max-width: 90vw;
    width: 90vw;
    padding: 0 16px;
  }
}
.search-active .searchbox {
  opacity: 1;
  top: 50%;
  left: 50%;
  pointer-events: auto;
  -webkit-transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.searchbox__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/bg-abstract-pattern.svg);
  opacity: 0.08;
  z-index: 0;
}
.searchbox__close {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 0px;
  margin: 0;
  border: 0;
  line-height: 0;
  background-color: transparent;
  color: #d1c5b4;
  font-size: 55px;
  font-weight: 100;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.searchbox__close:hover, .searchbox__close:active, .searchbox__close.nice-select.open, .searchbox__close:focus {
  color: #414350;
  outline: none;
}
.searchbox__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  height: 100%;
  overflow-y: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.searchbox__title {
  font-size: 32px !important;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
  margin-bottom: 20px;
}
.searchbox__form {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #907b69;
  padding: 0 20px;
  padding-right: 7px;
  border-radius: 300px;
}
@media (max-width: 61.99em) {
  .searchbox__form {
    height: 60px;
  }
}
@media (max-width: 47.99em) {
  .searchbox__form {
    height: 40px;
  }
}
.searchbox__form .search-icon {
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 16px;
}
.searchbox__form .search-icon::after {
  content: "";
  height: 70%;
  width: 1px;
  background: #d1c5b4;
  margin-left: 16px;
}
.searchbox__form .search-icon .icon-search::before {
  font-size: 20px;
}
.searchbox__form input.form-control, .searchbox__form .form-group.name input, .form-group.name .searchbox__form input,
.searchbox__form .form-group.time input,
.form-group.time .searchbox__form input,
.searchbox__form .form-group.address input,
.form-group.address .searchbox__form input, .searchbox__form .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .searchbox__form input, .searchbox__form .gform_body input, .gform_body .searchbox__form input {
  margin-bottom: 0;
  padding-right: 50px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: none;
  font-size: 18px !important;
}
@media (max-width: 47.99em) {
  .searchbox__form input.form-control, .searchbox__form .form-group.name input, .form-group.name .searchbox__form input,
  .searchbox__form .form-group.time input,
  .form-group.time .searchbox__form input,
  .searchbox__form .form-group.address input,
  .form-group.address .searchbox__form input, .searchbox__form .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .searchbox__form input, .searchbox__form .gform_body input, .gform_body .searchbox__form input {
    font-size: 16px !important;
  }
}
.searchbox__form input.form-control::-webkit-input-placeholder, .searchbox__form .form-group.name input::-webkit-input-placeholder, .form-group.name .searchbox__form input::-webkit-input-placeholder, .searchbox__form .form-group.time input::-webkit-input-placeholder, .form-group.time .searchbox__form input::-webkit-input-placeholder, .searchbox__form .form-group.address input::-webkit-input-placeholder, .form-group.address .searchbox__form input::-webkit-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-webkit-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-webkit-input-placeholder, .searchbox__form .gform_body input::-webkit-input-placeholder, .gform_body .searchbox__form input::-webkit-input-placeholder {
  font-size: 18px !important;
  font-weight: 300;
}
.searchbox__form input.form-control::-moz-placeholder, .searchbox__form .form-group.name input::-moz-placeholder, .form-group.name .searchbox__form input::-moz-placeholder, .searchbox__form .form-group.time input::-moz-placeholder, .form-group.time .searchbox__form input::-moz-placeholder, .searchbox__form .form-group.address input::-moz-placeholder, .form-group.address .searchbox__form input::-moz-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-moz-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-moz-placeholder, .searchbox__form .gform_body input::-moz-placeholder, .gform_body .searchbox__form input::-moz-placeholder {
  font-size: 18px !important;
  font-weight: 300;
}
.searchbox__form input.form-control:-ms-input-placeholder, .searchbox__form .form-group.name input:-ms-input-placeholder, .form-group.name .searchbox__form input:-ms-input-placeholder, .searchbox__form .form-group.time input:-ms-input-placeholder, .form-group.time .searchbox__form input:-ms-input-placeholder, .searchbox__form .form-group.address input:-ms-input-placeholder, .form-group.address .searchbox__form input:-ms-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input:-ms-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input:-ms-input-placeholder, .searchbox__form .gform_body input:-ms-input-placeholder, .gform_body .searchbox__form input:-ms-input-placeholder {
  font-size: 18px !important;
  font-weight: 300;
}
.searchbox__form input.form-control::-ms-input-placeholder, .searchbox__form .form-group.name input::-ms-input-placeholder, .form-group.name .searchbox__form input::-ms-input-placeholder, .searchbox__form .form-group.time input::-ms-input-placeholder, .form-group.time .searchbox__form input::-ms-input-placeholder, .searchbox__form .form-group.address input::-ms-input-placeholder, .form-group.address .searchbox__form input::-ms-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-ms-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-ms-input-placeholder, .searchbox__form .gform_body input::-ms-input-placeholder, .gform_body .searchbox__form input::-ms-input-placeholder {
  font-size: 18px !important;
  font-weight: 300;
}
.searchbox__form input.form-control::placeholder, .searchbox__form .form-group.name input::placeholder, .form-group.name .searchbox__form input::placeholder,
.searchbox__form .form-group.time input::placeholder,
.form-group.time .searchbox__form input::placeholder,
.searchbox__form .form-group.address input::placeholder,
.form-group.address .searchbox__form input::placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::placeholder, .searchbox__form .gform_body input::placeholder, .gform_body .searchbox__form input::placeholder {
  font-size: 18px !important;
  font-weight: 300;
}
@media (max-width: 47.99em) {
  .searchbox__form input.form-control::-webkit-input-placeholder, .searchbox__form .form-group.name input::-webkit-input-placeholder, .form-group.name .searchbox__form input::-webkit-input-placeholder, .searchbox__form .form-group.time input::-webkit-input-placeholder, .form-group.time .searchbox__form input::-webkit-input-placeholder, .searchbox__form .form-group.address input::-webkit-input-placeholder, .form-group.address .searchbox__form input::-webkit-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-webkit-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-webkit-input-placeholder, .searchbox__form .gform_body input::-webkit-input-placeholder, .gform_body .searchbox__form input::-webkit-input-placeholder {
    font-size: 16px !important;
  }
  .searchbox__form input.form-control::-moz-placeholder, .searchbox__form .form-group.name input::-moz-placeholder, .form-group.name .searchbox__form input::-moz-placeholder, .searchbox__form .form-group.time input::-moz-placeholder, .form-group.time .searchbox__form input::-moz-placeholder, .searchbox__form .form-group.address input::-moz-placeholder, .form-group.address .searchbox__form input::-moz-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-moz-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-moz-placeholder, .searchbox__form .gform_body input::-moz-placeholder, .gform_body .searchbox__form input::-moz-placeholder {
    font-size: 16px !important;
  }
  .searchbox__form input.form-control:-ms-input-placeholder, .searchbox__form .form-group.name input:-ms-input-placeholder, .form-group.name .searchbox__form input:-ms-input-placeholder, .searchbox__form .form-group.time input:-ms-input-placeholder, .form-group.time .searchbox__form input:-ms-input-placeholder, .searchbox__form .form-group.address input:-ms-input-placeholder, .form-group.address .searchbox__form input:-ms-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input:-ms-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input:-ms-input-placeholder, .searchbox__form .gform_body input:-ms-input-placeholder, .gform_body .searchbox__form input:-ms-input-placeholder {
    font-size: 16px !important;
  }
  .searchbox__form input.form-control::-ms-input-placeholder, .searchbox__form .form-group.name input::-ms-input-placeholder, .form-group.name .searchbox__form input::-ms-input-placeholder, .searchbox__form .form-group.time input::-ms-input-placeholder, .form-group.time .searchbox__form input::-ms-input-placeholder, .searchbox__form .form-group.address input::-ms-input-placeholder, .form-group.address .searchbox__form input::-ms-input-placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::-ms-input-placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::-ms-input-placeholder, .searchbox__form .gform_body input::-ms-input-placeholder, .gform_body .searchbox__form input::-ms-input-placeholder {
    font-size: 16px !important;
  }
  .searchbox__form input.form-control::placeholder, .searchbox__form .form-group.name input::placeholder, .form-group.name .searchbox__form input::placeholder,
  .searchbox__form .form-group.time input::placeholder,
  .form-group.time .searchbox__form input::placeholder,
  .searchbox__form .form-group.address input::placeholder,
  .form-group.address .searchbox__form input::placeholder, .searchbox__form .ginput_container_list .gfield_list_cell input::placeholder, .ginput_container_list .gfield_list_cell .searchbox__form input::placeholder, .searchbox__form .gform_body input::placeholder, .gform_body .searchbox__form input::placeholder {
    font-size: 16px !important;
  }
}
@media (max-width: 61.99em) {
  .searchbox__form input.form-control, .searchbox__form .form-group.name input, .form-group.name .searchbox__form input,
  .searchbox__form .form-group.time input,
  .form-group.time .searchbox__form input,
  .searchbox__form .form-group.address input,
  .form-group.address .searchbox__form input, .searchbox__form .ginput_container_list .gfield_list_cell input, .ginput_container_list .gfield_list_cell .searchbox__form input, .searchbox__form .gform_body input, .gform_body .searchbox__form input {
    padding-right: 10px;
  }
}
.searchbox__form input.form-control:hover, .searchbox__form .form-group.name input:hover, .form-group.name .searchbox__form input:hover,
.searchbox__form .form-group.time input:hover,
.form-group.time .searchbox__form input:hover,
.searchbox__form .form-group.address input:hover,
.form-group.address .searchbox__form input:hover, .searchbox__form .ginput_container_list .gfield_list_cell input:hover, .ginput_container_list .gfield_list_cell .searchbox__form input:hover, .searchbox__form .gform_body input:hover, .gform_body .searchbox__form input:hover, .searchbox__form input.form-control:active, .searchbox__form .form-group.name input:active, .form-group.name .searchbox__form input:active,
.searchbox__form .form-group.time input:active,
.form-group.time .searchbox__form input:active,
.searchbox__form .form-group.address input:active,
.form-group.address .searchbox__form input:active, .searchbox__form .ginput_container_list .gfield_list_cell input:active, .ginput_container_list .gfield_list_cell .searchbox__form input:active, .searchbox__form .gform_body input:active, .gform_body .searchbox__form input:active, .searchbox__form input.form-control.nice-select.open, .searchbox__form .form-group.name input.nice-select.open, .form-group.name .searchbox__form input.nice-select.open,
.searchbox__form .form-group.time input.nice-select.open,
.form-group.time .searchbox__form input.nice-select.open,
.searchbox__form .form-group.address input.nice-select.open,
.form-group.address .searchbox__form input.nice-select.open, .searchbox__form .ginput_container_list .gfield_list_cell input.nice-select.open, .ginput_container_list .gfield_list_cell .searchbox__form input.nice-select.open, .searchbox__form .gform_body input.nice-select.open, .gform_body .searchbox__form input.nice-select.open, .searchbox__form input.form-control:focus, .searchbox__form .form-group.name input:focus, .form-group.name .searchbox__form input:focus,
.searchbox__form .form-group.time input:focus,
.form-group.time .searchbox__form input:focus,
.searchbox__form .form-group.address input:focus,
.form-group.address .searchbox__form input:focus, .searchbox__form .ginput_container_list .gfield_list_cell input:focus, .ginput_container_list .gfield_list_cell .searchbox__form input:focus, .searchbox__form .gform_body input:focus, .gform_body .searchbox__form input:focus {
  border: none;
  border-bottom: none;
}
.searchbox__form__submit {
  position: relative;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #907b69;
  padding: 12px 40px;
  border-radius: 100px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.searchbox__form__submit:hover, .searchbox__form__submit:active, .searchbox__form__submit.nice-select.open, .searchbox__form__submit:focus {
  background: #30343d;
  color: #ffffff;
}
@media (max-width: 61.99em) {
  .searchbox__form__submit {
    display: none;
  }
}
.searchbox__recommendations {
  color: #30343d;
  margin-top: 20px;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 61.99em) {
  .searchbox__recommendations {
    font-size: 14px;
  }
}
.searchbox__recommendations .inner-text {
  margin-right: 10px;
  font-weight: 200;
}
@media (max-width: 61.99em) {
  .searchbox__recommendations .inner-text {
    display: inline;
    width: 100%;
  }
}
@media (max-width: 47.99em) {
  .searchbox__recommendations .inner-text {
    display: block;
    width: 100%;
  }
}
.searchbox__recommendations .recommend-item {
  margin-right: 16px;
}
.searchbox__recommendations .recommend-item:hover, .searchbox__recommendations .recommend-item:active, .searchbox__recommendations .recommend-item.nice-select.open, .searchbox__recommendations .recommend-item:focus {
  cursor: pointer;
}
.searchbox__fuzzy {
  margin-top: 10px;
  background-color: #fff;
  color: #30343d;
  border-radius: 0.25rem;
  display: none;
}
.searchbox__fuzzy__link {
  padding: 10px;
}
.searchbox__fuzzy__link + .searchbox__fuzzy__link {
  border-top: 1px solid #30343d;
}
body.search-active {
  overflow: hidden;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar a {
  padding: 10px;
  display: block;
}
.sidebar__nav__item {
  display: block;
  border-bottom: 1px solid #ced4da;
  margin-bottom: 10px;
}
.sidebar__nav__item a {
  font-weight: 700;
}
.sidebar__sub-nav__item {
  color: #ced4da;
}
.sidebar__sub-nav__item:hover a, .sidebar__sub-nav__item:active a, .sidebar__sub-nav__item.nice-select.open a, .sidebar__sub-nav__item:focus a {
  color: #343a40;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.sidebar__sub-nav__item--current a {
  color: #343a40;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.pagination {
  width: 100%;
}
.pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination__list__item--current {
  background-color: #30343d;
  color: #fff;
}
.pagination__list__item--current a {
  color: inherit;
}
.pagination__list__link {
  display: block;
  padding: 10px;
  font-weight: 700;
  line-height: 1;
}
.pagination__list__link:hover, .pagination__list__link:active, .pagination__list__link.nice-select.open, .pagination__list__link:focus {
  text-decoration: underline;
}

.page-reader-progress {
  width: 100%;
  background: #30343d;
  z-index: 90;
}
.page-reader-progress__placeholder {
  position: relative;
  height: 85px;
  width: 100%;
}
.page-reader-progress__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-reader-progress__text__label {
  color: white;
  font-weight: bold;
  padding-right: 8px;
  white-space: nowrap;
  padding-top: 5px;
  display: none;
}
@media (min-width: 36em) {
  .page-reader-progress__text__label {
    display: inline-block;
  }
}
.page-reader-progress__text__title {
  color: white;
  display: inline-block;
  padding-top: 5px;
}
@media (max-width: 35.99em) {
  .page-reader-progress__text__title {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    display: none;
  }
}
.page-reader-progress__bar {
  height: 4px;
  width: 100%;
}
.page-reader-progress__inner {
  background: #907b69;
  height: 4px;
  width: 0;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.page-reader-progress__share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin-left: auto;
}
.page-reader-progress__share__icon {
  height: 30px;
  width: 30px;
  line-height: 30px;
  padding: 10px 5px;
  position: relative;
  margin-left: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-reader-progress__share__icon:hover, .page-reader-progress__share__icon:active, .page-reader-progress__share__icon.nice-select.open, .page-reader-progress__share__icon:focus {
  text-decoration: none;
}
.page-reader-progress__share__icon:hover svg path, .page-reader-progress__share__icon:active svg path, .page-reader-progress__share__icon.nice-select.open svg path, .page-reader-progress__share__icon:focus svg path {
  fill: #907b69;
}
@media (hover: hover) {
  .page-reader-progress__share__icon:hover {
    border-color: #907b69;
  }
}
.page-reader-progress__share__icon svg {
  width: auto;
  height: 15px;
  fill: white;
}
.page-reader-progress__share__icon svg path {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.banner {
  position: relative;
  top: 0;
  height: 100vh;
  min-width: 100vw;
  background-color: #ddd4c4;
  overflow: hidden;
}
.banner.banner-default {
  height: 90vh;
}
@media (max-width: 47.99em) {
  .banner.banner-default {
    height: 87vh;
  }
}
.banner.banner-default.video {
  height: 920px;
}
.banner.banner-default .banner__video {
  width: 100vw;
  height: 100%;
}
.banner.banner-default.text {
  height: auto;
  padding-top: 200px;
  padding-bottom: 80px;
}
.banner.banner-default.text h1 {
  font-size: 42px;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 47.99em) {
  .banner.banner-default.text {
    height: auto;
    padding-top: 160px;
    margin-bottom: 60px;
    padding-bottom: 0;
  }
}
.banner.banner-default.text .banner-background {
  height: 100%;
  width: 100%;
  background-image: url("../../img/storiespattern.jpg");
  position: absolute;
  top: 0;
  left: 0;
}
.banner.banner-default.text .heading {
  position: relative;
}
.banner.banner-default.text .heading .small-title {
  color: #30343d;
  margin-bottom: 12px;
}
.banner.banner-default.text .heading .title {
  width: 80%;
}
@media (max-width: 61.99em) {
  .banner.banner-default.text .heading .title {
    width: 100%;
  }
}
.banner__image {
  height: 100%;
}
.banner__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner__text {
  position: absolute;
  margin-top: 0;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 85%;
}
@media (max-width: 47.99em) {
  .banner__text {
    width: 100%;
    padding: 0 16px;
  }
}
.banner__text h1 {
  font-size: 64px;
  text-transform: uppercase;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 47.99em) {
  .banner__text h1 {
    font-size: 32px;
  }
}
.banner__text h4 {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
}
@media (max-width: 47.99em) {
  .banner__text h4 {
    font-size: 20px;
  }
}
.banner .svg {
  position: absolute;
  width: 0;
  height: 0;
}
.banner__video {
  position: absolute;
  width: 115vw;
  height: 115vh;
  top: 0;
  z-index: 0;
  -webkit-clip-path: url(#banner-content-path);
          clip-path: url(#banner-content-path);
}
@media (max-width: 47.99em) {
  .banner__video {
    width: 200vw;
    height: 108vh;
  }
  body.home .banner__video {
    left: -25%;
  }
}
.banner__video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.banner__video .video-thumbnail {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-color: #ffffff;
}
.banner__video .video-thumbnail.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.banner__video .video-thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner__video .plyr {
  overflow: hidden;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 112.5em) {
  body.home .banner__video .plyr {
    height: 100%;
  }
  body.home .banner__video .plyr__video-wrapper {
    height: auto;
  }
  body.home .banner__video .plyr iframe {
    width: 90%;
    scale: 1.1;
  }
}
@media (max-width: 75em) {
  .banner__video .plyr {
    height: 110vh;
  }
}
@media (max-width: 61.99em) {
  .banner__video .plyr {
    height: 100%;
  }
  .banner__video .plyr iframe {
    scale: 4;
  }
  body.home .banner__video .plyr iframe {
    scale: 2.3;
  }
}
.banner__video .plyr__controls {
  opacity: 0;
}
.banner__video .plyr__control--overlaid {
  top: 80%;
  left: 5%;
  opacity: 0;
}

.contact-section {
  padding: 80px 0;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 47.99em) {
  .contact-section {
    padding-bottom: 0;
  }
}
@media (max-width: 47.99em) {
  .contact-section .container {
    padding: 0;
  }
}
.contact-section__inner {
  height: 874px;
  position: relative;
}
.contact-section__background {
  height: 100%;
  width: 85%;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .contact-section__background {
    width: 90%;
  }
}
@media (max-width: 47.99em) {
  .contact-section__background {
    width: 100%;
    height: 80%;
    border-radius: 0;
  }
}
.contact-section__background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-section__form {
  position: absolute;
  padding: 80px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 738px;
  min-height: 670px;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 61.99em) {
  .contact-section__form {
    padding: 48px;
    width: 538px;
  }
}
@media (max-width: 47.99em) {
  .contact-section__form {
    padding: 48px 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 85vw;
  }
}
@media (max-width: 47.99em) {
  .contact-section__form .gform_heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 75em) {
  .contact-section__form .gform_heading h3.gform_title {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 47.99em) {
  .contact-section__form .gform_heading h3.gform_title {
    font-size: 28px !important;
  }
}
.contact-section__form .gform_heading .gform_description {
  font-weight: 300;
}
@media (max-width: 47.99em) {
  .contact-section__form .gform_heading .gform_description {
    font-size: 14px;
  }
}
.contact-section__form .gform_body .gform_gfields {
  min-height: 280px;
  margin-bottom: 30px;
}
.contact-section__form .gform_body .gform_gfields .gfield {
  margin-top: 30px;
  padding-top: 0;
  height: 30px;
}
.contact-section__form .gform_body .gform_gfields .gfield input {
  min-height: 30px;
  padding: 0;
  padding-bottom: 10px;
}
.contact-section__form .gform_body .gform_gfields .gfield.gfield_error {
  background-color: none !important;
  margin-bottom: none !important;
  border-top: none !important;
  padding-top: none !important;
  border-bottom: none !important;
  padding-bottom: none !important;
  -webkit-box-sizing: none !important;
          box-sizing: none !important;
}
.contact-section__form .ginput_recaptcha_terms {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 12px;
}
.contact-section__form .gform_footer .ginput_recaptcha_terms {
  display: none;
}
.contact-section__form button.gform_submit_button {
  background-color: #907b69;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  padding: 18px 24px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
@media (max-width: 47.99em) {
  .contact-section__form button.gform_submit_button {
    padding: 12px 20px !important;
  }
}

.page-navigation {
  padding: 23px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 103px;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 10;
}
@media (max-width: 61.99em) {
  .page-navigation {
    top: 88px;
  }
}
@media (max-width: 47.99em) {
  .page-navigation {
    display: none;
  }
}
.page-navigation__nav ul.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.page-navigation__nav ul .nav__item {
  marker: none;
  list-style: none;
  margin-right: 64px;
}
@media (max-width: 61.99em) {
  .page-navigation__nav ul .nav__item {
    margin-right: 30px;
  }
}
.page-navigation__nav ul .nav__link {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.page-navigation__nav ul .nav__link.active .nav__title {
  color: #907b69;
  font-weight: 600;
}

.jb-ajax {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax.is-loading {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.jb-ajax__filter {
  margin-bottom: 60px;
}
.jb-ajax__filter--wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.jb-ajax__filter--wrapper .wrapper-inner {
  position: relative;
}
.jb-ajax__filter .filter-toogle {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-bottom: solid 2px #907b69;
  position: relative;
  padding-right: 20px;
  color: #30343d;
}
.jb-ajax__filter .filter-toogle:hover {
  cursor: pointer;
}
.jb-ajax__filter .filter-toogle span {
  pointer-events: none;
}
.jb-ajax__filter .filter-toogle .icon-chevron-right {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  margin-left: 12px;
  margin-top: 2px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.jb-ajax__filter .filter-toogle .icon-chevron-right::before {
  color: #30343d;
  font-size: 10px;
}
.jb-ajax__filter .filter-toogle.active .icon-chevron-right {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  margin-left: 10px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.jb-ajax__filter--category--inner, .jb-ajax__filter--year--inner {
  background: #30343d;
  padding: 16px 24px;
  position: absolute;
  z-index: 2;
  width: 100%;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__filter--category-li, .jb-ajax__filter--year-li {
  list-style: none;
  margin-bottom: 10px;
}
.jb-ajax__filter--category-li a, .jb-ajax__filter--year-li a {
  color: #ddd4c4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__filter--category-li a.active, .jb-ajax__filter--year-li a.active {
  border-bottom: 1px solid #ddd4c4;
}
.jb-ajax__filter--category-li a:hover, .jb-ajax__filter--category-li a:active, .jb-ajax__filter--category-li a.nice-select.open, .jb-ajax__filter--category-li a:focus, .jb-ajax__filter--year-li a:hover, .jb-ajax__filter--year-li a:active, .jb-ajax__filter--year-li a.nice-select.open, .jb-ajax__filter--year-li a:focus {
  border-bottom: 1px solid #ddd4c4;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__filter--category .list-btn, .jb-ajax__filter--year .list-btn {
  padding: 12px 40px;
  border: 1px solid #30343d;
  border-radius: 600px;
  text-transform: uppercase;
  font-size: 14px;
}
@media (max-width: 61.99em) {
  .jb-ajax__filter--category .list-btn, .jb-ajax__filter--year .list-btn {
    padding: 8px 28px;
  }
}
.jb-ajax__filter--category .list-btn:not(:last-child), .jb-ajax__filter--year .list-btn:not(:last-child) {
  margin-right: 12px;
}
.jb-ajax__filter--category .list-btn:hover, .jb-ajax__filter--category .list-btn:active, .jb-ajax__filter--category .list-btn.nice-select.open, .jb-ajax__filter--category .list-btn:focus, .jb-ajax__filter--year .list-btn:hover, .jb-ajax__filter--year .list-btn:active, .jb-ajax__filter--year .list-btn.nice-select.open, .jb-ajax__filter--year .list-btn:focus {
  border-color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__filter--category .list-btn.active, .jb-ajax__filter--year .list-btn.active {
  background-color: #907b69;
  color: #ffffff;
  border-color: #907b69;
}
.jb-ajax__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 24px;
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 47.99em) {
  .jb-ajax__lists .tease--card-default {
    width: 100%;
    height: 380px;
  }
}
@media (max-width: 47.99em) {
  .jb-ajax__lists .tease--yacht__item {
    width: 100%;
    height: 395px;
  }
}
.jb-ajax__pagination {
  margin-top: 60px;
  padding-top: 38px;
  border-top: 1px solid #d1c5b4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.jb-ajax__pagination .navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  height: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 47.99em) {
  .jb-ajax__pagination .navigation {
    gap: 10px;
  }
}
.jb-ajax__pagination .navigation .list-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 47.99em) {
  .jb-ajax__pagination .navigation .list-inline {
    padding: 0;
    gap: 16px;
  }
}
.jb-ajax__pagination .navigation .list-inline .link {
  list-style: none;
}
.jb-ajax__pagination .navigation .list-inline .link .button-pagination {
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__pagination .navigation .list-inline .link .button-pagination:hover, .jb-ajax__pagination .navigation .list-inline .link .button-pagination:active, .jb-ajax__pagination .navigation .list-inline .link .button-pagination.nice-select.open, .jb-ajax__pagination .navigation .list-inline .link .button-pagination:focus {
  background: #d1c5b4;
}
.jb-ajax__pagination .navigation .list-inline .link .button-pagination.active {
  background: #907b69;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.jb-ajax__pagination .navigation .previous-btn,
.jb-ajax__pagination .navigation .next-btn {
  list-style: none;
}
.jb-ajax__pagination .navigation .previous-btn svg,
.jb-ajax__pagination .navigation .next-btn svg {
  pointer-events: none;
}

.tease {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 3px 30px 5px rgba(22, 17, 15, 0);
          box-shadow: 0 3px 30px 5px rgba(22, 17, 15, 0);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.tease--team {
  -webkit-box-flex: 25%;
  -webkit-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
  height: 435px;
}
@media (max-width: 75em) {
  .tease--team {
    height: 300px;
  }
}
@media (max-width: 61.99em) {
  .tease--team {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 48%;
    height: 380px;
    padding-bottom: 20px;
  }
}
@media (max-width: 47.99em) {
  .tease--team {
    max-width: 47.5%;
    height: 255px;
  }
}
.tease--team:hover, .tease--team:active, .tease--team.nice-select.open, .tease--team:focus {
  cursor: pointer;
}
.tease--team:hover img, .tease--team:active img, .tease--team.nice-select.open img, .tease--team:focus img {
  scale: 1.1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.tease--team__thumbnail {
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 47.99em) {
  .tease--team__thumbnail {
    min-height: 174px;
  }
}
.tease--team__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.tease--team__details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.tease--team__details .name {
  text-transform: uppercase;
}
.tease--team__details .position {
  font-size: 14px;
}
.tease--team__details .linkedin {
  font-size: 28px;
}
@media (max-width: 47.99em) {
  .tease--team__details .linkedin {
    display: none;
  }
}
.tease--team__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 25px;
  top: -25px;
}
.tease--team__close:hover, .tease--team__close:active, .tease--team__close.nice-select.open, .tease--team__close:focus {
  cursor: pointer;
}
@media (max-width: 61.99em) {
  .tease--team__close {
    right: 16px;
    top: 25px;
    width: 34px;
    height: auto;
  }
}
@media (max-width: 47.99em) {
  .tease--team__close {
    top: 10px;
  }
}
.tease--team__popup {
  position: fixed;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  background: #ffffff;
  max-height: 560px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  z-index: 102;
}
@media (min-width: 100em) {
  .tease--team__popup {
    width: 996px;
  }
}
@media (max-width: 61.99em) {
  .tease--team__popup {
    width: 85%;
    max-height: 800px;
    border-radius: 10px;
    overflow: hidden;
  }
}
@media (max-width: 47.99em) {
  .tease--team__popup {
    max-height: 530px;
    border-radius: 8px;
  }
}
.tease--team__popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.tease--team__popup__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  height: 100%;
}
@media (max-width: 61.99em) {
  .tease--team__popup__inner {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tease--team__popup .linkedin-mobile {
  display: none;
}
.tease--team__popup .linkedin-mobile .icon-linkedin::before {
  font-size: 34px;
}
@media (max-width: 47.99em) {
  .tease--team__popup .linkedin-mobile {
    display: block;
    position: absolute;
    top: 32%;
    left: 16px;
  }
}
.tease--team__popup__image {
  -webkit-box-flex: 40%;
  -webkit-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
  max-width: 40%;
}
@media (max-width: 61.99em) {
  .tease--team__popup__image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
    max-height: 400px;
  }
}
@media (max-width: 47.99em) {
  .tease--team__popup__image {
    max-height: 225px;
  }
}
.tease--team__popup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tease--team__popup__text {
  -webkit-box-flex: 60%;
  -webkit-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  max-width: 60%;
  padding: 56px 0;
  padding-right: 46px;
  padding-left: 40px;
}
@media (max-width: 61.99em) {
  .tease--team__popup__text {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
    padding: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 90%;
  }
}
.tease--team__popup__text .popup-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 60px;
}
@media (max-width: 61.99em) {
  .tease--team__popup__text .popup-heading {
    padding-right: 0;
  }
}
.tease--team__popup__text .popup-heading .linkedin-desktop {
  padding-top: 6px;
}
@media (max-width: 61.99em) {
  .tease--team__popup__text .popup-heading .linkedin-desktop {
    display: none;
  }
}
.tease--team__popup__text .popup-heading .linkedin-desktop .icon-linkedin::before {
  font-size: 28px;
}
.tease--team__popup__text .name {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.tease--team__popup__text .position {
  font-size: 14px;
}
.tease--team__popup__text .content {
  max-height: 70%;
  overflow: auto;
  margin-top: 30px;
  padding-right: 60px;
}
.tease--team__popup__text .content::-webkit-scrollbar {
  width: 2px;
}
.tease--team__popup__text .content::-webkit-scrollbar-track {
  background: #ddd4c4;
}
.tease--team__popup__text .content::-webkit-scrollbar-thumb {
  background: #484a55;
}
.tease--team__popup__text .content::-webkit-scrollbar-thumb:hover {
  background: #414350;
}
@media (max-width: 61.99em) {
  .tease--team__popup__text .content {
    max-height: 220px;
    margin-top: 24px;
    padding-right: 16px;
  }
}
@media (max-width: 47.99em) {
  .tease--team__popup__text .content {
    max-height: 150px;
  }
}

.tease--card-default {
  width: 302px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 61.9375em) and (max-width: 90em) {
  .tease--card-default {
    height: 26.88vw;
  }
}
@media (max-width: 47.99em) {
  .tease--card-default {
    width: 265px;
    height: 330px;
  }
}
.tease--card-default__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.tease--card-default__inner:hover::before {
  opacity: 0.5;
  -webkit-transition: 600ms;
  transition: 600ms;
  z-index: 1;
}
.tease--card-default__inner:hover .background img {
  scale: 1.1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.tease--card-default__inner:hover .detail .title {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.tease--card-default__inner:hover .detail .location {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.tease--card-default__inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #16110f;
  opacity: 0.2;
  z-index: 1;
  position: absolute;
  top: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.tease--card-default__inner .background {
  width: 100%;
  height: 100%;
}
.tease--card-default__inner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.tease--card-default__inner .detail {
  position: absolute;
  bottom: 40px;
  padding-left: 24px;
  width: 90%;
  z-index: 2;
}
@media (max-width: 47.99em) {
  .tease--card-default__inner .detail {
    width: 92%;
    bottom: 30px;
  }
}
.tease--card-default__inner .detail .title {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination .tease--card-default__inner .detail .title {
  font-size: 26px;
}
.tease--card-default__inner .detail .location {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.tease--card-default__inner .detail .location .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tease--card-default__inner .detail .location .icon svg path {
  stroke: #ffffff;
}

.tease--post__item {
  -webkit-box-flex: 33.333%;
  -webkit-flex: 33.333%;
      -ms-flex: 33.333%;
          flex: 33.333%;
  max-width: 32%;
  margin-bottom: 40px;
}
@media (min-width: 75em) and (max-width: 85em) {
  .tease--post__item {
    max-width: 27.5vw;
  }
}
.tease--post__item:hover .item-background img, .tease--post__item:active .item-background img, .tease--post__item.nice-select.open .item-background img, .tease--post__item:focus .item-background img {
  scale: 1.2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tease--post__item .item-inner-wrap {
  position: relative;
}
.tease--post__item .item-label {
  position: absolute;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #907b69;
  border-radius: 300px;
  font-size: 12px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 20px;
  margin-top: 20px;
  z-index: 1;
}
.tease--post__item .item-background {
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}
.tease--post__item .item-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.tease--post__item .item-details {
  margin-top: 18px;
}
.tease--post__item .item-details .date-post {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #797979;
}
@media (max-width: 47.99em) {
  .tease--post__item .item-details .date-post {
    margin-bottom: 8px;
  }
}
.tease--post__item .item-details .title-post {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #30343d;
  width: 94%;
}
@media (max-width: 47.99em) {
  .tease--post__item .item-details .title-post {
    font-size: 18px;
  }
}
.tease--post__item .item-details .excerpt-post {
  font-size: 14px;
  margin-top: 24px;
}
@media (max-width: 47.99em) {
  .tease--post__item .item-details .excerpt-post {
    font-weight: 300;
    margin-top: 18px;
  }
}

.tease--yacht {
  background-color: #ddd4c4;
}
.tease--yacht__item {
  border-radius: 16px;
  overflow: hidden;
  width: 410px;
  height: 500px;
  background: #ffffff;
}
@media (max-width: 75em) {
  .tease--yacht__item {
    width: 340px;
    height: 400px;
    border-radius: 10px;
  }
}
@media (max-width: 47.99em) {
  .tease--yacht__item {
    width: 285px;
    height: 415px;
    border-radius: 8px;
  }
}
.tease--yacht__item:hover .item-background img, .tease--yacht__item:active .item-background img, .tease--yacht__item.nice-select.open .item-background img, .tease--yacht__item:focus .item-background img {
  scale: 1.2;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.tease--yacht__item .item-inner-wrap {
  width: 100%;
  height: 100%;
}
.tease--yacht__item .item-inner-wrap .item-label {
  position: absolute;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #907b69;
  border-radius: 300px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 20px;
  margin-top: 20px;
  z-index: 1;
}
@media (max-width: 75em) {
  .tease--yacht__item .item-inner-wrap .item-label {
    padding: 8px 20px;
  }
}
.tease--yacht__item .item-inner-wrap .item-background {
  max-height: 320px;
  height: 320px;
  overflow: hidden;
}
@media (max-width: 75em) {
  .tease--yacht__item .item-inner-wrap .item-background {
    height: 230px;
  }
}
@media (max-width: 47.99em) {
  .tease--yacht__item .item-inner-wrap .item-background {
    max-height: 260px;
    height: 225px;
  }
}
.tease--yacht__item .item-inner-wrap .item-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
}
.tease--yacht__item .item-inner-wrap .item-details {
  padding: 20px 30px 40px;
}
@media (max-width: 47.99em) {
  .tease--yacht__item .item-inner-wrap .item-details {
    padding: 24px;
  }
}
.tease--yacht__item .item-inner-wrap .item-details .location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .tease--yacht__item .item-inner-wrap .item-details .location {
    margin-bottom: 20px;
  }
}
.tease--yacht__item .item-inner-wrap .item-details .location.truncated {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tease--yacht__item .item-inner-wrap .item-details .location.full-width {
  display: none;
}
.tease--yacht__item .item-inner-wrap .item-details .location .text {
  font-size: 14px;
  color: #a69582;
  font-weight: 300;
}
.tease--yacht__item .item-inner-wrap .item-details .name {
  font-size: 22px;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 47.99em) {
  .tease--yacht__item .item-inner-wrap .item-details .name {
    margin-bottom: 0;
  }
}
.tease--yacht__item .item-inner-wrap .item-details .yacht-details span {
  font-size: 14px;
  color: #484a55;
  position: relative;
  margin-right: 12px;
}
.tease--yacht__item .item-inner-wrap .item-details .yacht-details span:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  top: 50%;
  margin: 0px 6px;
  background-color: #484a55;
}

.gallery {
  padding: 20px 0;
  clear: both;
}
.gallery__item {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media (min-width: 36em) {
  .gallery__item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.gallery__item__caption {
  margin: 0 !important;
  position: absolute;
  left: 5px;
  bottom: 0;
  right: 5px;
  padding: 10px;
  background-color: rgba(22, 17, 15, 0.4);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 36em) {
  .gallery__item__caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}
@media (min-width: 36em) {
  .gallery__item:hover, .gallery__item:active, .gallery__item.nice-select.open, .gallery__item:focus {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
}

.text-intro {
  position: relative;
  padding-bottom: 260px;
}
@media (max-width: 75em) {
  .text-intro {
    padding-bottom: 160px;
  }
}
@media (max-width: 61.99em) {
  .text-intro {
    padding-bottom: 160px;
  }
}
@media (max-width: 47.99em) {
  .text-intro {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 120px;
  }
}
.text-intro__pattern {
  position: absolute;
  width: 60vw;
  top: -55%;
  left: -20%;
}
@media (min-width: 100em) {
  .text-intro__pattern {
    width: 40vw;
    top: -30%;
    left: -16%;
  }
}
@media (max-width: 85em) {
  .text-intro__pattern {
    top: -45%;
  }
}
@media (max-width: 75em) {
  .text-intro__pattern {
    top: -35%;
  }
}
@media (max-width: 61.99em) {
  .text-intro__pattern {
    width: 85vw;
    top: -10%;
    left: 0%;
  }
}
@media (max-width: 47.99em) {
  .text-intro__pattern {
    top: -54px;
    left: -120px;
    width: 120vw;
    position: relative;
  }
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .text-intro__content .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .text-intro__content .row .col {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}
.text-intro__text {
  width: 100%;
}
@media (min-width: 100em) {
  .text-intro__text {
    width: 100%;
  }
}
@media (max-width: 61.99em) {
  .text-intro__text {
    margin-top: 80%;
  }
}
@media (max-width: 47.99em) {
  .text-intro__text {
    margin-top: -50%;
  }
}
.text-intro__text .text-title {
  margin-bottom: 40px;
}
@media (max-width: 61.99em) {
  .text-intro__text .text-title {
    width: 70%;
    margin-bottom: 40px;
  }
}
.text-intro__text .description p {
  margin-bottom: 30px;
}
.text-intro__text .description p:last-child {
  margin-bottom: 18px;
}
@media (max-width: 61.99em) {
  .text-intro__text .description p {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
@media (max-width: 47.99em) {
  .text-intro__text .description p {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.text-intro__text .statistics {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #a69582;
}
@media (max-width: 61.99em) {
  .text-intro__text .statistics {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 45px;
    row-gap: 24px;
    margin-top: 64px;
  }
}
.text-intro__text .statistics__value {
  font-size: 82px;
  line-height: 90%;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 47.99em) {
  .text-intro__text .statistics__value {
    font-size: 74px;
  }
}
.text-intro__text .statistics__title {
  font-size: 14px;
  color: #907b69;
  text-transform: uppercase;
}

.video {
  padding: 0;
  height: 100%;
  position: relative;
}
@media (min-width: 93.75em) {
  .video {
    height: 780px;
  }
}
.video.bottom-gradient::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: -5px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #30343d), color-stop(87.06%, rgba(48, 52, 61, 0)));
  background: linear-gradient(0deg, #30343d 20%, rgba(48, 52, 61, 0) 87.06%);
}
.video__overlay {
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.video-module-src {
  width: 100%;
  height: 800px;
  object-fit: cover !important;
}
@media (max-width: 90em) {
  .video__wrapper {
/*     height: 720px; */
    overflow: hidden;
	  height: auto;
  }
  .video-module-src {
    width: 100%;
    height: 800px;
  }
}
@media (max-width: 75em) {
  .video__wrapper {
    height: auto;
  }
  .video-module-src {
    width: 100%;
    height: 620px;
  }
}
@media (max-width: 47.99em) {
  .video-module-src {
    width: 100%;
    height: 520px;
  }
  .video__wrapper {
    height: 520px;
  }
  .video__wrapper .plyr {
    height: 100%;
  }
  .video__wrapper .plyr iframe {
    scale: 3.3;
  }
}
.video__wrapper .plyr__controls {
  opacity: 0;
  visibility: hidden;
}

.moving-text {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ddd4c4;
  padding-bottom: 0px;
}
.moving-text__wrapper {
  max-width: 100%;
  overflow: hidden;
}
.moving-text .marquee {
  white-space: nowrap;
  overflow: unset;
  display: inline-block;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
}
.moving-text .marquee p {
  opacity: 0.3;
  color: #907b69;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 40px;
}
@media (max-width: 47.99em) {
  .moving-text .marquee p {
    font-size: 74px;
    padding-left: 20px;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
.accordion {
  position: relative;
  padding: 60px 0 80px;
  background-color: #ddd4c4;
}
.accordion__wrapper {
  height: auto;
}
.accordion__wrapper .row {
  height: 100%;
}
.accordion__wrapper .accordion-items {
  padding-left: 20%;
}
@media (max-width: 61.99em) {
  .accordion__wrapper .accordion-items {
    padding-left: 0;
    margin-top: 30px;
  }
}
.accordion__wrapper .accordion-items__title {
  margin-bottom: 64px;
}
.accordion__wrapper .accordion-items__wrapper {
  padding: 30px 0;
  border-top: 1px solid #d1c5b4;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.accordion__wrapper .accordion-items__wrapper:last-child {
  border-bottom: 1px solid #d1c5b4;
}
.accordion__wrapper .accordion-items__wrapper.active span.plus-icon .inner {
  background-color: #907b69 !important;
}
.accordion__wrapper .accordion-items__wrapper.active span.plus-icon .inner::before {
  opacity: 0;
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.accordion__wrapper .accordion-items__wrapper.active .accordion__title {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.accordion__wrapper .accordion-items__wrapper h3 {
  margin-bottom: 0;
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  color: #30343d;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper h3 .accordion__title {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title:hover {
  text-decoration: none;
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title .title-text {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  pointer-events: none;
  pointer-events: none;
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper h3 .accordion__title .title-text {
    font-size: 28px;
  }
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title .plus-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper h3 .accordion__title .plus-icon {
    height: 20px;
  }
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title .plus-icon .inner {
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  top: 50%;
}
.accordion__wrapper .accordion-items__wrapper h3 .accordion__title .plus-icon .inner::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 600ms;
  transition: 600ms;
}
@media (min-width: 62em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content {
    padding-top: 20px;
  }
}
.accordion__wrapper .accordion-items__wrapper .accordion__content p {
  padding: 0px 0 8px 0;
  width: 95%;
  font-size: 18px;
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content p {
    font-size: 16px;
    width: 100%;
    padding: 0 0 12px 0;
  }
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content p:first-child {
    padding-top: 12px;
  }
}
.accordion__wrapper .accordion-items__wrapper .accordion__content p:last-of-type {
  font-size: 16px;
}
@media (max-width: 61.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content p:last-of-type {
    font-size: 14px;
    padding-bottom: 34px;
  }
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content p:last-of-type {
    padding-bottom: 22px;
  }
}
.accordion__wrapper .accordion-items__wrapper .accordion__content ul {
  padding-left: 20px;
  padding-top: 10px;
  font-size: 18px;
  color: #30343d;
}
.accordion__wrapper .accordion-items__wrapper .accordion__content ul li {
  padding-bottom: 8px;
}
@media (min-width: 62em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content .button-cta {
    padding-top: 20px;
  }
}
.accordion__wrapper .accordion-items__wrapper .accordion__content .button-cta a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 61.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content .button-cta a {
    margin-top: 0px;
  }
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-items__wrapper .accordion__content .button-cta a {
    font-size: 14px;
    font-weight: 300;
  }
}
.accordion__wrapper .accordion-image {
  min-height: 650px;
  max-height: 650px;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
@media (max-width: 76.25em) {
  .accordion__wrapper .accordion-image {
    max-height: 650px;
  }
}
@media (max-width: 61.99em) {
  .accordion__wrapper .accordion-image {
    min-height: 450px;
  }
}
@media (max-width: 47.99em) {
  .accordion__wrapper .accordion-image {
    min-height: 310px;
    border-radius: 8px;
  }
}
.accordion__wrapper .accordion-image .image-default {
  height: 100%;
  width: 100%;
  position: absolute;
}
.accordion__wrapper .accordion-image .image-list {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.accordion__wrapper .accordion-image .image-list.active {
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.accordion__wrapper .accordion-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.yacht-list-grid {
  background-color: #ddd4c4;
  overflow: hidden;
}
.yacht-list-grid__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
@media (max-width: 61.99em) {
  .yacht-list-grid__heading {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.yacht-list-grid__heading .title-wrap {
  width: 50%;
}
@media (max-width: 75em) {
  .yacht-list-grid__heading .title-wrap {
    width: 65%;
  }
}
@media (max-width: 61.99em) {
  .yacht-list-grid__heading .title-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.yacht-list-grid__heading .title-wrap .subtitle {
  color: #414350;
}
@media (max-width: 61.99em) {
  .yacht-list-grid__heading .title-wrap .subtitle {
    margin-top: 0px;
  }
}
.yacht-list-grid__contents {
  position: relative;
}
.yacht-list-grid__contents .tease--yacht__item {
  height: auto;
}
@media (min-width: 62em) and (max-width: 75em) {
  .yacht-list-grid__contents .tease--yacht__item {
    width: 318px;
  }
}
.yacht-list-grid__contents .tease--yacht__item .item-inner-wrap .item-details {
  padding-bottom: 30px;
}
@media (min-width: 62em) {
  .yacht-list-grid__contents .tease--yacht__item .location.truncated {
    display: none !important;
  }
}
@media (min-width: 62em) {
  .yacht-list-grid__contents .tease--yacht__item .location.full-width {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: 30px;
  }
  .yacht-list-grid__contents .tease--yacht__item .location.full-width svg {
    min-width: 20px;
  }
}
.yacht-list-grid__contents .swiper {
  overflow: unset;
}
.yacht-list-grid__contents .swiper .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 2px;
}
@media (min-width: 75em) {
  .yacht-list-grid__contents .swiper .swiper-pagination {
    display: none;
  }
}

.experience-carousel {
  background-color: #ddd4c4;
  position: relative;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .experience-carousel {
    padding-bottom: 120px;
  }
}
.experience-carousel__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
@media (max-width: 61.99em) {
  .experience-carousel__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.experience-carousel__heading .title-wrap {
  width: 60%;
}
@media (max-width: 61.99em) {
  .experience-carousel__heading .title-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.experience-carousel__heading .title-wrap .subtitle {
  color: #414350;
}
@media (max-width: 61.99em) {
  .experience-carousel__heading .title-wrap .subtitle {
    margin-top: 24px;
  }
}
.experience-carousel__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
.experience-carousel__items .card-item {
  width: 302px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
.experience-carousel__items .card-item__inner {
  width: 100%;
  height: 100%;
}
.experience-carousel__items .card-item__inner:hover::before {
  opacity: 0.5;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.experience-carousel__items .card-item__inner:hover .detail .title {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.experience-carousel__items .card-item__inner:hover .detail .location {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.experience-carousel__items .card-item__inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #16110f;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.experience-carousel__items .card-item__inner .background {
  width: 100%;
  height: 100%;
}
.experience-carousel__items .card-item__inner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience-carousel__items .card-item__inner .detail {
  position: absolute;
  bottom: 40px;
  padding-left: 24px;
  width: 90%;
}
.experience-carousel__items .card-item__inner .detail .title {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.experience-carousel__items .card-item__inner .detail .location {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.experience-carousel__items .card-item__inner .detail .location .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.experience-carousel__items .card-item__inner .detail .location .icon svg path {
  stroke: #ffffff;
}
.experience-carousel__contents {
  position: relative;
}
@media (max-width: 61.99em) {
  .experience-carousel__contents .swiper {
    overflow: unset;
  }
}
.experience-carousel__contents .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 2px;
}
@media (min-width: 62em) {
  .experience-carousel__contents .swiper-pagination {
    display: none;
  }
}
@media (max-width: 61.99em) {
  .experience-carousel__contents .swiper-button {
    display: none;
  }
}
.experience-carousel__contents .swiper-button .swiper-button-next.experience-carousel {
  position: absolute;
  right: -2%;
  bottom: 50%;
  z-index: 2;
  background: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (min-width: 62em) and (max-width: 75em) {
  .experience-carousel__contents .swiper-button .swiper-button-next.experience-carousel {
    right: -2.5%;
    bottom: 47%;
  }
}
.experience-carousel__contents .swiper-button .swiper-button-next.experience-carousel:hover {
  cursor: pointer;
}
.experience-carousel__contents .swiper-button .swiper-button-prev.experience-carousel {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  bottom: 50%;
  z-index: 2;
  left: -1.8%;
  background: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (min-width: 62em) and (max-width: 75em) {
  .experience-carousel__contents .swiper-button .swiper-button-prev.experience-carousel {
    left: -2.3%;
    bottom: 47%;
  }
}
.experience-carousel__contents .swiper-button .swiper-button-prev.experience-carousel:hover {
  cursor: pointer;
}
.experience-carousel__contents .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.experience-carousel__contents .swiper-button-disabled:hover() {
  cursor: default;
}

.our-values {
  background-color: #30343d;
  padding: 120px 0;
}
.our-values__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.our-values__background svg {
  width: 100%;
  scale: 1.5;
}
@media (max-width: 61.99em) {
  .our-values__background svg {
    scale: 6.5;
  }
}
.our-values__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media (max-width: 61.99em) {
  .our-values__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 47.99em) {
  .our-values__wrapper {
    gap: 56px;
  }
}
.our-values__heading {
  color: #d1c5b4;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 60%;
  -webkit-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  position: -webkit-sticky;
  position: sticky;
  top: 30vh;
}
@media (max-width: 61.99em) {
  .our-values__heading {
    position: relative;
    top: 0;
  }
}
.our-values__heading .small-title {
  color: #d1c5b4;
  margin-bottom: 0;
}
.our-values__heading .main-title {
  margin-top: 8px;
  margin-bottom: 22px;
}
@media (max-width: 75em) {
  .our-values__heading .main-title {
    margin-top: 0;
    margin-bottom: 12px;
  }
}
@media (max-width: 61.99em) {
  .our-values__heading .main-title {
    margin: 24px 0;
  }
}
.our-values__contents {
  -webkit-box-flex: 40%;
  -webkit-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
}
.our-values__contents .vlaue-list-item {
  color: #ffffff;
  margin-bottom: 80px;
}
.our-values__contents .vlaue-list-item:last-child {
  margin-bottom: 0;
}
.our-values__contents .vlaue-list-item:last-child .item-description {
  padding-bottom: 0;
}
@media (max-width: 61.99em) {
  .our-values__contents .vlaue-list-item {
    margin-bottom: 60px;
  }
}
.our-values__contents .vlaue-list-item .item-icon {
  height: 72px;
}
.our-values__contents .vlaue-list-item .item-icon svg {
  height: 100%;
}
.our-values__contents .vlaue-list-item .item-title {
  font-size: 26px;
  font-family: "Adobe Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 22px 0 18px;
}
@media (max-width: 75em) {
  .our-values__contents .vlaue-list-item .item-title {
    margin-bottom: 8px;
  }
}
@media (max-width: 61.99em) {
  .our-values__contents .vlaue-list-item .item-title {
    margin: 18px 0 14px;
  }
}
@media (max-width: 47.99em) {
  .our-values__contents .vlaue-list-item .item-title {
    margin: 18px 0 12px;
  }
}
.our-values__contents .vlaue-list-item .item-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 0px;
}
@media (max-width: 47.99em) {
  .our-values__contents .vlaue-list-item .item-description {
    font-size: 14px;
  }
}

.stories-carousel {
  background-color: #ddd4c4;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .stories-carousel {
    padding: 120px 0;
  }
}
.stories-carousel__heading {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 47.99em) {
  .stories-carousel__heading {
    margin-bottom: 64px;
  }
}
@media (max-width: 47.99em) {
  .stories-carousel__heading .small-title {
    margin-bottom: 16px;
  }
}
.stories-carousel__heading .subtitle {
  color: #414350;
}
.stories-carousel__heading .swiper-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 47.99em) {
  .stories-carousel__heading .swiper-button {
    display: none;
  }
}
.stories-carousel__heading .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.stories-carousel__heading .swiper-button .swiper-button-prev.stories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.stories-carousel__heading .swiper-button .swiper-button-prev.stories .icon-arrow-default {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.stories-carousel__heading .swiper-button .swiper-button-prev.stories,
.stories-carousel__heading .swiper-button .swiper-button-next.stories {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.stories-carousel__heading .swiper-button .swiper-button-prev.stories:hover, .stories-carousel__heading .swiper-button .swiper-button-prev.stories:active, .stories-carousel__heading .swiper-button .swiper-button-prev.stories.nice-select.open, .stories-carousel__heading .swiper-button .swiper-button-prev.stories:focus,
.stories-carousel__heading .swiper-button .swiper-button-next.stories:hover,
.stories-carousel__heading .swiper-button .swiper-button-next.stories:active,
.stories-carousel__heading .swiper-button .swiper-button-next.stories.nice-select.open,
.stories-carousel__heading .swiper-button .swiper-button-next.stories:focus {
  cursor: pointer;
}
.stories-carousel__heading .swiper-button .icon-arrow-default::before {
  font-size: 40px;
}
.stories-carousel__contents .mobile-first-child {
  margin-bottom: 40px;
}
.stories-carousel__contents .mobile-first-child .tease--post__item .item-label {
  background-color: #ffffff;
  color: #30343d;
}
@media (min-width: 48em) {
  .stories-carousel__contents .mobile-first-child {
    display: none;
  }
}
@media (max-width: 47.99em) {
  .stories-carousel__contents .swiper .stories-item__inner .post-excerpt {
    display: none;
  }
}
.stories-carousel__contents .swiper .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 2px;
}
@media (min-width: 75em) {
  .stories-carousel__contents .swiper .swiper-pagination {
    display: none;
  }
}
.stories-carousel__contents .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #907b69 !important;
}
.stories-carousel__contents--item {
  overflow: unset;
  min-height: 580px;
}
@media (max-width: 61.99em) {
  .stories-carousel__contents--item {
    min-height: unset;
  }
}
.stories-carousel__contents--item .stories-item {
  width: 404px;
  height: auto;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item {
    width: 265px;
  }
}
.stories-carousel__contents--item .stories-item-wrap {
  min-height: 580px;
}
@media (max-width: 61.99em) {
  .stories-carousel__contents--item .stories-item-wrap {
    min-height: unset;
  }
}
.stories-carousel__contents--item .stories-item:first-child {
  width: 738px;
  height: auto;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item:first-child {
    width: 265px;
    height: auto;
  }
}
.stories-carousel__contents--item .stories-item:first-child .stories-item__thumbnail {
  max-height: 420px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item:first-child .stories-item__thumbnail {
    max-height: 180px;
  }
}
.stories-carousel__contents--item .stories-item__inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.stories-carousel__contents--item .stories-item__inner:hover img, .stories-carousel__contents--item .stories-item__inner:active img, .stories-carousel__contents--item .stories-item__inner.nice-select.open img, .stories-carousel__contents--item .stories-item__inner:focus img {
  scale: 1.2;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.stories-carousel__contents--item .stories-item__label {
  position: absolute;
  padding: 8px 20px;
  background: #ffffff;
  color: #414350;
  border-radius: 300px;
  margin-left: 24px;
  margin-top: 24px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item__label {
    display: none;
  }
}
.stories-carousel__contents--item .stories-item__body {
  margin-top: 25px;
}
.stories-carousel__contents--item .stories-item__body .post-date {
  font-size: 12px;
  color: #797979;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item__body .post-date {
    margin-bottom: 8px;
  }
}
.stories-carousel__contents--item .stories-item__body .post-title {
  font-size: 20px;
  color: #30343d;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item__body .post-title {
    font-size: 18px;
  }
}
.stories-carousel__contents--item .stories-item__body .post-excerpt {
  font-size: 16px;
  color: #30343d;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item__body .post-excerpt {
    margin-top: 18px;
  }
}
.stories-carousel__contents--item .stories-item__thumbnail {
  max-height: 294px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .stories-carousel__contents--item .stories-item__thumbnail {
    max-height: 180px;
  }
}
.stories-carousel__contents--item .stories-item__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.partners-logo {
  padding: 80px 0;
}
.partners-logo__heading {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 47.99em) {
  .partners-logo__heading {
    margin-bottom: 64px;
  }
}
.partners-logo__heading .small-title {
  color: #30343d;
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .partners-logo__heading .small-title {
    margin-bottom: 24px;
  }
}
.partners-logo__contents {
  position: relative;
}
.partners-logo__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.partners-logo__items .logo-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners-logo .swiper-pagination {
  margin-top: 60px;
}
@media (max-width: 47.99em) {
  .partners-logo .swiper-pagination {
    margin-top: 40px;
  }
}

@media (max-width: 61.99em) {
  .testimonial {
    padding: 100px 0;
  }
}
@media (max-width: 47.99em) {
  .testimonial {
    padding: 120px 0 60px;
  }
}
.testimonial__heading {
  margin-bottom: 60px;
  text-align: center;
}
.testimonial__heading .small-title {
  color: #30343d;
  margin-bottom: 12px;
}
.testimonial__heading .main-title {
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .testimonial__heading .main-title {
    margin-bottom: 40px;
  }
}
.testimonial__contents {
  position: relative;
}
.testimonial__contents::before {
  content: "";
  position: absolute;
  width: 246px;
  height: 100%;
  background: linear-gradient(271deg, #fff 34.99%, rgba(255, 255, 255, 0) 164.17%);
  -webkit-transform: scale(-1);
          transform: scale(-1);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (max-width: 61.99em) {
  .testimonial__contents::before {
    width: 60px;
  }
}
@media (max-width: 47.99em) {
  .testimonial__contents::before {
    display: none;
  }
}
.testimonial__contents::after {
  content: "";
  position: absolute;
  width: 246px;
  height: 100%;
  background: linear-gradient(271deg, #fff 34.99%, rgba(255, 255, 255, 0) 164.17%);
  z-index: 2;
  top: 0;
  right: 0;
}
@media (max-width: 61.99em) {
  .testimonial__contents::after {
    width: 60px;
  }
}
@media (max-width: 47.99em) {
  .testimonial__contents::after {
    display: none;
  }
}
.testimonial__contents .testimonial-item {
  text-align: center;
}
.testimonial__contents .testimonial-item__value {
  font-size: 18px;
  color: #30343d;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .testimonial__contents .testimonial-item__value {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.testimonial__contents .testimonial-item__reviewer {
  color: #30343d;
}
.testimonial .swiper-pagination {
  margin-top: 22px;
}
@media (max-width: 47.99em) {
  .testimonial .swiper-pagination {
    margin-top: 24px;
  }
}

.text-image-intro {
  padding: 100px 0 160px;
  background: #30343d;
}
@media (max-width: 61.99em) {
  .text-image-intro {
    padding: 120px 0;
  }
}
@media (max-width: 47.99em) {
  .text-image-intro {
    padding: 80px 0;
  }
}
.text-image-intro__heading {
  color: #ffffff;
  width: 80%;
}
@media (max-width: 61.99em) {
  .text-image-intro__heading {
    width: 100%;
  }
}
.text-image-intro__heading .small-title {
  color: #ffffff;
  margin-bottom: 18px;
}
@media (max-width: 47.99em) {
  .text-image-intro__heading .small-title {
    margin-bottom: 8px;
  }
}
.text-image-intro__heading h2.title {
  color: #ffffff;
}
@media (max-width: 61.99em) {
  .text-image-intro__heading h2.title {
    font-size: 32px;
  }
}
.text-image-intro__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 61.99em) {
  .text-image-intro__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    margin-top: 24px;
  }
}
.text-image-intro__contents--text {
  -webkit-box-flex: 45%;
  -webkit-flex: 45%;
      -ms-flex: 45%;
          flex: 45%;
  max-width: 45%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.text-image-intro__contents--text p {
  color: #ffffff;
}
@media (max-width: 61.99em) {
  .text-image-intro__contents--text {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    gap: 12px;
  }
  .text-image-intro__contents--text p {
    font-weight: 100;
  }
}
.text-image-intro__contents--image {
  -webkit-box-flex: 55%;
  -webkit-flex: 55%;
      -ms-flex: 55%;
          flex: 55%;
  max-width: 55%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .text-image-intro__contents--image {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.text-image-intro__contents--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-listing {
  padding: 60px 0;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .team-listing {
    padding: 120px 0 100px;
  }
}
.team-listing .container {
  position: unset;
}
.team-listing__heading {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 61.99em) {
  .team-listing__heading {
    width: 100%;
    margin-bottom: 64px;
  }
}
.team-listing__highlight--wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  height: 816px;
}
@media (max-width: 61.99em) {
  .team-listing__highlight--wrapper {
    row-gap: 30px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.team-listing__highlight--image {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  position: relative;
}
@media (max-width: 61.99em) {
  .team-listing__highlight--image {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.team-listing__highlight--image .background {
  height: 90%;
  width: 90%;
  background: #ddd4c4;
  position: absolute;
  z-index: 0;
  bottom: 0%;
  border-radius: 8px;
}
@media (max-width: 75em) {
  .team-listing__highlight--image .background {
    height: 70%;
    bottom: 15%;
  }
}
@media (max-width: 61.99em) {
  .team-listing__highlight--image .background {
    height: 600px;
    width: 100%;
    top: 20px;
    left: -30px;
  }
}
@media (max-width: 47.99em) {
  .team-listing__highlight--image .background {
    height: 380px;
  }
}
.team-listing__highlight--image .thumbnail {
  height: 90%;
  width: 90%;
  position: absolute;
  right: 0%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 75em) {
  .team-listing__highlight--image .thumbnail {
    height: 70%;
    top: 10%;
  }
}
@media (max-width: 61.99em) {
  .team-listing__highlight--image .thumbnail {
    height: 600px;
    width: 100%;
    position: relative;
  }
}
@media (max-width: 47.99em) {
  .team-listing__highlight--image .thumbnail {
    height: 380px;
  }
}
.team-listing__highlight--image .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-listing__highlight--text {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
.team-listing__highlight--text .description p {
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .team-listing__highlight--text .description p {
    margin-bottom: 18px;
  }
}
.team-listing__highlight--text .description p strong {
  font-weight: 300;
  font-size: 20px;
}
@media (max-width: 47.99em) {
  .team-listing__highlight--text .description p strong {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 61.99em) {
  .team-listing__highlight--text {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    gap: 32px;
    padding-top: 48px;
  }
  .team-listing__highlight--text p {
    margin-bottom: 16px;
  }
}
.team-listing__highlight--text .contact__name {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 61.99em) {
  .team-listing__highlight--text .contact__name {
    margin-bottom: 14px;
  }
}
@media (max-width: 47.99em) {
  .team-listing__highlight--text .contact__name {
    margin-bottom: 12px;
  }
}
.team-listing__highlight--text .contact__linkedin {
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #907b69;
}
.team-listing__teams {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 61.99em) {
  .team-listing__teams {
    gap: 16px;
    margin-top: 64px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.team-listing .popup-overlay {
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 100;
  width: 100vw;
  height: 110vh;
  background: black;
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  visibility: hidden;
}
.team-listing .popup-overlay.active {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.text-image-multiple {
  padding: 100px 0 60px;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .text-image-multiple {
    padding: 60px 0 160px;
  }
}
@media (max-width: 47.99em) {
  .text-image-multiple {
    padding: 60px 0 120px;
  }
}
.text-image-multiple__heading {
  text-align: center;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 61.99em) {
  .text-image-multiple__heading {
    width: 100%;
    margin: 0;
    margin-bottom: 64px;
  }
}
.text-image-multiple__heading h2.title {
  margin-bottom: 0;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .text-image-multiple__heading h2.title {
    font-size: 32px;
  }
}
.text-image-multiple__heading .subtitle {
  color: #30343d;
  margin-top: 40px;
}
@media (max-width: 61.99em) {
  .text-image-multiple__heading .subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 47.99em) {
  .text-image-multiple__heading .subtitle {
    margin-top: 20px;
  }
}
.text-image-multiple__contents--item {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.text-image-multiple__contents--item:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 61.99em) {
  .text-image-multiple__contents--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }
  .text-image-multiple__contents--item:not(:last-child) {
    margin-bottom: 64px;
  }
}
.text-image-multiple__contents--item.image-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 61.99em) {
  .text-image-multiple__contents--item.image-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.text-image-multiple__contents--item .item__image {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 60%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .text-image-multiple__contents--item .item__image {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.text-image-multiple__contents--item .item__text {
  -webkit-box-flex: 40%;
  -webkit-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
  max-width: 40%;
  height: auto;
  margin: auto 0;
}
@media (max-width: 61.99em) {
  .text-image-multiple__contents--item .item__text {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.text-image-multiple__contents--item .item__text h3 {
  color: #907b69;
  font-family: "Adobe Garamond", Georgia, serif;
  margin-bottom: 12px;
  width: 80%;
}
@media (max-width: 61.99em) {
  .text-image-multiple__contents--item .item__text h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 47.99em) {
  .text-image-multiple__contents--item .item__text h3 {
    margin-bottom: 4px;
    width: 100%;
  }
}
.text-image-multiple__contents--item .item__text--description {
  font-weight: 300;
}
@media (max-width: 47.99em) {
  .text-image-multiple__contents--item .item__text--description {
    font-size: 14px;
  }
}

.text-two-image {
  background: #ddd4c4;
  padding: 110px 0 160px;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .text-two-image {
    padding: 120px 0;
  }
}
.text-two-image .moving-text {
  position: absolute;
  top: 50px;
  z-index: 3;
  background: transparent;
}
@media (max-width: 61.99em) {
  .text-two-image .moving-text {
    top: 90px;
  }
}
.text-two-image__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.text-two-image__background svg {
  width: 100%;
  scale: 1.5;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .text-two-image__background svg {
    scale: 4;
  }
}
.text-two-image__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media (max-width: 75em) {
  .text-two-image__wrapper {
    gap: 20px;
  }
}
@media (max-width: 61.99em) {
  .text-two-image__wrapper {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: auto;
  }
}
.text-two-image__text {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
}
@media (max-width: 61.99em) {
  .text-two-image__text {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.text-two-image__text--heading {
  width: 65%;
  margin-top: 16%;
  margin-left: 16%;
  margin-bottom: 120px;
}
@media (max-width: 61.99em) {
  .text-two-image__text--heading {
    width: 100%;
    margin-top: 48px;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.text-two-image__text--heading h3 {
  margin-bottom: 8px;
}
@media (max-width: 61.99em) {
  .text-two-image__text--heading h3 {
    margin-bottom: 24px;
  }
}
@media (max-width: 47.99em) {
  .text-two-image__text--heading .description p {
    font-size: 18px;
  }
}
.text-two-image__text--heading .description p:first-child {
  font-size: 20px;
}
@media (max-width: 47.99em) {
  .text-two-image__text--heading .description p:first-child {
    font-size: 18px;
  }
}
.text-two-image__text--heading .description p:not(:last-child) {
  margin-bottom: 22px;
}
@media (max-width: 61.99em) {
  .text-two-image__text--heading .description p:not(:last-child) {
    margin-bottom: 24px;
  }
}
.text-two-image__image {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .text-two-image__image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
  }
}
.text-two-image__image.first {
  max-height: 700px;
  max-width: 40%;
}
@media (max-width: 75em) {
  .text-two-image__image.first {
    max-width: 100%;
    height: 500px;
  }
}
@media (max-width: 61.99em) {
  .text-two-image__image.first {
    height: 380px;
  }
}
.text-two-image__image.second {
  max-height: 400px;
  max-width: 100%;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .text-two-image__image.second {
    max-width: 320px;
    max-width: 60%;
  }
}
.text-two-image__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-showcase {
  background-color: #30343d;
}
@media (max-width: 61.99em) {
  .services-showcase {
    padding: 120px 0;
  }
}
@media (max-width: 47.99em) {
  .services-showcase {
    padding: 80px 0;
  }
}
.services-showcase__heading {
  color: #ffffff;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 61.99em) {
  .services-showcase__heading {
    margin-bottom: 80px;
  }
}
.services-showcase__heading .small-title {
  color: #ffffff;
  margin-bottom: 18px;
}
.services-showcase__heading h3 {
  color: #ffffff;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 61.99em) {
  .services-showcase__heading h3 {
    width: 100%;
    margin: 0;
  }
}
.services-showcase__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 61.99em) {
  .services-showcase__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.services-showcase__contents--text {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 38%;
  margin: 0;
}
@media (max-width: 61.99em) {
  .services-showcase__contents--text {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
  }
}
.services-showcase__contents--text__inner {
  height: auto;
  background-color: #30343d;
}
.services-showcase__contents--text .text-item {
  height: auto;
}
.services-showcase__contents--text .text-item h3,
.services-showcase__contents--text .text-item p {
  color: #ffffff;
}
.services-showcase__contents--text .text-item h3 {
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .services-showcase__contents--text .text-item p {
    font-size: 14px;
    font-weight: 300;
  }
}
.services-showcase__contents--text .text-item.swiper-slide {
  opacity: 0 !important;
}
.services-showcase__contents--text .text-item.swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
  z-index: 2 !important;
}
.services-showcase__contents--text .text-item.swiper-slide.swiper-slide-prev, .services-showcase__contents--text .text-item.swiper-slide.swiper-slide-next {
  opacity: 0 !important;
}
.services-showcase__contents--text .swiper-counter-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .services-showcase__contents--text .swiper-counter-wrapper {
    margin-bottom: 20px;
  }
}
.services-showcase__contents--text .swiper-counter.service-show {
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 300;
}
.services-showcase__contents--text .swiper-counter.service-show span:first-child {
  color: #ddc434;
}
.services-showcase__contents--text .swiper-counter.service-show span:not(:last-child) {
  margin-right: 16px;
}
@media (max-width: 61.99em) {
  .services-showcase__contents--text .swiper-counter.service-show {
    margin-bottom: 0;
  }
}
.services-showcase__contents--text .swiper-button-mobile {
  display: none;
}
@media (max-width: 61.99em) {
  .services-showcase__contents--text .swiper-button-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0px;
  }
}
.services-showcase__contents--text .swiper-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 60px;
}
@media (max-width: 61.99em) {
  .services-showcase__contents--text .swiper-button {
    display: none;
  }
}
.services-showcase__contents--text .swiper-button-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.services-showcase__contents--text .swiper-button-prev:hover, .services-showcase__contents--text .swiper-button-prev:active, .services-showcase__contents--text .swiper-button-prev.nice-select.open, .services-showcase__contents--text .swiper-button-prev:focus, .services-showcase__contents--text .swiper-button-next:hover, .services-showcase__contents--text .swiper-button-next:active, .services-showcase__contents--text .swiper-button-next.nice-select.open, .services-showcase__contents--text .swiper-button-next:focus {
  cursor: pointer;
}
.services-showcase__contents--text .swiper-button-disabled {
  opacity: 0.5;
  cursor: none;
}
.services-showcase__contents--text .swiper-pagination.service-show {
  display: none;
}
.services-showcase__contents--image {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  max-height: 680px;
  height: 680px;
  margin: 0;
}
@media (max-width: 61.99em) {
  .services-showcase__contents--image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
    height: 450px;
  }
}
@media (max-width: 47.99em) {
  .services-showcase__contents--image {
    height: 380px;
  }
}
.services-showcase__contents--image .image-item {
  border-radius: 8px;
  overflow: hidden;
}
.services-showcase__contents--image .image-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-with-us {
  padding: 160px 0px 80px;
}
@media (max-width: 61.99em) {
  .work-with-us {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.work-with-us__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.work-with-us__wrapper__text {
  max-width: 1034px;
  width: 100%;
}
.work-with-us__wrapper__text .title {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 80px;
}
@media (max-width: 61.99em) {
  .work-with-us__wrapper__text .title {
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
@media (max-width: 47.99em) {
  .work-with-us__wrapper__text .title {
    margin-top: 0;
  }
}
.work-with-us__wrapper__text .small-title {
  text-align: center;
}
.work-with-us__wrapper__content {
  max-width: 1280px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media (max-width: 61.99em) {
  .work-with-us__wrapper__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
.work-with-us__wrapper__content .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 61.99em) {
  .work-with-us__wrapper__content .content {
    gap: 24px;
  }
}
@media (max-width: 47.99em) {
  .work-with-us__wrapper__content .content {
    gap: 4px;
  }
}
.work-with-us__wrapper__content .content__image img {
  border-radius: 8px;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 47.99em) {
  .work-with-us__wrapper__content .content__image img {
    height: 250px;
  }
}
.work-with-us__wrapper__content .content__title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 47.99em) {
  .work-with-us__wrapper__content .content__title {
    margin-top: 20px;
  }
}
.work-with-us__wrapper__content .content__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 61.99em) {
  .work-with-us__wrapper__content .content__text {
    gap: 32px;
  }
}
.work-with-us__wrapper__content .content__text--subtitle {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 552px;
}
@media (max-width: 47.99em) {
  .work-with-us__wrapper__content .content__text--subtitle {
    font-size: 14px;
  }
}

.jb-faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 61.99em) {
  .jb-faq {
    padding: 80px 0 100px;
  }
}
@media (max-width: 47.99em) {
  .jb-faq {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.jb-faq__wrapper {
  padding: 80px 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 980px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d1c5b4;
  position: relative;
}
@media (max-width: 61.99em) {
  .jb-faq__wrapper {
    padding: 100px 30px 20px;
    margin: 0 48px;
    border-radius: 8px;
  }
}
@media (max-width: 47.99em) {
  .jb-faq__wrapper {
    padding: 48px 16px 20px;
    margin: 0 16px;
  }
}
.jb-faq__wrapper--headline {
  width: 100%;
}
.jb-faq__wrapper--headline .small-title {
  text-align: center;
  margin-bottom: 18px;
  color: #30343d;
}
@media (max-width: 61.99em) {
  .jb-faq__wrapper--headline .small-title {
    margin-bottom: 12px;
  }
}
.jb-faq__wrapper--headline .title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 61.99em) {
  .jb-faq__wrapper--headline .title {
    margin-bottom: 40px;
    font-size: 36px;
  }
}
@media (max-width: 47.99em) {
  .jb-faq__wrapper--headline .title {
    margin-bottom: 34px;
    font-size: 26px;
  }
}
.jb-faq__image-left {
  position: absolute;
  top: 415px;
  left: -230px;
}
@media (max-width: 61.99em) {
  .jb-faq__image-left {
    display: none;
  }
}
.jb-faq__image-left img {
  width: 297px;
  height: 394px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.jb-faq__image-right {
  position: absolute;
  top: 135px;
  right: -230px;
}
@media (max-width: 61.99em) {
  .jb-faq__image-right {
    display: none;
  }
}
.jb-faq__image-right img {
  width: 297px;
  height: 338px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.faq {
  max-width: 1053px;
  width: 100%;
  margin-left: auto;
  padding: 0 20px;
}
@media (max-width: 61.99em) {
  .faq {
    max-width: unset;
  }
}
.faq__title {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.faq__item {
  position: relative;
}
.faq__item:before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (min-width: 62em) {
  .faq__item:before {
    border-radius: 18px;
  }
}
.faq__item:focus-within:before {
  opacity: 1;
}
@media (max-width: 61.99em) {
  .faq__item {
    margin: 8px 0px;
    border-radius: 8px;
  }
}
.faq__item.js-active .inner {
  background-color: #907b69 !important;
}
.faq__item.js-active .inner::before {
  opacity: 0;
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.faq__trigger {
  width: 100%;
  position: relative;
  background: none;
  font-size: 24px;
  cursor: pointer;
  text-align: left;
  padding: 24px 0px 30px;
  padding-left: unset !important;
  padding-right: unset !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  border: unset;
  border-top: 1px solid #a69582;
}
.faq__trigger:hover, .faq__trigger:active, .faq__trigger.nice-select.open, .faq__trigger:focus {
  outline: none;
}
@media (max-width: 47.99em) {
  .faq__trigger {
    padding-bottom: 14px;
  }
}
.faq__title {
  display: inline-block;
  color: #30343d;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 988px;
  width: 100%;
}
@media (max-width: 47.99em) {
  .faq__title {
    font-size: 18px;
  }
}
.faq .plus-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.faq .plus-icon .inner {
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  top: 50%;
}
.faq .plus-icon .inner::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 600ms;
  transition: 600ms;
}
.faq__subheading {
  margin-bottom: 30px !important;
}
.js-active .faq__closed {
  opacity: 0;
  pointer-events: none;
}
.faq__panel {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: height 0.3s ease-out, opacity 0.15s ease-out;
  transition: height 0.3s ease-out, opacity 0.15s ease-out;
}
.faq__panel-inner {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.faq__panel-inner .text p {
  color: #414350;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 18px;
}
.faq__panel-inner .text p:last-child {
  margin-bottom: unset;
}
@media (max-width: 61.99em) {
  .faq__panel-inner .text p {
    font-size: 14px;
  }
}
.faq__panel-inner a {
  font-size: 24px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 160%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__panel-inner a .plus-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.faq__panel-inner a .plus-icon .inner {
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  top: 50%;
}
.faq__panel-inner a .plus-icon .inner::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #30343d;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 600ms;
  transition: 600ms;
}
.js-active .faq__panel {
  opacity: 1;
  pointer-events: auto;
  margin-bottom: 40px;
  -webkit-transition: height 0.3s ease-out, opacity 0.3s ease-out 0.2s;
  transition: height 0.3s ease-out, opacity 0.3s ease-out 0.2s;
}

.luxury-experience {
  padding: 100px 0px 160px;
}
@media (max-width: 61.99em) {
  .luxury-experience {
    padding: 80px 0 80px;
  }
}
.luxury-experience__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper {
    gap: 0;
  }
}
.luxury-experience__wrapper__heading .pretitle {
  margin-bottom: 32px;
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__heading .small-title {
    margin-bottom: 8px;
  }
}
.luxury-experience__wrapper__heading .title {
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 80px;
}
@media (max-width: 61.99em) {
  .luxury-experience__wrapper__heading .title {
    margin-bottom: 60px;
  }
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__heading .title {
    font-size: 32px;
    margin-bottom: 44px;
    margin-top: 0px;
  }
}
.luxury-experience__wrapper__heading .subtitle {
  color: #907b69;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__heading .subtitle {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.luxury-experience__wrapper__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 48em) and (max-width: 75em) {
  .luxury-experience__wrapper__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 75em) {
  .luxury-experience__wrapper__content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.luxury-experience__wrapper__content .card {
  -webkit-box-flex: 33.333%;
  -webkit-flex: 33.333%;
      -ms-flex: 33.333%;
          flex: 33.333%;
  padding: 50px;
  border-right: 1px solid #d1c5b4;
}
@media (max-width: 75em) {
  .luxury-experience__wrapper__content .card {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 500px;
    padding: 0;
    padding-bottom: 40px;
    padding-top: 40px;
    border-right: none;
    border-bottom: 1px solid #d1c5b4;
  }
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__content .card {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    border-bottom: 1px solid #d1c5b4;
  }
}
.luxury-experience__wrapper__content .card:first-child {
  padding-left: unset;
}
@media (max-width: 61.99em) {
  .luxury-experience__wrapper__content .card:first-child {
    padding-top: 0;
  }
}
.luxury-experience__wrapper__content .card:last-child {
  border: unset;
  padding-right: unset;
}
.luxury-experience__wrapper__content .card .image {
  margin-bottom: 30px;
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__content .card .image {
    margin-bottom: 20px;
  }
}
.luxury-experience__wrapper__content .card .image img {
  width: 70px;
  height: 70px;
}
.luxury-experience__wrapper__content .card .title {
  color: #30343d;
  margin-bottom: 18px;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .luxury-experience__wrapper__content .card .title {
    margin-bottom: 10px;
  }
}
.luxury-experience__wrapper__content .card .subtitle {
  color: #30343d;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

body.page-template-default .blog-content {
  margin-top: 120px;
}
@media (max-width: 47.99em) {
  body.page-template-default .blog-content {
    margin-top: 60px;
  }
}
body.page-template-default .blog-content__wrapper__text p,
body.page-template-default .blog-content__wrapper__text ul {
  margin-bottom: 40px;
}

.blog-content {
  padding: 80px 297px 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 61.99em) {
  .blog-content {
    padding: 80px 48px 100px;
    gap: 48px;
  }
}
@media (max-width: 47.99em) {
  .blog-content {
    padding: 44px 16px 40px;
  }
}
.blog-content__wrapper__excerpt {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.blog-content__wrapper__text h3 {
  margin-bottom: 0;
}
.blog-content__wrapper__text h4 {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-content__wrapper__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 60px;
}
.blog-content__wrapper__text p:last-child {
  margin-bottom: unset;
}
@media (max-width: 47.99em) {
  .blog-content__wrapper__text p {
    font-size: 14px;
  }
}
.blog-content__wrapper__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: -20px;
}
@media (max-width: 47.99em) {
  .blog-content__wrapper__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-content__wrapper__image .pics {
  width: 100%;
}
.blog-content__wrapper__image .pics img {
  width: 100%;
  aspect-ratio: 413/300;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.blog-content__wrapper .video__player {
  margin-top: -20px;
}
@media (max-width: 47.99em) {
  .blog-content__wrapper .video__player {
    margin-top: 0;
  }
}
.blog-content__wrapper .video__player iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: unset;
}

.stories-list {
  padding: 0px 80px 160px;
}
@media (max-width: 61.99em) {
  .stories-list {
    padding: 0px 48px 80px;
  }
}
@media (max-width: 47.99em) {
  .stories-list {
    padding: 0px 16px 120px;
  }
}
.stories-list__wrapper {
  padding-top: 80px;
  border-top: 1px solid #e2e2e2;
}
@media (max-width: 47.99em) {
  .stories-list__wrapper {
    border-top: none;
    padding-top: 40px;
  }
}
.stories-list__wrapper__headline {
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .stories-list__wrapper__headline {
    margin-bottom: 40px;
  }
}
.stories-list__wrapper__content.mobile {
  display: none;
}
@media (max-width: 61.99em) {
  .stories-list__wrapper__content.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}
.stories-list__wrapper__content.mobile .stories-card-mobile {
  padding: 0;
}
.stories-list__wrapper__content.mobile .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 0px;
  height: 2px;
}
@media (min-width: 62em) {
  .stories-list__wrapper__content.mobile .swiper-pagination {
    display: none;
  }
}
.stories-list__wrapper__content.mobile .button-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
  width: 100%;
}
@media (max-width: 47.99em) {
  .stories-list__wrapper__content.mobile .button-cta {
    margin-top: 26px;
  }
}
.stories-list__wrapper__content {
  gap: 24px;
}
@media (max-width: 61.99em) {
  .stories-list__wrapper__content {
    display: none;
  }
}
.stories-list__wrapper__content .stories-card {
  padding: 0;
  -webkit-box-flex: 31.333%;
  -webkit-flex: 31.333%;
      -ms-flex: 31.333%;
          flex: 31.333%;
}
.stories-list__wrapper__content .stories-card:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.stories-list__wrapper__content .stories-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.stories-list__wrapper__content .stories-card__image img {
  width: 100%;
  aspect-ratio: 203/130;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.stories-list__wrapper__content .stories-card__category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #907b69;
  padding: 10px 20px;
  color: white;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
}
.stories-list__wrapper__content .stories-card__date {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #797979;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.stories-list__wrapper__content .stories-card__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #30343d;
}

.event-detail {
  padding: 100px 0px 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 61.99em) {
  .event-detail {
    padding: 80px 0px;
  }
}
@media (max-width: 47.99em) {
  .event-detail {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
.event-detail__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 139px;
}
@media (max-width: 75em) {
  .event-detail__content {
    gap: 100px;
  }
}
@media (max-width: 61.99em) {
  .event-detail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 47.99em) {
  .event-detail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.event-detail__content__title .title {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
}
body.single-destination .event-detail__content__title .title {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 47.99em) {
  body.single-destination .event-detail__content__title .title {
    margin-bottom: 0;
  }
}
@media (max-width: 47.99em) {
  .event-detail__content__title .title {
    padding-bottom: 24px;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 132%;
  }
}
.event-detail__content__title .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.event-detail__content__title .price span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.event-detail__content__title .price .start-from {
  margin-left: 16px;
  margin-right: 6px;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  text-transform: uppercase;
}
.event-detail__content__description {
  max-width: 630px;
  width: 100%;
}
.event-detail__content__description .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 22px;
}
@media (max-width: 47.99em) {
  .event-detail__content__description .description {
    margin-bottom: 0;
  }
}
.event-detail__content__description .description p {
  margin-bottom: 18px;
}
.event-detail__content__description .description p:last-child {
  margin-bottom: unset;
}
.event-detail__content__description .button {
  margin-top: 24px;
}
@media (min-width: 62em) and (max-width: 75em) {
  .event-detail__content__description .button {
    margin-top: 32px;
  }
}
.event-detail__image {
  max-width: 1000px;
  width: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 47.99em) {
  .event-detail__image {
    margin-top: 48px;
  }
}
.event-detail__image img {
  max-width: 1064px;
  aspect-ratio: 133/75;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 47.99em) {
  .event-detail__image img {
    aspect-ratio: unset;
    height: 250px;
  }
}
.event-detail .video__player {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.event-detail .video__player iframe {
  margin: 0 auto;
  min-width: 820px;
  min-height: 460px;
}
@media (max-width: 61.99em) {
  .event-detail .video__player iframe {
    min-width: 100%;
    min-height: 400px;
  }
}
@media (max-width: 47.99em) {
  .event-detail .video__player iframe {
    min-height: 250px;
    height: 250px;
  }
}

.package-details {
  padding: 80px 0;
  background-color: #ddd4c4;
}
@media (max-width: 61.99em) {
  .package-details {
    padding: 60px 0px;
  }
}
@media (max-width: 47.99em) {
  .package-details {
    padding: 80px 0px 60px;
  }
}
.package-details__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 61.99em) {
  .package-details__heading {
    margin-bottom: 60px;
  }
}
@media (max-width: 47.99em) {
  .package-details__heading {
    margin-bottom: 44px;
  }
}
.package-details__heading .heading {
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .package-details__heading .heading {
    text-align: center;
    margin-bottom: 8px;
  }
}
.package-details__heading .subheading {
  color: #484a55;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 47.99em) {
  .package-details__heading .subheading {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
  }
}
.package-details__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 61.99em) {
  .package-details__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.package-details__content .text {
  -webkit-box-flex: 80%;
  -webkit-flex: 80%;
      -ms-flex: 80%;
          flex: 80%;
  max-width: 80%;
}
@media (max-width: 61.99em) {
  .package-details__content .text {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
  }
}
.package-details__content .text .title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #30343d;
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .package-details__content .text .title {
    margin-bottom: 8px;
  }
}
.package-details__content .text .subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #484a55;
  margin-bottom: 40px;
}
@media (max-width: 47.99em) {
  .package-details__content .text .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 20px;
  }
}
.package-details__content .text .details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 61.99em) {
  .package-details__content .text .details {
    gap: unset;
  }
}
.package-details__content .text .details .point {
  color: #30343d;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-bottom: 1px solid rgba(166, 149, 130, 0.4);
  padding-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 61.99em) {
  .package-details__content .text .details .point {
    padding: 24px;
    padding-left: unset;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 47.99em) {
  .package-details__content .text .details .point .desc {
    font-size: 14px;
    font-weight: 300;
    text-align: left;
  }
}
.package-details__content .image {
  max-width: 522px;
  width: 100%;
  height: 620px;
}
@media (max-width: 75em) {
  .package-details__content .image {
    height: 500px;
  }
}
@media (max-width: 61.99em) {
  .package-details__content .image {
    max-width: unset;
  }
}
@media (max-width: 47.99em) {
  .package-details__content .image {
    height: 380px;
    max-width: unset;
  }
}
.package-details__content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.package-gallery {
  padding: 80px 0px;
  overflow: hidden;
  background-color: #ddd4c4;
}
body.single-yacht .package-gallery {
  background-color: white;
}
@media (max-width: 61.99em) {
  .package-gallery {
    padding: 60px 0px;
  }
}
@media (max-width: 47.99em) {
  .package-gallery {
    padding: 60px 0px 100px;
  }
}
.package-gallery__heading .title {
  text-align: center;
  margin-bottom: 0px;
}
@media (max-width: 47.99em) {
  .package-gallery__heading .title {
    margin-bottom: 0px;
  }
}
.package-gallery__heading .subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #414350;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}
@media (max-width: 61.99em) {
  .package-gallery__heading .subtitle {
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 100%;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__heading .subtitle {
    margin-bottom: 20px;
  }
}
.package-gallery__slider {
  width: 100%;
}
@media (max-width: 47.99em) {
  .package-gallery__slider {
    padding: 16px;
  }
}
.package-gallery__slider .swiper {
  overflow: visible;
  position: relative;
  height: 640px;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper {
    height: auto;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__slider .swiper {
    height: 180px;
  }
}
.package-gallery__slider .swiper .swiper-wrapper {
  overflow: visible;
  height: 640px;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper .swiper-wrapper {
    height: auto;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__slider .swiper .swiper-wrapper {
    height: 180px;
  }
}
.package-gallery__slider .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.package-gallery__slider .swiper .swiper-wrapper .swiper-slide img {
  margin-top: 79px;
  width: 100%;
  height: 482px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper .swiper-wrapper .swiper-slide img {
    height: 440px;
    margin-top: 0;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__slider .swiper .swiper-wrapper .swiper-slide img {
    height: 180px;
    margin-top: unset;
  }
}
.package-gallery__slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  margin-top: unset;
  height: 640px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    height: 440px;
    margin-top: 0;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    height: 180px;
    margin-top: unset;
  }
}
.package-gallery__slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-next img, .package-gallery__slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev img {
  pointer-events: none;
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}
.package-gallery__slider .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 30px;
  height: 2px;
}
@media (min-width: 75em) {
  .package-gallery__slider .swiper-pagination {
    display: none;
  }
}
@media (min-width: 48em) and (max-width: 75em) {
  .package-gallery__slider .swiper-pagination {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.package-gallery__slider .swiper-button {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  bottom: 0;
  z-index: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper-button {
    top: 53%;
  }
}
@media (max-width: 47.99em) {
  .package-gallery__slider .swiper-button {
    display: none;
  }
}
.package-gallery__slider .swiper-button .swiper-button-prev {
  margin-left: 69.5px;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper-button .swiper-button-prev {
    margin-left: 39.5px;
  }
}
.package-gallery__slider .swiper-button .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.package-gallery__slider .swiper-button .swiper-button-next {
  margin-right: 69.5px;
}
@media (max-width: 61.99em) {
  .package-gallery__slider .swiper-button .swiper-button-next {
    margin-right: 39.5px;
  }
}

.other-post {
  padding: 80px 0;
  overflow: hidden;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .other-post {
    padding: 60px 0;
  }
}
.other-post.yacht, .other-post.destination {
  background-color: #ddd4c4;
}
@media (max-width: 47.99em) {
  .other-post.yacht, .other-post.destination {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.other-post__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}
@media (max-width: 47.99em) {
  .other-post__heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 47.99em) {
  .other-post__heading h2 {
    margin-bottom: unset;
  }
}
.other-post__heading .swiper-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 47.99em) {
  .other-post__heading .swiper-button {
    display: none;
  }
}
.other-post__heading .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__heading .swiper-button .swiper-button-prev.other-posts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__heading .swiper-button .swiper-button-prev.other-posts .icon-arrow-default {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.other-post__heading .swiper-button .swiper-button-prev.other-posts,
.other-post__heading .swiper-button .swiper-button-next.other-posts {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__heading .swiper-button .swiper-button-prev.other-posts:hover, .other-post__heading .swiper-button .swiper-button-prev.other-posts:active, .other-post__heading .swiper-button .swiper-button-prev.other-posts.nice-select.open, .other-post__heading .swiper-button .swiper-button-prev.other-posts:focus,
.other-post__heading .swiper-button .swiper-button-next.other-posts:hover,
.other-post__heading .swiper-button .swiper-button-next.other-posts:active,
.other-post__heading .swiper-button .swiper-button-next.other-posts.nice-select.open,
.other-post__heading .swiper-button .swiper-button-next.other-posts:focus {
  cursor: pointer;
}
.other-post__heading .swiper-button .icon-arrow-default::before {
  font-size: 40px;
}
.other-post__content {
  overflow: hidden;
}
.other-post__content .card-item {
  width: 302px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
.other-post__content .card-item__inner {
  width: 100%;
  height: 100%;
}
.other-post__content .card-item__inner:hover::before {
  opacity: 0.5;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.other-post__content .card-item__inner:hover .detail .title {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.other-post__content .card-item__inner:hover .detail .location {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.other-post__content .card-item__inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #16110f;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.other-post__content .card-item__inner .background {
  width: 100%;
  height: 100%;
}
.other-post__content .card-item__inner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-post__content .card-item__inner .detail {
  position: absolute;
  bottom: 40px;
  padding-left: 24px;
  width: 90%;
}
.other-post__content .card-item__inner .detail .title {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.other-post__content .card-item__inner .detail .location {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.other-post__content .card-item__inner .detail .location .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.other-post__content .card-item__inner .detail .location .icon svg path {
  stroke: #ffffff;
}
@media (max-width: 47.99em) {
  .other-post__content .swiper {
    overflow: unset;
  }
}
.other-post__content .swiper .swiper-slide {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.other-post__content .swiper .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 30px;
  height: 2px;
}
@media (min-width: 75em) {
  .other-post__content .swiper .swiper-pagination {
    display: none;
  }
}
.other-post__content .tease--yacht__item {
  height: 410px;
}
@media (max-width: 75em) {
  .other-post__content .tease--yacht__item {
    height: auto;
  }
}
@media (max-width: 47.99em) {
  .other-post__content .tease--yacht__item {
    height: 400px;
    border-radius: 8px;
  }
}
.other-post__content .tease--yacht__item .item-inner-wrap {
  height: 420px;
}
.other-post__content .tease--yacht__item .item-label {
  background: transparent;
  border: 1px solid white;
  padding: 5px 20px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__content .tease--yacht__item .item-background {
  height: 280px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 85em) {
  .other-post__content .tease--yacht__item .item-background {
    height: 260px;
  }
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .other-post__content .tease--yacht__item .item-background {
    height: 270px;
  }
}
.other-post__content .tease--yacht__item .item-details {
  padding: 20px 24px 40px;
}
.other-post__content .tease--yacht__item .item-details .location {
  margin-bottom: 8px;
}
.other-post__content .tease--yacht__item .item-details .location svg {
  min-width: 20px;
}
@media (max-width: 47.99em) {
  .other-post__content .tease--yacht__item .item-details .location {
    margin-bottom: 16px;
  }
}
@media (min-width: 48em) and (max-width: 75em) {
  .other-post__content .tease--yacht__item .item-details .location {
    margin-bottom: 12px;
  }
  .other-post__content .tease--yacht__item .item-details .location.truncated {
    display: none !important;
  }
  .other-post__content .tease--yacht__item .item-details .location.full-width {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.other-post__content .tease--yacht__item .item-details .yacht-details {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__content .tease--yacht__item .item-details .yacht-details span {
  font-size: 14px;
  margin-right: 9px;
}
.other-post__content .tease--yacht__item:hover .item-background, .other-post__content .tease--yacht__item:active .item-background, .other-post__content .tease--yacht__item.nice-select.open .item-background, .other-post__content .tease--yacht__item:focus .item-background {
  height: 230px;
}
.other-post__content .tease--yacht__item:hover .item-background img, .other-post__content .tease--yacht__item:active .item-background img, .other-post__content .tease--yacht__item.nice-select.open .item-background img, .other-post__content .tease--yacht__item:focus .item-background img {
  scale: 1;
}
.other-post__content .tease--yacht__item:hover .item-label, .other-post__content .tease--yacht__item:active .item-label, .other-post__content .tease--yacht__item.nice-select.open .item-label, .other-post__content .tease--yacht__item:focus .item-label {
  background: white;
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.other-post__content .tease--yacht__item:hover .item-details .yacht-details, .other-post__content .tease--yacht__item:active .item-details .yacht-details, .other-post__content .tease--yacht__item.nice-select.open .item-details .yacht-details, .other-post__content .tease--yacht__item:focus .item-details .yacht-details {
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.related-article {
  padding: 80px 0px;
  background-color: #ddd4c4;
}
@media (max-width: 61.99em) {
  .related-article {
    padding: 60px 0px 80px;
  }
}
.related-article__heading {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 47.99em) {
  .related-article__heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 47.99em) {
  .related-article__heading h2 {
    line-height: 38.4px;
    margin-bottom: unset;
  }
}
.related-article__heading .swiper-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 47.99em) {
  .related-article__heading .swiper-button {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.related-article__heading .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.related-article__heading .swiper-button .swiper-button-prev.related-art {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  padding-bottom: 2px;
}
.related-article__heading .swiper-button .swiper-button-prev.related-art .icon-arrow-default {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.related-article__heading .swiper-button .swiper-button-prev.related-art,
.related-article__heading .swiper-button .swiper-button-next.related-art {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.related-article__heading .swiper-button .swiper-button-prev.related-art:hover, .related-article__heading .swiper-button .swiper-button-prev.related-art:active, .related-article__heading .swiper-button .swiper-button-prev.related-art.nice-select.open, .related-article__heading .swiper-button .swiper-button-prev.related-art:focus,
.related-article__heading .swiper-button .swiper-button-next.related-art:hover,
.related-article__heading .swiper-button .swiper-button-next.related-art:active,
.related-article__heading .swiper-button .swiper-button-next.related-art.nice-select.open,
.related-article__heading .swiper-button .swiper-button-next.related-art:focus {
  cursor: pointer;
}
.related-article__heading .swiper-button .icon-arrow-default::before {
  font-size: 40px;
}
.related-article__slider .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 110px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 61.99em) {
  .related-article__slider .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 47.99em) {
  .related-article__slider .swiper-slide {
    gap: 24px;
  }
}
.related-article__slider .swiper-slide .image {
  max-width: 628px;
  width: 100%;
}
@media (max-width: 75em) {
  .related-article__slider .swiper-slide .image {
    max-width: 400px;
  }
}
@media (max-width: 61.99em) {
  .related-article__slider .swiper-slide .image {
    max-width: unset;
  }
}
.related-article__slider .swiper-slide .image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 47.99em) {
  .related-article__slider .swiper-slide .image img {
    aspect-ratio: unset;
    height: 250px;
  }
}
.related-article__slider .swiper-slide .details .post-date {
  font-family: Noto Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #907b69;
}
@media (max-width: 47.99em) {
  .related-article__slider .swiper-slide .details .post-date {
    margin-bottom: 8px;
  }
}
.related-article__slider .swiper-slide .details .post-title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 494px;
  color: #30343d;
}
@media (max-width: 61.99em) {
  .related-article__slider .swiper-slide .details .post-title {
    max-width: unset;
  }
}
.related-article__slider .swiper-slide .details .excerpt {
  font-family: Noto Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #484a55;
  margin: 18px 0px 30px;
  max-width: 542px;
}
@media (max-width: 61.99em) {
  .related-article__slider .swiper-slide .details .excerpt {
    max-width: unset;
  }
}
@media (max-width: 47.99em) {
  .related-article__slider .swiper-slide .details .excerpt {
    margin-top: 8px;
    margin-bottom: 0px;
  }
}
.related-article__slider .swiper-slide .details .button {
  width: 150px;
  height: 42px;
  padding-top: 2px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 30px;
}
.related-article__slider .swiper-slide .details .button:hover, .related-article__slider .swiper-slide .details .button:active, .related-article__slider .swiper-slide .details .button.nice-select.open, .related-article__slider .swiper-slide .details .button:focus {
  cursor: pointer;
}
.related-article__slider .swiper-slide .details .button:hover::before, .related-article__slider .swiper-slide .details .button:active::before, .related-article__slider .swiper-slide .details .button.nice-select.open::before, .related-article__slider .swiper-slide .details .button:focus::before {
  width: 100%;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
}
.related-article__slider .swiper-slide .details .button:hover .title, .related-article__slider .swiper-slide .details .button:active .title, .related-article__slider .swiper-slide .details .button.nice-select.open .title, .related-article__slider .swiper-slide .details .button:focus .title {
  color: #ffffff;
}
.related-article__slider .swiper-slide .details .button .title {
  color: #30343d;
}
.related-article__slider .swiper-slide .details .button::before {
  content: "";
  background: #30343d;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100px;
  z-index: 0;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
  pointer-events: none;
}
.related-article__slider .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 2px;
}
@media (min-width: 75em) {
  .related-article__slider .swiper-pagination {
    display: none;
  }
}

.rates {
  padding: 80px 188.5px;
}
@media (max-width: 75em) {
  .rates {
    padding: 80px 80px;
  }
}
@media (max-width: 61.99em) {
  .rates {
    padding: 80px 48px 60px;
  }
}
@media (max-width: 47.99em) {
  .rates {
    padding: 80px 16px 60px;
  }
}
.rates__wrapper {
  border-radius: 8px;
  border: 1px solid #ddd4c4;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.rates__wrapper__image {
  width: 100%;
  height: 420px;
}
@media (max-width: 47.99em) {
  .rates__wrapper__image {
    height: 250px;
  }
}
.rates__wrapper__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rates__wrapper__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 61.99em) {
  .rates__wrapper__text {
    padding: 0 16px;
  }
}
.rates__wrapper__text .text-heading {
  margin-bottom: 40px;
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .text-heading {
    margin-bottom: 40px;
  }
}
.rates__wrapper__text .text-subheading {
  margin-top: 60px;
  margin-bottom: 18px;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #484a55;
}
@media (max-width: 61.99em) {
  .rates__wrapper__text .text-subheading {
    text-align: center;
  }
}
.rates__wrapper__text .text-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 886px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .rates__wrapper__text .text-desc {
    max-width: 820px;
  }
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .text-desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    padding: 0 16px;
  }
}
.rates__wrapper__text .text-desc__wrap {
  max-width: 328px;
}
@media (max-width: 61.99em) {
  .rates__wrapper__text .text-desc__wrap:first-child {
    padding-left: 0px;
  }
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .text-desc__wrap:first-child {
    padding-bottom: 40px;
    border-bottom: 1px solid #d1c5b4;
  }
}
@media (max-width: 61.99em) {
  .rates__wrapper__text .text-desc__wrap:last-child {
    padding-left: 0px;
  }
}
.rates__wrapper__text .text-desc__wrap:last-child::before {
  border-left: 1px solid #d1c5b4;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  left: 50%;
  right: 50%;
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .text-desc__wrap:last-child::before {
    display: none;
  }
}
.rates__wrapper__text .text-desc__wrap .title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #30343d;
  margin-bottom: 12px;
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .text-desc__wrap .title {
    margin-bottom: 24px;
  }
}
.rates__wrapper__text .text-desc__wrap .desc {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #414350;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.rates__wrapper__text .text-desc__wrap .desc:last-child {
  margin-bottom: unset;
}
@media (max-width: 61.99em) {
  .rates__wrapper__text .text-desc__wrap .desc {
    font-size: 16px;
  }
}
.rates__wrapper__text .button {
  margin-bottom: 18px;
}
.rates__wrapper__text .button-link {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #d1c5b4;
  padding-bottom: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 47.99em) {
  .rates__wrapper__text .button-link {
    margin-bottom: 48px;
  }
}
.rates__wrapper__text .button-link .text {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.rates__wrapper__text .button-link i::before {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.rates__wrapper__text .button-link:hover, .rates__wrapper__text .button-link:active, .rates__wrapper__text .button-link.nice-select.open, .rates__wrapper__text .button-link:focus {
  border-bottom: 1px solid #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.rates__wrapper__text .button-link:hover .text, .rates__wrapper__text .button-link:active .text, .rates__wrapper__text .button-link.nice-select.open .text, .rates__wrapper__text .button-link:focus .text {
  color: #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.rates__wrapper__text .button-link:hover i::before, .rates__wrapper__text .button-link:active i::before, .rates__wrapper__text .button-link.nice-select.open i::before, .rates__wrapper__text .button-link:focus i::before {
  color: #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.yacht-description {
  padding: 100px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.yacht-description__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 75em) {
  .yacht-description__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
  }
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper {
    row-gap: 64px;
  }
}
.yacht-description__wrapper .description .heading {
  margin-bottom: 30px;
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper .description .heading {
    margin-bottom: 40px;
  }
}
.yacht-description__wrapper .description .desc {
  max-width: 738px;
  width: 100%;
  color: #414350;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  height: auto;
  overflow: hidden;
}
@media (max-width: 75em) {
  .yacht-description__wrapper .description .desc {
    max-width: 100%;
  }
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper .description .desc {
    font-size: 14px;
  }
}
.yacht-description__wrapper .description .desc p {
  margin-bottom: 24px;
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper .description .desc p {
    margin-bottom: 14px;
  }
}
.yacht-description__wrapper .description .desc p:last-child {
  margin-bottom: 0px;
}
.yacht-description__wrapper .description .desc ol {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  padding-left: 15px;
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper .description .desc ol {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.yacht-description__wrapper .description .btn.link-icon, .yacht-description__wrapper .description .link-icon.gform_button {
  margin-top: 40px;
}
.yacht-description__wrapper .description .btn.link-icon .title, .yacht-description__wrapper .description .link-icon.gform_button .title {
  font-size: 16px;
}
.yacht-description__wrapper .description .btn.link-icon .after, .yacht-description__wrapper .description .link-icon.gform_button .after {
  margin-top: 0px;
}
.yacht-description__wrapper .specs {
  max-width: 413px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media (max-width: 75em) {
  .yacht-description__wrapper .specs {
    max-width: 100%;
  }
}
.yacht-description__wrapper .specs .title {
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 61.99em) {
  .yacht-description__wrapper .specs .title {
    margin-bottom: 20px;
  }
}
.yacht-description__wrapper .specs .subtitle {
  color: var #907B69;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 61.99em) {
  .yacht-description__wrapper .specs .subtitle {
    margin-bottom: 10px;
    color: #907b69;
    font-size: 16px;
    font-weight: 300;
  }
}
.yacht-description__wrapper .specs .excerpt {
  color: #414350;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .yacht-description__wrapper .specs .excerpt {
    margin-bottom: 40px;
  }
}
.yacht-description__wrapper .specs .point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
  border-bottom: 1px solid #ddd4c4;
}
@media (max-width: 61.99em) {
  .yacht-description__wrapper .specs .point {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.yacht-description__wrapper .specs .point:first-child {
  padding-top: unset;
}
.yacht-description__wrapper .specs .point .item-placeholder {
  color: #907b69;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  min-width: 216px;
}
.yacht-description__wrapper .specs .point .item-value {
  color: #30343d;
  font-weight: 200;
}
.yacht-description__wrapper .specs .button-deck {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.yacht-description__wrapper .specs .button-deck .text {
  color: #30343d;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
}
.yacht-description__media {
  max-width: 1064px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.yacht-description__media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: unset;
}
.yacht-description__gallery {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
}
.yacht-description__gallery__close {
  position: absolute;
  top: 50px;
  right: 40px;
  z-index: 2;
  padding: 10px;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery__close {
    top: 7%;
    padding: 0;
  }
}
.yacht-description__gallery__close svg {
  pointer-events: none;
}
.yacht-description__gallery__close:hover, .yacht-description__gallery__close:active, .yacht-description__gallery__close.nice-select.open, .yacht-description__gallery__close:focus {
  cursor: pointer;
}
.yacht-description__gallery .swiper {
  width: 100%;
  overflow: visible;
  position: relative;
  height: 640px;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery .swiper {
    padding: 0 48px;
  }
}
@media (max-width: 47.99em) {
  .yacht-description__gallery .swiper {
    padding: 0 16px;
    height: 580px;
  }
}
.yacht-description__gallery .swiper .swiper-wrapper {
  overflow: visible;
  height: 640px;
}
@media (max-width: 47.99em) {
  .yacht-description__gallery .swiper .swiper-wrapper {
    height: 580px;
  }
}
.yacht-description__gallery .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.yacht-description__gallery .swiper .swiper-wrapper .swiper-slide img {
  margin-top: 79px;
  width: 100%;
  height: 482px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery .swiper .swiper-wrapper .swiper-slide img {
    height: 358px;
    margin-top: 50px;
    border-radius: 2px;
  }
}
.yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  margin-top: unset;
  height: 640px;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    height: 358px;
    margin-top: 50px;
  }
}
.yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-next::before, .yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev::before {
  content: "";
  display: block;
  width: 100%;
  height: 482px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  top: 79px;
  border-radius: 6px;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-next::before, .yacht-description__gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev::before {
    display: none;
  }
}
.yacht-description__gallery .swiper .swiper-button {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  top: 45%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 0;
  z-index: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-prev {
  margin-left: 69.5px;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-prev:hover, .yacht-description__gallery .swiper .swiper-button .swiper-button-prev:active, .yacht-description__gallery .swiper .swiper-button .swiper-button-prev.nice-select.open, .yacht-description__gallery .swiper .swiper-button .swiper-button-prev:focus {
  cursor: pointer;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-next {
  margin-right: 69.5px;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-next:hover, .yacht-description__gallery .swiper .swiper-button .swiper-button-next:active, .yacht-description__gallery .swiper .swiper-button .swiper-button-next.nice-select.open, .yacht-description__gallery .swiper .swiper-button .swiper-button-next:focus {
  cursor: pointer;
}
.yacht-description__gallery .swiper .swiper-button .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
@media (max-width: 61.99em) {
  .yacht-description__gallery .swiper .swiper-button {
    display: none;
  }
}
.yacht-description__gallery .swiper-counter-wrapper {
  position: absolute;
  top: 70%;
  left: 16px;
  color: white;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .yacht-description__gallery .swiper-counter-wrapper {
    left: 48px;
  }
}
@media (min-width: 62em) {
  .yacht-description__gallery .swiper-counter-wrapper {
    display: none;
  }
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper {
  width: 100%;
  height: auto;
  position: absolute;
  top: 75%;
}
@media (min-width: 62em) {
  .yacht-description__gallery .yacht-gallery-thumbnail.swiper {
    display: none;
  }
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper .swiper-wrapper {
  height: 100%;
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  border: 2px solid #ddc434;
}
.yacht-description__gallery .yacht-gallery-thumbnail.swiper .swiper-wrapper .swiper-slide img {
  height: 78px;
  width: 78px;
  border: none;
  margin-top: 0;
  border-radius: 2px;
}

.experience-list {
  padding: 120px 0px;
  background-color: #ddd4c4;
  position: relative;
}
.experience-list__background {
  height: 100%;
  width: 100%;
  background-image: url("../../img/bg-abstract-lines-light.svg");
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position-x: bottom;
}
@media (max-width: 47.99em) {
  .experience-list__background {
    height: 60%;
  }
}
.experience-list__background::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0)), to(#ddd4c4));
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #ddd4c4 100%);
}
.experience-list__heading {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .experience-list__heading {
    margin-bottom: 30px;
  }
}
.experience-list__heading .title {
  margin-bottom: 12px;
}
.experience-list__heading .subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #414350;
}
@media (max-width: 47.99em) {
  .experience-list__heading .subtitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin: 0 auto;
  }
}
.experience-list__heading .subtitle .icon-info {
  font-size: 13px;
}
@media (max-width: 47.99em) {
  .experience-list__heading .subtitle .icon-info {
    font-size: 18px;
    margin-top: 4px;
  }
}
.experience-list__heading .subtitle .inner-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .experience-list__heading .subtitle .inner-text {
    font-size: 16px;
    font-weight: 300;
    text-align: left;
  }
}
@media (max-width: 47.99em) {
  .experience-list__content {
    display: none;
  }
}
.experience-list__content__mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .experience-list__content__mobile {
    display: block;
  }
}
@media (max-width: 90em) {
  .experience-list .tease--card-default {
    width: 20.7vw;
  }
}
@media (max-width: 84.375em) {
  .experience-list .tease--card-default {
    width: 20.5vw;
  }
}
@media (min-width: 51.3125em) and (max-width: 80.5em) {
  .experience-list .tease--card-default {
    width: unset;
    -webkit-box-flex: 33.333%;
    -webkit-flex: 33.333%;
        -ms-flex: 33.333%;
            flex: 33.333%;
    max-width: 31.4%;
    height: 400px;
  }
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .experience-list .tease--card-default {
    width: unset;
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 48%;
    height: 380px;
  }
}
@media (max-width: 47.99em) {
  .experience-list .tease--card-default {
    width: unset;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.destination-intro {
  overflow: hidden;
  position: relative;
}
@media (max-width: 47.99em) {
  .destination-intro {
    padding-top: 80px;
  }
}
.destination-intro .moving-text {
  background-color: transparent;
}
.destination-intro__pattern {
  height: 50%;
  width: 100%;
  background-image: url("../../img/bg-abstract-pattern.svg");
  opacity: 0.12;
  position: absolute;
  top: 25%;
  scale: 2;
  left: 0;
  background-size: cover;
  background-position-x: bottom;
}
.destination-intro__pattern::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.destination-intro__regions {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .destination-intro__regions {
    width: 100%;
    margin-left: unset;
    margin-right: unset;
  }
}
@media (max-width: 61.99em) {
  .destination-intro__regions {
    width: 100%;
    margin-top: 70px;
  }
}
.destination-intro__regions--item {
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.destination-intro__regions--item:hover, .destination-intro__regions--item:active, .destination-intro__regions--item.nice-select.open, .destination-intro__regions--item:focus {
  cursor: pointer;
}
.destination-intro__regions--item.active {
  border: 3px solid #ddc434;
}
.destination-intro__regions--item .region-name {
  position: absolute;
  bottom: 0;
  color: white;
  padding-left: 20px;
  padding-bottom: 20px;
  pointer-events: none;
}
.destination-intro__regions--item .region-image {
  height: 100%;
  pointer-events: none;
}
.destination-intro__regions--item .region-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.16);
  position: absolute;
}
.destination-intro__regions--item .region-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.destination-intro .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 3px;
}
.destination-intro .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #907b69 !important;
}
.destination-intro__text-contents {
  margin-top: 60px;
  min-height: 450px;
  position: relative;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents {
    margin-top: 64px;
  }
}
.destination-intro__text-contents__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.destination-intro__text-contents__inner.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination-intro__text-contents__inner .text-contents__heading {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding-right: 80px;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner .text-contents__heading {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 85%;
    padding-right: 0;
  }
}
@media (max-width: 47.99em) {
  .destination-intro__text-contents__inner .text-contents__heading {
    max-width: 100%;
  }
}
.destination-intro__text-contents__inner .text-contents__heading h1.title {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner .text-contents__heading h1.title {
    font-size: 38px;
  }
}
.destination-intro__text-contents__inner .text-contents__heading .subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #414350;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner .text-contents__heading .subtitle {
    font-size: 16px;
  }
}
.destination-intro__text-contents__inner .text-contents__body {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner .text-contents__body {
    -webkit-box-flex: 85%;
    -webkit-flex: 85%;
        -ms-flex: 85%;
            flex: 85%;
    max-width: 85%;
  }
}
@media (max-width: 47.99em) {
  .destination-intro__text-contents__inner .text-contents__body {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.destination-intro__text-contents__inner .text-contents__body .lead {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #907b69;
  font-family: "Adobe Garamond", Georgia, serif;
  margin-bottom: 12px;
}
@media (max-width: 61.99em) {
  .destination-intro__text-contents__inner .text-contents__body .lead {
    margin-bottom: 24px;
  }
}
@media (max-width: 47.99em) {
  .destination-intro__text-contents__inner .text-contents__body .lead {
    margin-bottom: 0px;
  }
}
.destination-intro__text-contents__inner .text-contents__body p {
  font-size: 16px;
  font-weight: 300;
}
.destination-intro__text-contents__inner .text-contents__body p:not(:last-child) {
  margin-bottom: 12px;
}
.destination-intro__text-contents__inner .text-contents__body p:first-child {
  margin-top: 14px;
}
@media (max-width: 47.99em) {
  .destination-intro__text-contents__inner .text-contents__body p {
    margin-top: 24px;
    font-size: 14px;
  }
}

.maps {
  padding-top: 40px;
  width: 100%;
  height: 100%;
}
.maps__destinations {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 47.99em) {
  .maps__destinations .swiper {
    overflow: hidden;
  }
}
.maps__destinations .swiper-pagination {
  display: none;
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 3px;
}
@media (max-width: 47.99em) {
  .maps__destinations .swiper-pagination {
    display: block;
  }
}
.maps__destinations .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #907b69 !important;
}
@media (max-width: 47.99em) {
  .maps__destinations .swiper-button {
    display: none;
  }
}
.maps__destinations .swiper-button .swiper-button-next.maps-desti-list {
  position: absolute;
  right: -2%;
  bottom: 50%;
  z-index: 2;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.maps__destinations .swiper-button .swiper-button-next.maps-desti-list:hover {
  cursor: pointer;
}
.maps__destinations .swiper-button .swiper-button-prev.maps-desti-list {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  bottom: 50%;
  z-index: 2;
  left: -1.8%;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.maps__destinations .swiper-button .swiper-button-prev.maps-desti-list:hover {
  cursor: pointer;
}
.maps__destinations .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.maps__destinations .swiper-button-disabled:hover() {
  cursor: default;
}

.google-map {
  width: 100%;
  height: 560px;
}
.google-map .location-map {
  height: 100%;
}
.google-map .location-map .gm-style-iw {
  padding: 0 !important;
}
.google-map .location-map .gm-style-iw-tc {
  display: none;
}
.google-map .location-map .gm-style-iw-c {
  overflow: unset;
}
.google-map .location-map .gm-style-iw-d {
  padding: 0 !important;
  height: 80px;
  width: auto;
  max-height: 100% !important;
  overflow: hidden !important;
}
.google-map .location-map .gm-style-iw-d .info-window-content, .mapboxgl-popup-content .google-map__popup .google-map__popup--container {
  background-color: white;
  height: 80px;
  border-radius: 8px;
  width: auto;
  min-width: 260px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 47.99em) {
  .google-map .location-map .gm-style-iw-d .info-window-content, .mapboxgl-popup-content .google-map__popup .google-map__popup--container {
    gap: 12px;
    min-width: 160px;
  }
}
.mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--image, 
.google-map .location-map .gm-style-iw-d .info-window-content .thumbnail-img {
  min-width: 20%;
  width: 25%;
  height: 100%;
  border-radius: 8px 0 0px 8px;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  .google-map .location-map .gm-style-iw-d .info-window-content .thumbnail-img, 
  .mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--image {
    min-width: 30%;
    width: 35%;
  }
}
.google-map .location-map .gm-style-iw-d .info-window-content .thumbnail-img img, .mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text, 
.google-map .location-map .gm-style-iw-d .info-window-content .details {
  position: relative;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  max-width: 230px;
}
@media (max-width: 47.99em) {
  .mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text, 
  .google-map .location-map .gm-style-iw-d .info-window-content .details {
    width: 55%;
  }
}
.mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text .google-map__popup--title, 
.google-map .location-map .gm-style-iw-d .info-window-content .details .destination-name {
  font-size: 20px;
  font-family: "Adobe Garamond", Georgia, serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 47.99em) {
  .mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text .google-map__popup--title, 
  .google-map .location-map .gm-style-iw-d .info-window-content .details .destination-name {
    font-size: 12px;
  }
}
.mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text .google-map__popup--link, 
.google-map .location-map .gm-style-iw-d .info-window-content .details a.destination-button {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid;
}
@media (max-width: 47.99em) {
  .mapboxgl-popup-content .google-map__popup .google-map__popup--container .google-map__popup--text .google-map__popup--link, 
  .google-map .location-map .gm-style-iw-d .info-window-content .details a.destination-button {
    font-size: 10px;
  }
}
.mapboxgl-popup-close-button {
  background: #d1c5b4 !important;
  position: absolute !important;
  border-radius: 50px !important;
  opacity: 1;
  right: -30px !important;
  top: -12px !important;
  font-size: 25px;
  width: 35px;
  height: 35px;
  padding-bottom: 5px;
  line-height: 30px;
}
.google-map .location-map .gm-style button.gm-ui-hover-effect {
  background: #d1c5b4 !important;
  position: absolute !important;
  border-radius: 50px;
  opacity: 1;
  right: 8px !important;
  top: -12px !important;
}

.yacht-list {
  padding: 100px 0;
  padding-top: 92px;
  background-color: #f6f6f6;
  position: relative;
}
@media (max-width: 47.99em) {
  .yacht-list {
    padding: 80px 0px;
  }
}
.yacht-list .container {
  padding-left: 188px;
  padding-right: 188px;
}
@media (max-width: 80em) {
  .yacht-list .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 61.99em) {
  .yacht-list .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 47.99em) {
  .yacht-list .container {
    padding: 0px 16px;
  }
}
.yacht-list__background {
  height: 100%;
  width: 100%;
  background-image: url("../../img/bg-abstract-lines-light.svg");
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position-x: bottom;
  display: none;
}
@media (max-width: 47.99em) {
  .yacht-list__background {
    height: 60%;
  }
}
.yacht-list__background::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0)), to(#ddd4c4));
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #ddd4c4 100%);
}
.yacht-list__heading {
  text-align: start;
  margin-bottom: 20px;
}
.yacht-list__heading .title {
  margin-bottom: 12px;
}
.yacht-list__heading .subtitle {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #414350;
}
@media (max-width: 47.99em) {
  .yacht-list__heading .subtitle {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.yacht-list__heading .subtitle .icon-info {
  font-size: 13px;
}
@media (max-width: 47.99em) {
  .yacht-list__heading .subtitle .icon-info {
    font-size: 18px;
    margin-top: 4px;
  }
}
.yacht-list__heading .subtitle .inner-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .yacht-list__heading .subtitle .inner-text {
    font-size: 18px;
    font-weight: 200;
    text-align: left;
  }
}
@media (max-width: 47.99em) {
  .yacht-list__content {
    display: none;
  }
}
.yacht-list__content__mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .yacht-list__content__mobile {
    display: block;
  }
}
.yacht-list .jb-ajax__filter {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 99;
  background: #f6f6f6;
  padding: 24px 0;
  margin-bottom: 46px;
  border-bottom: 1px solid #9b9b9b;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__filter {
    padding: 16px 0 8px;
  }
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__filter {
    top: 65px;
  }
}
.yacht-list .jb-ajax__filter--category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__filter--category {
    height: 47px;
    overflow: hidden;
    -webkit-transition: height 400ms ease-in-out;
    transition: height 400ms ease-in-out;
  }
  .yacht-list .jb-ajax__filter--category.active {
    height: 227px;
  }
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__filter--category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }
}
.yacht-list .jb-ajax__filter .mobile-cat-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.yacht-list .jb-ajax__filter .mobile-cat-toggle .text-lead {
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__filter--item {
    text-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 21%;
    opacity: 0;
    visibility: hidden;
  }
  .yacht-list .jb-ajax__filter--item.showing {
    opacity: 1;
    visibility: visible;
  }
}
.yacht-list .yacht-cat-desc {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 47.99em) {
  .yacht-list .yacht-cat-desc {
    margin-bottom: 40px;
  }
}
.yacht-list .yacht-cat-desc__item {
  position: relative;
  display: none;
  width: 80%;
}
@media (max-width: 47.99em) {
  .yacht-list .yacht-cat-desc__item {
    width: 100%;
  }
}
.yacht-list .yacht-cat-desc__item .title {
  font-size: 28px;
  font-weight: 400;
  font-family: "Adobe Garamond", Georgia, serif;
  text-transform: uppercase;
  line-height: 80%;
}
.yacht-list .yacht-cat-desc__item .desc {
  margin: 20px 0 20px;
}
@media (max-width: 47.99em) {
  .yacht-list .yacht-cat-desc__item .desc {
    margin-top: 32px;
  }
}
.yacht-list .yacht-cat-desc__item .priced span {
  font-weight: 400;
}
@media (max-width: 47.99em) {
  .yacht-list .yacht-cat-desc__item .priced span {
    font-weight: 600;
  }
}
.yacht-list .yacht-cat-desc__item.active {
  display: block;
}
.yacht-list .jb-ajax__lists {
  gap: 44px;
  row-gap: 64px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__lists {
    row-gap: 48px;
  }
}
.yacht-list .jb-ajax__lists .tease--yacht__item {
  width: 510px;
  height: 500px;
  background: transparent;
  border-radius: 0px;
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-background {
  border-radius: 8px;
}
@media (max-width: 90em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 47.5%;
    width: unset;
    height: 460px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-background {
    height: 270px;
  }
}
@media (max-width: 65em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item {
    -webkit-box-flex: 50% !important;
    -webkit-flex: 50% !important;
        -ms-flex: 50% !important;
            flex: 50% !important;
    max-width: 46.5% !important;
    height: 460px !important;
  }
}
@media (max-width: 61.99em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item {
    width: 546px;
    height: 400px !important;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-background {
    height: 200px;
  }
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item {
    width: 546px !important;
    height: auto !important;
    -webkit-box-flex: unset !important;
    -webkit-flex: unset !important;
        -ms-flex: unset !important;
            flex: unset !important;
    max-width: unset !important;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-background {
    height: 220px;
    border-radius: 8px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-label {
    margin-top: 14px;
    margin-left: 14px;
  }
}
.yacht-list .jb-ajax__lists .tease--yacht__item:hover .item-details .name, .yacht-list .jb-ajax__lists .tease--yacht__item:active .item-details .name, .yacht-list .jb-ajax__lists .tease--yacht__item.nice-select.open .item-details .name, .yacht-list .jb-ajax__lists .tease--yacht__item:focus .item-details .name {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 32px 0 0;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details {
    padding-top: 24px;
  }
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details .name {
  font-size: 32px;
  text-transform: capitalize !important;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details .name {
    font-size: 24px;
  }
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location {
  margin-bottom: 0;
  margin-top: 26px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location {
    margin-top: 20px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location .text {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location svg {
  margin-top: 3px;
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location.truncated {
  display: none;
}
.yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location.full-width {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .yacht-list .jb-ajax__lists {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item {
    width: unset;
    -webkit-box-flex: 33.333%;
    -webkit-flex: 33.333%;
        -ms-flex: 33.333%;
            flex: 33.333%;
    max-width: 31.5%;
    height: 400px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-background {
    height: 210px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details {
    padding-left: 20px;
    padding-right: 20px;
  }
  .yacht-list .jb-ajax__lists .tease--yacht__item .item-details .location {
    margin-bottom: 30px;
  }
}
.yacht-list .jb-ajax__loadmore {
  padding-top: 38px;
  margin-top: 60px;
  border-top: 1px solid #d1c5b4;
}
@media (max-width: 47.99em) {
  .yacht-list .jb-ajax__loadmore {
    display: block;
    margin-top: 40px;
  }
}
.yacht-list .jb-ajax__loadmore.mobile {
  margin-top: 40px;
}
.yacht-list .jb-ajax__loadmore.mobile .jb-ajax__more {
  border-top: 1px solid #d1c5b4;
  padding-top: 40px;
}
.yacht-list .jb-ajax__loadmore.yacht {
  padding: 0;
  border-top: none;
}

.suites-cabins-carousel {
  background-color: #ddd4c4;
  padding: 80px 0;
  overflow: hidden;
}
.suites-cabins-carousel__heading {
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__heading {
    margin-bottom: 40px;
  }
}
.suites-cabins-carousel__heading .subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  color: #414350;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__heading .subtitle {
    font-size: 16px;
    line-height: 21.97px;
  }
}
.suites-cabins-carousel__contents {
  position: relative;
}
.suites-cabins-carousel__contents .swiper {
  overflow: unset;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__contents .swiper-button {
    display: none;
  }
}
.suites-cabins-carousel__contents .swiper-button .swiper-button-next.suites-cabins {
  position: absolute;
  right: -2%;
  bottom: 47%;
  z-index: 2;
  background: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.suites-cabins-carousel__contents .swiper-button .swiper-button-next.suites-cabins:hover {
  cursor: pointer;
}
.suites-cabins-carousel__contents .swiper-button .swiper-button-prev.suites-cabins {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  bottom: 47%;
  z-index: 2;
  left: -1.8%;
  background: transparent;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.suites-cabins-carousel__contents .swiper-button .swiper-button-prev.suites-cabins:hover {
  cursor: pointer;
}
.suites-cabins-carousel__contents .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.suites-cabins-carousel__contents .swiper-button-disabled:hover() {
  cursor: default;
}
.suites-cabins-carousel__contents .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 24px;
  height: 2px;
}
@media (min-width: 62em) {
  .suites-cabins-carousel__contents .swiper-pagination {
    display: none;
  }
}
.suites-cabins-carousel__slider-item {
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__slider-item {
    max-height: 300px;
  }
}
.suites-cabins-carousel__slider-item .slide-item-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.suites-cabins-carousel__slider-item .slide-item-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__slider-item .slide-item-inner::before {
    background: rgba(0, 0, 0, 0.2);
  }
}
.suites-cabins-carousel__slider-item .slide-item-image {
  height: 100%;
  width: 100%;
}
.suites-cabins-carousel__slider-item .slide-item-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suites-cabins-carousel__slider-item .slide-item-name {
  position: absolute;
  bottom: 40px;
  left: 30px;
  color: white;
  font-size: 22px;
  font-family: "Adobe Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__slider-item .slide-item-name {
    bottom: 60px;
  }
}
.suites-cabins-carousel__slider-item .slide-item-specs {
  position: absolute;
  bottom: 0px;
  opacity: 0;
  left: 30px;
  color: white;
  font-size: 12px;
  font-weight: 200;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
@media (max-width: 47.99em) {
  .suites-cabins-carousel__slider-item .slide-item-specs {
    opacity: 1;
    bottom: 30px;
  }
}
.suites-cabins-carousel__slider-item .slide-item-specs .item-spec {
  margin-right: 8px;
}
.suites-cabins-carousel__slider-item .slide-item-specs .item-spec i {
  margin-right: 4px;
}
.suites-cabins-carousel__slider-item .slide-item-specs .item-spec i::before {
  font-size: 14px;
}
.suites-cabins-carousel__slider-item:hover, .suites-cabins-carousel__slider-item:active, .suites-cabins-carousel__slider-item.nice-select.open, .suites-cabins-carousel__slider-item:focus {
  cursor: pointer;
}
.suites-cabins-carousel__slider-item:hover .slide-item-inner::before, .suites-cabins-carousel__slider-item:active .slide-item-inner::before, .suites-cabins-carousel__slider-item.nice-select.open .slide-item-inner::before, .suites-cabins-carousel__slider-item:focus .slide-item-inner::before {
  background: rgba(0, 0, 0, 0.63);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.suites-cabins-carousel__slider-item:hover .slide-item-name, .suites-cabins-carousel__slider-item:active .slide-item-name, .suites-cabins-carousel__slider-item.nice-select.open .slide-item-name, .suites-cabins-carousel__slider-item:focus .slide-item-name {
  bottom: 60px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.suites-cabins-carousel__slider-item:hover .slide-item-specs, .suites-cabins-carousel__slider-item:active .slide-item-specs, .suites-cabins-carousel__slider-item.nice-select.open .slide-item-specs, .suites-cabins-carousel__slider-item:focus .slide-item-specs {
  opacity: 1;
  bottom: 30px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.destination-listing {
  background-color: #30343d;
  position: relative;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .destination-listing {

  }
}
.destination-listing__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.destination-listing__bg-pattern::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #30343d), color-stop(87.06%, rgba(48, 52, 61, 0)));
  background: linear-gradient(180deg, #30343d 20%, rgba(48, 52, 61, 0) 87.06%);
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100px;
}
@media (max-width: 47.99em) {
  .destination-listing__bg-pattern::before {
    height: 70px;
  }
}
.destination-listing__heading {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 61.99em) {
  .destination-listing__heading {
    width: 100%;
  }
}
.destination-listing__heading .small-title {
  margin-bottom: 12px;
}
.destination-listing__heading .main-title {
  margin-bottom: 40px;
  color: #d1c5b4;
}
@media (max-width: 61.99em) {
  .destination-listing__heading .main-title {
    margin-bottom: 18px;
  }
}
.destination-listing__heading .subtitle {
  margin-bottom: 30px;
}
.destination-listing__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
.destination-listing__items .card-item {
  width: 302px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
.destination-listing__items .card-item__inner {
  width: 100%;
  height: 100%;
}
.destination-listing__items .card-item__inner:hover::before {
  opacity: 0.5;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination-listing__items .card-item__inner:hover .background img {
  scale: 1.2;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.destination-listing__items .card-item__inner:hover .detail .title {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.destination-listing__items .card-item__inner:hover .detail .location {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 1;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.destination-listing__items .card-item__inner::before {
  content: "";
  width: 100%;
  height: 80%;
  background-color: #16110f;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination-listing__items .card-item__inner .background {
  width: 100%;
  height: 100%;
}
.destination-listing__items .card-item__inner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1.5;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.destination-listing__items .card-item__inner .detail {
  position: absolute;
  bottom: 40px;
  padding-left: 24px;
  width: 90%;
}
.destination-listing__items .card-item__inner .detail .title {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination-listing__items .card-item__inner .detail .location {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.destination-listing__items .card-item__inner .detail .location .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.destination-listing__items .card-item__inner .detail .location .icon svg path {
  stroke: #ffffff;
}
.destination-listing__slider-wrapper {
  position: relative;
}
@media (max-width: 47.99em) {
  .destination-listing__slider-wrapper .swiper {
    overflow: unset;
  }
}
@media (max-width: 47.99em) {
  .destination-listing__slider-wrapper .swiper-button {
    display: none;
  }
}
.destination-listing__slider-wrapper .swiper-button .swiper-button-next.desti-list {
  position: absolute;
  right: -2%;
  bottom: 50%;
  z-index: 2;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.destination-listing__slider-wrapper .swiper-button .swiper-button-next.desti-list:hover {
  cursor: pointer;
}
.destination-listing__slider-wrapper .swiper-button .swiper-button-prev.desti-list {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  bottom: 50%;
  z-index: 2;
  left: -1.8%;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.destination-listing__slider-wrapper .swiper-button .swiper-button-prev.desti-list:hover {
  cursor: pointer;
}
.destination-listing__slider-wrapper .swiper-button-disabled {
  opacity: 0.5;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.destination-listing__slider-wrapper .swiper-button-disabled:hover() {
  cursor: default;
}
.destination-listing__slider-wrapper .swiper-pagination {
  position: relative;
  top: 100%;
  margin-top: 40px;
  height: 3px;
}
.destination-listing__slider-wrapper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #907b69 !important;
}

.stories-banner {
  padding: 205px 80px 0px;
  position: relative;
}
@media (max-width: 61.99em) {
  .stories-banner {
    padding: 160px 48px 0px;
  }
}
@media (max-width: 47.99em) {
  .stories-banner {
    padding: 100px 16px 0px;
  }
}
.stories-banner__bg {
  height: 751px;
  width: 100%;
  background-image: url("../../img/storiespattern.jpg");
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 61.99em) {
  .stories-banner__bg {
    height: 760px;
  }
}
@media (max-width: 47.99em) {
  .stories-banner__bg {
    height: 560px;
  }
}
.stories-banner__breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .stories-banner__breadcrumb {
    margin-bottom: 80px;
  }
}
.stories-banner__breadcrumb span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.26px;
  color: #30343d;
}
.stories-banner__heading {
  position: relative;
  z-index: 1;
}
.stories-banner__heading .post-date {
  margin-bottom: 12px;
  color: #797979;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .stories-banner__heading .post-date {
    margin-bottom: 0px;
  }
}
.stories-banner__heading .post-title {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}
@media (max-width: 47.99em) {
  .stories-banner__heading .post-title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.stories-banner__heading .post-category {
  color: white;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #907b69;
  border-radius: 300px;
  margin-bottom: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 61.99em) {
  .stories-banner__heading .post-category {
    font-weight: 300;
  }
}
@media (max-width: 47.99em) {
  .stories-banner__heading .post-category {
    margin-bottom: 48px;
  }
}
.stories-banner__image {
  position: relative;
  z-index: 1;
}
.stories-banner__image img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 61.99em) {
  .stories-banner__image img {
    height: 420px;
  }
}
@media (max-width: 47.99em) {
  .stories-banner__image img {
    height: 250px;
  }
}

body.blog {
  background-color: #ddd4c4;
}

.stories-page {
  background-color: #ddd4c4;
  padding-bottom: 120px;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .stories-page {
    margin-top: 60px;
    padding-bottom: 100px;
  }
}
@media (max-width: 47.99em) {
  .stories-page-list {
    display: none;
  }
}
.stories-page-list.mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .stories-page-list.mobile {
    display: block;
  }
}
@media (max-width: 47.99em) {
  .stories-page .jb-ajax__filter {
    margin-bottom: 40px;
  }
}
@media (max-width: 47.99em) {
  .stories-page .jb-ajax__filter--wrapper {
    gap: 20px;
  }
}
.stories-page .jb-ajax__lists {
  row-gap: 60px;
}
@media (max-width: 47.99em) {
  .stories-page .jb-ajax__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 48px;
    margin-bottom: 0;
  }
}
.stories-page .jb-ajax__lists .tease--post__item {
  margin-bottom: 0;
}
@media (max-width: 75em) {
  .stories-page .jb-ajax__lists .tease--post__item {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 48.8%;
  }
}
@media (max-width: 61.99em) {
  .stories-page .jb-ajax__lists .tease--post__item {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 48%;
  }
}
@media (max-width: 47.99em) {
  .stories-page .jb-ajax__lists .tease--post__item {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
    margin-bottom: 0px;
  }
}
.stories-page .jb-ajax__pagination {
  margin-top: 80px;
  padding-top: 0px;
  border-top: none;
}
@media (max-width: 47.99em) {
  .stories-page .jb-ajax__pagination {
    margin-top: 60px;
  }
}

.experience-banner__image {
  width: 100%;
  height: 620px;
  position: relative;
}
@media (max-width: 47.99em) {
  .experience-banner__image {
    height: 720px;
  }
}
.experience-banner__image::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(64.8%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.8%, rgba(0, 0, 0, 0.5) 100%);
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  z-index: 0;
}
@media (max-width: 47.99em) {
  .experience-banner__image::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 35%;
  }
}
.experience-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience-banner__breadcrumb {
  position: absolute;
  bottom: 40px;
  left: 80px;
  color: white;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.26px;
}
@media (max-width: 61.99em) {
  .experience-banner__breadcrumb {
    left: 48px;
  }
}
@media (max-width: 47.99em) {
  .experience-banner__breadcrumb {
    top: 100px;
    bottom: unset;
    left: 16px;
  }
}
.experience-banner__breadcrumb .breadcrumb-separator {
  content: url(../../img/separator-w.svg);
}
.experience-banner__breadcrumb span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.26px;
  color: white;
}
.experience-banner__breadcrumb span a {
  color: white;
}
.experience-banner__breadcrumb span span:nth-child(n+3) a:first-child {
  content: "...";
  display: inline;
}

.yacht-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yacht-banner__slide-show {
  width: 100vw;
  height: 98vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 47.99em) {
  .yacht-banner__slide-show {
    height: 85vh;
  }
}
.yacht-banner__slide-show::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(64.8%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.8%, rgba(0, 0, 0, 0.2) 100%);
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  z-index: 2;
}
@media (max-width: 47.99em) {
  .yacht-banner__slide-show::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 35%;
  }
}
.yacht-banner__slide-show .swiper {
  height: 100%;
}
.yacht-banner__slide-show .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yacht-banner__image {
  width: 100%;
  position: relative;
}
@media (max-width: 47.99em) {
  .yacht-banner__image {
    height: 85vh;
  }
}
.yacht-banner__image::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  height: 60%;
  width: 100vw;
  position: absolute;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 47.99em) {
  .yacht-banner__image::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(150%, rgb(0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 150%);
    height: 55%;
    opacity: 0.7;
    bottom: unset;
    top: 0;
  }
}
.yacht-banner__image img {
  width: 100%;
  height: 816px;
  -o-object-fit: cover;
     object-fit: cover;
}
.yacht-banner__breadcrumb {
  position: absolute;
  bottom: 100px;
  left: 80px;
  color: white;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.26px;
  z-index: 2;
}
@media (max-width: 75em) {
  .yacht-banner__breadcrumb {
    bottom: 160px;
    left: 60px;
  }
}
@media (max-width: 47.99em) {
  .yacht-banner__breadcrumb {
    top: 90px;
    left: 20px;
    bottom: unset;
  }
}
.yacht-banner__breadcrumb .breadcrumb-separator {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.yacht-banner__breadcrumb span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.26px;
  color: white;
}
.yacht-banner__breadcrumb span a {
  color: white;
}
.yacht-banner__spec {
  padding: 0px 80px;
  width: 100%;
}
@media (max-width: 75em) {
  .yacht-banner__spec {
    padding: 0px 48px;
  }
}
@media (max-width: 47.99em) {
  .yacht-banner__spec {
    padding: 0px 16px;
  }
}
.yacht-banner__spec__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 24px 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: -70px;
  border-radius: 8px;
  border: 1px solid #f6f6f6;
  background: rgba(246, 246, 246, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media (min-width: 90.625em) {
  .yacht-banner__spec__inner {
    padding-left: -webkit-calc((100vw - 1440px) / 2);
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: -webkit-calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}
@media (max-width: 75em) {
  .yacht-banner__spec__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: -120px;
  }
}
@media (min-width: 48em) and (max-width: 75em) {
  .yacht-banner__spec__inner {
    display: none;
  }
}
.yacht-banner__spec__inner.tablet {
  display: none;
}
.yacht-banner__spec__inner.tablet .inner-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .yacht-banner__spec__inner.tablet .inner-wrap {
    gap: 60px;
    width: 100%;
  }
}
.yacht-banner__spec__inner.tablet .inner-wrap .details {
  -webkit-box-flex: 60%;
  -webkit-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  max-width: 60%;
}
.yacht-banner__spec__inner.tablet .inner-wrap .details .yacht-information {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.yacht-banner__spec__inner.tablet .inner-wrap .yacht-price {
  position: relative;
}
.yacht-banner__spec__inner.tablet .inner-wrap .yacht-price::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  background-color: #a0a2a5;
}
.yacht-banner__spec__inner.tablet .inner-wrap .yacht-price .placeholder {
  padding-left: 60px;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .yacht-banner__spec__inner.tablet .inner-wrap .yacht-price .placeholder {
    padding-left: 100px;
  }
}
.yacht-banner__spec__inner.tablet .inner-wrap .yacht-price .price {
  padding-left: 60px;
}
@media (min-width: 61.9375em) and (max-width: 75em) {
  .yacht-banner__spec__inner.tablet .inner-wrap .yacht-price .price {
    padding-left: 100px;
  }
}
@media (min-width: 48em) and (max-width: 75em) {
  .yacht-banner__spec__inner.tablet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.yacht-banner__spec .details .yacht-name {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.yacht-banner__spec .details .yacht-information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 47.99em) {
  .yacht-banner__spec .details .yacht-information {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.yacht-banner__spec .details .yacht-information .info-item {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.yacht-banner__spec .details .yacht-information .info-item i {
  font-size: 24px;
}
.yacht-banner__spec .details .yacht-information .info-item i::before {
  color: #30343d !important;
}
.yacht-banner__spec .yacht-price::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 70%;
  top: 15%;
  opacity: 0.5;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background-color: #a0a2a5;
}
@media (max-width: 75em) {
  .yacht-banner__spec .yacht-price::before {
    display: none;
  }
}
.yacht-banner__spec .yacht-price .placeholder {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.yacht-banner__spec .yacht-price .price {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.yacht-banner__spec .yacht-price .price span {
  font-family: "Adobe Garamond", Georgia, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.yacht-banner__spec .button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 47.99em) {
  .yacht-banner__spec .button-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
@media (max-width: 47.99em) {
  .yacht-banner__spec .button-wrapper .prim-btn {
    width: 100%;
  }
  .yacht-banner__spec .button-wrapper .prim-btn .btn, .yacht-banner__spec .button-wrapper .prim-btn .gform_button {
    width: 100%;
    font-size: 14px;
  }
}
.yacht-banner__spec .button-wrapper .btn-sec {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #907b69;
  border-bottom: 1px solid #d1c5b4;
  padding-bottom: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yacht-banner__spec .button-wrapper .btn-sec i {
  font-size: 16px;
}
.yacht-banner__spec .button-wrapper .btn-sec i::before {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.yacht-banner__spec .button-wrapper .btn-sec:hover, .yacht-banner__spec .button-wrapper .btn-sec:active, .yacht-banner__spec .button-wrapper .btn-sec.nice-select.open, .yacht-banner__spec .button-wrapper .btn-sec:focus {
  color: #414350;
  border-bottom: 1px solid #414350;
}
.yacht-banner__spec .button-wrapper .btn-sec:hover i::before, .yacht-banner__spec .button-wrapper .btn-sec:active i::before, .yacht-banner__spec .button-wrapper .btn-sec.nice-select.open i::before, .yacht-banner__spec .button-wrapper .btn-sec:focus i::before {
  color: #414350;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.search-page {
  margin-top: 0;
  padding: 0;
  min-height: 100vh;
}
@media (max-width: 61.99em) {
  .search-page {
    margin-top: 0px;
    padding: 0 0px;
    min-height: -webkit-calc(100vh - 120px);
    min-height: calc(100vh - 120px);
  }
}
.search-page__heading {
  padding-top: 200px;
  margin-bottom: 80px;
  height: 380px;
  background: #30343d;
  position: relative;
}
.search-page__heading--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/bg-abstract-pattern.svg);
  z-index: 0;
}
.search-page__heading--label {
  display: block;
  width: 85%;
  margin: 0 auto;
  top: 80px;
  font-size: 32px;
  text-transform: uppercase;
  color: #d1c5b4;
  font-family: "Adobe Garamond", Georgia, serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 61.99em) {
  .search-page__heading--label {
    font-size: 30px;
    width: 100%;
  }
}
@media (max-width: 47.99em) {
  .search-page__heading--label {
    font-size: 26px;
    width: 100%;
    top: 40px;
  }
}
.search-page__results {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 61.99em) {
  .search-page__results {
    width: 100%;
  }
}
.search-page__item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #e7e7e7;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-page__item:nth-child(n+11) {
  display: none;
}
@media (max-width: 61.99em) {
  .search-page__item:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 47.99em) {
  .search-page__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-page__item__image {
  -webkit-box-flex: 30%;
  -webkit-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
  max-width: 30%;
  min-height: 220px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .search-page__item__image {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
    height: auto;
  }
}
@media (max-width: 47.99em) {
  .search-page__item__image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: 100%;
    height: 250px;
  }
}
.search-page__item__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.search-page__item__details {
  -webkit-box-flex: 70%;
  -webkit-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  max-width: 70%;
  padding-left: 40px;
}
@media (max-width: 47.99em) {
  .search-page__item__details {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-top: 16px;
  }
}
.search-page__item--label {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 300px;
  border: 1px solid var(--Sandrift, #a69582);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #a69582;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 61.99em) {
  .search-page__item--label {
    margin-bottom: 0;
  }
}
.search-page__item--title {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  text-transform: none;
}
@media (max-width: 61.99em) {
  .search-page__item--title {
    font-size: 24px;
    margin: 16px 0;
  }
}
@media (max-width: 47.99em) {
  .search-page__item--title {
    margin-top: 14px;
    margin-bottom: 8px;
  }
}
.search-page__item--description {
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  color: #414350;
  margin-bottom: 22px;
}
@media (max-width: 61.99em) {
  .search-page__item--description {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.search-page__item--link {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-bottom: 1px solid #a69582;
}
.search-page__item--link svg {
  -webkit-transition: 600ms;
  transition: 600ms;
}
.search-page__item--link:hover, .search-page__item--link:active, .search-page__item--link.nice-select.open, .search-page__item--link:focus {
  text-decoration: none;
}
.search-page__item--link:hover svg, .search-page__item--link:active svg, .search-page__item--link.nice-select.open svg, .search-page__item--link:focus svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: 600ms;
  transition: 600ms;
}
.search-page .btn-load-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 47.99em) {
  .search-page .btn-load-more {
    margin-top: 60px;
  }
}
.search-page__not-found__description {
  margin-bottom: 16px;
}
.search-page__not-found__button svg {
  -webkit-transition: 600ms;
  transition: 600ms;
}
.search-page__not-found__button:hover, .search-page__not-found__button:active, .search-page__not-found__button.nice-select.open, .search-page__not-found__button:focus {
  text-decoration: none;
}
.search-page__not-found__button:hover svg, .search-page__not-found__button:active svg, .search-page__not-found__button.nice-select.open svg, .search-page__not-found__button:focus svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: 600ms;
  transition: 600ms;
}

body.page-template-page--contact .page-wrap {
  min-height: 95vh;
  overflow: hidden;
}
@media (max-width: 47.99em) {
  body.page-template-page--contact .content-wrap {
    overflow: hidden;
  }
}
body.page-template-page--contact.finished-form .contact-page__form .contact-page__form--tools {
  display: none;
}
body.page-template-page--contact footer {
  display: none;
}

.contact-page {
  margin-top: 200px;
}
@media (max-width: 47.99em) {
  .contact-page {
    margin-top: 140px;
    padding-bottom: 0px;
  }
}
.contact-page__pattern {
  background-image: url(../../img/bg-abstract-pattern.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 100vw;
  height: 75vh;
  top: 0;
  opacity: 0.15;
  z-index: 0;
}
.contact-page__pattern::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.contact-page__wrapper {
  position: relative;
  min-height: 750px;
}
@media (max-width: 61.99em) {
  .contact-page__wrapper {
    padding-bottom: 80px;
  }
}
.contact-page__opening {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 600ms;
  transition: 600ms;
}
@media (max-width: 47.99em) {
  .contact-page__opening {
    padding-bottom: 80px;
  }
}
.contact-page__opening.hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.contact-page__heading {
  text-align: center;
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 47.99em) {
  .contact-page__heading {
    width: 100%;
  }
}
.contact-page__heading h1.opening-title {
  font-size: 32px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #30343d;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 47.99em) {
  .contact-page__heading h1.opening-title {
    font-size: 28px;
  }
}
.contact-page__heading .description {
  margin-top: 12px;
}
@media (max-width: 47.99em) {
  .contact-page__heading .description {
    margin-top: 24px;
  }
}
.contact-page__heading .description p {
  margin-bottom: 30px;
}
@media (max-width: 61.99em) {
  .contact-page__heading .description p {
    margin-bottom: 18px;
    font-size: 18px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__heading .description p {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
@media (max-width: 61.99em) {
  .contact-page__heading .description p:last-child {
    margin-bottom: 40px;
  }
}
.contact-page__heading .subtitle {
  color: black;
  font-size: 22px;
  font-weight: 400;
}
.contact-page__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 47.99em) {
  .contact-page__options {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
}
.contact-page__options a {
  padding: 30px;
  background: #ddd4c4;
  border-radius: 6px;
  max-width: 292px;
  text-transform: uppercase;
  text-align: center;
  color: black;
  min-width: 292px;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-page__data {
  position: absolute;
  width: 100%;
  top: 0;
}
.contact-page__form {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.contact-page__form.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 600ms;
  transition: 600ms;
}
.contact-page__form--tools {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.contact-page__form--tools .progress-form--spinner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-page__form--tools .progress-form--spinner svg path {
  stroke-dashoffset: 0;
  stroke-dasharray: 0, 132;
}
.contact-page__form--tools .progress-form--counter {
  text-transform: uppercase;
  margin-top: 12px;
  font-size: 12px;
}
@media (max-width: 47.99em) {
  .contact-page__form--tools .progress-form--counter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 4px;
    left: 50%;
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}
.contact-page__form--tools .progress-form--counter .contact-page__form--progress--page::after {
  content: "/";
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 48em) {
  .contact-page__form--tools .progress-form--counter .contact-page__form--progress--page::after {
    display: none;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--tools .progress-form--counter .text-first,
  .contact-page__form--tools .progress-form--counter .text-second {
    display: none;
  }
}
.contact-page__form--tools .back-btn:hover i::before {
  color: #907b69;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--tools .back-btn .icon-chevron-right {
  position: absolute;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-top: 2.5px;
  pointer-events: none;
}
.contact-page__form--tools .back-btn .icon-chevron-right::before {
  color: #30343d;
  font-size: 12px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--tools .back-btn span.text {
  padding-left: 20px;
  text-transform: uppercase;
  pointer-events: none;
}
@media (max-width: 47.99em) {
  .contact-page__form--tools .back-btn span.text {
    font-size: 14px;
  }
}
.contact-page__form--tools .close-btn span.text {
  margin-left: 8px;
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .contact-page__form--tools .close-btn span.text {
    font-size: 14px;
  }
}
.contact-page__form--forms {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 47.99em) {
  .contact-page__form--forms {
    width: 100%;
  }
}
.contact-page__form--forms .gform_confirmation_wrapper {
  position: relative;
  min-height: 60vh;
}
.contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message {
  text-align: center;
  font-size: 22px;
  width: 75%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 14px;
    width: 100%;
  }
}
.contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: none;
  color: #ffffff;
  background-color: #907b69;
  font-weight: 400;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 18px 30px;
  text-transform: uppercase;
  border-radius: 600px;
  font-size: 14px;
  margin-top: 40px;
}
.contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message a:hover, .contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message a:active, .contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message a.nice-select.open, .contact-page__form--forms .gform_confirmation_wrapper .gform_confirmation_message a:focus {
  background-color: #30343d;
  color: #ffffff;
}
.contact-page__form--forms .gf_progressbar_wrapper {
  display: none;
}
.contact-page__form--forms .gform_page_footer {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px !important;
}
.contact-page__form--forms .gform_page_footer .gform-loader {
  display: none;
}
.contact-page__form--forms textarea {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.contact-page__form--forms input.gform_previous_button {
  display: none !important;
}
.contact-page__form--forms .gform_next_button,
.contact-page__form--forms .gform_submit_button {
  background-color: #907b69 !important;
}
.contact-page__form--forms .gform_next_button:hover, .contact-page__form--forms .gform_next_button:active, .contact-page__form--forms .gform_next_button.nice-select.open, .contact-page__form--forms .gform_next_button:focus,
.contact-page__form--forms .gform_submit_button:hover,
.contact-page__form--forms .gform_submit_button:active,
.contact-page__form--forms .gform_submit_button.nice-select.open,
.contact-page__form--forms .gform_submit_button:focus {
  background-color: #30343d !important;
  color: #ffffff !important;
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.contact-page__form--forms .gform_page {
  padding-bottom: 80px;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page {
    padding-bottom: 80px;
  }
}
.contact-page__form--forms .gform_page.large-row-gap .gform_fields {
  grid-row-gap: 42px !important;
}
.contact-page__form--forms .gform_page.width-medium {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page.width-medium {
    width: 100%;
  }
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text label {
  height: 52px;
  width: 70%;
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text input::-webkit-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text input::-moz-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text input:-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text input::-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.width-medium .gfield--type-text input::placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.no-placeholder-input input::-webkit-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.no-placeholder-input input::-moz-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.no-placeholder-input input:-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.no-placeholder-input input::-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page.no-placeholder-input input::placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields {
  height: auto;
}
.contact-page__form--forms .gform_page_fields .gfield--type-section {
  text-align: center;
  border: none;
}
.contact-page__form--forms .gform_page_fields .gform_fields {
  grid-row-gap: 42px !important;
  -webkit-column-gap: 24px !important;
     -moz-column-gap: 24px !important;
          column-gap: 24px !important;
}
.contact-page__form--forms .gform_page_fields .gfield {
  height: auto !important;
}
.contact-page__form--forms .gform_page_fields .gfield.custom-checkbox legend {
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield .validation_message {
  position: absolute;
  top: 50%;
  left: 20px;
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input {
  background-color: #fff3f3 !important;
  border: 2px solid #ff0000 !important;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input::-webkit-input-placeholder {
  color: #ff3c3c !important;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input::-moz-placeholder {
  color: #ff3c3c !important;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input:-ms-input-placeholder {
  color: #ff3c3c !important;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input::-ms-input-placeholder {
  color: #ff3c3c !important;
}
.contact-page__form--forms .gform_page_fields .gfield.gfield_error input::placeholder {
  color: #ff3c3c !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html {
  grid-column: span 12 !important;
  text-align: center;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html h3 {
  margin-top: 60px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html p {
  width: 75%;
  margin: 0 auto;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html p {
    font-size: 18px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html p {
    width: 100%;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-html.no-margin .description {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .custom-checkbox-desc {
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .travel-preference,
.contact-page__form--forms .gform_page_fields .gfield--type-html .description,
.contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description {
  font-size: 22px;
  font-weight: 400;
  color: #30343d;
  text-transform: none;
  margin-top: 40px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html .travel-preference,
  .contact-page__form--forms .gform_page_fields .gfield--type-html .description,
  .contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description {
    width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html .travel-preference,
  .contact-page__form--forms .gform_page_fields .gfield--type-html .description,
  .contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description {
    font-size: 14px;
    width: 100%;
    margin-top: 24px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .travel-preference .preference-value,
.contact-page__form--forms .gform_page_fields .gfield--type-html .description .preference-value,
.contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description .preference-value {
  font-weight: 600;
  text-transform: capitalize;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .description {
  margin-bottom: 0px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description {
  margin-top: 32px;
  margin-bottom: 32px;
  width: 100%;
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html .sub-description {
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 300;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider {
  width: 60%;
  margin: 0px auto;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider {
    margin-top: 0;
    width: 100%;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .slider-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #d1c5b4;
  border-radius: 8px;
  margin: 24px auto;
  font-size: 32px;
  font-weight: 400;
  font-family: "Adobe Garamond", Georgia, serif;
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .slider-value {
    margin-top: 0;
    padding: 16px 56px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .slider-value span.price {
  font-size: 16px;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  padding-left: 5px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .input-value-range {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  color: #a0a2a5;
  font-size: 14px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .input-progress-wrap {
  height: 20px;
  position: relative;
  margin-top: -11px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider .input-progress-wrap .input-progress {
  height: 10px;
  top: 0px;
  left: 0px;
  position: absolute;
  width: 0%;
  border-radius: 50px;
  background-color: #36b03b;
  z-index: 0;
  transition: all 0.25s ease-in-out;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 12px;
  padding: 0 !important;
  border: 1px solid #e6e6e6;
  border-radius: 100px !important;
  background: transparent;
  outline: none;
  opacity: 1;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #efefef;
  border: 1px solid #d0d0d0;
  cursor: pointer;
  background-image: url(../../img/slider-inner-thumb.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #efefef;
  border: 1px solid #d0d0d0;
  cursor: pointer;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-moz-range-progress {
  background-color: #907b69 !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-ms-thumb {
  background: #30343d;
  border-radius: 50px;
  border: none;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-ms-fill-lower {
  background: #ddd4c4 !important;
  border-radius: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-ms-fill-upper {
  background: #ddd4c4 !important;
  border-radius: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .form-input-slider input.slider::-ms-tooltip {
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield--type-html .slider:hover {
  opacity: 1;
}
.contact-page__form--forms .gform_page_fields .gfield--type-text, .contact-page__form--forms .gform_page_fields .gfield--type-email, .contact-page__form--forms .gform_page_fields .gfield--type-phone {
  grid-column: span 6 !important;
  height: 90px;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-text, .contact-page__form--forms .gform_page_fields .gfield--type-email, .contact-page__form--forms .gform_page_fields .gfield--type-phone {
    grid-column: span 12 !important;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row {
  grid-column: span 4 !important;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-text.one-row, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row {
    grid-column: span 12 !important;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row label, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row label, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row label {
  height: 52px;
  width: 70%;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-text.one-row label, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row label, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row label {
    height: auto;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row input::-webkit-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row input::-webkit-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row input::-webkit-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row input::-moz-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row input::-moz-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row input::-moz-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row input:-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row input:-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row input:-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row input::-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row input::-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row input::-ms-input-placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-text.one-row input::placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-email.one-row input::placeholder, .contact-page__form--forms .gform_page_fields .gfield--type-phone.one-row input::placeholder {
  opacity: 0;
}
.contact-page__form--forms .gform_page_fields .gfield--type-textarea label {
  display: none !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-textarea textarea {
  padding: 24px !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-checkbox.one-column .ginput_container {
  width: 60% !important;
  margin: 0 auto !important;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-checkbox.one-column .ginput_container {
    width: 90% !important;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-checkbox.one-column .ginput_container {
    width: 100% !important;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-checkbox.one-column .ginput_container .gfield_checkbox .gchoice {
  -webkit-box-flex: 100% !important;
  -webkit-flex: 100% !important;
      -ms-flex: 100% !important;
          flex: 100% !important;
  max-width: 100% !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 28px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .gfield_label {
  clip: unset;
  height: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .gfield_label {
    font-size: 18px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container {
  height: auto;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container {
    -webkit-transform: translate(240px);
            transform: translate(240px);
  }
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container .gfield_radio .gchoice {
  padding: 0 !important;
  border: none !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container .gfield_radio .gchoice:hover {
  background-color: transparent !important;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container .gfield_radio .gchoice label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  text-transform: capitalize;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container .gfield_radio .gchoice label::before {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.contact-page__form--forms .gform_page_fields .gfield--type-radio.default-no-style .ginput_container .gfield_radio .gchoice label::after {
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield label {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 0;
  color: #30343d;
  font-size: 16px;
  clip: unset;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield label {
    font-size: 18px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield label {
    font-size: 14px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield label .gfield_required::before {
  content: "*";
  color: #30343d;
  font-size: 16px;
}
.contact-page__form--forms .gform_page_fields .gfield label .gfield_required .gfield_required_text {
  display: none;
}
.contact-page__form--forms .gform_page_fields .gfield label.gform-field-label--type-inline {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield label.gform-field-label--type-inline {
    font-size: 16px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield label.gform-field-label--type-inline::before {
  width: 16px;
  height: 16px;
  top: 5px;
  line-height: 10px;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container {
  height: 62px;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container {
    height: auto;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container_checkbox, .contact-page__form--forms .gform_page_fields .gfield .ginput_container_textarea {
  height: auto;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container_textarea {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container_textarea {
    width: 100%;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input,
.contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea {
  height: 100%;
  padding: 20px 16px !important;
  border: 1px solid #ddd4c4;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input:focus,
.contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea:focus {
  border: 2px solid #907b69 !important;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-webkit-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-webkit-input-placeholder {
  color: #484a55;
  font-size: 14px;
  font-weight: 200;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-moz-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-moz-placeholder {
  color: #484a55;
  font-size: 14px;
  font-weight: 200;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input:-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea:-ms-input-placeholder {
  color: #484a55;
  font-size: 14px;
  font-weight: 200;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-ms-input-placeholder {
  color: #484a55;
  font-size: 14px;
  font-weight: 200;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container input::placeholder,
.contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::placeholder {
  color: #484a55;
  font-size: 14px;
  font-weight: 200;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-webkit-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-moz-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-moz-placeholder {
    font-size: 16px;
  }
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container input:-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container input::-ms-input-placeholder, .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container input::placeholder,
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container textarea::placeholder {
    font-size: 16px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_checkbox .gchoice-desc {
  padding-left: 55px;
  color: #484a55;
  font-weight: 200;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_checkbox .gchoice-desc {
    font-size: 16px;
  }
}
@media (max-width: 47.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_checkbox .gchoice-desc {
    font-size: 14px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice {
  border: 1px solid #a69582;
  border-radius: 6px;
  padding: 30px 20px;
  width: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice.checked {
  background-color: #a69582;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice.checked label {
  color: white;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice.checked label::before {
  background-color: #a69582;
  border: 4px solid white;
  border-color: white;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice {
    padding: 20px 16px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice:hover {
  background-color: #d1c5b4;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice:hover label::before {
  background-color: #d1c5b4;
  border: 1px solid #30343d;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice:hover label::after {
  background: #30343d;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  margin: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice label {
    font-size: 16px;
  }
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice label::before {
  position: relative;
  top: 0 !important;
}
.contact-page__form--forms .gform_page_fields .gfield .ginput_container .gfield_radio .gchoice label::after {
  content: "";
  top: 6px;
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 100px;
  position: absolute;
  right: 4px;
}

body.error404 {
  overflow: hidden;
}
body.error404 footer {
  display: none;
}

.not-found {
  min-height: 90vh;
  padding-top: 200px;
  text-align: center;
}
.not-found__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.not-found h2 {
  font-size: 148px;
}
@media (max-width: 47.99em) {
  .not-found h2 {
    font-size: 120px;
  }
}
.not-found .description {
  font-size: 24px;
}
@media (max-width: 47.99em) {
  .not-found .description {
    font-size: 16px;
  }
}
.not-found .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}

.gm-style-iw-ch {
	display: none !important;
}
.google-map .location-map .gm-style button.gm-ui-hover-effect {
	z-index: 10;
}

/* .google-map {
  display: none !important;
} */
#field_1_5 > p.ginput_recaptcha_terms {display: none !important;}
.maps__destinations__items.swiper {
  overflow: visible;
}
.maps__destinations__items.swiper .card-item__wrapper.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.maps__destinations__wrapper .swiper-button {
  display: none;
}

@media (max-width: 992px) {
  .maps__destinations__items.swiper .card-item__wrapper.swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .maps__destinations__items.swiper .card-item__wrapper.swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}