/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

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

   /**
    * 1. Correct the line height in all browsers.
    * 2. Prevent adjustments of font size after orientation changes in iOS.
    */

   html {
    /*line-height: 1.15; -- 1 */
     -webkit-text-size-adjust: 100%; /* 2 */
   }

   /* Sections
      ========================================================================== */

   /**
    * Remove the margin in all browsers.
    */

   body {
     margin: 0;
   }

   /* Grouping content
      ========================================================================== */

   /**
    * Add the correct box sizing in Firefox.
    */

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

   /**
    * 1. Correct the inheritance and scaling of font size in all browsers.
    * 2. Correct the odd `em` font sizing in all browsers.
    */

   pre {
     font-family: monospace, monospace; /* 1 */
     font-size: 1em; /* 2 */
   }

   /* Text-level semantics
      ========================================================================== */

   /**
    * 1. Remove the bottom border in Chrome 57-
    * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
    */

   abbr[title] {
     border-bottom: none; /* 1 */
     text-decoration: underline; /* 2 */
     text-decoration: underline dotted; /* 2 */
   }

   /**
    * Add the correct font weight in Chrome, Edge, and Safari.
    */

   b,
   strong {
     font-weight: bolder;
   }

   /**
    * 1. Correct the inheritance and scaling of font size in all browsers.
    * 2. Correct the odd `em` font sizing in all browsers.
    */

   code,
   kbd,
   samp {
     font-family: monospace, monospace; /* 1 */
     font-size: 1em; /* 2 */
   }

   /**
    * Add the correct font size in all browsers.
    */

   small {
     font-size: 80%;
   }

   /**
    * Prevent `sub` and `sup` elements from affecting the line height in
    * all browsers.
    */

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

   sub {
     bottom: -0.25em;
   }

   sup {
     top: -0.5em;
   }

   /* Forms
      ========================================================================== */

   /**
    * 1. Change the font styles in all browsers.
    * 2. Remove the margin in Firefox and Safari.
    */

   button,
   input,
   optgroup,
   select,
   textarea {
     font-family: inherit; /* 1 */
     font-size: 100%; /* 1 */
     line-height: 1.15; /* 1 */
     margin: 0; /* 2 */
   }

   /**
    * Remove the inheritance of text transform in Edge and Firefox.
    * 1. Remove the inheritance of text transform in Firefox.
    */

   button,
   select { /* 1 */
     text-transform: none;
   }

   /**
    * Correct the inability to style clickable types in iOS and Safari.
    */

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

   /**
    * Remove the inner border and padding in Firefox.
    */

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

   /**
    * Restore the focus styles unset by the previous rule.
    */

   button:-moz-focusring,
   [type="button"]:-moz-focusring,
   [type="reset"]:-moz-focusring,
   [type="submit"]:-moz-focusring {
     outline: 1px dotted ButtonText;
   }

   /**
    * Correct the padding in Firefox.
    */

   fieldset {
     padding: 0.35em 0.75em 0.625em;
   }

   /**
    * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
    */

   legend {
     padding: 0;
   }

   /**
    * Add the correct vertical alignment in Chrome, Firefox, and Opera.
    */

   progress {
     vertical-align: baseline;
   }

   /**
    * Correct the cursor style of increment and decrement buttons in Chrome.
    */

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

   /**
    * 1. Correct the odd appearance in Chrome and Safari.
    * 2. Correct the outline style in Safari.
    */

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

   /**
    * Remove the inner padding in Chrome and Safari on macOS.
    */

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

   /**
    * 1. Correct the inability to style clickable types in iOS and Safari.
    * 2. Change font properties to `inherit` in Safari.
    */

   ::-webkit-file-upload-button {
     -webkit-appearance: button; /* 1 */
     font: inherit; /* 2 */
   }

   /* Interactive
      ========================================================================== */

   /*
    * Add the correct display in Edge and Firefox.
    */

   details {
     display: block;
   }

   /*
    * Add the correct display in all browsers.
    */

   summary {
     display: list-item;
   }

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Sticky Footer */

html,
body {
  background-color: #ffffff;
  height: 100%;
}

.body-wrapper {
  display: grid;
  flex-flow: column wrap;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
}

.body-wrapper>div,
.body-container-wrapper {
  min-width: 0; /* Fixes width issues on smaller screens when parent is flex or grid */
  width: 100%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: 91.66%;
  }

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 40px;
}

.dnd-section>.row-fluid {
  margin: 0 auto;
  padding: 0 20px;
}

.dnd-section .dnd-module.widget-span {
  padding: 0 20px;
}

.dnd-section[class*="force-full-width-section"]>.row-fluid,
.dnd-section[class*="force-full-width-section"] .dnd-module.widget-span {
  padding: 0;
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

@font-face {
  font-family: "ThirstyScriptRegular";
  src: local("ThirstyScriptRegular"), local("ThirstyScriptRegular"),
    url("https://20864743.fs1.hubspotusercontent-na1.net/hubfs/20864743/raw_assets/public/hideout-resort-feb-2025/fonts/ThirstyScriptRegular.woff2")
      format("woff2"),
    url("https://20864743.fs1.hubspotusercontent-na1.net/hubfs/20864743/raw_assets/public/hideout-resort-feb-2025/fonts/ThirstyScriptRegular.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: local("BarlowCondensed-Regular"), local("BarlowCondensed-Regular"),
    url("https://20864743.fs1.hubspotusercontent-na1.net/hubfs/20864743/raw_assets/public/hideout-resort-feb-2025/fonts/BarlowCondensed-Regular.woff2")
      format("woff2"),
    url("https://20864743.fs1.hubspotusercontent-na1.net/hubfs/20864743/raw_assets/public/hideout-resort-feb-2025/fonts/BarlowCondensed-Regular.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Montserrat", sans-serif;
  /*line-height: 140%;*/
  word-break: break-word;
  background: #fefefe;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */
/*
p {
  margin: 0 0 1.4em;
}

p:last-child {
  margin-bottom: 0 !important;
}
*/

/* Anchors */

a {
  cursor: pointer;
  text-decoration-line: none;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.09375em;
  transition: color 0.15s linear;
}

/*
a:hover,
a:focus {
  text-decoration-line: underline;
}
*/

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  /*line-height: 120%;*/
  margin: 0 0 0.5em;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0 !important;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4em;
  padding-left: 25px;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0 !important;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
  padding-left: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 0 0 1.4em;
  quotes: "\201C""\201D";
  text-align: center;
}

blockquote:last-child {
  margin-bottom: 0 !important;
}

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

hr {
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 1.4em 0;
}

hr:first-child {
  margin-top: 0;
}

hr:last-child {
  margin-bottom: 0 !important;
}

/* Image alt text */

img,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  cursor: pointer;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  padding: 0.6666666667rem 1.2rem !important;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s ease;
  transition: background 0.3s, color 0.3s, border 0.3s ease;
  display: inline-block;
  border: 0 none !important;;
  font-family: inherit;
}

button:disabled,
.button:disabled {
  background-color: #d0d0d0 !important;
  border-color: #d0d0d0 !important;
  color: #e6e6e6 !important;
}

a.button {
  text-decoration: none;
}

/* No button */

.no-button {
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
}

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: 0;
  color: initial;
  text-decoration: none;
  transition: none;
}
:root {
  --form-field-background: #ffffff;
  --form-field-border: 1px solid #cccccc;
  --form-field-color: #000000;
  --form-field-spacing: 25px;
}

/* Fields */

.hs-form-field {
  margin-bottom: var(--form-field-spacing);
  position: relative;
}

/* Labels */

form label {
  display: block;
  font-size: 16px;
}

.hs-form-field > label {
  margin-bottom: 5px;
}

/* Help Text */

form legend {
  font-size: 14px;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="date"],
form input[type="file"],
form select,
form textarea {
  background-color: var(--form-field-background);
  border: var(--form-field-border);
  color: var(--form-field-color);
  font-size: 1rem;
  border: 0 none;
  border-bottom: 1px solid #34464f;
  background-color: transparent !important;
  padding: 0.5rem 0;
  line-height: 1.6;
  width: 100%;
  display: block;
  -webkit-transition: color 0.3s, border 0.3s, background 0.3s;
  transition: color 0.3s, border 0.3s, background 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="tel"]:focus,
form input[type="number"]:focus,
form input[type="date"]:focus,
form input[type="file"]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: 0;
}

form input[type="date"] {
  padding: 9px 20px;
}

form input[type="file"]::file-selector-button {
  background-color: var(--form-field-background);
  border: var(--form-field-border);
  color: var(--form-field-color);
  cursor: pointer;
  margin-right: 20px;
  padding: 10px 20px;
  text-align: center;
  text-transform: none;
}

form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 5'%3E%3Cpath stroke='%23000' stroke-width='.5' d='m7.001 1-3 3.001-3.001-3' opacity='1'/%3E%3C/svg%3E");
  background-position: center right 11px;
  background-repeat: no-repeat;
  background-size: 10px auto;
  padding: 10px 32px 10px 16px;
}

form textarea {
  height: 147px;
  resize: vertical;
}

form fieldset {
  margin: 0 -10px !important;
  max-width: none !important;
  min-width: 0;
}

form fieldset .hs-form-field {
  padding: 0 10px;
}

form fieldset.form-columns-1 .input,
form
  fieldset.form-columns-1
  .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-2 .input,
form
  fieldset.form-columns-2
  .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-3 .input,
form
  fieldset.form-columns-3
  .hs-input:not([type="checkbox"]):not([type="radio"]) {
  margin-right: 0 !important;
  width: 100% !important;
}

form fieldset.form-columns-2 .hs-form-field {
  width: 50% !important;
}

form fieldset.form-columns-3 .hs-form-field {
  width: 33.33% !important;
}

@media (max-width: 767px) {
  form fieldset.form-columns-2 .hs-form-field,
  form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}

/* Inputs - Checkbox/Radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list li {
  display: block;
  margin: 5px 0 0;
}

form .inputs-list li:first-child {
  margin-top: 0;
}

form input[type="checkbox"],
form input[type="radio"] {
  cursor: pointer;
}

form .inputs-list .hs-form-checkbox-display,
form .inputs-list .hs-form-radio-display,
form .inputs-list .hs-form-booleancheckbox-display {
  position: relative;
}

form .inputs-list .hs-form-booleancheckbox-display > input[type="checkbox"],
form .inputs-list .hs-form-checkbox-display > input[type="checkbox"],
form .inputs-list .hs-form-radio-display > input[type="radio"] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

form .inputs-list .hs-form-booleancheckbox-display > span,
form .inputs-list .hs-form-checkbox-display > span,
form .inputs-list .hs-form-radio-display > span {
  align-items: start;
  display: flex;
}

form .inputs-list .hs-form-booleancheckbox-display > span::before,
form .inputs-list .hs-form-checkbox-display > span::before,
form .inputs-list .hs-form-radio-display > span::before {
  border: 1px solid #000000;
  content: "";
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 13px;
  margin-right: 8px;
  margin-top: 2px;
  width: 13px;
}

form
  .inputs-list
  .hs-form-checkbox-display
  > input[type="checkbox"]:checked
  + span::before,
form
  .inputs-list
  .hs-form-booleancheckbox-display
  > input[type="checkbox"]:checked
  + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23263349' d='M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm273 177L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-color: #263349;
}

form .inputs-list .hs-form-radio-display > span::before {
  border-radius: 100%;
}

form
  .inputs-list
  .hs-form-radio-display
  > input[type="radio"]:checked
  + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23263349' d='M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zm0-352a96 96 0 1 1 0 192 96 96 0 1 1 0-192z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-color: #263349;
}

/* Inputs - Phone International */

.hs-fieldtype-intl-phone {
  display: flex;
}

.hs-fieldtype-intl-phone > select {
  flex: 0 0 150px;
}

.hs-fieldtype-intl-phone > input[type="tel"] {
  flex: 0 1 100%;
  margin-left: 20px;
}

/* Inputs - Date Picker */

.hs-dateinput {
  position: relative;
}

.fn-date-picker .pika-button,
.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  border-radius: 0;
  min-width: auto;
}

.fn-date-picker .pika-button {
  background-color: #fff !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #263349 !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: #263349 !important;
  border-radius: 0 !important;
  box-shadow: none;
  color: #fff !important;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: #263349 !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.fn-date-picker .pika-table thead th {
  color: #fff;
}

/* Inputs - File Picker */

form input[type="file"] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Placeholder */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 1rem;
  line-height: 1.6;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 1rem;
  line-height: 1.6;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-size: 1rem;
  line-height: 1.6;
}

::placeholder {
  font-size: 1rem;
  line-height: 1.6;
}

/* Headings and Text */

.widget-type-form .form-title {
  font-size: 64px;
  line-height: 107.4%;
  margin-bottom: 35px;
}

.widget-type-form .hs-richtext {
  margin: 0 0 var(--form-field-spacing);
  padding: 0 10px;
}

.widget-type-form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container {
  margin-bottom: var(--form-field-spacing);
}

.legal-consent-container .hs-richtext {
  margin-bottom: 10px;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 10px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  font-size: 16px;
  margin-left: 0 !important;
}

/* Submitted Message */

.submitted-message {
  font-size: 16px;
}

.submitted-message p {
  margin-bottom: 1.4em;
}

/* Validation */

.hs_error_rollup {
  display: none;
}

.hs-form-required {
  color: red;
}

.hs-input.invalid.error {
  border-color: red;
}

.hs-error-msg {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* Submit button */

form input[type="submit"],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}

.hs-form-e8597c9a-8f8e-4277-aba1-7ccae7f7e8ec .hs-occupation,
.hs-form-670eef1d-d8e8-4879-b763-81c9c8a9e649 .hs-occupation,
.hs-form-edaa50fa-bebb-431d-b8f0-0a98bddad28a .hs-occupation {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}
/* include './elements/_tables.css' */

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

#menu-icon {
  padding: 22px 0 0 !important;
  word-break: keep-all;
}

.soc_wrap {
  display: flex;
  margin-top: 5px;
}

.soc_wrap a {
  display: block;
  padding: 5px;
  margin: 0 5px;
}

.soc_wrap a:hover .soc_h {
  fill: #c28047 !important;
  transition: ease 0.4s;
}

#vertical-bar .buttons-wrap a.vtour {
  border: 1px solid #34464f !important;
}

#menu.nav_menu ul {
  list-style: none;
  padding: 0 1rem;
  margin: 0 0 2rem 0 !important;
  font-size: inherit;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
}

#menu.nav_menu ul li {
  position: relative;
  display: block;
  padding: 0.5rem;
}

#menu.nav_menu ul li a {
  padding: 0.5rem;
  margin: 0;
  display: block;
  color: #ffffff;
}

#menu.nav_menu ul li.active a,
#menu.nav_menu ul li a:hover,
#menu.nav_menu ul li a:focus {
  color: #ebb83b;
}

@media only screen and (min-width: 1023px) {
  .mobile-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  #menu-icon {
    font-size: 0.7rem !important;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}
#footer .logo {
  max-width: 320px;
  display: block;
}

#footer .foot-menu li.active a {
  color: #ebb83b !important;
}
/* Logo */

.hs_cos_wrapper_type_logo,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_logo a {
  display: inline-block;
  vertical-align: top;
}

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
  flex-direction: row;
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:focus-within > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:focus-within > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Images */

.hs_cos_wrapper_type_linked_image,
.hs-image-widget  {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1024px) {
  #vertical-bar .buttons-wrap .book-now {
    word-break: keep-all;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 30px;
  }

  .dnd-section>.row-fluid,
  .dnd-section .dnd-module.widget-span {
    padding: 0 15px;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

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

@media (max-width: 767px) {
  .show_for_sr-mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}